@authhero/kysely-adapter 10.7.0 → 10.7.1
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.d.ts +51 -0
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -765,6 +765,9 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
765
765
|
discovery_url: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
766
766
|
issuer: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
767
767
|
provider: z.ZodOptional<z.ZodString>;
|
|
768
|
+
from: z.ZodOptional<z.ZodString>;
|
|
769
|
+
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
770
|
+
twilio_token: z.ZodOptional<z.ZodString>;
|
|
768
771
|
}, "strip", z.ZodTypeAny, {
|
|
769
772
|
provider?: string | undefined;
|
|
770
773
|
issuer?: string | undefined;
|
|
@@ -780,6 +783,9 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
780
783
|
userinfo_endpoint?: string | undefined;
|
|
781
784
|
jwks_uri?: string | undefined;
|
|
782
785
|
discovery_url?: string | undefined;
|
|
786
|
+
from?: string | undefined;
|
|
787
|
+
twilio_sid?: string | undefined;
|
|
788
|
+
twilio_token?: string | undefined;
|
|
783
789
|
}, {
|
|
784
790
|
provider?: string | undefined;
|
|
785
791
|
issuer?: string | undefined;
|
|
@@ -795,6 +801,9 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
795
801
|
userinfo_endpoint?: string | undefined;
|
|
796
802
|
jwks_uri?: string | undefined;
|
|
797
803
|
discovery_url?: string | undefined;
|
|
804
|
+
from?: string | undefined;
|
|
805
|
+
twilio_sid?: string | undefined;
|
|
806
|
+
twilio_token?: string | undefined;
|
|
798
807
|
}>>>;
|
|
799
808
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
800
809
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -819,6 +828,9 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
819
828
|
userinfo_endpoint?: string | undefined;
|
|
820
829
|
jwks_uri?: string | undefined;
|
|
821
830
|
discovery_url?: string | undefined;
|
|
831
|
+
from?: string | undefined;
|
|
832
|
+
twilio_sid?: string | undefined;
|
|
833
|
+
twilio_token?: string | undefined;
|
|
822
834
|
} | undefined;
|
|
823
835
|
id?: string | undefined;
|
|
824
836
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -844,6 +856,9 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
844
856
|
userinfo_endpoint?: string | undefined;
|
|
845
857
|
jwks_uri?: string | undefined;
|
|
846
858
|
discovery_url?: string | undefined;
|
|
859
|
+
from?: string | undefined;
|
|
860
|
+
twilio_sid?: string | undefined;
|
|
861
|
+
twilio_token?: string | undefined;
|
|
847
862
|
} | undefined;
|
|
848
863
|
id?: string | undefined;
|
|
849
864
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -998,6 +1013,9 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
998
1013
|
userinfo_endpoint?: string | undefined;
|
|
999
1014
|
jwks_uri?: string | undefined;
|
|
1000
1015
|
discovery_url?: string | undefined;
|
|
1016
|
+
from?: string | undefined;
|
|
1017
|
+
twilio_sid?: string | undefined;
|
|
1018
|
+
twilio_token?: string | undefined;
|
|
1001
1019
|
} | undefined;
|
|
1002
1020
|
id?: string | undefined;
|
|
1003
1021
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -1070,6 +1088,9 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
1070
1088
|
userinfo_endpoint?: string | undefined;
|
|
1071
1089
|
jwks_uri?: string | undefined;
|
|
1072
1090
|
discovery_url?: string | undefined;
|
|
1091
|
+
from?: string | undefined;
|
|
1092
|
+
twilio_sid?: string | undefined;
|
|
1093
|
+
twilio_token?: string | undefined;
|
|
1073
1094
|
} | undefined;
|
|
1074
1095
|
id?: string | undefined;
|
|
1075
1096
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -1209,6 +1230,9 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1209
1230
|
discovery_url: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1210
1231
|
issuer: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1211
1232
|
provider: z.ZodOptional<z.ZodString>;
|
|
1233
|
+
from: z.ZodOptional<z.ZodString>;
|
|
1234
|
+
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
twilio_token: z.ZodOptional<z.ZodString>;
|
|
1212
1236
|
}, "strip", z.ZodTypeAny, {
|
|
1213
1237
|
provider?: string | undefined;
|
|
1214
1238
|
issuer?: string | undefined;
|
|
@@ -1224,6 +1248,9 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1224
1248
|
userinfo_endpoint?: string | undefined;
|
|
1225
1249
|
jwks_uri?: string | undefined;
|
|
1226
1250
|
discovery_url?: string | undefined;
|
|
1251
|
+
from?: string | undefined;
|
|
1252
|
+
twilio_sid?: string | undefined;
|
|
1253
|
+
twilio_token?: string | undefined;
|
|
1227
1254
|
}, {
|
|
1228
1255
|
provider?: string | undefined;
|
|
1229
1256
|
issuer?: string | undefined;
|
|
@@ -1239,6 +1266,9 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1239
1266
|
userinfo_endpoint?: string | undefined;
|
|
1240
1267
|
jwks_uri?: string | undefined;
|
|
1241
1268
|
discovery_url?: string | undefined;
|
|
1269
|
+
from?: string | undefined;
|
|
1270
|
+
twilio_sid?: string | undefined;
|
|
1271
|
+
twilio_token?: string | undefined;
|
|
1242
1272
|
}>>>;
|
|
1243
1273
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1244
1274
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -1261,6 +1291,9 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1261
1291
|
userinfo_endpoint?: string | undefined;
|
|
1262
1292
|
jwks_uri?: string | undefined;
|
|
1263
1293
|
discovery_url?: string | undefined;
|
|
1294
|
+
from?: string | undefined;
|
|
1295
|
+
twilio_sid?: string | undefined;
|
|
1296
|
+
twilio_token?: string | undefined;
|
|
1264
1297
|
} | undefined;
|
|
1265
1298
|
id?: string | undefined;
|
|
1266
1299
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -1284,6 +1317,9 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1284
1317
|
userinfo_endpoint?: string | undefined;
|
|
1285
1318
|
jwks_uri?: string | undefined;
|
|
1286
1319
|
discovery_url?: string | undefined;
|
|
1320
|
+
from?: string | undefined;
|
|
1321
|
+
twilio_sid?: string | undefined;
|
|
1322
|
+
twilio_token?: string | undefined;
|
|
1287
1323
|
} | undefined;
|
|
1288
1324
|
id?: string | undefined;
|
|
1289
1325
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -1314,6 +1350,9 @@ declare const connectionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1314
1350
|
discovery_url: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1315
1351
|
issuer: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1316
1352
|
provider: z.ZodOptional<z.ZodString>;
|
|
1353
|
+
from: z.ZodOptional<z.ZodString>;
|
|
1354
|
+
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
1355
|
+
twilio_token: z.ZodOptional<z.ZodString>;
|
|
1317
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1318
1357
|
provider?: string | undefined;
|
|
1319
1358
|
issuer?: string | undefined;
|
|
@@ -1329,6 +1368,9 @@ declare const connectionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1329
1368
|
userinfo_endpoint?: string | undefined;
|
|
1330
1369
|
jwks_uri?: string | undefined;
|
|
1331
1370
|
discovery_url?: string | undefined;
|
|
1371
|
+
from?: string | undefined;
|
|
1372
|
+
twilio_sid?: string | undefined;
|
|
1373
|
+
twilio_token?: string | undefined;
|
|
1332
1374
|
}, {
|
|
1333
1375
|
provider?: string | undefined;
|
|
1334
1376
|
issuer?: string | undefined;
|
|
@@ -1344,6 +1386,9 @@ declare const connectionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1344
1386
|
userinfo_endpoint?: string | undefined;
|
|
1345
1387
|
jwks_uri?: string | undefined;
|
|
1346
1388
|
discovery_url?: string | undefined;
|
|
1389
|
+
from?: string | undefined;
|
|
1390
|
+
twilio_sid?: string | undefined;
|
|
1391
|
+
twilio_token?: string | undefined;
|
|
1347
1392
|
}>>>;
|
|
1348
1393
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1349
1394
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -1368,6 +1413,9 @@ declare const connectionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1368
1413
|
userinfo_endpoint?: string | undefined;
|
|
1369
1414
|
jwks_uri?: string | undefined;
|
|
1370
1415
|
discovery_url?: string | undefined;
|
|
1416
|
+
from?: string | undefined;
|
|
1417
|
+
twilio_sid?: string | undefined;
|
|
1418
|
+
twilio_token?: string | undefined;
|
|
1371
1419
|
} | undefined;
|
|
1372
1420
|
id?: string | undefined;
|
|
1373
1421
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -1393,6 +1441,9 @@ declare const connectionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1393
1441
|
userinfo_endpoint?: string | undefined;
|
|
1394
1442
|
jwks_uri?: string | undefined;
|
|
1395
1443
|
discovery_url?: string | undefined;
|
|
1444
|
+
from?: string | undefined;
|
|
1445
|
+
twilio_sid?: string | undefined;
|
|
1446
|
+
twilio_token?: string | undefined;
|
|
1396
1447
|
} | undefined;
|
|
1397
1448
|
id?: string | undefined;
|
|
1398
1449
|
response_type?: AuthorizationResponseType | undefined;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/markusahlstrand/authhero"
|
|
13
13
|
},
|
|
14
|
-
"version": "10.7.
|
|
14
|
+
"version": "10.7.1",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"typescript": "^5.6.3",
|
|
39
39
|
"vite": "^5.4.11",
|
|
40
40
|
"vitest": "^2.1.5",
|
|
41
|
-
"@authhero/adapter-interfaces": "0.
|
|
41
|
+
"@authhero/adapter-interfaces": "0.57.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"kysely": "^0.27.4",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"hono": "^4.6.8",
|
|
50
50
|
"kysely-bun-sqlite": "^0.3.2",
|
|
51
51
|
"kysely-planetscale": "^1.5.0",
|
|
52
|
-
"@authhero/adapter-interfaces": "0.
|
|
52
|
+
"@authhero/adapter-interfaces": "0.57.0"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
|