@descope/react-sdk 2.15.0 → 2.16.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/components/TenantProfile.js +2 -0
- package/dist/cjs/components/TenantProfile.js.map +1 -0
- package/dist/cjs/constants.js +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/TenantProfile.js +2 -0
- package/dist/esm/components/TenantProfile.js.map +1 -0
- package/dist/esm/constants.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +28 -15
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/types/components/TenantProfile.d.ts +10 -0
- package/dist/types/types.d.ts +10 -6
- package/dist/types/widgets.d.ts +4 -3
- package/package.json +9 -8
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react"),t=require("../hooks/Context.js"),r=require("./withPropsMapping/index.js");function a(e){return e&&e.__esModule?e:{default:e}}var l=a(e);const d=e.lazy((async()=>(await import("@descope/tenant-profile-widget"),{default:r.default(l.default.forwardRef(((e,t)=>l.default.createElement("descope-tenant-profile-widget",Object.assign({ref:t},e)))))}))),s=l.default.forwardRef((({logger:r,theme:a,debug:s,widgetId:n,styleId:o,tenant:u},f)=>{const[i,c]=e.useState(null);e.useImperativeHandle(f,(()=>i));const{projectId:p,baseUrl:g,baseStaticUrl:b,baseCdnUrl:m,refreshCookieName:w}=l.default.useContext(t.default);return l.default.createElement(e.Suspense,{fallback:null},l.default.createElement(d,{projectId:p,widgetId:n,baseUrl:g,baseStaticUrl:b,baseCdnUrl:m,styleId:o,tenant:u,ref:c,"theme.attr":a,"debug.attr":s,"styleId.attr":o,"tenant.attr":u,"refreshCookieName.attr":w,"logger.prop":r}))}));exports.default=s;
|
|
2
|
+
//# sourceMappingURL=TenantProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TenantProfile.js","sources":["../../../src/components/TenantProfile.tsx"],"sourcesContent":["import React, { lazy, Suspense, useImperativeHandle, useState } from 'react';\nimport Context from '../hooks/Context';\nimport { TenantProfileProps } from '../types';\nimport withPropsMapping from './withPropsMapping';\n\nconst TenantProfileWC = lazy(async () => {\n await import('@descope/tenant-profile-widget');\n\n return {\n default: withPropsMapping(\n React.forwardRef<HTMLElement>((props, ref) => (\n\t<descope-tenant-profile-widget ref={ref} {...props} />\n )),\n ),\n };\n});\n\nconst TenantProfile = React.forwardRef<HTMLElement, TenantProfileProps>(\n ({ logger, theme, debug, widgetId, styleId, tenant }, ref) => {\n const [innerRef, setInnerRef] = useState(null);\n\n useImperativeHandle(ref, () => innerRef);\n\n const { projectId, baseUrl, baseStaticUrl, baseCdnUrl, refreshCookieName } =\n React.useContext(Context);\n\n return (\n\t<Suspense fallback={null}>\n\t\t<TenantProfileWC\n projectId={projectId}\n widgetId={widgetId}\n baseUrl={baseUrl}\n baseStaticUrl={baseStaticUrl}\n baseCdnUrl={baseCdnUrl}\n styleId={styleId}\n tenant={tenant}\n ref={setInnerRef}\n {...{\n 'theme.attr': theme,\n 'debug.attr': debug,\n 'styleId.attr': styleId,\n 'tenant.attr': tenant,\n 'refreshCookieName.attr': refreshCookieName,\n 'logger.prop': logger,\n }}\n />\n\t</Suspense>\n );\n },\n);\n\nexport default TenantProfile;\n"],"names":["TenantProfileWC","lazy","async","import","default","withPropsMapping","React","forwardRef","props","ref","createElement","Object","assign","TenantProfile","logger","theme","debug","widgetId","styleId","tenant","innerRef","setInnerRef","useState","useImperativeHandle","projectId","baseUrl","baseStaticUrl","baseCdnUrl","refreshCookieName","useContext","Context","Suspense","fallback"],"mappings":"mOAKA,MAAMA,EAAkBC,EAAIA,MAACC,gBACrBC,OAAO,kCAEN,CACLC,QAASC,EAAgBD,QACvBE,UAAMC,YAAwB,CAACC,EAAOC,IAC3CH,EAAAA,QAA+BI,cAAA,gCAAAC,OAAAC,OAAA,CAAAH,IAAKA,GAASD,WAMxCK,EAAgBP,EAAKF,QAACG,YAC1B,EAAGO,SAAQC,QAAOC,QAAOC,WAAUC,UAASC,UAAUV,KACpD,MAAOW,EAAUC,GAAeC,EAAQA,SAAC,MAEzCC,sBAAoBd,GAAK,IAAMW,IAE/B,MAAMI,UAAEA,EAASC,QAAEA,EAAOC,cAAEA,EAAaC,WAAEA,EAAUC,kBAAEA,GACrDtB,EAAKF,QAACyB,WAAWC,EAAAA,SAEnB,OACHxB,EAACF,QAAAM,cAAAqB,EAAQA,SAAC,CAAAC,SAAU,MACnB1B,UAAAI,cAACV,EACO,CAAAwB,UAAWA,EACXP,SAAUA,EACVQ,QAASA,EACTC,cAAeA,EACfC,WAAYA,EACZT,QAASA,EACTC,OAAQA,EACRV,IAAKY,EAEH,aAAcN,EACd,aAAcC,EACd,eAAgBE,EAChB,cAAeC,EACf,yBAA0BS,EAC1B,cAAed,IAIrB"}
|
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.16.1"};
|
|
2
2
|
//# sourceMappingURL=constants.js.map
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var e=require("./components/AuthProvider/AuthProvider.js"),s=require("./components/DefaultFlows.js"),r=require("./components/Descope.js"),o=require("./hooks/useDescope.js"),t=require("./hooks/useSession.js"),n=require("./hooks/useUser.js"),i=require("./sdk.js"),p=require("./constants.js"),a=require("./components/
|
|
1
|
+
"use strict";var e=require("./components/AuthProvider/AuthProvider.js"),s=require("./components/DefaultFlows.js"),r=require("./components/Descope.js"),o=require("./hooks/useDescope.js"),t=require("./hooks/useSession.js"),n=require("./hooks/useUser.js"),i=require("./sdk.js"),p=require("./constants.js"),a=require("./components/AccessKeyManagement.js"),u=require("./components/ApplicationsPortal.js"),l=require("./components/AuditManagement.js"),x=require("./components/RoleManagement.js"),d=require("./components/TenantProfile.js"),g=require("./components/UserManagement.js"),f=require("./components/UserProfile.js");exports.AuthProvider=e.default,exports.SignInFlow=s.SignInFlow,exports.SignUpFlow=s.SignUpFlow,exports.SignUpOrInFlow=s.SignUpOrInFlow,exports.Descope=r.default,exports.useDescope=o.default,exports.useSession=t.default,exports.useUser=n.default,exports.getCurrentTenant=i.getCurrentTenant,exports.getJwtPermissions=i.getJwtPermissions,exports.getJwtRoles=i.getJwtRoles,exports.getRefreshToken=i.getRefreshToken,exports.getSessionToken=i.getSessionToken,exports.isRefreshTokenExpired=i.isRefreshTokenExpired,exports.isSessionTokenExpired=i.isSessionTokenExpired,exports.refresh=i.refresh,exports.baseHeaders=p.baseHeaders,exports.AccessKeyManagement=a.default,exports.ApplicationsPortal=u.default,exports.AuditManagement=l.default,exports.RoleManagement=x.default,exports.TenantProfile=d.default,exports.UserManagement=g.default,exports.UserProfile=f.default;
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e,{lazy as t,useState as r,useImperativeHandle as a,Suspense as o}from"react";import n from"../hooks/Context.js";import s from"./withPropsMapping/index.js";const l=t((async()=>(await import("@descope/tenant-profile-widget"),{default:s(e.forwardRef(((t,r)=>e.createElement("descope-tenant-profile-widget",Object.assign({ref:r},t)))))}))),d=e.forwardRef((({logger:t,theme:s,debug:d,widgetId:i,styleId:c,tenant:f},p)=>{const[m,g]=r(null);a(p,(()=>m));const{projectId:b,baseUrl:u,baseStaticUrl:w,baseCdnUrl:I,refreshCookieName:h}=e.useContext(n);return e.createElement(o,{fallback:null},e.createElement(l,{projectId:b,widgetId:i,baseUrl:u,baseStaticUrl:w,baseCdnUrl:I,styleId:c,tenant:f,ref:g,"theme.attr":s,"debug.attr":d,"styleId.attr":c,"tenant.attr":f,"refreshCookieName.attr":h,"logger.prop":t}))}));export{d as default};
|
|
2
|
+
//# sourceMappingURL=TenantProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TenantProfile.js","sources":["../../../src/components/TenantProfile.tsx"],"sourcesContent":["import React, { lazy, Suspense, useImperativeHandle, useState } from 'react';\nimport Context from '../hooks/Context';\nimport { TenantProfileProps } from '../types';\nimport withPropsMapping from './withPropsMapping';\n\nconst TenantProfileWC = lazy(async () => {\n await import('@descope/tenant-profile-widget');\n\n return {\n default: withPropsMapping(\n React.forwardRef<HTMLElement>((props, ref) => (\n\t<descope-tenant-profile-widget ref={ref} {...props} />\n )),\n ),\n };\n});\n\nconst TenantProfile = React.forwardRef<HTMLElement, TenantProfileProps>(\n ({ logger, theme, debug, widgetId, styleId, tenant }, ref) => {\n const [innerRef, setInnerRef] = useState(null);\n\n useImperativeHandle(ref, () => innerRef);\n\n const { projectId, baseUrl, baseStaticUrl, baseCdnUrl, refreshCookieName } =\n React.useContext(Context);\n\n return (\n\t<Suspense fallback={null}>\n\t\t<TenantProfileWC\n projectId={projectId}\n widgetId={widgetId}\n baseUrl={baseUrl}\n baseStaticUrl={baseStaticUrl}\n baseCdnUrl={baseCdnUrl}\n styleId={styleId}\n tenant={tenant}\n ref={setInnerRef}\n {...{\n 'theme.attr': theme,\n 'debug.attr': debug,\n 'styleId.attr': styleId,\n 'tenant.attr': tenant,\n 'refreshCookieName.attr': refreshCookieName,\n 'logger.prop': logger,\n }}\n />\n\t</Suspense>\n );\n },\n);\n\nexport default TenantProfile;\n"],"names":["TenantProfileWC","lazy","async","import","default","withPropsMapping","React","forwardRef","props","ref","createElement","Object","assign","TenantProfile","logger","theme","debug","widgetId","styleId","tenant","innerRef","setInnerRef","useState","useImperativeHandle","projectId","baseUrl","baseStaticUrl","baseCdnUrl","refreshCookieName","useContext","Context","Suspense","fallback"],"mappings":"mKAKA,MAAMA,EAAkBC,GAAKC,gBACrBC,OAAO,kCAEN,CACLC,QAASC,EACPC,EAAMC,YAAwB,CAACC,EAAOC,IAC3CH,EAA+BI,cAAA,gCAAAC,OAAAC,OAAA,CAAAH,IAAKA,GAASD,WAMxCK,EAAgBP,EAAMC,YAC1B,EAAGO,SAAQC,QAAOC,QAAOC,WAAUC,UAASC,UAAUV,KACpD,MAAOW,EAAUC,GAAeC,EAAS,MAEzCC,EAAoBd,GAAK,IAAMW,IAE/B,MAAMI,UAAEA,EAASC,QAAEA,EAAOC,cAAEA,EAAaC,WAAEA,EAAUC,kBAAEA,GACrDtB,EAAMuB,WAAWC,GAEnB,OACHxB,EAACI,cAAAqB,EAAS,CAAAC,SAAU,MACnB1B,EAAAI,cAACV,EACO,CAAAwB,UAAWA,EACXP,SAAUA,EACVQ,QAASA,EACTC,cAAeA,EACfC,WAAYA,EACZT,QAASA,EACTC,OAAQA,EACRV,IAAKY,EAEH,aAAcN,EACd,aAAcC,EACd,eAAgBE,EAChB,cAAeC,EACf,yBAA0BS,EAC1B,cAAed,IAIrB"}
|
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.16.1"},d="undefined"!=typeof window;export{d as IS_BROWSER,e as baseHeaders};
|
|
2
2
|
//# sourceMappingURL=constants.js.map
|
package/dist/esm/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{default as AuthProvider}from"./components/AuthProvider/AuthProvider.js";export{SignInFlow,SignUpFlow,SignUpOrInFlow}from"./components/DefaultFlows.js";export{default as Descope}from"./components/Descope.js";export{default as useDescope}from"./hooks/useDescope.js";export{default as useSession}from"./hooks/useSession.js";export{default as useUser}from"./hooks/useUser.js";export{getCurrentTenant,getJwtPermissions,getJwtRoles,getRefreshToken,getSessionToken,isRefreshTokenExpired,isSessionTokenExpired,refresh}from"./sdk.js";export{baseHeaders}from"./constants.js";export{default as
|
|
1
|
+
export{default as AuthProvider}from"./components/AuthProvider/AuthProvider.js";export{SignInFlow,SignUpFlow,SignUpOrInFlow}from"./components/DefaultFlows.js";export{default as Descope}from"./components/Descope.js";export{default as useDescope}from"./hooks/useDescope.js";export{default as useSession}from"./hooks/useSession.js";export{default as useUser}from"./hooks/useUser.js";export{getCurrentTenant,getJwtPermissions,getJwtRoles,getRefreshToken,getSessionToken,isRefreshTokenExpired,isSessionTokenExpired,refresh}from"./sdk.js";export{baseHeaders}from"./constants.js";export{default as AccessKeyManagement}from"./components/AccessKeyManagement.js";export{default as ApplicationsPortal}from"./components/ApplicationsPortal.js";export{default as AuditManagement}from"./components/AuditManagement.js";export{default as RoleManagement}from"./components/RoleManagement.js";export{default as TenantProfile}from"./components/TenantProfile.js";export{default as UserManagement}from"./components/UserManagement.js";export{default as UserProfile}from"./components/UserProfile.js";
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import React, { FC, DOMAttributes } from 'react';
|
|
2
2
|
import * as _descope_web_js_sdk from '@descope/web-js-sdk';
|
|
3
3
|
import { CookieConfig, OidcConfig } from '@descope/web-js-sdk';
|
|
4
|
-
import * as _descope_web_component from '@descope/web-component';
|
|
5
|
-
import _descope_web_component__default, { ILogger, ThemeOptions, AutoFocusOptions } from '@descope/web-component';
|
|
6
|
-
export { ILogger } from '@descope/web-component';
|
|
7
|
-
import UserManagementWidget from '@descope/user-management-widget';
|
|
8
|
-
import RoleManagementWidget from '@descope/role-management-widget';
|
|
9
4
|
import AccessKeyManagementWidget from '@descope/access-key-management-widget';
|
|
5
|
+
import ApplicationsPortalWidget from '@descope/applications-portal-widget';
|
|
10
6
|
import AuditManagementWidget from '@descope/audit-management-widget';
|
|
7
|
+
import RoleManagementWidget from '@descope/role-management-widget';
|
|
8
|
+
import TenantProfileWidget from '@descope/tenant-profile-widget';
|
|
9
|
+
import UserManagementWidget from '@descope/user-management-widget';
|
|
11
10
|
import UserProfileWidget from '@descope/user-profile-widget';
|
|
12
|
-
import
|
|
11
|
+
import * as _descope_web_component from '@descope/web-component';
|
|
12
|
+
import _descope_web_component__default, { ILogger, ThemeOptions, AutoFocusOptions } from '@descope/web-component';
|
|
13
|
+
export { ILogger } from '@descope/web-component';
|
|
13
14
|
import * as _1 from '@descope/core-js-sdk';
|
|
14
15
|
import * as _2 from 'oidc-client-ts';
|
|
15
16
|
|
|
@@ -2126,6 +2127,7 @@ declare global {
|
|
|
2126
2127
|
['descope-audit-management-widget']: AuditManagementCustomElement;
|
|
2127
2128
|
['descope-user-profile-widget']: UserProfileCustomElement;
|
|
2128
2129
|
['descope-applications-portal-widget']: ApplicationsPortalCustomElement;
|
|
2130
|
+
['descope-tenant-profile-widget']: TenantProfileCustomElement;
|
|
2129
2131
|
}
|
|
2130
2132
|
}
|
|
2131
2133
|
}
|
|
@@ -2153,6 +2155,7 @@ type AccessKeyManagementCustomElement = CustomElement<typeof AccessKeyManagement
|
|
|
2153
2155
|
type AuditManagementCustomElement = CustomElement<typeof AuditManagementWidget & AuditManagementProps>;
|
|
2154
2156
|
type UserProfileCustomElement = CustomElement<typeof UserProfileWidget & UserProfileProps>;
|
|
2155
2157
|
type ApplicationsPortalCustomElement = CustomElement<typeof ApplicationsPortalWidget & ApplicationsPortalProps>;
|
|
2158
|
+
type TenantProfileCustomElement = CustomElement<typeof TenantProfileWidget & TenantProfileProps>;
|
|
2156
2159
|
type DescopeProps = {
|
|
2157
2160
|
flowId: string;
|
|
2158
2161
|
onSuccess?: CustomEventCb<JWTResponse>;
|
|
@@ -2192,6 +2195,7 @@ type UserProfileProps = Omit<WidgetProps, 'tenant'> & {
|
|
|
2192
2195
|
type ApplicationsPortalProps = Omit<WidgetProps, 'tenant'> & {
|
|
2193
2196
|
onLogout?: (e: CustomEvent) => void;
|
|
2194
2197
|
};
|
|
2198
|
+
type TenantProfileProps = WidgetProps;
|
|
2195
2199
|
|
|
2196
2200
|
type DefaultFlowProps = Omit<DescopeProps, 'flowId'>;
|
|
2197
2201
|
|
|
@@ -2219,7 +2223,7 @@ declare const baseHeaders: {
|
|
|
2219
2223
|
'x-descope-sdk-version': string;
|
|
2220
2224
|
};
|
|
2221
2225
|
|
|
2222
|
-
declare const
|
|
2226
|
+
declare const AccessKeyManagement: React.ForwardRefExoticComponent<{
|
|
2223
2227
|
logger?: Partial<any>;
|
|
2224
2228
|
tenant: string;
|
|
2225
2229
|
widgetId: string;
|
|
@@ -2228,7 +2232,18 @@ declare const UserManagement: React.ForwardRefExoticComponent<{
|
|
|
2228
2232
|
styleId?: string;
|
|
2229
2233
|
} & React.RefAttributes<HTMLElement>>;
|
|
2230
2234
|
|
|
2231
|
-
declare const
|
|
2235
|
+
declare const ApplicationsPortal: React.ForwardRefExoticComponent<Omit<{
|
|
2236
|
+
logger?: Partial<any>;
|
|
2237
|
+
tenant: string;
|
|
2238
|
+
widgetId: string;
|
|
2239
|
+
theme?: _descope_web_component.ThemeOptions;
|
|
2240
|
+
debug?: boolean;
|
|
2241
|
+
styleId?: string;
|
|
2242
|
+
}, "tenant"> & {
|
|
2243
|
+
onLogout?: (e: CustomEvent<any>) => void;
|
|
2244
|
+
} & React.RefAttributes<HTMLElement>>;
|
|
2245
|
+
|
|
2246
|
+
declare const AuditManagement: React.ForwardRefExoticComponent<{
|
|
2232
2247
|
logger?: Partial<any>;
|
|
2233
2248
|
tenant: string;
|
|
2234
2249
|
widgetId: string;
|
|
@@ -2237,7 +2252,7 @@ declare const RoleManagement: React.ForwardRefExoticComponent<{
|
|
|
2237
2252
|
styleId?: string;
|
|
2238
2253
|
} & React.RefAttributes<HTMLElement>>;
|
|
2239
2254
|
|
|
2240
|
-
declare const
|
|
2255
|
+
declare const RoleManagement: React.ForwardRefExoticComponent<{
|
|
2241
2256
|
logger?: Partial<any>;
|
|
2242
2257
|
tenant: string;
|
|
2243
2258
|
widgetId: string;
|
|
@@ -2246,7 +2261,7 @@ declare const AccessKeyManagement: React.ForwardRefExoticComponent<{
|
|
|
2246
2261
|
styleId?: string;
|
|
2247
2262
|
} & React.RefAttributes<HTMLElement>>;
|
|
2248
2263
|
|
|
2249
|
-
declare const
|
|
2264
|
+
declare const TenantProfile: React.ForwardRefExoticComponent<{
|
|
2250
2265
|
logger?: Partial<any>;
|
|
2251
2266
|
tenant: string;
|
|
2252
2267
|
widgetId: string;
|
|
@@ -2255,18 +2270,16 @@ declare const AuditManagement: React.ForwardRefExoticComponent<{
|
|
|
2255
2270
|
styleId?: string;
|
|
2256
2271
|
} & React.RefAttributes<HTMLElement>>;
|
|
2257
2272
|
|
|
2258
|
-
declare const
|
|
2273
|
+
declare const UserManagement: React.ForwardRefExoticComponent<{
|
|
2259
2274
|
logger?: Partial<any>;
|
|
2260
2275
|
tenant: string;
|
|
2261
2276
|
widgetId: string;
|
|
2262
2277
|
theme?: _descope_web_component.ThemeOptions;
|
|
2263
2278
|
debug?: boolean;
|
|
2264
2279
|
styleId?: string;
|
|
2265
|
-
}, "tenant"> & {
|
|
2266
|
-
onLogout?: (e: CustomEvent<any>) => void;
|
|
2267
2280
|
} & React.RefAttributes<HTMLElement>>;
|
|
2268
2281
|
|
|
2269
|
-
declare const
|
|
2282
|
+
declare const UserProfile: React.ForwardRefExoticComponent<Omit<{
|
|
2270
2283
|
logger?: Partial<any>;
|
|
2271
2284
|
tenant: string;
|
|
2272
2285
|
widgetId: string;
|
|
@@ -2277,4 +2290,4 @@ declare const ApplicationsPortal: React.ForwardRefExoticComponent<Omit<{
|
|
|
2277
2290
|
onLogout?: (e: CustomEvent<any>) => void;
|
|
2278
2291
|
} & React.RefAttributes<HTMLElement>>;
|
|
2279
2292
|
|
|
2280
|
-
export { AccessKeyManagement, ApplicationsPortal, AuditManagement, AuthProvider, Descope, RoleManagement, SignInFlow, SignUpFlow, SignUpOrInFlow, UserManagement, UserProfile, baseHeaders, getCurrentTenant, getJwtPermissions, getJwtRoles, getRefreshToken, getSessionToken, isRefreshTokenExpired, isSessionTokenExpired, refresh, useDescope, useSession, useUser };
|
|
2293
|
+
export { AccessKeyManagement, ApplicationsPortal, AuditManagement, AuthProvider, Descope, RoleManagement, SignInFlow, SignUpFlow, SignUpOrInFlow, TenantProfile, UserManagement, UserProfile, baseHeaders, getCurrentTenant, getJwtPermissions, getJwtRoles, getRefreshToken, getSessionToken, isRefreshTokenExpired, isSessionTokenExpired, refresh, useDescope, useSession, useUser };
|