cogsbox-shape 0.5.28 → 0.5.30
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/example/schema.d.ts +898 -202
- package/dist/example/user.d.ts +898 -202
- package/dist/example/user.js +2 -2
- package/dist/schema.d.ts +174 -180
- package/dist/schema.js +25 -22
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { type JsonSchema7Type } from "zod-to-json-schema";
|
|
3
2
|
type CurrentTimestampConfig = {
|
|
4
3
|
default: "CURRENT_TIMESTAMP";
|
|
5
4
|
defaultValue: Date;
|
|
@@ -67,7 +66,7 @@ export declare const shape: {
|
|
|
67
66
|
};
|
|
68
67
|
zodSqlSchema: z.ZodNumber;
|
|
69
68
|
zodNewSchema: z.ZodNumber;
|
|
70
|
-
initialValue:
|
|
69
|
+
initialValue: number;
|
|
71
70
|
zodClientSchema: z.ZodNumber;
|
|
72
71
|
zodValidationSchema: z.ZodNumber;
|
|
73
72
|
};
|
|
@@ -86,7 +85,7 @@ export declare const shape: {
|
|
|
86
85
|
};
|
|
87
86
|
zodSqlSchema: z.ZodNumber;
|
|
88
87
|
zodNewSchema: z.ZodNumber;
|
|
89
|
-
initialValue:
|
|
88
|
+
initialValue: number;
|
|
90
89
|
zodClientSchema: z.ZodNumber;
|
|
91
90
|
zodValidationSchema: TValidationNext;
|
|
92
91
|
};
|
|
@@ -104,7 +103,7 @@ export declare const shape: {
|
|
|
104
103
|
};
|
|
105
104
|
zodSqlSchema: z.ZodNumber;
|
|
106
105
|
zodNewSchema: z.ZodNumber;
|
|
107
|
-
initialValue:
|
|
106
|
+
initialValue: number;
|
|
108
107
|
zodClientSchema: z.ZodNumber;
|
|
109
108
|
zodValidationSchema: TValidationNext;
|
|
110
109
|
} & {
|
|
@@ -129,7 +128,7 @@ export declare const shape: {
|
|
|
129
128
|
};
|
|
130
129
|
zodSqlSchema: z.ZodNumber;
|
|
131
130
|
zodNewSchema: z.ZodNumber;
|
|
132
|
-
initialValue:
|
|
131
|
+
initialValue: number;
|
|
133
132
|
zodClientSchema: TClientNext;
|
|
134
133
|
zodValidationSchema: TClientNext;
|
|
135
134
|
};
|
|
@@ -148,7 +147,7 @@ export declare const shape: {
|
|
|
148
147
|
};
|
|
149
148
|
zodSqlSchema: z.ZodNumber;
|
|
150
149
|
zodNewSchema: z.ZodNumber;
|
|
151
|
-
initialValue:
|
|
150
|
+
initialValue: number;
|
|
152
151
|
zodClientSchema: TClientNext;
|
|
153
152
|
zodValidationSchema: TValidationNext;
|
|
154
153
|
};
|
|
@@ -166,7 +165,7 @@ export declare const shape: {
|
|
|
166
165
|
};
|
|
167
166
|
zodSqlSchema: z.ZodNumber;
|
|
168
167
|
zodNewSchema: z.ZodNumber;
|
|
169
|
-
initialValue:
|
|
168
|
+
initialValue: number;
|
|
170
169
|
zodClientSchema: TClientNext;
|
|
171
170
|
zodValidationSchema: TValidationNext;
|
|
172
171
|
} & {
|
|
@@ -191,7 +190,7 @@ export declare const shape: {
|
|
|
191
190
|
};
|
|
192
191
|
zodSqlSchema: z.ZodNumber;
|
|
193
192
|
zodNewSchema: z.ZodNumber;
|
|
194
|
-
initialValue:
|
|
193
|
+
initialValue: number;
|
|
195
194
|
zodClientSchema: TClientNext;
|
|
196
195
|
zodValidationSchema: TClientNext;
|
|
197
196
|
} & {
|
|
@@ -216,7 +215,7 @@ export declare const shape: {
|
|
|
216
215
|
};
|
|
217
216
|
zodSqlSchema: z.ZodNumber;
|
|
218
217
|
zodNewSchema: z.ZodNumber;
|
|
219
|
-
initialValue:
|
|
218
|
+
initialValue: number;
|
|
220
219
|
zodClientSchema: z.ZodNumber;
|
|
221
220
|
zodValidationSchema: z.ZodNumber;
|
|
222
221
|
} & {
|
|
@@ -239,7 +238,7 @@ export declare const shape: {
|
|
|
239
238
|
};
|
|
240
239
|
zodSqlSchema: z.ZodNumber;
|
|
241
240
|
zodNewSchema: TNewNext;
|
|
242
|
-
initialValue:
|
|
241
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
243
242
|
zodClientSchema: InferSmartClientType<z.ZodNumber, TNewNext>;
|
|
244
243
|
zodValidationSchema: InferSmartClientType<z.ZodNumber, TNewNext>;
|
|
245
244
|
};
|
|
@@ -258,7 +257,7 @@ export declare const shape: {
|
|
|
258
257
|
};
|
|
259
258
|
zodSqlSchema: z.ZodNumber;
|
|
260
259
|
zodNewSchema: TNewNext;
|
|
261
|
-
initialValue:
|
|
260
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
262
261
|
zodClientSchema: InferSmartClientType<z.ZodNumber, TNewNext>;
|
|
263
262
|
zodValidationSchema: TValidationNext;
|
|
264
263
|
};
|
|
@@ -276,7 +275,7 @@ export declare const shape: {
|
|
|
276
275
|
};
|
|
277
276
|
zodSqlSchema: z.ZodNumber;
|
|
278
277
|
zodNewSchema: TNewNext;
|
|
279
|
-
initialValue:
|
|
278
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
280
279
|
zodClientSchema: InferSmartClientType<z.ZodNumber, TNewNext>;
|
|
281
280
|
zodValidationSchema: TValidationNext;
|
|
282
281
|
} & {
|
|
@@ -301,7 +300,7 @@ export declare const shape: {
|
|
|
301
300
|
};
|
|
302
301
|
zodSqlSchema: z.ZodNumber;
|
|
303
302
|
zodNewSchema: TNewNext;
|
|
304
|
-
initialValue:
|
|
303
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
305
304
|
zodClientSchema: TClientNext;
|
|
306
305
|
zodValidationSchema: TClientNext;
|
|
307
306
|
};
|
|
@@ -320,7 +319,7 @@ export declare const shape: {
|
|
|
320
319
|
};
|
|
321
320
|
zodSqlSchema: z.ZodNumber;
|
|
322
321
|
zodNewSchema: TNewNext;
|
|
323
|
-
initialValue:
|
|
322
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
324
323
|
zodClientSchema: TClientNext;
|
|
325
324
|
zodValidationSchema: TValidationNext;
|
|
326
325
|
};
|
|
@@ -338,7 +337,7 @@ export declare const shape: {
|
|
|
338
337
|
};
|
|
339
338
|
zodSqlSchema: z.ZodNumber;
|
|
340
339
|
zodNewSchema: TNewNext;
|
|
341
|
-
initialValue:
|
|
340
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
342
341
|
zodClientSchema: TClientNext;
|
|
343
342
|
zodValidationSchema: TValidationNext;
|
|
344
343
|
} & {
|
|
@@ -363,7 +362,7 @@ export declare const shape: {
|
|
|
363
362
|
};
|
|
364
363
|
zodSqlSchema: z.ZodNumber;
|
|
365
364
|
zodNewSchema: TNewNext;
|
|
366
|
-
initialValue:
|
|
365
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
367
366
|
zodClientSchema: TClientNext;
|
|
368
367
|
zodValidationSchema: TClientNext;
|
|
369
368
|
} & {
|
|
@@ -388,7 +387,7 @@ export declare const shape: {
|
|
|
388
387
|
};
|
|
389
388
|
zodSqlSchema: z.ZodNumber;
|
|
390
389
|
zodNewSchema: TNewNext;
|
|
391
|
-
initialValue:
|
|
390
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
392
391
|
zodClientSchema: InferSmartClientType<z.ZodNumber, TNewNext>;
|
|
393
392
|
zodValidationSchema: InferSmartClientType<z.ZodNumber, TNewNext>;
|
|
394
393
|
} & {
|
|
@@ -412,7 +411,7 @@ export declare const shape: {
|
|
|
412
411
|
};
|
|
413
412
|
zodSqlSchema: z.ZodString;
|
|
414
413
|
zodNewSchema: z.ZodString;
|
|
415
|
-
initialValue:
|
|
414
|
+
initialValue: string;
|
|
416
415
|
zodClientSchema: z.ZodString;
|
|
417
416
|
zodValidationSchema: z.ZodString;
|
|
418
417
|
};
|
|
@@ -432,7 +431,7 @@ export declare const shape: {
|
|
|
432
431
|
};
|
|
433
432
|
zodSqlSchema: z.ZodString;
|
|
434
433
|
zodNewSchema: z.ZodString;
|
|
435
|
-
initialValue:
|
|
434
|
+
initialValue: string;
|
|
436
435
|
zodClientSchema: z.ZodString;
|
|
437
436
|
zodValidationSchema: TValidationNext;
|
|
438
437
|
};
|
|
@@ -451,7 +450,7 @@ export declare const shape: {
|
|
|
451
450
|
};
|
|
452
451
|
zodSqlSchema: z.ZodString;
|
|
453
452
|
zodNewSchema: z.ZodString;
|
|
454
|
-
initialValue:
|
|
453
|
+
initialValue: string;
|
|
455
454
|
zodClientSchema: z.ZodString;
|
|
456
455
|
zodValidationSchema: TValidationNext;
|
|
457
456
|
} & {
|
|
@@ -477,7 +476,7 @@ export declare const shape: {
|
|
|
477
476
|
};
|
|
478
477
|
zodSqlSchema: z.ZodString;
|
|
479
478
|
zodNewSchema: z.ZodString;
|
|
480
|
-
initialValue:
|
|
479
|
+
initialValue: string;
|
|
481
480
|
zodClientSchema: TClientNext;
|
|
482
481
|
zodValidationSchema: TClientNext;
|
|
483
482
|
};
|
|
@@ -497,7 +496,7 @@ export declare const shape: {
|
|
|
497
496
|
};
|
|
498
497
|
zodSqlSchema: z.ZodString;
|
|
499
498
|
zodNewSchema: z.ZodString;
|
|
500
|
-
initialValue:
|
|
499
|
+
initialValue: string;
|
|
501
500
|
zodClientSchema: TClientNext;
|
|
502
501
|
zodValidationSchema: TValidationNext;
|
|
503
502
|
};
|
|
@@ -516,7 +515,7 @@ export declare const shape: {
|
|
|
516
515
|
};
|
|
517
516
|
zodSqlSchema: z.ZodString;
|
|
518
517
|
zodNewSchema: z.ZodString;
|
|
519
|
-
initialValue:
|
|
518
|
+
initialValue: string;
|
|
520
519
|
zodClientSchema: TClientNext;
|
|
521
520
|
zodValidationSchema: TValidationNext;
|
|
522
521
|
} & {
|
|
@@ -542,7 +541,7 @@ export declare const shape: {
|
|
|
542
541
|
};
|
|
543
542
|
zodSqlSchema: z.ZodString;
|
|
544
543
|
zodNewSchema: z.ZodString;
|
|
545
|
-
initialValue:
|
|
544
|
+
initialValue: string;
|
|
546
545
|
zodClientSchema: TClientNext;
|
|
547
546
|
zodValidationSchema: TClientNext;
|
|
548
547
|
} & {
|
|
@@ -568,7 +567,7 @@ export declare const shape: {
|
|
|
568
567
|
};
|
|
569
568
|
zodSqlSchema: z.ZodString;
|
|
570
569
|
zodNewSchema: z.ZodString;
|
|
571
|
-
initialValue:
|
|
570
|
+
initialValue: string;
|
|
572
571
|
zodClientSchema: z.ZodString;
|
|
573
572
|
zodValidationSchema: z.ZodString;
|
|
574
573
|
} & {
|
|
@@ -592,7 +591,7 @@ export declare const shape: {
|
|
|
592
591
|
};
|
|
593
592
|
zodSqlSchema: z.ZodString;
|
|
594
593
|
zodNewSchema: TNewNext;
|
|
595
|
-
initialValue:
|
|
594
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
596
595
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
597
596
|
zodValidationSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
598
597
|
};
|
|
@@ -612,7 +611,7 @@ export declare const shape: {
|
|
|
612
611
|
};
|
|
613
612
|
zodSqlSchema: z.ZodString;
|
|
614
613
|
zodNewSchema: TNewNext;
|
|
615
|
-
initialValue:
|
|
614
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
616
615
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
617
616
|
zodValidationSchema: TValidationNext;
|
|
618
617
|
};
|
|
@@ -631,7 +630,7 @@ export declare const shape: {
|
|
|
631
630
|
};
|
|
632
631
|
zodSqlSchema: z.ZodString;
|
|
633
632
|
zodNewSchema: TNewNext;
|
|
634
|
-
initialValue:
|
|
633
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
635
634
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
636
635
|
zodValidationSchema: TValidationNext;
|
|
637
636
|
} & {
|
|
@@ -657,7 +656,7 @@ export declare const shape: {
|
|
|
657
656
|
};
|
|
658
657
|
zodSqlSchema: z.ZodString;
|
|
659
658
|
zodNewSchema: TNewNext;
|
|
660
|
-
initialValue:
|
|
659
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
661
660
|
zodClientSchema: TClientNext;
|
|
662
661
|
zodValidationSchema: TClientNext;
|
|
663
662
|
};
|
|
@@ -677,7 +676,7 @@ export declare const shape: {
|
|
|
677
676
|
};
|
|
678
677
|
zodSqlSchema: z.ZodString;
|
|
679
678
|
zodNewSchema: TNewNext;
|
|
680
|
-
initialValue:
|
|
679
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
681
680
|
zodClientSchema: TClientNext;
|
|
682
681
|
zodValidationSchema: TValidationNext;
|
|
683
682
|
};
|
|
@@ -696,7 +695,7 @@ export declare const shape: {
|
|
|
696
695
|
};
|
|
697
696
|
zodSqlSchema: z.ZodString;
|
|
698
697
|
zodNewSchema: TNewNext;
|
|
699
|
-
initialValue:
|
|
698
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
700
699
|
zodClientSchema: TClientNext;
|
|
701
700
|
zodValidationSchema: TValidationNext;
|
|
702
701
|
} & {
|
|
@@ -722,7 +721,7 @@ export declare const shape: {
|
|
|
722
721
|
};
|
|
723
722
|
zodSqlSchema: z.ZodString;
|
|
724
723
|
zodNewSchema: TNewNext;
|
|
725
|
-
initialValue:
|
|
724
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
726
725
|
zodClientSchema: TClientNext;
|
|
727
726
|
zodValidationSchema: TClientNext;
|
|
728
727
|
} & {
|
|
@@ -748,7 +747,7 @@ export declare const shape: {
|
|
|
748
747
|
};
|
|
749
748
|
zodSqlSchema: z.ZodString;
|
|
750
749
|
zodNewSchema: TNewNext;
|
|
751
|
-
initialValue:
|
|
750
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
752
751
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
753
752
|
zodValidationSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
754
753
|
} & {
|
|
@@ -772,7 +771,7 @@ export declare const shape: {
|
|
|
772
771
|
};
|
|
773
772
|
zodSqlSchema: z.ZodString;
|
|
774
773
|
zodNewSchema: z.ZodString;
|
|
775
|
-
initialValue:
|
|
774
|
+
initialValue: string;
|
|
776
775
|
zodClientSchema: z.ZodString;
|
|
777
776
|
zodValidationSchema: z.ZodString;
|
|
778
777
|
};
|
|
@@ -792,7 +791,7 @@ export declare const shape: {
|
|
|
792
791
|
};
|
|
793
792
|
zodSqlSchema: z.ZodString;
|
|
794
793
|
zodNewSchema: z.ZodString;
|
|
795
|
-
initialValue:
|
|
794
|
+
initialValue: string;
|
|
796
795
|
zodClientSchema: z.ZodString;
|
|
797
796
|
zodValidationSchema: TValidationNext;
|
|
798
797
|
};
|
|
@@ -811,7 +810,7 @@ export declare const shape: {
|
|
|
811
810
|
};
|
|
812
811
|
zodSqlSchema: z.ZodString;
|
|
813
812
|
zodNewSchema: z.ZodString;
|
|
814
|
-
initialValue:
|
|
813
|
+
initialValue: string;
|
|
815
814
|
zodClientSchema: z.ZodString;
|
|
816
815
|
zodValidationSchema: TValidationNext;
|
|
817
816
|
} & {
|
|
@@ -837,7 +836,7 @@ export declare const shape: {
|
|
|
837
836
|
};
|
|
838
837
|
zodSqlSchema: z.ZodString;
|
|
839
838
|
zodNewSchema: z.ZodString;
|
|
840
|
-
initialValue:
|
|
839
|
+
initialValue: string;
|
|
841
840
|
zodClientSchema: TClientNext;
|
|
842
841
|
zodValidationSchema: TClientNext;
|
|
843
842
|
};
|
|
@@ -857,7 +856,7 @@ export declare const shape: {
|
|
|
857
856
|
};
|
|
858
857
|
zodSqlSchema: z.ZodString;
|
|
859
858
|
zodNewSchema: z.ZodString;
|
|
860
|
-
initialValue:
|
|
859
|
+
initialValue: string;
|
|
861
860
|
zodClientSchema: TClientNext;
|
|
862
861
|
zodValidationSchema: TValidationNext;
|
|
863
862
|
};
|
|
@@ -876,7 +875,7 @@ export declare const shape: {
|
|
|
876
875
|
};
|
|
877
876
|
zodSqlSchema: z.ZodString;
|
|
878
877
|
zodNewSchema: z.ZodString;
|
|
879
|
-
initialValue:
|
|
878
|
+
initialValue: string;
|
|
880
879
|
zodClientSchema: TClientNext;
|
|
881
880
|
zodValidationSchema: TValidationNext;
|
|
882
881
|
} & {
|
|
@@ -902,7 +901,7 @@ export declare const shape: {
|
|
|
902
901
|
};
|
|
903
902
|
zodSqlSchema: z.ZodString;
|
|
904
903
|
zodNewSchema: z.ZodString;
|
|
905
|
-
initialValue:
|
|
904
|
+
initialValue: string;
|
|
906
905
|
zodClientSchema: TClientNext;
|
|
907
906
|
zodValidationSchema: TClientNext;
|
|
908
907
|
} & {
|
|
@@ -928,7 +927,7 @@ export declare const shape: {
|
|
|
928
927
|
};
|
|
929
928
|
zodSqlSchema: z.ZodString;
|
|
930
929
|
zodNewSchema: z.ZodString;
|
|
931
|
-
initialValue:
|
|
930
|
+
initialValue: string;
|
|
932
931
|
zodClientSchema: z.ZodString;
|
|
933
932
|
zodValidationSchema: z.ZodString;
|
|
934
933
|
} & {
|
|
@@ -952,7 +951,7 @@ export declare const shape: {
|
|
|
952
951
|
};
|
|
953
952
|
zodSqlSchema: z.ZodString;
|
|
954
953
|
zodNewSchema: TNewNext;
|
|
955
|
-
initialValue:
|
|
954
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
956
955
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
957
956
|
zodValidationSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
958
957
|
};
|
|
@@ -972,7 +971,7 @@ export declare const shape: {
|
|
|
972
971
|
};
|
|
973
972
|
zodSqlSchema: z.ZodString;
|
|
974
973
|
zodNewSchema: TNewNext;
|
|
975
|
-
initialValue:
|
|
974
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
976
975
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
977
976
|
zodValidationSchema: TValidationNext;
|
|
978
977
|
};
|
|
@@ -991,7 +990,7 @@ export declare const shape: {
|
|
|
991
990
|
};
|
|
992
991
|
zodSqlSchema: z.ZodString;
|
|
993
992
|
zodNewSchema: TNewNext;
|
|
994
|
-
initialValue:
|
|
993
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
995
994
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
996
995
|
zodValidationSchema: TValidationNext;
|
|
997
996
|
} & {
|
|
@@ -1017,7 +1016,7 @@ export declare const shape: {
|
|
|
1017
1016
|
};
|
|
1018
1017
|
zodSqlSchema: z.ZodString;
|
|
1019
1018
|
zodNewSchema: TNewNext;
|
|
1020
|
-
initialValue:
|
|
1019
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1021
1020
|
zodClientSchema: TClientNext;
|
|
1022
1021
|
zodValidationSchema: TClientNext;
|
|
1023
1022
|
};
|
|
@@ -1037,7 +1036,7 @@ export declare const shape: {
|
|
|
1037
1036
|
};
|
|
1038
1037
|
zodSqlSchema: z.ZodString;
|
|
1039
1038
|
zodNewSchema: TNewNext;
|
|
1040
|
-
initialValue:
|
|
1039
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1041
1040
|
zodClientSchema: TClientNext;
|
|
1042
1041
|
zodValidationSchema: TValidationNext;
|
|
1043
1042
|
};
|
|
@@ -1056,7 +1055,7 @@ export declare const shape: {
|
|
|
1056
1055
|
};
|
|
1057
1056
|
zodSqlSchema: z.ZodString;
|
|
1058
1057
|
zodNewSchema: TNewNext;
|
|
1059
|
-
initialValue:
|
|
1058
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1060
1059
|
zodClientSchema: TClientNext;
|
|
1061
1060
|
zodValidationSchema: TValidationNext;
|
|
1062
1061
|
} & {
|
|
@@ -1082,7 +1081,7 @@ export declare const shape: {
|
|
|
1082
1081
|
};
|
|
1083
1082
|
zodSqlSchema: z.ZodString;
|
|
1084
1083
|
zodNewSchema: TNewNext;
|
|
1085
|
-
initialValue:
|
|
1084
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1086
1085
|
zodClientSchema: TClientNext;
|
|
1087
1086
|
zodValidationSchema: TClientNext;
|
|
1088
1087
|
} & {
|
|
@@ -1108,7 +1107,7 @@ export declare const shape: {
|
|
|
1108
1107
|
};
|
|
1109
1108
|
zodSqlSchema: z.ZodString;
|
|
1110
1109
|
zodNewSchema: TNewNext;
|
|
1111
|
-
initialValue:
|
|
1110
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1112
1111
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1113
1112
|
zodValidationSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1114
1113
|
} & {
|
|
@@ -1131,7 +1130,7 @@ export declare const shape: {
|
|
|
1131
1130
|
};
|
|
1132
1131
|
zodSqlSchema: z.ZodString;
|
|
1133
1132
|
zodNewSchema: z.ZodString;
|
|
1134
|
-
initialValue:
|
|
1133
|
+
initialValue: string;
|
|
1135
1134
|
zodClientSchema: z.ZodString;
|
|
1136
1135
|
zodValidationSchema: z.ZodString;
|
|
1137
1136
|
};
|
|
@@ -1150,7 +1149,7 @@ export declare const shape: {
|
|
|
1150
1149
|
};
|
|
1151
1150
|
zodSqlSchema: z.ZodString;
|
|
1152
1151
|
zodNewSchema: z.ZodString;
|
|
1153
|
-
initialValue:
|
|
1152
|
+
initialValue: string;
|
|
1154
1153
|
zodClientSchema: z.ZodString;
|
|
1155
1154
|
zodValidationSchema: TValidationNext;
|
|
1156
1155
|
};
|
|
@@ -1168,7 +1167,7 @@ export declare const shape: {
|
|
|
1168
1167
|
};
|
|
1169
1168
|
zodSqlSchema: z.ZodString;
|
|
1170
1169
|
zodNewSchema: z.ZodString;
|
|
1171
|
-
initialValue:
|
|
1170
|
+
initialValue: string;
|
|
1172
1171
|
zodClientSchema: z.ZodString;
|
|
1173
1172
|
zodValidationSchema: TValidationNext;
|
|
1174
1173
|
} & {
|
|
@@ -1193,7 +1192,7 @@ export declare const shape: {
|
|
|
1193
1192
|
};
|
|
1194
1193
|
zodSqlSchema: z.ZodString;
|
|
1195
1194
|
zodNewSchema: z.ZodString;
|
|
1196
|
-
initialValue:
|
|
1195
|
+
initialValue: string;
|
|
1197
1196
|
zodClientSchema: TClientNext;
|
|
1198
1197
|
zodValidationSchema: TClientNext;
|
|
1199
1198
|
};
|
|
@@ -1212,7 +1211,7 @@ export declare const shape: {
|
|
|
1212
1211
|
};
|
|
1213
1212
|
zodSqlSchema: z.ZodString;
|
|
1214
1213
|
zodNewSchema: z.ZodString;
|
|
1215
|
-
initialValue:
|
|
1214
|
+
initialValue: string;
|
|
1216
1215
|
zodClientSchema: TClientNext;
|
|
1217
1216
|
zodValidationSchema: TValidationNext;
|
|
1218
1217
|
};
|
|
@@ -1230,7 +1229,7 @@ export declare const shape: {
|
|
|
1230
1229
|
};
|
|
1231
1230
|
zodSqlSchema: z.ZodString;
|
|
1232
1231
|
zodNewSchema: z.ZodString;
|
|
1233
|
-
initialValue:
|
|
1232
|
+
initialValue: string;
|
|
1234
1233
|
zodClientSchema: TClientNext;
|
|
1235
1234
|
zodValidationSchema: TValidationNext;
|
|
1236
1235
|
} & {
|
|
@@ -1255,7 +1254,7 @@ export declare const shape: {
|
|
|
1255
1254
|
};
|
|
1256
1255
|
zodSqlSchema: z.ZodString;
|
|
1257
1256
|
zodNewSchema: z.ZodString;
|
|
1258
|
-
initialValue:
|
|
1257
|
+
initialValue: string;
|
|
1259
1258
|
zodClientSchema: TClientNext;
|
|
1260
1259
|
zodValidationSchema: TClientNext;
|
|
1261
1260
|
} & {
|
|
@@ -1280,7 +1279,7 @@ export declare const shape: {
|
|
|
1280
1279
|
};
|
|
1281
1280
|
zodSqlSchema: z.ZodString;
|
|
1282
1281
|
zodNewSchema: z.ZodString;
|
|
1283
|
-
initialValue:
|
|
1282
|
+
initialValue: string;
|
|
1284
1283
|
zodClientSchema: z.ZodString;
|
|
1285
1284
|
zodValidationSchema: z.ZodString;
|
|
1286
1285
|
} & {
|
|
@@ -1303,7 +1302,7 @@ export declare const shape: {
|
|
|
1303
1302
|
};
|
|
1304
1303
|
zodSqlSchema: z.ZodString;
|
|
1305
1304
|
zodNewSchema: TNewNext;
|
|
1306
|
-
initialValue:
|
|
1305
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1307
1306
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1308
1307
|
zodValidationSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1309
1308
|
};
|
|
@@ -1322,7 +1321,7 @@ export declare const shape: {
|
|
|
1322
1321
|
};
|
|
1323
1322
|
zodSqlSchema: z.ZodString;
|
|
1324
1323
|
zodNewSchema: TNewNext;
|
|
1325
|
-
initialValue:
|
|
1324
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1326
1325
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1327
1326
|
zodValidationSchema: TValidationNext;
|
|
1328
1327
|
};
|
|
@@ -1340,7 +1339,7 @@ export declare const shape: {
|
|
|
1340
1339
|
};
|
|
1341
1340
|
zodSqlSchema: z.ZodString;
|
|
1342
1341
|
zodNewSchema: TNewNext;
|
|
1343
|
-
initialValue:
|
|
1342
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1344
1343
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1345
1344
|
zodValidationSchema: TValidationNext;
|
|
1346
1345
|
} & {
|
|
@@ -1365,7 +1364,7 @@ export declare const shape: {
|
|
|
1365
1364
|
};
|
|
1366
1365
|
zodSqlSchema: z.ZodString;
|
|
1367
1366
|
zodNewSchema: TNewNext;
|
|
1368
|
-
initialValue:
|
|
1367
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1369
1368
|
zodClientSchema: TClientNext;
|
|
1370
1369
|
zodValidationSchema: TClientNext;
|
|
1371
1370
|
};
|
|
@@ -1384,7 +1383,7 @@ export declare const shape: {
|
|
|
1384
1383
|
};
|
|
1385
1384
|
zodSqlSchema: z.ZodString;
|
|
1386
1385
|
zodNewSchema: TNewNext;
|
|
1387
|
-
initialValue:
|
|
1386
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1388
1387
|
zodClientSchema: TClientNext;
|
|
1389
1388
|
zodValidationSchema: TValidationNext;
|
|
1390
1389
|
};
|
|
@@ -1402,7 +1401,7 @@ export declare const shape: {
|
|
|
1402
1401
|
};
|
|
1403
1402
|
zodSqlSchema: z.ZodString;
|
|
1404
1403
|
zodNewSchema: TNewNext;
|
|
1405
|
-
initialValue:
|
|
1404
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1406
1405
|
zodClientSchema: TClientNext;
|
|
1407
1406
|
zodValidationSchema: TValidationNext;
|
|
1408
1407
|
} & {
|
|
@@ -1427,7 +1426,7 @@ export declare const shape: {
|
|
|
1427
1426
|
};
|
|
1428
1427
|
zodSqlSchema: z.ZodString;
|
|
1429
1428
|
zodNewSchema: TNewNext;
|
|
1430
|
-
initialValue:
|
|
1429
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1431
1430
|
zodClientSchema: TClientNext;
|
|
1432
1431
|
zodValidationSchema: TClientNext;
|
|
1433
1432
|
} & {
|
|
@@ -1452,7 +1451,7 @@ export declare const shape: {
|
|
|
1452
1451
|
};
|
|
1453
1452
|
zodSqlSchema: z.ZodString;
|
|
1454
1453
|
zodNewSchema: TNewNext;
|
|
1455
|
-
initialValue:
|
|
1454
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1456
1455
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1457
1456
|
zodValidationSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1458
1457
|
} & {
|
|
@@ -1475,7 +1474,7 @@ export declare const shape: {
|
|
|
1475
1474
|
};
|
|
1476
1475
|
zodSqlSchema: z.ZodString;
|
|
1477
1476
|
zodNewSchema: z.ZodString;
|
|
1478
|
-
initialValue:
|
|
1477
|
+
initialValue: string;
|
|
1479
1478
|
zodClientSchema: z.ZodString;
|
|
1480
1479
|
zodValidationSchema: z.ZodString;
|
|
1481
1480
|
};
|
|
@@ -1494,7 +1493,7 @@ export declare const shape: {
|
|
|
1494
1493
|
};
|
|
1495
1494
|
zodSqlSchema: z.ZodString;
|
|
1496
1495
|
zodNewSchema: z.ZodString;
|
|
1497
|
-
initialValue:
|
|
1496
|
+
initialValue: string;
|
|
1498
1497
|
zodClientSchema: z.ZodString;
|
|
1499
1498
|
zodValidationSchema: TValidationNext;
|
|
1500
1499
|
};
|
|
@@ -1512,7 +1511,7 @@ export declare const shape: {
|
|
|
1512
1511
|
};
|
|
1513
1512
|
zodSqlSchema: z.ZodString;
|
|
1514
1513
|
zodNewSchema: z.ZodString;
|
|
1515
|
-
initialValue:
|
|
1514
|
+
initialValue: string;
|
|
1516
1515
|
zodClientSchema: z.ZodString;
|
|
1517
1516
|
zodValidationSchema: TValidationNext;
|
|
1518
1517
|
} & {
|
|
@@ -1537,7 +1536,7 @@ export declare const shape: {
|
|
|
1537
1536
|
};
|
|
1538
1537
|
zodSqlSchema: z.ZodString;
|
|
1539
1538
|
zodNewSchema: z.ZodString;
|
|
1540
|
-
initialValue:
|
|
1539
|
+
initialValue: string;
|
|
1541
1540
|
zodClientSchema: TClientNext;
|
|
1542
1541
|
zodValidationSchema: TClientNext;
|
|
1543
1542
|
};
|
|
@@ -1556,7 +1555,7 @@ export declare const shape: {
|
|
|
1556
1555
|
};
|
|
1557
1556
|
zodSqlSchema: z.ZodString;
|
|
1558
1557
|
zodNewSchema: z.ZodString;
|
|
1559
|
-
initialValue:
|
|
1558
|
+
initialValue: string;
|
|
1560
1559
|
zodClientSchema: TClientNext;
|
|
1561
1560
|
zodValidationSchema: TValidationNext;
|
|
1562
1561
|
};
|
|
@@ -1574,7 +1573,7 @@ export declare const shape: {
|
|
|
1574
1573
|
};
|
|
1575
1574
|
zodSqlSchema: z.ZodString;
|
|
1576
1575
|
zodNewSchema: z.ZodString;
|
|
1577
|
-
initialValue:
|
|
1576
|
+
initialValue: string;
|
|
1578
1577
|
zodClientSchema: TClientNext;
|
|
1579
1578
|
zodValidationSchema: TValidationNext;
|
|
1580
1579
|
} & {
|
|
@@ -1599,7 +1598,7 @@ export declare const shape: {
|
|
|
1599
1598
|
};
|
|
1600
1599
|
zodSqlSchema: z.ZodString;
|
|
1601
1600
|
zodNewSchema: z.ZodString;
|
|
1602
|
-
initialValue:
|
|
1601
|
+
initialValue: string;
|
|
1603
1602
|
zodClientSchema: TClientNext;
|
|
1604
1603
|
zodValidationSchema: TClientNext;
|
|
1605
1604
|
} & {
|
|
@@ -1624,7 +1623,7 @@ export declare const shape: {
|
|
|
1624
1623
|
};
|
|
1625
1624
|
zodSqlSchema: z.ZodString;
|
|
1626
1625
|
zodNewSchema: z.ZodString;
|
|
1627
|
-
initialValue:
|
|
1626
|
+
initialValue: string;
|
|
1628
1627
|
zodClientSchema: z.ZodString;
|
|
1629
1628
|
zodValidationSchema: z.ZodString;
|
|
1630
1629
|
} & {
|
|
@@ -1647,7 +1646,7 @@ export declare const shape: {
|
|
|
1647
1646
|
};
|
|
1648
1647
|
zodSqlSchema: z.ZodString;
|
|
1649
1648
|
zodNewSchema: TNewNext;
|
|
1650
|
-
initialValue:
|
|
1649
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1651
1650
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1652
1651
|
zodValidationSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1653
1652
|
};
|
|
@@ -1666,7 +1665,7 @@ export declare const shape: {
|
|
|
1666
1665
|
};
|
|
1667
1666
|
zodSqlSchema: z.ZodString;
|
|
1668
1667
|
zodNewSchema: TNewNext;
|
|
1669
|
-
initialValue:
|
|
1668
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1670
1669
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1671
1670
|
zodValidationSchema: TValidationNext;
|
|
1672
1671
|
};
|
|
@@ -1684,7 +1683,7 @@ export declare const shape: {
|
|
|
1684
1683
|
};
|
|
1685
1684
|
zodSqlSchema: z.ZodString;
|
|
1686
1685
|
zodNewSchema: TNewNext;
|
|
1687
|
-
initialValue:
|
|
1686
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1688
1687
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1689
1688
|
zodValidationSchema: TValidationNext;
|
|
1690
1689
|
} & {
|
|
@@ -1709,7 +1708,7 @@ export declare const shape: {
|
|
|
1709
1708
|
};
|
|
1710
1709
|
zodSqlSchema: z.ZodString;
|
|
1711
1710
|
zodNewSchema: TNewNext;
|
|
1712
|
-
initialValue:
|
|
1711
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1713
1712
|
zodClientSchema: TClientNext;
|
|
1714
1713
|
zodValidationSchema: TClientNext;
|
|
1715
1714
|
};
|
|
@@ -1728,7 +1727,7 @@ export declare const shape: {
|
|
|
1728
1727
|
};
|
|
1729
1728
|
zodSqlSchema: z.ZodString;
|
|
1730
1729
|
zodNewSchema: TNewNext;
|
|
1731
|
-
initialValue:
|
|
1730
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1732
1731
|
zodClientSchema: TClientNext;
|
|
1733
1732
|
zodValidationSchema: TValidationNext;
|
|
1734
1733
|
};
|
|
@@ -1746,7 +1745,7 @@ export declare const shape: {
|
|
|
1746
1745
|
};
|
|
1747
1746
|
zodSqlSchema: z.ZodString;
|
|
1748
1747
|
zodNewSchema: TNewNext;
|
|
1749
|
-
initialValue:
|
|
1748
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1750
1749
|
zodClientSchema: TClientNext;
|
|
1751
1750
|
zodValidationSchema: TValidationNext;
|
|
1752
1751
|
} & {
|
|
@@ -1771,7 +1770,7 @@ export declare const shape: {
|
|
|
1771
1770
|
};
|
|
1772
1771
|
zodSqlSchema: z.ZodString;
|
|
1773
1772
|
zodNewSchema: TNewNext;
|
|
1774
|
-
initialValue:
|
|
1773
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1775
1774
|
zodClientSchema: TClientNext;
|
|
1776
1775
|
zodValidationSchema: TClientNext;
|
|
1777
1776
|
} & {
|
|
@@ -1796,7 +1795,7 @@ export declare const shape: {
|
|
|
1796
1795
|
};
|
|
1797
1796
|
zodSqlSchema: z.ZodString;
|
|
1798
1797
|
zodNewSchema: TNewNext;
|
|
1799
|
-
initialValue:
|
|
1798
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1800
1799
|
zodClientSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1801
1800
|
zodValidationSchema: InferSmartClientType<z.ZodString, TNewNext>;
|
|
1802
1801
|
} & {
|
|
@@ -1819,7 +1818,7 @@ export declare const shape: {
|
|
|
1819
1818
|
};
|
|
1820
1819
|
zodSqlSchema: z.ZodBoolean;
|
|
1821
1820
|
zodNewSchema: z.ZodBoolean;
|
|
1822
|
-
initialValue:
|
|
1821
|
+
initialValue: boolean;
|
|
1823
1822
|
zodClientSchema: z.ZodBoolean;
|
|
1824
1823
|
zodValidationSchema: z.ZodBoolean;
|
|
1825
1824
|
};
|
|
@@ -1838,7 +1837,7 @@ export declare const shape: {
|
|
|
1838
1837
|
};
|
|
1839
1838
|
zodSqlSchema: z.ZodBoolean;
|
|
1840
1839
|
zodNewSchema: z.ZodBoolean;
|
|
1841
|
-
initialValue:
|
|
1840
|
+
initialValue: boolean;
|
|
1842
1841
|
zodClientSchema: z.ZodBoolean;
|
|
1843
1842
|
zodValidationSchema: TValidationNext;
|
|
1844
1843
|
};
|
|
@@ -1856,7 +1855,7 @@ export declare const shape: {
|
|
|
1856
1855
|
};
|
|
1857
1856
|
zodSqlSchema: z.ZodBoolean;
|
|
1858
1857
|
zodNewSchema: z.ZodBoolean;
|
|
1859
|
-
initialValue:
|
|
1858
|
+
initialValue: boolean;
|
|
1860
1859
|
zodClientSchema: z.ZodBoolean;
|
|
1861
1860
|
zodValidationSchema: TValidationNext;
|
|
1862
1861
|
} & {
|
|
@@ -1881,7 +1880,7 @@ export declare const shape: {
|
|
|
1881
1880
|
};
|
|
1882
1881
|
zodSqlSchema: z.ZodBoolean;
|
|
1883
1882
|
zodNewSchema: z.ZodBoolean;
|
|
1884
|
-
initialValue:
|
|
1883
|
+
initialValue: boolean;
|
|
1885
1884
|
zodClientSchema: TClientNext;
|
|
1886
1885
|
zodValidationSchema: TClientNext;
|
|
1887
1886
|
};
|
|
@@ -1900,7 +1899,7 @@ export declare const shape: {
|
|
|
1900
1899
|
};
|
|
1901
1900
|
zodSqlSchema: z.ZodBoolean;
|
|
1902
1901
|
zodNewSchema: z.ZodBoolean;
|
|
1903
|
-
initialValue:
|
|
1902
|
+
initialValue: boolean;
|
|
1904
1903
|
zodClientSchema: TClientNext;
|
|
1905
1904
|
zodValidationSchema: TValidationNext;
|
|
1906
1905
|
};
|
|
@@ -1918,7 +1917,7 @@ export declare const shape: {
|
|
|
1918
1917
|
};
|
|
1919
1918
|
zodSqlSchema: z.ZodBoolean;
|
|
1920
1919
|
zodNewSchema: z.ZodBoolean;
|
|
1921
|
-
initialValue:
|
|
1920
|
+
initialValue: boolean;
|
|
1922
1921
|
zodClientSchema: TClientNext;
|
|
1923
1922
|
zodValidationSchema: TValidationNext;
|
|
1924
1923
|
} & {
|
|
@@ -1943,7 +1942,7 @@ export declare const shape: {
|
|
|
1943
1942
|
};
|
|
1944
1943
|
zodSqlSchema: z.ZodBoolean;
|
|
1945
1944
|
zodNewSchema: z.ZodBoolean;
|
|
1946
|
-
initialValue:
|
|
1945
|
+
initialValue: boolean;
|
|
1947
1946
|
zodClientSchema: TClientNext;
|
|
1948
1947
|
zodValidationSchema: TClientNext;
|
|
1949
1948
|
} & {
|
|
@@ -1968,7 +1967,7 @@ export declare const shape: {
|
|
|
1968
1967
|
};
|
|
1969
1968
|
zodSqlSchema: z.ZodBoolean;
|
|
1970
1969
|
zodNewSchema: z.ZodBoolean;
|
|
1971
|
-
initialValue:
|
|
1970
|
+
initialValue: boolean;
|
|
1972
1971
|
zodClientSchema: z.ZodBoolean;
|
|
1973
1972
|
zodValidationSchema: z.ZodBoolean;
|
|
1974
1973
|
} & {
|
|
@@ -1991,7 +1990,7 @@ export declare const shape: {
|
|
|
1991
1990
|
};
|
|
1992
1991
|
zodSqlSchema: z.ZodBoolean;
|
|
1993
1992
|
zodNewSchema: TNewNext;
|
|
1994
|
-
initialValue:
|
|
1993
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
1995
1994
|
zodClientSchema: InferSmartClientType<z.ZodBoolean, TNewNext>;
|
|
1996
1995
|
zodValidationSchema: InferSmartClientType<z.ZodBoolean, TNewNext>;
|
|
1997
1996
|
};
|
|
@@ -2010,7 +2009,7 @@ export declare const shape: {
|
|
|
2010
2009
|
};
|
|
2011
2010
|
zodSqlSchema: z.ZodBoolean;
|
|
2012
2011
|
zodNewSchema: TNewNext;
|
|
2013
|
-
initialValue:
|
|
2012
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2014
2013
|
zodClientSchema: InferSmartClientType<z.ZodBoolean, TNewNext>;
|
|
2015
2014
|
zodValidationSchema: TValidationNext;
|
|
2016
2015
|
};
|
|
@@ -2028,7 +2027,7 @@ export declare const shape: {
|
|
|
2028
2027
|
};
|
|
2029
2028
|
zodSqlSchema: z.ZodBoolean;
|
|
2030
2029
|
zodNewSchema: TNewNext;
|
|
2031
|
-
initialValue:
|
|
2030
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2032
2031
|
zodClientSchema: InferSmartClientType<z.ZodBoolean, TNewNext>;
|
|
2033
2032
|
zodValidationSchema: TValidationNext;
|
|
2034
2033
|
} & {
|
|
@@ -2053,7 +2052,7 @@ export declare const shape: {
|
|
|
2053
2052
|
};
|
|
2054
2053
|
zodSqlSchema: z.ZodBoolean;
|
|
2055
2054
|
zodNewSchema: TNewNext;
|
|
2056
|
-
initialValue:
|
|
2055
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2057
2056
|
zodClientSchema: TClientNext;
|
|
2058
2057
|
zodValidationSchema: TClientNext;
|
|
2059
2058
|
};
|
|
@@ -2072,7 +2071,7 @@ export declare const shape: {
|
|
|
2072
2071
|
};
|
|
2073
2072
|
zodSqlSchema: z.ZodBoolean;
|
|
2074
2073
|
zodNewSchema: TNewNext;
|
|
2075
|
-
initialValue:
|
|
2074
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2076
2075
|
zodClientSchema: TClientNext;
|
|
2077
2076
|
zodValidationSchema: TValidationNext;
|
|
2078
2077
|
};
|
|
@@ -2090,7 +2089,7 @@ export declare const shape: {
|
|
|
2090
2089
|
};
|
|
2091
2090
|
zodSqlSchema: z.ZodBoolean;
|
|
2092
2091
|
zodNewSchema: TNewNext;
|
|
2093
|
-
initialValue:
|
|
2092
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2094
2093
|
zodClientSchema: TClientNext;
|
|
2095
2094
|
zodValidationSchema: TValidationNext;
|
|
2096
2095
|
} & {
|
|
@@ -2115,7 +2114,7 @@ export declare const shape: {
|
|
|
2115
2114
|
};
|
|
2116
2115
|
zodSqlSchema: z.ZodBoolean;
|
|
2117
2116
|
zodNewSchema: TNewNext;
|
|
2118
|
-
initialValue:
|
|
2117
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2119
2118
|
zodClientSchema: TClientNext;
|
|
2120
2119
|
zodValidationSchema: TClientNext;
|
|
2121
2120
|
} & {
|
|
@@ -2140,7 +2139,7 @@ export declare const shape: {
|
|
|
2140
2139
|
};
|
|
2141
2140
|
zodSqlSchema: z.ZodBoolean;
|
|
2142
2141
|
zodNewSchema: TNewNext;
|
|
2143
|
-
initialValue:
|
|
2142
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2144
2143
|
zodClientSchema: InferSmartClientType<z.ZodBoolean, TNewNext>;
|
|
2145
2144
|
zodValidationSchema: InferSmartClientType<z.ZodBoolean, TNewNext>;
|
|
2146
2145
|
} & {
|
|
@@ -2163,7 +2162,7 @@ export declare const shape: {
|
|
|
2163
2162
|
};
|
|
2164
2163
|
zodSqlSchema: z.ZodDate;
|
|
2165
2164
|
zodNewSchema: z.ZodDate;
|
|
2166
|
-
initialValue:
|
|
2165
|
+
initialValue: Date;
|
|
2167
2166
|
zodClientSchema: z.ZodDate;
|
|
2168
2167
|
zodValidationSchema: z.ZodDate;
|
|
2169
2168
|
};
|
|
@@ -2182,7 +2181,7 @@ export declare const shape: {
|
|
|
2182
2181
|
};
|
|
2183
2182
|
zodSqlSchema: z.ZodDate;
|
|
2184
2183
|
zodNewSchema: z.ZodDate;
|
|
2185
|
-
initialValue:
|
|
2184
|
+
initialValue: Date;
|
|
2186
2185
|
zodClientSchema: z.ZodDate;
|
|
2187
2186
|
zodValidationSchema: TValidationNext;
|
|
2188
2187
|
};
|
|
@@ -2200,7 +2199,7 @@ export declare const shape: {
|
|
|
2200
2199
|
};
|
|
2201
2200
|
zodSqlSchema: z.ZodDate;
|
|
2202
2201
|
zodNewSchema: z.ZodDate;
|
|
2203
|
-
initialValue:
|
|
2202
|
+
initialValue: Date;
|
|
2204
2203
|
zodClientSchema: z.ZodDate;
|
|
2205
2204
|
zodValidationSchema: TValidationNext;
|
|
2206
2205
|
} & {
|
|
@@ -2225,7 +2224,7 @@ export declare const shape: {
|
|
|
2225
2224
|
};
|
|
2226
2225
|
zodSqlSchema: z.ZodDate;
|
|
2227
2226
|
zodNewSchema: z.ZodDate;
|
|
2228
|
-
initialValue:
|
|
2227
|
+
initialValue: Date;
|
|
2229
2228
|
zodClientSchema: TClientNext;
|
|
2230
2229
|
zodValidationSchema: TClientNext;
|
|
2231
2230
|
};
|
|
@@ -2244,7 +2243,7 @@ export declare const shape: {
|
|
|
2244
2243
|
};
|
|
2245
2244
|
zodSqlSchema: z.ZodDate;
|
|
2246
2245
|
zodNewSchema: z.ZodDate;
|
|
2247
|
-
initialValue:
|
|
2246
|
+
initialValue: Date;
|
|
2248
2247
|
zodClientSchema: TClientNext;
|
|
2249
2248
|
zodValidationSchema: TValidationNext;
|
|
2250
2249
|
};
|
|
@@ -2262,7 +2261,7 @@ export declare const shape: {
|
|
|
2262
2261
|
};
|
|
2263
2262
|
zodSqlSchema: z.ZodDate;
|
|
2264
2263
|
zodNewSchema: z.ZodDate;
|
|
2265
|
-
initialValue:
|
|
2264
|
+
initialValue: Date;
|
|
2266
2265
|
zodClientSchema: TClientNext;
|
|
2267
2266
|
zodValidationSchema: TValidationNext;
|
|
2268
2267
|
} & {
|
|
@@ -2287,7 +2286,7 @@ export declare const shape: {
|
|
|
2287
2286
|
};
|
|
2288
2287
|
zodSqlSchema: z.ZodDate;
|
|
2289
2288
|
zodNewSchema: z.ZodDate;
|
|
2290
|
-
initialValue:
|
|
2289
|
+
initialValue: Date;
|
|
2291
2290
|
zodClientSchema: TClientNext;
|
|
2292
2291
|
zodValidationSchema: TClientNext;
|
|
2293
2292
|
} & {
|
|
@@ -2312,7 +2311,7 @@ export declare const shape: {
|
|
|
2312
2311
|
};
|
|
2313
2312
|
zodSqlSchema: z.ZodDate;
|
|
2314
2313
|
zodNewSchema: z.ZodDate;
|
|
2315
|
-
initialValue:
|
|
2314
|
+
initialValue: Date;
|
|
2316
2315
|
zodClientSchema: z.ZodDate;
|
|
2317
2316
|
zodValidationSchema: z.ZodDate;
|
|
2318
2317
|
} & {
|
|
@@ -2335,7 +2334,7 @@ export declare const shape: {
|
|
|
2335
2334
|
};
|
|
2336
2335
|
zodSqlSchema: z.ZodDate;
|
|
2337
2336
|
zodNewSchema: TNewNext;
|
|
2338
|
-
initialValue:
|
|
2337
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2339
2338
|
zodClientSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2340
2339
|
zodValidationSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2341
2340
|
};
|
|
@@ -2354,7 +2353,7 @@ export declare const shape: {
|
|
|
2354
2353
|
};
|
|
2355
2354
|
zodSqlSchema: z.ZodDate;
|
|
2356
2355
|
zodNewSchema: TNewNext;
|
|
2357
|
-
initialValue:
|
|
2356
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2358
2357
|
zodClientSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2359
2358
|
zodValidationSchema: TValidationNext;
|
|
2360
2359
|
};
|
|
@@ -2372,7 +2371,7 @@ export declare const shape: {
|
|
|
2372
2371
|
};
|
|
2373
2372
|
zodSqlSchema: z.ZodDate;
|
|
2374
2373
|
zodNewSchema: TNewNext;
|
|
2375
|
-
initialValue:
|
|
2374
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2376
2375
|
zodClientSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2377
2376
|
zodValidationSchema: TValidationNext;
|
|
2378
2377
|
} & {
|
|
@@ -2397,7 +2396,7 @@ export declare const shape: {
|
|
|
2397
2396
|
};
|
|
2398
2397
|
zodSqlSchema: z.ZodDate;
|
|
2399
2398
|
zodNewSchema: TNewNext;
|
|
2400
|
-
initialValue:
|
|
2399
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2401
2400
|
zodClientSchema: TClientNext;
|
|
2402
2401
|
zodValidationSchema: TClientNext;
|
|
2403
2402
|
};
|
|
@@ -2416,7 +2415,7 @@ export declare const shape: {
|
|
|
2416
2415
|
};
|
|
2417
2416
|
zodSqlSchema: z.ZodDate;
|
|
2418
2417
|
zodNewSchema: TNewNext;
|
|
2419
|
-
initialValue:
|
|
2418
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2420
2419
|
zodClientSchema: TClientNext;
|
|
2421
2420
|
zodValidationSchema: TValidationNext;
|
|
2422
2421
|
};
|
|
@@ -2434,7 +2433,7 @@ export declare const shape: {
|
|
|
2434
2433
|
};
|
|
2435
2434
|
zodSqlSchema: z.ZodDate;
|
|
2436
2435
|
zodNewSchema: TNewNext;
|
|
2437
|
-
initialValue:
|
|
2436
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2438
2437
|
zodClientSchema: TClientNext;
|
|
2439
2438
|
zodValidationSchema: TValidationNext;
|
|
2440
2439
|
} & {
|
|
@@ -2459,7 +2458,7 @@ export declare const shape: {
|
|
|
2459
2458
|
};
|
|
2460
2459
|
zodSqlSchema: z.ZodDate;
|
|
2461
2460
|
zodNewSchema: TNewNext;
|
|
2462
|
-
initialValue:
|
|
2461
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2463
2462
|
zodClientSchema: TClientNext;
|
|
2464
2463
|
zodValidationSchema: TClientNext;
|
|
2465
2464
|
} & {
|
|
@@ -2484,7 +2483,7 @@ export declare const shape: {
|
|
|
2484
2483
|
};
|
|
2485
2484
|
zodSqlSchema: z.ZodDate;
|
|
2486
2485
|
zodNewSchema: TNewNext;
|
|
2487
|
-
initialValue:
|
|
2486
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2488
2487
|
zodClientSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2489
2488
|
zodValidationSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2490
2489
|
} & {
|
|
@@ -2507,7 +2506,7 @@ export declare const shape: {
|
|
|
2507
2506
|
};
|
|
2508
2507
|
zodSqlSchema: z.ZodDate;
|
|
2509
2508
|
zodNewSchema: z.ZodDate;
|
|
2510
|
-
initialValue:
|
|
2509
|
+
initialValue: Date;
|
|
2511
2510
|
zodClientSchema: z.ZodDate;
|
|
2512
2511
|
zodValidationSchema: z.ZodDate;
|
|
2513
2512
|
};
|
|
@@ -2526,7 +2525,7 @@ export declare const shape: {
|
|
|
2526
2525
|
};
|
|
2527
2526
|
zodSqlSchema: z.ZodDate;
|
|
2528
2527
|
zodNewSchema: z.ZodDate;
|
|
2529
|
-
initialValue:
|
|
2528
|
+
initialValue: Date;
|
|
2530
2529
|
zodClientSchema: z.ZodDate;
|
|
2531
2530
|
zodValidationSchema: TValidationNext;
|
|
2532
2531
|
};
|
|
@@ -2544,7 +2543,7 @@ export declare const shape: {
|
|
|
2544
2543
|
};
|
|
2545
2544
|
zodSqlSchema: z.ZodDate;
|
|
2546
2545
|
zodNewSchema: z.ZodDate;
|
|
2547
|
-
initialValue:
|
|
2546
|
+
initialValue: Date;
|
|
2548
2547
|
zodClientSchema: z.ZodDate;
|
|
2549
2548
|
zodValidationSchema: TValidationNext;
|
|
2550
2549
|
} & {
|
|
@@ -2569,7 +2568,7 @@ export declare const shape: {
|
|
|
2569
2568
|
};
|
|
2570
2569
|
zodSqlSchema: z.ZodDate;
|
|
2571
2570
|
zodNewSchema: z.ZodDate;
|
|
2572
|
-
initialValue:
|
|
2571
|
+
initialValue: Date;
|
|
2573
2572
|
zodClientSchema: TClientNext;
|
|
2574
2573
|
zodValidationSchema: TClientNext;
|
|
2575
2574
|
};
|
|
@@ -2588,7 +2587,7 @@ export declare const shape: {
|
|
|
2588
2587
|
};
|
|
2589
2588
|
zodSqlSchema: z.ZodDate;
|
|
2590
2589
|
zodNewSchema: z.ZodDate;
|
|
2591
|
-
initialValue:
|
|
2590
|
+
initialValue: Date;
|
|
2592
2591
|
zodClientSchema: TClientNext;
|
|
2593
2592
|
zodValidationSchema: TValidationNext;
|
|
2594
2593
|
};
|
|
@@ -2606,7 +2605,7 @@ export declare const shape: {
|
|
|
2606
2605
|
};
|
|
2607
2606
|
zodSqlSchema: z.ZodDate;
|
|
2608
2607
|
zodNewSchema: z.ZodDate;
|
|
2609
|
-
initialValue:
|
|
2608
|
+
initialValue: Date;
|
|
2610
2609
|
zodClientSchema: TClientNext;
|
|
2611
2610
|
zodValidationSchema: TValidationNext;
|
|
2612
2611
|
} & {
|
|
@@ -2631,7 +2630,7 @@ export declare const shape: {
|
|
|
2631
2630
|
};
|
|
2632
2631
|
zodSqlSchema: z.ZodDate;
|
|
2633
2632
|
zodNewSchema: z.ZodDate;
|
|
2634
|
-
initialValue:
|
|
2633
|
+
initialValue: Date;
|
|
2635
2634
|
zodClientSchema: TClientNext;
|
|
2636
2635
|
zodValidationSchema: TClientNext;
|
|
2637
2636
|
} & {
|
|
@@ -2656,7 +2655,7 @@ export declare const shape: {
|
|
|
2656
2655
|
};
|
|
2657
2656
|
zodSqlSchema: z.ZodDate;
|
|
2658
2657
|
zodNewSchema: z.ZodDate;
|
|
2659
|
-
initialValue:
|
|
2658
|
+
initialValue: Date;
|
|
2660
2659
|
zodClientSchema: z.ZodDate;
|
|
2661
2660
|
zodValidationSchema: z.ZodDate;
|
|
2662
2661
|
} & {
|
|
@@ -2679,7 +2678,7 @@ export declare const shape: {
|
|
|
2679
2678
|
};
|
|
2680
2679
|
zodSqlSchema: z.ZodDate;
|
|
2681
2680
|
zodNewSchema: TNewNext;
|
|
2682
|
-
initialValue:
|
|
2681
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2683
2682
|
zodClientSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2684
2683
|
zodValidationSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2685
2684
|
};
|
|
@@ -2698,7 +2697,7 @@ export declare const shape: {
|
|
|
2698
2697
|
};
|
|
2699
2698
|
zodSqlSchema: z.ZodDate;
|
|
2700
2699
|
zodNewSchema: TNewNext;
|
|
2701
|
-
initialValue:
|
|
2700
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2702
2701
|
zodClientSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2703
2702
|
zodValidationSchema: TValidationNext;
|
|
2704
2703
|
};
|
|
@@ -2716,7 +2715,7 @@ export declare const shape: {
|
|
|
2716
2715
|
};
|
|
2717
2716
|
zodSqlSchema: z.ZodDate;
|
|
2718
2717
|
zodNewSchema: TNewNext;
|
|
2719
|
-
initialValue:
|
|
2718
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2720
2719
|
zodClientSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2721
2720
|
zodValidationSchema: TValidationNext;
|
|
2722
2721
|
} & {
|
|
@@ -2741,7 +2740,7 @@ export declare const shape: {
|
|
|
2741
2740
|
};
|
|
2742
2741
|
zodSqlSchema: z.ZodDate;
|
|
2743
2742
|
zodNewSchema: TNewNext;
|
|
2744
|
-
initialValue:
|
|
2743
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2745
2744
|
zodClientSchema: TClientNext;
|
|
2746
2745
|
zodValidationSchema: TClientNext;
|
|
2747
2746
|
};
|
|
@@ -2760,7 +2759,7 @@ export declare const shape: {
|
|
|
2760
2759
|
};
|
|
2761
2760
|
zodSqlSchema: z.ZodDate;
|
|
2762
2761
|
zodNewSchema: TNewNext;
|
|
2763
|
-
initialValue:
|
|
2762
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2764
2763
|
zodClientSchema: TClientNext;
|
|
2765
2764
|
zodValidationSchema: TValidationNext;
|
|
2766
2765
|
};
|
|
@@ -2778,7 +2777,7 @@ export declare const shape: {
|
|
|
2778
2777
|
};
|
|
2779
2778
|
zodSqlSchema: z.ZodDate;
|
|
2780
2779
|
zodNewSchema: TNewNext;
|
|
2781
|
-
initialValue:
|
|
2780
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2782
2781
|
zodClientSchema: TClientNext;
|
|
2783
2782
|
zodValidationSchema: TValidationNext;
|
|
2784
2783
|
} & {
|
|
@@ -2803,7 +2802,7 @@ export declare const shape: {
|
|
|
2803
2802
|
};
|
|
2804
2803
|
zodSqlSchema: z.ZodDate;
|
|
2805
2804
|
zodNewSchema: TNewNext;
|
|
2806
|
-
initialValue:
|
|
2805
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2807
2806
|
zodClientSchema: TClientNext;
|
|
2808
2807
|
zodValidationSchema: TClientNext;
|
|
2809
2808
|
} & {
|
|
@@ -2828,7 +2827,7 @@ export declare const shape: {
|
|
|
2828
2827
|
};
|
|
2829
2828
|
zodSqlSchema: z.ZodDate;
|
|
2830
2829
|
zodNewSchema: TNewNext;
|
|
2831
|
-
initialValue:
|
|
2830
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2832
2831
|
zodClientSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2833
2832
|
zodValidationSchema: InferSmartClientType<z.ZodDate, TNewNext>;
|
|
2834
2833
|
} & {
|
|
@@ -2845,7 +2844,7 @@ export declare const shape: {
|
|
|
2845
2844
|
sql: T;
|
|
2846
2845
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2847
2846
|
zodNewSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2848
|
-
initialValue:
|
|
2847
|
+
initialValue: z.TypeOf<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never>;
|
|
2849
2848
|
zodClientSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2850
2849
|
zodValidationSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2851
2850
|
};
|
|
@@ -2858,7 +2857,7 @@ export declare const shape: {
|
|
|
2858
2857
|
sql: T;
|
|
2859
2858
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2860
2859
|
zodNewSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2861
|
-
initialValue:
|
|
2860
|
+
initialValue: z.TypeOf<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never>;
|
|
2862
2861
|
zodClientSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2863
2862
|
zodValidationSchema: TValidationNext;
|
|
2864
2863
|
};
|
|
@@ -2870,7 +2869,7 @@ export declare const shape: {
|
|
|
2870
2869
|
sql: T;
|
|
2871
2870
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2872
2871
|
zodNewSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2873
|
-
initialValue:
|
|
2872
|
+
initialValue: z.TypeOf<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never>;
|
|
2874
2873
|
zodClientSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2875
2874
|
zodValidationSchema: TValidationNext;
|
|
2876
2875
|
} & {
|
|
@@ -2889,7 +2888,7 @@ export declare const shape: {
|
|
|
2889
2888
|
sql: T;
|
|
2890
2889
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2891
2890
|
zodNewSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2892
|
-
initialValue:
|
|
2891
|
+
initialValue: z.TypeOf<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never>;
|
|
2893
2892
|
zodClientSchema: TClientNext;
|
|
2894
2893
|
zodValidationSchema: TClientNext;
|
|
2895
2894
|
};
|
|
@@ -2902,7 +2901,7 @@ export declare const shape: {
|
|
|
2902
2901
|
sql: T;
|
|
2903
2902
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2904
2903
|
zodNewSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2905
|
-
initialValue:
|
|
2904
|
+
initialValue: z.TypeOf<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never>;
|
|
2906
2905
|
zodClientSchema: TClientNext;
|
|
2907
2906
|
zodValidationSchema: TValidationNext;
|
|
2908
2907
|
};
|
|
@@ -2914,7 +2913,7 @@ export declare const shape: {
|
|
|
2914
2913
|
sql: T;
|
|
2915
2914
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2916
2915
|
zodNewSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2917
|
-
initialValue:
|
|
2916
|
+
initialValue: z.TypeOf<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never>;
|
|
2918
2917
|
zodClientSchema: TClientNext;
|
|
2919
2918
|
zodValidationSchema: TValidationNext;
|
|
2920
2919
|
} & {
|
|
@@ -2933,7 +2932,7 @@ export declare const shape: {
|
|
|
2933
2932
|
sql: T;
|
|
2934
2933
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2935
2934
|
zodNewSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2936
|
-
initialValue:
|
|
2935
|
+
initialValue: z.TypeOf<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never>;
|
|
2937
2936
|
zodClientSchema: TClientNext;
|
|
2938
2937
|
zodValidationSchema: TClientNext;
|
|
2939
2938
|
} & {
|
|
@@ -2952,7 +2951,7 @@ export declare const shape: {
|
|
|
2952
2951
|
sql: T;
|
|
2953
2952
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2954
2953
|
zodNewSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2955
|
-
initialValue:
|
|
2954
|
+
initialValue: z.TypeOf<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never>;
|
|
2956
2955
|
zodClientSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2957
2956
|
zodValidationSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2958
2957
|
} & {
|
|
@@ -2969,7 +2968,7 @@ export declare const shape: {
|
|
|
2969
2968
|
sql: T;
|
|
2970
2969
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2971
2970
|
zodNewSchema: TNewNext;
|
|
2972
|
-
initialValue:
|
|
2971
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2973
2972
|
zodClientSchema: InferSmartClientType<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never, TNewNext>;
|
|
2974
2973
|
zodValidationSchema: InferSmartClientType<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never, TNewNext>;
|
|
2975
2974
|
};
|
|
@@ -2982,7 +2981,7 @@ export declare const shape: {
|
|
|
2982
2981
|
sql: T;
|
|
2983
2982
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2984
2983
|
zodNewSchema: TNewNext;
|
|
2985
|
-
initialValue:
|
|
2984
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2986
2985
|
zodClientSchema: InferSmartClientType<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never, TNewNext>;
|
|
2987
2986
|
zodValidationSchema: TValidationNext;
|
|
2988
2987
|
};
|
|
@@ -2994,7 +2993,7 @@ export declare const shape: {
|
|
|
2994
2993
|
sql: T;
|
|
2995
2994
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
2996
2995
|
zodNewSchema: TNewNext;
|
|
2997
|
-
initialValue:
|
|
2996
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
2998
2997
|
zodClientSchema: InferSmartClientType<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never, TNewNext>;
|
|
2999
2998
|
zodValidationSchema: TValidationNext;
|
|
3000
2999
|
} & {
|
|
@@ -3013,7 +3012,7 @@ export declare const shape: {
|
|
|
3013
3012
|
sql: T;
|
|
3014
3013
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
3015
3014
|
zodNewSchema: TNewNext;
|
|
3016
|
-
initialValue:
|
|
3015
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
3017
3016
|
zodClientSchema: TClientNext;
|
|
3018
3017
|
zodValidationSchema: TClientNext;
|
|
3019
3018
|
};
|
|
@@ -3026,7 +3025,7 @@ export declare const shape: {
|
|
|
3026
3025
|
sql: T;
|
|
3027
3026
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
3028
3027
|
zodNewSchema: TNewNext;
|
|
3029
|
-
initialValue:
|
|
3028
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
3030
3029
|
zodClientSchema: TClientNext;
|
|
3031
3030
|
zodValidationSchema: TValidationNext;
|
|
3032
3031
|
};
|
|
@@ -3038,7 +3037,7 @@ export declare const shape: {
|
|
|
3038
3037
|
sql: T;
|
|
3039
3038
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
3040
3039
|
zodNewSchema: TNewNext;
|
|
3041
|
-
initialValue:
|
|
3040
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
3042
3041
|
zodClientSchema: TClientNext;
|
|
3043
3042
|
zodValidationSchema: TValidationNext;
|
|
3044
3043
|
} & {
|
|
@@ -3057,7 +3056,7 @@ export declare const shape: {
|
|
|
3057
3056
|
sql: T;
|
|
3058
3057
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
3059
3058
|
zodNewSchema: TNewNext;
|
|
3060
|
-
initialValue:
|
|
3059
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
3061
3060
|
zodClientSchema: TClientNext;
|
|
3062
3061
|
zodValidationSchema: TClientNext;
|
|
3063
3062
|
} & {
|
|
@@ -3076,7 +3075,7 @@ export declare const shape: {
|
|
|
3076
3075
|
sql: T;
|
|
3077
3076
|
zodSqlSchema: SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never;
|
|
3078
3077
|
zodNewSchema: TNewNext;
|
|
3079
|
-
initialValue:
|
|
3078
|
+
initialValue: z.TypeOf<TNewNext>;
|
|
3080
3079
|
zodClientSchema: InferSmartClientType<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never, TNewNext>;
|
|
3081
3080
|
zodValidationSchema: InferSmartClientType<SQLToZodType<T, false> extends z.ZodTypeAny ? SQLToZodType<T, false> : never, TNewNext>;
|
|
3082
3081
|
} & {
|
|
@@ -3096,7 +3095,7 @@ interface IBuilderMethods<T extends SQLType, TSql extends z.ZodTypeAny, TNew ext
|
|
|
3096
3095
|
*/
|
|
3097
3096
|
initialState: <TNewNext extends z.ZodTypeAny, TDefaultNext>(schema: ((tools: {
|
|
3098
3097
|
sql: TSql;
|
|
3099
|
-
}) => TNewNext) | TNewNext, defaultValue: () => TDefaultNext) => Builder<"new", T, TSql, TNewNext,
|
|
3098
|
+
}) => TNewNext) | TNewNext, defaultValue: () => TDefaultNext) => Builder<"new", T, TSql, TNewNext, z.infer<TNewNext>, InferSmartClientType<TSql, TNewNext>, InferSmartClientType<TSql, TNewNext>>;
|
|
3100
3099
|
/**
|
|
3101
3100
|
* Defines the schema for data sent to the client.
|
|
3102
3101
|
* Moves the builder to the 'client' stage.
|
|
@@ -3204,9 +3203,9 @@ type BaseSchemaField<T extends SQLType = SQLType> = {
|
|
|
3204
3203
|
toDb?: (clientValue: any) => any;
|
|
3205
3204
|
};
|
|
3206
3205
|
type AnyFieldDefinition = ReturnType<typeof shape.sql>;
|
|
3207
|
-
type ReferenceField<TField extends AnyFieldDefinition, TTo extends SchemaField> = TField & {
|
|
3206
|
+
type ReferenceField<TField extends AnyFieldDefinition, TTo extends SchemaField = any> = TField & {
|
|
3208
3207
|
type: "reference";
|
|
3209
|
-
to: () =>
|
|
3208
|
+
to: () => any;
|
|
3210
3209
|
};
|
|
3211
3210
|
type SchemaField<T extends SQLType = SQLType> = BaseSchemaField<T> | ReferenceField<AnyFieldDefinition, any>;
|
|
3212
3211
|
export type Schema<T extends Record<string, SchemaField | (() => Relation<any>)>> = {
|
|
@@ -3250,39 +3249,13 @@ export type InferDBSchema<T> = {
|
|
|
3250
3249
|
} ? DbType : never;
|
|
3251
3250
|
}> : never;
|
|
3252
3251
|
};
|
|
3253
|
-
export
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
toClient: string;
|
|
3259
|
-
toDb: string;
|
|
3260
|
-
};
|
|
3261
|
-
};
|
|
3262
|
-
export type SerializableRelation = {
|
|
3263
|
-
type: "relation";
|
|
3264
|
-
relationType: "hasMany" | "hasOne" | "belongsTo" | "manyToMany";
|
|
3265
|
-
fromKey: string;
|
|
3266
|
-
toKey: SerializableField;
|
|
3267
|
-
defaultCount?: number;
|
|
3268
|
-
};
|
|
3269
|
-
export type SerializableSchema = {
|
|
3270
|
-
_tableName: string;
|
|
3271
|
-
__schemaId: string;
|
|
3272
|
-
_syncKey?: {
|
|
3273
|
-
toString: string;
|
|
3274
|
-
};
|
|
3275
|
-
} & {
|
|
3276
|
-
[key: string]: SerializableField | (SerializableRelation & {
|
|
3277
|
-
schema: SerializableSchema;
|
|
3278
|
-
});
|
|
3279
|
-
};
|
|
3280
|
-
export declare function reference<TTargetField extends SchemaField, TField extends object>(config: {
|
|
3281
|
-
to: () => TTargetField;
|
|
3282
|
-
field: TField;
|
|
3283
|
-
}): TField & {
|
|
3252
|
+
export declare function reference<TField extends object, Zod extends z.ZodTypeAny>(config: {
|
|
3253
|
+
to: TField;
|
|
3254
|
+
field: Zod;
|
|
3255
|
+
}): {
|
|
3256
|
+
field: Zod;
|
|
3284
3257
|
type: "reference";
|
|
3285
|
-
to: () =>
|
|
3258
|
+
to: () => TField;
|
|
3286
3259
|
};
|
|
3287
3260
|
export declare function createMixedValidationSchema<T extends Schema<any>>(schema: T, clientSchema?: z.ZodObject<any>, dbSchema?: z.ZodObject<any>): z.ZodObject<any>;
|
|
3288
3261
|
type SchemaDefinition = {
|
|
@@ -3366,4 +3339,25 @@ export type InferSchemaTypes<T extends {
|
|
|
3366
3339
|
/** The TypeScript type for the default values object. */
|
|
3367
3340
|
defaults: ReturnType<typeof createSchema<T>>["defaultValues"];
|
|
3368
3341
|
}>;
|
|
3342
|
+
type SyncSchemaEntry<T extends {
|
|
3343
|
+
_tableName: string;
|
|
3344
|
+
}> = {
|
|
3345
|
+
schema: T;
|
|
3346
|
+
validation?: (schema: ReturnType<typeof createSchema<T>>["validationSchema"]) => z.ZodSchema;
|
|
3347
|
+
client?: (schema: ReturnType<typeof createSchema<T>>["clientSchema"]) => z.ZodSchema;
|
|
3348
|
+
};
|
|
3349
|
+
type SyncSchemaMap<T extends Record<string, {
|
|
3350
|
+
_tableName: string;
|
|
3351
|
+
}>> = {
|
|
3352
|
+
[K in keyof T]: SyncSchemaEntry<T[K]>;
|
|
3353
|
+
};
|
|
3354
|
+
export declare function createSyncSchema<T extends Record<string, {
|
|
3355
|
+
_tableName: string;
|
|
3356
|
+
}>>(config: {
|
|
3357
|
+
[K in keyof T]: {
|
|
3358
|
+
schema: T[K];
|
|
3359
|
+
validation?: (schema: ReturnType<typeof createSchema<T[K]>>["validationSchema"]) => z.ZodSchema;
|
|
3360
|
+
client?: (schema: ReturnType<typeof createSchema<T[K]>>["clientSchema"]) => z.ZodSchema;
|
|
3361
|
+
};
|
|
3362
|
+
}): SyncSchemaMap<T>;
|
|
3369
3363
|
export {};
|