Skip to content

Commit b77316a

Browse files
authored
Merge pull request #190 from FusionAuth/degroff/ENG-3075/vend_restrictions
degroff/eng 3075/vend restrictions
2 parents ca0dd7c + 373f946 commit b77316a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/FusionAuthClient.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7988,7 +7988,7 @@ export interface GoogleIdentityProviderProperties {
79887988
}
79897989

79907990
/**
7991-
* Authorization Grant types as defined by the <a href="https://tools.ietf.org/html/rfc6749">The OAuth 2.0 Authorization
7991+
* Authorization Grant types as defined by the <a href="https://tools.ietf.org/html/rfc6749">OAuth 2.0 Authorization
79927992
* Framework - RFC 6749</a>.
79937993
* <p>
79947994
* Specific names as defined by <a href="https://tools.ietf.org/html/rfc7591#section-4.1">
@@ -8061,7 +8061,6 @@ export interface GroupMember {
80618061
groupId?: UUID;
80628062
id?: UUID;
80638063
insertInstant?: number;
8064-
user?: User;
80658064
userId?: UUID;
80668065
}
80678066

@@ -9502,6 +9501,9 @@ export enum OAuthErrorReason {
95029501
access_token_required = "access_token_required",
95039502
refresh_token_not_found = "refresh_token_not_found",
95049503
refresh_token_type_not_supported = "refresh_token_type_not_supported",
9504+
id_token_invalid = "id_token_invalid",
9505+
unsupported_token_type = "unsupported_token_type",
9506+
token_type_hint_mismatch = "token_type_hint_mismatch",
95059507
invalid_client_id = "invalid_client_id",
95069508
invalid_expires_in = "invalid_expires_in",
95079509
invalid_user_credentials = "invalid_user_credentials",

0 commit comments

Comments
 (0)