@plyaz/types 1.39.4 → 1.39.5
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/auth/adapter-interface.d.ts +140 -0
- package/dist/auth/index.cjs.map +1 -1
- package/dist/auth/index.d.ts +1 -0
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/types.d.ts +8 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/auth/types.d.ts
CHANGED
|
@@ -430,10 +430,10 @@ export interface BackofficeUserRole {
|
|
|
430
430
|
/**
|
|
431
431
|
* Authentication provider adapter interface.
|
|
432
432
|
* @description Defines contract for provider-agnostic authentication interactions.
|
|
433
|
-
* * @interface
|
|
433
|
+
* * @interface AuthProviderTokens
|
|
434
434
|
* @property {string} name - The name of the authentication provider (e.g., 'clerk', 'auth0').
|
|
435
435
|
*/
|
|
436
|
-
export interface
|
|
436
|
+
export interface AuthProviderTokens {
|
|
437
437
|
name: string;
|
|
438
438
|
/**
|
|
439
439
|
* Verifies an external authentication token (e.g., a JWT).
|
|
@@ -1181,3 +1181,9 @@ export interface AuthFormCardProps {
|
|
|
1181
1181
|
onSubmit: (data: AuthForm) => void | Promise<void>;
|
|
1182
1182
|
passwordPlaceholder?: string;
|
|
1183
1183
|
}
|
|
1184
|
+
export interface AuthDeviceInfo {
|
|
1185
|
+
ip: string;
|
|
1186
|
+
browser: string;
|
|
1187
|
+
os: string;
|
|
1188
|
+
userAgent: string;
|
|
1189
|
+
}
|