Skip to content

Commit ef46968

Browse files
authored
Merge pull request #150 from FusionAuth/degroff/ENG-622/prompt
ENG-622 - Support for the prompt parameter
2 parents e214d5c + 5ef33bb commit ef46968

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

pkg/fusionauth/Domain.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4512,6 +4512,7 @@ const (
45124512
OAuthErrorReason_InvalidPkceCodeVerifier OAuthErrorReason = "invalid_pkce_code_verifier"
45134513
OAuthErrorReason_InvalidPkceCodeChallenge OAuthErrorReason = "invalid_pkce_code_challenge"
45144514
OAuthErrorReason_InvalidPkceCodeChallengeMethod OAuthErrorReason = "invalid_pkce_code_challenge_method"
4515+
OAuthErrorReason_InvalidPrompt OAuthErrorReason = "invalid_prompt"
45154516
OAuthErrorReason_InvalidRedirectUri OAuthErrorReason = "invalid_redirect_uri"
45164517
OAuthErrorReason_InvalidResponseMode OAuthErrorReason = "invalid_response_mode"
45174518
OAuthErrorReason_InvalidResponseType OAuthErrorReason = "invalid_response_type"
@@ -4558,6 +4559,14 @@ const (
45584559
OAuthErrorReason_MissingRequiredScope OAuthErrorReason = "missing_required_scope"
45594560
OAuthErrorReason_UnknownScope OAuthErrorReason = "unknown_scope"
45604561
OAuthErrorReason_ConsentCanceled OAuthErrorReason = "consent_canceled"
4562+
OAuthErrorReason_AuthenticationRequired OAuthErrorReason = "authentication_required"
4563+
OAuthErrorReason_EmailVerificationRequired OAuthErrorReason = "email_verification_required"
4564+
OAuthErrorReason_MultiFactorChallengeRequired OAuthErrorReason = "multi_factor_challenge_required"
4565+
OAuthErrorReason_PhoneVerificationRequired OAuthErrorReason = "phone_verification_required"
4566+
OAuthErrorReason_RegistrationMissingRequirement OAuthErrorReason = "registration_missing_requirement"
4567+
OAuthErrorReason_RegistrationRequired OAuthErrorReason = "registration_required"
4568+
OAuthErrorReason_RegistrationVerificationRequired OAuthErrorReason = "registration_verification_required"
4569+
OAuthErrorReason_ConsentRequired OAuthErrorReason = "consent_required"
45614570
)
45624571

45634572
type OAuthErrorType string
@@ -4571,6 +4580,9 @@ const (
45714580
OAuthErrorType_InvalidClient OAuthErrorType = "invalid_client"
45724581
OAuthErrorType_InvalidGrant OAuthErrorType = "invalid_grant"
45734582
OAuthErrorType_InvalidToken OAuthErrorType = "invalid_token"
4583+
OAuthErrorType_ConsentRequired OAuthErrorType = "consent_required"
4584+
OAuthErrorType_InteractionRequired OAuthErrorType = "interaction_required"
4585+
OAuthErrorType_LoginRequired OAuthErrorType = "login_required"
45744586
OAuthErrorType_UnauthorizedClient OAuthErrorType = "unauthorized_client"
45754587
OAuthErrorType_InvalidScope OAuthErrorType = "invalid_scope"
45764588
OAuthErrorType_ServerError OAuthErrorType = "server_error"

0 commit comments

Comments
 (0)