Skip to content

Commit

Permalink
fix: AppleIdTokenType sends is_private_email
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Moriarty committed Apr 20, 2021
1 parent dbad02e commit 3057bde
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ export type AppleIdTokenType = {
nonce_supported: boolean,
/** The user's email address. */
email: string,
/** A Boolean value that indicates whether the service has verified the email. The value of this claim is always true because the servers only return verified email addresses. */
email_verified: boolean,
/** A String or Boolean value that indicates whether the service has verified the email. The value of this claim is always true because the servers only return verified email addresses. */
email_verified: 'true' | 'false' | boolean,
/** A String or Boolean value that indicates whether the email shared by the user is the proxy address. */
is_private_email: 'true' | 'false' | boolean,
};

export type AppleWebhookTokenEventType = {
Expand Down

0 comments on commit 3057bde

Please sign in to comment.