@code-pushup/models 0.45.1 → 0.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +4 -4
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/lib/audit-output.d.ts +78 -72
- package/src/lib/audit.d.ts +6 -4
- package/src/lib/category-config.d.ts +19 -12
- package/src/lib/core-config.d.ts +3121 -5539
- package/src/lib/group.d.ts +6 -4
- package/src/lib/implementation/schemas.d.ts +4 -4
- package/src/lib/issue.d.ts +2 -2
- package/src/lib/plugin-config.d.ts +766 -1563
- package/src/lib/report.d.ts +173 -143
- package/src/lib/reports-diff.d.ts +1174 -424
- package/src/lib/runner-config.d.ts +204 -192
- package/src/lib/table.d.ts +14 -12
|
@@ -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,20 +68,22 @@ 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
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
75
|
-
}
|
|
76
|
-
rows: (string | number)[][];
|
|
75
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
76
|
+
}>, "strip", z.ZodTypeAny, {
|
|
77
|
+
rows: (string | number | boolean | null)[][];
|
|
77
78
|
title?: string | undefined;
|
|
78
79
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
79
80
|
}, {
|
|
80
|
-
rows: (string | number)[][];
|
|
81
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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>;
|
|
@@ -95,9 +97,9 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
95
97
|
label?: string | undefined;
|
|
96
98
|
align?: "left" | "center" | "right" | undefined;
|
|
97
99
|
}>, "many">]>>;
|
|
98
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
99
|
-
}
|
|
100
|
-
rows: Record<string, string | number>[];
|
|
100
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
101
|
+
}>, "strip", z.ZodTypeAny, {
|
|
102
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
101
103
|
title?: string | undefined;
|
|
102
104
|
columns?: ("left" | "center" | "right")[] | {
|
|
103
105
|
key: string;
|
|
@@ -105,7 +107,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
105
107
|
align?: "left" | "center" | "right" | undefined;
|
|
106
108
|
}[] | undefined;
|
|
107
109
|
}, {
|
|
108
|
-
rows: Record<string, string | number>[];
|
|
110
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
109
111
|
title?: string | undefined;
|
|
110
112
|
columns?: ("left" | "center" | "right")[] | {
|
|
111
113
|
key: string;
|
|
@@ -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?: {
|
|
@@ -128,11 +130,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
128
130
|
} | undefined;
|
|
129
131
|
}[] | undefined;
|
|
130
132
|
table?: {
|
|
131
|
-
rows: (string | number)[][];
|
|
133
|
+
rows: (string | number | boolean | null)[][];
|
|
132
134
|
title?: string | undefined;
|
|
133
135
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
134
136
|
} | {
|
|
135
|
-
rows: Record<string, string | number>[];
|
|
137
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
136
138
|
title?: string | undefined;
|
|
137
139
|
columns?: ("left" | "center" | "right")[] | {
|
|
138
140
|
key: string;
|
|
@@ -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?: {
|
|
@@ -155,11 +157,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
155
157
|
} | undefined;
|
|
156
158
|
}[] | undefined;
|
|
157
159
|
table?: {
|
|
158
|
-
rows: (string | number)[][];
|
|
160
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
159
161
|
title?: string | undefined;
|
|
160
162
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
161
163
|
} | {
|
|
162
|
-
rows: Record<string, string | number>[];
|
|
164
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
163
165
|
title?: string | undefined;
|
|
164
166
|
columns?: ("left" | "center" | "right")[] | {
|
|
165
167
|
key: string;
|
|
@@ -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?: {
|
|
@@ -188,11 +190,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
188
190
|
} | undefined;
|
|
189
191
|
}[] | undefined;
|
|
190
192
|
table?: {
|
|
191
|
-
rows: (string | number)[][];
|
|
193
|
+
rows: (string | number | boolean | null)[][];
|
|
192
194
|
title?: string | undefined;
|
|
193
195
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
194
196
|
} | {
|
|
195
|
-
rows: Record<string, string | number>[];
|
|
197
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
196
198
|
title?: string | undefined;
|
|
197
199
|
columns?: ("left" | "center" | "right")[] | {
|
|
198
200
|
key: string;
|
|
@@ -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?: {
|
|
@@ -221,11 +223,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
221
223
|
} | undefined;
|
|
222
224
|
}[] | undefined;
|
|
223
225
|
table?: {
|
|
224
|
-
rows: (string | number)[][];
|
|
226
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
225
227
|
title?: string | undefined;
|
|
226
228
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
227
229
|
} | {
|
|
228
|
-
rows: Record<string, string | number>[];
|
|
230
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
229
231
|
title?: string | undefined;
|
|
230
232
|
columns?: ("left" | "center" | "right")[] | {
|
|
231
233
|
key: string;
|
|
@@ -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?: {
|
|
@@ -254,11 +256,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
254
256
|
} | undefined;
|
|
255
257
|
}[] | undefined;
|
|
256
258
|
table?: {
|
|
257
|
-
rows: (string | number)[][];
|
|
259
|
+
rows: (string | number | boolean | null)[][];
|
|
258
260
|
title?: string | undefined;
|
|
259
261
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
260
262
|
} | {
|
|
261
|
-
rows: Record<string, string | number>[];
|
|
263
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
262
264
|
title?: string | undefined;
|
|
263
265
|
columns?: ("left" | "center" | "right")[] | {
|
|
264
266
|
key: string;
|
|
@@ -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?: {
|
|
@@ -287,11 +289,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
287
289
|
} | undefined;
|
|
288
290
|
}[] | undefined;
|
|
289
291
|
table?: {
|
|
290
|
-
rows: (string | number)[][];
|
|
292
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
291
293
|
title?: string | undefined;
|
|
292
294
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
293
295
|
} | {
|
|
294
|
-
rows: Record<string, string | number>[];
|
|
296
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
295
297
|
title?: string | undefined;
|
|
296
298
|
columns?: ("left" | "center" | "right")[] | {
|
|
297
299
|
key: string;
|
|
@@ -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,20 +371,22 @@ 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
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
376
|
-
}
|
|
377
|
-
rows: (string | number)[][];
|
|
378
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
379
|
+
}>, "strip", z.ZodTypeAny, {
|
|
380
|
+
rows: (string | number | boolean | null)[][];
|
|
378
381
|
title?: string | undefined;
|
|
379
382
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
380
383
|
}, {
|
|
381
|
-
rows: (string | number)[][];
|
|
384
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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>;
|
|
@@ -396,9 +400,9 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
396
400
|
label?: string | undefined;
|
|
397
401
|
align?: "left" | "center" | "right" | undefined;
|
|
398
402
|
}>, "many">]>>;
|
|
399
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
400
|
-
}
|
|
401
|
-
rows: Record<string, string | number>[];
|
|
403
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
404
|
+
}>, "strip", z.ZodTypeAny, {
|
|
405
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
402
406
|
title?: string | undefined;
|
|
403
407
|
columns?: ("left" | "center" | "right")[] | {
|
|
404
408
|
key: string;
|
|
@@ -406,7 +410,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
406
410
|
align?: "left" | "center" | "right" | undefined;
|
|
407
411
|
}[] | undefined;
|
|
408
412
|
}, {
|
|
409
|
-
rows: Record<string, string | number>[];
|
|
413
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
410
414
|
title?: string | undefined;
|
|
411
415
|
columns?: ("left" | "center" | "right")[] | {
|
|
412
416
|
key: string;
|
|
@@ -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?: {
|
|
@@ -429,11 +433,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
429
433
|
} | undefined;
|
|
430
434
|
}[] | undefined;
|
|
431
435
|
table?: {
|
|
432
|
-
rows: (string | number)[][];
|
|
436
|
+
rows: (string | number | boolean | null)[][];
|
|
433
437
|
title?: string | undefined;
|
|
434
438
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
435
439
|
} | {
|
|
436
|
-
rows: Record<string, string | number>[];
|
|
440
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
437
441
|
title?: string | undefined;
|
|
438
442
|
columns?: ("left" | "center" | "right")[] | {
|
|
439
443
|
key: string;
|
|
@@ -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?: {
|
|
@@ -456,11 +460,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
456
460
|
} | undefined;
|
|
457
461
|
}[] | undefined;
|
|
458
462
|
table?: {
|
|
459
|
-
rows: (string | number)[][];
|
|
463
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
460
464
|
title?: string | undefined;
|
|
461
465
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
462
466
|
} | {
|
|
463
|
-
rows: Record<string, string | number>[];
|
|
467
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
464
468
|
title?: string | undefined;
|
|
465
469
|
columns?: ("left" | "center" | "right")[] | {
|
|
466
470
|
key: string;
|
|
@@ -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?: {
|
|
@@ -489,11 +493,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
489
493
|
} | undefined;
|
|
490
494
|
}[] | undefined;
|
|
491
495
|
table?: {
|
|
492
|
-
rows: (string | number)[][];
|
|
496
|
+
rows: (string | number | boolean | null)[][];
|
|
493
497
|
title?: string | undefined;
|
|
494
498
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
495
499
|
} | {
|
|
496
|
-
rows: Record<string, string | number>[];
|
|
500
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
497
501
|
title?: string | undefined;
|
|
498
502
|
columns?: ("left" | "center" | "right")[] | {
|
|
499
503
|
key: string;
|
|
@@ -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?: {
|
|
@@ -522,11 +526,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
522
526
|
} | undefined;
|
|
523
527
|
}[] | undefined;
|
|
524
528
|
table?: {
|
|
525
|
-
rows: (string | number)[][];
|
|
529
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
526
530
|
title?: string | undefined;
|
|
527
531
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
528
532
|
} | {
|
|
529
|
-
rows: Record<string, string | number>[];
|
|
533
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
530
534
|
title?: string | undefined;
|
|
531
535
|
columns?: ("left" | "center" | "right")[] | {
|
|
532
536
|
key: string;
|
|
@@ -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?: {
|
|
@@ -555,11 +559,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
555
559
|
} | undefined;
|
|
556
560
|
}[] | undefined;
|
|
557
561
|
table?: {
|
|
558
|
-
rows: (string | number)[][];
|
|
562
|
+
rows: (string | number | boolean | null)[][];
|
|
559
563
|
title?: string | undefined;
|
|
560
564
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
561
565
|
} | {
|
|
562
|
-
rows: Record<string, string | number>[];
|
|
566
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
563
567
|
title?: string | undefined;
|
|
564
568
|
columns?: ("left" | "center" | "right")[] | {
|
|
565
569
|
key: string;
|
|
@@ -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?: {
|
|
@@ -588,11 +592,11 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
588
592
|
} | undefined;
|
|
589
593
|
}[] | undefined;
|
|
590
594
|
table?: {
|
|
591
|
-
rows: (string | number)[][];
|
|
595
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
592
596
|
title?: string | undefined;
|
|
593
597
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
594
598
|
} | {
|
|
595
|
-
rows: Record<string, string | number>[];
|
|
599
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
596
600
|
title?: string | undefined;
|
|
597
601
|
columns?: ("left" | "center" | "right")[] | {
|
|
598
602
|
key: string;
|
|
@@ -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,20 +680,22 @@ 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
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
683
|
-
}
|
|
684
|
-
rows: (string | number)[][];
|
|
687
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
688
|
+
}>, "strip", z.ZodTypeAny, {
|
|
689
|
+
rows: (string | number | boolean | null)[][];
|
|
685
690
|
title?: string | undefined;
|
|
686
691
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
687
692
|
}, {
|
|
688
|
-
rows: (string | number)[][];
|
|
693
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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>;
|
|
@@ -703,9 +709,9 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
703
709
|
label?: string | undefined;
|
|
704
710
|
align?: "left" | "center" | "right" | undefined;
|
|
705
711
|
}>, "many">]>>;
|
|
706
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
707
|
-
}
|
|
708
|
-
rows: Record<string, string | number>[];
|
|
712
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
713
|
+
}>, "strip", z.ZodTypeAny, {
|
|
714
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
709
715
|
title?: string | undefined;
|
|
710
716
|
columns?: ("left" | "center" | "right")[] | {
|
|
711
717
|
key: string;
|
|
@@ -713,7 +719,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
713
719
|
align?: "left" | "center" | "right" | undefined;
|
|
714
720
|
}[] | undefined;
|
|
715
721
|
}, {
|
|
716
|
-
rows: Record<string, string | number>[];
|
|
722
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
717
723
|
title?: string | undefined;
|
|
718
724
|
columns?: ("left" | "center" | "right")[] | {
|
|
719
725
|
key: string;
|
|
@@ -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?: {
|
|
@@ -736,11 +742,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
736
742
|
} | undefined;
|
|
737
743
|
}[] | undefined;
|
|
738
744
|
table?: {
|
|
739
|
-
rows: (string | number)[][];
|
|
745
|
+
rows: (string | number | boolean | null)[][];
|
|
740
746
|
title?: string | undefined;
|
|
741
747
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
742
748
|
} | {
|
|
743
|
-
rows: Record<string, string | number>[];
|
|
749
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
744
750
|
title?: string | undefined;
|
|
745
751
|
columns?: ("left" | "center" | "right")[] | {
|
|
746
752
|
key: string;
|
|
@@ -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?: {
|
|
@@ -763,11 +769,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
763
769
|
} | undefined;
|
|
764
770
|
}[] | undefined;
|
|
765
771
|
table?: {
|
|
766
|
-
rows: (string | number)[][];
|
|
772
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
767
773
|
title?: string | undefined;
|
|
768
774
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
769
775
|
} | {
|
|
770
|
-
rows: Record<string, string | number>[];
|
|
776
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
771
777
|
title?: string | undefined;
|
|
772
778
|
columns?: ("left" | "center" | "right")[] | {
|
|
773
779
|
key: string;
|
|
@@ -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?: {
|
|
@@ -796,11 +802,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
796
802
|
} | undefined;
|
|
797
803
|
}[] | undefined;
|
|
798
804
|
table?: {
|
|
799
|
-
rows: (string | number)[][];
|
|
805
|
+
rows: (string | number | boolean | null)[][];
|
|
800
806
|
title?: string | undefined;
|
|
801
807
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
802
808
|
} | {
|
|
803
|
-
rows: Record<string, string | number>[];
|
|
809
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
804
810
|
title?: string | undefined;
|
|
805
811
|
columns?: ("left" | "center" | "right")[] | {
|
|
806
812
|
key: string;
|
|
@@ -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?: {
|
|
@@ -829,11 +835,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
829
835
|
} | undefined;
|
|
830
836
|
}[] | undefined;
|
|
831
837
|
table?: {
|
|
832
|
-
rows: (string | number)[][];
|
|
838
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
833
839
|
title?: string | undefined;
|
|
834
840
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
835
841
|
} | {
|
|
836
|
-
rows: Record<string, string | number>[];
|
|
842
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
837
843
|
title?: string | undefined;
|
|
838
844
|
columns?: ("left" | "center" | "right")[] | {
|
|
839
845
|
key: string;
|
|
@@ -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?: {
|
|
@@ -862,11 +868,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
862
868
|
} | undefined;
|
|
863
869
|
}[] | undefined;
|
|
864
870
|
table?: {
|
|
865
|
-
rows: (string | number)[][];
|
|
871
|
+
rows: (string | number | boolean | null)[][];
|
|
866
872
|
title?: string | undefined;
|
|
867
873
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
868
874
|
} | {
|
|
869
|
-
rows: Record<string, string | number>[];
|
|
875
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
870
876
|
title?: string | undefined;
|
|
871
877
|
columns?: ("left" | "center" | "right")[] | {
|
|
872
878
|
key: string;
|
|
@@ -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?: {
|
|
@@ -895,11 +901,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
895
901
|
} | undefined;
|
|
896
902
|
}[] | undefined;
|
|
897
903
|
table?: {
|
|
898
|
-
rows: (string | number)[][];
|
|
904
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
899
905
|
title?: string | undefined;
|
|
900
906
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
901
907
|
} | {
|
|
902
|
-
rows: Record<string, string | number>[];
|
|
908
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
903
909
|
title?: string | undefined;
|
|
904
910
|
columns?: ("left" | "center" | "right")[] | {
|
|
905
911
|
key: string;
|
|
@@ -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,20 +983,22 @@ 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
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
984
|
-
}
|
|
985
|
-
rows: (string | number)[][];
|
|
990
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
991
|
+
}>, "strip", z.ZodTypeAny, {
|
|
992
|
+
rows: (string | number | boolean | null)[][];
|
|
986
993
|
title?: string | undefined;
|
|
987
994
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
988
995
|
}, {
|
|
989
|
-
rows: (string | number)[][];
|
|
996
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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>;
|
|
@@ -1004,9 +1012,9 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1004
1012
|
label?: string | undefined;
|
|
1005
1013
|
align?: "left" | "center" | "right" | undefined;
|
|
1006
1014
|
}>, "many">]>>;
|
|
1007
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1008
|
-
}
|
|
1009
|
-
rows: Record<string, string | number>[];
|
|
1015
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1016
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1017
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1010
1018
|
title?: string | undefined;
|
|
1011
1019
|
columns?: ("left" | "center" | "right")[] | {
|
|
1012
1020
|
key: string;
|
|
@@ -1014,7 +1022,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1014
1022
|
align?: "left" | "center" | "right" | undefined;
|
|
1015
1023
|
}[] | undefined;
|
|
1016
1024
|
}, {
|
|
1017
|
-
rows: Record<string, string | number>[];
|
|
1025
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1018
1026
|
title?: string | undefined;
|
|
1019
1027
|
columns?: ("left" | "center" | "right")[] | {
|
|
1020
1028
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1037,11 +1045,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1037
1045
|
} | undefined;
|
|
1038
1046
|
}[] | undefined;
|
|
1039
1047
|
table?: {
|
|
1040
|
-
rows: (string | number)[][];
|
|
1048
|
+
rows: (string | number | boolean | null)[][];
|
|
1041
1049
|
title?: string | undefined;
|
|
1042
1050
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1043
1051
|
} | {
|
|
1044
|
-
rows: Record<string, string | number>[];
|
|
1052
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1045
1053
|
title?: string | undefined;
|
|
1046
1054
|
columns?: ("left" | "center" | "right")[] | {
|
|
1047
1055
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1064,11 +1072,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1064
1072
|
} | undefined;
|
|
1065
1073
|
}[] | undefined;
|
|
1066
1074
|
table?: {
|
|
1067
|
-
rows: (string | number)[][];
|
|
1075
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1068
1076
|
title?: string | undefined;
|
|
1069
1077
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1070
1078
|
} | {
|
|
1071
|
-
rows: Record<string, string | number>[];
|
|
1079
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1072
1080
|
title?: string | undefined;
|
|
1073
1081
|
columns?: ("left" | "center" | "right")[] | {
|
|
1074
1082
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1097,11 +1105,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1097
1105
|
} | undefined;
|
|
1098
1106
|
}[] | undefined;
|
|
1099
1107
|
table?: {
|
|
1100
|
-
rows: (string | number)[][];
|
|
1108
|
+
rows: (string | number | boolean | null)[][];
|
|
1101
1109
|
title?: string | undefined;
|
|
1102
1110
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1103
1111
|
} | {
|
|
1104
|
-
rows: Record<string, string | number>[];
|
|
1112
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1105
1113
|
title?: string | undefined;
|
|
1106
1114
|
columns?: ("left" | "center" | "right")[] | {
|
|
1107
1115
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1130,11 +1138,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1130
1138
|
} | undefined;
|
|
1131
1139
|
}[] | undefined;
|
|
1132
1140
|
table?: {
|
|
1133
|
-
rows: (string | number)[][];
|
|
1141
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1134
1142
|
title?: string | undefined;
|
|
1135
1143
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1136
1144
|
} | {
|
|
1137
|
-
rows: Record<string, string | number>[];
|
|
1145
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1138
1146
|
title?: string | undefined;
|
|
1139
1147
|
columns?: ("left" | "center" | "right")[] | {
|
|
1140
1148
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1163,11 +1171,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1163
1171
|
} | undefined;
|
|
1164
1172
|
}[] | undefined;
|
|
1165
1173
|
table?: {
|
|
1166
|
-
rows: (string | number)[][];
|
|
1174
|
+
rows: (string | number | boolean | null)[][];
|
|
1167
1175
|
title?: string | undefined;
|
|
1168
1176
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1169
1177
|
} | {
|
|
1170
|
-
rows: Record<string, string | number>[];
|
|
1178
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1171
1179
|
title?: string | undefined;
|
|
1172
1180
|
columns?: ("left" | "center" | "right")[] | {
|
|
1173
1181
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1196,11 +1204,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1196
1204
|
} | undefined;
|
|
1197
1205
|
}[] | undefined;
|
|
1198
1206
|
table?: {
|
|
1199
|
-
rows: (string | number)[][];
|
|
1207
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1200
1208
|
title?: string | undefined;
|
|
1201
1209
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1202
1210
|
} | {
|
|
1203
|
-
rows: Record<string, string | number>[];
|
|
1211
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1204
1212
|
title?: string | undefined;
|
|
1205
1213
|
columns?: ("left" | "center" | "right")[] | {
|
|
1206
1214
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1234,11 +1242,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1234
1242
|
} | undefined;
|
|
1235
1243
|
}[] | undefined;
|
|
1236
1244
|
table?: {
|
|
1237
|
-
rows: (string | number)[][];
|
|
1245
|
+
rows: (string | number | boolean | null)[][];
|
|
1238
1246
|
title?: string | undefined;
|
|
1239
1247
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1240
1248
|
} | {
|
|
1241
|
-
rows: Record<string, string | number>[];
|
|
1249
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1242
1250
|
title?: string | undefined;
|
|
1243
1251
|
columns?: ("left" | "center" | "right")[] | {
|
|
1244
1252
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1267,11 +1275,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1267
1275
|
} | undefined;
|
|
1268
1276
|
}[] | undefined;
|
|
1269
1277
|
table?: {
|
|
1270
|
-
rows: (string | number)[][];
|
|
1278
|
+
rows: (string | number | boolean | null)[][];
|
|
1271
1279
|
title?: string | undefined;
|
|
1272
1280
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1273
1281
|
} | {
|
|
1274
|
-
rows: Record<string, string | number>[];
|
|
1282
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1275
1283
|
title?: string | undefined;
|
|
1276
1284
|
columns?: ("left" | "center" | "right")[] | {
|
|
1277
1285
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1305,11 +1313,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1305
1313
|
} | undefined;
|
|
1306
1314
|
}[] | undefined;
|
|
1307
1315
|
table?: {
|
|
1308
|
-
rows: (string | number)[][];
|
|
1316
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1309
1317
|
title?: string | undefined;
|
|
1310
1318
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1311
1319
|
} | {
|
|
1312
|
-
rows: Record<string, string | number>[];
|
|
1320
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1313
1321
|
title?: string | undefined;
|
|
1314
1322
|
columns?: ("left" | "center" | "right")[] | {
|
|
1315
1323
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1338,11 +1346,11 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
1338
1346
|
} | undefined;
|
|
1339
1347
|
}[] | undefined;
|
|
1340
1348
|
table?: {
|
|
1341
|
-
rows: (string | number)[][];
|
|
1349
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1342
1350
|
title?: string | undefined;
|
|
1343
1351
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1344
1352
|
} | {
|
|
1345
|
-
rows: Record<string, string | number>[];
|
|
1353
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1346
1354
|
title?: string | undefined;
|
|
1347
1355
|
columns?: ("left" | "center" | "right")[] | {
|
|
1348
1356
|
key: string;
|
|
@@ -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,20 +1433,22 @@ 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
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1432
|
-
}
|
|
1433
|
-
rows: (string | number)[][];
|
|
1440
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1441
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1442
|
+
rows: (string | number | boolean | null)[][];
|
|
1434
1443
|
title?: string | undefined;
|
|
1435
1444
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1436
1445
|
}, {
|
|
1437
|
-
rows: (string | number)[][];
|
|
1446
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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>;
|
|
@@ -1452,9 +1462,9 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1452
1462
|
label?: string | undefined;
|
|
1453
1463
|
align?: "left" | "center" | "right" | undefined;
|
|
1454
1464
|
}>, "many">]>>;
|
|
1455
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1456
|
-
}
|
|
1457
|
-
rows: Record<string, string | number>[];
|
|
1465
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1466
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1467
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1458
1468
|
title?: string | undefined;
|
|
1459
1469
|
columns?: ("left" | "center" | "right")[] | {
|
|
1460
1470
|
key: string;
|
|
@@ -1462,7 +1472,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1462
1472
|
align?: "left" | "center" | "right" | undefined;
|
|
1463
1473
|
}[] | undefined;
|
|
1464
1474
|
}, {
|
|
1465
|
-
rows: Record<string, string | number>[];
|
|
1475
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1466
1476
|
title?: string | undefined;
|
|
1467
1477
|
columns?: ("left" | "center" | "right")[] | {
|
|
1468
1478
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1485,11 +1495,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1485
1495
|
} | undefined;
|
|
1486
1496
|
}[] | undefined;
|
|
1487
1497
|
table?: {
|
|
1488
|
-
rows: (string | number)[][];
|
|
1498
|
+
rows: (string | number | boolean | null)[][];
|
|
1489
1499
|
title?: string | undefined;
|
|
1490
1500
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1491
1501
|
} | {
|
|
1492
|
-
rows: Record<string, string | number>[];
|
|
1502
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1493
1503
|
title?: string | undefined;
|
|
1494
1504
|
columns?: ("left" | "center" | "right")[] | {
|
|
1495
1505
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1512,11 +1522,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1512
1522
|
} | undefined;
|
|
1513
1523
|
}[] | undefined;
|
|
1514
1524
|
table?: {
|
|
1515
|
-
rows: (string | number)[][];
|
|
1525
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1516
1526
|
title?: string | undefined;
|
|
1517
1527
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1518
1528
|
} | {
|
|
1519
|
-
rows: Record<string, string | number>[];
|
|
1529
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1520
1530
|
title?: string | undefined;
|
|
1521
1531
|
columns?: ("left" | "center" | "right")[] | {
|
|
1522
1532
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1545,11 +1555,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1545
1555
|
} | undefined;
|
|
1546
1556
|
}[] | undefined;
|
|
1547
1557
|
table?: {
|
|
1548
|
-
rows: (string | number)[][];
|
|
1558
|
+
rows: (string | number | boolean | null)[][];
|
|
1549
1559
|
title?: string | undefined;
|
|
1550
1560
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1551
1561
|
} | {
|
|
1552
|
-
rows: Record<string, string | number>[];
|
|
1562
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1553
1563
|
title?: string | undefined;
|
|
1554
1564
|
columns?: ("left" | "center" | "right")[] | {
|
|
1555
1565
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1578,11 +1588,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1578
1588
|
} | undefined;
|
|
1579
1589
|
}[] | undefined;
|
|
1580
1590
|
table?: {
|
|
1581
|
-
rows: (string | number)[][];
|
|
1591
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1582
1592
|
title?: string | undefined;
|
|
1583
1593
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1584
1594
|
} | {
|
|
1585
|
-
rows: Record<string, string | number>[];
|
|
1595
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1586
1596
|
title?: string | undefined;
|
|
1587
1597
|
columns?: ("left" | "center" | "right")[] | {
|
|
1588
1598
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1611,11 +1621,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1611
1621
|
} | undefined;
|
|
1612
1622
|
}[] | undefined;
|
|
1613
1623
|
table?: {
|
|
1614
|
-
rows: (string | number)[][];
|
|
1624
|
+
rows: (string | number | boolean | null)[][];
|
|
1615
1625
|
title?: string | undefined;
|
|
1616
1626
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1617
1627
|
} | {
|
|
1618
|
-
rows: Record<string, string | number>[];
|
|
1628
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1619
1629
|
title?: string | undefined;
|
|
1620
1630
|
columns?: ("left" | "center" | "right")[] | {
|
|
1621
1631
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1644,11 +1654,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1644
1654
|
} | undefined;
|
|
1645
1655
|
}[] | undefined;
|
|
1646
1656
|
table?: {
|
|
1647
|
-
rows: (string | number)[][];
|
|
1657
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1648
1658
|
title?: string | undefined;
|
|
1649
1659
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1650
1660
|
} | {
|
|
1651
|
-
rows: Record<string, string | number>[];
|
|
1661
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1652
1662
|
title?: string | undefined;
|
|
1653
1663
|
columns?: ("left" | "center" | "right")[] | {
|
|
1654
1664
|
key: string;
|
|
@@ -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,20 +1736,22 @@ 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
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1733
|
-
}
|
|
1734
|
-
rows: (string | number)[][];
|
|
1743
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1744
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1745
|
+
rows: (string | number | boolean | null)[][];
|
|
1735
1746
|
title?: string | undefined;
|
|
1736
1747
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1737
1748
|
}, {
|
|
1738
|
-
rows: (string | number)[][];
|
|
1749
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
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>;
|
|
@@ -1753,9 +1765,9 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1753
1765
|
label?: string | undefined;
|
|
1754
1766
|
align?: "left" | "center" | "right" | undefined;
|
|
1755
1767
|
}>, "many">]>>;
|
|
1756
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1757
|
-
}
|
|
1758
|
-
rows: Record<string, string | number>[];
|
|
1768
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1769
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1770
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1759
1771
|
title?: string | undefined;
|
|
1760
1772
|
columns?: ("left" | "center" | "right")[] | {
|
|
1761
1773
|
key: string;
|
|
@@ -1763,7 +1775,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1763
1775
|
align?: "left" | "center" | "right" | undefined;
|
|
1764
1776
|
}[] | undefined;
|
|
1765
1777
|
}, {
|
|
1766
|
-
rows: Record<string, string | number>[];
|
|
1778
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1767
1779
|
title?: string | undefined;
|
|
1768
1780
|
columns?: ("left" | "center" | "right")[] | {
|
|
1769
1781
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1786,11 +1798,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1786
1798
|
} | undefined;
|
|
1787
1799
|
}[] | undefined;
|
|
1788
1800
|
table?: {
|
|
1789
|
-
rows: (string | number)[][];
|
|
1801
|
+
rows: (string | number | boolean | null)[][];
|
|
1790
1802
|
title?: string | undefined;
|
|
1791
1803
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1792
1804
|
} | {
|
|
1793
|
-
rows: Record<string, string | number>[];
|
|
1805
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1794
1806
|
title?: string | undefined;
|
|
1795
1807
|
columns?: ("left" | "center" | "right")[] | {
|
|
1796
1808
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1813,11 +1825,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1813
1825
|
} | undefined;
|
|
1814
1826
|
}[] | undefined;
|
|
1815
1827
|
table?: {
|
|
1816
|
-
rows: (string | number)[][];
|
|
1828
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1817
1829
|
title?: string | undefined;
|
|
1818
1830
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1819
1831
|
} | {
|
|
1820
|
-
rows: Record<string, string | number>[];
|
|
1832
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1821
1833
|
title?: string | undefined;
|
|
1822
1834
|
columns?: ("left" | "center" | "right")[] | {
|
|
1823
1835
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1846,11 +1858,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1846
1858
|
} | undefined;
|
|
1847
1859
|
}[] | undefined;
|
|
1848
1860
|
table?: {
|
|
1849
|
-
rows: (string | number)[][];
|
|
1861
|
+
rows: (string | number | boolean | null)[][];
|
|
1850
1862
|
title?: string | undefined;
|
|
1851
1863
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1852
1864
|
} | {
|
|
1853
|
-
rows: Record<string, string | number>[];
|
|
1865
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1854
1866
|
title?: string | undefined;
|
|
1855
1867
|
columns?: ("left" | "center" | "right")[] | {
|
|
1856
1868
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1879,11 +1891,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1879
1891
|
} | undefined;
|
|
1880
1892
|
}[] | undefined;
|
|
1881
1893
|
table?: {
|
|
1882
|
-
rows: (string | number)[][];
|
|
1894
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1883
1895
|
title?: string | undefined;
|
|
1884
1896
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1885
1897
|
} | {
|
|
1886
|
-
rows: Record<string, string | number>[];
|
|
1898
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1887
1899
|
title?: string | undefined;
|
|
1888
1900
|
columns?: ("left" | "center" | "right")[] | {
|
|
1889
1901
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1912,11 +1924,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1912
1924
|
} | undefined;
|
|
1913
1925
|
}[] | undefined;
|
|
1914
1926
|
table?: {
|
|
1915
|
-
rows: (string | number)[][];
|
|
1927
|
+
rows: (string | number | boolean | null)[][];
|
|
1916
1928
|
title?: string | undefined;
|
|
1917
1929
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1918
1930
|
} | {
|
|
1919
|
-
rows: Record<string, string | number>[];
|
|
1931
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1920
1932
|
title?: string | undefined;
|
|
1921
1933
|
columns?: ("left" | "center" | "right")[] | {
|
|
1922
1934
|
key: string;
|
|
@@ -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?: {
|
|
@@ -1945,11 +1957,11 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1945
1957
|
} | undefined;
|
|
1946
1958
|
}[] | undefined;
|
|
1947
1959
|
table?: {
|
|
1948
|
-
rows: (string | number)[][];
|
|
1960
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1949
1961
|
title?: string | undefined;
|
|
1950
1962
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1951
1963
|
} | {
|
|
1952
|
-
rows: Record<string, string | number>[];
|
|
1964
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1953
1965
|
title?: string | undefined;
|
|
1954
1966
|
columns?: ("left" | "center" | "right")[] | {
|
|
1955
1967
|
key: string;
|