@authhero/kysely-adapter 10.1.0 → 10.2.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.d.ts +3 -0
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1385,6 +1385,7 @@ declare const connectionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1385
1385
|
export type Connection = z.infer<typeof connectionSchema>;
|
|
1386
1386
|
declare const customDomainInsertSchema: z.ZodObject<{
|
|
1387
1387
|
domain: z.ZodString;
|
|
1388
|
+
custom_domain_id: z.ZodOptional<z.ZodString>;
|
|
1388
1389
|
type: z.ZodEnum<[
|
|
1389
1390
|
"auth0_managed_certs",
|
|
1390
1391
|
"self_managed_certs"
|
|
@@ -1406,6 +1407,7 @@ declare const customDomainInsertSchema: z.ZodObject<{
|
|
|
1406
1407
|
}, "strip", z.ZodTypeAny, {
|
|
1407
1408
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
1408
1409
|
domain: string;
|
|
1410
|
+
custom_domain_id?: string | undefined;
|
|
1409
1411
|
verification_method?: "txt" | undefined;
|
|
1410
1412
|
tls_policy?: "recommended" | undefined;
|
|
1411
1413
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
@@ -1413,6 +1415,7 @@ declare const customDomainInsertSchema: z.ZodObject<{
|
|
|
1413
1415
|
}, {
|
|
1414
1416
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
1415
1417
|
domain: string;
|
|
1418
|
+
custom_domain_id?: string | undefined;
|
|
1416
1419
|
verification_method?: "txt" | undefined;
|
|
1417
1420
|
tls_policy?: "recommended" | undefined;
|
|
1418
1421
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | 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.
|
|
14
|
+
"version": "10.2.0",
|
|
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.53.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.53.0"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
|