@versini/auth-provider 7.5.2 → 8.0.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/dist/AuthHookContext-C9a2AwWZ.js +5 -0
- package/dist/auth.d.ts +16 -0
- package/dist/auth.js +1104 -0
- package/dist/auth0.d.ts +6 -0
- package/dist/auth0.js +1314 -0
- package/dist/hooks.d.ts +6 -0
- package/dist/hooks.js +24 -0
- package/dist/index-Dk6T3xdb.js +983 -0
- package/dist/index.d.ts +0 -55
- package/dist/index.js +6 -2057
- package/dist/types.d-C8LtGKj9.d.ts +40 -0
- package/package.json +17 -3
package/dist/auth.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { A as AuthProviderProps } from './types.d-C8LtGKj9.js';
|
|
3
|
+
import '@versini/auth-common';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* AuthProvider component.
|
|
7
|
+
*
|
|
8
|
+
* @param children - The children of the component.
|
|
9
|
+
* @param sessionExpiration - The session expiration time.
|
|
10
|
+
* @param clientId - The client ID.
|
|
11
|
+
* @param domain - The domain.
|
|
12
|
+
* @param debug - The debug flag.
|
|
13
|
+
*/
|
|
14
|
+
declare const AuthProvider: ({ children, sessionExpiration, clientId, domain, debug, endpoint, }: AuthProviderProps) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
export { AuthProvider };
|