@authly/sdk 1.2.0 → 1.2.1
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.
|
@@ -19,9 +19,9 @@ interface IAuthorizeUrlOptions {
|
|
|
19
19
|
readonly codeChallenge: string;
|
|
20
20
|
/**
|
|
21
21
|
* @summary The PKCE code challenge method.
|
|
22
|
-
* @example "
|
|
22
|
+
* @example "s256"
|
|
23
23
|
*/
|
|
24
|
-
readonly codeChallengeMethod?: "
|
|
24
|
+
readonly codeChallengeMethod?: "s256" | "plain";
|
|
25
25
|
/**
|
|
26
26
|
* @summary The requested scopes.
|
|
27
27
|
* @example "openid profile email"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authly/sdk",
|
|
3
3
|
"description": "A library for building authentication systems using Authly.",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Anvoria",
|
|
7
7
|
"url": "https://github.com/Anvoria"
|
|
@@ -84,14 +84,11 @@
|
|
|
84
84
|
"jose": "^6.1.3"
|
|
85
85
|
},
|
|
86
86
|
"peerDependencies": {
|
|
87
|
-
"react": ""
|
|
87
|
+
"react": ">=18.0.0"
|
|
88
88
|
},
|
|
89
89
|
"peerDependenciesMeta": {
|
|
90
90
|
"react": {
|
|
91
91
|
"optional": true
|
|
92
|
-
},
|
|
93
|
-
"next": {
|
|
94
|
-
"optional": true
|
|
95
92
|
}
|
|
96
93
|
}
|
|
97
94
|
}
|