@descope/react-sdk 2.25.8 → 2.26.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/README.md +6 -0
- 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 +13 -13
package/dist/types/sdk.d.ts
CHANGED
|
@@ -650,6 +650,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
650
650
|
scopes?: string[];
|
|
651
651
|
tenantId?: string;
|
|
652
652
|
tenantLevel?: boolean;
|
|
653
|
+
externalIdentifier?: string;
|
|
653
654
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
654
655
|
};
|
|
655
656
|
saml: {
|
|
@@ -1369,6 +1370,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
1369
1370
|
scopes?: string[];
|
|
1370
1371
|
tenantId?: string;
|
|
1371
1372
|
tenantLevel?: boolean;
|
|
1373
|
+
externalIdentifier?: string;
|
|
1372
1374
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
1373
1375
|
};
|
|
1374
1376
|
saml: {
|
|
@@ -2088,6 +2090,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
2088
2090
|
scopes?: string[];
|
|
2089
2091
|
tenantId?: string;
|
|
2090
2092
|
tenantLevel?: boolean;
|
|
2093
|
+
externalIdentifier?: string;
|
|
2091
2094
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
2092
2095
|
};
|
|
2093
2096
|
saml: {
|
|
@@ -2820,6 +2823,7 @@ export declare const createTempSdk: () => ((({
|
|
|
2820
2823
|
scopes?: string[];
|
|
2821
2824
|
tenantId?: string;
|
|
2822
2825
|
tenantLevel?: boolean;
|
|
2826
|
+
externalIdentifier?: string;
|
|
2823
2827
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
2824
2828
|
};
|
|
2825
2829
|
saml: {
|
|
@@ -3539,6 +3543,7 @@ export declare const createTempSdk: () => ((({
|
|
|
3539
3543
|
scopes?: string[];
|
|
3540
3544
|
tenantId?: string;
|
|
3541
3545
|
tenantLevel?: boolean;
|
|
3546
|
+
externalIdentifier?: string;
|
|
3542
3547
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
3543
3548
|
};
|
|
3544
3549
|
saml: {
|
|
@@ -4258,6 +4263,7 @@ export declare const createTempSdk: () => ((({
|
|
|
4258
4263
|
scopes?: string[];
|
|
4259
4264
|
tenantId?: string;
|
|
4260
4265
|
tenantLevel?: boolean;
|
|
4266
|
+
externalIdentifier?: string;
|
|
4261
4267
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
4262
4268
|
};
|
|
4263
4269
|
saml: {
|
|
@@ -4998,6 +5004,7 @@ export declare const getGlobalSdk: () => ((({
|
|
|
4998
5004
|
scopes?: string[];
|
|
4999
5005
|
tenantId?: string;
|
|
5000
5006
|
tenantLevel?: boolean;
|
|
5007
|
+
externalIdentifier?: string;
|
|
5001
5008
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
5002
5009
|
};
|
|
5003
5010
|
saml: {
|
|
@@ -5717,6 +5724,7 @@ export declare const getGlobalSdk: () => ((({
|
|
|
5717
5724
|
scopes?: string[];
|
|
5718
5725
|
tenantId?: string;
|
|
5719
5726
|
tenantLevel?: boolean;
|
|
5727
|
+
externalIdentifier?: string;
|
|
5720
5728
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
5721
5729
|
};
|
|
5722
5730
|
saml: {
|
|
@@ -6436,6 +6444,7 @@ export declare const getGlobalSdk: () => ((({
|
|
|
6436
6444
|
scopes?: string[];
|
|
6437
6445
|
tenantId?: string;
|
|
6438
6446
|
tenantLevel?: boolean;
|
|
6447
|
+
externalIdentifier?: string;
|
|
6439
6448
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
6440
6449
|
};
|
|
6441
6450
|
saml: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope/react-sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.26.0",
|
|
4
4
|
"description": "Descope React SDK",
|
|
5
5
|
"author": "Descope Team <info@descope.com>",
|
|
6
6
|
"homepage": "https://github.com/descope/descope-js",
|
|
@@ -49,18 +49,18 @@
|
|
|
49
49
|
]
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@descope/sdk-helpers": "0.
|
|
53
|
-
"@descope/access-key-management-widget": "0.5.
|
|
54
|
-
"@descope/
|
|
55
|
-
"@descope/
|
|
56
|
-
"@descope/user-
|
|
57
|
-
"@descope/applications-portal-widget": "0.5.
|
|
58
|
-
"@descope/user-
|
|
59
|
-
"@descope/outbound-applications-widget": "0.2.
|
|
60
|
-
"@descope/web-component": "3.
|
|
61
|
-
"@descope/
|
|
62
|
-
"@descope/core-js-sdk": "2.
|
|
63
|
-
"@descope/
|
|
52
|
+
"@descope/sdk-helpers": "0.6.0",
|
|
53
|
+
"@descope/access-key-management-widget": "0.5.34",
|
|
54
|
+
"@descope/audit-management-widget": "0.5.34",
|
|
55
|
+
"@descope/role-management-widget": "0.5.26",
|
|
56
|
+
"@descope/user-management-widget": "0.11.6",
|
|
57
|
+
"@descope/applications-portal-widget": "0.5.17",
|
|
58
|
+
"@descope/user-profile-widget": "0.9.0",
|
|
59
|
+
"@descope/outbound-applications-widget": "0.2.18",
|
|
60
|
+
"@descope/web-component": "3.55.0",
|
|
61
|
+
"@descope/web-js-sdk": "1.45.0",
|
|
62
|
+
"@descope/core-js-sdk": "2.57.0",
|
|
63
|
+
"@descope/tenant-profile-widget": "0.5.18"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@babel/core": "7.26.0",
|