@code-pushup/models 0.45.1 → 0.46.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/package.json +1 -1
- package/src/lib/audit-output.d.ts +36 -30
- package/src/lib/audit.d.ts +6 -4
- package/src/lib/category-config.d.ts +19 -12
- package/src/lib/core-config.d.ts +2681 -5099
- package/src/lib/group.d.ts +6 -4
- package/src/lib/implementation/schemas.d.ts +2 -2
- package/src/lib/issue.d.ts +2 -2
- package/src/lib/plugin-config.d.ts +588 -1385
- package/src/lib/report.d.ts +107 -77
- package/src/lib/reports-diff.d.ts +1174 -424
- package/src/lib/runner-config.d.ts +88 -76
- package/src/lib/table.d.ts +6 -4
|
@@ -45,7 +45,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
45
45
|
}>>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
47
|
message: string;
|
|
48
|
-
severity: "
|
|
48
|
+
severity: "info" | "warning" | "error";
|
|
49
49
|
source?: {
|
|
50
50
|
file: string;
|
|
51
51
|
position?: {
|
|
@@ -57,7 +57,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
57
57
|
} | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
message: string;
|
|
60
|
-
severity: "
|
|
60
|
+
severity: "info" | "warning" | "error";
|
|
61
61
|
source?: {
|
|
62
62
|
file: string;
|
|
63
63
|
position?: {
|
|
@@ -68,11 +68,12 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
68
68
|
} | undefined;
|
|
69
69
|
} | undefined;
|
|
70
70
|
}>, "many">>;
|
|
71
|
-
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
71
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
72
72
|
title: z.ZodOptional<z.ZodString>;
|
|
73
|
+
}, {
|
|
73
74
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
74
75
|
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
75
|
-
}
|
|
76
|
+
}>, "strip", z.ZodTypeAny, {
|
|
76
77
|
rows: (string | number)[][];
|
|
77
78
|
title?: string | undefined;
|
|
78
79
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
@@ -80,8 +81,9 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
80
81
|
rows: (string | number)[][];
|
|
81
82
|
title?: string | undefined;
|
|
82
83
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
83
|
-
}>, z.ZodObject<{
|
|
84
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
84
85
|
title: z.ZodOptional<z.ZodString>;
|
|
86
|
+
}, {
|
|
85
87
|
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
86
88
|
key: z.ZodString;
|
|
87
89
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -96,7 +98,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
96
98
|
align?: "left" | "center" | "right" | undefined;
|
|
97
99
|
}>, "many">]>>;
|
|
98
100
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
99
|
-
}
|
|
101
|
+
}>, "strip", z.ZodTypeAny, {
|
|
100
102
|
rows: Record<string, string | number>[];
|
|
101
103
|
title?: string | undefined;
|
|
102
104
|
columns?: ("left" | "center" | "right")[] | {
|
|
@@ -116,7 +118,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
116
118
|
}, "strip", z.ZodTypeAny, {
|
|
117
119
|
issues?: {
|
|
118
120
|
message: string;
|
|
119
|
-
severity: "
|
|
121
|
+
severity: "info" | "warning" | "error";
|
|
120
122
|
source?: {
|
|
121
123
|
file: string;
|
|
122
124
|
position?: {
|
|
@@ -143,7 +145,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
143
145
|
}, {
|
|
144
146
|
issues?: {
|
|
145
147
|
message: string;
|
|
146
|
-
severity: "
|
|
148
|
+
severity: "info" | "warning" | "error";
|
|
147
149
|
source?: {
|
|
148
150
|
file: string;
|
|
149
151
|
position?: {
|
|
@@ -176,7 +178,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
176
178
|
details?: {
|
|
177
179
|
issues?: {
|
|
178
180
|
message: string;
|
|
179
|
-
severity: "
|
|
181
|
+
severity: "info" | "warning" | "error";
|
|
180
182
|
source?: {
|
|
181
183
|
file: string;
|
|
182
184
|
position?: {
|
|
@@ -209,7 +211,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
209
211
|
details?: {
|
|
210
212
|
issues?: {
|
|
211
213
|
message: string;
|
|
212
|
-
severity: "
|
|
214
|
+
severity: "info" | "warning" | "error";
|
|
213
215
|
source?: {
|
|
214
216
|
file: string;
|
|
215
217
|
position?: {
|
|
@@ -242,7 +244,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
242
244
|
details?: {
|
|
243
245
|
issues?: {
|
|
244
246
|
message: string;
|
|
245
|
-
severity: "
|
|
247
|
+
severity: "info" | "warning" | "error";
|
|
246
248
|
source?: {
|
|
247
249
|
file: string;
|
|
248
250
|
position?: {
|
|
@@ -275,7 +277,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
275
277
|
details?: {
|
|
276
278
|
issues?: {
|
|
277
279
|
message: string;
|
|
278
|
-
severity: "
|
|
280
|
+
severity: "info" | "warning" | "error";
|
|
279
281
|
source?: {
|
|
280
282
|
file: string;
|
|
281
283
|
position?: {
|
|
@@ -346,7 +348,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
346
348
|
}>>;
|
|
347
349
|
}, "strip", z.ZodTypeAny, {
|
|
348
350
|
message: string;
|
|
349
|
-
severity: "
|
|
351
|
+
severity: "info" | "warning" | "error";
|
|
350
352
|
source?: {
|
|
351
353
|
file: string;
|
|
352
354
|
position?: {
|
|
@@ -358,7 +360,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
358
360
|
} | undefined;
|
|
359
361
|
}, {
|
|
360
362
|
message: string;
|
|
361
|
-
severity: "
|
|
363
|
+
severity: "info" | "warning" | "error";
|
|
362
364
|
source?: {
|
|
363
365
|
file: string;
|
|
364
366
|
position?: {
|
|
@@ -369,11 +371,12 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
369
371
|
} | undefined;
|
|
370
372
|
} | undefined;
|
|
371
373
|
}>, "many">>;
|
|
372
|
-
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
374
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
373
375
|
title: z.ZodOptional<z.ZodString>;
|
|
376
|
+
}, {
|
|
374
377
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
375
378
|
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
376
|
-
}
|
|
379
|
+
}>, "strip", z.ZodTypeAny, {
|
|
377
380
|
rows: (string | number)[][];
|
|
378
381
|
title?: string | undefined;
|
|
379
382
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
@@ -381,8 +384,9 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
381
384
|
rows: (string | number)[][];
|
|
382
385
|
title?: string | undefined;
|
|
383
386
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
384
|
-
}>, z.ZodObject<{
|
|
387
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
385
388
|
title: z.ZodOptional<z.ZodString>;
|
|
389
|
+
}, {
|
|
386
390
|
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
387
391
|
key: z.ZodString;
|
|
388
392
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -397,7 +401,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
397
401
|
align?: "left" | "center" | "right" | undefined;
|
|
398
402
|
}>, "many">]>>;
|
|
399
403
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
400
|
-
}
|
|
404
|
+
}>, "strip", z.ZodTypeAny, {
|
|
401
405
|
rows: Record<string, string | number>[];
|
|
402
406
|
title?: string | undefined;
|
|
403
407
|
columns?: ("left" | "center" | "right")[] | {
|
|
@@ -417,7 +421,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
417
421
|
}, "strip", z.ZodTypeAny, {
|
|
418
422
|
issues?: {
|
|
419
423
|
message: string;
|
|
420
|
-
severity: "
|
|
424
|
+
severity: "info" | "warning" | "error";
|
|
421
425
|
source?: {
|
|
422
426
|
file: string;
|
|
423
427
|
position?: {
|
|
@@ -444,7 +448,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
444
448
|
}, {
|
|
445
449
|
issues?: {
|
|
446
450
|
message: string;
|
|
447
|
-
severity: "
|
|
451
|
+
severity: "info" | "warning" | "error";
|
|
448
452
|
source?: {
|
|
449
453
|
file: string;
|
|
450
454
|
position?: {
|
|
@@ -477,7 +481,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
477
481
|
details?: {
|
|
478
482
|
issues?: {
|
|
479
483
|
message: string;
|
|
480
|
-
severity: "
|
|
484
|
+
severity: "info" | "warning" | "error";
|
|
481
485
|
source?: {
|
|
482
486
|
file: string;
|
|
483
487
|
position?: {
|
|
@@ -510,7 +514,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
510
514
|
details?: {
|
|
511
515
|
issues?: {
|
|
512
516
|
message: string;
|
|
513
|
-
severity: "
|
|
517
|
+
severity: "info" | "warning" | "error";
|
|
514
518
|
source?: {
|
|
515
519
|
file: string;
|
|
516
520
|
position?: {
|
|
@@ -543,7 +547,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
543
547
|
details?: {
|
|
544
548
|
issues?: {
|
|
545
549
|
message: string;
|
|
546
|
-
severity: "
|
|
550
|
+
severity: "info" | "warning" | "error";
|
|
547
551
|
source?: {
|
|
548
552
|
file: string;
|
|
549
553
|
position?: {
|
|
@@ -576,7 +580,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
576
580
|
details?: {
|
|
577
581
|
issues?: {
|
|
578
582
|
message: string;
|
|
579
|
-
severity: "
|
|
583
|
+
severity: "info" | "warning" | "error";
|
|
580
584
|
source?: {
|
|
581
585
|
file: string;
|
|
582
586
|
position?: {
|
|
@@ -653,7 +657,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
653
657
|
}>>;
|
|
654
658
|
}, "strip", z.ZodTypeAny, {
|
|
655
659
|
message: string;
|
|
656
|
-
severity: "
|
|
660
|
+
severity: "info" | "warning" | "error";
|
|
657
661
|
source?: {
|
|
658
662
|
file: string;
|
|
659
663
|
position?: {
|
|
@@ -665,7 +669,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
665
669
|
} | undefined;
|
|
666
670
|
}, {
|
|
667
671
|
message: string;
|
|
668
|
-
severity: "
|
|
672
|
+
severity: "info" | "warning" | "error";
|
|
669
673
|
source?: {
|
|
670
674
|
file: string;
|
|
671
675
|
position?: {
|
|
@@ -676,11 +680,12 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
676
680
|
} | undefined;
|
|
677
681
|
} | undefined;
|
|
678
682
|
}>, "many">>;
|
|
679
|
-
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
683
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
680
684
|
title: z.ZodOptional<z.ZodString>;
|
|
685
|
+
}, {
|
|
681
686
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
682
687
|
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
683
|
-
}
|
|
688
|
+
}>, "strip", z.ZodTypeAny, {
|
|
684
689
|
rows: (string | number)[][];
|
|
685
690
|
title?: string | undefined;
|
|
686
691
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
@@ -688,8 +693,9 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
688
693
|
rows: (string | number)[][];
|
|
689
694
|
title?: string | undefined;
|
|
690
695
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
691
|
-
}>, z.ZodObject<{
|
|
696
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
692
697
|
title: z.ZodOptional<z.ZodString>;
|
|
698
|
+
}, {
|
|
693
699
|
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
694
700
|
key: z.ZodString;
|
|
695
701
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -704,7 +710,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
704
710
|
align?: "left" | "center" | "right" | undefined;
|
|
705
711
|
}>, "many">]>>;
|
|
706
712
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
707
|
-
}
|
|
713
|
+
}>, "strip", z.ZodTypeAny, {
|
|
708
714
|
rows: Record<string, string | number>[];
|
|
709
715
|
title?: string | undefined;
|
|
710
716
|
columns?: ("left" | "center" | "right")[] | {
|
|
@@ -724,7 +730,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
724
730
|
}, "strip", z.ZodTypeAny, {
|
|
725
731
|
issues?: {
|
|
726
732
|
message: string;
|
|
727
|
-
severity: "
|
|
733
|
+
severity: "info" | "warning" | "error";
|
|
728
734
|
source?: {
|
|
729
735
|
file: string;
|
|
730
736
|
position?: {
|
|
@@ -751,7 +757,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
751
757
|
}, {
|
|
752
758
|
issues?: {
|
|
753
759
|
message: string;
|
|
754
|
-
severity: "
|
|
760
|
+
severity: "info" | "warning" | "error";
|
|
755
761
|
source?: {
|
|
756
762
|
file: string;
|
|
757
763
|
position?: {
|
|
@@ -784,7 +790,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
784
790
|
details?: {
|
|
785
791
|
issues?: {
|
|
786
792
|
message: string;
|
|
787
|
-
severity: "
|
|
793
|
+
severity: "info" | "warning" | "error";
|
|
788
794
|
source?: {
|
|
789
795
|
file: string;
|
|
790
796
|
position?: {
|
|
@@ -817,7 +823,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
817
823
|
details?: {
|
|
818
824
|
issues?: {
|
|
819
825
|
message: string;
|
|
820
|
-
severity: "
|
|
826
|
+
severity: "info" | "warning" | "error";
|
|
821
827
|
source?: {
|
|
822
828
|
file: string;
|
|
823
829
|
position?: {
|
|
@@ -850,7 +856,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
850
856
|
details?: {
|
|
851
857
|
issues?: {
|
|
852
858
|
message: string;
|
|
853
|
-
severity: "
|
|
859
|
+
severity: "info" | "warning" | "error";
|
|
854
860
|
source?: {
|
|
855
861
|
file: string;
|
|
856
862
|
position?: {
|
|
@@ -883,7 +889,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
883
889
|
details?: {
|
|
884
890
|
issues?: {
|
|
885
891
|
message: string;
|
|
886
|
-
severity: "
|
|
892
|
+
severity: "info" | "warning" | "error";
|
|
887
893
|
source?: {
|
|
888
894
|
file: string;
|
|
889
895
|
position?: {
|
|
@@ -954,7 +960,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
954
960
|
}>>;
|
|
955
961
|
}, "strip", z.ZodTypeAny, {
|
|
956
962
|
message: string;
|
|
957
|
-
severity: "
|
|
963
|
+
severity: "info" | "warning" | "error";
|
|
958
964
|
source?: {
|
|
959
965
|
file: string;
|
|
960
966
|
position?: {
|
|
@@ -966,7 +972,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
966
972
|
} | undefined;
|
|
967
973
|
}, {
|
|
968
974
|
message: string;
|
|
969
|
-
severity: "
|
|
975
|
+
severity: "info" | "warning" | "error";
|
|
970
976
|
source?: {
|
|
971
977
|
file: string;
|
|
972
978
|
position?: {
|
|
@@ -977,11 +983,12 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
977
983
|
} | undefined;
|
|
978
984
|
} | undefined;
|
|
979
985
|
}>, "many">>;
|
|
980
|
-
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
986
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
981
987
|
title: z.ZodOptional<z.ZodString>;
|
|
988
|
+
}, {
|
|
982
989
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
983
990
|
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
984
|
-
}
|
|
991
|
+
}>, "strip", z.ZodTypeAny, {
|
|
985
992
|
rows: (string | number)[][];
|
|
986
993
|
title?: string | undefined;
|
|
987
994
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
@@ -989,8 +996,9 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
989
996
|
rows: (string | number)[][];
|
|
990
997
|
title?: string | undefined;
|
|
991
998
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
992
|
-
}>, z.ZodObject<{
|
|
999
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
993
1000
|
title: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
}, {
|
|
994
1002
|
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
995
1003
|
key: z.ZodString;
|
|
996
1004
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1005,7 +1013,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1005
1013
|
align?: "left" | "center" | "right" | undefined;
|
|
1006
1014
|
}>, "many">]>>;
|
|
1007
1015
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
1008
|
-
}
|
|
1016
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1009
1017
|
rows: Record<string, string | number>[];
|
|
1010
1018
|
title?: string | undefined;
|
|
1011
1019
|
columns?: ("left" | "center" | "right")[] | {
|
|
@@ -1025,7 +1033,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1025
1033
|
}, "strip", z.ZodTypeAny, {
|
|
1026
1034
|
issues?: {
|
|
1027
1035
|
message: string;
|
|
1028
|
-
severity: "
|
|
1036
|
+
severity: "info" | "warning" | "error";
|
|
1029
1037
|
source?: {
|
|
1030
1038
|
file: string;
|
|
1031
1039
|
position?: {
|
|
@@ -1052,7 +1060,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1052
1060
|
}, {
|
|
1053
1061
|
issues?: {
|
|
1054
1062
|
message: string;
|
|
1055
|
-
severity: "
|
|
1063
|
+
severity: "info" | "warning" | "error";
|
|
1056
1064
|
source?: {
|
|
1057
1065
|
file: string;
|
|
1058
1066
|
position?: {
|
|
@@ -1085,7 +1093,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1085
1093
|
details?: {
|
|
1086
1094
|
issues?: {
|
|
1087
1095
|
message: string;
|
|
1088
|
-
severity: "
|
|
1096
|
+
severity: "info" | "warning" | "error";
|
|
1089
1097
|
source?: {
|
|
1090
1098
|
file: string;
|
|
1091
1099
|
position?: {
|
|
@@ -1118,7 +1126,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1118
1126
|
details?: {
|
|
1119
1127
|
issues?: {
|
|
1120
1128
|
message: string;
|
|
1121
|
-
severity: "
|
|
1129
|
+
severity: "info" | "warning" | "error";
|
|
1122
1130
|
source?: {
|
|
1123
1131
|
file: string;
|
|
1124
1132
|
position?: {
|
|
@@ -1151,7 +1159,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1151
1159
|
details?: {
|
|
1152
1160
|
issues?: {
|
|
1153
1161
|
message: string;
|
|
1154
|
-
severity: "
|
|
1162
|
+
severity: "info" | "warning" | "error";
|
|
1155
1163
|
source?: {
|
|
1156
1164
|
file: string;
|
|
1157
1165
|
position?: {
|
|
@@ -1184,7 +1192,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1184
1192
|
details?: {
|
|
1185
1193
|
issues?: {
|
|
1186
1194
|
message: string;
|
|
1187
|
-
severity: "
|
|
1195
|
+
severity: "info" | "warning" | "error";
|
|
1188
1196
|
source?: {
|
|
1189
1197
|
file: string;
|
|
1190
1198
|
position?: {
|
|
@@ -1222,7 +1230,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1222
1230
|
details?: {
|
|
1223
1231
|
issues?: {
|
|
1224
1232
|
message: string;
|
|
1225
|
-
severity: "
|
|
1233
|
+
severity: "info" | "warning" | "error";
|
|
1226
1234
|
source?: {
|
|
1227
1235
|
file: string;
|
|
1228
1236
|
position?: {
|
|
@@ -1255,7 +1263,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1255
1263
|
details?: {
|
|
1256
1264
|
issues?: {
|
|
1257
1265
|
message: string;
|
|
1258
|
-
severity: "
|
|
1266
|
+
severity: "info" | "warning" | "error";
|
|
1259
1267
|
source?: {
|
|
1260
1268
|
file: string;
|
|
1261
1269
|
position?: {
|
|
@@ -1293,7 +1301,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1293
1301
|
details?: {
|
|
1294
1302
|
issues?: {
|
|
1295
1303
|
message: string;
|
|
1296
|
-
severity: "
|
|
1304
|
+
severity: "info" | "warning" | "error";
|
|
1297
1305
|
source?: {
|
|
1298
1306
|
file: string;
|
|
1299
1307
|
position?: {
|
|
@@ -1326,7 +1334,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1326
1334
|
details?: {
|
|
1327
1335
|
issues?: {
|
|
1328
1336
|
message: string;
|
|
1329
|
-
severity: "
|
|
1337
|
+
severity: "info" | "warning" | "error";
|
|
1330
1338
|
source?: {
|
|
1331
1339
|
file: string;
|
|
1332
1340
|
position?: {
|
|
@@ -1402,7 +1410,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1402
1410
|
}>>;
|
|
1403
1411
|
}, "strip", z.ZodTypeAny, {
|
|
1404
1412
|
message: string;
|
|
1405
|
-
severity: "
|
|
1413
|
+
severity: "info" | "warning" | "error";
|
|
1406
1414
|
source?: {
|
|
1407
1415
|
file: string;
|
|
1408
1416
|
position?: {
|
|
@@ -1414,7 +1422,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1414
1422
|
} | undefined;
|
|
1415
1423
|
}, {
|
|
1416
1424
|
message: string;
|
|
1417
|
-
severity: "
|
|
1425
|
+
severity: "info" | "warning" | "error";
|
|
1418
1426
|
source?: {
|
|
1419
1427
|
file: string;
|
|
1420
1428
|
position?: {
|
|
@@ -1425,11 +1433,12 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1425
1433
|
} | undefined;
|
|
1426
1434
|
} | undefined;
|
|
1427
1435
|
}>, "many">>;
|
|
1428
|
-
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1436
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1429
1437
|
title: z.ZodOptional<z.ZodString>;
|
|
1438
|
+
}, {
|
|
1430
1439
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1431
1440
|
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
1432
|
-
}
|
|
1441
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1433
1442
|
rows: (string | number)[][];
|
|
1434
1443
|
title?: string | undefined;
|
|
1435
1444
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
@@ -1437,8 +1446,9 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1437
1446
|
rows: (string | number)[][];
|
|
1438
1447
|
title?: string | undefined;
|
|
1439
1448
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1440
|
-
}>, z.ZodObject<{
|
|
1449
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1441
1450
|
title: z.ZodOptional<z.ZodString>;
|
|
1451
|
+
}, {
|
|
1442
1452
|
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
1443
1453
|
key: z.ZodString;
|
|
1444
1454
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1453,7 +1463,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1453
1463
|
align?: "left" | "center" | "right" | undefined;
|
|
1454
1464
|
}>, "many">]>>;
|
|
1455
1465
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
1456
|
-
}
|
|
1466
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1457
1467
|
rows: Record<string, string | number>[];
|
|
1458
1468
|
title?: string | undefined;
|
|
1459
1469
|
columns?: ("left" | "center" | "right")[] | {
|
|
@@ -1473,7 +1483,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1473
1483
|
}, "strip", z.ZodTypeAny, {
|
|
1474
1484
|
issues?: {
|
|
1475
1485
|
message: string;
|
|
1476
|
-
severity: "
|
|
1486
|
+
severity: "info" | "warning" | "error";
|
|
1477
1487
|
source?: {
|
|
1478
1488
|
file: string;
|
|
1479
1489
|
position?: {
|
|
@@ -1500,7 +1510,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1500
1510
|
}, {
|
|
1501
1511
|
issues?: {
|
|
1502
1512
|
message: string;
|
|
1503
|
-
severity: "
|
|
1513
|
+
severity: "info" | "warning" | "error";
|
|
1504
1514
|
source?: {
|
|
1505
1515
|
file: string;
|
|
1506
1516
|
position?: {
|
|
@@ -1533,7 +1543,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1533
1543
|
details?: {
|
|
1534
1544
|
issues?: {
|
|
1535
1545
|
message: string;
|
|
1536
|
-
severity: "
|
|
1546
|
+
severity: "info" | "warning" | "error";
|
|
1537
1547
|
source?: {
|
|
1538
1548
|
file: string;
|
|
1539
1549
|
position?: {
|
|
@@ -1566,7 +1576,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1566
1576
|
details?: {
|
|
1567
1577
|
issues?: {
|
|
1568
1578
|
message: string;
|
|
1569
|
-
severity: "
|
|
1579
|
+
severity: "info" | "warning" | "error";
|
|
1570
1580
|
source?: {
|
|
1571
1581
|
file: string;
|
|
1572
1582
|
position?: {
|
|
@@ -1599,7 +1609,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1599
1609
|
details?: {
|
|
1600
1610
|
issues?: {
|
|
1601
1611
|
message: string;
|
|
1602
|
-
severity: "
|
|
1612
|
+
severity: "info" | "warning" | "error";
|
|
1603
1613
|
source?: {
|
|
1604
1614
|
file: string;
|
|
1605
1615
|
position?: {
|
|
@@ -1632,7 +1642,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1632
1642
|
details?: {
|
|
1633
1643
|
issues?: {
|
|
1634
1644
|
message: string;
|
|
1635
|
-
severity: "
|
|
1645
|
+
severity: "info" | "warning" | "error";
|
|
1636
1646
|
source?: {
|
|
1637
1647
|
file: string;
|
|
1638
1648
|
position?: {
|
|
@@ -1703,7 +1713,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1703
1713
|
}>>;
|
|
1704
1714
|
}, "strip", z.ZodTypeAny, {
|
|
1705
1715
|
message: string;
|
|
1706
|
-
severity: "
|
|
1716
|
+
severity: "info" | "warning" | "error";
|
|
1707
1717
|
source?: {
|
|
1708
1718
|
file: string;
|
|
1709
1719
|
position?: {
|
|
@@ -1715,7 +1725,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1715
1725
|
} | undefined;
|
|
1716
1726
|
}, {
|
|
1717
1727
|
message: string;
|
|
1718
|
-
severity: "
|
|
1728
|
+
severity: "info" | "warning" | "error";
|
|
1719
1729
|
source?: {
|
|
1720
1730
|
file: string;
|
|
1721
1731
|
position?: {
|
|
@@ -1726,11 +1736,12 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1726
1736
|
} | undefined;
|
|
1727
1737
|
} | undefined;
|
|
1728
1738
|
}>, "many">>;
|
|
1729
|
-
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1739
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1730
1740
|
title: z.ZodOptional<z.ZodString>;
|
|
1741
|
+
}, {
|
|
1731
1742
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1732
1743
|
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
1733
|
-
}
|
|
1744
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1734
1745
|
rows: (string | number)[][];
|
|
1735
1746
|
title?: string | undefined;
|
|
1736
1747
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
@@ -1738,8 +1749,9 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1738
1749
|
rows: (string | number)[][];
|
|
1739
1750
|
title?: string | undefined;
|
|
1740
1751
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1741
|
-
}>, z.ZodObject<{
|
|
1752
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1742
1753
|
title: z.ZodOptional<z.ZodString>;
|
|
1754
|
+
}, {
|
|
1743
1755
|
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
1744
1756
|
key: z.ZodString;
|
|
1745
1757
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1754,7 +1766,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1754
1766
|
align?: "left" | "center" | "right" | undefined;
|
|
1755
1767
|
}>, "many">]>>;
|
|
1756
1768
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
1757
|
-
}
|
|
1769
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1758
1770
|
rows: Record<string, string | number>[];
|
|
1759
1771
|
title?: string | undefined;
|
|
1760
1772
|
columns?: ("left" | "center" | "right")[] | {
|
|
@@ -1774,7 +1786,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1774
1786
|
}, "strip", z.ZodTypeAny, {
|
|
1775
1787
|
issues?: {
|
|
1776
1788
|
message: string;
|
|
1777
|
-
severity: "
|
|
1789
|
+
severity: "info" | "warning" | "error";
|
|
1778
1790
|
source?: {
|
|
1779
1791
|
file: string;
|
|
1780
1792
|
position?: {
|
|
@@ -1801,7 +1813,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1801
1813
|
}, {
|
|
1802
1814
|
issues?: {
|
|
1803
1815
|
message: string;
|
|
1804
|
-
severity: "
|
|
1816
|
+
severity: "info" | "warning" | "error";
|
|
1805
1817
|
source?: {
|
|
1806
1818
|
file: string;
|
|
1807
1819
|
position?: {
|
|
@@ -1834,7 +1846,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1834
1846
|
details?: {
|
|
1835
1847
|
issues?: {
|
|
1836
1848
|
message: string;
|
|
1837
|
-
severity: "
|
|
1849
|
+
severity: "info" | "warning" | "error";
|
|
1838
1850
|
source?: {
|
|
1839
1851
|
file: string;
|
|
1840
1852
|
position?: {
|
|
@@ -1867,7 +1879,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1867
1879
|
details?: {
|
|
1868
1880
|
issues?: {
|
|
1869
1881
|
message: string;
|
|
1870
|
-
severity: "
|
|
1882
|
+
severity: "info" | "warning" | "error";
|
|
1871
1883
|
source?: {
|
|
1872
1884
|
file: string;
|
|
1873
1885
|
position?: {
|
|
@@ -1900,7 +1912,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1900
1912
|
details?: {
|
|
1901
1913
|
issues?: {
|
|
1902
1914
|
message: string;
|
|
1903
|
-
severity: "
|
|
1915
|
+
severity: "info" | "warning" | "error";
|
|
1904
1916
|
source?: {
|
|
1905
1917
|
file: string;
|
|
1906
1918
|
position?: {
|
|
@@ -1933,7 +1945,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1933
1945
|
details?: {
|
|
1934
1946
|
issues?: {
|
|
1935
1947
|
message: string;
|
|
1936
|
-
severity: "
|
|
1948
|
+
severity: "info" | "warning" | "error";
|
|
1937
1949
|
source?: {
|
|
1938
1950
|
file: string;
|
|
1939
1951
|
position?: {
|