From 058f18cab4a553fa5c7afc52edf715f7369d7a26 Mon Sep 17 00:00:00 2001 From: Robin Genz Date: Fri, 22 Sep 2023 20:31:26 +0200 Subject: [PATCH] docs(authentication): fix typo --- packages/authentication/README.md | 2 +- packages/authentication/src/definitions.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/authentication/README.md b/packages/authentication/README.md index 281dcaf2..a608d625 100644 --- a/packages/authentication/README.md +++ b/packages/authentication/README.md @@ -1634,7 +1634,7 @@ Remove all listeners for this plugin. | ---------------------- | ------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ----- | | **`customParameters`** | SignInCustomParameter[] | Configures custom parameters to be passed to the identity provider during the OAuth sign-in flow. Supports Apple, Facebook, GitHub, Google, Microsoft, Twitter and Yahoo on Web. Supports Apple, GitHub, Microsoft, Twitter and Yahoo on Android. Supports Facebook, GitHub, Microsoft, Twitter and Yahoo on iOS. | | 1.1.0 | | **`mode`** | 'popup' \| 'redirect' | Whether to use the popup-based OAuth authentication flow or the full-page redirect flow. If you choose `redirect`, you will get the result of the call via the `authStateChange` listener after the redirect. | 'popup' | 1.3.0 | -| **`scopes`** | string[] | Scopes to request from provider. Supports Apple, Facebook, GitHub, Google, Microsoft, Twitter and Yahoo on Web. Supports Apple, GitHub, Microsoft, Twitter, Yahoo and Play Games on Android. Supports Facebook, GitHub, Google, Microsoft, Twitter and Yahoo on iOS. | | 1.1.0 | +| **`scopes`** | string[] | Scopes to request from provider. Supports Apple, Facebook, GitHub, Google, Microsoft, Twitter and Yahoo on Web. Supports Apple, GitHub, Google, Microsoft, Twitter, Yahoo and Play Games on Android. Supports Facebook, GitHub, Microsoft, Twitter and Yahoo on iOS. | | 1.1.0 | #### SignInCustomParameter diff --git a/packages/authentication/src/definitions.ts b/packages/authentication/src/definitions.ts index 133babcf..de43e77e 100644 --- a/packages/authentication/src/definitions.ts +++ b/packages/authentication/src/definitions.ts @@ -839,8 +839,8 @@ export interface SignInWithOAuthOptions extends SignInOptions { * Scopes to request from provider. * * Supports Apple, Facebook, GitHub, Google, Microsoft, Twitter and Yahoo on Web. - * Supports Apple, GitHub, Microsoft, Twitter, Yahoo and Play Games on Android. - * Supports Facebook, GitHub, Google, Microsoft, Twitter and Yahoo on iOS. + * Supports Apple, GitHub, Google, Microsoft, Twitter, Yahoo and Play Games on Android. + * Supports Facebook, GitHub, Microsoft, Twitter and Yahoo on iOS. * * @since 1.1.0 */