@code-pushup/models 0.46.0 → 0.47.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/index.js +4 -4
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/lib/audit-output.d.ts +42 -42
- package/src/lib/core-config.d.ts +384 -384
- package/src/lib/implementation/schemas.d.ts +2 -2
- package/src/lib/plugin-config.d.ts +208 -208
- package/src/lib/report.d.ts +66 -66
- package/src/lib/reports-diff.d.ts +40 -40
- package/src/lib/runner-config.d.ts +116 -116
- package/src/lib/table.d.ts +8 -8
package/src/lib/core-config.d.ts
CHANGED
|
@@ -88,13 +88,13 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
88
88
|
title: z.ZodOptional<z.ZodString>;
|
|
89
89
|
}, {
|
|
90
90
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
91
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
91
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
92
92
|
}>, "strip", z.ZodTypeAny, {
|
|
93
|
-
rows: (string | number)[][];
|
|
93
|
+
rows: (string | number | boolean | null)[][];
|
|
94
94
|
title?: string | undefined;
|
|
95
95
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
96
96
|
}, {
|
|
97
|
-
rows: (string | number)[][];
|
|
97
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
98
98
|
title?: string | undefined;
|
|
99
99
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
100
100
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -113,9 +113,9 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
113
113
|
label?: string | undefined;
|
|
114
114
|
align?: "left" | "center" | "right" | undefined;
|
|
115
115
|
}>, "many">]>>;
|
|
116
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
116
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
117
117
|
}>, "strip", z.ZodTypeAny, {
|
|
118
|
-
rows: Record<string, string | number>[];
|
|
118
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
119
119
|
title?: string | undefined;
|
|
120
120
|
columns?: ("left" | "center" | "right")[] | {
|
|
121
121
|
key: string;
|
|
@@ -123,7 +123,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
123
123
|
align?: "left" | "center" | "right" | undefined;
|
|
124
124
|
}[] | undefined;
|
|
125
125
|
}, {
|
|
126
|
-
rows: Record<string, string | number>[];
|
|
126
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
127
127
|
title?: string | undefined;
|
|
128
128
|
columns?: ("left" | "center" | "right")[] | {
|
|
129
129
|
key: string;
|
|
@@ -146,11 +146,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
146
146
|
} | undefined;
|
|
147
147
|
}[] | undefined;
|
|
148
148
|
table?: {
|
|
149
|
-
rows: (string | number)[][];
|
|
149
|
+
rows: (string | number | boolean | null)[][];
|
|
150
150
|
title?: string | undefined;
|
|
151
151
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
152
152
|
} | {
|
|
153
|
-
rows: Record<string, string | number>[];
|
|
153
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
154
154
|
title?: string | undefined;
|
|
155
155
|
columns?: ("left" | "center" | "right")[] | {
|
|
156
156
|
key: string;
|
|
@@ -173,11 +173,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
173
173
|
} | undefined;
|
|
174
174
|
}[] | undefined;
|
|
175
175
|
table?: {
|
|
176
|
-
rows: (string | number)[][];
|
|
176
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
177
177
|
title?: string | undefined;
|
|
178
178
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
179
179
|
} | {
|
|
180
|
-
rows: Record<string, string | number>[];
|
|
180
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
181
181
|
title?: string | undefined;
|
|
182
182
|
columns?: ("left" | "center" | "right")[] | {
|
|
183
183
|
key: string;
|
|
@@ -206,11 +206,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
206
206
|
} | undefined;
|
|
207
207
|
}[] | undefined;
|
|
208
208
|
table?: {
|
|
209
|
-
rows: (string | number)[][];
|
|
209
|
+
rows: (string | number | boolean | null)[][];
|
|
210
210
|
title?: string | undefined;
|
|
211
211
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
212
212
|
} | {
|
|
213
|
-
rows: Record<string, string | number>[];
|
|
213
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
214
214
|
title?: string | undefined;
|
|
215
215
|
columns?: ("left" | "center" | "right")[] | {
|
|
216
216
|
key: string;
|
|
@@ -239,11 +239,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
239
239
|
} | undefined;
|
|
240
240
|
}[] | undefined;
|
|
241
241
|
table?: {
|
|
242
|
-
rows: (string | number)[][];
|
|
242
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
243
243
|
title?: string | undefined;
|
|
244
244
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
245
245
|
} | {
|
|
246
|
-
rows: Record<string, string | number>[];
|
|
246
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
247
247
|
title?: string | undefined;
|
|
248
248
|
columns?: ("left" | "center" | "right")[] | {
|
|
249
249
|
key: string;
|
|
@@ -272,11 +272,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
272
272
|
} | undefined;
|
|
273
273
|
}[] | undefined;
|
|
274
274
|
table?: {
|
|
275
|
-
rows: (string | number)[][];
|
|
275
|
+
rows: (string | number | boolean | null)[][];
|
|
276
276
|
title?: string | undefined;
|
|
277
277
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
278
278
|
} | {
|
|
279
|
-
rows: Record<string, string | number>[];
|
|
279
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
280
280
|
title?: string | undefined;
|
|
281
281
|
columns?: ("left" | "center" | "right")[] | {
|
|
282
282
|
key: string;
|
|
@@ -305,11 +305,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
305
305
|
} | undefined;
|
|
306
306
|
}[] | undefined;
|
|
307
307
|
table?: {
|
|
308
|
-
rows: (string | number)[][];
|
|
308
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
309
309
|
title?: string | undefined;
|
|
310
310
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
311
311
|
} | {
|
|
312
|
-
rows: Record<string, string | number>[];
|
|
312
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
313
313
|
title?: string | undefined;
|
|
314
314
|
columns?: ("left" | "center" | "right")[] | {
|
|
315
315
|
key: string;
|
|
@@ -391,13 +391,13 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
391
391
|
title: z.ZodOptional<z.ZodString>;
|
|
392
392
|
}, {
|
|
393
393
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
394
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
394
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
395
395
|
}>, "strip", z.ZodTypeAny, {
|
|
396
|
-
rows: (string | number)[][];
|
|
396
|
+
rows: (string | number | boolean | null)[][];
|
|
397
397
|
title?: string | undefined;
|
|
398
398
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
399
399
|
}, {
|
|
400
|
-
rows: (string | number)[][];
|
|
400
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
401
401
|
title?: string | undefined;
|
|
402
402
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
403
403
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -416,9 +416,9 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
416
416
|
label?: string | undefined;
|
|
417
417
|
align?: "left" | "center" | "right" | undefined;
|
|
418
418
|
}>, "many">]>>;
|
|
419
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
419
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
420
420
|
}>, "strip", z.ZodTypeAny, {
|
|
421
|
-
rows: Record<string, string | number>[];
|
|
421
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
422
422
|
title?: string | undefined;
|
|
423
423
|
columns?: ("left" | "center" | "right")[] | {
|
|
424
424
|
key: string;
|
|
@@ -426,7 +426,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
426
426
|
align?: "left" | "center" | "right" | undefined;
|
|
427
427
|
}[] | undefined;
|
|
428
428
|
}, {
|
|
429
|
-
rows: Record<string, string | number>[];
|
|
429
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
430
430
|
title?: string | undefined;
|
|
431
431
|
columns?: ("left" | "center" | "right")[] | {
|
|
432
432
|
key: string;
|
|
@@ -449,11 +449,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
449
449
|
} | undefined;
|
|
450
450
|
}[] | undefined;
|
|
451
451
|
table?: {
|
|
452
|
-
rows: (string | number)[][];
|
|
452
|
+
rows: (string | number | boolean | null)[][];
|
|
453
453
|
title?: string | undefined;
|
|
454
454
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
455
455
|
} | {
|
|
456
|
-
rows: Record<string, string | number>[];
|
|
456
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
457
457
|
title?: string | undefined;
|
|
458
458
|
columns?: ("left" | "center" | "right")[] | {
|
|
459
459
|
key: string;
|
|
@@ -476,11 +476,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
476
476
|
} | undefined;
|
|
477
477
|
}[] | undefined;
|
|
478
478
|
table?: {
|
|
479
|
-
rows: (string | number)[][];
|
|
479
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
480
480
|
title?: string | undefined;
|
|
481
481
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
482
482
|
} | {
|
|
483
|
-
rows: Record<string, string | number>[];
|
|
483
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
484
484
|
title?: string | undefined;
|
|
485
485
|
columns?: ("left" | "center" | "right")[] | {
|
|
486
486
|
key: string;
|
|
@@ -509,11 +509,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
509
509
|
} | undefined;
|
|
510
510
|
}[] | undefined;
|
|
511
511
|
table?: {
|
|
512
|
-
rows: (string | number)[][];
|
|
512
|
+
rows: (string | number | boolean | null)[][];
|
|
513
513
|
title?: string | undefined;
|
|
514
514
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
515
515
|
} | {
|
|
516
|
-
rows: Record<string, string | number>[];
|
|
516
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
517
517
|
title?: string | undefined;
|
|
518
518
|
columns?: ("left" | "center" | "right")[] | {
|
|
519
519
|
key: string;
|
|
@@ -542,11 +542,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
542
542
|
} | undefined;
|
|
543
543
|
}[] | undefined;
|
|
544
544
|
table?: {
|
|
545
|
-
rows: (string | number)[][];
|
|
545
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
546
546
|
title?: string | undefined;
|
|
547
547
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
548
548
|
} | {
|
|
549
|
-
rows: Record<string, string | number>[];
|
|
549
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
550
550
|
title?: string | undefined;
|
|
551
551
|
columns?: ("left" | "center" | "right")[] | {
|
|
552
552
|
key: string;
|
|
@@ -575,11 +575,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
575
575
|
} | undefined;
|
|
576
576
|
}[] | undefined;
|
|
577
577
|
table?: {
|
|
578
|
-
rows: (string | number)[][];
|
|
578
|
+
rows: (string | number | boolean | null)[][];
|
|
579
579
|
title?: string | undefined;
|
|
580
580
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
581
581
|
} | {
|
|
582
|
-
rows: Record<string, string | number>[];
|
|
582
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
583
583
|
title?: string | undefined;
|
|
584
584
|
columns?: ("left" | "center" | "right")[] | {
|
|
585
585
|
key: string;
|
|
@@ -608,11 +608,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
608
608
|
} | undefined;
|
|
609
609
|
}[] | undefined;
|
|
610
610
|
table?: {
|
|
611
|
-
rows: (string | number)[][];
|
|
611
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
612
612
|
title?: string | undefined;
|
|
613
613
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
614
614
|
} | {
|
|
615
|
-
rows: Record<string, string | number>[];
|
|
615
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
616
616
|
title?: string | undefined;
|
|
617
617
|
columns?: ("left" | "center" | "right")[] | {
|
|
618
618
|
key: string;
|
|
@@ -646,11 +646,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
646
646
|
} | undefined;
|
|
647
647
|
}[] | undefined;
|
|
648
648
|
table?: {
|
|
649
|
-
rows: (string | number)[][];
|
|
649
|
+
rows: (string | number | boolean | null)[][];
|
|
650
650
|
title?: string | undefined;
|
|
651
651
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
652
652
|
} | {
|
|
653
|
-
rows: Record<string, string | number>[];
|
|
653
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
654
654
|
title?: string | undefined;
|
|
655
655
|
columns?: ("left" | "center" | "right")[] | {
|
|
656
656
|
key: string;
|
|
@@ -679,11 +679,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
679
679
|
} | undefined;
|
|
680
680
|
}[] | undefined;
|
|
681
681
|
table?: {
|
|
682
|
-
rows: (string | number)[][];
|
|
682
|
+
rows: (string | number | boolean | null)[][];
|
|
683
683
|
title?: string | undefined;
|
|
684
684
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
685
685
|
} | {
|
|
686
|
-
rows: Record<string, string | number>[];
|
|
686
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
687
687
|
title?: string | undefined;
|
|
688
688
|
columns?: ("left" | "center" | "right")[] | {
|
|
689
689
|
key: string;
|
|
@@ -717,11 +717,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
717
717
|
} | undefined;
|
|
718
718
|
}[] | undefined;
|
|
719
719
|
table?: {
|
|
720
|
-
rows: (string | number)[][];
|
|
720
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
721
721
|
title?: string | undefined;
|
|
722
722
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
723
723
|
} | {
|
|
724
|
-
rows: Record<string, string | number>[];
|
|
724
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
725
725
|
title?: string | undefined;
|
|
726
726
|
columns?: ("left" | "center" | "right")[] | {
|
|
727
727
|
key: string;
|
|
@@ -750,11 +750,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
750
750
|
} | undefined;
|
|
751
751
|
}[] | undefined;
|
|
752
752
|
table?: {
|
|
753
|
-
rows: (string | number)[][];
|
|
753
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
754
754
|
title?: string | undefined;
|
|
755
755
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
756
756
|
} | {
|
|
757
|
-
rows: Record<string, string | number>[];
|
|
757
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
758
758
|
title?: string | undefined;
|
|
759
759
|
columns?: ("left" | "center" | "right")[] | {
|
|
760
760
|
key: string;
|
|
@@ -837,13 +837,13 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
837
837
|
title: z.ZodOptional<z.ZodString>;
|
|
838
838
|
}, {
|
|
839
839
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
840
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
840
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
841
841
|
}>, "strip", z.ZodTypeAny, {
|
|
842
|
-
rows: (string | number)[][];
|
|
842
|
+
rows: (string | number | boolean | null)[][];
|
|
843
843
|
title?: string | undefined;
|
|
844
844
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
845
845
|
}, {
|
|
846
|
-
rows: (string | number)[][];
|
|
846
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
847
847
|
title?: string | undefined;
|
|
848
848
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
849
849
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -862,9 +862,9 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
862
862
|
label?: string | undefined;
|
|
863
863
|
align?: "left" | "center" | "right" | undefined;
|
|
864
864
|
}>, "many">]>>;
|
|
865
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
865
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
866
866
|
}>, "strip", z.ZodTypeAny, {
|
|
867
|
-
rows: Record<string, string | number>[];
|
|
867
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
868
868
|
title?: string | undefined;
|
|
869
869
|
columns?: ("left" | "center" | "right")[] | {
|
|
870
870
|
key: string;
|
|
@@ -872,7 +872,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
872
872
|
align?: "left" | "center" | "right" | undefined;
|
|
873
873
|
}[] | undefined;
|
|
874
874
|
}, {
|
|
875
|
-
rows: Record<string, string | number>[];
|
|
875
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
876
876
|
title?: string | undefined;
|
|
877
877
|
columns?: ("left" | "center" | "right")[] | {
|
|
878
878
|
key: string;
|
|
@@ -895,11 +895,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
895
895
|
} | undefined;
|
|
896
896
|
}[] | undefined;
|
|
897
897
|
table?: {
|
|
898
|
-
rows: (string | number)[][];
|
|
898
|
+
rows: (string | number | boolean | null)[][];
|
|
899
899
|
title?: string | undefined;
|
|
900
900
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
901
901
|
} | {
|
|
902
|
-
rows: Record<string, string | number>[];
|
|
902
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
903
903
|
title?: string | undefined;
|
|
904
904
|
columns?: ("left" | "center" | "right")[] | {
|
|
905
905
|
key: string;
|
|
@@ -922,11 +922,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
922
922
|
} | undefined;
|
|
923
923
|
}[] | undefined;
|
|
924
924
|
table?: {
|
|
925
|
-
rows: (string | number)[][];
|
|
925
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
926
926
|
title?: string | undefined;
|
|
927
927
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
928
928
|
} | {
|
|
929
|
-
rows: Record<string, string | number>[];
|
|
929
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
930
930
|
title?: string | undefined;
|
|
931
931
|
columns?: ("left" | "center" | "right")[] | {
|
|
932
932
|
key: string;
|
|
@@ -955,11 +955,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
955
955
|
} | undefined;
|
|
956
956
|
}[] | undefined;
|
|
957
957
|
table?: {
|
|
958
|
-
rows: (string | number)[][];
|
|
958
|
+
rows: (string | number | boolean | null)[][];
|
|
959
959
|
title?: string | undefined;
|
|
960
960
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
961
961
|
} | {
|
|
962
|
-
rows: Record<string, string | number>[];
|
|
962
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
963
963
|
title?: string | undefined;
|
|
964
964
|
columns?: ("left" | "center" | "right")[] | {
|
|
965
965
|
key: string;
|
|
@@ -988,11 +988,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
988
988
|
} | undefined;
|
|
989
989
|
}[] | undefined;
|
|
990
990
|
table?: {
|
|
991
|
-
rows: (string | number)[][];
|
|
991
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
992
992
|
title?: string | undefined;
|
|
993
993
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
994
994
|
} | {
|
|
995
|
-
rows: Record<string, string | number>[];
|
|
995
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
996
996
|
title?: string | undefined;
|
|
997
997
|
columns?: ("left" | "center" | "right")[] | {
|
|
998
998
|
key: string;
|
|
@@ -1021,11 +1021,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1021
1021
|
} | undefined;
|
|
1022
1022
|
}[] | undefined;
|
|
1023
1023
|
table?: {
|
|
1024
|
-
rows: (string | number)[][];
|
|
1024
|
+
rows: (string | number | boolean | null)[][];
|
|
1025
1025
|
title?: string | undefined;
|
|
1026
1026
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1027
1027
|
} | {
|
|
1028
|
-
rows: Record<string, string | number>[];
|
|
1028
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1029
1029
|
title?: string | undefined;
|
|
1030
1030
|
columns?: ("left" | "center" | "right")[] | {
|
|
1031
1031
|
key: string;
|
|
@@ -1054,11 +1054,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1054
1054
|
} | undefined;
|
|
1055
1055
|
}[] | undefined;
|
|
1056
1056
|
table?: {
|
|
1057
|
-
rows: (string | number)[][];
|
|
1057
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1058
1058
|
title?: string | undefined;
|
|
1059
1059
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1060
1060
|
} | {
|
|
1061
|
-
rows: Record<string, string | number>[];
|
|
1061
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1062
1062
|
title?: string | undefined;
|
|
1063
1063
|
columns?: ("left" | "center" | "right")[] | {
|
|
1064
1064
|
key: string;
|
|
@@ -1140,13 +1140,13 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1140
1140
|
title: z.ZodOptional<z.ZodString>;
|
|
1141
1141
|
}, {
|
|
1142
1142
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1143
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1143
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1144
1144
|
}>, "strip", z.ZodTypeAny, {
|
|
1145
|
-
rows: (string | number)[][];
|
|
1145
|
+
rows: (string | number | boolean | null)[][];
|
|
1146
1146
|
title?: string | undefined;
|
|
1147
1147
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1148
1148
|
}, {
|
|
1149
|
-
rows: (string | number)[][];
|
|
1149
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1150
1150
|
title?: string | undefined;
|
|
1151
1151
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1152
1152
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1165,9 +1165,9 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1165
1165
|
label?: string | undefined;
|
|
1166
1166
|
align?: "left" | "center" | "right" | undefined;
|
|
1167
1167
|
}>, "many">]>>;
|
|
1168
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1168
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1169
1169
|
}>, "strip", z.ZodTypeAny, {
|
|
1170
|
-
rows: Record<string, string | number>[];
|
|
1170
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1171
1171
|
title?: string | undefined;
|
|
1172
1172
|
columns?: ("left" | "center" | "right")[] | {
|
|
1173
1173
|
key: string;
|
|
@@ -1175,7 +1175,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1175
1175
|
align?: "left" | "center" | "right" | undefined;
|
|
1176
1176
|
}[] | undefined;
|
|
1177
1177
|
}, {
|
|
1178
|
-
rows: Record<string, string | number>[];
|
|
1178
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1179
1179
|
title?: string | undefined;
|
|
1180
1180
|
columns?: ("left" | "center" | "right")[] | {
|
|
1181
1181
|
key: string;
|
|
@@ -1198,11 +1198,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1198
1198
|
} | undefined;
|
|
1199
1199
|
}[] | undefined;
|
|
1200
1200
|
table?: {
|
|
1201
|
-
rows: (string | number)[][];
|
|
1201
|
+
rows: (string | number | boolean | null)[][];
|
|
1202
1202
|
title?: string | undefined;
|
|
1203
1203
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1204
1204
|
} | {
|
|
1205
|
-
rows: Record<string, string | number>[];
|
|
1205
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1206
1206
|
title?: string | undefined;
|
|
1207
1207
|
columns?: ("left" | "center" | "right")[] | {
|
|
1208
1208
|
key: string;
|
|
@@ -1225,11 +1225,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1225
1225
|
} | undefined;
|
|
1226
1226
|
}[] | undefined;
|
|
1227
1227
|
table?: {
|
|
1228
|
-
rows: (string | number)[][];
|
|
1228
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1229
1229
|
title?: string | undefined;
|
|
1230
1230
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1231
1231
|
} | {
|
|
1232
|
-
rows: Record<string, string | number>[];
|
|
1232
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1233
1233
|
title?: string | undefined;
|
|
1234
1234
|
columns?: ("left" | "center" | "right")[] | {
|
|
1235
1235
|
key: string;
|
|
@@ -1258,11 +1258,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1258
1258
|
} | undefined;
|
|
1259
1259
|
}[] | undefined;
|
|
1260
1260
|
table?: {
|
|
1261
|
-
rows: (string | number)[][];
|
|
1261
|
+
rows: (string | number | boolean | null)[][];
|
|
1262
1262
|
title?: string | undefined;
|
|
1263
1263
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1264
1264
|
} | {
|
|
1265
|
-
rows: Record<string, string | number>[];
|
|
1265
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1266
1266
|
title?: string | undefined;
|
|
1267
1267
|
columns?: ("left" | "center" | "right")[] | {
|
|
1268
1268
|
key: string;
|
|
@@ -1291,11 +1291,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1291
1291
|
} | undefined;
|
|
1292
1292
|
}[] | undefined;
|
|
1293
1293
|
table?: {
|
|
1294
|
-
rows: (string | number)[][];
|
|
1294
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1295
1295
|
title?: string | undefined;
|
|
1296
1296
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1297
1297
|
} | {
|
|
1298
|
-
rows: Record<string, string | number>[];
|
|
1298
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1299
1299
|
title?: string | undefined;
|
|
1300
1300
|
columns?: ("left" | "center" | "right")[] | {
|
|
1301
1301
|
key: string;
|
|
@@ -1324,11 +1324,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1324
1324
|
} | undefined;
|
|
1325
1325
|
}[] | undefined;
|
|
1326
1326
|
table?: {
|
|
1327
|
-
rows: (string | number)[][];
|
|
1327
|
+
rows: (string | number | boolean | null)[][];
|
|
1328
1328
|
title?: string | undefined;
|
|
1329
1329
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1330
1330
|
} | {
|
|
1331
|
-
rows: Record<string, string | number>[];
|
|
1331
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1332
1332
|
title?: string | undefined;
|
|
1333
1333
|
columns?: ("left" | "center" | "right")[] | {
|
|
1334
1334
|
key: string;
|
|
@@ -1357,11 +1357,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1357
1357
|
} | undefined;
|
|
1358
1358
|
}[] | undefined;
|
|
1359
1359
|
table?: {
|
|
1360
|
-
rows: (string | number)[][];
|
|
1360
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1361
1361
|
title?: string | undefined;
|
|
1362
1362
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1363
1363
|
} | {
|
|
1364
|
-
rows: Record<string, string | number>[];
|
|
1364
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1365
1365
|
title?: string | undefined;
|
|
1366
1366
|
columns?: ("left" | "center" | "right")[] | {
|
|
1367
1367
|
key: string;
|
|
@@ -1491,11 +1491,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1491
1491
|
} | undefined;
|
|
1492
1492
|
}[] | undefined;
|
|
1493
1493
|
table?: {
|
|
1494
|
-
rows: (string | number)[][];
|
|
1494
|
+
rows: (string | number | boolean | null)[][];
|
|
1495
1495
|
title?: string | undefined;
|
|
1496
1496
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1497
1497
|
} | {
|
|
1498
|
-
rows: Record<string, string | number>[];
|
|
1498
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1499
1499
|
title?: string | undefined;
|
|
1500
1500
|
columns?: ("left" | "center" | "right")[] | {
|
|
1501
1501
|
key: string;
|
|
@@ -1524,11 +1524,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1524
1524
|
} | undefined;
|
|
1525
1525
|
}[] | undefined;
|
|
1526
1526
|
table?: {
|
|
1527
|
-
rows: (string | number)[][];
|
|
1527
|
+
rows: (string | number | boolean | null)[][];
|
|
1528
1528
|
title?: string | undefined;
|
|
1529
1529
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1530
1530
|
} | {
|
|
1531
|
-
rows: Record<string, string | number>[];
|
|
1531
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1532
1532
|
title?: string | undefined;
|
|
1533
1533
|
columns?: ("left" | "center" | "right")[] | {
|
|
1534
1534
|
key: string;
|
|
@@ -1558,11 +1558,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1558
1558
|
} | undefined;
|
|
1559
1559
|
}[] | undefined;
|
|
1560
1560
|
table?: {
|
|
1561
|
-
rows: (string | number)[][];
|
|
1561
|
+
rows: (string | number | boolean | null)[][];
|
|
1562
1562
|
title?: string | undefined;
|
|
1563
1563
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1564
1564
|
} | {
|
|
1565
|
-
rows: Record<string, string | number>[];
|
|
1565
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1566
1566
|
title?: string | undefined;
|
|
1567
1567
|
columns?: ("left" | "center" | "right")[] | {
|
|
1568
1568
|
key: string;
|
|
@@ -1591,11 +1591,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1591
1591
|
} | undefined;
|
|
1592
1592
|
}[] | undefined;
|
|
1593
1593
|
table?: {
|
|
1594
|
-
rows: (string | number)[][];
|
|
1594
|
+
rows: (string | number | boolean | null)[][];
|
|
1595
1595
|
title?: string | undefined;
|
|
1596
1596
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1597
1597
|
} | {
|
|
1598
|
-
rows: Record<string, string | number>[];
|
|
1598
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1599
1599
|
title?: string | undefined;
|
|
1600
1600
|
columns?: ("left" | "center" | "right")[] | {
|
|
1601
1601
|
key: string;
|
|
@@ -1653,11 +1653,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1653
1653
|
} | undefined;
|
|
1654
1654
|
}[] | undefined;
|
|
1655
1655
|
table?: {
|
|
1656
|
-
rows: (string | number)[][];
|
|
1656
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1657
1657
|
title?: string | undefined;
|
|
1658
1658
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1659
1659
|
} | {
|
|
1660
|
-
rows: Record<string, string | number>[];
|
|
1660
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1661
1661
|
title?: string | undefined;
|
|
1662
1662
|
columns?: ("left" | "center" | "right")[] | {
|
|
1663
1663
|
key: string;
|
|
@@ -1686,11 +1686,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1686
1686
|
} | undefined;
|
|
1687
1687
|
}[] | undefined;
|
|
1688
1688
|
table?: {
|
|
1689
|
-
rows: (string | number)[][];
|
|
1689
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1690
1690
|
title?: string | undefined;
|
|
1691
1691
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1692
1692
|
} | {
|
|
1693
|
-
rows: Record<string, string | number>[];
|
|
1693
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1694
1694
|
title?: string | undefined;
|
|
1695
1695
|
columns?: ("left" | "center" | "right")[] | {
|
|
1696
1696
|
key: string;
|
|
@@ -1720,11 +1720,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1720
1720
|
} | undefined;
|
|
1721
1721
|
}[] | undefined;
|
|
1722
1722
|
table?: {
|
|
1723
|
-
rows: (string | number)[][];
|
|
1723
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1724
1724
|
title?: string | undefined;
|
|
1725
1725
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1726
1726
|
} | {
|
|
1727
|
-
rows: Record<string, string | number>[];
|
|
1727
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1728
1728
|
title?: string | undefined;
|
|
1729
1729
|
columns?: ("left" | "center" | "right")[] | {
|
|
1730
1730
|
key: string;
|
|
@@ -1753,11 +1753,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1753
1753
|
} | undefined;
|
|
1754
1754
|
}[] | undefined;
|
|
1755
1755
|
table?: {
|
|
1756
|
-
rows: (string | number)[][];
|
|
1756
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1757
1757
|
title?: string | undefined;
|
|
1758
1758
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1759
1759
|
} | {
|
|
1760
|
-
rows: Record<string, string | number>[];
|
|
1760
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1761
1761
|
title?: string | undefined;
|
|
1762
1762
|
columns?: ("left" | "center" | "right")[] | {
|
|
1763
1763
|
key: string;
|
|
@@ -1815,11 +1815,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1815
1815
|
} | undefined;
|
|
1816
1816
|
}[] | undefined;
|
|
1817
1817
|
table?: {
|
|
1818
|
-
rows: (string | number)[][];
|
|
1818
|
+
rows: (string | number | boolean | null)[][];
|
|
1819
1819
|
title?: string | undefined;
|
|
1820
1820
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1821
1821
|
} | {
|
|
1822
|
-
rows: Record<string, string | number>[];
|
|
1822
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1823
1823
|
title?: string | undefined;
|
|
1824
1824
|
columns?: ("left" | "center" | "right")[] | {
|
|
1825
1825
|
key: string;
|
|
@@ -1848,11 +1848,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1848
1848
|
} | undefined;
|
|
1849
1849
|
}[] | undefined;
|
|
1850
1850
|
table?: {
|
|
1851
|
-
rows: (string | number)[][];
|
|
1851
|
+
rows: (string | number | boolean | null)[][];
|
|
1852
1852
|
title?: string | undefined;
|
|
1853
1853
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1854
1854
|
} | {
|
|
1855
|
-
rows: Record<string, string | number>[];
|
|
1855
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1856
1856
|
title?: string | undefined;
|
|
1857
1857
|
columns?: ("left" | "center" | "right")[] | {
|
|
1858
1858
|
key: string;
|
|
@@ -1882,11 +1882,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1882
1882
|
} | undefined;
|
|
1883
1883
|
}[] | undefined;
|
|
1884
1884
|
table?: {
|
|
1885
|
-
rows: (string | number)[][];
|
|
1885
|
+
rows: (string | number | boolean | null)[][];
|
|
1886
1886
|
title?: string | undefined;
|
|
1887
1887
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1888
1888
|
} | {
|
|
1889
|
-
rows: Record<string, string | number>[];
|
|
1889
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1890
1890
|
title?: string | undefined;
|
|
1891
1891
|
columns?: ("left" | "center" | "right")[] | {
|
|
1892
1892
|
key: string;
|
|
@@ -1915,11 +1915,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1915
1915
|
} | undefined;
|
|
1916
1916
|
}[] | undefined;
|
|
1917
1917
|
table?: {
|
|
1918
|
-
rows: (string | number)[][];
|
|
1918
|
+
rows: (string | number | boolean | null)[][];
|
|
1919
1919
|
title?: string | undefined;
|
|
1920
1920
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1921
1921
|
} | {
|
|
1922
|
-
rows: Record<string, string | number>[];
|
|
1922
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1923
1923
|
title?: string | undefined;
|
|
1924
1924
|
columns?: ("left" | "center" | "right")[] | {
|
|
1925
1925
|
key: string;
|
|
@@ -1977,11 +1977,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1977
1977
|
} | undefined;
|
|
1978
1978
|
}[] | undefined;
|
|
1979
1979
|
table?: {
|
|
1980
|
-
rows: (string | number)[][];
|
|
1980
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1981
1981
|
title?: string | undefined;
|
|
1982
1982
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1983
1983
|
} | {
|
|
1984
|
-
rows: Record<string, string | number>[];
|
|
1984
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1985
1985
|
title?: string | undefined;
|
|
1986
1986
|
columns?: ("left" | "center" | "right")[] | {
|
|
1987
1987
|
key: string;
|
|
@@ -2010,11 +2010,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2010
2010
|
} | undefined;
|
|
2011
2011
|
}[] | undefined;
|
|
2012
2012
|
table?: {
|
|
2013
|
-
rows: (string | number)[][];
|
|
2013
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2014
2014
|
title?: string | undefined;
|
|
2015
2015
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2016
2016
|
} | {
|
|
2017
|
-
rows: Record<string, string | number>[];
|
|
2017
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2018
2018
|
title?: string | undefined;
|
|
2019
2019
|
columns?: ("left" | "center" | "right")[] | {
|
|
2020
2020
|
key: string;
|
|
@@ -2044,11 +2044,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2044
2044
|
} | undefined;
|
|
2045
2045
|
}[] | undefined;
|
|
2046
2046
|
table?: {
|
|
2047
|
-
rows: (string | number)[][];
|
|
2047
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2048
2048
|
title?: string | undefined;
|
|
2049
2049
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2050
2050
|
} | {
|
|
2051
|
-
rows: Record<string, string | number>[];
|
|
2051
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2052
2052
|
title?: string | undefined;
|
|
2053
2053
|
columns?: ("left" | "center" | "right")[] | {
|
|
2054
2054
|
key: string;
|
|
@@ -2077,11 +2077,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2077
2077
|
} | undefined;
|
|
2078
2078
|
}[] | undefined;
|
|
2079
2079
|
table?: {
|
|
2080
|
-
rows: (string | number)[][];
|
|
2080
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2081
2081
|
title?: string | undefined;
|
|
2082
2082
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2083
2083
|
} | {
|
|
2084
|
-
rows: Record<string, string | number>[];
|
|
2084
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2085
2085
|
title?: string | undefined;
|
|
2086
2086
|
columns?: ("left" | "center" | "right")[] | {
|
|
2087
2087
|
key: string;
|
|
@@ -2269,11 +2269,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2269
2269
|
} | undefined;
|
|
2270
2270
|
}[] | undefined;
|
|
2271
2271
|
table?: {
|
|
2272
|
-
rows: (string | number)[][];
|
|
2272
|
+
rows: (string | number | boolean | null)[][];
|
|
2273
2273
|
title?: string | undefined;
|
|
2274
2274
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2275
2275
|
} | {
|
|
2276
|
-
rows: Record<string, string | number>[];
|
|
2276
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2277
2277
|
title?: string | undefined;
|
|
2278
2278
|
columns?: ("left" | "center" | "right")[] | {
|
|
2279
2279
|
key: string;
|
|
@@ -2302,11 +2302,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2302
2302
|
} | undefined;
|
|
2303
2303
|
}[] | undefined;
|
|
2304
2304
|
table?: {
|
|
2305
|
-
rows: (string | number)[][];
|
|
2305
|
+
rows: (string | number | boolean | null)[][];
|
|
2306
2306
|
title?: string | undefined;
|
|
2307
2307
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2308
2308
|
} | {
|
|
2309
|
-
rows: Record<string, string | number>[];
|
|
2309
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2310
2310
|
title?: string | undefined;
|
|
2311
2311
|
columns?: ("left" | "center" | "right")[] | {
|
|
2312
2312
|
key: string;
|
|
@@ -2336,11 +2336,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2336
2336
|
} | undefined;
|
|
2337
2337
|
}[] | undefined;
|
|
2338
2338
|
table?: {
|
|
2339
|
-
rows: (string | number)[][];
|
|
2339
|
+
rows: (string | number | boolean | null)[][];
|
|
2340
2340
|
title?: string | undefined;
|
|
2341
2341
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2342
2342
|
} | {
|
|
2343
|
-
rows: Record<string, string | number>[];
|
|
2343
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2344
2344
|
title?: string | undefined;
|
|
2345
2345
|
columns?: ("left" | "center" | "right")[] | {
|
|
2346
2346
|
key: string;
|
|
@@ -2369,11 +2369,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2369
2369
|
} | undefined;
|
|
2370
2370
|
}[] | undefined;
|
|
2371
2371
|
table?: {
|
|
2372
|
-
rows: (string | number)[][];
|
|
2372
|
+
rows: (string | number | boolean | null)[][];
|
|
2373
2373
|
title?: string | undefined;
|
|
2374
2374
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2375
2375
|
} | {
|
|
2376
|
-
rows: Record<string, string | number>[];
|
|
2376
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2377
2377
|
title?: string | undefined;
|
|
2378
2378
|
columns?: ("left" | "center" | "right")[] | {
|
|
2379
2379
|
key: string;
|
|
@@ -2458,11 +2458,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2458
2458
|
} | undefined;
|
|
2459
2459
|
}[] | undefined;
|
|
2460
2460
|
table?: {
|
|
2461
|
-
rows: (string | number)[][];
|
|
2461
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2462
2462
|
title?: string | undefined;
|
|
2463
2463
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2464
2464
|
} | {
|
|
2465
|
-
rows: Record<string, string | number>[];
|
|
2465
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2466
2466
|
title?: string | undefined;
|
|
2467
2467
|
columns?: ("left" | "center" | "right")[] | {
|
|
2468
2468
|
key: string;
|
|
@@ -2491,11 +2491,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2491
2491
|
} | undefined;
|
|
2492
2492
|
}[] | undefined;
|
|
2493
2493
|
table?: {
|
|
2494
|
-
rows: (string | number)[][];
|
|
2494
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2495
2495
|
title?: string | undefined;
|
|
2496
2496
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2497
2497
|
} | {
|
|
2498
|
-
rows: Record<string, string | number>[];
|
|
2498
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2499
2499
|
title?: string | undefined;
|
|
2500
2500
|
columns?: ("left" | "center" | "right")[] | {
|
|
2501
2501
|
key: string;
|
|
@@ -2525,11 +2525,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2525
2525
|
} | undefined;
|
|
2526
2526
|
}[] | undefined;
|
|
2527
2527
|
table?: {
|
|
2528
|
-
rows: (string | number)[][];
|
|
2528
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2529
2529
|
title?: string | undefined;
|
|
2530
2530
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2531
2531
|
} | {
|
|
2532
|
-
rows: Record<string, string | number>[];
|
|
2532
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2533
2533
|
title?: string | undefined;
|
|
2534
2534
|
columns?: ("left" | "center" | "right")[] | {
|
|
2535
2535
|
key: string;
|
|
@@ -2558,11 +2558,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2558
2558
|
} | undefined;
|
|
2559
2559
|
}[] | undefined;
|
|
2560
2560
|
table?: {
|
|
2561
|
-
rows: (string | number)[][];
|
|
2561
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2562
2562
|
title?: string | undefined;
|
|
2563
2563
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2564
2564
|
} | {
|
|
2565
|
-
rows: Record<string, string | number>[];
|
|
2565
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2566
2566
|
title?: string | undefined;
|
|
2567
2567
|
columns?: ("left" | "center" | "right")[] | {
|
|
2568
2568
|
key: string;
|
|
@@ -2708,13 +2708,13 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2708
2708
|
title: z.ZodOptional<z.ZodString>;
|
|
2709
2709
|
}, {
|
|
2710
2710
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
2711
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
2711
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
2712
2712
|
}>, "strip", z.ZodTypeAny, {
|
|
2713
|
-
rows: (string | number)[][];
|
|
2713
|
+
rows: (string | number | boolean | null)[][];
|
|
2714
2714
|
title?: string | undefined;
|
|
2715
2715
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2716
2716
|
}, {
|
|
2717
|
-
rows: (string | number)[][];
|
|
2717
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2718
2718
|
title?: string | undefined;
|
|
2719
2719
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2720
2720
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2733,9 +2733,9 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2733
2733
|
label?: string | undefined;
|
|
2734
2734
|
align?: "left" | "center" | "right" | undefined;
|
|
2735
2735
|
}>, "many">]>>;
|
|
2736
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
2736
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
2737
2737
|
}>, "strip", z.ZodTypeAny, {
|
|
2738
|
-
rows: Record<string, string | number>[];
|
|
2738
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2739
2739
|
title?: string | undefined;
|
|
2740
2740
|
columns?: ("left" | "center" | "right")[] | {
|
|
2741
2741
|
key: string;
|
|
@@ -2743,7 +2743,7 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2743
2743
|
align?: "left" | "center" | "right" | undefined;
|
|
2744
2744
|
}[] | undefined;
|
|
2745
2745
|
}, {
|
|
2746
|
-
rows: Record<string, string | number>[];
|
|
2746
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2747
2747
|
title?: string | undefined;
|
|
2748
2748
|
columns?: ("left" | "center" | "right")[] | {
|
|
2749
2749
|
key: string;
|
|
@@ -2766,11 +2766,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2766
2766
|
} | undefined;
|
|
2767
2767
|
}[] | undefined;
|
|
2768
2768
|
table?: {
|
|
2769
|
-
rows: (string | number)[][];
|
|
2769
|
+
rows: (string | number | boolean | null)[][];
|
|
2770
2770
|
title?: string | undefined;
|
|
2771
2771
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2772
2772
|
} | {
|
|
2773
|
-
rows: Record<string, string | number>[];
|
|
2773
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2774
2774
|
title?: string | undefined;
|
|
2775
2775
|
columns?: ("left" | "center" | "right")[] | {
|
|
2776
2776
|
key: string;
|
|
@@ -2793,11 +2793,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2793
2793
|
} | undefined;
|
|
2794
2794
|
}[] | undefined;
|
|
2795
2795
|
table?: {
|
|
2796
|
-
rows: (string | number)[][];
|
|
2796
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2797
2797
|
title?: string | undefined;
|
|
2798
2798
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2799
2799
|
} | {
|
|
2800
|
-
rows: Record<string, string | number>[];
|
|
2800
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2801
2801
|
title?: string | undefined;
|
|
2802
2802
|
columns?: ("left" | "center" | "right")[] | {
|
|
2803
2803
|
key: string;
|
|
@@ -2826,11 +2826,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2826
2826
|
} | undefined;
|
|
2827
2827
|
}[] | undefined;
|
|
2828
2828
|
table?: {
|
|
2829
|
-
rows: (string | number)[][];
|
|
2829
|
+
rows: (string | number | boolean | null)[][];
|
|
2830
2830
|
title?: string | undefined;
|
|
2831
2831
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2832
2832
|
} | {
|
|
2833
|
-
rows: Record<string, string | number>[];
|
|
2833
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2834
2834
|
title?: string | undefined;
|
|
2835
2835
|
columns?: ("left" | "center" | "right")[] | {
|
|
2836
2836
|
key: string;
|
|
@@ -2859,11 +2859,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2859
2859
|
} | undefined;
|
|
2860
2860
|
}[] | undefined;
|
|
2861
2861
|
table?: {
|
|
2862
|
-
rows: (string | number)[][];
|
|
2862
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2863
2863
|
title?: string | undefined;
|
|
2864
2864
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2865
2865
|
} | {
|
|
2866
|
-
rows: Record<string, string | number>[];
|
|
2866
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2867
2867
|
title?: string | undefined;
|
|
2868
2868
|
columns?: ("left" | "center" | "right")[] | {
|
|
2869
2869
|
key: string;
|
|
@@ -2892,11 +2892,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2892
2892
|
} | undefined;
|
|
2893
2893
|
}[] | undefined;
|
|
2894
2894
|
table?: {
|
|
2895
|
-
rows: (string | number)[][];
|
|
2895
|
+
rows: (string | number | boolean | null)[][];
|
|
2896
2896
|
title?: string | undefined;
|
|
2897
2897
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2898
2898
|
} | {
|
|
2899
|
-
rows: Record<string, string | number>[];
|
|
2899
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2900
2900
|
title?: string | undefined;
|
|
2901
2901
|
columns?: ("left" | "center" | "right")[] | {
|
|
2902
2902
|
key: string;
|
|
@@ -2925,11 +2925,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
2925
2925
|
} | undefined;
|
|
2926
2926
|
}[] | undefined;
|
|
2927
2927
|
table?: {
|
|
2928
|
-
rows: (string | number)[][];
|
|
2928
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2929
2929
|
title?: string | undefined;
|
|
2930
2930
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2931
2931
|
} | {
|
|
2932
|
-
rows: Record<string, string | number>[];
|
|
2932
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2933
2933
|
title?: string | undefined;
|
|
2934
2934
|
columns?: ("left" | "center" | "right")[] | {
|
|
2935
2935
|
key: string;
|
|
@@ -3011,13 +3011,13 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3011
3011
|
title: z.ZodOptional<z.ZodString>;
|
|
3012
3012
|
}, {
|
|
3013
3013
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
3014
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
3014
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
3015
3015
|
}>, "strip", z.ZodTypeAny, {
|
|
3016
|
-
rows: (string | number)[][];
|
|
3016
|
+
rows: (string | number | boolean | null)[][];
|
|
3017
3017
|
title?: string | undefined;
|
|
3018
3018
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3019
3019
|
}, {
|
|
3020
|
-
rows: (string | number)[][];
|
|
3020
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3021
3021
|
title?: string | undefined;
|
|
3022
3022
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3023
3023
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3036,9 +3036,9 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3036
3036
|
label?: string | undefined;
|
|
3037
3037
|
align?: "left" | "center" | "right" | undefined;
|
|
3038
3038
|
}>, "many">]>>;
|
|
3039
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
3039
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
3040
3040
|
}>, "strip", z.ZodTypeAny, {
|
|
3041
|
-
rows: Record<string, string | number>[];
|
|
3041
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3042
3042
|
title?: string | undefined;
|
|
3043
3043
|
columns?: ("left" | "center" | "right")[] | {
|
|
3044
3044
|
key: string;
|
|
@@ -3046,7 +3046,7 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3046
3046
|
align?: "left" | "center" | "right" | undefined;
|
|
3047
3047
|
}[] | undefined;
|
|
3048
3048
|
}, {
|
|
3049
|
-
rows: Record<string, string | number>[];
|
|
3049
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3050
3050
|
title?: string | undefined;
|
|
3051
3051
|
columns?: ("left" | "center" | "right")[] | {
|
|
3052
3052
|
key: string;
|
|
@@ -3069,11 +3069,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3069
3069
|
} | undefined;
|
|
3070
3070
|
}[] | undefined;
|
|
3071
3071
|
table?: {
|
|
3072
|
-
rows: (string | number)[][];
|
|
3072
|
+
rows: (string | number | boolean | null)[][];
|
|
3073
3073
|
title?: string | undefined;
|
|
3074
3074
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3075
3075
|
} | {
|
|
3076
|
-
rows: Record<string, string | number>[];
|
|
3076
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3077
3077
|
title?: string | undefined;
|
|
3078
3078
|
columns?: ("left" | "center" | "right")[] | {
|
|
3079
3079
|
key: string;
|
|
@@ -3096,11 +3096,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3096
3096
|
} | undefined;
|
|
3097
3097
|
}[] | undefined;
|
|
3098
3098
|
table?: {
|
|
3099
|
-
rows: (string | number)[][];
|
|
3099
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3100
3100
|
title?: string | undefined;
|
|
3101
3101
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3102
3102
|
} | {
|
|
3103
|
-
rows: Record<string, string | number>[];
|
|
3103
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3104
3104
|
title?: string | undefined;
|
|
3105
3105
|
columns?: ("left" | "center" | "right")[] | {
|
|
3106
3106
|
key: string;
|
|
@@ -3129,11 +3129,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3129
3129
|
} | undefined;
|
|
3130
3130
|
}[] | undefined;
|
|
3131
3131
|
table?: {
|
|
3132
|
-
rows: (string | number)[][];
|
|
3132
|
+
rows: (string | number | boolean | null)[][];
|
|
3133
3133
|
title?: string | undefined;
|
|
3134
3134
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3135
3135
|
} | {
|
|
3136
|
-
rows: Record<string, string | number>[];
|
|
3136
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3137
3137
|
title?: string | undefined;
|
|
3138
3138
|
columns?: ("left" | "center" | "right")[] | {
|
|
3139
3139
|
key: string;
|
|
@@ -3162,11 +3162,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3162
3162
|
} | undefined;
|
|
3163
3163
|
}[] | undefined;
|
|
3164
3164
|
table?: {
|
|
3165
|
-
rows: (string | number)[][];
|
|
3165
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3166
3166
|
title?: string | undefined;
|
|
3167
3167
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3168
3168
|
} | {
|
|
3169
|
-
rows: Record<string, string | number>[];
|
|
3169
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3170
3170
|
title?: string | undefined;
|
|
3171
3171
|
columns?: ("left" | "center" | "right")[] | {
|
|
3172
3172
|
key: string;
|
|
@@ -3195,11 +3195,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3195
3195
|
} | undefined;
|
|
3196
3196
|
}[] | undefined;
|
|
3197
3197
|
table?: {
|
|
3198
|
-
rows: (string | number)[][];
|
|
3198
|
+
rows: (string | number | boolean | null)[][];
|
|
3199
3199
|
title?: string | undefined;
|
|
3200
3200
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3201
3201
|
} | {
|
|
3202
|
-
rows: Record<string, string | number>[];
|
|
3202
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3203
3203
|
title?: string | undefined;
|
|
3204
3204
|
columns?: ("left" | "center" | "right")[] | {
|
|
3205
3205
|
key: string;
|
|
@@ -3228,11 +3228,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3228
3228
|
} | undefined;
|
|
3229
3229
|
}[] | undefined;
|
|
3230
3230
|
table?: {
|
|
3231
|
-
rows: (string | number)[][];
|
|
3231
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3232
3232
|
title?: string | undefined;
|
|
3233
3233
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3234
3234
|
} | {
|
|
3235
|
-
rows: Record<string, string | number>[];
|
|
3235
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3236
3236
|
title?: string | undefined;
|
|
3237
3237
|
columns?: ("left" | "center" | "right")[] | {
|
|
3238
3238
|
key: string;
|
|
@@ -3266,11 +3266,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3266
3266
|
} | undefined;
|
|
3267
3267
|
}[] | undefined;
|
|
3268
3268
|
table?: {
|
|
3269
|
-
rows: (string | number)[][];
|
|
3269
|
+
rows: (string | number | boolean | null)[][];
|
|
3270
3270
|
title?: string | undefined;
|
|
3271
3271
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3272
3272
|
} | {
|
|
3273
|
-
rows: Record<string, string | number>[];
|
|
3273
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3274
3274
|
title?: string | undefined;
|
|
3275
3275
|
columns?: ("left" | "center" | "right")[] | {
|
|
3276
3276
|
key: string;
|
|
@@ -3299,11 +3299,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3299
3299
|
} | undefined;
|
|
3300
3300
|
}[] | undefined;
|
|
3301
3301
|
table?: {
|
|
3302
|
-
rows: (string | number)[][];
|
|
3302
|
+
rows: (string | number | boolean | null)[][];
|
|
3303
3303
|
title?: string | undefined;
|
|
3304
3304
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3305
3305
|
} | {
|
|
3306
|
-
rows: Record<string, string | number>[];
|
|
3306
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3307
3307
|
title?: string | undefined;
|
|
3308
3308
|
columns?: ("left" | "center" | "right")[] | {
|
|
3309
3309
|
key: string;
|
|
@@ -3337,11 +3337,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3337
3337
|
} | undefined;
|
|
3338
3338
|
}[] | undefined;
|
|
3339
3339
|
table?: {
|
|
3340
|
-
rows: (string | number)[][];
|
|
3340
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3341
3341
|
title?: string | undefined;
|
|
3342
3342
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3343
3343
|
} | {
|
|
3344
|
-
rows: Record<string, string | number>[];
|
|
3344
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3345
3345
|
title?: string | undefined;
|
|
3346
3346
|
columns?: ("left" | "center" | "right")[] | {
|
|
3347
3347
|
key: string;
|
|
@@ -3370,11 +3370,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3370
3370
|
} | undefined;
|
|
3371
3371
|
}[] | undefined;
|
|
3372
3372
|
table?: {
|
|
3373
|
-
rows: (string | number)[][];
|
|
3373
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3374
3374
|
title?: string | undefined;
|
|
3375
3375
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3376
3376
|
} | {
|
|
3377
|
-
rows: Record<string, string | number>[];
|
|
3377
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3378
3378
|
title?: string | undefined;
|
|
3379
3379
|
columns?: ("left" | "center" | "right")[] | {
|
|
3380
3380
|
key: string;
|
|
@@ -3457,13 +3457,13 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3457
3457
|
title: z.ZodOptional<z.ZodString>;
|
|
3458
3458
|
}, {
|
|
3459
3459
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
3460
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
3460
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
3461
3461
|
}>, "strip", z.ZodTypeAny, {
|
|
3462
|
-
rows: (string | number)[][];
|
|
3462
|
+
rows: (string | number | boolean | null)[][];
|
|
3463
3463
|
title?: string | undefined;
|
|
3464
3464
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3465
3465
|
}, {
|
|
3466
|
-
rows: (string | number)[][];
|
|
3466
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3467
3467
|
title?: string | undefined;
|
|
3468
3468
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3469
3469
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3482,9 +3482,9 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3482
3482
|
label?: string | undefined;
|
|
3483
3483
|
align?: "left" | "center" | "right" | undefined;
|
|
3484
3484
|
}>, "many">]>>;
|
|
3485
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
3485
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
3486
3486
|
}>, "strip", z.ZodTypeAny, {
|
|
3487
|
-
rows: Record<string, string | number>[];
|
|
3487
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3488
3488
|
title?: string | undefined;
|
|
3489
3489
|
columns?: ("left" | "center" | "right")[] | {
|
|
3490
3490
|
key: string;
|
|
@@ -3492,7 +3492,7 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3492
3492
|
align?: "left" | "center" | "right" | undefined;
|
|
3493
3493
|
}[] | undefined;
|
|
3494
3494
|
}, {
|
|
3495
|
-
rows: Record<string, string | number>[];
|
|
3495
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3496
3496
|
title?: string | undefined;
|
|
3497
3497
|
columns?: ("left" | "center" | "right")[] | {
|
|
3498
3498
|
key: string;
|
|
@@ -3515,11 +3515,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3515
3515
|
} | undefined;
|
|
3516
3516
|
}[] | undefined;
|
|
3517
3517
|
table?: {
|
|
3518
|
-
rows: (string | number)[][];
|
|
3518
|
+
rows: (string | number | boolean | null)[][];
|
|
3519
3519
|
title?: string | undefined;
|
|
3520
3520
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3521
3521
|
} | {
|
|
3522
|
-
rows: Record<string, string | number>[];
|
|
3522
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3523
3523
|
title?: string | undefined;
|
|
3524
3524
|
columns?: ("left" | "center" | "right")[] | {
|
|
3525
3525
|
key: string;
|
|
@@ -3542,11 +3542,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3542
3542
|
} | undefined;
|
|
3543
3543
|
}[] | undefined;
|
|
3544
3544
|
table?: {
|
|
3545
|
-
rows: (string | number)[][];
|
|
3545
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3546
3546
|
title?: string | undefined;
|
|
3547
3547
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3548
3548
|
} | {
|
|
3549
|
-
rows: Record<string, string | number>[];
|
|
3549
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3550
3550
|
title?: string | undefined;
|
|
3551
3551
|
columns?: ("left" | "center" | "right")[] | {
|
|
3552
3552
|
key: string;
|
|
@@ -3575,11 +3575,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3575
3575
|
} | undefined;
|
|
3576
3576
|
}[] | undefined;
|
|
3577
3577
|
table?: {
|
|
3578
|
-
rows: (string | number)[][];
|
|
3578
|
+
rows: (string | number | boolean | null)[][];
|
|
3579
3579
|
title?: string | undefined;
|
|
3580
3580
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3581
3581
|
} | {
|
|
3582
|
-
rows: Record<string, string | number>[];
|
|
3582
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3583
3583
|
title?: string | undefined;
|
|
3584
3584
|
columns?: ("left" | "center" | "right")[] | {
|
|
3585
3585
|
key: string;
|
|
@@ -3608,11 +3608,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3608
3608
|
} | undefined;
|
|
3609
3609
|
}[] | undefined;
|
|
3610
3610
|
table?: {
|
|
3611
|
-
rows: (string | number)[][];
|
|
3611
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3612
3612
|
title?: string | undefined;
|
|
3613
3613
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3614
3614
|
} | {
|
|
3615
|
-
rows: Record<string, string | number>[];
|
|
3615
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3616
3616
|
title?: string | undefined;
|
|
3617
3617
|
columns?: ("left" | "center" | "right")[] | {
|
|
3618
3618
|
key: string;
|
|
@@ -3641,11 +3641,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3641
3641
|
} | undefined;
|
|
3642
3642
|
}[] | undefined;
|
|
3643
3643
|
table?: {
|
|
3644
|
-
rows: (string | number)[][];
|
|
3644
|
+
rows: (string | number | boolean | null)[][];
|
|
3645
3645
|
title?: string | undefined;
|
|
3646
3646
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3647
3647
|
} | {
|
|
3648
|
-
rows: Record<string, string | number>[];
|
|
3648
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3649
3649
|
title?: string | undefined;
|
|
3650
3650
|
columns?: ("left" | "center" | "right")[] | {
|
|
3651
3651
|
key: string;
|
|
@@ -3674,11 +3674,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3674
3674
|
} | undefined;
|
|
3675
3675
|
}[] | undefined;
|
|
3676
3676
|
table?: {
|
|
3677
|
-
rows: (string | number)[][];
|
|
3677
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3678
3678
|
title?: string | undefined;
|
|
3679
3679
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3680
3680
|
} | {
|
|
3681
|
-
rows: Record<string, string | number>[];
|
|
3681
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3682
3682
|
title?: string | undefined;
|
|
3683
3683
|
columns?: ("left" | "center" | "right")[] | {
|
|
3684
3684
|
key: string;
|
|
@@ -3760,13 +3760,13 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3760
3760
|
title: z.ZodOptional<z.ZodString>;
|
|
3761
3761
|
}, {
|
|
3762
3762
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
3763
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
3763
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
3764
3764
|
}>, "strip", z.ZodTypeAny, {
|
|
3765
|
-
rows: (string | number)[][];
|
|
3765
|
+
rows: (string | number | boolean | null)[][];
|
|
3766
3766
|
title?: string | undefined;
|
|
3767
3767
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3768
3768
|
}, {
|
|
3769
|
-
rows: (string | number)[][];
|
|
3769
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3770
3770
|
title?: string | undefined;
|
|
3771
3771
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3772
3772
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3785,9 +3785,9 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3785
3785
|
label?: string | undefined;
|
|
3786
3786
|
align?: "left" | "center" | "right" | undefined;
|
|
3787
3787
|
}>, "many">]>>;
|
|
3788
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
3788
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
3789
3789
|
}>, "strip", z.ZodTypeAny, {
|
|
3790
|
-
rows: Record<string, string | number>[];
|
|
3790
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3791
3791
|
title?: string | undefined;
|
|
3792
3792
|
columns?: ("left" | "center" | "right")[] | {
|
|
3793
3793
|
key: string;
|
|
@@ -3795,7 +3795,7 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3795
3795
|
align?: "left" | "center" | "right" | undefined;
|
|
3796
3796
|
}[] | undefined;
|
|
3797
3797
|
}, {
|
|
3798
|
-
rows: Record<string, string | number>[];
|
|
3798
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3799
3799
|
title?: string | undefined;
|
|
3800
3800
|
columns?: ("left" | "center" | "right")[] | {
|
|
3801
3801
|
key: string;
|
|
@@ -3818,11 +3818,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3818
3818
|
} | undefined;
|
|
3819
3819
|
}[] | undefined;
|
|
3820
3820
|
table?: {
|
|
3821
|
-
rows: (string | number)[][];
|
|
3821
|
+
rows: (string | number | boolean | null)[][];
|
|
3822
3822
|
title?: string | undefined;
|
|
3823
3823
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3824
3824
|
} | {
|
|
3825
|
-
rows: Record<string, string | number>[];
|
|
3825
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3826
3826
|
title?: string | undefined;
|
|
3827
3827
|
columns?: ("left" | "center" | "right")[] | {
|
|
3828
3828
|
key: string;
|
|
@@ -3845,11 +3845,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3845
3845
|
} | undefined;
|
|
3846
3846
|
}[] | undefined;
|
|
3847
3847
|
table?: {
|
|
3848
|
-
rows: (string | number)[][];
|
|
3848
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3849
3849
|
title?: string | undefined;
|
|
3850
3850
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3851
3851
|
} | {
|
|
3852
|
-
rows: Record<string, string | number>[];
|
|
3852
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3853
3853
|
title?: string | undefined;
|
|
3854
3854
|
columns?: ("left" | "center" | "right")[] | {
|
|
3855
3855
|
key: string;
|
|
@@ -3878,11 +3878,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3878
3878
|
} | undefined;
|
|
3879
3879
|
}[] | undefined;
|
|
3880
3880
|
table?: {
|
|
3881
|
-
rows: (string | number)[][];
|
|
3881
|
+
rows: (string | number | boolean | null)[][];
|
|
3882
3882
|
title?: string | undefined;
|
|
3883
3883
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3884
3884
|
} | {
|
|
3885
|
-
rows: Record<string, string | number>[];
|
|
3885
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3886
3886
|
title?: string | undefined;
|
|
3887
3887
|
columns?: ("left" | "center" | "right")[] | {
|
|
3888
3888
|
key: string;
|
|
@@ -3911,11 +3911,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3911
3911
|
} | undefined;
|
|
3912
3912
|
}[] | undefined;
|
|
3913
3913
|
table?: {
|
|
3914
|
-
rows: (string | number)[][];
|
|
3914
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3915
3915
|
title?: string | undefined;
|
|
3916
3916
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3917
3917
|
} | {
|
|
3918
|
-
rows: Record<string, string | number>[];
|
|
3918
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3919
3919
|
title?: string | undefined;
|
|
3920
3920
|
columns?: ("left" | "center" | "right")[] | {
|
|
3921
3921
|
key: string;
|
|
@@ -3944,11 +3944,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3944
3944
|
} | undefined;
|
|
3945
3945
|
}[] | undefined;
|
|
3946
3946
|
table?: {
|
|
3947
|
-
rows: (string | number)[][];
|
|
3947
|
+
rows: (string | number | boolean | null)[][];
|
|
3948
3948
|
title?: string | undefined;
|
|
3949
3949
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3950
3950
|
} | {
|
|
3951
|
-
rows: Record<string, string | number>[];
|
|
3951
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3952
3952
|
title?: string | undefined;
|
|
3953
3953
|
columns?: ("left" | "center" | "right")[] | {
|
|
3954
3954
|
key: string;
|
|
@@ -3977,11 +3977,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
3977
3977
|
} | undefined;
|
|
3978
3978
|
}[] | undefined;
|
|
3979
3979
|
table?: {
|
|
3980
|
-
rows: (string | number)[][];
|
|
3980
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3981
3981
|
title?: string | undefined;
|
|
3982
3982
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3983
3983
|
} | {
|
|
3984
|
-
rows: Record<string, string | number>[];
|
|
3984
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3985
3985
|
title?: string | undefined;
|
|
3986
3986
|
columns?: ("left" | "center" | "right")[] | {
|
|
3987
3987
|
key: string;
|
|
@@ -4111,11 +4111,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4111
4111
|
} | undefined;
|
|
4112
4112
|
}[] | undefined;
|
|
4113
4113
|
table?: {
|
|
4114
|
-
rows: (string | number)[][];
|
|
4114
|
+
rows: (string | number | boolean | null)[][];
|
|
4115
4115
|
title?: string | undefined;
|
|
4116
4116
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4117
4117
|
} | {
|
|
4118
|
-
rows: Record<string, string | number>[];
|
|
4118
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4119
4119
|
title?: string | undefined;
|
|
4120
4120
|
columns?: ("left" | "center" | "right")[] | {
|
|
4121
4121
|
key: string;
|
|
@@ -4144,11 +4144,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4144
4144
|
} | undefined;
|
|
4145
4145
|
}[] | undefined;
|
|
4146
4146
|
table?: {
|
|
4147
|
-
rows: (string | number)[][];
|
|
4147
|
+
rows: (string | number | boolean | null)[][];
|
|
4148
4148
|
title?: string | undefined;
|
|
4149
4149
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4150
4150
|
} | {
|
|
4151
|
-
rows: Record<string, string | number>[];
|
|
4151
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4152
4152
|
title?: string | undefined;
|
|
4153
4153
|
columns?: ("left" | "center" | "right")[] | {
|
|
4154
4154
|
key: string;
|
|
@@ -4178,11 +4178,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4178
4178
|
} | undefined;
|
|
4179
4179
|
}[] | undefined;
|
|
4180
4180
|
table?: {
|
|
4181
|
-
rows: (string | number)[][];
|
|
4181
|
+
rows: (string | number | boolean | null)[][];
|
|
4182
4182
|
title?: string | undefined;
|
|
4183
4183
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4184
4184
|
} | {
|
|
4185
|
-
rows: Record<string, string | number>[];
|
|
4185
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4186
4186
|
title?: string | undefined;
|
|
4187
4187
|
columns?: ("left" | "center" | "right")[] | {
|
|
4188
4188
|
key: string;
|
|
@@ -4211,11 +4211,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4211
4211
|
} | undefined;
|
|
4212
4212
|
}[] | undefined;
|
|
4213
4213
|
table?: {
|
|
4214
|
-
rows: (string | number)[][];
|
|
4214
|
+
rows: (string | number | boolean | null)[][];
|
|
4215
4215
|
title?: string | undefined;
|
|
4216
4216
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4217
4217
|
} | {
|
|
4218
|
-
rows: Record<string, string | number>[];
|
|
4218
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4219
4219
|
title?: string | undefined;
|
|
4220
4220
|
columns?: ("left" | "center" | "right")[] | {
|
|
4221
4221
|
key: string;
|
|
@@ -4273,11 +4273,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4273
4273
|
} | undefined;
|
|
4274
4274
|
}[] | undefined;
|
|
4275
4275
|
table?: {
|
|
4276
|
-
rows: (string | number)[][];
|
|
4276
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
4277
4277
|
title?: string | undefined;
|
|
4278
4278
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4279
4279
|
} | {
|
|
4280
|
-
rows: Record<string, string | number>[];
|
|
4280
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
4281
4281
|
title?: string | undefined;
|
|
4282
4282
|
columns?: ("left" | "center" | "right")[] | {
|
|
4283
4283
|
key: string;
|
|
@@ -4306,11 +4306,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4306
4306
|
} | undefined;
|
|
4307
4307
|
}[] | undefined;
|
|
4308
4308
|
table?: {
|
|
4309
|
-
rows: (string | number)[][];
|
|
4309
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
4310
4310
|
title?: string | undefined;
|
|
4311
4311
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4312
4312
|
} | {
|
|
4313
|
-
rows: Record<string, string | number>[];
|
|
4313
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
4314
4314
|
title?: string | undefined;
|
|
4315
4315
|
columns?: ("left" | "center" | "right")[] | {
|
|
4316
4316
|
key: string;
|
|
@@ -4340,11 +4340,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4340
4340
|
} | undefined;
|
|
4341
4341
|
}[] | undefined;
|
|
4342
4342
|
table?: {
|
|
4343
|
-
rows: (string | number)[][];
|
|
4343
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
4344
4344
|
title?: string | undefined;
|
|
4345
4345
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4346
4346
|
} | {
|
|
4347
|
-
rows: Record<string, string | number>[];
|
|
4347
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
4348
4348
|
title?: string | undefined;
|
|
4349
4349
|
columns?: ("left" | "center" | "right")[] | {
|
|
4350
4350
|
key: string;
|
|
@@ -4373,11 +4373,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4373
4373
|
} | undefined;
|
|
4374
4374
|
}[] | undefined;
|
|
4375
4375
|
table?: {
|
|
4376
|
-
rows: (string | number)[][];
|
|
4376
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
4377
4377
|
title?: string | undefined;
|
|
4378
4378
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4379
4379
|
} | {
|
|
4380
|
-
rows: Record<string, string | number>[];
|
|
4380
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
4381
4381
|
title?: string | undefined;
|
|
4382
4382
|
columns?: ("left" | "center" | "right")[] | {
|
|
4383
4383
|
key: string;
|
|
@@ -4435,11 +4435,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4435
4435
|
} | undefined;
|
|
4436
4436
|
}[] | undefined;
|
|
4437
4437
|
table?: {
|
|
4438
|
-
rows: (string | number)[][];
|
|
4438
|
+
rows: (string | number | boolean | null)[][];
|
|
4439
4439
|
title?: string | undefined;
|
|
4440
4440
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4441
4441
|
} | {
|
|
4442
|
-
rows: Record<string, string | number>[];
|
|
4442
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4443
4443
|
title?: string | undefined;
|
|
4444
4444
|
columns?: ("left" | "center" | "right")[] | {
|
|
4445
4445
|
key: string;
|
|
@@ -4468,11 +4468,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4468
4468
|
} | undefined;
|
|
4469
4469
|
}[] | undefined;
|
|
4470
4470
|
table?: {
|
|
4471
|
-
rows: (string | number)[][];
|
|
4471
|
+
rows: (string | number | boolean | null)[][];
|
|
4472
4472
|
title?: string | undefined;
|
|
4473
4473
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4474
4474
|
} | {
|
|
4475
|
-
rows: Record<string, string | number>[];
|
|
4475
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4476
4476
|
title?: string | undefined;
|
|
4477
4477
|
columns?: ("left" | "center" | "right")[] | {
|
|
4478
4478
|
key: string;
|
|
@@ -4502,11 +4502,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4502
4502
|
} | undefined;
|
|
4503
4503
|
}[] | undefined;
|
|
4504
4504
|
table?: {
|
|
4505
|
-
rows: (string | number)[][];
|
|
4505
|
+
rows: (string | number | boolean | null)[][];
|
|
4506
4506
|
title?: string | undefined;
|
|
4507
4507
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4508
4508
|
} | {
|
|
4509
|
-
rows: Record<string, string | number>[];
|
|
4509
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4510
4510
|
title?: string | undefined;
|
|
4511
4511
|
columns?: ("left" | "center" | "right")[] | {
|
|
4512
4512
|
key: string;
|
|
@@ -4535,11 +4535,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4535
4535
|
} | undefined;
|
|
4536
4536
|
}[] | undefined;
|
|
4537
4537
|
table?: {
|
|
4538
|
-
rows: (string | number)[][];
|
|
4538
|
+
rows: (string | number | boolean | null)[][];
|
|
4539
4539
|
title?: string | undefined;
|
|
4540
4540
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4541
4541
|
} | {
|
|
4542
|
-
rows: Record<string, string | number>[];
|
|
4542
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4543
4543
|
title?: string | undefined;
|
|
4544
4544
|
columns?: ("left" | "center" | "right")[] | {
|
|
4545
4545
|
key: string;
|
|
@@ -4597,11 +4597,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4597
4597
|
} | undefined;
|
|
4598
4598
|
}[] | undefined;
|
|
4599
4599
|
table?: {
|
|
4600
|
-
rows: (string | number)[][];
|
|
4600
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
4601
4601
|
title?: string | undefined;
|
|
4602
4602
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4603
4603
|
} | {
|
|
4604
|
-
rows: Record<string, string | number>[];
|
|
4604
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
4605
4605
|
title?: string | undefined;
|
|
4606
4606
|
columns?: ("left" | "center" | "right")[] | {
|
|
4607
4607
|
key: string;
|
|
@@ -4630,11 +4630,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4630
4630
|
} | undefined;
|
|
4631
4631
|
}[] | undefined;
|
|
4632
4632
|
table?: {
|
|
4633
|
-
rows: (string | number)[][];
|
|
4633
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
4634
4634
|
title?: string | undefined;
|
|
4635
4635
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4636
4636
|
} | {
|
|
4637
|
-
rows: Record<string, string | number>[];
|
|
4637
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
4638
4638
|
title?: string | undefined;
|
|
4639
4639
|
columns?: ("left" | "center" | "right")[] | {
|
|
4640
4640
|
key: string;
|
|
@@ -4664,11 +4664,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4664
4664
|
} | undefined;
|
|
4665
4665
|
}[] | undefined;
|
|
4666
4666
|
table?: {
|
|
4667
|
-
rows: (string | number)[][];
|
|
4667
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
4668
4668
|
title?: string | undefined;
|
|
4669
4669
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4670
4670
|
} | {
|
|
4671
|
-
rows: Record<string, string | number>[];
|
|
4671
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
4672
4672
|
title?: string | undefined;
|
|
4673
4673
|
columns?: ("left" | "center" | "right")[] | {
|
|
4674
4674
|
key: string;
|
|
@@ -4697,11 +4697,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4697
4697
|
} | undefined;
|
|
4698
4698
|
}[] | undefined;
|
|
4699
4699
|
table?: {
|
|
4700
|
-
rows: (string | number)[][];
|
|
4700
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
4701
4701
|
title?: string | undefined;
|
|
4702
4702
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4703
4703
|
} | {
|
|
4704
|
-
rows: Record<string, string | number>[];
|
|
4704
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
4705
4705
|
title?: string | undefined;
|
|
4706
4706
|
columns?: ("left" | "center" | "right")[] | {
|
|
4707
4707
|
key: string;
|
|
@@ -4889,11 +4889,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4889
4889
|
} | undefined;
|
|
4890
4890
|
}[] | undefined;
|
|
4891
4891
|
table?: {
|
|
4892
|
-
rows: (string | number)[][];
|
|
4892
|
+
rows: (string | number | boolean | null)[][];
|
|
4893
4893
|
title?: string | undefined;
|
|
4894
4894
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4895
4895
|
} | {
|
|
4896
|
-
rows: Record<string, string | number>[];
|
|
4896
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4897
4897
|
title?: string | undefined;
|
|
4898
4898
|
columns?: ("left" | "center" | "right")[] | {
|
|
4899
4899
|
key: string;
|
|
@@ -4922,11 +4922,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4922
4922
|
} | undefined;
|
|
4923
4923
|
}[] | undefined;
|
|
4924
4924
|
table?: {
|
|
4925
|
-
rows: (string | number)[][];
|
|
4925
|
+
rows: (string | number | boolean | null)[][];
|
|
4926
4926
|
title?: string | undefined;
|
|
4927
4927
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4928
4928
|
} | {
|
|
4929
|
-
rows: Record<string, string | number>[];
|
|
4929
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4930
4930
|
title?: string | undefined;
|
|
4931
4931
|
columns?: ("left" | "center" | "right")[] | {
|
|
4932
4932
|
key: string;
|
|
@@ -4956,11 +4956,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4956
4956
|
} | undefined;
|
|
4957
4957
|
}[] | undefined;
|
|
4958
4958
|
table?: {
|
|
4959
|
-
rows: (string | number)[][];
|
|
4959
|
+
rows: (string | number | boolean | null)[][];
|
|
4960
4960
|
title?: string | undefined;
|
|
4961
4961
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4962
4962
|
} | {
|
|
4963
|
-
rows: Record<string, string | number>[];
|
|
4963
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4964
4964
|
title?: string | undefined;
|
|
4965
4965
|
columns?: ("left" | "center" | "right")[] | {
|
|
4966
4966
|
key: string;
|
|
@@ -4989,11 +4989,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
4989
4989
|
} | undefined;
|
|
4990
4990
|
}[] | undefined;
|
|
4991
4991
|
table?: {
|
|
4992
|
-
rows: (string | number)[][];
|
|
4992
|
+
rows: (string | number | boolean | null)[][];
|
|
4993
4993
|
title?: string | undefined;
|
|
4994
4994
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
4995
4995
|
} | {
|
|
4996
|
-
rows: Record<string, string | number>[];
|
|
4996
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
4997
4997
|
title?: string | undefined;
|
|
4998
4998
|
columns?: ("left" | "center" | "right")[] | {
|
|
4999
4999
|
key: string;
|
|
@@ -5078,11 +5078,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
5078
5078
|
} | undefined;
|
|
5079
5079
|
}[] | undefined;
|
|
5080
5080
|
table?: {
|
|
5081
|
-
rows: (string | number)[][];
|
|
5081
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5082
5082
|
title?: string | undefined;
|
|
5083
5083
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5084
5084
|
} | {
|
|
5085
|
-
rows: Record<string, string | number>[];
|
|
5085
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5086
5086
|
title?: string | undefined;
|
|
5087
5087
|
columns?: ("left" | "center" | "right")[] | {
|
|
5088
5088
|
key: string;
|
|
@@ -5111,11 +5111,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
5111
5111
|
} | undefined;
|
|
5112
5112
|
}[] | undefined;
|
|
5113
5113
|
table?: {
|
|
5114
|
-
rows: (string | number)[][];
|
|
5114
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5115
5115
|
title?: string | undefined;
|
|
5116
5116
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5117
5117
|
} | {
|
|
5118
|
-
rows: Record<string, string | number>[];
|
|
5118
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5119
5119
|
title?: string | undefined;
|
|
5120
5120
|
columns?: ("left" | "center" | "right")[] | {
|
|
5121
5121
|
key: string;
|
|
@@ -5145,11 +5145,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
5145
5145
|
} | undefined;
|
|
5146
5146
|
}[] | undefined;
|
|
5147
5147
|
table?: {
|
|
5148
|
-
rows: (string | number)[][];
|
|
5148
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5149
5149
|
title?: string | undefined;
|
|
5150
5150
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5151
5151
|
} | {
|
|
5152
|
-
rows: Record<string, string | number>[];
|
|
5152
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5153
5153
|
title?: string | undefined;
|
|
5154
5154
|
columns?: ("left" | "center" | "right")[] | {
|
|
5155
5155
|
key: string;
|
|
@@ -5178,11 +5178,11 @@ export declare const coreConfigSchema: z.ZodObject<{
|
|
|
5178
5178
|
} | undefined;
|
|
5179
5179
|
}[] | undefined;
|
|
5180
5180
|
table?: {
|
|
5181
|
-
rows: (string | number)[][];
|
|
5181
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5182
5182
|
title?: string | undefined;
|
|
5183
5183
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5184
5184
|
} | {
|
|
5185
|
-
rows: Record<string, string | number>[];
|
|
5185
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5186
5186
|
title?: string | undefined;
|
|
5187
5187
|
columns?: ("left" | "center" | "right")[] | {
|
|
5188
5188
|
key: string;
|
|
@@ -5333,13 +5333,13 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5333
5333
|
title: z.ZodOptional<z.ZodString>;
|
|
5334
5334
|
}, {
|
|
5335
5335
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
5336
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
5336
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
5337
5337
|
}>, "strip", z.ZodTypeAny, {
|
|
5338
|
-
rows: (string | number)[][];
|
|
5338
|
+
rows: (string | number | boolean | null)[][];
|
|
5339
5339
|
title?: string | undefined;
|
|
5340
5340
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5341
5341
|
}, {
|
|
5342
|
-
rows: (string | number)[][];
|
|
5342
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5343
5343
|
title?: string | undefined;
|
|
5344
5344
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5345
5345
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -5358,9 +5358,9 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5358
5358
|
label?: string | undefined;
|
|
5359
5359
|
align?: "left" | "center" | "right" | undefined;
|
|
5360
5360
|
}>, "many">]>>;
|
|
5361
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
5361
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
5362
5362
|
}>, "strip", z.ZodTypeAny, {
|
|
5363
|
-
rows: Record<string, string | number>[];
|
|
5363
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5364
5364
|
title?: string | undefined;
|
|
5365
5365
|
columns?: ("left" | "center" | "right")[] | {
|
|
5366
5366
|
key: string;
|
|
@@ -5368,7 +5368,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5368
5368
|
align?: "left" | "center" | "right" | undefined;
|
|
5369
5369
|
}[] | undefined;
|
|
5370
5370
|
}, {
|
|
5371
|
-
rows: Record<string, string | number>[];
|
|
5371
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5372
5372
|
title?: string | undefined;
|
|
5373
5373
|
columns?: ("left" | "center" | "right")[] | {
|
|
5374
5374
|
key: string;
|
|
@@ -5391,11 +5391,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5391
5391
|
} | undefined;
|
|
5392
5392
|
}[] | undefined;
|
|
5393
5393
|
table?: {
|
|
5394
|
-
rows: (string | number)[][];
|
|
5394
|
+
rows: (string | number | boolean | null)[][];
|
|
5395
5395
|
title?: string | undefined;
|
|
5396
5396
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5397
5397
|
} | {
|
|
5398
|
-
rows: Record<string, string | number>[];
|
|
5398
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5399
5399
|
title?: string | undefined;
|
|
5400
5400
|
columns?: ("left" | "center" | "right")[] | {
|
|
5401
5401
|
key: string;
|
|
@@ -5418,11 +5418,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5418
5418
|
} | undefined;
|
|
5419
5419
|
}[] | undefined;
|
|
5420
5420
|
table?: {
|
|
5421
|
-
rows: (string | number)[][];
|
|
5421
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5422
5422
|
title?: string | undefined;
|
|
5423
5423
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5424
5424
|
} | {
|
|
5425
|
-
rows: Record<string, string | number>[];
|
|
5425
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5426
5426
|
title?: string | undefined;
|
|
5427
5427
|
columns?: ("left" | "center" | "right")[] | {
|
|
5428
5428
|
key: string;
|
|
@@ -5451,11 +5451,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5451
5451
|
} | undefined;
|
|
5452
5452
|
}[] | undefined;
|
|
5453
5453
|
table?: {
|
|
5454
|
-
rows: (string | number)[][];
|
|
5454
|
+
rows: (string | number | boolean | null)[][];
|
|
5455
5455
|
title?: string | undefined;
|
|
5456
5456
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5457
5457
|
} | {
|
|
5458
|
-
rows: Record<string, string | number>[];
|
|
5458
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5459
5459
|
title?: string | undefined;
|
|
5460
5460
|
columns?: ("left" | "center" | "right")[] | {
|
|
5461
5461
|
key: string;
|
|
@@ -5484,11 +5484,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5484
5484
|
} | undefined;
|
|
5485
5485
|
}[] | undefined;
|
|
5486
5486
|
table?: {
|
|
5487
|
-
rows: (string | number)[][];
|
|
5487
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5488
5488
|
title?: string | undefined;
|
|
5489
5489
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5490
5490
|
} | {
|
|
5491
|
-
rows: Record<string, string | number>[];
|
|
5491
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5492
5492
|
title?: string | undefined;
|
|
5493
5493
|
columns?: ("left" | "center" | "right")[] | {
|
|
5494
5494
|
key: string;
|
|
@@ -5517,11 +5517,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5517
5517
|
} | undefined;
|
|
5518
5518
|
}[] | undefined;
|
|
5519
5519
|
table?: {
|
|
5520
|
-
rows: (string | number)[][];
|
|
5520
|
+
rows: (string | number | boolean | null)[][];
|
|
5521
5521
|
title?: string | undefined;
|
|
5522
5522
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5523
5523
|
} | {
|
|
5524
|
-
rows: Record<string, string | number>[];
|
|
5524
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5525
5525
|
title?: string | undefined;
|
|
5526
5526
|
columns?: ("left" | "center" | "right")[] | {
|
|
5527
5527
|
key: string;
|
|
@@ -5550,11 +5550,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5550
5550
|
} | undefined;
|
|
5551
5551
|
}[] | undefined;
|
|
5552
5552
|
table?: {
|
|
5553
|
-
rows: (string | number)[][];
|
|
5553
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5554
5554
|
title?: string | undefined;
|
|
5555
5555
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5556
5556
|
} | {
|
|
5557
|
-
rows: Record<string, string | number>[];
|
|
5557
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5558
5558
|
title?: string | undefined;
|
|
5559
5559
|
columns?: ("left" | "center" | "right")[] | {
|
|
5560
5560
|
key: string;
|
|
@@ -5636,13 +5636,13 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5636
5636
|
title: z.ZodOptional<z.ZodString>;
|
|
5637
5637
|
}, {
|
|
5638
5638
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
5639
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
5639
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
5640
5640
|
}>, "strip", z.ZodTypeAny, {
|
|
5641
|
-
rows: (string | number)[][];
|
|
5641
|
+
rows: (string | number | boolean | null)[][];
|
|
5642
5642
|
title?: string | undefined;
|
|
5643
5643
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5644
5644
|
}, {
|
|
5645
|
-
rows: (string | number)[][];
|
|
5645
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5646
5646
|
title?: string | undefined;
|
|
5647
5647
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5648
5648
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -5661,9 +5661,9 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5661
5661
|
label?: string | undefined;
|
|
5662
5662
|
align?: "left" | "center" | "right" | undefined;
|
|
5663
5663
|
}>, "many">]>>;
|
|
5664
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
5664
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
5665
5665
|
}>, "strip", z.ZodTypeAny, {
|
|
5666
|
-
rows: Record<string, string | number>[];
|
|
5666
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5667
5667
|
title?: string | undefined;
|
|
5668
5668
|
columns?: ("left" | "center" | "right")[] | {
|
|
5669
5669
|
key: string;
|
|
@@ -5671,7 +5671,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5671
5671
|
align?: "left" | "center" | "right" | undefined;
|
|
5672
5672
|
}[] | undefined;
|
|
5673
5673
|
}, {
|
|
5674
|
-
rows: Record<string, string | number>[];
|
|
5674
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5675
5675
|
title?: string | undefined;
|
|
5676
5676
|
columns?: ("left" | "center" | "right")[] | {
|
|
5677
5677
|
key: string;
|
|
@@ -5694,11 +5694,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5694
5694
|
} | undefined;
|
|
5695
5695
|
}[] | undefined;
|
|
5696
5696
|
table?: {
|
|
5697
|
-
rows: (string | number)[][];
|
|
5697
|
+
rows: (string | number | boolean | null)[][];
|
|
5698
5698
|
title?: string | undefined;
|
|
5699
5699
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5700
5700
|
} | {
|
|
5701
|
-
rows: Record<string, string | number>[];
|
|
5701
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5702
5702
|
title?: string | undefined;
|
|
5703
5703
|
columns?: ("left" | "center" | "right")[] | {
|
|
5704
5704
|
key: string;
|
|
@@ -5721,11 +5721,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5721
5721
|
} | undefined;
|
|
5722
5722
|
}[] | undefined;
|
|
5723
5723
|
table?: {
|
|
5724
|
-
rows: (string | number)[][];
|
|
5724
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5725
5725
|
title?: string | undefined;
|
|
5726
5726
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5727
5727
|
} | {
|
|
5728
|
-
rows: Record<string, string | number>[];
|
|
5728
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5729
5729
|
title?: string | undefined;
|
|
5730
5730
|
columns?: ("left" | "center" | "right")[] | {
|
|
5731
5731
|
key: string;
|
|
@@ -5754,11 +5754,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5754
5754
|
} | undefined;
|
|
5755
5755
|
}[] | undefined;
|
|
5756
5756
|
table?: {
|
|
5757
|
-
rows: (string | number)[][];
|
|
5757
|
+
rows: (string | number | boolean | null)[][];
|
|
5758
5758
|
title?: string | undefined;
|
|
5759
5759
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5760
5760
|
} | {
|
|
5761
|
-
rows: Record<string, string | number>[];
|
|
5761
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5762
5762
|
title?: string | undefined;
|
|
5763
5763
|
columns?: ("left" | "center" | "right")[] | {
|
|
5764
5764
|
key: string;
|
|
@@ -5787,11 +5787,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5787
5787
|
} | undefined;
|
|
5788
5788
|
}[] | undefined;
|
|
5789
5789
|
table?: {
|
|
5790
|
-
rows: (string | number)[][];
|
|
5790
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5791
5791
|
title?: string | undefined;
|
|
5792
5792
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5793
5793
|
} | {
|
|
5794
|
-
rows: Record<string, string | number>[];
|
|
5794
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5795
5795
|
title?: string | undefined;
|
|
5796
5796
|
columns?: ("left" | "center" | "right")[] | {
|
|
5797
5797
|
key: string;
|
|
@@ -5820,11 +5820,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5820
5820
|
} | undefined;
|
|
5821
5821
|
}[] | undefined;
|
|
5822
5822
|
table?: {
|
|
5823
|
-
rows: (string | number)[][];
|
|
5823
|
+
rows: (string | number | boolean | null)[][];
|
|
5824
5824
|
title?: string | undefined;
|
|
5825
5825
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5826
5826
|
} | {
|
|
5827
|
-
rows: Record<string, string | number>[];
|
|
5827
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5828
5828
|
title?: string | undefined;
|
|
5829
5829
|
columns?: ("left" | "center" | "right")[] | {
|
|
5830
5830
|
key: string;
|
|
@@ -5853,11 +5853,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5853
5853
|
} | undefined;
|
|
5854
5854
|
}[] | undefined;
|
|
5855
5855
|
table?: {
|
|
5856
|
-
rows: (string | number)[][];
|
|
5856
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5857
5857
|
title?: string | undefined;
|
|
5858
5858
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5859
5859
|
} | {
|
|
5860
|
-
rows: Record<string, string | number>[];
|
|
5860
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5861
5861
|
title?: string | undefined;
|
|
5862
5862
|
columns?: ("left" | "center" | "right")[] | {
|
|
5863
5863
|
key: string;
|
|
@@ -5891,11 +5891,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5891
5891
|
} | undefined;
|
|
5892
5892
|
}[] | undefined;
|
|
5893
5893
|
table?: {
|
|
5894
|
-
rows: (string | number)[][];
|
|
5894
|
+
rows: (string | number | boolean | null)[][];
|
|
5895
5895
|
title?: string | undefined;
|
|
5896
5896
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5897
5897
|
} | {
|
|
5898
|
-
rows: Record<string, string | number>[];
|
|
5898
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5899
5899
|
title?: string | undefined;
|
|
5900
5900
|
columns?: ("left" | "center" | "right")[] | {
|
|
5901
5901
|
key: string;
|
|
@@ -5924,11 +5924,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5924
5924
|
} | undefined;
|
|
5925
5925
|
}[] | undefined;
|
|
5926
5926
|
table?: {
|
|
5927
|
-
rows: (string | number)[][];
|
|
5927
|
+
rows: (string | number | boolean | null)[][];
|
|
5928
5928
|
title?: string | undefined;
|
|
5929
5929
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5930
5930
|
} | {
|
|
5931
|
-
rows: Record<string, string | number>[];
|
|
5931
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
5932
5932
|
title?: string | undefined;
|
|
5933
5933
|
columns?: ("left" | "center" | "right")[] | {
|
|
5934
5934
|
key: string;
|
|
@@ -5962,11 +5962,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5962
5962
|
} | undefined;
|
|
5963
5963
|
}[] | undefined;
|
|
5964
5964
|
table?: {
|
|
5965
|
-
rows: (string | number)[][];
|
|
5965
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5966
5966
|
title?: string | undefined;
|
|
5967
5967
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
5968
5968
|
} | {
|
|
5969
|
-
rows: Record<string, string | number>[];
|
|
5969
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
5970
5970
|
title?: string | undefined;
|
|
5971
5971
|
columns?: ("left" | "center" | "right")[] | {
|
|
5972
5972
|
key: string;
|
|
@@ -5995,11 +5995,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5995
5995
|
} | undefined;
|
|
5996
5996
|
}[] | undefined;
|
|
5997
5997
|
table?: {
|
|
5998
|
-
rows: (string | number)[][];
|
|
5998
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
5999
5999
|
title?: string | undefined;
|
|
6000
6000
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6001
6001
|
} | {
|
|
6002
|
-
rows: Record<string, string | number>[];
|
|
6002
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6003
6003
|
title?: string | undefined;
|
|
6004
6004
|
columns?: ("left" | "center" | "right")[] | {
|
|
6005
6005
|
key: string;
|
|
@@ -6082,13 +6082,13 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6082
6082
|
title: z.ZodOptional<z.ZodString>;
|
|
6083
6083
|
}, {
|
|
6084
6084
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
6085
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
6085
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
6086
6086
|
}>, "strip", z.ZodTypeAny, {
|
|
6087
|
-
rows: (string | number)[][];
|
|
6087
|
+
rows: (string | number | boolean | null)[][];
|
|
6088
6088
|
title?: string | undefined;
|
|
6089
6089
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6090
6090
|
}, {
|
|
6091
|
-
rows: (string | number)[][];
|
|
6091
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6092
6092
|
title?: string | undefined;
|
|
6093
6093
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6094
6094
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -6107,9 +6107,9 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6107
6107
|
label?: string | undefined;
|
|
6108
6108
|
align?: "left" | "center" | "right" | undefined;
|
|
6109
6109
|
}>, "many">]>>;
|
|
6110
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
6110
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
6111
6111
|
}>, "strip", z.ZodTypeAny, {
|
|
6112
|
-
rows: Record<string, string | number>[];
|
|
6112
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6113
6113
|
title?: string | undefined;
|
|
6114
6114
|
columns?: ("left" | "center" | "right")[] | {
|
|
6115
6115
|
key: string;
|
|
@@ -6117,7 +6117,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6117
6117
|
align?: "left" | "center" | "right" | undefined;
|
|
6118
6118
|
}[] | undefined;
|
|
6119
6119
|
}, {
|
|
6120
|
-
rows: Record<string, string | number>[];
|
|
6120
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6121
6121
|
title?: string | undefined;
|
|
6122
6122
|
columns?: ("left" | "center" | "right")[] | {
|
|
6123
6123
|
key: string;
|
|
@@ -6140,11 +6140,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6140
6140
|
} | undefined;
|
|
6141
6141
|
}[] | undefined;
|
|
6142
6142
|
table?: {
|
|
6143
|
-
rows: (string | number)[][];
|
|
6143
|
+
rows: (string | number | boolean | null)[][];
|
|
6144
6144
|
title?: string | undefined;
|
|
6145
6145
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6146
6146
|
} | {
|
|
6147
|
-
rows: Record<string, string | number>[];
|
|
6147
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6148
6148
|
title?: string | undefined;
|
|
6149
6149
|
columns?: ("left" | "center" | "right")[] | {
|
|
6150
6150
|
key: string;
|
|
@@ -6167,11 +6167,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6167
6167
|
} | undefined;
|
|
6168
6168
|
}[] | undefined;
|
|
6169
6169
|
table?: {
|
|
6170
|
-
rows: (string | number)[][];
|
|
6170
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6171
6171
|
title?: string | undefined;
|
|
6172
6172
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6173
6173
|
} | {
|
|
6174
|
-
rows: Record<string, string | number>[];
|
|
6174
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6175
6175
|
title?: string | undefined;
|
|
6176
6176
|
columns?: ("left" | "center" | "right")[] | {
|
|
6177
6177
|
key: string;
|
|
@@ -6200,11 +6200,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6200
6200
|
} | undefined;
|
|
6201
6201
|
}[] | undefined;
|
|
6202
6202
|
table?: {
|
|
6203
|
-
rows: (string | number)[][];
|
|
6203
|
+
rows: (string | number | boolean | null)[][];
|
|
6204
6204
|
title?: string | undefined;
|
|
6205
6205
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6206
6206
|
} | {
|
|
6207
|
-
rows: Record<string, string | number>[];
|
|
6207
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6208
6208
|
title?: string | undefined;
|
|
6209
6209
|
columns?: ("left" | "center" | "right")[] | {
|
|
6210
6210
|
key: string;
|
|
@@ -6233,11 +6233,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6233
6233
|
} | undefined;
|
|
6234
6234
|
}[] | undefined;
|
|
6235
6235
|
table?: {
|
|
6236
|
-
rows: (string | number)[][];
|
|
6236
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6237
6237
|
title?: string | undefined;
|
|
6238
6238
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6239
6239
|
} | {
|
|
6240
|
-
rows: Record<string, string | number>[];
|
|
6240
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6241
6241
|
title?: string | undefined;
|
|
6242
6242
|
columns?: ("left" | "center" | "right")[] | {
|
|
6243
6243
|
key: string;
|
|
@@ -6266,11 +6266,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6266
6266
|
} | undefined;
|
|
6267
6267
|
}[] | undefined;
|
|
6268
6268
|
table?: {
|
|
6269
|
-
rows: (string | number)[][];
|
|
6269
|
+
rows: (string | number | boolean | null)[][];
|
|
6270
6270
|
title?: string | undefined;
|
|
6271
6271
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6272
6272
|
} | {
|
|
6273
|
-
rows: Record<string, string | number>[];
|
|
6273
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6274
6274
|
title?: string | undefined;
|
|
6275
6275
|
columns?: ("left" | "center" | "right")[] | {
|
|
6276
6276
|
key: string;
|
|
@@ -6299,11 +6299,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6299
6299
|
} | undefined;
|
|
6300
6300
|
}[] | undefined;
|
|
6301
6301
|
table?: {
|
|
6302
|
-
rows: (string | number)[][];
|
|
6302
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6303
6303
|
title?: string | undefined;
|
|
6304
6304
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6305
6305
|
} | {
|
|
6306
|
-
rows: Record<string, string | number>[];
|
|
6306
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6307
6307
|
title?: string | undefined;
|
|
6308
6308
|
columns?: ("left" | "center" | "right")[] | {
|
|
6309
6309
|
key: string;
|
|
@@ -6385,13 +6385,13 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6385
6385
|
title: z.ZodOptional<z.ZodString>;
|
|
6386
6386
|
}, {
|
|
6387
6387
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
6388
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
6388
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
6389
6389
|
}>, "strip", z.ZodTypeAny, {
|
|
6390
|
-
rows: (string | number)[][];
|
|
6390
|
+
rows: (string | number | boolean | null)[][];
|
|
6391
6391
|
title?: string | undefined;
|
|
6392
6392
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6393
6393
|
}, {
|
|
6394
|
-
rows: (string | number)[][];
|
|
6394
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6395
6395
|
title?: string | undefined;
|
|
6396
6396
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6397
6397
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -6410,9 +6410,9 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6410
6410
|
label?: string | undefined;
|
|
6411
6411
|
align?: "left" | "center" | "right" | undefined;
|
|
6412
6412
|
}>, "many">]>>;
|
|
6413
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
6413
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
6414
6414
|
}>, "strip", z.ZodTypeAny, {
|
|
6415
|
-
rows: Record<string, string | number>[];
|
|
6415
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6416
6416
|
title?: string | undefined;
|
|
6417
6417
|
columns?: ("left" | "center" | "right")[] | {
|
|
6418
6418
|
key: string;
|
|
@@ -6420,7 +6420,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6420
6420
|
align?: "left" | "center" | "right" | undefined;
|
|
6421
6421
|
}[] | undefined;
|
|
6422
6422
|
}, {
|
|
6423
|
-
rows: Record<string, string | number>[];
|
|
6423
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6424
6424
|
title?: string | undefined;
|
|
6425
6425
|
columns?: ("left" | "center" | "right")[] | {
|
|
6426
6426
|
key: string;
|
|
@@ -6443,11 +6443,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6443
6443
|
} | undefined;
|
|
6444
6444
|
}[] | undefined;
|
|
6445
6445
|
table?: {
|
|
6446
|
-
rows: (string | number)[][];
|
|
6446
|
+
rows: (string | number | boolean | null)[][];
|
|
6447
6447
|
title?: string | undefined;
|
|
6448
6448
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6449
6449
|
} | {
|
|
6450
|
-
rows: Record<string, string | number>[];
|
|
6450
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6451
6451
|
title?: string | undefined;
|
|
6452
6452
|
columns?: ("left" | "center" | "right")[] | {
|
|
6453
6453
|
key: string;
|
|
@@ -6470,11 +6470,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6470
6470
|
} | undefined;
|
|
6471
6471
|
}[] | undefined;
|
|
6472
6472
|
table?: {
|
|
6473
|
-
rows: (string | number)[][];
|
|
6473
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6474
6474
|
title?: string | undefined;
|
|
6475
6475
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6476
6476
|
} | {
|
|
6477
|
-
rows: Record<string, string | number>[];
|
|
6477
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6478
6478
|
title?: string | undefined;
|
|
6479
6479
|
columns?: ("left" | "center" | "right")[] | {
|
|
6480
6480
|
key: string;
|
|
@@ -6503,11 +6503,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6503
6503
|
} | undefined;
|
|
6504
6504
|
}[] | undefined;
|
|
6505
6505
|
table?: {
|
|
6506
|
-
rows: (string | number)[][];
|
|
6506
|
+
rows: (string | number | boolean | null)[][];
|
|
6507
6507
|
title?: string | undefined;
|
|
6508
6508
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6509
6509
|
} | {
|
|
6510
|
-
rows: Record<string, string | number>[];
|
|
6510
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6511
6511
|
title?: string | undefined;
|
|
6512
6512
|
columns?: ("left" | "center" | "right")[] | {
|
|
6513
6513
|
key: string;
|
|
@@ -6536,11 +6536,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6536
6536
|
} | undefined;
|
|
6537
6537
|
}[] | undefined;
|
|
6538
6538
|
table?: {
|
|
6539
|
-
rows: (string | number)[][];
|
|
6539
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6540
6540
|
title?: string | undefined;
|
|
6541
6541
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6542
6542
|
} | {
|
|
6543
|
-
rows: Record<string, string | number>[];
|
|
6543
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6544
6544
|
title?: string | undefined;
|
|
6545
6545
|
columns?: ("left" | "center" | "right")[] | {
|
|
6546
6546
|
key: string;
|
|
@@ -6569,11 +6569,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6569
6569
|
} | undefined;
|
|
6570
6570
|
}[] | undefined;
|
|
6571
6571
|
table?: {
|
|
6572
|
-
rows: (string | number)[][];
|
|
6572
|
+
rows: (string | number | boolean | null)[][];
|
|
6573
6573
|
title?: string | undefined;
|
|
6574
6574
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6575
6575
|
} | {
|
|
6576
|
-
rows: Record<string, string | number>[];
|
|
6576
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6577
6577
|
title?: string | undefined;
|
|
6578
6578
|
columns?: ("left" | "center" | "right")[] | {
|
|
6579
6579
|
key: string;
|
|
@@ -6602,11 +6602,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6602
6602
|
} | undefined;
|
|
6603
6603
|
}[] | undefined;
|
|
6604
6604
|
table?: {
|
|
6605
|
-
rows: (string | number)[][];
|
|
6605
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6606
6606
|
title?: string | undefined;
|
|
6607
6607
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6608
6608
|
} | {
|
|
6609
|
-
rows: Record<string, string | number>[];
|
|
6609
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6610
6610
|
title?: string | undefined;
|
|
6611
6611
|
columns?: ("left" | "center" | "right")[] | {
|
|
6612
6612
|
key: string;
|
|
@@ -6736,11 +6736,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6736
6736
|
} | undefined;
|
|
6737
6737
|
}[] | undefined;
|
|
6738
6738
|
table?: {
|
|
6739
|
-
rows: (string | number)[][];
|
|
6739
|
+
rows: (string | number | boolean | null)[][];
|
|
6740
6740
|
title?: string | undefined;
|
|
6741
6741
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6742
6742
|
} | {
|
|
6743
|
-
rows: Record<string, string | number>[];
|
|
6743
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6744
6744
|
title?: string | undefined;
|
|
6745
6745
|
columns?: ("left" | "center" | "right")[] | {
|
|
6746
6746
|
key: string;
|
|
@@ -6769,11 +6769,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6769
6769
|
} | undefined;
|
|
6770
6770
|
}[] | undefined;
|
|
6771
6771
|
table?: {
|
|
6772
|
-
rows: (string | number)[][];
|
|
6772
|
+
rows: (string | number | boolean | null)[][];
|
|
6773
6773
|
title?: string | undefined;
|
|
6774
6774
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6775
6775
|
} | {
|
|
6776
|
-
rows: Record<string, string | number>[];
|
|
6776
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6777
6777
|
title?: string | undefined;
|
|
6778
6778
|
columns?: ("left" | "center" | "right")[] | {
|
|
6779
6779
|
key: string;
|
|
@@ -6803,11 +6803,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6803
6803
|
} | undefined;
|
|
6804
6804
|
}[] | undefined;
|
|
6805
6805
|
table?: {
|
|
6806
|
-
rows: (string | number)[][];
|
|
6806
|
+
rows: (string | number | boolean | null)[][];
|
|
6807
6807
|
title?: string | undefined;
|
|
6808
6808
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6809
6809
|
} | {
|
|
6810
|
-
rows: Record<string, string | number>[];
|
|
6810
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6811
6811
|
title?: string | undefined;
|
|
6812
6812
|
columns?: ("left" | "center" | "right")[] | {
|
|
6813
6813
|
key: string;
|
|
@@ -6836,11 +6836,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6836
6836
|
} | undefined;
|
|
6837
6837
|
}[] | undefined;
|
|
6838
6838
|
table?: {
|
|
6839
|
-
rows: (string | number)[][];
|
|
6839
|
+
rows: (string | number | boolean | null)[][];
|
|
6840
6840
|
title?: string | undefined;
|
|
6841
6841
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6842
6842
|
} | {
|
|
6843
|
-
rows: Record<string, string | number>[];
|
|
6843
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
6844
6844
|
title?: string | undefined;
|
|
6845
6845
|
columns?: ("left" | "center" | "right")[] | {
|
|
6846
6846
|
key: string;
|
|
@@ -6898,11 +6898,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6898
6898
|
} | undefined;
|
|
6899
6899
|
}[] | undefined;
|
|
6900
6900
|
table?: {
|
|
6901
|
-
rows: (string | number)[][];
|
|
6901
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6902
6902
|
title?: string | undefined;
|
|
6903
6903
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6904
6904
|
} | {
|
|
6905
|
-
rows: Record<string, string | number>[];
|
|
6905
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6906
6906
|
title?: string | undefined;
|
|
6907
6907
|
columns?: ("left" | "center" | "right")[] | {
|
|
6908
6908
|
key: string;
|
|
@@ -6931,11 +6931,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6931
6931
|
} | undefined;
|
|
6932
6932
|
}[] | undefined;
|
|
6933
6933
|
table?: {
|
|
6934
|
-
rows: (string | number)[][];
|
|
6934
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6935
6935
|
title?: string | undefined;
|
|
6936
6936
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6937
6937
|
} | {
|
|
6938
|
-
rows: Record<string, string | number>[];
|
|
6938
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6939
6939
|
title?: string | undefined;
|
|
6940
6940
|
columns?: ("left" | "center" | "right")[] | {
|
|
6941
6941
|
key: string;
|
|
@@ -6965,11 +6965,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6965
6965
|
} | undefined;
|
|
6966
6966
|
}[] | undefined;
|
|
6967
6967
|
table?: {
|
|
6968
|
-
rows: (string | number)[][];
|
|
6968
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
6969
6969
|
title?: string | undefined;
|
|
6970
6970
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
6971
6971
|
} | {
|
|
6972
|
-
rows: Record<string, string | number>[];
|
|
6972
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
6973
6973
|
title?: string | undefined;
|
|
6974
6974
|
columns?: ("left" | "center" | "right")[] | {
|
|
6975
6975
|
key: string;
|
|
@@ -6998,11 +6998,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6998
6998
|
} | undefined;
|
|
6999
6999
|
}[] | undefined;
|
|
7000
7000
|
table?: {
|
|
7001
|
-
rows: (string | number)[][];
|
|
7001
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7002
7002
|
title?: string | undefined;
|
|
7003
7003
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7004
7004
|
} | {
|
|
7005
|
-
rows: Record<string, string | number>[];
|
|
7005
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7006
7006
|
title?: string | undefined;
|
|
7007
7007
|
columns?: ("left" | "center" | "right")[] | {
|
|
7008
7008
|
key: string;
|
|
@@ -7060,11 +7060,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7060
7060
|
} | undefined;
|
|
7061
7061
|
}[] | undefined;
|
|
7062
7062
|
table?: {
|
|
7063
|
-
rows: (string | number)[][];
|
|
7063
|
+
rows: (string | number | boolean | null)[][];
|
|
7064
7064
|
title?: string | undefined;
|
|
7065
7065
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7066
7066
|
} | {
|
|
7067
|
-
rows: Record<string, string | number>[];
|
|
7067
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
7068
7068
|
title?: string | undefined;
|
|
7069
7069
|
columns?: ("left" | "center" | "right")[] | {
|
|
7070
7070
|
key: string;
|
|
@@ -7093,11 +7093,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7093
7093
|
} | undefined;
|
|
7094
7094
|
}[] | undefined;
|
|
7095
7095
|
table?: {
|
|
7096
|
-
rows: (string | number)[][];
|
|
7096
|
+
rows: (string | number | boolean | null)[][];
|
|
7097
7097
|
title?: string | undefined;
|
|
7098
7098
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7099
7099
|
} | {
|
|
7100
|
-
rows: Record<string, string | number>[];
|
|
7100
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
7101
7101
|
title?: string | undefined;
|
|
7102
7102
|
columns?: ("left" | "center" | "right")[] | {
|
|
7103
7103
|
key: string;
|
|
@@ -7127,11 +7127,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7127
7127
|
} | undefined;
|
|
7128
7128
|
}[] | undefined;
|
|
7129
7129
|
table?: {
|
|
7130
|
-
rows: (string | number)[][];
|
|
7130
|
+
rows: (string | number | boolean | null)[][];
|
|
7131
7131
|
title?: string | undefined;
|
|
7132
7132
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7133
7133
|
} | {
|
|
7134
|
-
rows: Record<string, string | number>[];
|
|
7134
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
7135
7135
|
title?: string | undefined;
|
|
7136
7136
|
columns?: ("left" | "center" | "right")[] | {
|
|
7137
7137
|
key: string;
|
|
@@ -7160,11 +7160,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7160
7160
|
} | undefined;
|
|
7161
7161
|
}[] | undefined;
|
|
7162
7162
|
table?: {
|
|
7163
|
-
rows: (string | number)[][];
|
|
7163
|
+
rows: (string | number | boolean | null)[][];
|
|
7164
7164
|
title?: string | undefined;
|
|
7165
7165
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7166
7166
|
} | {
|
|
7167
|
-
rows: Record<string, string | number>[];
|
|
7167
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
7168
7168
|
title?: string | undefined;
|
|
7169
7169
|
columns?: ("left" | "center" | "right")[] | {
|
|
7170
7170
|
key: string;
|
|
@@ -7222,11 +7222,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7222
7222
|
} | undefined;
|
|
7223
7223
|
}[] | undefined;
|
|
7224
7224
|
table?: {
|
|
7225
|
-
rows: (string | number)[][];
|
|
7225
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7226
7226
|
title?: string | undefined;
|
|
7227
7227
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7228
7228
|
} | {
|
|
7229
|
-
rows: Record<string, string | number>[];
|
|
7229
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7230
7230
|
title?: string | undefined;
|
|
7231
7231
|
columns?: ("left" | "center" | "right")[] | {
|
|
7232
7232
|
key: string;
|
|
@@ -7255,11 +7255,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7255
7255
|
} | undefined;
|
|
7256
7256
|
}[] | undefined;
|
|
7257
7257
|
table?: {
|
|
7258
|
-
rows: (string | number)[][];
|
|
7258
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7259
7259
|
title?: string | undefined;
|
|
7260
7260
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7261
7261
|
} | {
|
|
7262
|
-
rows: Record<string, string | number>[];
|
|
7262
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7263
7263
|
title?: string | undefined;
|
|
7264
7264
|
columns?: ("left" | "center" | "right")[] | {
|
|
7265
7265
|
key: string;
|
|
@@ -7289,11 +7289,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7289
7289
|
} | undefined;
|
|
7290
7290
|
}[] | undefined;
|
|
7291
7291
|
table?: {
|
|
7292
|
-
rows: (string | number)[][];
|
|
7292
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7293
7293
|
title?: string | undefined;
|
|
7294
7294
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7295
7295
|
} | {
|
|
7296
|
-
rows: Record<string, string | number>[];
|
|
7296
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7297
7297
|
title?: string | undefined;
|
|
7298
7298
|
columns?: ("left" | "center" | "right")[] | {
|
|
7299
7299
|
key: string;
|
|
@@ -7322,11 +7322,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7322
7322
|
} | undefined;
|
|
7323
7323
|
}[] | undefined;
|
|
7324
7324
|
table?: {
|
|
7325
|
-
rows: (string | number)[][];
|
|
7325
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7326
7326
|
title?: string | undefined;
|
|
7327
7327
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7328
7328
|
} | {
|
|
7329
|
-
rows: Record<string, string | number>[];
|
|
7329
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7330
7330
|
title?: string | undefined;
|
|
7331
7331
|
columns?: ("left" | "center" | "right")[] | {
|
|
7332
7332
|
key: string;
|
|
@@ -7514,11 +7514,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7514
7514
|
} | undefined;
|
|
7515
7515
|
}[] | undefined;
|
|
7516
7516
|
table?: {
|
|
7517
|
-
rows: (string | number)[][];
|
|
7517
|
+
rows: (string | number | boolean | null)[][];
|
|
7518
7518
|
title?: string | undefined;
|
|
7519
7519
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7520
7520
|
} | {
|
|
7521
|
-
rows: Record<string, string | number>[];
|
|
7521
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
7522
7522
|
title?: string | undefined;
|
|
7523
7523
|
columns?: ("left" | "center" | "right")[] | {
|
|
7524
7524
|
key: string;
|
|
@@ -7547,11 +7547,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7547
7547
|
} | undefined;
|
|
7548
7548
|
}[] | undefined;
|
|
7549
7549
|
table?: {
|
|
7550
|
-
rows: (string | number)[][];
|
|
7550
|
+
rows: (string | number | boolean | null)[][];
|
|
7551
7551
|
title?: string | undefined;
|
|
7552
7552
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7553
7553
|
} | {
|
|
7554
|
-
rows: Record<string, string | number>[];
|
|
7554
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
7555
7555
|
title?: string | undefined;
|
|
7556
7556
|
columns?: ("left" | "center" | "right")[] | {
|
|
7557
7557
|
key: string;
|
|
@@ -7581,11 +7581,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7581
7581
|
} | undefined;
|
|
7582
7582
|
}[] | undefined;
|
|
7583
7583
|
table?: {
|
|
7584
|
-
rows: (string | number)[][];
|
|
7584
|
+
rows: (string | number | boolean | null)[][];
|
|
7585
7585
|
title?: string | undefined;
|
|
7586
7586
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7587
7587
|
} | {
|
|
7588
|
-
rows: Record<string, string | number>[];
|
|
7588
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
7589
7589
|
title?: string | undefined;
|
|
7590
7590
|
columns?: ("left" | "center" | "right")[] | {
|
|
7591
7591
|
key: string;
|
|
@@ -7614,11 +7614,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7614
7614
|
} | undefined;
|
|
7615
7615
|
}[] | undefined;
|
|
7616
7616
|
table?: {
|
|
7617
|
-
rows: (string | number)[][];
|
|
7617
|
+
rows: (string | number | boolean | null)[][];
|
|
7618
7618
|
title?: string | undefined;
|
|
7619
7619
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7620
7620
|
} | {
|
|
7621
|
-
rows: Record<string, string | number>[];
|
|
7621
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
7622
7622
|
title?: string | undefined;
|
|
7623
7623
|
columns?: ("left" | "center" | "right")[] | {
|
|
7624
7624
|
key: string;
|
|
@@ -7703,11 +7703,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7703
7703
|
} | undefined;
|
|
7704
7704
|
}[] | undefined;
|
|
7705
7705
|
table?: {
|
|
7706
|
-
rows: (string | number)[][];
|
|
7706
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7707
7707
|
title?: string | undefined;
|
|
7708
7708
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7709
7709
|
} | {
|
|
7710
|
-
rows: Record<string, string | number>[];
|
|
7710
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7711
7711
|
title?: string | undefined;
|
|
7712
7712
|
columns?: ("left" | "center" | "right")[] | {
|
|
7713
7713
|
key: string;
|
|
@@ -7736,11 +7736,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7736
7736
|
} | undefined;
|
|
7737
7737
|
}[] | undefined;
|
|
7738
7738
|
table?: {
|
|
7739
|
-
rows: (string | number)[][];
|
|
7739
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7740
7740
|
title?: string | undefined;
|
|
7741
7741
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7742
7742
|
} | {
|
|
7743
|
-
rows: Record<string, string | number>[];
|
|
7743
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7744
7744
|
title?: string | undefined;
|
|
7745
7745
|
columns?: ("left" | "center" | "right")[] | {
|
|
7746
7746
|
key: string;
|
|
@@ -7770,11 +7770,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7770
7770
|
} | undefined;
|
|
7771
7771
|
}[] | undefined;
|
|
7772
7772
|
table?: {
|
|
7773
|
-
rows: (string | number)[][];
|
|
7773
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7774
7774
|
title?: string | undefined;
|
|
7775
7775
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7776
7776
|
} | {
|
|
7777
|
-
rows: Record<string, string | number>[];
|
|
7777
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7778
7778
|
title?: string | undefined;
|
|
7779
7779
|
columns?: ("left" | "center" | "right")[] | {
|
|
7780
7780
|
key: string;
|
|
@@ -7803,11 +7803,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7803
7803
|
} | undefined;
|
|
7804
7804
|
}[] | undefined;
|
|
7805
7805
|
table?: {
|
|
7806
|
-
rows: (string | number)[][];
|
|
7806
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
7807
7807
|
title?: string | undefined;
|
|
7808
7808
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
7809
7809
|
} | {
|
|
7810
|
-
rows: Record<string, string | number>[];
|
|
7810
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
7811
7811
|
title?: string | undefined;
|
|
7812
7812
|
columns?: ("left" | "center" | "right")[] | {
|
|
7813
7813
|
key: string;
|