@authhero/kysely-adapter 10.101.0 → 10.101.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 +62 -18
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -3821,19 +3821,29 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3821
3821
|
category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
|
|
3822
3822
|
} & {
|
|
3823
3823
|
type: z.ZodLiteral<"DIVIDER">;
|
|
3824
|
-
config: z.ZodOptional<z.ZodObject<{
|
|
3824
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
3825
|
+
text: z.ZodOptional<z.ZodString>;
|
|
3826
|
+
}, "strip", z.ZodTypeAny, {
|
|
3827
|
+
text?: string | undefined;
|
|
3828
|
+
}, {
|
|
3829
|
+
text?: string | undefined;
|
|
3830
|
+
}>>;
|
|
3825
3831
|
}, "strip", z.ZodTypeAny, {
|
|
3826
3832
|
type: "DIVIDER";
|
|
3827
3833
|
id: string;
|
|
3828
3834
|
visible: boolean;
|
|
3829
3835
|
category?: "BLOCK" | undefined;
|
|
3830
|
-
config?: {
|
|
3836
|
+
config?: {
|
|
3837
|
+
text?: string | undefined;
|
|
3838
|
+
} | undefined;
|
|
3831
3839
|
order?: number | undefined;
|
|
3832
3840
|
}, {
|
|
3833
3841
|
type: "DIVIDER";
|
|
3834
3842
|
id: string;
|
|
3835
3843
|
category?: "BLOCK" | undefined;
|
|
3836
|
-
config?: {
|
|
3844
|
+
config?: {
|
|
3845
|
+
text?: string | undefined;
|
|
3846
|
+
} | undefined;
|
|
3837
3847
|
order?: number | undefined;
|
|
3838
3848
|
visible?: boolean | undefined;
|
|
3839
3849
|
}>,
|
|
@@ -5278,7 +5288,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5278
5288
|
id: string;
|
|
5279
5289
|
visible: boolean;
|
|
5280
5290
|
category?: "BLOCK" | undefined;
|
|
5281
|
-
config?: {
|
|
5291
|
+
config?: {
|
|
5292
|
+
text?: string | undefined;
|
|
5293
|
+
} | undefined;
|
|
5282
5294
|
order?: number | undefined;
|
|
5283
5295
|
} | {
|
|
5284
5296
|
type: "HTML";
|
|
@@ -5652,7 +5664,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5652
5664
|
type: "DIVIDER";
|
|
5653
5665
|
id: string;
|
|
5654
5666
|
category?: "BLOCK" | undefined;
|
|
5655
|
-
config?: {
|
|
5667
|
+
config?: {
|
|
5668
|
+
text?: string | undefined;
|
|
5669
|
+
} | undefined;
|
|
5656
5670
|
order?: number | undefined;
|
|
5657
5671
|
visible?: boolean | undefined;
|
|
5658
5672
|
} | {
|
|
@@ -6032,7 +6046,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6032
6046
|
id: string;
|
|
6033
6047
|
visible: boolean;
|
|
6034
6048
|
category?: "BLOCK" | undefined;
|
|
6035
|
-
config?: {
|
|
6049
|
+
config?: {
|
|
6050
|
+
text?: string | undefined;
|
|
6051
|
+
} | undefined;
|
|
6036
6052
|
order?: number | undefined;
|
|
6037
6053
|
} | {
|
|
6038
6054
|
type: "HTML";
|
|
@@ -6415,7 +6431,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6415
6431
|
type: "DIVIDER";
|
|
6416
6432
|
id: string;
|
|
6417
6433
|
category?: "BLOCK" | undefined;
|
|
6418
|
-
config?: {
|
|
6434
|
+
config?: {
|
|
6435
|
+
text?: string | undefined;
|
|
6436
|
+
} | undefined;
|
|
6419
6437
|
order?: number | undefined;
|
|
6420
6438
|
visible?: boolean | undefined;
|
|
6421
6439
|
} | {
|
|
@@ -6967,7 +6985,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6967
6985
|
id: string;
|
|
6968
6986
|
visible: boolean;
|
|
6969
6987
|
category?: "BLOCK" | undefined;
|
|
6970
|
-
config?: {
|
|
6988
|
+
config?: {
|
|
6989
|
+
text?: string | undefined;
|
|
6990
|
+
} | undefined;
|
|
6971
6991
|
order?: number | undefined;
|
|
6972
6992
|
} | {
|
|
6973
6993
|
type: "HTML";
|
|
@@ -7423,7 +7443,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7423
7443
|
type: "DIVIDER";
|
|
7424
7444
|
id: string;
|
|
7425
7445
|
category?: "BLOCK" | undefined;
|
|
7426
|
-
config?: {
|
|
7446
|
+
config?: {
|
|
7447
|
+
text?: string | undefined;
|
|
7448
|
+
} | undefined;
|
|
7427
7449
|
order?: number | undefined;
|
|
7428
7450
|
visible?: boolean | undefined;
|
|
7429
7451
|
} | {
|
|
@@ -8008,19 +8030,29 @@ declare const formSchema: z.ZodObject<{
|
|
|
8008
8030
|
category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
|
|
8009
8031
|
} & {
|
|
8010
8032
|
type: z.ZodLiteral<"DIVIDER">;
|
|
8011
|
-
config: z.ZodOptional<z.ZodObject<{
|
|
8033
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
8034
|
+
text: z.ZodOptional<z.ZodString>;
|
|
8035
|
+
}, "strip", z.ZodTypeAny, {
|
|
8036
|
+
text?: string | undefined;
|
|
8037
|
+
}, {
|
|
8038
|
+
text?: string | undefined;
|
|
8039
|
+
}>>;
|
|
8012
8040
|
}, "strip", z.ZodTypeAny, {
|
|
8013
8041
|
type: "DIVIDER";
|
|
8014
8042
|
id: string;
|
|
8015
8043
|
visible: boolean;
|
|
8016
8044
|
category?: "BLOCK" | undefined;
|
|
8017
|
-
config?: {
|
|
8045
|
+
config?: {
|
|
8046
|
+
text?: string | undefined;
|
|
8047
|
+
} | undefined;
|
|
8018
8048
|
order?: number | undefined;
|
|
8019
8049
|
}, {
|
|
8020
8050
|
type: "DIVIDER";
|
|
8021
8051
|
id: string;
|
|
8022
8052
|
category?: "BLOCK" | undefined;
|
|
8023
|
-
config?: {
|
|
8053
|
+
config?: {
|
|
8054
|
+
text?: string | undefined;
|
|
8055
|
+
} | undefined;
|
|
8024
8056
|
order?: number | undefined;
|
|
8025
8057
|
visible?: boolean | undefined;
|
|
8026
8058
|
}>,
|
|
@@ -9465,7 +9497,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
9465
9497
|
id: string;
|
|
9466
9498
|
visible: boolean;
|
|
9467
9499
|
category?: "BLOCK" | undefined;
|
|
9468
|
-
config?: {
|
|
9500
|
+
config?: {
|
|
9501
|
+
text?: string | undefined;
|
|
9502
|
+
} | undefined;
|
|
9469
9503
|
order?: number | undefined;
|
|
9470
9504
|
} | {
|
|
9471
9505
|
type: "HTML";
|
|
@@ -9839,7 +9873,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
9839
9873
|
type: "DIVIDER";
|
|
9840
9874
|
id: string;
|
|
9841
9875
|
category?: "BLOCK" | undefined;
|
|
9842
|
-
config?: {
|
|
9876
|
+
config?: {
|
|
9877
|
+
text?: string | undefined;
|
|
9878
|
+
} | undefined;
|
|
9843
9879
|
order?: number | undefined;
|
|
9844
9880
|
visible?: boolean | undefined;
|
|
9845
9881
|
} | {
|
|
@@ -10219,7 +10255,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
10219
10255
|
id: string;
|
|
10220
10256
|
visible: boolean;
|
|
10221
10257
|
category?: "BLOCK" | undefined;
|
|
10222
|
-
config?: {
|
|
10258
|
+
config?: {
|
|
10259
|
+
text?: string | undefined;
|
|
10260
|
+
} | undefined;
|
|
10223
10261
|
order?: number | undefined;
|
|
10224
10262
|
} | {
|
|
10225
10263
|
type: "HTML";
|
|
@@ -10602,7 +10640,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
10602
10640
|
type: "DIVIDER";
|
|
10603
10641
|
id: string;
|
|
10604
10642
|
category?: "BLOCK" | undefined;
|
|
10605
|
-
config?: {
|
|
10643
|
+
config?: {
|
|
10644
|
+
text?: string | undefined;
|
|
10645
|
+
} | undefined;
|
|
10606
10646
|
order?: number | undefined;
|
|
10607
10647
|
visible?: boolean | undefined;
|
|
10608
10648
|
} | {
|
|
@@ -11159,7 +11199,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
11159
11199
|
id: string;
|
|
11160
11200
|
visible: boolean;
|
|
11161
11201
|
category?: "BLOCK" | undefined;
|
|
11162
|
-
config?: {
|
|
11202
|
+
config?: {
|
|
11203
|
+
text?: string | undefined;
|
|
11204
|
+
} | undefined;
|
|
11163
11205
|
order?: number | undefined;
|
|
11164
11206
|
} | {
|
|
11165
11207
|
type: "HTML";
|
|
@@ -11618,7 +11660,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
11618
11660
|
type: "DIVIDER";
|
|
11619
11661
|
id: string;
|
|
11620
11662
|
category?: "BLOCK" | undefined;
|
|
11621
|
-
config?: {
|
|
11663
|
+
config?: {
|
|
11664
|
+
text?: string | undefined;
|
|
11665
|
+
} | undefined;
|
|
11622
11666
|
order?: number | undefined;
|
|
11623
11667
|
visible?: boolean | undefined;
|
|
11624
11668
|
} | {
|
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.101.
|
|
14
|
+
"version": "10.101.1",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"kysely": "^0.27.4",
|
|
44
44
|
"nanoid": "^5.0.8",
|
|
45
45
|
"ulid": "^2.3.0",
|
|
46
|
-
"@authhero/adapter-interfaces": "0.
|
|
46
|
+
"@authhero/adapter-interfaces": "0.139.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@hono/zod-openapi": "^0.19.2",
|