@@ -2708,7 +2708,7 @@ type GoogleIdentityProviderProperties struct {
27082708}
27092709
27102710/**
2711- * Authorization Grant types as defined by the <a href="https://tools.ietf.org/html/rfc6749">The OAuth 2.0 Authorization
2711+ * Authorization Grant types as defined by the <a href="https://tools.ietf.org/html/rfc6749">OAuth 2.0 Authorization
27122712 * Framework - RFC 6749</a>.
27132713 * <p>
27142714 * Specific names as defined by <a href="https://tools.ietf.org/html/rfc7591#section-4.1">
@@ -2791,7 +2791,6 @@ type GroupMember struct {
27912791 GroupId string `json:"groupId,omitempty"`
27922792 Id string `json:"id,omitempty"`
27932793 InsertInstant int64 `json:"insertInstant,omitempty"`
2794- User User `json:"user,omitempty"`
27952794 UserId string `json:"userId,omitempty"`
27962795}
27972796
@@ -4503,6 +4502,9 @@ const (
45034502 OAuthErrorReason_AccessTokenRequired OAuthErrorReason = "access_token_required"
45044503 OAuthErrorReason_RefreshTokenNotFound OAuthErrorReason = "refresh_token_not_found"
45054504 OAuthErrorReason_RefreshTokenTypeNotSupported OAuthErrorReason = "refresh_token_type_not_supported"
4505+ OAuthErrorReason_IdTokenInvalid OAuthErrorReason = "id_token_invalid"
4506+ OAuthErrorReason_UnsupportedTokenType OAuthErrorReason = "unsupported_token_type"
4507+ OAuthErrorReason_TokenTypeHintMismatch OAuthErrorReason = "token_type_hint_mismatch"
45064508 OAuthErrorReason_InvalidClientId OAuthErrorReason = "invalid_client_id"
45074509 OAuthErrorReason_InvalidExpiresIn OAuthErrorReason = "invalid_expires_in"
45084510 OAuthErrorReason_InvalidUserCredentials OAuthErrorReason = "invalid_user_credentials"
0 commit comments