@code-pushup/models 0.46.0 → 0.48.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
|
@@ -105,13 +105,13 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
105
105
|
title: z.ZodOptional<z.ZodString>;
|
|
106
106
|
}, {
|
|
107
107
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
108
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
108
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
109
109
|
}>, "strip", z.ZodTypeAny, {
|
|
110
|
-
rows: (string | number)[][];
|
|
110
|
+
rows: (string | number | boolean | null)[][];
|
|
111
111
|
title?: string | undefined;
|
|
112
112
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
113
113
|
}, {
|
|
114
|
-
rows: (string | number)[][];
|
|
114
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
115
115
|
title?: string | undefined;
|
|
116
116
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
117
117
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -130,9 +130,9 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
130
130
|
label?: string | undefined;
|
|
131
131
|
align?: "left" | "center" | "right" | undefined;
|
|
132
132
|
}>, "many">]>>;
|
|
133
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
133
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
134
134
|
}>, "strip", z.ZodTypeAny, {
|
|
135
|
-
rows: Record<string, string | number>[];
|
|
135
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
136
136
|
title?: string | undefined;
|
|
137
137
|
columns?: ("left" | "center" | "right")[] | {
|
|
138
138
|
key: string;
|
|
@@ -140,7 +140,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
140
140
|
align?: "left" | "center" | "right" | undefined;
|
|
141
141
|
}[] | undefined;
|
|
142
142
|
}, {
|
|
143
|
-
rows: Record<string, string | number>[];
|
|
143
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
144
144
|
title?: string | undefined;
|
|
145
145
|
columns?: ("left" | "center" | "right")[] | {
|
|
146
146
|
key: string;
|
|
@@ -163,11 +163,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
163
163
|
} | undefined;
|
|
164
164
|
}[] | undefined;
|
|
165
165
|
table?: {
|
|
166
|
-
rows: (string | number)[][];
|
|
166
|
+
rows: (string | number | boolean | null)[][];
|
|
167
167
|
title?: string | undefined;
|
|
168
168
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
169
169
|
} | {
|
|
170
|
-
rows: Record<string, string | number>[];
|
|
170
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
171
171
|
title?: string | undefined;
|
|
172
172
|
columns?: ("left" | "center" | "right")[] | {
|
|
173
173
|
key: string;
|
|
@@ -190,11 +190,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
190
190
|
} | undefined;
|
|
191
191
|
}[] | undefined;
|
|
192
192
|
table?: {
|
|
193
|
-
rows: (string | number)[][];
|
|
193
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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 | undefined>[];
|
|
198
198
|
title?: string | undefined;
|
|
199
199
|
columns?: ("left" | "center" | "right")[] | {
|
|
200
200
|
key: string;
|
|
@@ -223,11 +223,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
223
223
|
} | undefined;
|
|
224
224
|
}[] | undefined;
|
|
225
225
|
table?: {
|
|
226
|
-
rows: (string | number)[][];
|
|
226
|
+
rows: (string | number | boolean | null)[][];
|
|
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>[];
|
|
231
231
|
title?: string | undefined;
|
|
232
232
|
columns?: ("left" | "center" | "right")[] | {
|
|
233
233
|
key: string;
|
|
@@ -256,11 +256,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
256
256
|
} | undefined;
|
|
257
257
|
}[] | undefined;
|
|
258
258
|
table?: {
|
|
259
|
-
rows: (string | number)[][];
|
|
259
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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 | undefined>[];
|
|
264
264
|
title?: string | undefined;
|
|
265
265
|
columns?: ("left" | "center" | "right")[] | {
|
|
266
266
|
key: string;
|
|
@@ -289,11 +289,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
289
289
|
} | undefined;
|
|
290
290
|
}[] | undefined;
|
|
291
291
|
table?: {
|
|
292
|
-
rows: (string | number)[][];
|
|
292
|
+
rows: (string | number | boolean | null)[][];
|
|
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>[];
|
|
297
297
|
title?: string | undefined;
|
|
298
298
|
columns?: ("left" | "center" | "right")[] | {
|
|
299
299
|
key: string;
|
|
@@ -322,11 +322,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
322
322
|
} | undefined;
|
|
323
323
|
}[] | undefined;
|
|
324
324
|
table?: {
|
|
325
|
-
rows: (string | number)[][];
|
|
325
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
326
326
|
title?: string | undefined;
|
|
327
327
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
328
328
|
} | {
|
|
329
|
-
rows: Record<string, string | number>[];
|
|
329
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
330
330
|
title?: string | undefined;
|
|
331
331
|
columns?: ("left" | "center" | "right")[] | {
|
|
332
332
|
key: string;
|
|
@@ -408,13 +408,13 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
408
408
|
title: z.ZodOptional<z.ZodString>;
|
|
409
409
|
}, {
|
|
410
410
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
411
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
411
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
412
412
|
}>, "strip", z.ZodTypeAny, {
|
|
413
|
-
rows: (string | number)[][];
|
|
413
|
+
rows: (string | number | boolean | null)[][];
|
|
414
414
|
title?: string | undefined;
|
|
415
415
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
416
416
|
}, {
|
|
417
|
-
rows: (string | number)[][];
|
|
417
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
418
418
|
title?: string | undefined;
|
|
419
419
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
420
420
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -433,9 +433,9 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
433
433
|
label?: string | undefined;
|
|
434
434
|
align?: "left" | "center" | "right" | undefined;
|
|
435
435
|
}>, "many">]>>;
|
|
436
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
436
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
437
437
|
}>, "strip", z.ZodTypeAny, {
|
|
438
|
-
rows: Record<string, string | number>[];
|
|
438
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
439
439
|
title?: string | undefined;
|
|
440
440
|
columns?: ("left" | "center" | "right")[] | {
|
|
441
441
|
key: string;
|
|
@@ -443,7 +443,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
443
443
|
align?: "left" | "center" | "right" | undefined;
|
|
444
444
|
}[] | undefined;
|
|
445
445
|
}, {
|
|
446
|
-
rows: Record<string, string | number>[];
|
|
446
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
447
447
|
title?: string | undefined;
|
|
448
448
|
columns?: ("left" | "center" | "right")[] | {
|
|
449
449
|
key: string;
|
|
@@ -466,11 +466,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
466
466
|
} | undefined;
|
|
467
467
|
}[] | undefined;
|
|
468
468
|
table?: {
|
|
469
|
-
rows: (string | number)[][];
|
|
469
|
+
rows: (string | number | boolean | null)[][];
|
|
470
470
|
title?: string | undefined;
|
|
471
471
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
472
472
|
} | {
|
|
473
|
-
rows: Record<string, string | number>[];
|
|
473
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
474
474
|
title?: string | undefined;
|
|
475
475
|
columns?: ("left" | "center" | "right")[] | {
|
|
476
476
|
key: string;
|
|
@@ -493,11 +493,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
493
493
|
} | undefined;
|
|
494
494
|
}[] | undefined;
|
|
495
495
|
table?: {
|
|
496
|
-
rows: (string | number)[][];
|
|
496
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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 | undefined>[];
|
|
501
501
|
title?: string | undefined;
|
|
502
502
|
columns?: ("left" | "center" | "right")[] | {
|
|
503
503
|
key: string;
|
|
@@ -526,11 +526,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
526
526
|
} | undefined;
|
|
527
527
|
}[] | undefined;
|
|
528
528
|
table?: {
|
|
529
|
-
rows: (string | number)[][];
|
|
529
|
+
rows: (string | number | boolean | null)[][];
|
|
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>[];
|
|
534
534
|
title?: string | undefined;
|
|
535
535
|
columns?: ("left" | "center" | "right")[] | {
|
|
536
536
|
key: string;
|
|
@@ -559,11 +559,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
559
559
|
} | undefined;
|
|
560
560
|
}[] | undefined;
|
|
561
561
|
table?: {
|
|
562
|
-
rows: (string | number)[][];
|
|
562
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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 | undefined>[];
|
|
567
567
|
title?: string | undefined;
|
|
568
568
|
columns?: ("left" | "center" | "right")[] | {
|
|
569
569
|
key: string;
|
|
@@ -592,11 +592,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
592
592
|
} | undefined;
|
|
593
593
|
}[] | undefined;
|
|
594
594
|
table?: {
|
|
595
|
-
rows: (string | number)[][];
|
|
595
|
+
rows: (string | number | boolean | null)[][];
|
|
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>[];
|
|
600
600
|
title?: string | undefined;
|
|
601
601
|
columns?: ("left" | "center" | "right")[] | {
|
|
602
602
|
key: string;
|
|
@@ -625,11 +625,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
625
625
|
} | undefined;
|
|
626
626
|
}[] | undefined;
|
|
627
627
|
table?: {
|
|
628
|
-
rows: (string | number)[][];
|
|
628
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
629
629
|
title?: string | undefined;
|
|
630
630
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
631
631
|
} | {
|
|
632
|
-
rows: Record<string, string | number>[];
|
|
632
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
633
633
|
title?: string | undefined;
|
|
634
634
|
columns?: ("left" | "center" | "right")[] | {
|
|
635
635
|
key: string;
|
|
@@ -663,11 +663,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
663
663
|
} | undefined;
|
|
664
664
|
}[] | undefined;
|
|
665
665
|
table?: {
|
|
666
|
-
rows: (string | number)[][];
|
|
666
|
+
rows: (string | number | boolean | null)[][];
|
|
667
667
|
title?: string | undefined;
|
|
668
668
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
669
669
|
} | {
|
|
670
|
-
rows: Record<string, string | number>[];
|
|
670
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
671
671
|
title?: string | undefined;
|
|
672
672
|
columns?: ("left" | "center" | "right")[] | {
|
|
673
673
|
key: string;
|
|
@@ -696,11 +696,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
696
696
|
} | undefined;
|
|
697
697
|
}[] | undefined;
|
|
698
698
|
table?: {
|
|
699
|
-
rows: (string | number)[][];
|
|
699
|
+
rows: (string | number | boolean | null)[][];
|
|
700
700
|
title?: string | undefined;
|
|
701
701
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
702
702
|
} | {
|
|
703
|
-
rows: Record<string, string | number>[];
|
|
703
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
704
704
|
title?: string | undefined;
|
|
705
705
|
columns?: ("left" | "center" | "right")[] | {
|
|
706
706
|
key: string;
|
|
@@ -734,11 +734,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
734
734
|
} | undefined;
|
|
735
735
|
}[] | undefined;
|
|
736
736
|
table?: {
|
|
737
|
-
rows: (string | number)[][];
|
|
737
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
738
738
|
title?: string | undefined;
|
|
739
739
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
740
740
|
} | {
|
|
741
|
-
rows: Record<string, string | number>[];
|
|
741
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
742
742
|
title?: string | undefined;
|
|
743
743
|
columns?: ("left" | "center" | "right")[] | {
|
|
744
744
|
key: string;
|
|
@@ -767,11 +767,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
767
767
|
} | undefined;
|
|
768
768
|
}[] | undefined;
|
|
769
769
|
table?: {
|
|
770
|
-
rows: (string | number)[][];
|
|
770
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
771
771
|
title?: string | undefined;
|
|
772
772
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
773
773
|
} | {
|
|
774
|
-
rows: Record<string, string | number>[];
|
|
774
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
775
775
|
title?: string | undefined;
|
|
776
776
|
columns?: ("left" | "center" | "right")[] | {
|
|
777
777
|
key: string;
|
|
@@ -854,13 +854,13 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
854
854
|
title: z.ZodOptional<z.ZodString>;
|
|
855
855
|
}, {
|
|
856
856
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
857
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
857
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
858
858
|
}>, "strip", z.ZodTypeAny, {
|
|
859
|
-
rows: (string | number)[][];
|
|
859
|
+
rows: (string | number | boolean | null)[][];
|
|
860
860
|
title?: string | undefined;
|
|
861
861
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
862
862
|
}, {
|
|
863
|
-
rows: (string | number)[][];
|
|
863
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
864
864
|
title?: string | undefined;
|
|
865
865
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
866
866
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -879,9 +879,9 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
879
879
|
label?: string | undefined;
|
|
880
880
|
align?: "left" | "center" | "right" | undefined;
|
|
881
881
|
}>, "many">]>>;
|
|
882
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
882
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
883
883
|
}>, "strip", z.ZodTypeAny, {
|
|
884
|
-
rows: Record<string, string | number>[];
|
|
884
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
885
885
|
title?: string | undefined;
|
|
886
886
|
columns?: ("left" | "center" | "right")[] | {
|
|
887
887
|
key: string;
|
|
@@ -889,7 +889,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
889
889
|
align?: "left" | "center" | "right" | undefined;
|
|
890
890
|
}[] | undefined;
|
|
891
891
|
}, {
|
|
892
|
-
rows: Record<string, string | number>[];
|
|
892
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
893
893
|
title?: string | undefined;
|
|
894
894
|
columns?: ("left" | "center" | "right")[] | {
|
|
895
895
|
key: string;
|
|
@@ -912,11 +912,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
912
912
|
} | undefined;
|
|
913
913
|
}[] | undefined;
|
|
914
914
|
table?: {
|
|
915
|
-
rows: (string | number)[][];
|
|
915
|
+
rows: (string | number | boolean | null)[][];
|
|
916
916
|
title?: string | undefined;
|
|
917
917
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
918
918
|
} | {
|
|
919
|
-
rows: Record<string, string | number>[];
|
|
919
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
920
920
|
title?: string | undefined;
|
|
921
921
|
columns?: ("left" | "center" | "right")[] | {
|
|
922
922
|
key: string;
|
|
@@ -939,11 +939,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
939
939
|
} | undefined;
|
|
940
940
|
}[] | undefined;
|
|
941
941
|
table?: {
|
|
942
|
-
rows: (string | number)[][];
|
|
942
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
943
943
|
title?: string | undefined;
|
|
944
944
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
945
945
|
} | {
|
|
946
|
-
rows: Record<string, string | number>[];
|
|
946
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
947
947
|
title?: string | undefined;
|
|
948
948
|
columns?: ("left" | "center" | "right")[] | {
|
|
949
949
|
key: string;
|
|
@@ -972,11 +972,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
972
972
|
} | undefined;
|
|
973
973
|
}[] | undefined;
|
|
974
974
|
table?: {
|
|
975
|
-
rows: (string | number)[][];
|
|
975
|
+
rows: (string | number | boolean | null)[][];
|
|
976
976
|
title?: string | undefined;
|
|
977
977
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
978
978
|
} | {
|
|
979
|
-
rows: Record<string, string | number>[];
|
|
979
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
980
980
|
title?: string | undefined;
|
|
981
981
|
columns?: ("left" | "center" | "right")[] | {
|
|
982
982
|
key: string;
|
|
@@ -1005,11 +1005,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1005
1005
|
} | undefined;
|
|
1006
1006
|
}[] | undefined;
|
|
1007
1007
|
table?: {
|
|
1008
|
-
rows: (string | number)[][];
|
|
1008
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1009
1009
|
title?: string | undefined;
|
|
1010
1010
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1011
1011
|
} | {
|
|
1012
|
-
rows: Record<string, string | number>[];
|
|
1012
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1013
1013
|
title?: string | undefined;
|
|
1014
1014
|
columns?: ("left" | "center" | "right")[] | {
|
|
1015
1015
|
key: string;
|
|
@@ -1038,11 +1038,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1038
1038
|
} | undefined;
|
|
1039
1039
|
}[] | undefined;
|
|
1040
1040
|
table?: {
|
|
1041
|
-
rows: (string | number)[][];
|
|
1041
|
+
rows: (string | number | boolean | null)[][];
|
|
1042
1042
|
title?: string | undefined;
|
|
1043
1043
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1044
1044
|
} | {
|
|
1045
|
-
rows: Record<string, string | number>[];
|
|
1045
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1046
1046
|
title?: string | undefined;
|
|
1047
1047
|
columns?: ("left" | "center" | "right")[] | {
|
|
1048
1048
|
key: string;
|
|
@@ -1071,11 +1071,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1071
1071
|
} | undefined;
|
|
1072
1072
|
}[] | undefined;
|
|
1073
1073
|
table?: {
|
|
1074
|
-
rows: (string | number)[][];
|
|
1074
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1075
1075
|
title?: string | undefined;
|
|
1076
1076
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1077
1077
|
} | {
|
|
1078
|
-
rows: Record<string, string | number>[];
|
|
1078
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1079
1079
|
title?: string | undefined;
|
|
1080
1080
|
columns?: ("left" | "center" | "right")[] | {
|
|
1081
1081
|
key: string;
|
|
@@ -1157,13 +1157,13 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1157
1157
|
title: z.ZodOptional<z.ZodString>;
|
|
1158
1158
|
}, {
|
|
1159
1159
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1160
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1160
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1161
1161
|
}>, "strip", z.ZodTypeAny, {
|
|
1162
|
-
rows: (string | number)[][];
|
|
1162
|
+
rows: (string | number | boolean | null)[][];
|
|
1163
1163
|
title?: string | undefined;
|
|
1164
1164
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1165
1165
|
}, {
|
|
1166
|
-
rows: (string | number)[][];
|
|
1166
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1167
1167
|
title?: string | undefined;
|
|
1168
1168
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1169
1169
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1182,9 +1182,9 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1182
1182
|
label?: string | undefined;
|
|
1183
1183
|
align?: "left" | "center" | "right" | undefined;
|
|
1184
1184
|
}>, "many">]>>;
|
|
1185
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1185
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1186
1186
|
}>, "strip", z.ZodTypeAny, {
|
|
1187
|
-
rows: Record<string, string | number>[];
|
|
1187
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1188
1188
|
title?: string | undefined;
|
|
1189
1189
|
columns?: ("left" | "center" | "right")[] | {
|
|
1190
1190
|
key: string;
|
|
@@ -1192,7 +1192,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1192
1192
|
align?: "left" | "center" | "right" | undefined;
|
|
1193
1193
|
}[] | undefined;
|
|
1194
1194
|
}, {
|
|
1195
|
-
rows: Record<string, string | number>[];
|
|
1195
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1196
1196
|
title?: string | undefined;
|
|
1197
1197
|
columns?: ("left" | "center" | "right")[] | {
|
|
1198
1198
|
key: string;
|
|
@@ -1215,11 +1215,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1215
1215
|
} | undefined;
|
|
1216
1216
|
}[] | undefined;
|
|
1217
1217
|
table?: {
|
|
1218
|
-
rows: (string | number)[][];
|
|
1218
|
+
rows: (string | number | boolean | null)[][];
|
|
1219
1219
|
title?: string | undefined;
|
|
1220
1220
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1221
1221
|
} | {
|
|
1222
|
-
rows: Record<string, string | number>[];
|
|
1222
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1223
1223
|
title?: string | undefined;
|
|
1224
1224
|
columns?: ("left" | "center" | "right")[] | {
|
|
1225
1225
|
key: string;
|
|
@@ -1242,11 +1242,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1242
1242
|
} | undefined;
|
|
1243
1243
|
}[] | undefined;
|
|
1244
1244
|
table?: {
|
|
1245
|
-
rows: (string | number)[][];
|
|
1245
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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 | undefined>[];
|
|
1250
1250
|
title?: string | undefined;
|
|
1251
1251
|
columns?: ("left" | "center" | "right")[] | {
|
|
1252
1252
|
key: string;
|
|
@@ -1275,11 +1275,11 @@ export declare const pluginDataSchema: 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;
|
|
@@ -1308,11 +1308,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1308
1308
|
} | undefined;
|
|
1309
1309
|
}[] | undefined;
|
|
1310
1310
|
table?: {
|
|
1311
|
-
rows: (string | number)[][];
|
|
1311
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1312
1312
|
title?: string | undefined;
|
|
1313
1313
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1314
1314
|
} | {
|
|
1315
|
-
rows: Record<string, string | number>[];
|
|
1315
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1316
1316
|
title?: string | undefined;
|
|
1317
1317
|
columns?: ("left" | "center" | "right")[] | {
|
|
1318
1318
|
key: string;
|
|
@@ -1341,11 +1341,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1341
1341
|
} | undefined;
|
|
1342
1342
|
}[] | undefined;
|
|
1343
1343
|
table?: {
|
|
1344
|
-
rows: (string | number)[][];
|
|
1344
|
+
rows: (string | number | boolean | null)[][];
|
|
1345
1345
|
title?: string | undefined;
|
|
1346
1346
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1347
1347
|
} | {
|
|
1348
|
-
rows: Record<string, string | number>[];
|
|
1348
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1349
1349
|
title?: string | undefined;
|
|
1350
1350
|
columns?: ("left" | "center" | "right")[] | {
|
|
1351
1351
|
key: string;
|
|
@@ -1374,11 +1374,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1374
1374
|
} | undefined;
|
|
1375
1375
|
}[] | undefined;
|
|
1376
1376
|
table?: {
|
|
1377
|
-
rows: (string | number)[][];
|
|
1377
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1378
1378
|
title?: string | undefined;
|
|
1379
1379
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1380
1380
|
} | {
|
|
1381
|
-
rows: Record<string, string | number>[];
|
|
1381
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1382
1382
|
title?: string | undefined;
|
|
1383
1383
|
columns?: ("left" | "center" | "right")[] | {
|
|
1384
1384
|
key: string;
|
|
@@ -1505,11 +1505,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1505
1505
|
} | undefined;
|
|
1506
1506
|
}[] | undefined;
|
|
1507
1507
|
table?: {
|
|
1508
|
-
rows: (string | number)[][];
|
|
1508
|
+
rows: (string | number | boolean | null)[][];
|
|
1509
1509
|
title?: string | undefined;
|
|
1510
1510
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1511
1511
|
} | {
|
|
1512
|
-
rows: Record<string, string | number>[];
|
|
1512
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1513
1513
|
title?: string | undefined;
|
|
1514
1514
|
columns?: ("left" | "center" | "right")[] | {
|
|
1515
1515
|
key: string;
|
|
@@ -1538,11 +1538,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1538
1538
|
} | undefined;
|
|
1539
1539
|
}[] | undefined;
|
|
1540
1540
|
table?: {
|
|
1541
|
-
rows: (string | number)[][];
|
|
1541
|
+
rows: (string | number | boolean | null)[][];
|
|
1542
1542
|
title?: string | undefined;
|
|
1543
1543
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1544
1544
|
} | {
|
|
1545
|
-
rows: Record<string, string | number>[];
|
|
1545
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1546
1546
|
title?: string | undefined;
|
|
1547
1547
|
columns?: ("left" | "center" | "right")[] | {
|
|
1548
1548
|
key: string;
|
|
@@ -1572,11 +1572,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1572
1572
|
} | undefined;
|
|
1573
1573
|
}[] | undefined;
|
|
1574
1574
|
table?: {
|
|
1575
|
-
rows: (string | number)[][];
|
|
1575
|
+
rows: (string | number | boolean | null)[][];
|
|
1576
1576
|
title?: string | undefined;
|
|
1577
1577
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1578
1578
|
} | {
|
|
1579
|
-
rows: Record<string, string | number>[];
|
|
1579
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1580
1580
|
title?: string | undefined;
|
|
1581
1581
|
columns?: ("left" | "center" | "right")[] | {
|
|
1582
1582
|
key: string;
|
|
@@ -1605,11 +1605,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1605
1605
|
} | undefined;
|
|
1606
1606
|
}[] | undefined;
|
|
1607
1607
|
table?: {
|
|
1608
|
-
rows: (string | number)[][];
|
|
1608
|
+
rows: (string | number | boolean | null)[][];
|
|
1609
1609
|
title?: string | undefined;
|
|
1610
1610
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1611
1611
|
} | {
|
|
1612
|
-
rows: Record<string, string | number>[];
|
|
1612
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1613
1613
|
title?: string | undefined;
|
|
1614
1614
|
columns?: ("left" | "center" | "right")[] | {
|
|
1615
1615
|
key: string;
|
|
@@ -1660,11 +1660,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1660
1660
|
} | undefined;
|
|
1661
1661
|
}[] | undefined;
|
|
1662
1662
|
table?: {
|
|
1663
|
-
rows: (string | number)[][];
|
|
1663
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1664
1664
|
title?: string | undefined;
|
|
1665
1665
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1666
1666
|
} | {
|
|
1667
|
-
rows: Record<string, string | number>[];
|
|
1667
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1668
1668
|
title?: string | undefined;
|
|
1669
1669
|
columns?: ("left" | "center" | "right")[] | {
|
|
1670
1670
|
key: string;
|
|
@@ -1693,11 +1693,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1693
1693
|
} | undefined;
|
|
1694
1694
|
}[] | undefined;
|
|
1695
1695
|
table?: {
|
|
1696
|
-
rows: (string | number)[][];
|
|
1696
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1697
1697
|
title?: string | undefined;
|
|
1698
1698
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1699
1699
|
} | {
|
|
1700
|
-
rows: Record<string, string | number>[];
|
|
1700
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1701
1701
|
title?: string | undefined;
|
|
1702
1702
|
columns?: ("left" | "center" | "right")[] | {
|
|
1703
1703
|
key: string;
|
|
@@ -1727,11 +1727,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1727
1727
|
} | undefined;
|
|
1728
1728
|
}[] | undefined;
|
|
1729
1729
|
table?: {
|
|
1730
|
-
rows: (string | number)[][];
|
|
1730
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1731
1731
|
title?: string | undefined;
|
|
1732
1732
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1733
1733
|
} | {
|
|
1734
|
-
rows: Record<string, string | number>[];
|
|
1734
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1735
1735
|
title?: string | undefined;
|
|
1736
1736
|
columns?: ("left" | "center" | "right")[] | {
|
|
1737
1737
|
key: string;
|
|
@@ -1760,11 +1760,11 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1760
1760
|
} | undefined;
|
|
1761
1761
|
}[] | undefined;
|
|
1762
1762
|
table?: {
|
|
1763
|
-
rows: (string | number)[][];
|
|
1763
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1764
1764
|
title?: string | undefined;
|
|
1765
1765
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1766
1766
|
} | {
|
|
1767
|
-
rows: Record<string, string | number>[];
|
|
1767
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1768
1768
|
title?: string | undefined;
|
|
1769
1769
|
columns?: ("left" | "center" | "right")[] | {
|
|
1770
1770
|
key: string;
|
|
@@ -1879,13 +1879,13 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
1879
1879
|
title: z.ZodOptional<z.ZodString>;
|
|
1880
1880
|
}, {
|
|
1881
1881
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1882
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1882
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1883
1883
|
}>, "strip", z.ZodTypeAny, {
|
|
1884
|
-
rows: (string | number)[][];
|
|
1884
|
+
rows: (string | number | boolean | null)[][];
|
|
1885
1885
|
title?: string | undefined;
|
|
1886
1886
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1887
1887
|
}, {
|
|
1888
|
-
rows: (string | number)[][];
|
|
1888
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1889
1889
|
title?: string | undefined;
|
|
1890
1890
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1891
1891
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1904,9 +1904,9 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
1904
1904
|
label?: string | undefined;
|
|
1905
1905
|
align?: "left" | "center" | "right" | undefined;
|
|
1906
1906
|
}>, "many">]>>;
|
|
1907
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1907
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1908
1908
|
}>, "strip", z.ZodTypeAny, {
|
|
1909
|
-
rows: Record<string, string | number>[];
|
|
1909
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1910
1910
|
title?: string | undefined;
|
|
1911
1911
|
columns?: ("left" | "center" | "right")[] | {
|
|
1912
1912
|
key: string;
|
|
@@ -1914,7 +1914,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
1914
1914
|
align?: "left" | "center" | "right" | undefined;
|
|
1915
1915
|
}[] | undefined;
|
|
1916
1916
|
}, {
|
|
1917
|
-
rows: Record<string, string | number>[];
|
|
1917
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1918
1918
|
title?: string | undefined;
|
|
1919
1919
|
columns?: ("left" | "center" | "right")[] | {
|
|
1920
1920
|
key: string;
|
|
@@ -1937,11 +1937,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
1937
1937
|
} | undefined;
|
|
1938
1938
|
}[] | undefined;
|
|
1939
1939
|
table?: {
|
|
1940
|
-
rows: (string | number)[][];
|
|
1940
|
+
rows: (string | number | boolean | null)[][];
|
|
1941
1941
|
title?: string | undefined;
|
|
1942
1942
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1943
1943
|
} | {
|
|
1944
|
-
rows: Record<string, string | number>[];
|
|
1944
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1945
1945
|
title?: string | undefined;
|
|
1946
1946
|
columns?: ("left" | "center" | "right")[] | {
|
|
1947
1947
|
key: string;
|
|
@@ -1964,11 +1964,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
1964
1964
|
} | undefined;
|
|
1965
1965
|
}[] | undefined;
|
|
1966
1966
|
table?: {
|
|
1967
|
-
rows: (string | number)[][];
|
|
1967
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1968
1968
|
title?: string | undefined;
|
|
1969
1969
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1970
1970
|
} | {
|
|
1971
|
-
rows: Record<string, string | number>[];
|
|
1971
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1972
1972
|
title?: string | undefined;
|
|
1973
1973
|
columns?: ("left" | "center" | "right")[] | {
|
|
1974
1974
|
key: string;
|
|
@@ -1997,11 +1997,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
1997
1997
|
} | undefined;
|
|
1998
1998
|
}[] | undefined;
|
|
1999
1999
|
table?: {
|
|
2000
|
-
rows: (string | number)[][];
|
|
2000
|
+
rows: (string | number | boolean | null)[][];
|
|
2001
2001
|
title?: string | undefined;
|
|
2002
2002
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2003
2003
|
} | {
|
|
2004
|
-
rows: Record<string, string | number>[];
|
|
2004
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2005
2005
|
title?: string | undefined;
|
|
2006
2006
|
columns?: ("left" | "center" | "right")[] | {
|
|
2007
2007
|
key: string;
|
|
@@ -2030,11 +2030,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2030
2030
|
} | undefined;
|
|
2031
2031
|
}[] | undefined;
|
|
2032
2032
|
table?: {
|
|
2033
|
-
rows: (string | number)[][];
|
|
2033
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2034
2034
|
title?: string | undefined;
|
|
2035
2035
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2036
2036
|
} | {
|
|
2037
|
-
rows: Record<string, string | number>[];
|
|
2037
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2038
2038
|
title?: string | undefined;
|
|
2039
2039
|
columns?: ("left" | "center" | "right")[] | {
|
|
2040
2040
|
key: string;
|
|
@@ -2063,11 +2063,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2063
2063
|
} | undefined;
|
|
2064
2064
|
}[] | undefined;
|
|
2065
2065
|
table?: {
|
|
2066
|
-
rows: (string | number)[][];
|
|
2066
|
+
rows: (string | number | boolean | null)[][];
|
|
2067
2067
|
title?: string | undefined;
|
|
2068
2068
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2069
2069
|
} | {
|
|
2070
|
-
rows: Record<string, string | number>[];
|
|
2070
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2071
2071
|
title?: string | undefined;
|
|
2072
2072
|
columns?: ("left" | "center" | "right")[] | {
|
|
2073
2073
|
key: string;
|
|
@@ -2096,11 +2096,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2096
2096
|
} | undefined;
|
|
2097
2097
|
}[] | undefined;
|
|
2098
2098
|
table?: {
|
|
2099
|
-
rows: (string | number)[][];
|
|
2099
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2100
2100
|
title?: string | undefined;
|
|
2101
2101
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2102
2102
|
} | {
|
|
2103
|
-
rows: Record<string, string | number>[];
|
|
2103
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2104
2104
|
title?: string | undefined;
|
|
2105
2105
|
columns?: ("left" | "center" | "right")[] | {
|
|
2106
2106
|
key: string;
|
|
@@ -2182,13 +2182,13 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2182
2182
|
title: z.ZodOptional<z.ZodString>;
|
|
2183
2183
|
}, {
|
|
2184
2184
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
2185
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
2185
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
2186
2186
|
}>, "strip", z.ZodTypeAny, {
|
|
2187
|
-
rows: (string | number)[][];
|
|
2187
|
+
rows: (string | number | boolean | null)[][];
|
|
2188
2188
|
title?: string | undefined;
|
|
2189
2189
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2190
2190
|
}, {
|
|
2191
|
-
rows: (string | number)[][];
|
|
2191
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2192
2192
|
title?: string | undefined;
|
|
2193
2193
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2194
2194
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2207,9 +2207,9 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2207
2207
|
label?: string | undefined;
|
|
2208
2208
|
align?: "left" | "center" | "right" | undefined;
|
|
2209
2209
|
}>, "many">]>>;
|
|
2210
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
2210
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
2211
2211
|
}>, "strip", z.ZodTypeAny, {
|
|
2212
|
-
rows: Record<string, string | number>[];
|
|
2212
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2213
2213
|
title?: string | undefined;
|
|
2214
2214
|
columns?: ("left" | "center" | "right")[] | {
|
|
2215
2215
|
key: string;
|
|
@@ -2217,7 +2217,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2217
2217
|
align?: "left" | "center" | "right" | undefined;
|
|
2218
2218
|
}[] | undefined;
|
|
2219
2219
|
}, {
|
|
2220
|
-
rows: Record<string, string | number>[];
|
|
2220
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2221
2221
|
title?: string | undefined;
|
|
2222
2222
|
columns?: ("left" | "center" | "right")[] | {
|
|
2223
2223
|
key: string;
|
|
@@ -2240,11 +2240,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2240
2240
|
} | undefined;
|
|
2241
2241
|
}[] | undefined;
|
|
2242
2242
|
table?: {
|
|
2243
|
-
rows: (string | number)[][];
|
|
2243
|
+
rows: (string | number | boolean | null)[][];
|
|
2244
2244
|
title?: string | undefined;
|
|
2245
2245
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2246
2246
|
} | {
|
|
2247
|
-
rows: Record<string, string | number>[];
|
|
2247
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2248
2248
|
title?: string | undefined;
|
|
2249
2249
|
columns?: ("left" | "center" | "right")[] | {
|
|
2250
2250
|
key: string;
|
|
@@ -2267,11 +2267,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2267
2267
|
} | undefined;
|
|
2268
2268
|
}[] | undefined;
|
|
2269
2269
|
table?: {
|
|
2270
|
-
rows: (string | number)[][];
|
|
2270
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2271
2271
|
title?: string | undefined;
|
|
2272
2272
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2273
2273
|
} | {
|
|
2274
|
-
rows: Record<string, string | number>[];
|
|
2274
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2275
2275
|
title?: string | undefined;
|
|
2276
2276
|
columns?: ("left" | "center" | "right")[] | {
|
|
2277
2277
|
key: string;
|
|
@@ -2300,11 +2300,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2300
2300
|
} | undefined;
|
|
2301
2301
|
}[] | undefined;
|
|
2302
2302
|
table?: {
|
|
2303
|
-
rows: (string | number)[][];
|
|
2303
|
+
rows: (string | number | boolean | null)[][];
|
|
2304
2304
|
title?: string | undefined;
|
|
2305
2305
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2306
2306
|
} | {
|
|
2307
|
-
rows: Record<string, string | number>[];
|
|
2307
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2308
2308
|
title?: string | undefined;
|
|
2309
2309
|
columns?: ("left" | "center" | "right")[] | {
|
|
2310
2310
|
key: string;
|
|
@@ -2333,11 +2333,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2333
2333
|
} | undefined;
|
|
2334
2334
|
}[] | undefined;
|
|
2335
2335
|
table?: {
|
|
2336
|
-
rows: (string | number)[][];
|
|
2336
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2337
2337
|
title?: string | undefined;
|
|
2338
2338
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2339
2339
|
} | {
|
|
2340
|
-
rows: Record<string, string | number>[];
|
|
2340
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2341
2341
|
title?: string | undefined;
|
|
2342
2342
|
columns?: ("left" | "center" | "right")[] | {
|
|
2343
2343
|
key: string;
|
|
@@ -2366,11 +2366,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2366
2366
|
} | undefined;
|
|
2367
2367
|
}[] | undefined;
|
|
2368
2368
|
table?: {
|
|
2369
|
-
rows: (string | number)[][];
|
|
2369
|
+
rows: (string | number | boolean | null)[][];
|
|
2370
2370
|
title?: string | undefined;
|
|
2371
2371
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2372
2372
|
} | {
|
|
2373
|
-
rows: Record<string, string | number>[];
|
|
2373
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2374
2374
|
title?: string | undefined;
|
|
2375
2375
|
columns?: ("left" | "center" | "right")[] | {
|
|
2376
2376
|
key: string;
|
|
@@ -2399,11 +2399,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2399
2399
|
} | undefined;
|
|
2400
2400
|
}[] | undefined;
|
|
2401
2401
|
table?: {
|
|
2402
|
-
rows: (string | number)[][];
|
|
2402
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2403
2403
|
title?: string | undefined;
|
|
2404
2404
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2405
2405
|
} | {
|
|
2406
|
-
rows: Record<string, string | number>[];
|
|
2406
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2407
2407
|
title?: string | undefined;
|
|
2408
2408
|
columns?: ("left" | "center" | "right")[] | {
|
|
2409
2409
|
key: string;
|
|
@@ -2437,11 +2437,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2437
2437
|
} | undefined;
|
|
2438
2438
|
}[] | undefined;
|
|
2439
2439
|
table?: {
|
|
2440
|
-
rows: (string | number)[][];
|
|
2440
|
+
rows: (string | number | boolean | null)[][];
|
|
2441
2441
|
title?: string | undefined;
|
|
2442
2442
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2443
2443
|
} | {
|
|
2444
|
-
rows: Record<string, string | number>[];
|
|
2444
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2445
2445
|
title?: string | undefined;
|
|
2446
2446
|
columns?: ("left" | "center" | "right")[] | {
|
|
2447
2447
|
key: string;
|
|
@@ -2470,11 +2470,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2470
2470
|
} | undefined;
|
|
2471
2471
|
}[] | undefined;
|
|
2472
2472
|
table?: {
|
|
2473
|
-
rows: (string | number)[][];
|
|
2473
|
+
rows: (string | number | boolean | null)[][];
|
|
2474
2474
|
title?: string | undefined;
|
|
2475
2475
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2476
2476
|
} | {
|
|
2477
|
-
rows: Record<string, string | number>[];
|
|
2477
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2478
2478
|
title?: string | undefined;
|
|
2479
2479
|
columns?: ("left" | "center" | "right")[] | {
|
|
2480
2480
|
key: string;
|
|
@@ -2508,11 +2508,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2508
2508
|
} | undefined;
|
|
2509
2509
|
}[] | undefined;
|
|
2510
2510
|
table?: {
|
|
2511
|
-
rows: (string | number)[][];
|
|
2511
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2512
2512
|
title?: string | undefined;
|
|
2513
2513
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2514
2514
|
} | {
|
|
2515
|
-
rows: Record<string, string | number>[];
|
|
2515
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2516
2516
|
title?: string | undefined;
|
|
2517
2517
|
columns?: ("left" | "center" | "right")[] | {
|
|
2518
2518
|
key: string;
|
|
@@ -2541,11 +2541,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2541
2541
|
} | undefined;
|
|
2542
2542
|
}[] | undefined;
|
|
2543
2543
|
table?: {
|
|
2544
|
-
rows: (string | number)[][];
|
|
2544
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2545
2545
|
title?: string | undefined;
|
|
2546
2546
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2547
2547
|
} | {
|
|
2548
|
-
rows: Record<string, string | number>[];
|
|
2548
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2549
2549
|
title?: string | undefined;
|
|
2550
2550
|
columns?: ("left" | "center" | "right")[] | {
|
|
2551
2551
|
key: string;
|
|
@@ -2628,13 +2628,13 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2628
2628
|
title: z.ZodOptional<z.ZodString>;
|
|
2629
2629
|
}, {
|
|
2630
2630
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
2631
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
2631
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
2632
2632
|
}>, "strip", z.ZodTypeAny, {
|
|
2633
|
-
rows: (string | number)[][];
|
|
2633
|
+
rows: (string | number | boolean | null)[][];
|
|
2634
2634
|
title?: string | undefined;
|
|
2635
2635
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2636
2636
|
}, {
|
|
2637
|
-
rows: (string | number)[][];
|
|
2637
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2638
2638
|
title?: string | undefined;
|
|
2639
2639
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2640
2640
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2653,9 +2653,9 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2653
2653
|
label?: string | undefined;
|
|
2654
2654
|
align?: "left" | "center" | "right" | undefined;
|
|
2655
2655
|
}>, "many">]>>;
|
|
2656
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
2656
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
2657
2657
|
}>, "strip", z.ZodTypeAny, {
|
|
2658
|
-
rows: Record<string, string | number>[];
|
|
2658
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2659
2659
|
title?: string | undefined;
|
|
2660
2660
|
columns?: ("left" | "center" | "right")[] | {
|
|
2661
2661
|
key: string;
|
|
@@ -2663,7 +2663,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2663
2663
|
align?: "left" | "center" | "right" | undefined;
|
|
2664
2664
|
}[] | undefined;
|
|
2665
2665
|
}, {
|
|
2666
|
-
rows: Record<string, string | number>[];
|
|
2666
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2667
2667
|
title?: string | undefined;
|
|
2668
2668
|
columns?: ("left" | "center" | "right")[] | {
|
|
2669
2669
|
key: string;
|
|
@@ -2686,11 +2686,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2686
2686
|
} | undefined;
|
|
2687
2687
|
}[] | undefined;
|
|
2688
2688
|
table?: {
|
|
2689
|
-
rows: (string | number)[][];
|
|
2689
|
+
rows: (string | number | boolean | null)[][];
|
|
2690
2690
|
title?: string | undefined;
|
|
2691
2691
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2692
2692
|
} | {
|
|
2693
|
-
rows: Record<string, string | number>[];
|
|
2693
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2694
2694
|
title?: string | undefined;
|
|
2695
2695
|
columns?: ("left" | "center" | "right")[] | {
|
|
2696
2696
|
key: string;
|
|
@@ -2713,11 +2713,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2713
2713
|
} | undefined;
|
|
2714
2714
|
}[] | undefined;
|
|
2715
2715
|
table?: {
|
|
2716
|
-
rows: (string | number)[][];
|
|
2716
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2717
2717
|
title?: string | undefined;
|
|
2718
2718
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2719
2719
|
} | {
|
|
2720
|
-
rows: Record<string, string | number>[];
|
|
2720
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2721
2721
|
title?: string | undefined;
|
|
2722
2722
|
columns?: ("left" | "center" | "right")[] | {
|
|
2723
2723
|
key: string;
|
|
@@ -2746,11 +2746,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2746
2746
|
} | undefined;
|
|
2747
2747
|
}[] | undefined;
|
|
2748
2748
|
table?: {
|
|
2749
|
-
rows: (string | number)[][];
|
|
2749
|
+
rows: (string | number | boolean | null)[][];
|
|
2750
2750
|
title?: string | undefined;
|
|
2751
2751
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2752
2752
|
} | {
|
|
2753
|
-
rows: Record<string, string | number>[];
|
|
2753
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2754
2754
|
title?: string | undefined;
|
|
2755
2755
|
columns?: ("left" | "center" | "right")[] | {
|
|
2756
2756
|
key: string;
|
|
@@ -2779,11 +2779,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2779
2779
|
} | undefined;
|
|
2780
2780
|
}[] | undefined;
|
|
2781
2781
|
table?: {
|
|
2782
|
-
rows: (string | number)[][];
|
|
2782
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2783
2783
|
title?: string | undefined;
|
|
2784
2784
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2785
2785
|
} | {
|
|
2786
|
-
rows: Record<string, string | number>[];
|
|
2786
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2787
2787
|
title?: string | undefined;
|
|
2788
2788
|
columns?: ("left" | "center" | "right")[] | {
|
|
2789
2789
|
key: string;
|
|
@@ -2812,11 +2812,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2812
2812
|
} | undefined;
|
|
2813
2813
|
}[] | undefined;
|
|
2814
2814
|
table?: {
|
|
2815
|
-
rows: (string | number)[][];
|
|
2815
|
+
rows: (string | number | boolean | null)[][];
|
|
2816
2816
|
title?: string | undefined;
|
|
2817
2817
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2818
2818
|
} | {
|
|
2819
|
-
rows: Record<string, string | number>[];
|
|
2819
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2820
2820
|
title?: string | undefined;
|
|
2821
2821
|
columns?: ("left" | "center" | "right")[] | {
|
|
2822
2822
|
key: string;
|
|
@@ -2845,11 +2845,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2845
2845
|
} | undefined;
|
|
2846
2846
|
}[] | undefined;
|
|
2847
2847
|
table?: {
|
|
2848
|
-
rows: (string | number)[][];
|
|
2848
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2849
2849
|
title?: string | undefined;
|
|
2850
2850
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2851
2851
|
} | {
|
|
2852
|
-
rows: Record<string, string | number>[];
|
|
2852
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2853
2853
|
title?: string | undefined;
|
|
2854
2854
|
columns?: ("left" | "center" | "right")[] | {
|
|
2855
2855
|
key: string;
|
|
@@ -2931,13 +2931,13 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2931
2931
|
title: z.ZodOptional<z.ZodString>;
|
|
2932
2932
|
}, {
|
|
2933
2933
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
2934
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
2934
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
2935
2935
|
}>, "strip", z.ZodTypeAny, {
|
|
2936
|
-
rows: (string | number)[][];
|
|
2936
|
+
rows: (string | number | boolean | null)[][];
|
|
2937
2937
|
title?: string | undefined;
|
|
2938
2938
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2939
2939
|
}, {
|
|
2940
|
-
rows: (string | number)[][];
|
|
2940
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
2941
2941
|
title?: string | undefined;
|
|
2942
2942
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2943
2943
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2956,9 +2956,9 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2956
2956
|
label?: string | undefined;
|
|
2957
2957
|
align?: "left" | "center" | "right" | undefined;
|
|
2958
2958
|
}>, "many">]>>;
|
|
2959
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
2959
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
2960
2960
|
}>, "strip", z.ZodTypeAny, {
|
|
2961
|
-
rows: Record<string, string | number>[];
|
|
2961
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2962
2962
|
title?: string | undefined;
|
|
2963
2963
|
columns?: ("left" | "center" | "right")[] | {
|
|
2964
2964
|
key: string;
|
|
@@ -2966,7 +2966,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2966
2966
|
align?: "left" | "center" | "right" | undefined;
|
|
2967
2967
|
}[] | undefined;
|
|
2968
2968
|
}, {
|
|
2969
|
-
rows: Record<string, string | number>[];
|
|
2969
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
2970
2970
|
title?: string | undefined;
|
|
2971
2971
|
columns?: ("left" | "center" | "right")[] | {
|
|
2972
2972
|
key: string;
|
|
@@ -2989,11 +2989,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
2989
2989
|
} | undefined;
|
|
2990
2990
|
}[] | undefined;
|
|
2991
2991
|
table?: {
|
|
2992
|
-
rows: (string | number)[][];
|
|
2992
|
+
rows: (string | number | boolean | null)[][];
|
|
2993
2993
|
title?: string | undefined;
|
|
2994
2994
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
2995
2995
|
} | {
|
|
2996
|
-
rows: Record<string, string | number>[];
|
|
2996
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
2997
2997
|
title?: string | undefined;
|
|
2998
2998
|
columns?: ("left" | "center" | "right")[] | {
|
|
2999
2999
|
key: string;
|
|
@@ -3016,11 +3016,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3016
3016
|
} | undefined;
|
|
3017
3017
|
}[] | undefined;
|
|
3018
3018
|
table?: {
|
|
3019
|
-
rows: (string | number)[][];
|
|
3019
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3020
3020
|
title?: string | undefined;
|
|
3021
3021
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3022
3022
|
} | {
|
|
3023
|
-
rows: Record<string, string | number>[];
|
|
3023
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3024
3024
|
title?: string | undefined;
|
|
3025
3025
|
columns?: ("left" | "center" | "right")[] | {
|
|
3026
3026
|
key: string;
|
|
@@ -3049,11 +3049,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3049
3049
|
} | undefined;
|
|
3050
3050
|
}[] | undefined;
|
|
3051
3051
|
table?: {
|
|
3052
|
-
rows: (string | number)[][];
|
|
3052
|
+
rows: (string | number | boolean | null)[][];
|
|
3053
3053
|
title?: string | undefined;
|
|
3054
3054
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3055
3055
|
} | {
|
|
3056
|
-
rows: Record<string, string | number>[];
|
|
3056
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3057
3057
|
title?: string | undefined;
|
|
3058
3058
|
columns?: ("left" | "center" | "right")[] | {
|
|
3059
3059
|
key: string;
|
|
@@ -3082,11 +3082,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3082
3082
|
} | undefined;
|
|
3083
3083
|
}[] | undefined;
|
|
3084
3084
|
table?: {
|
|
3085
|
-
rows: (string | number)[][];
|
|
3085
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3086
3086
|
title?: string | undefined;
|
|
3087
3087
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3088
3088
|
} | {
|
|
3089
|
-
rows: Record<string, string | number>[];
|
|
3089
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3090
3090
|
title?: string | undefined;
|
|
3091
3091
|
columns?: ("left" | "center" | "right")[] | {
|
|
3092
3092
|
key: string;
|
|
@@ -3115,11 +3115,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3115
3115
|
} | undefined;
|
|
3116
3116
|
}[] | undefined;
|
|
3117
3117
|
table?: {
|
|
3118
|
-
rows: (string | number)[][];
|
|
3118
|
+
rows: (string | number | boolean | null)[][];
|
|
3119
3119
|
title?: string | undefined;
|
|
3120
3120
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3121
3121
|
} | {
|
|
3122
|
-
rows: Record<string, string | number>[];
|
|
3122
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3123
3123
|
title?: string | undefined;
|
|
3124
3124
|
columns?: ("left" | "center" | "right")[] | {
|
|
3125
3125
|
key: string;
|
|
@@ -3148,11 +3148,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3148
3148
|
} | undefined;
|
|
3149
3149
|
}[] | undefined;
|
|
3150
3150
|
table?: {
|
|
3151
|
-
rows: (string | number)[][];
|
|
3151
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3152
3152
|
title?: string | undefined;
|
|
3153
3153
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3154
3154
|
} | {
|
|
3155
|
-
rows: Record<string, string | number>[];
|
|
3155
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3156
3156
|
title?: string | undefined;
|
|
3157
3157
|
columns?: ("left" | "center" | "right")[] | {
|
|
3158
3158
|
key: string;
|
|
@@ -3282,11 +3282,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3282
3282
|
} | undefined;
|
|
3283
3283
|
}[] | undefined;
|
|
3284
3284
|
table?: {
|
|
3285
|
-
rows: (string | number)[][];
|
|
3285
|
+
rows: (string | number | boolean | null)[][];
|
|
3286
3286
|
title?: string | undefined;
|
|
3287
3287
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3288
3288
|
} | {
|
|
3289
|
-
rows: Record<string, string | number>[];
|
|
3289
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3290
3290
|
title?: string | undefined;
|
|
3291
3291
|
columns?: ("left" | "center" | "right")[] | {
|
|
3292
3292
|
key: string;
|
|
@@ -3315,11 +3315,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3315
3315
|
} | undefined;
|
|
3316
3316
|
}[] | undefined;
|
|
3317
3317
|
table?: {
|
|
3318
|
-
rows: (string | number)[][];
|
|
3318
|
+
rows: (string | number | boolean | null)[][];
|
|
3319
3319
|
title?: string | undefined;
|
|
3320
3320
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3321
3321
|
} | {
|
|
3322
|
-
rows: Record<string, string | number>[];
|
|
3322
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3323
3323
|
title?: string | undefined;
|
|
3324
3324
|
columns?: ("left" | "center" | "right")[] | {
|
|
3325
3325
|
key: string;
|
|
@@ -3349,11 +3349,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3349
3349
|
} | undefined;
|
|
3350
3350
|
}[] | undefined;
|
|
3351
3351
|
table?: {
|
|
3352
|
-
rows: (string | number)[][];
|
|
3352
|
+
rows: (string | number | boolean | null)[][];
|
|
3353
3353
|
title?: string | undefined;
|
|
3354
3354
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3355
3355
|
} | {
|
|
3356
|
-
rows: Record<string, string | number>[];
|
|
3356
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3357
3357
|
title?: string | undefined;
|
|
3358
3358
|
columns?: ("left" | "center" | "right")[] | {
|
|
3359
3359
|
key: string;
|
|
@@ -3382,11 +3382,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3382
3382
|
} | undefined;
|
|
3383
3383
|
}[] | undefined;
|
|
3384
3384
|
table?: {
|
|
3385
|
-
rows: (string | number)[][];
|
|
3385
|
+
rows: (string | number | boolean | null)[][];
|
|
3386
3386
|
title?: string | undefined;
|
|
3387
3387
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3388
3388
|
} | {
|
|
3389
|
-
rows: Record<string, string | number>[];
|
|
3389
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3390
3390
|
title?: string | undefined;
|
|
3391
3391
|
columns?: ("left" | "center" | "right")[] | {
|
|
3392
3392
|
key: string;
|
|
@@ -3444,11 +3444,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3444
3444
|
} | undefined;
|
|
3445
3445
|
}[] | undefined;
|
|
3446
3446
|
table?: {
|
|
3447
|
-
rows: (string | number)[][];
|
|
3447
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3448
3448
|
title?: string | undefined;
|
|
3449
3449
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3450
3450
|
} | {
|
|
3451
|
-
rows: Record<string, string | number>[];
|
|
3451
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3452
3452
|
title?: string | undefined;
|
|
3453
3453
|
columns?: ("left" | "center" | "right")[] | {
|
|
3454
3454
|
key: string;
|
|
@@ -3477,11 +3477,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3477
3477
|
} | undefined;
|
|
3478
3478
|
}[] | undefined;
|
|
3479
3479
|
table?: {
|
|
3480
|
-
rows: (string | number)[][];
|
|
3480
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3481
3481
|
title?: string | undefined;
|
|
3482
3482
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3483
3483
|
} | {
|
|
3484
|
-
rows: Record<string, string | number>[];
|
|
3484
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3485
3485
|
title?: string | undefined;
|
|
3486
3486
|
columns?: ("left" | "center" | "right")[] | {
|
|
3487
3487
|
key: string;
|
|
@@ -3511,11 +3511,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3511
3511
|
} | undefined;
|
|
3512
3512
|
}[] | undefined;
|
|
3513
3513
|
table?: {
|
|
3514
|
-
rows: (string | number)[][];
|
|
3514
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3515
3515
|
title?: string | undefined;
|
|
3516
3516
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3517
3517
|
} | {
|
|
3518
|
-
rows: Record<string, string | number>[];
|
|
3518
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3519
3519
|
title?: string | undefined;
|
|
3520
3520
|
columns?: ("left" | "center" | "right")[] | {
|
|
3521
3521
|
key: string;
|
|
@@ -3544,11 +3544,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3544
3544
|
} | undefined;
|
|
3545
3545
|
}[] | undefined;
|
|
3546
3546
|
table?: {
|
|
3547
|
-
rows: (string | number)[][];
|
|
3547
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3548
3548
|
title?: string | undefined;
|
|
3549
3549
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3550
3550
|
} | {
|
|
3551
|
-
rows: Record<string, string | number>[];
|
|
3551
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3552
3552
|
title?: string | undefined;
|
|
3553
3553
|
columns?: ("left" | "center" | "right")[] | {
|
|
3554
3554
|
key: string;
|
|
@@ -3606,11 +3606,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3606
3606
|
} | undefined;
|
|
3607
3607
|
}[] | undefined;
|
|
3608
3608
|
table?: {
|
|
3609
|
-
rows: (string | number)[][];
|
|
3609
|
+
rows: (string | number | boolean | null)[][];
|
|
3610
3610
|
title?: string | undefined;
|
|
3611
3611
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3612
3612
|
} | {
|
|
3613
|
-
rows: Record<string, string | number>[];
|
|
3613
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3614
3614
|
title?: string | undefined;
|
|
3615
3615
|
columns?: ("left" | "center" | "right")[] | {
|
|
3616
3616
|
key: string;
|
|
@@ -3639,11 +3639,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3639
3639
|
} | undefined;
|
|
3640
3640
|
}[] | undefined;
|
|
3641
3641
|
table?: {
|
|
3642
|
-
rows: (string | number)[][];
|
|
3642
|
+
rows: (string | number | boolean | null)[][];
|
|
3643
3643
|
title?: string | undefined;
|
|
3644
3644
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3645
3645
|
} | {
|
|
3646
|
-
rows: Record<string, string | number>[];
|
|
3646
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3647
3647
|
title?: string | undefined;
|
|
3648
3648
|
columns?: ("left" | "center" | "right")[] | {
|
|
3649
3649
|
key: string;
|
|
@@ -3673,11 +3673,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3673
3673
|
} | undefined;
|
|
3674
3674
|
}[] | undefined;
|
|
3675
3675
|
table?: {
|
|
3676
|
-
rows: (string | number)[][];
|
|
3676
|
+
rows: (string | number | boolean | null)[][];
|
|
3677
3677
|
title?: string | undefined;
|
|
3678
3678
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3679
3679
|
} | {
|
|
3680
|
-
rows: Record<string, string | number>[];
|
|
3680
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3681
3681
|
title?: string | undefined;
|
|
3682
3682
|
columns?: ("left" | "center" | "right")[] | {
|
|
3683
3683
|
key: string;
|
|
@@ -3706,11 +3706,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3706
3706
|
} | undefined;
|
|
3707
3707
|
}[] | undefined;
|
|
3708
3708
|
table?: {
|
|
3709
|
-
rows: (string | number)[][];
|
|
3709
|
+
rows: (string | number | boolean | null)[][];
|
|
3710
3710
|
title?: string | undefined;
|
|
3711
3711
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3712
3712
|
} | {
|
|
3713
|
-
rows: Record<string, string | number>[];
|
|
3713
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
3714
3714
|
title?: string | undefined;
|
|
3715
3715
|
columns?: ("left" | "center" | "right")[] | {
|
|
3716
3716
|
key: string;
|
|
@@ -3768,11 +3768,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3768
3768
|
} | undefined;
|
|
3769
3769
|
}[] | undefined;
|
|
3770
3770
|
table?: {
|
|
3771
|
-
rows: (string | number)[][];
|
|
3771
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3772
3772
|
title?: string | undefined;
|
|
3773
3773
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3774
3774
|
} | {
|
|
3775
|
-
rows: Record<string, string | number>[];
|
|
3775
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3776
3776
|
title?: string | undefined;
|
|
3777
3777
|
columns?: ("left" | "center" | "right")[] | {
|
|
3778
3778
|
key: string;
|
|
@@ -3801,11 +3801,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3801
3801
|
} | undefined;
|
|
3802
3802
|
}[] | undefined;
|
|
3803
3803
|
table?: {
|
|
3804
|
-
rows: (string | number)[][];
|
|
3804
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3805
3805
|
title?: string | undefined;
|
|
3806
3806
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3807
3807
|
} | {
|
|
3808
|
-
rows: Record<string, string | number>[];
|
|
3808
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3809
3809
|
title?: string | undefined;
|
|
3810
3810
|
columns?: ("left" | "center" | "right")[] | {
|
|
3811
3811
|
key: string;
|
|
@@ -3835,11 +3835,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3835
3835
|
} | undefined;
|
|
3836
3836
|
}[] | undefined;
|
|
3837
3837
|
table?: {
|
|
3838
|
-
rows: (string | number)[][];
|
|
3838
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3839
3839
|
title?: string | undefined;
|
|
3840
3840
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3841
3841
|
} | {
|
|
3842
|
-
rows: Record<string, string | number>[];
|
|
3842
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3843
3843
|
title?: string | undefined;
|
|
3844
3844
|
columns?: ("left" | "center" | "right")[] | {
|
|
3845
3845
|
key: string;
|
|
@@ -3868,11 +3868,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3868
3868
|
} | undefined;
|
|
3869
3869
|
}[] | undefined;
|
|
3870
3870
|
table?: {
|
|
3871
|
-
rows: (string | number)[][];
|
|
3871
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
3872
3872
|
title?: string | undefined;
|
|
3873
3873
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
3874
3874
|
} | {
|
|
3875
|
-
rows: Record<string, string | number>[];
|
|
3875
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
3876
3876
|
title?: string | undefined;
|
|
3877
3877
|
columns?: ("left" | "center" | "right")[] | {
|
|
3878
3878
|
key: string;
|