@magic-ext/react-native-bare-oauth 25.0.6 → 25.0.7-canary.742.9605940540.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/types.d.ts +2 -2
- package/package.json +4 -4
package/dist/types/types.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { MagicUserMetadata } from '@magic-sdk/types';
|
|
|
2
2
|
export declare enum OAuthPayloadMethods {
|
|
3
3
|
ParseRedirectResult = "magic_oauth_parse_redirect_result"
|
|
4
4
|
}
|
|
5
|
-
export
|
|
5
|
+
export type OAuthProvider = 'google' | 'facebook' | 'apple' | 'github' | 'bitbucket' | 'gitlab' | 'linkedin' | 'twitter' | 'discord' | 'twitch' | 'microsoft';
|
|
6
6
|
export interface OAuthErrorData {
|
|
7
7
|
provider: OAuthProvider;
|
|
8
8
|
errorURI?: string;
|
|
@@ -41,7 +41,7 @@ export interface OpenIDConnectAddress {
|
|
|
41
41
|
country?: string;
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
|
-
export
|
|
44
|
+
export type OpenIDConnectUserInfo = OpenIDConnectProfile & OpenIDConnectEmail & OpenIDConnectPhone & OpenIDConnectAddress & {
|
|
45
45
|
sub?: string;
|
|
46
46
|
sources?: Record<string, any>;
|
|
47
47
|
} & Record<string, any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-ext/react-native-bare-oauth",
|
|
3
|
-
"version": "25.0.
|
|
3
|
+
"version": "25.0.7-canary.742.9605940540.0",
|
|
4
4
|
"description": "Magic SDK OAuth Extension for Bare React Native environments.",
|
|
5
5
|
"author": "Magic <team@magic.link> (https://magic.link/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"react-native-device-info": "^10.3.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@magic-sdk/react-native-bare": "
|
|
34
|
-
"@magic-sdk/types": "
|
|
33
|
+
"@magic-sdk/react-native-bare": "29.0.7-canary.742.9605940540.0",
|
|
34
|
+
"@magic-sdk/types": "24.0.6-canary.742.9605940540.0",
|
|
35
35
|
"@types/crypto-js": "~3.1.47",
|
|
36
36
|
"react-native-inappbrowser-reborn": "^3.7.0"
|
|
37
37
|
},
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"@magic-sdk/react-native-bare": ">=13.0.0",
|
|
40
40
|
"react-native-inappbrowser-reborn": ">=3.7.0"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "df15115c2d0830f096ea3599393f7bce543b8d82"
|
|
43
43
|
}
|