authhero 0.232.0 → 0.233.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/authhero.cjs +24 -24
- package/dist/authhero.d.ts +0 -6
- package/dist/authhero.mjs +422 -424
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -8417,8 +8417,6 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8417
8417
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
8418
8418
|
enabled_clients?: string[] | undefined;
|
|
8419
8419
|
}>, "many">;
|
|
8420
|
-
disable_sign_ups: z.ZodBoolean;
|
|
8421
|
-
email_validation: z.ZodString;
|
|
8422
8420
|
client_id: z.ZodString;
|
|
8423
8421
|
name: z.ZodString;
|
|
8424
8422
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -8569,8 +8567,6 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8569
8567
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
8570
8568
|
enabled_clients?: string[] | undefined;
|
|
8571
8569
|
}[];
|
|
8572
|
-
disable_sign_ups: boolean;
|
|
8573
|
-
email_validation: string;
|
|
8574
8570
|
description?: string | undefined;
|
|
8575
8571
|
refresh_token?: Record<string, any> | undefined;
|
|
8576
8572
|
client_secret?: string | undefined;
|
|
@@ -8655,8 +8651,6 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8655
8651
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
8656
8652
|
enabled_clients?: string[] | undefined;
|
|
8657
8653
|
}[];
|
|
8658
|
-
disable_sign_ups: boolean;
|
|
8659
|
-
email_validation: string;
|
|
8660
8654
|
description?: string | undefined;
|
|
8661
8655
|
refresh_token?: Record<string, any> | undefined;
|
|
8662
8656
|
global?: boolean | undefined;
|