@authhero/kysely-adapter 10.19.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.
- package/dist/kysely-adapter.cjs +1 -1
- package/dist/kysely-adapter.d.ts +29 -0
- package/dist/kysely-adapter.mjs +130 -118
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -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;
|
|
@@ -1159,6 +1166,8 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1159
1166
|
"S256"
|
|
1160
1167
|
]>>;
|
|
1161
1168
|
redirect_uri: z.ZodOptional<z.ZodString>;
|
|
1169
|
+
nonce: z.ZodOptional<z.ZodString>;
|
|
1170
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1162
1171
|
expires_at: z.ZodString;
|
|
1163
1172
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1164
1173
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1169,6 +1178,8 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1169
1178
|
expires_at: string;
|
|
1170
1179
|
user_id?: string | undefined;
|
|
1171
1180
|
redirect_uri?: string | undefined;
|
|
1181
|
+
state?: string | undefined;
|
|
1182
|
+
nonce?: string | undefined;
|
|
1172
1183
|
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1173
1184
|
code_challenge?: string | undefined;
|
|
1174
1185
|
connection_id?: string | undefined;
|
|
@@ -1181,6 +1192,8 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1181
1192
|
expires_at: string;
|
|
1182
1193
|
user_id?: string | undefined;
|
|
1183
1194
|
redirect_uri?: string | undefined;
|
|
1195
|
+
state?: string | undefined;
|
|
1196
|
+
nonce?: string | undefined;
|
|
1184
1197
|
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1185
1198
|
code_challenge?: string | undefined;
|
|
1186
1199
|
connection_id?: string | undefined;
|
|
@@ -1208,6 +1221,8 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1208
1221
|
"S256"
|
|
1209
1222
|
]>>;
|
|
1210
1223
|
redirect_uri: z.ZodOptional<z.ZodString>;
|
|
1224
|
+
nonce: z.ZodOptional<z.ZodString>;
|
|
1225
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1211
1226
|
expires_at: z.ZodString;
|
|
1212
1227
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1213
1228
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1219,6 +1234,8 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1219
1234
|
expires_at: string;
|
|
1220
1235
|
user_id?: string | undefined;
|
|
1221
1236
|
redirect_uri?: string | undefined;
|
|
1237
|
+
state?: string | undefined;
|
|
1238
|
+
nonce?: string | undefined;
|
|
1222
1239
|
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1223
1240
|
code_challenge?: string | undefined;
|
|
1224
1241
|
connection_id?: string | undefined;
|
|
@@ -1232,6 +1249,8 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1232
1249
|
expires_at: string;
|
|
1233
1250
|
user_id?: string | undefined;
|
|
1234
1251
|
redirect_uri?: string | undefined;
|
|
1252
|
+
state?: string | undefined;
|
|
1253
|
+
nonce?: string | undefined;
|
|
1235
1254
|
code_challenge_method?: "S256" | "plain" | undefined;
|
|
1236
1255
|
code_challenge?: string | undefined;
|
|
1237
1256
|
connection_id?: string | undefined;
|
|
@@ -1247,6 +1266,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1247
1266
|
kid: z.ZodOptional<z.ZodString>;
|
|
1248
1267
|
team_id: z.ZodOptional<z.ZodString>;
|
|
1249
1268
|
realms: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
authentication_method: z.ZodOptional<z.ZodString>;
|
|
1250
1270
|
client_id: z.ZodOptional<z.ZodString>;
|
|
1251
1271
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
1252
1272
|
app_secret: z.ZodOptional<z.ZodString>;
|
|
@@ -1270,6 +1290,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1270
1290
|
kid?: string | undefined;
|
|
1271
1291
|
team_id?: string | undefined;
|
|
1272
1292
|
realms?: string | undefined;
|
|
1293
|
+
authentication_method?: string | undefined;
|
|
1273
1294
|
app_secret?: string | undefined;
|
|
1274
1295
|
authorization_endpoint?: string | undefined;
|
|
1275
1296
|
token_endpoint?: string | undefined;
|
|
@@ -1288,6 +1309,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1288
1309
|
kid?: string | undefined;
|
|
1289
1310
|
team_id?: string | undefined;
|
|
1290
1311
|
realms?: string | undefined;
|
|
1312
|
+
authentication_method?: string | undefined;
|
|
1291
1313
|
app_secret?: string | undefined;
|
|
1292
1314
|
authorization_endpoint?: string | undefined;
|
|
1293
1315
|
token_endpoint?: string | undefined;
|
|
@@ -1311,6 +1333,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1311
1333
|
kid?: string | undefined;
|
|
1312
1334
|
team_id?: string | undefined;
|
|
1313
1335
|
realms?: string | undefined;
|
|
1336
|
+
authentication_method?: string | undefined;
|
|
1314
1337
|
app_secret?: string | undefined;
|
|
1315
1338
|
authorization_endpoint?: string | undefined;
|
|
1316
1339
|
token_endpoint?: string | undefined;
|
|
@@ -1339,6 +1362,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1339
1362
|
kid?: string | undefined;
|
|
1340
1363
|
team_id?: string | undefined;
|
|
1341
1364
|
realms?: string | undefined;
|
|
1365
|
+
authentication_method?: string | undefined;
|
|
1342
1366
|
app_secret?: string | undefined;
|
|
1343
1367
|
authorization_endpoint?: string | undefined;
|
|
1344
1368
|
token_endpoint?: string | undefined;
|
|
@@ -1366,6 +1390,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1366
1390
|
kid: z.ZodOptional<z.ZodString>;
|
|
1367
1391
|
team_id: z.ZodOptional<z.ZodString>;
|
|
1368
1392
|
realms: z.ZodOptional<z.ZodString>;
|
|
1393
|
+
authentication_method: z.ZodOptional<z.ZodString>;
|
|
1369
1394
|
client_id: z.ZodOptional<z.ZodString>;
|
|
1370
1395
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
1371
1396
|
app_secret: z.ZodOptional<z.ZodString>;
|
|
@@ -1389,6 +1414,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1389
1414
|
kid?: string | undefined;
|
|
1390
1415
|
team_id?: string | undefined;
|
|
1391
1416
|
realms?: string | undefined;
|
|
1417
|
+
authentication_method?: string | undefined;
|
|
1392
1418
|
app_secret?: string | undefined;
|
|
1393
1419
|
authorization_endpoint?: string | undefined;
|
|
1394
1420
|
token_endpoint?: string | undefined;
|
|
@@ -1407,6 +1433,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1407
1433
|
kid?: string | undefined;
|
|
1408
1434
|
team_id?: string | undefined;
|
|
1409
1435
|
realms?: string | undefined;
|
|
1436
|
+
authentication_method?: string | undefined;
|
|
1410
1437
|
app_secret?: string | undefined;
|
|
1411
1438
|
authorization_endpoint?: string | undefined;
|
|
1412
1439
|
token_endpoint?: string | undefined;
|
|
@@ -1430,6 +1457,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1430
1457
|
kid?: string | undefined;
|
|
1431
1458
|
team_id?: string | undefined;
|
|
1432
1459
|
realms?: string | undefined;
|
|
1460
|
+
authentication_method?: string | undefined;
|
|
1433
1461
|
app_secret?: string | undefined;
|
|
1434
1462
|
authorization_endpoint?: string | undefined;
|
|
1435
1463
|
token_endpoint?: string | undefined;
|
|
@@ -1462,6 +1490,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1462
1490
|
kid?: string | undefined;
|
|
1463
1491
|
team_id?: string | undefined;
|
|
1464
1492
|
realms?: string | undefined;
|
|
1493
|
+
authentication_method?: string | undefined;
|
|
1465
1494
|
app_secret?: string | undefined;
|
|
1466
1495
|
authorization_endpoint?: string | undefined;
|
|
1467
1496
|
token_endpoint?: string | undefined;
|