@descope/react-sdk 2.25.7 → 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/README.md
CHANGED
|
@@ -188,6 +188,12 @@ const App = () => {
|
|
|
188
188
|
|
|
189
189
|
// Clear screen error message on user input
|
|
190
190
|
//dismissScreenErrorOnInput={true}
|
|
191
|
+
|
|
192
|
+
// Outbound application ID to use for connecting to external services
|
|
193
|
+
// outboundAppId="my-outbound-app-id"
|
|
194
|
+
|
|
195
|
+
// Array of scopes to request from the outbound application
|
|
196
|
+
// outboundAppScopes={["email", "profile"]}
|
|
191
197
|
/>
|
|
192
198
|
)
|
|
193
199
|
}
|
package/dist/cjs/constants.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";const e="undefined"!=typeof window;exports.IS_BROWSER=e,exports.baseHeaders={"x-descope-sdk-name":"react","x-descope-sdk-version":"2.
|
|
1
|
+
"use strict";const e="undefined"!=typeof window;exports.IS_BROWSER=e,exports.baseHeaders={"x-descope-sdk-name":"react","x-descope-sdk-version":"2.26.0"};
|
|
2
2
|
//# sourceMappingURL=constants.js.map
|
package/dist/esm/constants.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const e={"x-descope-sdk-name":"react","x-descope-sdk-version":"2.
|
|
1
|
+
const e={"x-descope-sdk-name":"react","x-descope-sdk-version":"2.26.0"},d="undefined"!=typeof window;export{d as IS_BROWSER,e as baseHeaders};
|
|
2
2
|
//# sourceMappingURL=constants.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -665,6 +665,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
665
665
|
scopes?: string[];
|
|
666
666
|
tenantId?: string;
|
|
667
667
|
tenantLevel?: boolean;
|
|
668
|
+
externalIdentifier?: string;
|
|
668
669
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
669
670
|
};
|
|
670
671
|
saml: {
|
|
@@ -1384,6 +1385,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
1384
1385
|
scopes?: string[];
|
|
1385
1386
|
tenantId?: string;
|
|
1386
1387
|
tenantLevel?: boolean;
|
|
1388
|
+
externalIdentifier?: string;
|
|
1387
1389
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
1388
1390
|
};
|
|
1389
1391
|
saml: {
|
|
@@ -2103,6 +2105,7 @@ declare const createSdkWrapper: <P extends {
|
|
|
2103
2105
|
scopes?: string[];
|
|
2104
2106
|
tenantId?: string;
|
|
2105
2107
|
tenantLevel?: boolean;
|
|
2108
|
+
externalIdentifier?: string;
|
|
2106
2109
|
}, token?: string) => Promise<_1.SdkResponse<_1.URLResponse>>;
|
|
2107
2110
|
};
|
|
2108
2111
|
saml: {
|