@authhero/kysely-adapter 10.17.0 → 10.19.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 +24 -0
- package/dist/kysely-adapter.mjs +697 -661
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1153,6 +1153,12 @@ 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
|
+
]>>;
|
|
1161
|
+
redirect_uri: z.ZodOptional<z.ZodString>;
|
|
1156
1162
|
expires_at: z.ZodString;
|
|
1157
1163
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1158
1164
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1162,6 +1168,9 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1162
1168
|
code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
|
|
1163
1169
|
expires_at: string;
|
|
1164
1170
|
user_id?: string | undefined;
|
|
1171
|
+
redirect_uri?: string | undefined;
|
|
1172
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1173
|
+
code_challenge?: string | undefined;
|
|
1165
1174
|
connection_id?: string | undefined;
|
|
1166
1175
|
code_verifier?: string | undefined;
|
|
1167
1176
|
used_at?: string | undefined;
|
|
@@ -1171,6 +1180,9 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1171
1180
|
code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
|
|
1172
1181
|
expires_at: string;
|
|
1173
1182
|
user_id?: string | undefined;
|
|
1183
|
+
redirect_uri?: string | undefined;
|
|
1184
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1185
|
+
code_challenge?: string | undefined;
|
|
1174
1186
|
connection_id?: string | undefined;
|
|
1175
1187
|
code_verifier?: string | undefined;
|
|
1176
1188
|
used_at?: string | undefined;
|
|
@@ -1190,6 +1202,12 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1190
1202
|
"ticket"
|
|
1191
1203
|
]>;
|
|
1192
1204
|
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1205
|
+
code_challenge: z.ZodOptional<z.ZodString>;
|
|
1206
|
+
code_challenge_method: z.ZodOptional<z.ZodEnum<[
|
|
1207
|
+
"plain",
|
|
1208
|
+
"S256"
|
|
1209
|
+
]>>;
|
|
1210
|
+
redirect_uri: z.ZodOptional<z.ZodString>;
|
|
1193
1211
|
expires_at: z.ZodString;
|
|
1194
1212
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1195
1213
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1200,6 +1218,9 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1200
1218
|
code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
|
|
1201
1219
|
expires_at: string;
|
|
1202
1220
|
user_id?: string | undefined;
|
|
1221
|
+
redirect_uri?: string | undefined;
|
|
1222
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1223
|
+
code_challenge?: string | undefined;
|
|
1203
1224
|
connection_id?: string | undefined;
|
|
1204
1225
|
code_verifier?: string | undefined;
|
|
1205
1226
|
used_at?: string | undefined;
|
|
@@ -1210,6 +1231,9 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1210
1231
|
code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
|
|
1211
1232
|
expires_at: string;
|
|
1212
1233
|
user_id?: string | undefined;
|
|
1234
|
+
redirect_uri?: string | undefined;
|
|
1235
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1236
|
+
code_challenge?: string | undefined;
|
|
1213
1237
|
connection_id?: string | undefined;
|
|
1214
1238
|
code_verifier?: string | undefined;
|
|
1215
1239
|
used_at?: string | undefined;
|