@descope/react-sdk 2.28.0 → 2.28.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.
- package/dist/cjs/constants.js +1 -1
- package/dist/esm/constants.js +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/types/sdk.d.ts +9 -0
- package/package.json +12 -12
package/dist/types/sdk.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
77
77
|
wsfedIdpStateId?: string;
|
|
78
78
|
samlIdpUsername?: string;
|
|
79
79
|
ssoAppId?: string;
|
|
80
|
+
customAppId?: string;
|
|
80
81
|
thirdPartyAppId?: string;
|
|
81
82
|
oidcLoginHint?: string;
|
|
82
83
|
abTestingKey?: number;
|
|
@@ -819,6 +820,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
819
820
|
wsfedIdpStateId?: string;
|
|
820
821
|
samlIdpUsername?: string;
|
|
821
822
|
ssoAppId?: string;
|
|
823
|
+
customAppId?: string;
|
|
822
824
|
thirdPartyAppId?: string;
|
|
823
825
|
oidcLoginHint?: string;
|
|
824
826
|
abTestingKey?: number;
|
|
@@ -1561,6 +1563,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
1561
1563
|
wsfedIdpStateId?: string;
|
|
1562
1564
|
samlIdpUsername?: string;
|
|
1563
1565
|
ssoAppId?: string;
|
|
1566
|
+
customAppId?: string;
|
|
1564
1567
|
thirdPartyAppId?: string;
|
|
1565
1568
|
oidcLoginHint?: string;
|
|
1566
1569
|
abTestingKey?: number;
|
|
@@ -2318,6 +2321,7 @@ export declare const createTempSdk: () => (((({
|
|
|
2318
2321
|
wsfedIdpStateId?: string;
|
|
2319
2322
|
samlIdpUsername?: string;
|
|
2320
2323
|
ssoAppId?: string;
|
|
2324
|
+
customAppId?: string;
|
|
2321
2325
|
thirdPartyAppId?: string;
|
|
2322
2326
|
oidcLoginHint?: string;
|
|
2323
2327
|
abTestingKey?: number;
|
|
@@ -3060,6 +3064,7 @@ export declare const createTempSdk: () => (((({
|
|
|
3060
3064
|
wsfedIdpStateId?: string;
|
|
3061
3065
|
samlIdpUsername?: string;
|
|
3062
3066
|
ssoAppId?: string;
|
|
3067
|
+
customAppId?: string;
|
|
3063
3068
|
thirdPartyAppId?: string;
|
|
3064
3069
|
oidcLoginHint?: string;
|
|
3065
3070
|
abTestingKey?: number;
|
|
@@ -3802,6 +3807,7 @@ export declare const createTempSdk: () => (((({
|
|
|
3802
3807
|
wsfedIdpStateId?: string;
|
|
3803
3808
|
samlIdpUsername?: string;
|
|
3804
3809
|
ssoAppId?: string;
|
|
3810
|
+
customAppId?: string;
|
|
3805
3811
|
thirdPartyAppId?: string;
|
|
3806
3812
|
oidcLoginHint?: string;
|
|
3807
3813
|
abTestingKey?: number;
|
|
@@ -4567,6 +4573,7 @@ export declare const getGlobalSdk: () => (((({
|
|
|
4567
4573
|
wsfedIdpStateId?: string;
|
|
4568
4574
|
samlIdpUsername?: string;
|
|
4569
4575
|
ssoAppId?: string;
|
|
4576
|
+
customAppId?: string;
|
|
4570
4577
|
thirdPartyAppId?: string;
|
|
4571
4578
|
oidcLoginHint?: string;
|
|
4572
4579
|
abTestingKey?: number;
|
|
@@ -5309,6 +5316,7 @@ export declare const getGlobalSdk: () => (((({
|
|
|
5309
5316
|
wsfedIdpStateId?: string;
|
|
5310
5317
|
samlIdpUsername?: string;
|
|
5311
5318
|
ssoAppId?: string;
|
|
5319
|
+
customAppId?: string;
|
|
5312
5320
|
thirdPartyAppId?: string;
|
|
5313
5321
|
oidcLoginHint?: string;
|
|
5314
5322
|
abTestingKey?: number;
|
|
@@ -6051,6 +6059,7 @@ export declare const getGlobalSdk: () => (((({
|
|
|
6051
6059
|
wsfedIdpStateId?: string;
|
|
6052
6060
|
samlIdpUsername?: string;
|
|
6053
6061
|
ssoAppId?: string;
|
|
6062
|
+
customAppId?: string;
|
|
6054
6063
|
thirdPartyAppId?: string;
|
|
6055
6064
|
oidcLoginHint?: string;
|
|
6056
6065
|
abTestingKey?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope/react-sdk",
|
|
3
|
-
"version": "2.28.
|
|
3
|
+
"version": "2.28.1",
|
|
4
4
|
"description": "Descope React SDK",
|
|
5
5
|
"author": "Descope Team <info@descope.com>",
|
|
6
6
|
"homepage": "https://github.com/descope/descope-js",
|
|
@@ -50,17 +50,17 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@descope/sdk-helpers": "0.7.0",
|
|
53
|
-
"@descope/
|
|
54
|
-
"@descope/role-management-widget": "0.5.
|
|
55
|
-
"@descope/
|
|
56
|
-
"@descope/
|
|
57
|
-
"@descope/
|
|
58
|
-
"@descope/outbound-applications-widget": "0.2.
|
|
59
|
-
"@descope/
|
|
60
|
-
"@descope/
|
|
61
|
-
"@descope/web-
|
|
62
|
-
"@descope/
|
|
63
|
-
"@descope/
|
|
53
|
+
"@descope/access-key-management-widget": "0.5.47",
|
|
54
|
+
"@descope/role-management-widget": "0.5.39",
|
|
55
|
+
"@descope/audit-management-widget": "0.6.9",
|
|
56
|
+
"@descope/user-profile-widget": "0.10.2",
|
|
57
|
+
"@descope/user-management-widget": "0.11.27",
|
|
58
|
+
"@descope/outbound-applications-widget": "0.2.39",
|
|
59
|
+
"@descope/applications-portal-widget": "0.6.7",
|
|
60
|
+
"@descope/web-js-sdk": "1.49.1",
|
|
61
|
+
"@descope/web-component": "3.64.0",
|
|
62
|
+
"@descope/tenant-profile-widget": "0.5.38",
|
|
63
|
+
"@descope/core-js-sdk": "2.62.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@babel/core": "7.26.0",
|