diff --git a/blog/2021-08-01-mdx-blog-post.mdx b/blog/2021-08-01-mdx-blog-post.mdx deleted file mode 100644 index f5b3902..0000000 --- a/blog/2021-08-01-mdx-blog-post.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -slug: mdx-blog-post -title: MDX Blog Post -authors: [vonovak] -tags: [docusaurus] ---- - -We're live! :) diff --git a/docs/api/index.mdx b/docs/api/index.mdx index 021377e..c8feeeb 100644 --- a/docs/api/index.mdx +++ b/docs/api/index.mdx @@ -176,7 +176,7 @@ The response object for successful `checkPlayServices` call. It denotes that the ### RequestAuthorizationParams -> **RequestAuthorizationParams** = \{ `accountName?`: `string`; `hostedDomain?`: `string`; `offlineAccess?`: \{ `enabled`: `boolean`; `forceCodeForRefreshToken?`: `boolean`; \}; `scopes`: `string`[]; \} +> **RequestAuthorizationParams** = \{ `accountName?`: `string`; `hostedDomain?`: `string`; `offlineAccess?`: \{ `enabled`: `boolean`; `forceCodeForRefreshToken?`: `boolean`; \}; `prompt?`: [`AuthorizationPrompt`](#authorizationprompt) \| [`AuthorizationPrompt`](#authorizationprompt)[]; `scopes`: `string`[]; \} Learn more in the [guide](/docs/one-tap#requestauthorization). @@ -561,6 +561,12 @@ Native Google Sign-In button component. Prefer using the [`GoogleLogoButton`](#g ## Type Aliases +### AuthorizationPrompt + +> **AuthorizationPrompt** = `"consent"` \| `"select_account"` + +--- + ### CancelledResponse > **CancelledResponse** = \{ `data`: `null`; `type`: `"cancelled"`; \}