@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
|
@@ -72,13 +72,13 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
72
72
|
title: z.ZodOptional<z.ZodString>;
|
|
73
73
|
}, {
|
|
74
74
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
75
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
75
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
76
76
|
}>, "strip", z.ZodTypeAny, {
|
|
77
|
-
rows: (string | number)[][];
|
|
77
|
+
rows: (string | number | boolean | null)[][];
|
|
78
78
|
title?: string | undefined;
|
|
79
79
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
80
80
|
}, {
|
|
81
|
-
rows: (string | number)[][];
|
|
81
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
82
82
|
title?: string | undefined;
|
|
83
83
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
84
84
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -97,9 +97,9 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
97
97
|
label?: string | undefined;
|
|
98
98
|
align?: "left" | "center" | "right" | undefined;
|
|
99
99
|
}>, "many">]>>;
|
|
100
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
100
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
101
101
|
}>, "strip", z.ZodTypeAny, {
|
|
102
|
-
rows: Record<string, string | number>[];
|
|
102
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
103
103
|
title?: string | undefined;
|
|
104
104
|
columns?: ("left" | "center" | "right")[] | {
|
|
105
105
|
key: string;
|
|
@@ -107,7 +107,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
107
107
|
align?: "left" | "center" | "right" | undefined;
|
|
108
108
|
}[] | undefined;
|
|
109
109
|
}, {
|
|
110
|
-
rows: Record<string, string | number>[];
|
|
110
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
111
111
|
title?: string | undefined;
|
|
112
112
|
columns?: ("left" | "center" | "right")[] | {
|
|
113
113
|
key: string;
|
|
@@ -130,11 +130,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
130
130
|
} | undefined;
|
|
131
131
|
}[] | undefined;
|
|
132
132
|
table?: {
|
|
133
|
-
rows: (string | number)[][];
|
|
133
|
+
rows: (string | number | boolean | null)[][];
|
|
134
134
|
title?: string | undefined;
|
|
135
135
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
136
136
|
} | {
|
|
137
|
-
rows: Record<string, string | number>[];
|
|
137
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
138
138
|
title?: string | undefined;
|
|
139
139
|
columns?: ("left" | "center" | "right")[] | {
|
|
140
140
|
key: string;
|
|
@@ -157,11 +157,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
157
157
|
} | undefined;
|
|
158
158
|
}[] | undefined;
|
|
159
159
|
table?: {
|
|
160
|
-
rows: (string | number)[][];
|
|
160
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
161
161
|
title?: string | undefined;
|
|
162
162
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
163
163
|
} | {
|
|
164
|
-
rows: Record<string, string | number>[];
|
|
164
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
165
165
|
title?: string | undefined;
|
|
166
166
|
columns?: ("left" | "center" | "right")[] | {
|
|
167
167
|
key: string;
|
|
@@ -190,11 +190,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
190
190
|
} | undefined;
|
|
191
191
|
}[] | undefined;
|
|
192
192
|
table?: {
|
|
193
|
-
rows: (string | number)[][];
|
|
193
|
+
rows: (string | number | boolean | null)[][];
|
|
194
194
|
title?: string | undefined;
|
|
195
195
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
196
196
|
} | {
|
|
197
|
-
rows: Record<string, string | number>[];
|
|
197
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
198
198
|
title?: string | undefined;
|
|
199
199
|
columns?: ("left" | "center" | "right")[] | {
|
|
200
200
|
key: string;
|
|
@@ -223,11 +223,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
223
223
|
} | undefined;
|
|
224
224
|
}[] | undefined;
|
|
225
225
|
table?: {
|
|
226
|
-
rows: (string | number)[][];
|
|
226
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
227
227
|
title?: string | undefined;
|
|
228
228
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
229
229
|
} | {
|
|
230
|
-
rows: Record<string, string | number>[];
|
|
230
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
231
231
|
title?: string | undefined;
|
|
232
232
|
columns?: ("left" | "center" | "right")[] | {
|
|
233
233
|
key: string;
|
|
@@ -256,11 +256,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
256
256
|
} | undefined;
|
|
257
257
|
}[] | undefined;
|
|
258
258
|
table?: {
|
|
259
|
-
rows: (string | number)[][];
|
|
259
|
+
rows: (string | number | boolean | null)[][];
|
|
260
260
|
title?: string | undefined;
|
|
261
261
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
262
262
|
} | {
|
|
263
|
-
rows: Record<string, string | number>[];
|
|
263
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
264
264
|
title?: string | undefined;
|
|
265
265
|
columns?: ("left" | "center" | "right")[] | {
|
|
266
266
|
key: string;
|
|
@@ -289,11 +289,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
289
289
|
} | undefined;
|
|
290
290
|
}[] | undefined;
|
|
291
291
|
table?: {
|
|
292
|
-
rows: (string | number)[][];
|
|
292
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
293
293
|
title?: string | undefined;
|
|
294
294
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
295
295
|
} | {
|
|
296
|
-
rows: Record<string, string | number>[];
|
|
296
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
297
297
|
title?: string | undefined;
|
|
298
298
|
columns?: ("left" | "center" | "right")[] | {
|
|
299
299
|
key: string;
|
|
@@ -375,13 +375,13 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
375
375
|
title: z.ZodOptional<z.ZodString>;
|
|
376
376
|
}, {
|
|
377
377
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
378
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
378
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
379
379
|
}>, "strip", z.ZodTypeAny, {
|
|
380
|
-
rows: (string | number)[][];
|
|
380
|
+
rows: (string | number | boolean | null)[][];
|
|
381
381
|
title?: string | undefined;
|
|
382
382
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
383
383
|
}, {
|
|
384
|
-
rows: (string | number)[][];
|
|
384
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
385
385
|
title?: string | undefined;
|
|
386
386
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
387
387
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -400,9 +400,9 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
400
400
|
label?: string | undefined;
|
|
401
401
|
align?: "left" | "center" | "right" | undefined;
|
|
402
402
|
}>, "many">]>>;
|
|
403
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
403
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
404
404
|
}>, "strip", z.ZodTypeAny, {
|
|
405
|
-
rows: Record<string, string | number>[];
|
|
405
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
406
406
|
title?: string | undefined;
|
|
407
407
|
columns?: ("left" | "center" | "right")[] | {
|
|
408
408
|
key: string;
|
|
@@ -410,7 +410,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
410
410
|
align?: "left" | "center" | "right" | undefined;
|
|
411
411
|
}[] | undefined;
|
|
412
412
|
}, {
|
|
413
|
-
rows: Record<string, string | number>[];
|
|
413
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
414
414
|
title?: string | undefined;
|
|
415
415
|
columns?: ("left" | "center" | "right")[] | {
|
|
416
416
|
key: string;
|
|
@@ -433,11 +433,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
433
433
|
} | undefined;
|
|
434
434
|
}[] | undefined;
|
|
435
435
|
table?: {
|
|
436
|
-
rows: (string | number)[][];
|
|
436
|
+
rows: (string | number | boolean | null)[][];
|
|
437
437
|
title?: string | undefined;
|
|
438
438
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
439
439
|
} | {
|
|
440
|
-
rows: Record<string, string | number>[];
|
|
440
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
441
441
|
title?: string | undefined;
|
|
442
442
|
columns?: ("left" | "center" | "right")[] | {
|
|
443
443
|
key: string;
|
|
@@ -460,11 +460,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
460
460
|
} | undefined;
|
|
461
461
|
}[] | undefined;
|
|
462
462
|
table?: {
|
|
463
|
-
rows: (string | number)[][];
|
|
463
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
464
464
|
title?: string | undefined;
|
|
465
465
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
466
466
|
} | {
|
|
467
|
-
rows: Record<string, string | number>[];
|
|
467
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
468
468
|
title?: string | undefined;
|
|
469
469
|
columns?: ("left" | "center" | "right")[] | {
|
|
470
470
|
key: string;
|
|
@@ -493,11 +493,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
493
493
|
} | undefined;
|
|
494
494
|
}[] | undefined;
|
|
495
495
|
table?: {
|
|
496
|
-
rows: (string | number)[][];
|
|
496
|
+
rows: (string | number | boolean | null)[][];
|
|
497
497
|
title?: string | undefined;
|
|
498
498
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
499
499
|
} | {
|
|
500
|
-
rows: Record<string, string | number>[];
|
|
500
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
501
501
|
title?: string | undefined;
|
|
502
502
|
columns?: ("left" | "center" | "right")[] | {
|
|
503
503
|
key: string;
|
|
@@ -526,11 +526,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
526
526
|
} | undefined;
|
|
527
527
|
}[] | undefined;
|
|
528
528
|
table?: {
|
|
529
|
-
rows: (string | number)[][];
|
|
529
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
530
530
|
title?: string | undefined;
|
|
531
531
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
532
532
|
} | {
|
|
533
|
-
rows: Record<string, string | number>[];
|
|
533
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
534
534
|
title?: string | undefined;
|
|
535
535
|
columns?: ("left" | "center" | "right")[] | {
|
|
536
536
|
key: string;
|
|
@@ -559,11 +559,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
559
559
|
} | undefined;
|
|
560
560
|
}[] | undefined;
|
|
561
561
|
table?: {
|
|
562
|
-
rows: (string | number)[][];
|
|
562
|
+
rows: (string | number | boolean | null)[][];
|
|
563
563
|
title?: string | undefined;
|
|
564
564
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
565
565
|
} | {
|
|
566
|
-
rows: Record<string, string | number>[];
|
|
566
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
567
567
|
title?: string | undefined;
|
|
568
568
|
columns?: ("left" | "center" | "right")[] | {
|
|
569
569
|
key: string;
|
|
@@ -592,11 +592,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
592
592
|
} | undefined;
|
|
593
593
|
}[] | undefined;
|
|
594
594
|
table?: {
|
|
595
|
-
rows: (string | number)[][];
|
|
595
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
596
596
|
title?: string | undefined;
|
|
597
597
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
598
598
|
} | {
|
|
599
|
-
rows: Record<string, string | number>[];
|
|
599
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
600
600
|
title?: string | undefined;
|
|
601
601
|
columns?: ("left" | "center" | "right")[] | {
|
|
602
602
|
key: string;
|
|
@@ -684,13 +684,13 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
684
684
|
title: z.ZodOptional<z.ZodString>;
|
|
685
685
|
}, {
|
|
686
686
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
687
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
687
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
688
688
|
}>, "strip", z.ZodTypeAny, {
|
|
689
|
-
rows: (string | number)[][];
|
|
689
|
+
rows: (string | number | boolean | null)[][];
|
|
690
690
|
title?: string | undefined;
|
|
691
691
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
692
692
|
}, {
|
|
693
|
-
rows: (string | number)[][];
|
|
693
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
694
694
|
title?: string | undefined;
|
|
695
695
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
696
696
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -709,9 +709,9 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
709
709
|
label?: string | undefined;
|
|
710
710
|
align?: "left" | "center" | "right" | undefined;
|
|
711
711
|
}>, "many">]>>;
|
|
712
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
712
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
713
713
|
}>, "strip", z.ZodTypeAny, {
|
|
714
|
-
rows: Record<string, string | number>[];
|
|
714
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
715
715
|
title?: string | undefined;
|
|
716
716
|
columns?: ("left" | "center" | "right")[] | {
|
|
717
717
|
key: string;
|
|
@@ -719,7 +719,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
719
719
|
align?: "left" | "center" | "right" | undefined;
|
|
720
720
|
}[] | undefined;
|
|
721
721
|
}, {
|
|
722
|
-
rows: Record<string, string | number>[];
|
|
722
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
723
723
|
title?: string | undefined;
|
|
724
724
|
columns?: ("left" | "center" | "right")[] | {
|
|
725
725
|
key: string;
|
|
@@ -742,11 +742,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
742
742
|
} | undefined;
|
|
743
743
|
}[] | undefined;
|
|
744
744
|
table?: {
|
|
745
|
-
rows: (string | number)[][];
|
|
745
|
+
rows: (string | number | boolean | null)[][];
|
|
746
746
|
title?: string | undefined;
|
|
747
747
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
748
748
|
} | {
|
|
749
|
-
rows: Record<string, string | number>[];
|
|
749
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
750
750
|
title?: string | undefined;
|
|
751
751
|
columns?: ("left" | "center" | "right")[] | {
|
|
752
752
|
key: string;
|
|
@@ -769,11 +769,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
769
769
|
} | undefined;
|
|
770
770
|
}[] | undefined;
|
|
771
771
|
table?: {
|
|
772
|
-
rows: (string | number)[][];
|
|
772
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
773
773
|
title?: string | undefined;
|
|
774
774
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
775
775
|
} | {
|
|
776
|
-
rows: Record<string, string | number>[];
|
|
776
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
777
777
|
title?: string | undefined;
|
|
778
778
|
columns?: ("left" | "center" | "right")[] | {
|
|
779
779
|
key: string;
|
|
@@ -802,11 +802,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
802
802
|
} | undefined;
|
|
803
803
|
}[] | undefined;
|
|
804
804
|
table?: {
|
|
805
|
-
rows: (string | number)[][];
|
|
805
|
+
rows: (string | number | boolean | null)[][];
|
|
806
806
|
title?: string | undefined;
|
|
807
807
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
808
808
|
} | {
|
|
809
|
-
rows: Record<string, string | number>[];
|
|
809
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
810
810
|
title?: string | undefined;
|
|
811
811
|
columns?: ("left" | "center" | "right")[] | {
|
|
812
812
|
key: string;
|
|
@@ -835,11 +835,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
835
835
|
} | undefined;
|
|
836
836
|
}[] | undefined;
|
|
837
837
|
table?: {
|
|
838
|
-
rows: (string | number)[][];
|
|
838
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
839
839
|
title?: string | undefined;
|
|
840
840
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
841
841
|
} | {
|
|
842
|
-
rows: Record<string, string | number>[];
|
|
842
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
843
843
|
title?: string | undefined;
|
|
844
844
|
columns?: ("left" | "center" | "right")[] | {
|
|
845
845
|
key: string;
|
|
@@ -868,11 +868,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
868
868
|
} | undefined;
|
|
869
869
|
}[] | undefined;
|
|
870
870
|
table?: {
|
|
871
|
-
rows: (string | number)[][];
|
|
871
|
+
rows: (string | number | boolean | null)[][];
|
|
872
872
|
title?: string | undefined;
|
|
873
873
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
874
874
|
} | {
|
|
875
|
-
rows: Record<string, string | number>[];
|
|
875
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
876
876
|
title?: string | undefined;
|
|
877
877
|
columns?: ("left" | "center" | "right")[] | {
|
|
878
878
|
key: string;
|
|
@@ -901,11 +901,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
901
901
|
} | undefined;
|
|
902
902
|
}[] | undefined;
|
|
903
903
|
table?: {
|
|
904
|
-
rows: (string | number)[][];
|
|
904
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
905
905
|
title?: string | undefined;
|
|
906
906
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
907
907
|
} | {
|
|
908
|
-
rows: Record<string, string | number>[];
|
|
908
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
909
909
|
title?: string | undefined;
|
|
910
910
|
columns?: ("left" | "center" | "right")[] | {
|
|
911
911
|
key: string;
|
|
@@ -987,13 +987,13 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
987
987
|
title: z.ZodOptional<z.ZodString>;
|
|
988
988
|
}, {
|
|
989
989
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
990
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
990
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
991
991
|
}>, "strip", z.ZodTypeAny, {
|
|
992
|
-
rows: (string | number)[][];
|
|
992
|
+
rows: (string | number | boolean | null)[][];
|
|
993
993
|
title?: string | undefined;
|
|
994
994
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
995
995
|
}, {
|
|
996
|
-
rows: (string | number)[][];
|
|
996
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
997
997
|
title?: string | undefined;
|
|
998
998
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
999
999
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1012,9 +1012,9 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1012
1012
|
label?: string | undefined;
|
|
1013
1013
|
align?: "left" | "center" | "right" | undefined;
|
|
1014
1014
|
}>, "many">]>>;
|
|
1015
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1015
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1016
1016
|
}>, "strip", z.ZodTypeAny, {
|
|
1017
|
-
rows: Record<string, string | number>[];
|
|
1017
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1018
1018
|
title?: string | undefined;
|
|
1019
1019
|
columns?: ("left" | "center" | "right")[] | {
|
|
1020
1020
|
key: string;
|
|
@@ -1022,7 +1022,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1022
1022
|
align?: "left" | "center" | "right" | undefined;
|
|
1023
1023
|
}[] | undefined;
|
|
1024
1024
|
}, {
|
|
1025
|
-
rows: Record<string, string | number>[];
|
|
1025
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1026
1026
|
title?: string | undefined;
|
|
1027
1027
|
columns?: ("left" | "center" | "right")[] | {
|
|
1028
1028
|
key: string;
|
|
@@ -1045,11 +1045,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1045
1045
|
} | undefined;
|
|
1046
1046
|
}[] | undefined;
|
|
1047
1047
|
table?: {
|
|
1048
|
-
rows: (string | number)[][];
|
|
1048
|
+
rows: (string | number | boolean | null)[][];
|
|
1049
1049
|
title?: string | undefined;
|
|
1050
1050
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1051
1051
|
} | {
|
|
1052
|
-
rows: Record<string, string | number>[];
|
|
1052
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1053
1053
|
title?: string | undefined;
|
|
1054
1054
|
columns?: ("left" | "center" | "right")[] | {
|
|
1055
1055
|
key: string;
|
|
@@ -1072,11 +1072,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1072
1072
|
} | undefined;
|
|
1073
1073
|
}[] | undefined;
|
|
1074
1074
|
table?: {
|
|
1075
|
-
rows: (string | number)[][];
|
|
1075
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1076
1076
|
title?: string | undefined;
|
|
1077
1077
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1078
1078
|
} | {
|
|
1079
|
-
rows: Record<string, string | number>[];
|
|
1079
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1080
1080
|
title?: string | undefined;
|
|
1081
1081
|
columns?: ("left" | "center" | "right")[] | {
|
|
1082
1082
|
key: string;
|
|
@@ -1105,11 +1105,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1105
1105
|
} | undefined;
|
|
1106
1106
|
}[] | undefined;
|
|
1107
1107
|
table?: {
|
|
1108
|
-
rows: (string | number)[][];
|
|
1108
|
+
rows: (string | number | boolean | null)[][];
|
|
1109
1109
|
title?: string | undefined;
|
|
1110
1110
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1111
1111
|
} | {
|
|
1112
|
-
rows: Record<string, string | number>[];
|
|
1112
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1113
1113
|
title?: string | undefined;
|
|
1114
1114
|
columns?: ("left" | "center" | "right")[] | {
|
|
1115
1115
|
key: string;
|
|
@@ -1138,11 +1138,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1138
1138
|
} | undefined;
|
|
1139
1139
|
}[] | undefined;
|
|
1140
1140
|
table?: {
|
|
1141
|
-
rows: (string | number)[][];
|
|
1141
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1142
1142
|
title?: string | undefined;
|
|
1143
1143
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1144
1144
|
} | {
|
|
1145
|
-
rows: Record<string, string | number>[];
|
|
1145
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1146
1146
|
title?: string | undefined;
|
|
1147
1147
|
columns?: ("left" | "center" | "right")[] | {
|
|
1148
1148
|
key: string;
|
|
@@ -1171,11 +1171,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1171
1171
|
} | undefined;
|
|
1172
1172
|
}[] | undefined;
|
|
1173
1173
|
table?: {
|
|
1174
|
-
rows: (string | number)[][];
|
|
1174
|
+
rows: (string | number | boolean | null)[][];
|
|
1175
1175
|
title?: string | undefined;
|
|
1176
1176
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1177
1177
|
} | {
|
|
1178
|
-
rows: Record<string, string | number>[];
|
|
1178
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1179
1179
|
title?: string | undefined;
|
|
1180
1180
|
columns?: ("left" | "center" | "right")[] | {
|
|
1181
1181
|
key: string;
|
|
@@ -1204,11 +1204,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1204
1204
|
} | undefined;
|
|
1205
1205
|
}[] | undefined;
|
|
1206
1206
|
table?: {
|
|
1207
|
-
rows: (string | number)[][];
|
|
1207
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1208
1208
|
title?: string | undefined;
|
|
1209
1209
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1210
1210
|
} | {
|
|
1211
|
-
rows: Record<string, string | number>[];
|
|
1211
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1212
1212
|
title?: string | undefined;
|
|
1213
1213
|
columns?: ("left" | "center" | "right")[] | {
|
|
1214
1214
|
key: string;
|
|
@@ -1242,11 +1242,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1242
1242
|
} | undefined;
|
|
1243
1243
|
}[] | undefined;
|
|
1244
1244
|
table?: {
|
|
1245
|
-
rows: (string | number)[][];
|
|
1245
|
+
rows: (string | number | boolean | null)[][];
|
|
1246
1246
|
title?: string | undefined;
|
|
1247
1247
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1248
1248
|
} | {
|
|
1249
|
-
rows: Record<string, string | number>[];
|
|
1249
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1250
1250
|
title?: string | undefined;
|
|
1251
1251
|
columns?: ("left" | "center" | "right")[] | {
|
|
1252
1252
|
key: string;
|
|
@@ -1275,11 +1275,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1275
1275
|
} | undefined;
|
|
1276
1276
|
}[] | undefined;
|
|
1277
1277
|
table?: {
|
|
1278
|
-
rows: (string | number)[][];
|
|
1278
|
+
rows: (string | number | boolean | null)[][];
|
|
1279
1279
|
title?: string | undefined;
|
|
1280
1280
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1281
1281
|
} | {
|
|
1282
|
-
rows: Record<string, string | number>[];
|
|
1282
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1283
1283
|
title?: string | undefined;
|
|
1284
1284
|
columns?: ("left" | "center" | "right")[] | {
|
|
1285
1285
|
key: string;
|
|
@@ -1313,11 +1313,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1313
1313
|
} | undefined;
|
|
1314
1314
|
}[] | undefined;
|
|
1315
1315
|
table?: {
|
|
1316
|
-
rows: (string | number)[][];
|
|
1316
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1317
1317
|
title?: string | undefined;
|
|
1318
1318
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1319
1319
|
} | {
|
|
1320
|
-
rows: Record<string, string | number>[];
|
|
1320
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1321
1321
|
title?: string | undefined;
|
|
1322
1322
|
columns?: ("left" | "center" | "right")[] | {
|
|
1323
1323
|
key: string;
|
|
@@ -1346,11 +1346,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1346
1346
|
} | undefined;
|
|
1347
1347
|
}[] | undefined;
|
|
1348
1348
|
table?: {
|
|
1349
|
-
rows: (string | number)[][];
|
|
1349
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1350
1350
|
title?: string | undefined;
|
|
1351
1351
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1352
1352
|
} | {
|
|
1353
|
-
rows: Record<string, string | number>[];
|
|
1353
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1354
1354
|
title?: string | undefined;
|
|
1355
1355
|
columns?: ("left" | "center" | "right")[] | {
|
|
1356
1356
|
key: string;
|
|
@@ -1437,13 +1437,13 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1437
1437
|
title: z.ZodOptional<z.ZodString>;
|
|
1438
1438
|
}, {
|
|
1439
1439
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1440
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1440
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1441
1441
|
}>, "strip", z.ZodTypeAny, {
|
|
1442
|
-
rows: (string | number)[][];
|
|
1442
|
+
rows: (string | number | boolean | null)[][];
|
|
1443
1443
|
title?: string | undefined;
|
|
1444
1444
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1445
1445
|
}, {
|
|
1446
|
-
rows: (string | number)[][];
|
|
1446
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1447
1447
|
title?: string | undefined;
|
|
1448
1448
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1449
1449
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1462,9 +1462,9 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1462
1462
|
label?: string | undefined;
|
|
1463
1463
|
align?: "left" | "center" | "right" | undefined;
|
|
1464
1464
|
}>, "many">]>>;
|
|
1465
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1465
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1466
1466
|
}>, "strip", z.ZodTypeAny, {
|
|
1467
|
-
rows: Record<string, string | number>[];
|
|
1467
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1468
1468
|
title?: string | undefined;
|
|
1469
1469
|
columns?: ("left" | "center" | "right")[] | {
|
|
1470
1470
|
key: string;
|
|
@@ -1472,7 +1472,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1472
1472
|
align?: "left" | "center" | "right" | undefined;
|
|
1473
1473
|
}[] | undefined;
|
|
1474
1474
|
}, {
|
|
1475
|
-
rows: Record<string, string | number>[];
|
|
1475
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1476
1476
|
title?: string | undefined;
|
|
1477
1477
|
columns?: ("left" | "center" | "right")[] | {
|
|
1478
1478
|
key: string;
|
|
@@ -1495,11 +1495,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1495
1495
|
} | undefined;
|
|
1496
1496
|
}[] | undefined;
|
|
1497
1497
|
table?: {
|
|
1498
|
-
rows: (string | number)[][];
|
|
1498
|
+
rows: (string | number | boolean | null)[][];
|
|
1499
1499
|
title?: string | undefined;
|
|
1500
1500
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1501
1501
|
} | {
|
|
1502
|
-
rows: Record<string, string | number>[];
|
|
1502
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1503
1503
|
title?: string | undefined;
|
|
1504
1504
|
columns?: ("left" | "center" | "right")[] | {
|
|
1505
1505
|
key: string;
|
|
@@ -1522,11 +1522,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1522
1522
|
} | undefined;
|
|
1523
1523
|
}[] | undefined;
|
|
1524
1524
|
table?: {
|
|
1525
|
-
rows: (string | number)[][];
|
|
1525
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1526
1526
|
title?: string | undefined;
|
|
1527
1527
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1528
1528
|
} | {
|
|
1529
|
-
rows: Record<string, string | number>[];
|
|
1529
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1530
1530
|
title?: string | undefined;
|
|
1531
1531
|
columns?: ("left" | "center" | "right")[] | {
|
|
1532
1532
|
key: string;
|
|
@@ -1555,11 +1555,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1555
1555
|
} | undefined;
|
|
1556
1556
|
}[] | undefined;
|
|
1557
1557
|
table?: {
|
|
1558
|
-
rows: (string | number)[][];
|
|
1558
|
+
rows: (string | number | boolean | null)[][];
|
|
1559
1559
|
title?: string | undefined;
|
|
1560
1560
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1561
1561
|
} | {
|
|
1562
|
-
rows: Record<string, string | number>[];
|
|
1562
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1563
1563
|
title?: string | undefined;
|
|
1564
1564
|
columns?: ("left" | "center" | "right")[] | {
|
|
1565
1565
|
key: string;
|
|
@@ -1588,11 +1588,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1588
1588
|
} | undefined;
|
|
1589
1589
|
}[] | undefined;
|
|
1590
1590
|
table?: {
|
|
1591
|
-
rows: (string | number)[][];
|
|
1591
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1592
1592
|
title?: string | undefined;
|
|
1593
1593
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1594
1594
|
} | {
|
|
1595
|
-
rows: Record<string, string | number>[];
|
|
1595
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1596
1596
|
title?: string | undefined;
|
|
1597
1597
|
columns?: ("left" | "center" | "right")[] | {
|
|
1598
1598
|
key: string;
|
|
@@ -1621,11 +1621,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1621
1621
|
} | undefined;
|
|
1622
1622
|
}[] | undefined;
|
|
1623
1623
|
table?: {
|
|
1624
|
-
rows: (string | number)[][];
|
|
1624
|
+
rows: (string | number | boolean | null)[][];
|
|
1625
1625
|
title?: string | undefined;
|
|
1626
1626
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1627
1627
|
} | {
|
|
1628
|
-
rows: Record<string, string | number>[];
|
|
1628
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1629
1629
|
title?: string | undefined;
|
|
1630
1630
|
columns?: ("left" | "center" | "right")[] | {
|
|
1631
1631
|
key: string;
|
|
@@ -1654,11 +1654,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1654
1654
|
} | undefined;
|
|
1655
1655
|
}[] | undefined;
|
|
1656
1656
|
table?: {
|
|
1657
|
-
rows: (string | number)[][];
|
|
1657
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1658
1658
|
title?: string | undefined;
|
|
1659
1659
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1660
1660
|
} | {
|
|
1661
|
-
rows: Record<string, string | number>[];
|
|
1661
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1662
1662
|
title?: string | undefined;
|
|
1663
1663
|
columns?: ("left" | "center" | "right")[] | {
|
|
1664
1664
|
key: string;
|
|
@@ -1740,13 +1740,13 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1740
1740
|
title: z.ZodOptional<z.ZodString>;
|
|
1741
1741
|
}, {
|
|
1742
1742
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1743
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1743
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1744
1744
|
}>, "strip", z.ZodTypeAny, {
|
|
1745
|
-
rows: (string | number)[][];
|
|
1745
|
+
rows: (string | number | boolean | null)[][];
|
|
1746
1746
|
title?: string | undefined;
|
|
1747
1747
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1748
1748
|
}, {
|
|
1749
|
-
rows: (string | number)[][];
|
|
1749
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1750
1750
|
title?: string | undefined;
|
|
1751
1751
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1752
1752
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1765,9 +1765,9 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1765
1765
|
label?: string | undefined;
|
|
1766
1766
|
align?: "left" | "center" | "right" | undefined;
|
|
1767
1767
|
}>, "many">]>>;
|
|
1768
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1768
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1769
1769
|
}>, "strip", z.ZodTypeAny, {
|
|
1770
|
-
rows: Record<string, string | number>[];
|
|
1770
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1771
1771
|
title?: string | undefined;
|
|
1772
1772
|
columns?: ("left" | "center" | "right")[] | {
|
|
1773
1773
|
key: string;
|
|
@@ -1775,7 +1775,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1775
1775
|
align?: "left" | "center" | "right" | undefined;
|
|
1776
1776
|
}[] | undefined;
|
|
1777
1777
|
}, {
|
|
1778
|
-
rows: Record<string, string | number>[];
|
|
1778
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1779
1779
|
title?: string | undefined;
|
|
1780
1780
|
columns?: ("left" | "center" | "right")[] | {
|
|
1781
1781
|
key: string;
|
|
@@ -1798,11 +1798,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1798
1798
|
} | undefined;
|
|
1799
1799
|
}[] | undefined;
|
|
1800
1800
|
table?: {
|
|
1801
|
-
rows: (string | number)[][];
|
|
1801
|
+
rows: (string | number | boolean | null)[][];
|
|
1802
1802
|
title?: string | undefined;
|
|
1803
1803
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1804
1804
|
} | {
|
|
1805
|
-
rows: Record<string, string | number>[];
|
|
1805
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1806
1806
|
title?: string | undefined;
|
|
1807
1807
|
columns?: ("left" | "center" | "right")[] | {
|
|
1808
1808
|
key: string;
|
|
@@ -1825,11 +1825,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1825
1825
|
} | undefined;
|
|
1826
1826
|
}[] | undefined;
|
|
1827
1827
|
table?: {
|
|
1828
|
-
rows: (string | number)[][];
|
|
1828
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1829
1829
|
title?: string | undefined;
|
|
1830
1830
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1831
1831
|
} | {
|
|
1832
|
-
rows: Record<string, string | number>[];
|
|
1832
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1833
1833
|
title?: string | undefined;
|
|
1834
1834
|
columns?: ("left" | "center" | "right")[] | {
|
|
1835
1835
|
key: string;
|
|
@@ -1858,11 +1858,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1858
1858
|
} | undefined;
|
|
1859
1859
|
}[] | undefined;
|
|
1860
1860
|
table?: {
|
|
1861
|
-
rows: (string | number)[][];
|
|
1861
|
+
rows: (string | number | boolean | null)[][];
|
|
1862
1862
|
title?: string | undefined;
|
|
1863
1863
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1864
1864
|
} | {
|
|
1865
|
-
rows: Record<string, string | number>[];
|
|
1865
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1866
1866
|
title?: string | undefined;
|
|
1867
1867
|
columns?: ("left" | "center" | "right")[] | {
|
|
1868
1868
|
key: string;
|
|
@@ -1891,11 +1891,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1891
1891
|
} | undefined;
|
|
1892
1892
|
}[] | undefined;
|
|
1893
1893
|
table?: {
|
|
1894
|
-
rows: (string | number)[][];
|
|
1894
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1895
1895
|
title?: string | undefined;
|
|
1896
1896
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1897
1897
|
} | {
|
|
1898
|
-
rows: Record<string, string | number>[];
|
|
1898
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1899
1899
|
title?: string | undefined;
|
|
1900
1900
|
columns?: ("left" | "center" | "right")[] | {
|
|
1901
1901
|
key: string;
|
|
@@ -1924,11 +1924,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1924
1924
|
} | undefined;
|
|
1925
1925
|
}[] | undefined;
|
|
1926
1926
|
table?: {
|
|
1927
|
-
rows: (string | number)[][];
|
|
1927
|
+
rows: (string | number | boolean | null)[][];
|
|
1928
1928
|
title?: string | undefined;
|
|
1929
1929
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1930
1930
|
} | {
|
|
1931
|
-
rows: Record<string, string | number>[];
|
|
1931
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1932
1932
|
title?: string | undefined;
|
|
1933
1933
|
columns?: ("left" | "center" | "right")[] | {
|
|
1934
1934
|
key: string;
|
|
@@ -1957,11 +1957,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1957
1957
|
} | undefined;
|
|
1958
1958
|
}[] | undefined;
|
|
1959
1959
|
table?: {
|
|
1960
|
-
rows: (string | number)[][];
|
|
1960
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1961
1961
|
title?: string | undefined;
|
|
1962
1962
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1963
1963
|
} | {
|
|
1964
|
-
rows: Record<string, string | number>[];
|
|
1964
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1965
1965
|
title?: string | undefined;
|
|
1966
1966
|
columns?: ("left" | "center" | "right")[] | {
|
|
1967
1967
|
key: string;
|