@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
package/src/lib/report.d.ts
CHANGED
|
@@ -78,13 +78,13 @@ export declare const auditReportSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
78
78
|
title: z.ZodOptional<z.ZodString>;
|
|
79
79
|
}, {
|
|
80
80
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
81
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
81
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
82
82
|
}>, "strip", z.ZodTypeAny, {
|
|
83
|
-
rows: (string | number)[][];
|
|
83
|
+
rows: (string | number | boolean | null)[][];
|
|
84
84
|
title?: string | undefined;
|
|
85
85
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
86
86
|
}, {
|
|
87
|
-
rows: (string | number)[][];
|
|
87
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
88
88
|
title?: string | undefined;
|
|
89
89
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
90
90
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -103,9 +103,9 @@ export declare const auditReportSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
103
103
|
label?: string | undefined;
|
|
104
104
|
align?: "left" | "center" | "right" | undefined;
|
|
105
105
|
}>, "many">]>>;
|
|
106
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
106
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
107
107
|
}>, "strip", z.ZodTypeAny, {
|
|
108
|
-
rows: Record<string, string | number>[];
|
|
108
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
109
109
|
title?: string | undefined;
|
|
110
110
|
columns?: ("left" | "center" | "right")[] | {
|
|
111
111
|
key: string;
|
|
@@ -113,7 +113,7 @@ export declare const auditReportSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
113
113
|
align?: "left" | "center" | "right" | undefined;
|
|
114
114
|
}[] | undefined;
|
|
115
115
|
}, {
|
|
116
|
-
rows: Record<string, string | number>[];
|
|
116
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
117
117
|
title?: string | undefined;
|
|
118
118
|
columns?: ("left" | "center" | "right")[] | {
|
|
119
119
|
key: string;
|
|
@@ -136,11 +136,11 @@ export declare const auditReportSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
136
136
|
} | undefined;
|
|
137
137
|
}[] | undefined;
|
|
138
138
|
table?: {
|
|
139
|
-
rows: (string | number)[][];
|
|
139
|
+
rows: (string | number | boolean | null)[][];
|
|
140
140
|
title?: string | undefined;
|
|
141
141
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
142
142
|
} | {
|
|
143
|
-
rows: Record<string, string | number>[];
|
|
143
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
144
144
|
title?: string | undefined;
|
|
145
145
|
columns?: ("left" | "center" | "right")[] | {
|
|
146
146
|
key: string;
|
|
@@ -163,11 +163,11 @@ export declare const auditReportSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
163
163
|
} | undefined;
|
|
164
164
|
}[] | undefined;
|
|
165
165
|
table?: {
|
|
166
|
-
rows: (string | number)[][];
|
|
166
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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 | undefined>[];
|
|
171
171
|
title?: string | undefined;
|
|
172
172
|
columns?: ("left" | "center" | "right")[] | {
|
|
173
173
|
key: string;
|
|
@@ -199,11 +199,11 @@ export declare const auditReportSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
199
199
|
} | undefined;
|
|
200
200
|
}[] | undefined;
|
|
201
201
|
table?: {
|
|
202
|
-
rows: (string | number)[][];
|
|
202
|
+
rows: (string | number | boolean | null)[][];
|
|
203
203
|
title?: string | undefined;
|
|
204
204
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
205
205
|
} | {
|
|
206
|
-
rows: Record<string, string | number>[];
|
|
206
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
207
207
|
title?: string | undefined;
|
|
208
208
|
columns?: ("left" | "center" | "right")[] | {
|
|
209
209
|
key: string;
|
|
@@ -235,11 +235,11 @@ export declare const auditReportSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
235
235
|
} | undefined;
|
|
236
236
|
}[] | undefined;
|
|
237
237
|
table?: {
|
|
238
|
-
rows: (string | number)[][];
|
|
238
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
239
239
|
title?: string | undefined;
|
|
240
240
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
241
241
|
} | {
|
|
242
|
-
rows: Record<string, string | number>[];
|
|
242
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
243
243
|
title?: string | undefined;
|
|
244
244
|
columns?: ("left" | "center" | "right")[] | {
|
|
245
245
|
key: string;
|
|
@@ -343,13 +343,13 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
343
343
|
title: z.ZodOptional<z.ZodString>;
|
|
344
344
|
}, {
|
|
345
345
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
346
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
346
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
347
347
|
}>, "strip", z.ZodTypeAny, {
|
|
348
|
-
rows: (string | number)[][];
|
|
348
|
+
rows: (string | number | boolean | null)[][];
|
|
349
349
|
title?: string | undefined;
|
|
350
350
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
351
351
|
}, {
|
|
352
|
-
rows: (string | number)[][];
|
|
352
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
353
353
|
title?: string | undefined;
|
|
354
354
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
355
355
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -368,9 +368,9 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
368
368
|
label?: string | undefined;
|
|
369
369
|
align?: "left" | "center" | "right" | undefined;
|
|
370
370
|
}>, "many">]>>;
|
|
371
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
371
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
372
372
|
}>, "strip", z.ZodTypeAny, {
|
|
373
|
-
rows: Record<string, string | number>[];
|
|
373
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
374
374
|
title?: string | undefined;
|
|
375
375
|
columns?: ("left" | "center" | "right")[] | {
|
|
376
376
|
key: string;
|
|
@@ -378,7 +378,7 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
378
378
|
align?: "left" | "center" | "right" | undefined;
|
|
379
379
|
}[] | undefined;
|
|
380
380
|
}, {
|
|
381
|
-
rows: Record<string, string | number>[];
|
|
381
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
382
382
|
title?: string | undefined;
|
|
383
383
|
columns?: ("left" | "center" | "right")[] | {
|
|
384
384
|
key: string;
|
|
@@ -401,11 +401,11 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
401
401
|
} | undefined;
|
|
402
402
|
}[] | undefined;
|
|
403
403
|
table?: {
|
|
404
|
-
rows: (string | number)[][];
|
|
404
|
+
rows: (string | number | boolean | null)[][];
|
|
405
405
|
title?: string | undefined;
|
|
406
406
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
407
407
|
} | {
|
|
408
|
-
rows: Record<string, string | number>[];
|
|
408
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
409
409
|
title?: string | undefined;
|
|
410
410
|
columns?: ("left" | "center" | "right")[] | {
|
|
411
411
|
key: string;
|
|
@@ -428,11 +428,11 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
428
428
|
} | undefined;
|
|
429
429
|
}[] | undefined;
|
|
430
430
|
table?: {
|
|
431
|
-
rows: (string | number)[][];
|
|
431
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
432
432
|
title?: string | undefined;
|
|
433
433
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
434
434
|
} | {
|
|
435
|
-
rows: Record<string, string | number>[];
|
|
435
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
436
436
|
title?: string | undefined;
|
|
437
437
|
columns?: ("left" | "center" | "right")[] | {
|
|
438
438
|
key: string;
|
|
@@ -464,11 +464,11 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
464
464
|
} | undefined;
|
|
465
465
|
}[] | undefined;
|
|
466
466
|
table?: {
|
|
467
|
-
rows: (string | number)[][];
|
|
467
|
+
rows: (string | number | boolean | null)[][];
|
|
468
468
|
title?: string | undefined;
|
|
469
469
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
470
470
|
} | {
|
|
471
|
-
rows: Record<string, string | number>[];
|
|
471
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
472
472
|
title?: string | undefined;
|
|
473
473
|
columns?: ("left" | "center" | "right")[] | {
|
|
474
474
|
key: string;
|
|
@@ -500,11 +500,11 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
500
500
|
} | undefined;
|
|
501
501
|
}[] | undefined;
|
|
502
502
|
table?: {
|
|
503
|
-
rows: (string | number)[][];
|
|
503
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
504
504
|
title?: string | undefined;
|
|
505
505
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
506
506
|
} | {
|
|
507
|
-
rows: Record<string, string | number>[];
|
|
507
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
508
508
|
title?: string | undefined;
|
|
509
509
|
columns?: ("left" | "center" | "right")[] | {
|
|
510
510
|
key: string;
|
|
@@ -589,11 +589,11 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
589
589
|
} | undefined;
|
|
590
590
|
}[] | undefined;
|
|
591
591
|
table?: {
|
|
592
|
-
rows: (string | number)[][];
|
|
592
|
+
rows: (string | number | boolean | null)[][];
|
|
593
593
|
title?: string | undefined;
|
|
594
594
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
595
595
|
} | {
|
|
596
|
-
rows: Record<string, string | number>[];
|
|
596
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
597
597
|
title?: string | undefined;
|
|
598
598
|
columns?: ("left" | "center" | "right")[] | {
|
|
599
599
|
key: string;
|
|
@@ -646,11 +646,11 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
646
646
|
} | undefined;
|
|
647
647
|
}[] | undefined;
|
|
648
648
|
table?: {
|
|
649
|
-
rows: (string | number)[][];
|
|
649
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
650
650
|
title?: string | undefined;
|
|
651
651
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
652
652
|
} | {
|
|
653
|
-
rows: Record<string, string | number>[];
|
|
653
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
654
654
|
title?: string | undefined;
|
|
655
655
|
columns?: ("left" | "center" | "right")[] | {
|
|
656
656
|
key: string;
|
|
@@ -703,11 +703,11 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
703
703
|
} | undefined;
|
|
704
704
|
}[] | undefined;
|
|
705
705
|
table?: {
|
|
706
|
-
rows: (string | number)[][];
|
|
706
|
+
rows: (string | number | boolean | null)[][];
|
|
707
707
|
title?: string | undefined;
|
|
708
708
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
709
709
|
} | {
|
|
710
|
-
rows: Record<string, string | number>[];
|
|
710
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
711
711
|
title?: string | undefined;
|
|
712
712
|
columns?: ("left" | "center" | "right")[] | {
|
|
713
713
|
key: string;
|
|
@@ -760,11 +760,11 @@ export declare const pluginReportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
760
760
|
} | undefined;
|
|
761
761
|
}[] | undefined;
|
|
762
762
|
table?: {
|
|
763
|
-
rows: (string | number)[][];
|
|
763
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
764
764
|
title?: string | undefined;
|
|
765
765
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
766
766
|
} | {
|
|
767
|
-
rows: Record<string, string | number>[];
|
|
767
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
768
768
|
title?: string | undefined;
|
|
769
769
|
columns?: ("left" | "center" | "right")[] | {
|
|
770
770
|
key: string;
|
|
@@ -961,13 +961,13 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
961
961
|
title: z.ZodOptional<z.ZodString>;
|
|
962
962
|
}, {
|
|
963
963
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
964
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
964
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
965
965
|
}>, "strip", z.ZodTypeAny, {
|
|
966
|
-
rows: (string | number)[][];
|
|
966
|
+
rows: (string | number | boolean | null)[][];
|
|
967
967
|
title?: string | undefined;
|
|
968
968
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
969
969
|
}, {
|
|
970
|
-
rows: (string | number)[][];
|
|
970
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
971
971
|
title?: string | undefined;
|
|
972
972
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
973
973
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -986,9 +986,9 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
986
986
|
label?: string | undefined;
|
|
987
987
|
align?: "left" | "center" | "right" | undefined;
|
|
988
988
|
}>, "many">]>>;
|
|
989
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
989
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
990
990
|
}>, "strip", z.ZodTypeAny, {
|
|
991
|
-
rows: Record<string, string | number>[];
|
|
991
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
992
992
|
title?: string | undefined;
|
|
993
993
|
columns?: ("left" | "center" | "right")[] | {
|
|
994
994
|
key: string;
|
|
@@ -996,7 +996,7 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
996
996
|
align?: "left" | "center" | "right" | undefined;
|
|
997
997
|
}[] | undefined;
|
|
998
998
|
}, {
|
|
999
|
-
rows: Record<string, string | number>[];
|
|
999
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1000
1000
|
title?: string | undefined;
|
|
1001
1001
|
columns?: ("left" | "center" | "right")[] | {
|
|
1002
1002
|
key: string;
|
|
@@ -1019,11 +1019,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1019
1019
|
} | undefined;
|
|
1020
1020
|
}[] | undefined;
|
|
1021
1021
|
table?: {
|
|
1022
|
-
rows: (string | number)[][];
|
|
1022
|
+
rows: (string | number | boolean | null)[][];
|
|
1023
1023
|
title?: string | undefined;
|
|
1024
1024
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1025
1025
|
} | {
|
|
1026
|
-
rows: Record<string, string | number>[];
|
|
1026
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1027
1027
|
title?: string | undefined;
|
|
1028
1028
|
columns?: ("left" | "center" | "right")[] | {
|
|
1029
1029
|
key: string;
|
|
@@ -1046,11 +1046,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1046
1046
|
} | undefined;
|
|
1047
1047
|
}[] | undefined;
|
|
1048
1048
|
table?: {
|
|
1049
|
-
rows: (string | number)[][];
|
|
1049
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1050
1050
|
title?: string | undefined;
|
|
1051
1051
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1052
1052
|
} | {
|
|
1053
|
-
rows: Record<string, string | number>[];
|
|
1053
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1054
1054
|
title?: string | undefined;
|
|
1055
1055
|
columns?: ("left" | "center" | "right")[] | {
|
|
1056
1056
|
key: string;
|
|
@@ -1082,11 +1082,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1082
1082
|
} | undefined;
|
|
1083
1083
|
}[] | undefined;
|
|
1084
1084
|
table?: {
|
|
1085
|
-
rows: (string | number)[][];
|
|
1085
|
+
rows: (string | number | boolean | null)[][];
|
|
1086
1086
|
title?: string | undefined;
|
|
1087
1087
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1088
1088
|
} | {
|
|
1089
|
-
rows: Record<string, string | number>[];
|
|
1089
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1090
1090
|
title?: string | undefined;
|
|
1091
1091
|
columns?: ("left" | "center" | "right")[] | {
|
|
1092
1092
|
key: string;
|
|
@@ -1118,11 +1118,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1118
1118
|
} | undefined;
|
|
1119
1119
|
}[] | undefined;
|
|
1120
1120
|
table?: {
|
|
1121
|
-
rows: (string | number)[][];
|
|
1121
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1122
1122
|
title?: string | undefined;
|
|
1123
1123
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1124
1124
|
} | {
|
|
1125
|
-
rows: Record<string, string | number>[];
|
|
1125
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1126
1126
|
title?: string | undefined;
|
|
1127
1127
|
columns?: ("left" | "center" | "right")[] | {
|
|
1128
1128
|
key: string;
|
|
@@ -1207,11 +1207,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1207
1207
|
} | undefined;
|
|
1208
1208
|
}[] | undefined;
|
|
1209
1209
|
table?: {
|
|
1210
|
-
rows: (string | number)[][];
|
|
1210
|
+
rows: (string | number | boolean | null)[][];
|
|
1211
1211
|
title?: string | undefined;
|
|
1212
1212
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1213
1213
|
} | {
|
|
1214
|
-
rows: Record<string, string | number>[];
|
|
1214
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1215
1215
|
title?: string | undefined;
|
|
1216
1216
|
columns?: ("left" | "center" | "right")[] | {
|
|
1217
1217
|
key: string;
|
|
@@ -1264,11 +1264,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1264
1264
|
} | undefined;
|
|
1265
1265
|
}[] | undefined;
|
|
1266
1266
|
table?: {
|
|
1267
|
-
rows: (string | number)[][];
|
|
1267
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1268
1268
|
title?: string | undefined;
|
|
1269
1269
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1270
1270
|
} | {
|
|
1271
|
-
rows: Record<string, string | number>[];
|
|
1271
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1272
1272
|
title?: string | undefined;
|
|
1273
1273
|
columns?: ("left" | "center" | "right")[] | {
|
|
1274
1274
|
key: string;
|
|
@@ -1321,11 +1321,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1321
1321
|
} | undefined;
|
|
1322
1322
|
}[] | undefined;
|
|
1323
1323
|
table?: {
|
|
1324
|
-
rows: (string | number)[][];
|
|
1324
|
+
rows: (string | number | boolean | null)[][];
|
|
1325
1325
|
title?: string | undefined;
|
|
1326
1326
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1327
1327
|
} | {
|
|
1328
|
-
rows: Record<string, string | number>[];
|
|
1328
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1329
1329
|
title?: string | undefined;
|
|
1330
1330
|
columns?: ("left" | "center" | "right")[] | {
|
|
1331
1331
|
key: string;
|
|
@@ -1378,11 +1378,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1378
1378
|
} | undefined;
|
|
1379
1379
|
}[] | undefined;
|
|
1380
1380
|
table?: {
|
|
1381
|
-
rows: (string | number)[][];
|
|
1381
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1382
1382
|
title?: string | undefined;
|
|
1383
1383
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1384
1384
|
} | {
|
|
1385
|
-
rows: Record<string, string | number>[];
|
|
1385
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1386
1386
|
title?: string | undefined;
|
|
1387
1387
|
columns?: ("left" | "center" | "right")[] | {
|
|
1388
1388
|
key: string;
|
|
@@ -1470,11 +1470,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1470
1470
|
} | undefined;
|
|
1471
1471
|
}[] | undefined;
|
|
1472
1472
|
table?: {
|
|
1473
|
-
rows: (string | number)[][];
|
|
1473
|
+
rows: (string | number | boolean | null)[][];
|
|
1474
1474
|
title?: string | undefined;
|
|
1475
1475
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1476
1476
|
} | {
|
|
1477
|
-
rows: Record<string, string | number>[];
|
|
1477
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1478
1478
|
title?: string | undefined;
|
|
1479
1479
|
columns?: ("left" | "center" | "right")[] | {
|
|
1480
1480
|
key: string;
|
|
@@ -1552,11 +1552,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1552
1552
|
} | undefined;
|
|
1553
1553
|
}[] | undefined;
|
|
1554
1554
|
table?: {
|
|
1555
|
-
rows: (string | number)[][];
|
|
1555
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1556
1556
|
title?: string | undefined;
|
|
1557
1557
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1558
1558
|
} | {
|
|
1559
|
-
rows: Record<string, string | number>[];
|
|
1559
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1560
1560
|
title?: string | undefined;
|
|
1561
1561
|
columns?: ("left" | "center" | "right")[] | {
|
|
1562
1562
|
key: string;
|
|
@@ -1634,11 +1634,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1634
1634
|
} | undefined;
|
|
1635
1635
|
}[] | undefined;
|
|
1636
1636
|
table?: {
|
|
1637
|
-
rows: (string | number)[][];
|
|
1637
|
+
rows: (string | number | boolean | null)[][];
|
|
1638
1638
|
title?: string | undefined;
|
|
1639
1639
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1640
1640
|
} | {
|
|
1641
|
-
rows: Record<string, string | number>[];
|
|
1641
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1642
1642
|
title?: string | undefined;
|
|
1643
1643
|
columns?: ("left" | "center" | "right")[] | {
|
|
1644
1644
|
key: string;
|
|
@@ -1716,11 +1716,11 @@ export declare const reportSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendS
|
|
|
1716
1716
|
} | undefined;
|
|
1717
1717
|
}[] | undefined;
|
|
1718
1718
|
table?: {
|
|
1719
|
-
rows: (string | number)[][];
|
|
1719
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1720
1720
|
title?: string | undefined;
|
|
1721
1721
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1722
1722
|
} | {
|
|
1723
|
-
rows: Record<string, string | number>[];
|
|
1723
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1724
1724
|
title?: string | undefined;
|
|
1725
1725
|
columns?: ("left" | "center" | "right")[] | {
|
|
1726
1726
|
key: string;
|