@authhero/kysely-adapter 10.17.0 → 10.18.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 +1 -1
- package/dist/kysely-adapter.d.ts +18 -0
- package/dist/kysely-adapter.mjs +603 -579
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1153,6 +1153,11 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1153
1153
|
"ticket"
|
|
1154
1154
|
]>;
|
|
1155
1155
|
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1156
|
+
code_challenge: z.ZodOptional<z.ZodString>;
|
|
1157
|
+
code_challenge_method: z.ZodOptional<z.ZodEnum<[
|
|
1158
|
+
"plain",
|
|
1159
|
+
"S256"
|
|
1160
|
+
]>>;
|
|
1156
1161
|
expires_at: z.ZodString;
|
|
1157
1162
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1158
1163
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1162,6 +1167,8 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1162
1167
|
code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
|
|
1163
1168
|
expires_at: string;
|
|
1164
1169
|
user_id?: string | undefined;
|
|
1170
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1171
|
+
code_challenge?: string | undefined;
|
|
1165
1172
|
connection_id?: string | undefined;
|
|
1166
1173
|
code_verifier?: string | undefined;
|
|
1167
1174
|
used_at?: string | undefined;
|
|
@@ -1171,6 +1178,8 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1171
1178
|
code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
|
|
1172
1179
|
expires_at: string;
|
|
1173
1180
|
user_id?: string | undefined;
|
|
1181
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1182
|
+
code_challenge?: string | undefined;
|
|
1174
1183
|
connection_id?: string | undefined;
|
|
1175
1184
|
code_verifier?: string | undefined;
|
|
1176
1185
|
used_at?: string | undefined;
|
|
@@ -1190,6 +1199,11 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1190
1199
|
"ticket"
|
|
1191
1200
|
]>;
|
|
1192
1201
|
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1202
|
+
code_challenge: z.ZodOptional<z.ZodString>;
|
|
1203
|
+
code_challenge_method: z.ZodOptional<z.ZodEnum<[
|
|
1204
|
+
"plain",
|
|
1205
|
+
"S256"
|
|
1206
|
+
]>>;
|
|
1193
1207
|
expires_at: z.ZodString;
|
|
1194
1208
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1195
1209
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1200,6 +1214,8 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1200
1214
|
code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
|
|
1201
1215
|
expires_at: string;
|
|
1202
1216
|
user_id?: string | undefined;
|
|
1217
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1218
|
+
code_challenge?: string | undefined;
|
|
1203
1219
|
connection_id?: string | undefined;
|
|
1204
1220
|
code_verifier?: string | undefined;
|
|
1205
1221
|
used_at?: string | undefined;
|
|
@@ -1210,6 +1226,8 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1210
1226
|
code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
|
|
1211
1227
|
expires_at: string;
|
|
1212
1228
|
user_id?: string | undefined;
|
|
1229
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1230
|
+
code_challenge?: string | undefined;
|
|
1213
1231
|
connection_id?: string | undefined;
|
|
1214
1232
|
code_verifier?: string | undefined;
|
|
1215
1233
|
used_at?: string | undefined;
|