@authhero/kysely-adapter 10.18.0 → 10.20.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.
@@ -758,6 +758,7 @@ declare const ClientSchema: z.ZodObject<{
758
758
  kid: z.ZodOptional<z.ZodString>;
759
759
  team_id: z.ZodOptional<z.ZodString>;
760
760
  realms: z.ZodOptional<z.ZodString>;
761
+ authentication_method: z.ZodOptional<z.ZodString>;
761
762
  client_id: z.ZodOptional<z.ZodString>;
762
763
  client_secret: z.ZodOptional<z.ZodString>;
763
764
  app_secret: z.ZodOptional<z.ZodString>;
@@ -781,6 +782,7 @@ declare const ClientSchema: z.ZodObject<{
781
782
  kid?: string | undefined;
782
783
  team_id?: string | undefined;
783
784
  realms?: string | undefined;
785
+ authentication_method?: string | undefined;
784
786
  app_secret?: string | undefined;
785
787
  authorization_endpoint?: string | undefined;
786
788
  token_endpoint?: string | undefined;
@@ -799,6 +801,7 @@ declare const ClientSchema: z.ZodObject<{
799
801
  kid?: string | undefined;
800
802
  team_id?: string | undefined;
801
803
  realms?: string | undefined;
804
+ authentication_method?: string | undefined;
802
805
  app_secret?: string | undefined;
803
806
  authorization_endpoint?: string | undefined;
804
807
  token_endpoint?: string | undefined;
@@ -822,6 +825,7 @@ declare const ClientSchema: z.ZodObject<{
822
825
  kid?: string | undefined;
823
826
  team_id?: string | undefined;
824
827
  realms?: string | undefined;
828
+ authentication_method?: string | undefined;
825
829
  app_secret?: string | undefined;
826
830
  authorization_endpoint?: string | undefined;
827
831
  token_endpoint?: string | undefined;
@@ -854,6 +858,7 @@ declare const ClientSchema: z.ZodObject<{
854
858
  kid?: string | undefined;
855
859
  team_id?: string | undefined;
856
860
  realms?: string | undefined;
861
+ authentication_method?: string | undefined;
857
862
  app_secret?: string | undefined;
858
863
  authorization_endpoint?: string | undefined;
859
864
  token_endpoint?: string | undefined;
@@ -1007,6 +1012,7 @@ declare const ClientSchema: z.ZodObject<{
1007
1012
  kid?: string | undefined;
1008
1013
  team_id?: string | undefined;
1009
1014
  realms?: string | undefined;
1015
+ authentication_method?: string | undefined;
1010
1016
  app_secret?: string | undefined;
1011
1017
  authorization_endpoint?: string | undefined;
1012
1018
  token_endpoint?: string | undefined;
@@ -1086,6 +1092,7 @@ declare const ClientSchema: z.ZodObject<{
1086
1092
  kid?: string | undefined;
1087
1093
  team_id?: string | undefined;
1088
1094
  realms?: string | undefined;
1095
+ authentication_method?: string | undefined;
1089
1096
  app_secret?: string | undefined;
1090
1097
  authorization_endpoint?: string | undefined;
1091
1098
  token_endpoint?: string | undefined;
@@ -1158,6 +1165,9 @@ declare const codeInsertSchema: z.ZodObject<{
1158
1165
  "plain",
1159
1166
  "S256"
1160
1167
  ]>>;
1168
+ redirect_uri: z.ZodOptional<z.ZodString>;
1169
+ nonce: z.ZodOptional<z.ZodString>;
1170
+ state: z.ZodOptional<z.ZodString>;
1161
1171
  expires_at: z.ZodString;
1162
1172
  used_at: z.ZodOptional<z.ZodString>;
1163
1173
  user_id: z.ZodOptional<z.ZodString>;
@@ -1167,6 +1177,9 @@ declare const codeInsertSchema: z.ZodObject<{
1167
1177
  code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
1168
1178
  expires_at: string;
1169
1179
  user_id?: string | undefined;
1180
+ redirect_uri?: string | undefined;
1181
+ state?: string | undefined;
1182
+ nonce?: string | undefined;
1170
1183
  code_challenge_method?: "S256" | "plain" | undefined;
1171
1184
  code_challenge?: string | undefined;
1172
1185
  connection_id?: string | undefined;
@@ -1178,6 +1191,9 @@ declare const codeInsertSchema: z.ZodObject<{
1178
1191
  code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
1179
1192
  expires_at: string;
1180
1193
  user_id?: string | undefined;
1194
+ redirect_uri?: string | undefined;
1195
+ state?: string | undefined;
1196
+ nonce?: string | undefined;
1181
1197
  code_challenge_method?: "S256" | "plain" | undefined;
1182
1198
  code_challenge?: string | undefined;
1183
1199
  connection_id?: string | undefined;
@@ -1204,6 +1220,9 @@ declare const codeSchema: z.ZodObject<{
1204
1220
  "plain",
1205
1221
  "S256"
1206
1222
  ]>>;
1223
+ redirect_uri: z.ZodOptional<z.ZodString>;
1224
+ nonce: z.ZodOptional<z.ZodString>;
1225
+ state: z.ZodOptional<z.ZodString>;
1207
1226
  expires_at: z.ZodString;
1208
1227
  used_at: z.ZodOptional<z.ZodString>;
1209
1228
  user_id: z.ZodOptional<z.ZodString>;
@@ -1214,6 +1233,9 @@ declare const codeSchema: z.ZodObject<{
1214
1233
  code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
1215
1234
  expires_at: string;
1216
1235
  user_id?: string | undefined;
1236
+ redirect_uri?: string | undefined;
1237
+ state?: string | undefined;
1238
+ nonce?: string | undefined;
1217
1239
  code_challenge_method?: "S256" | "plain" | undefined;
1218
1240
  code_challenge?: string | undefined;
1219
1241
  connection_id?: string | undefined;
@@ -1226,6 +1248,9 @@ declare const codeSchema: z.ZodObject<{
1226
1248
  code_type: "password_reset" | "email_verification" | "otp" | "authorization_code" | "oauth2_state" | "ticket";
1227
1249
  expires_at: string;
1228
1250
  user_id?: string | undefined;
1251
+ redirect_uri?: string | undefined;
1252
+ state?: string | undefined;
1253
+ nonce?: string | undefined;
1229
1254
  code_challenge_method?: "S256" | "plain" | undefined;
1230
1255
  code_challenge?: string | undefined;
1231
1256
  connection_id?: string | undefined;
@@ -1241,6 +1266,7 @@ declare const connectionInsertSchema: z.ZodObject<{
1241
1266
  kid: z.ZodOptional<z.ZodString>;
1242
1267
  team_id: z.ZodOptional<z.ZodString>;
1243
1268
  realms: z.ZodOptional<z.ZodString>;
1269
+ authentication_method: z.ZodOptional<z.ZodString>;
1244
1270
  client_id: z.ZodOptional<z.ZodString>;
1245
1271
  client_secret: z.ZodOptional<z.ZodString>;
1246
1272
  app_secret: z.ZodOptional<z.ZodString>;
@@ -1264,6 +1290,7 @@ declare const connectionInsertSchema: z.ZodObject<{
1264
1290
  kid?: string | undefined;
1265
1291
  team_id?: string | undefined;
1266
1292
  realms?: string | undefined;
1293
+ authentication_method?: string | undefined;
1267
1294
  app_secret?: string | undefined;
1268
1295
  authorization_endpoint?: string | undefined;
1269
1296
  token_endpoint?: string | undefined;
@@ -1282,6 +1309,7 @@ declare const connectionInsertSchema: z.ZodObject<{
1282
1309
  kid?: string | undefined;
1283
1310
  team_id?: string | undefined;
1284
1311
  realms?: string | undefined;
1312
+ authentication_method?: string | undefined;
1285
1313
  app_secret?: string | undefined;
1286
1314
  authorization_endpoint?: string | undefined;
1287
1315
  token_endpoint?: string | undefined;
@@ -1305,6 +1333,7 @@ declare const connectionInsertSchema: z.ZodObject<{
1305
1333
  kid?: string | undefined;
1306
1334
  team_id?: string | undefined;
1307
1335
  realms?: string | undefined;
1336
+ authentication_method?: string | undefined;
1308
1337
  app_secret?: string | undefined;
1309
1338
  authorization_endpoint?: string | undefined;
1310
1339
  token_endpoint?: string | undefined;
@@ -1333,6 +1362,7 @@ declare const connectionInsertSchema: z.ZodObject<{
1333
1362
  kid?: string | undefined;
1334
1363
  team_id?: string | undefined;
1335
1364
  realms?: string | undefined;
1365
+ authentication_method?: string | undefined;
1336
1366
  app_secret?: string | undefined;
1337
1367
  authorization_endpoint?: string | undefined;
1338
1368
  token_endpoint?: string | undefined;
@@ -1360,6 +1390,7 @@ declare const connectionSchema: z.ZodObject<{
1360
1390
  kid: z.ZodOptional<z.ZodString>;
1361
1391
  team_id: z.ZodOptional<z.ZodString>;
1362
1392
  realms: z.ZodOptional<z.ZodString>;
1393
+ authentication_method: z.ZodOptional<z.ZodString>;
1363
1394
  client_id: z.ZodOptional<z.ZodString>;
1364
1395
  client_secret: z.ZodOptional<z.ZodString>;
1365
1396
  app_secret: z.ZodOptional<z.ZodString>;
@@ -1383,6 +1414,7 @@ declare const connectionSchema: z.ZodObject<{
1383
1414
  kid?: string | undefined;
1384
1415
  team_id?: string | undefined;
1385
1416
  realms?: string | undefined;
1417
+ authentication_method?: string | undefined;
1386
1418
  app_secret?: string | undefined;
1387
1419
  authorization_endpoint?: string | undefined;
1388
1420
  token_endpoint?: string | undefined;
@@ -1401,6 +1433,7 @@ declare const connectionSchema: z.ZodObject<{
1401
1433
  kid?: string | undefined;
1402
1434
  team_id?: string | undefined;
1403
1435
  realms?: string | undefined;
1436
+ authentication_method?: string | undefined;
1404
1437
  app_secret?: string | undefined;
1405
1438
  authorization_endpoint?: string | undefined;
1406
1439
  token_endpoint?: string | undefined;
@@ -1424,6 +1457,7 @@ declare const connectionSchema: z.ZodObject<{
1424
1457
  kid?: string | undefined;
1425
1458
  team_id?: string | undefined;
1426
1459
  realms?: string | undefined;
1460
+ authentication_method?: string | undefined;
1427
1461
  app_secret?: string | undefined;
1428
1462
  authorization_endpoint?: string | undefined;
1429
1463
  token_endpoint?: string | undefined;
@@ -1456,6 +1490,7 @@ declare const connectionSchema: z.ZodObject<{
1456
1490
  kid?: string | undefined;
1457
1491
  team_id?: string | undefined;
1458
1492
  realms?: string | undefined;
1493
+ authentication_method?: string | undefined;
1459
1494
  app_secret?: string | undefined;
1460
1495
  authorization_endpoint?: string | undefined;
1461
1496
  token_endpoint?: string | undefined;