@authhero/kysely-adapter 10.3.0 → 10.5.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 +82 -6
- package/dist/kysely-adapter.mjs +133 -114
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1432,7 +1432,33 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
1432
1432
|
"ready"
|
|
1433
1433
|
]>;
|
|
1434
1434
|
origin_domain_name: z.ZodOptional<z.ZodString>;
|
|
1435
|
-
verification: z.ZodOptional<z.ZodObject<{
|
|
1435
|
+
verification: z.ZodOptional<z.ZodObject<{
|
|
1436
|
+
methods: z.ZodArray<z.ZodObject<{
|
|
1437
|
+
name: z.ZodLiteral<"txt">;
|
|
1438
|
+
record: z.ZodString;
|
|
1439
|
+
domain: z.ZodString;
|
|
1440
|
+
}, "strip", z.ZodTypeAny, {
|
|
1441
|
+
name: "txt";
|
|
1442
|
+
domain: string;
|
|
1443
|
+
record: string;
|
|
1444
|
+
}, {
|
|
1445
|
+
name: "txt";
|
|
1446
|
+
domain: string;
|
|
1447
|
+
record: string;
|
|
1448
|
+
}>, "many">;
|
|
1449
|
+
}, "strip", z.ZodTypeAny, {
|
|
1450
|
+
methods: {
|
|
1451
|
+
name: "txt";
|
|
1452
|
+
domain: string;
|
|
1453
|
+
record: string;
|
|
1454
|
+
}[];
|
|
1455
|
+
}, {
|
|
1456
|
+
methods: {
|
|
1457
|
+
name: "txt";
|
|
1458
|
+
domain: string;
|
|
1459
|
+
record: string;
|
|
1460
|
+
}[];
|
|
1461
|
+
}>>;
|
|
1436
1462
|
tls_policy: z.ZodOptional<z.ZodString>;
|
|
1437
1463
|
domain: z.ZodString;
|
|
1438
1464
|
type: z.ZodEnum<[
|
|
@@ -1461,7 +1487,13 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
1461
1487
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
1462
1488
|
domain_metadata?: Record<string, string> | undefined;
|
|
1463
1489
|
origin_domain_name?: string | undefined;
|
|
1464
|
-
verification?: {
|
|
1490
|
+
verification?: {
|
|
1491
|
+
methods: {
|
|
1492
|
+
name: "txt";
|
|
1493
|
+
domain: string;
|
|
1494
|
+
record: string;
|
|
1495
|
+
}[];
|
|
1496
|
+
} | undefined;
|
|
1465
1497
|
}, {
|
|
1466
1498
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
1467
1499
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
@@ -1473,7 +1505,13 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
1473
1505
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
1474
1506
|
domain_metadata?: Record<string, string> | undefined;
|
|
1475
1507
|
origin_domain_name?: string | undefined;
|
|
1476
|
-
verification?: {
|
|
1508
|
+
verification?: {
|
|
1509
|
+
methods: {
|
|
1510
|
+
name: "txt";
|
|
1511
|
+
domain: string;
|
|
1512
|
+
record: string;
|
|
1513
|
+
}[];
|
|
1514
|
+
} | undefined;
|
|
1477
1515
|
}>;
|
|
1478
1516
|
export type CustomDomain = z.infer<typeof customDomainSchema>;
|
|
1479
1517
|
declare const hookInsertSchema: z.ZodObject<{
|
|
@@ -3993,7 +4031,33 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
3993
4031
|
"ready"
|
|
3994
4032
|
]>;
|
|
3995
4033
|
origin_domain_name: z.ZodOptional<z.ZodString>;
|
|
3996
|
-
verification: z.ZodOptional<z.ZodObject<{
|
|
4034
|
+
verification: z.ZodOptional<z.ZodObject<{
|
|
4035
|
+
methods: z.ZodArray<z.ZodObject<{
|
|
4036
|
+
name: z.ZodLiteral<"txt">;
|
|
4037
|
+
record: z.ZodString;
|
|
4038
|
+
domain: z.ZodString;
|
|
4039
|
+
}, "strip", z.ZodTypeAny, {
|
|
4040
|
+
name: "txt";
|
|
4041
|
+
domain: string;
|
|
4042
|
+
record: string;
|
|
4043
|
+
}, {
|
|
4044
|
+
name: "txt";
|
|
4045
|
+
domain: string;
|
|
4046
|
+
record: string;
|
|
4047
|
+
}>, "many">;
|
|
4048
|
+
}, "strip", z.ZodTypeAny, {
|
|
4049
|
+
methods: {
|
|
4050
|
+
name: "txt";
|
|
4051
|
+
domain: string;
|
|
4052
|
+
record: string;
|
|
4053
|
+
}[];
|
|
4054
|
+
}, {
|
|
4055
|
+
methods: {
|
|
4056
|
+
name: "txt";
|
|
4057
|
+
domain: string;
|
|
4058
|
+
record: string;
|
|
4059
|
+
}[];
|
|
4060
|
+
}>>;
|
|
3997
4061
|
tls_policy: z.ZodOptional<z.ZodString>;
|
|
3998
4062
|
domain: z.ZodString;
|
|
3999
4063
|
type: z.ZodEnum<[
|
|
@@ -4021,7 +4085,13 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
4021
4085
|
custom_domain_id: string;
|
|
4022
4086
|
domain: string;
|
|
4023
4087
|
origin_domain_name?: string | undefined;
|
|
4024
|
-
verification?: {
|
|
4088
|
+
verification?: {
|
|
4089
|
+
methods: {
|
|
4090
|
+
name: "txt";
|
|
4091
|
+
domain: string;
|
|
4092
|
+
record: string;
|
|
4093
|
+
}[];
|
|
4094
|
+
} | undefined;
|
|
4025
4095
|
tls_policy?: string | undefined;
|
|
4026
4096
|
verification_method?: "txt" | undefined;
|
|
4027
4097
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
@@ -4036,7 +4106,13 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
4036
4106
|
custom_domain_id: string;
|
|
4037
4107
|
domain: string;
|
|
4038
4108
|
origin_domain_name?: string | undefined;
|
|
4039
|
-
verification?: {
|
|
4109
|
+
verification?: {
|
|
4110
|
+
methods: {
|
|
4111
|
+
name: "txt";
|
|
4112
|
+
domain: string;
|
|
4113
|
+
record: string;
|
|
4114
|
+
}[];
|
|
4115
|
+
} | undefined;
|
|
4040
4116
|
tls_policy?: string | undefined;
|
|
4041
4117
|
verification_method?: "txt" | undefined;
|
|
4042
4118
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|