@authhero/kysely-adapter 10.47.0 → 10.49.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/kysely-adapter.cjs +3 -3
- package/dist/kysely-adapter.d.ts +0 -6
- package/dist/kysely-adapter.mjs +814 -769
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -987,8 +987,6 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
987
987
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
988
988
|
enabled_clients?: string[] | undefined;
|
|
989
989
|
}>, "many">;
|
|
990
|
-
disable_sign_ups: z.ZodBoolean;
|
|
991
|
-
email_validation: z.ZodString;
|
|
992
990
|
client_id: z.ZodString;
|
|
993
991
|
name: z.ZodString;
|
|
994
992
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1139,8 +1137,6 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
1139
1137
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1140
1138
|
enabled_clients?: string[] | undefined;
|
|
1141
1139
|
}[];
|
|
1142
|
-
disable_sign_ups: boolean;
|
|
1143
|
-
email_validation: string;
|
|
1144
1140
|
description?: string | undefined;
|
|
1145
1141
|
refresh_token?: Record<string, any> | undefined;
|
|
1146
1142
|
client_secret?: string | undefined;
|
|
@@ -1225,8 +1221,6 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
1225
1221
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1226
1222
|
enabled_clients?: string[] | undefined;
|
|
1227
1223
|
}[];
|
|
1228
|
-
disable_sign_ups: boolean;
|
|
1229
|
-
email_validation: string;
|
|
1230
1224
|
description?: string | undefined;
|
|
1231
1225
|
refresh_token?: Record<string, any> | undefined;
|
|
1232
1226
|
global?: boolean | undefined;
|