@authhero/kysely-adapter 10.18.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.
@@ -1158,6 +1158,7 @@ declare const codeInsertSchema: z.ZodObject<{
1158
1158
  "plain",
1159
1159
  "S256"
1160
1160
  ]>>;
1161
+ redirect_uri: z.ZodOptional<z.ZodString>;
1161
1162
  expires_at: z.ZodString;
1162
1163
  used_at: z.ZodOptional<z.ZodString>;
1163
1164
  user_id: z.ZodOptional<z.ZodString>;
@@ -1167,6 +1168,7 @@ declare const codeInsertSchema: z.ZodObject<{
1167
1168
  code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
1168
1169
  expires_at: string;
1169
1170
  user_id?: string | undefined;
1171
+ redirect_uri?: string | undefined;
1170
1172
  code_challenge_method?: "S256" | "plain" | undefined;
1171
1173
  code_challenge?: string | undefined;
1172
1174
  connection_id?: string | undefined;
@@ -1178,6 +1180,7 @@ declare const codeInsertSchema: z.ZodObject<{
1178
1180
  code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
1179
1181
  expires_at: string;
1180
1182
  user_id?: string | undefined;
1183
+ redirect_uri?: string | undefined;
1181
1184
  code_challenge_method?: "S256" | "plain" | undefined;
1182
1185
  code_challenge?: string | undefined;
1183
1186
  connection_id?: string | undefined;
@@ -1204,6 +1207,7 @@ declare const codeSchema: z.ZodObject<{
1204
1207
  "plain",
1205
1208
  "S256"
1206
1209
  ]>>;
1210
+ redirect_uri: z.ZodOptional<z.ZodString>;
1207
1211
  expires_at: z.ZodString;
1208
1212
  used_at: z.ZodOptional<z.ZodString>;
1209
1213
  user_id: z.ZodOptional<z.ZodString>;
@@ -1214,6 +1218,7 @@ declare const codeSchema: z.ZodObject<{
1214
1218
  code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
1215
1219
  expires_at: string;
1216
1220
  user_id?: string | undefined;
1221
+ redirect_uri?: string | undefined;
1217
1222
  code_challenge_method?: "S256" | "plain" | undefined;
1218
1223
  code_challenge?: string | undefined;
1219
1224
  connection_id?: string | undefined;
@@ -1226,6 +1231,7 @@ declare const codeSchema: z.ZodObject<{
1226
1231
  code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
1227
1232
  expires_at: string;
1228
1233
  user_id?: string | undefined;
1234
+ redirect_uri?: string | undefined;
1229
1235
  code_challenge_method?: "S256" | "plain" | undefined;
1230
1236
  code_challenge?: string | undefined;
1231
1237
  connection_id?: string | undefined;