@code-pushup/models 0.39.0 → 0.42.1
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 +122 -70
- package/package.json +2 -2
- package/src/index.d.ts +2 -0
- package/src/lib/audit-output.d.ts +321 -30
- package/src/lib/core-config.d.ts +4005 -501
- package/src/lib/implementation/schemas.d.ts +3 -1
- package/src/lib/plugin-config.d.ts +1944 -232
- package/src/lib/report.d.ts +515 -68
- package/src/lib/reports-diff.d.ts +12 -12
- package/src/lib/runner-config.d.ts +882 -92
- package/src/lib/table.d.ts +69 -0
|
@@ -5,7 +5,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
5
5
|
value: z.ZodNumber;
|
|
6
6
|
score: z.ZodNumber;
|
|
7
7
|
details: z.ZodOptional<z.ZodObject<{
|
|
8
|
-
issues: z.ZodArray<z.ZodObject<{
|
|
8
|
+
issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9
9
|
message: z.ZodString;
|
|
10
10
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
11
11
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -67,9 +67,54 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
67
67
|
endColumn?: number | undefined;
|
|
68
68
|
} | undefined;
|
|
69
69
|
} | undefined;
|
|
70
|
-
}>, "many"
|
|
70
|
+
}>, "many">>;
|
|
71
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
72
|
+
title: z.ZodOptional<z.ZodString>;
|
|
73
|
+
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
74
|
+
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
75
|
+
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
rows: (string | number)[][];
|
|
77
|
+
title?: string | undefined;
|
|
78
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
79
|
+
}, {
|
|
80
|
+
rows: (string | number)[][];
|
|
81
|
+
title?: string | undefined;
|
|
82
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
83
|
+
}>, z.ZodObject<{
|
|
84
|
+
title: z.ZodOptional<z.ZodString>;
|
|
85
|
+
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
86
|
+
key: z.ZodString;
|
|
87
|
+
label: z.ZodOptional<z.ZodString>;
|
|
88
|
+
align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
|
|
89
|
+
}, "strip", z.ZodTypeAny, {
|
|
90
|
+
key: string;
|
|
91
|
+
label?: string | undefined;
|
|
92
|
+
align?: "left" | "center" | "right" | undefined;
|
|
93
|
+
}, {
|
|
94
|
+
key: string;
|
|
95
|
+
label?: string | undefined;
|
|
96
|
+
align?: "left" | "center" | "right" | undefined;
|
|
97
|
+
}>, "many">]>>;
|
|
98
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
rows: Record<string, string | number>[];
|
|
101
|
+
title?: string | undefined;
|
|
102
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
103
|
+
key: string;
|
|
104
|
+
label?: string | undefined;
|
|
105
|
+
align?: "left" | "center" | "right" | undefined;
|
|
106
|
+
}[] | undefined;
|
|
107
|
+
}, {
|
|
108
|
+
rows: Record<string, string | number>[];
|
|
109
|
+
title?: string | undefined;
|
|
110
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
111
|
+
key: string;
|
|
112
|
+
label?: string | undefined;
|
|
113
|
+
align?: "left" | "center" | "right" | undefined;
|
|
114
|
+
}[] | undefined;
|
|
115
|
+
}>]>>;
|
|
71
116
|
}, "strip", z.ZodTypeAny, {
|
|
72
|
-
issues
|
|
117
|
+
issues?: {
|
|
73
118
|
message: string;
|
|
74
119
|
severity: "error" | "info" | "warning";
|
|
75
120
|
source?: {
|
|
@@ -81,9 +126,22 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
81
126
|
endColumn?: number | undefined;
|
|
82
127
|
} | undefined;
|
|
83
128
|
} | undefined;
|
|
84
|
-
}[];
|
|
129
|
+
}[] | undefined;
|
|
130
|
+
table?: {
|
|
131
|
+
rows: (string | number)[][];
|
|
132
|
+
title?: string | undefined;
|
|
133
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
134
|
+
} | {
|
|
135
|
+
rows: Record<string, string | number>[];
|
|
136
|
+
title?: string | undefined;
|
|
137
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
138
|
+
key: string;
|
|
139
|
+
label?: string | undefined;
|
|
140
|
+
align?: "left" | "center" | "right" | undefined;
|
|
141
|
+
}[] | undefined;
|
|
142
|
+
} | undefined;
|
|
85
143
|
}, {
|
|
86
|
-
issues
|
|
144
|
+
issues?: {
|
|
87
145
|
message: string;
|
|
88
146
|
severity: "error" | "info" | "warning";
|
|
89
147
|
source?: {
|
|
@@ -95,7 +153,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
95
153
|
endColumn?: number | undefined;
|
|
96
154
|
} | undefined;
|
|
97
155
|
} | undefined;
|
|
98
|
-
}[];
|
|
156
|
+
}[] | undefined;
|
|
157
|
+
table?: {
|
|
158
|
+
rows: (string | number)[][];
|
|
159
|
+
title?: string | undefined;
|
|
160
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
161
|
+
} | {
|
|
162
|
+
rows: Record<string, string | number>[];
|
|
163
|
+
title?: string | undefined;
|
|
164
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
165
|
+
key: string;
|
|
166
|
+
label?: string | undefined;
|
|
167
|
+
align?: "left" | "center" | "right" | undefined;
|
|
168
|
+
}[] | undefined;
|
|
169
|
+
} | undefined;
|
|
99
170
|
}>>;
|
|
100
171
|
}, "strip", z.ZodTypeAny, {
|
|
101
172
|
slug: string;
|
|
@@ -103,7 +174,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
103
174
|
score: number;
|
|
104
175
|
displayValue?: string | undefined;
|
|
105
176
|
details?: {
|
|
106
|
-
issues
|
|
177
|
+
issues?: {
|
|
107
178
|
message: string;
|
|
108
179
|
severity: "error" | "info" | "warning";
|
|
109
180
|
source?: {
|
|
@@ -115,7 +186,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
115
186
|
endColumn?: number | undefined;
|
|
116
187
|
} | undefined;
|
|
117
188
|
} | undefined;
|
|
118
|
-
}[];
|
|
189
|
+
}[] | undefined;
|
|
190
|
+
table?: {
|
|
191
|
+
rows: (string | number)[][];
|
|
192
|
+
title?: string | undefined;
|
|
193
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
194
|
+
} | {
|
|
195
|
+
rows: Record<string, string | number>[];
|
|
196
|
+
title?: string | undefined;
|
|
197
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
198
|
+
key: string;
|
|
199
|
+
label?: string | undefined;
|
|
200
|
+
align?: "left" | "center" | "right" | undefined;
|
|
201
|
+
}[] | undefined;
|
|
202
|
+
} | undefined;
|
|
119
203
|
} | undefined;
|
|
120
204
|
}, {
|
|
121
205
|
slug: string;
|
|
@@ -123,7 +207,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
123
207
|
score: number;
|
|
124
208
|
displayValue?: string | undefined;
|
|
125
209
|
details?: {
|
|
126
|
-
issues
|
|
210
|
+
issues?: {
|
|
127
211
|
message: string;
|
|
128
212
|
severity: "error" | "info" | "warning";
|
|
129
213
|
source?: {
|
|
@@ -135,7 +219,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
135
219
|
endColumn?: number | undefined;
|
|
136
220
|
} | undefined;
|
|
137
221
|
} | undefined;
|
|
138
|
-
}[];
|
|
222
|
+
}[] | undefined;
|
|
223
|
+
table?: {
|
|
224
|
+
rows: (string | number)[][];
|
|
225
|
+
title?: string | undefined;
|
|
226
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
227
|
+
} | {
|
|
228
|
+
rows: Record<string, string | number>[];
|
|
229
|
+
title?: string | undefined;
|
|
230
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
231
|
+
key: string;
|
|
232
|
+
label?: string | undefined;
|
|
233
|
+
align?: "left" | "center" | "right" | undefined;
|
|
234
|
+
}[] | undefined;
|
|
235
|
+
} | undefined;
|
|
139
236
|
} | undefined;
|
|
140
237
|
}>, "many">, {
|
|
141
238
|
slug: string;
|
|
@@ -143,7 +240,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
143
240
|
score: number;
|
|
144
241
|
displayValue?: string | undefined;
|
|
145
242
|
details?: {
|
|
146
|
-
issues
|
|
243
|
+
issues?: {
|
|
147
244
|
message: string;
|
|
148
245
|
severity: "error" | "info" | "warning";
|
|
149
246
|
source?: {
|
|
@@ -155,7 +252,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
155
252
|
endColumn?: number | undefined;
|
|
156
253
|
} | undefined;
|
|
157
254
|
} | undefined;
|
|
158
|
-
}[];
|
|
255
|
+
}[] | undefined;
|
|
256
|
+
table?: {
|
|
257
|
+
rows: (string | number)[][];
|
|
258
|
+
title?: string | undefined;
|
|
259
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
260
|
+
} | {
|
|
261
|
+
rows: Record<string, string | number>[];
|
|
262
|
+
title?: string | undefined;
|
|
263
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
264
|
+
key: string;
|
|
265
|
+
label?: string | undefined;
|
|
266
|
+
align?: "left" | "center" | "right" | undefined;
|
|
267
|
+
}[] | undefined;
|
|
268
|
+
} | undefined;
|
|
159
269
|
} | undefined;
|
|
160
270
|
}[], {
|
|
161
271
|
slug: string;
|
|
@@ -163,7 +273,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
163
273
|
score: number;
|
|
164
274
|
displayValue?: string | undefined;
|
|
165
275
|
details?: {
|
|
166
|
-
issues
|
|
276
|
+
issues?: {
|
|
167
277
|
message: string;
|
|
168
278
|
severity: "error" | "info" | "warning";
|
|
169
279
|
source?: {
|
|
@@ -175,7 +285,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
175
285
|
endColumn?: number | undefined;
|
|
176
286
|
} | undefined;
|
|
177
287
|
} | undefined;
|
|
178
|
-
}[];
|
|
288
|
+
}[] | undefined;
|
|
289
|
+
table?: {
|
|
290
|
+
rows: (string | number)[][];
|
|
291
|
+
title?: string | undefined;
|
|
292
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
293
|
+
} | {
|
|
294
|
+
rows: Record<string, string | number>[];
|
|
295
|
+
title?: string | undefined;
|
|
296
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
297
|
+
key: string;
|
|
298
|
+
label?: string | undefined;
|
|
299
|
+
align?: "left" | "center" | "right" | undefined;
|
|
300
|
+
}[] | undefined;
|
|
301
|
+
} | undefined;
|
|
179
302
|
} | undefined;
|
|
180
303
|
}[]>, z.ZodPromise<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
181
304
|
slug: z.ZodString;
|
|
@@ -183,7 +306,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
183
306
|
value: z.ZodNumber;
|
|
184
307
|
score: z.ZodNumber;
|
|
185
308
|
details: z.ZodOptional<z.ZodObject<{
|
|
186
|
-
issues: z.ZodArray<z.ZodObject<{
|
|
309
|
+
issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
187
310
|
message: z.ZodString;
|
|
188
311
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
189
312
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -245,9 +368,54 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
245
368
|
endColumn?: number | undefined;
|
|
246
369
|
} | undefined;
|
|
247
370
|
} | undefined;
|
|
248
|
-
}>, "many"
|
|
371
|
+
}>, "many">>;
|
|
372
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
373
|
+
title: z.ZodOptional<z.ZodString>;
|
|
374
|
+
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
375
|
+
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
376
|
+
}, "strip", z.ZodTypeAny, {
|
|
377
|
+
rows: (string | number)[][];
|
|
378
|
+
title?: string | undefined;
|
|
379
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
380
|
+
}, {
|
|
381
|
+
rows: (string | number)[][];
|
|
382
|
+
title?: string | undefined;
|
|
383
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
384
|
+
}>, z.ZodObject<{
|
|
385
|
+
title: z.ZodOptional<z.ZodString>;
|
|
386
|
+
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
387
|
+
key: z.ZodString;
|
|
388
|
+
label: z.ZodOptional<z.ZodString>;
|
|
389
|
+
align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
|
|
390
|
+
}, "strip", z.ZodTypeAny, {
|
|
391
|
+
key: string;
|
|
392
|
+
label?: string | undefined;
|
|
393
|
+
align?: "left" | "center" | "right" | undefined;
|
|
394
|
+
}, {
|
|
395
|
+
key: string;
|
|
396
|
+
label?: string | undefined;
|
|
397
|
+
align?: "left" | "center" | "right" | undefined;
|
|
398
|
+
}>, "many">]>>;
|
|
399
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
400
|
+
}, "strip", z.ZodTypeAny, {
|
|
401
|
+
rows: Record<string, string | number>[];
|
|
402
|
+
title?: string | undefined;
|
|
403
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
404
|
+
key: string;
|
|
405
|
+
label?: string | undefined;
|
|
406
|
+
align?: "left" | "center" | "right" | undefined;
|
|
407
|
+
}[] | undefined;
|
|
408
|
+
}, {
|
|
409
|
+
rows: Record<string, string | number>[];
|
|
410
|
+
title?: string | undefined;
|
|
411
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
412
|
+
key: string;
|
|
413
|
+
label?: string | undefined;
|
|
414
|
+
align?: "left" | "center" | "right" | undefined;
|
|
415
|
+
}[] | undefined;
|
|
416
|
+
}>]>>;
|
|
249
417
|
}, "strip", z.ZodTypeAny, {
|
|
250
|
-
issues
|
|
418
|
+
issues?: {
|
|
251
419
|
message: string;
|
|
252
420
|
severity: "error" | "info" | "warning";
|
|
253
421
|
source?: {
|
|
@@ -259,9 +427,22 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
259
427
|
endColumn?: number | undefined;
|
|
260
428
|
} | undefined;
|
|
261
429
|
} | undefined;
|
|
262
|
-
}[];
|
|
430
|
+
}[] | undefined;
|
|
431
|
+
table?: {
|
|
432
|
+
rows: (string | number)[][];
|
|
433
|
+
title?: string | undefined;
|
|
434
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
435
|
+
} | {
|
|
436
|
+
rows: Record<string, string | number>[];
|
|
437
|
+
title?: string | undefined;
|
|
438
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
439
|
+
key: string;
|
|
440
|
+
label?: string | undefined;
|
|
441
|
+
align?: "left" | "center" | "right" | undefined;
|
|
442
|
+
}[] | undefined;
|
|
443
|
+
} | undefined;
|
|
263
444
|
}, {
|
|
264
|
-
issues
|
|
445
|
+
issues?: {
|
|
265
446
|
message: string;
|
|
266
447
|
severity: "error" | "info" | "warning";
|
|
267
448
|
source?: {
|
|
@@ -273,7 +454,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
273
454
|
endColumn?: number | undefined;
|
|
274
455
|
} | undefined;
|
|
275
456
|
} | undefined;
|
|
276
|
-
}[];
|
|
457
|
+
}[] | undefined;
|
|
458
|
+
table?: {
|
|
459
|
+
rows: (string | number)[][];
|
|
460
|
+
title?: string | undefined;
|
|
461
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
462
|
+
} | {
|
|
463
|
+
rows: Record<string, string | number>[];
|
|
464
|
+
title?: string | undefined;
|
|
465
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
466
|
+
key: string;
|
|
467
|
+
label?: string | undefined;
|
|
468
|
+
align?: "left" | "center" | "right" | undefined;
|
|
469
|
+
}[] | undefined;
|
|
470
|
+
} | undefined;
|
|
277
471
|
}>>;
|
|
278
472
|
}, "strip", z.ZodTypeAny, {
|
|
279
473
|
slug: string;
|
|
@@ -281,7 +475,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
281
475
|
score: number;
|
|
282
476
|
displayValue?: string | undefined;
|
|
283
477
|
details?: {
|
|
284
|
-
issues
|
|
478
|
+
issues?: {
|
|
285
479
|
message: string;
|
|
286
480
|
severity: "error" | "info" | "warning";
|
|
287
481
|
source?: {
|
|
@@ -293,7 +487,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
293
487
|
endColumn?: number | undefined;
|
|
294
488
|
} | undefined;
|
|
295
489
|
} | undefined;
|
|
296
|
-
}[];
|
|
490
|
+
}[] | undefined;
|
|
491
|
+
table?: {
|
|
492
|
+
rows: (string | number)[][];
|
|
493
|
+
title?: string | undefined;
|
|
494
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
495
|
+
} | {
|
|
496
|
+
rows: Record<string, string | number>[];
|
|
497
|
+
title?: string | undefined;
|
|
498
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
499
|
+
key: string;
|
|
500
|
+
label?: string | undefined;
|
|
501
|
+
align?: "left" | "center" | "right" | undefined;
|
|
502
|
+
}[] | undefined;
|
|
503
|
+
} | undefined;
|
|
297
504
|
} | undefined;
|
|
298
505
|
}, {
|
|
299
506
|
slug: string;
|
|
@@ -301,7 +508,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
301
508
|
score: number;
|
|
302
509
|
displayValue?: string | undefined;
|
|
303
510
|
details?: {
|
|
304
|
-
issues
|
|
511
|
+
issues?: {
|
|
305
512
|
message: string;
|
|
306
513
|
severity: "error" | "info" | "warning";
|
|
307
514
|
source?: {
|
|
@@ -313,7 +520,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
313
520
|
endColumn?: number | undefined;
|
|
314
521
|
} | undefined;
|
|
315
522
|
} | undefined;
|
|
316
|
-
}[];
|
|
523
|
+
}[] | undefined;
|
|
524
|
+
table?: {
|
|
525
|
+
rows: (string | number)[][];
|
|
526
|
+
title?: string | undefined;
|
|
527
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
528
|
+
} | {
|
|
529
|
+
rows: Record<string, string | number>[];
|
|
530
|
+
title?: string | undefined;
|
|
531
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
532
|
+
key: string;
|
|
533
|
+
label?: string | undefined;
|
|
534
|
+
align?: "left" | "center" | "right" | undefined;
|
|
535
|
+
}[] | undefined;
|
|
536
|
+
} | undefined;
|
|
317
537
|
} | undefined;
|
|
318
538
|
}>, "many">, {
|
|
319
539
|
slug: string;
|
|
@@ -321,7 +541,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
321
541
|
score: number;
|
|
322
542
|
displayValue?: string | undefined;
|
|
323
543
|
details?: {
|
|
324
|
-
issues
|
|
544
|
+
issues?: {
|
|
325
545
|
message: string;
|
|
326
546
|
severity: "error" | "info" | "warning";
|
|
327
547
|
source?: {
|
|
@@ -333,7 +553,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
333
553
|
endColumn?: number | undefined;
|
|
334
554
|
} | undefined;
|
|
335
555
|
} | undefined;
|
|
336
|
-
}[];
|
|
556
|
+
}[] | undefined;
|
|
557
|
+
table?: {
|
|
558
|
+
rows: (string | number)[][];
|
|
559
|
+
title?: string | undefined;
|
|
560
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
561
|
+
} | {
|
|
562
|
+
rows: Record<string, string | number>[];
|
|
563
|
+
title?: string | undefined;
|
|
564
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
565
|
+
key: string;
|
|
566
|
+
label?: string | undefined;
|
|
567
|
+
align?: "left" | "center" | "right" | undefined;
|
|
568
|
+
}[] | undefined;
|
|
569
|
+
} | undefined;
|
|
337
570
|
} | undefined;
|
|
338
571
|
}[], {
|
|
339
572
|
slug: string;
|
|
@@ -341,7 +574,7 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
341
574
|
score: number;
|
|
342
575
|
displayValue?: string | undefined;
|
|
343
576
|
details?: {
|
|
344
|
-
issues
|
|
577
|
+
issues?: {
|
|
345
578
|
message: string;
|
|
346
579
|
severity: "error" | "info" | "warning";
|
|
347
580
|
source?: {
|
|
@@ -353,7 +586,20 @@ export declare const outputTransformSchema: z.ZodFunction<z.ZodTuple<[z.ZodUnkno
|
|
|
353
586
|
endColumn?: number | undefined;
|
|
354
587
|
} | undefined;
|
|
355
588
|
} | undefined;
|
|
356
|
-
}[];
|
|
589
|
+
}[] | undefined;
|
|
590
|
+
table?: {
|
|
591
|
+
rows: (string | number)[][];
|
|
592
|
+
title?: string | undefined;
|
|
593
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
594
|
+
} | {
|
|
595
|
+
rows: Record<string, string | number>[];
|
|
596
|
+
title?: string | undefined;
|
|
597
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
598
|
+
key: string;
|
|
599
|
+
label?: string | undefined;
|
|
600
|
+
align?: "left" | "center" | "right" | undefined;
|
|
601
|
+
}[] | undefined;
|
|
602
|
+
} | undefined;
|
|
357
603
|
} | undefined;
|
|
358
604
|
}[]>>]>>;
|
|
359
605
|
export type OutputTransform = z.infer<typeof outputTransformSchema>;
|
|
@@ -367,7 +613,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
367
613
|
value: z.ZodNumber;
|
|
368
614
|
score: z.ZodNumber;
|
|
369
615
|
details: z.ZodOptional<z.ZodObject<{
|
|
370
|
-
issues: z.ZodArray<z.ZodObject<{
|
|
616
|
+
issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
371
617
|
message: z.ZodString;
|
|
372
618
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
373
619
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -429,9 +675,54 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
429
675
|
endColumn?: number | undefined;
|
|
430
676
|
} | undefined;
|
|
431
677
|
} | undefined;
|
|
432
|
-
}>, "many"
|
|
678
|
+
}>, "many">>;
|
|
679
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
680
|
+
title: z.ZodOptional<z.ZodString>;
|
|
681
|
+
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
682
|
+
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
683
|
+
}, "strip", z.ZodTypeAny, {
|
|
684
|
+
rows: (string | number)[][];
|
|
685
|
+
title?: string | undefined;
|
|
686
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
687
|
+
}, {
|
|
688
|
+
rows: (string | number)[][];
|
|
689
|
+
title?: string | undefined;
|
|
690
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
691
|
+
}>, z.ZodObject<{
|
|
692
|
+
title: z.ZodOptional<z.ZodString>;
|
|
693
|
+
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
694
|
+
key: z.ZodString;
|
|
695
|
+
label: z.ZodOptional<z.ZodString>;
|
|
696
|
+
align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
|
|
697
|
+
}, "strip", z.ZodTypeAny, {
|
|
698
|
+
key: string;
|
|
699
|
+
label?: string | undefined;
|
|
700
|
+
align?: "left" | "center" | "right" | undefined;
|
|
701
|
+
}, {
|
|
702
|
+
key: string;
|
|
703
|
+
label?: string | undefined;
|
|
704
|
+
align?: "left" | "center" | "right" | undefined;
|
|
705
|
+
}>, "many">]>>;
|
|
706
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
707
|
+
}, "strip", z.ZodTypeAny, {
|
|
708
|
+
rows: Record<string, string | number>[];
|
|
709
|
+
title?: string | undefined;
|
|
710
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
711
|
+
key: string;
|
|
712
|
+
label?: string | undefined;
|
|
713
|
+
align?: "left" | "center" | "right" | undefined;
|
|
714
|
+
}[] | undefined;
|
|
715
|
+
}, {
|
|
716
|
+
rows: Record<string, string | number>[];
|
|
717
|
+
title?: string | undefined;
|
|
718
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
719
|
+
key: string;
|
|
720
|
+
label?: string | undefined;
|
|
721
|
+
align?: "left" | "center" | "right" | undefined;
|
|
722
|
+
}[] | undefined;
|
|
723
|
+
}>]>>;
|
|
433
724
|
}, "strip", z.ZodTypeAny, {
|
|
434
|
-
issues
|
|
725
|
+
issues?: {
|
|
435
726
|
message: string;
|
|
436
727
|
severity: "error" | "info" | "warning";
|
|
437
728
|
source?: {
|
|
@@ -443,9 +734,22 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
443
734
|
endColumn?: number | undefined;
|
|
444
735
|
} | undefined;
|
|
445
736
|
} | undefined;
|
|
446
|
-
}[];
|
|
737
|
+
}[] | undefined;
|
|
738
|
+
table?: {
|
|
739
|
+
rows: (string | number)[][];
|
|
740
|
+
title?: string | undefined;
|
|
741
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
742
|
+
} | {
|
|
743
|
+
rows: Record<string, string | number>[];
|
|
744
|
+
title?: string | undefined;
|
|
745
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
746
|
+
key: string;
|
|
747
|
+
label?: string | undefined;
|
|
748
|
+
align?: "left" | "center" | "right" | undefined;
|
|
749
|
+
}[] | undefined;
|
|
750
|
+
} | undefined;
|
|
447
751
|
}, {
|
|
448
|
-
issues
|
|
752
|
+
issues?: {
|
|
449
753
|
message: string;
|
|
450
754
|
severity: "error" | "info" | "warning";
|
|
451
755
|
source?: {
|
|
@@ -457,7 +761,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
457
761
|
endColumn?: number | undefined;
|
|
458
762
|
} | undefined;
|
|
459
763
|
} | undefined;
|
|
460
|
-
}[];
|
|
764
|
+
}[] | undefined;
|
|
765
|
+
table?: {
|
|
766
|
+
rows: (string | number)[][];
|
|
767
|
+
title?: string | undefined;
|
|
768
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
769
|
+
} | {
|
|
770
|
+
rows: Record<string, string | number>[];
|
|
771
|
+
title?: string | undefined;
|
|
772
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
773
|
+
key: string;
|
|
774
|
+
label?: string | undefined;
|
|
775
|
+
align?: "left" | "center" | "right" | undefined;
|
|
776
|
+
}[] | undefined;
|
|
777
|
+
} | undefined;
|
|
461
778
|
}>>;
|
|
462
779
|
}, "strip", z.ZodTypeAny, {
|
|
463
780
|
slug: string;
|
|
@@ -465,7 +782,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
465
782
|
score: number;
|
|
466
783
|
displayValue?: string | undefined;
|
|
467
784
|
details?: {
|
|
468
|
-
issues
|
|
785
|
+
issues?: {
|
|
469
786
|
message: string;
|
|
470
787
|
severity: "error" | "info" | "warning";
|
|
471
788
|
source?: {
|
|
@@ -477,7 +794,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
477
794
|
endColumn?: number | undefined;
|
|
478
795
|
} | undefined;
|
|
479
796
|
} | undefined;
|
|
480
|
-
}[];
|
|
797
|
+
}[] | undefined;
|
|
798
|
+
table?: {
|
|
799
|
+
rows: (string | number)[][];
|
|
800
|
+
title?: string | undefined;
|
|
801
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
802
|
+
} | {
|
|
803
|
+
rows: Record<string, string | number>[];
|
|
804
|
+
title?: string | undefined;
|
|
805
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
806
|
+
key: string;
|
|
807
|
+
label?: string | undefined;
|
|
808
|
+
align?: "left" | "center" | "right" | undefined;
|
|
809
|
+
}[] | undefined;
|
|
810
|
+
} | undefined;
|
|
481
811
|
} | undefined;
|
|
482
812
|
}, {
|
|
483
813
|
slug: string;
|
|
@@ -485,7 +815,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
485
815
|
score: number;
|
|
486
816
|
displayValue?: string | undefined;
|
|
487
817
|
details?: {
|
|
488
|
-
issues
|
|
818
|
+
issues?: {
|
|
489
819
|
message: string;
|
|
490
820
|
severity: "error" | "info" | "warning";
|
|
491
821
|
source?: {
|
|
@@ -497,7 +827,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
497
827
|
endColumn?: number | undefined;
|
|
498
828
|
} | undefined;
|
|
499
829
|
} | undefined;
|
|
500
|
-
}[];
|
|
830
|
+
}[] | undefined;
|
|
831
|
+
table?: {
|
|
832
|
+
rows: (string | number)[][];
|
|
833
|
+
title?: string | undefined;
|
|
834
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
835
|
+
} | {
|
|
836
|
+
rows: Record<string, string | number>[];
|
|
837
|
+
title?: string | undefined;
|
|
838
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
839
|
+
key: string;
|
|
840
|
+
label?: string | undefined;
|
|
841
|
+
align?: "left" | "center" | "right" | undefined;
|
|
842
|
+
}[] | undefined;
|
|
843
|
+
} | undefined;
|
|
501
844
|
} | undefined;
|
|
502
845
|
}>, "many">, {
|
|
503
846
|
slug: string;
|
|
@@ -505,7 +848,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
505
848
|
score: number;
|
|
506
849
|
displayValue?: string | undefined;
|
|
507
850
|
details?: {
|
|
508
|
-
issues
|
|
851
|
+
issues?: {
|
|
509
852
|
message: string;
|
|
510
853
|
severity: "error" | "info" | "warning";
|
|
511
854
|
source?: {
|
|
@@ -517,7 +860,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
517
860
|
endColumn?: number | undefined;
|
|
518
861
|
} | undefined;
|
|
519
862
|
} | undefined;
|
|
520
|
-
}[];
|
|
863
|
+
}[] | undefined;
|
|
864
|
+
table?: {
|
|
865
|
+
rows: (string | number)[][];
|
|
866
|
+
title?: string | undefined;
|
|
867
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
868
|
+
} | {
|
|
869
|
+
rows: Record<string, string | number>[];
|
|
870
|
+
title?: string | undefined;
|
|
871
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
872
|
+
key: string;
|
|
873
|
+
label?: string | undefined;
|
|
874
|
+
align?: "left" | "center" | "right" | undefined;
|
|
875
|
+
}[] | undefined;
|
|
876
|
+
} | undefined;
|
|
521
877
|
} | undefined;
|
|
522
878
|
}[], {
|
|
523
879
|
slug: string;
|
|
@@ -525,7 +881,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
525
881
|
score: number;
|
|
526
882
|
displayValue?: string | undefined;
|
|
527
883
|
details?: {
|
|
528
|
-
issues
|
|
884
|
+
issues?: {
|
|
529
885
|
message: string;
|
|
530
886
|
severity: "error" | "info" | "warning";
|
|
531
887
|
source?: {
|
|
@@ -537,7 +893,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
537
893
|
endColumn?: number | undefined;
|
|
538
894
|
} | undefined;
|
|
539
895
|
} | undefined;
|
|
540
|
-
}[];
|
|
896
|
+
}[] | undefined;
|
|
897
|
+
table?: {
|
|
898
|
+
rows: (string | number)[][];
|
|
899
|
+
title?: string | undefined;
|
|
900
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
901
|
+
} | {
|
|
902
|
+
rows: Record<string, string | number>[];
|
|
903
|
+
title?: string | undefined;
|
|
904
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
905
|
+
key: string;
|
|
906
|
+
label?: string | undefined;
|
|
907
|
+
align?: "left" | "center" | "right" | undefined;
|
|
908
|
+
}[] | undefined;
|
|
909
|
+
} | undefined;
|
|
541
910
|
} | undefined;
|
|
542
911
|
}[]>, z.ZodPromise<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
543
912
|
slug: z.ZodString;
|
|
@@ -545,7 +914,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
545
914
|
value: z.ZodNumber;
|
|
546
915
|
score: z.ZodNumber;
|
|
547
916
|
details: z.ZodOptional<z.ZodObject<{
|
|
548
|
-
issues: z.ZodArray<z.ZodObject<{
|
|
917
|
+
issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
549
918
|
message: z.ZodString;
|
|
550
919
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
551
920
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -607,9 +976,54 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
607
976
|
endColumn?: number | undefined;
|
|
608
977
|
} | undefined;
|
|
609
978
|
} | undefined;
|
|
610
|
-
}>, "many"
|
|
979
|
+
}>, "many">>;
|
|
980
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
981
|
+
title: z.ZodOptional<z.ZodString>;
|
|
982
|
+
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
983
|
+
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
984
|
+
}, "strip", z.ZodTypeAny, {
|
|
985
|
+
rows: (string | number)[][];
|
|
986
|
+
title?: string | undefined;
|
|
987
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
988
|
+
}, {
|
|
989
|
+
rows: (string | number)[][];
|
|
990
|
+
title?: string | undefined;
|
|
991
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
992
|
+
}>, z.ZodObject<{
|
|
993
|
+
title: z.ZodOptional<z.ZodString>;
|
|
994
|
+
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
995
|
+
key: z.ZodString;
|
|
996
|
+
label: z.ZodOptional<z.ZodString>;
|
|
997
|
+
align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
|
|
998
|
+
}, "strip", z.ZodTypeAny, {
|
|
999
|
+
key: string;
|
|
1000
|
+
label?: string | undefined;
|
|
1001
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1002
|
+
}, {
|
|
1003
|
+
key: string;
|
|
1004
|
+
label?: string | undefined;
|
|
1005
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1006
|
+
}>, "many">]>>;
|
|
1007
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
1008
|
+
}, "strip", z.ZodTypeAny, {
|
|
1009
|
+
rows: Record<string, string | number>[];
|
|
1010
|
+
title?: string | undefined;
|
|
1011
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1012
|
+
key: string;
|
|
1013
|
+
label?: string | undefined;
|
|
1014
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1015
|
+
}[] | undefined;
|
|
1016
|
+
}, {
|
|
1017
|
+
rows: Record<string, string | number>[];
|
|
1018
|
+
title?: string | undefined;
|
|
1019
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1020
|
+
key: string;
|
|
1021
|
+
label?: string | undefined;
|
|
1022
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1023
|
+
}[] | undefined;
|
|
1024
|
+
}>]>>;
|
|
611
1025
|
}, "strip", z.ZodTypeAny, {
|
|
612
|
-
issues
|
|
1026
|
+
issues?: {
|
|
613
1027
|
message: string;
|
|
614
1028
|
severity: "error" | "info" | "warning";
|
|
615
1029
|
source?: {
|
|
@@ -621,9 +1035,22 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
621
1035
|
endColumn?: number | undefined;
|
|
622
1036
|
} | undefined;
|
|
623
1037
|
} | undefined;
|
|
624
|
-
}[];
|
|
1038
|
+
}[] | undefined;
|
|
1039
|
+
table?: {
|
|
1040
|
+
rows: (string | number)[][];
|
|
1041
|
+
title?: string | undefined;
|
|
1042
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1043
|
+
} | {
|
|
1044
|
+
rows: Record<string, string | number>[];
|
|
1045
|
+
title?: string | undefined;
|
|
1046
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1047
|
+
key: string;
|
|
1048
|
+
label?: string | undefined;
|
|
1049
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1050
|
+
}[] | undefined;
|
|
1051
|
+
} | undefined;
|
|
625
1052
|
}, {
|
|
626
|
-
issues
|
|
1053
|
+
issues?: {
|
|
627
1054
|
message: string;
|
|
628
1055
|
severity: "error" | "info" | "warning";
|
|
629
1056
|
source?: {
|
|
@@ -635,7 +1062,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
635
1062
|
endColumn?: number | undefined;
|
|
636
1063
|
} | undefined;
|
|
637
1064
|
} | undefined;
|
|
638
|
-
}[];
|
|
1065
|
+
}[] | undefined;
|
|
1066
|
+
table?: {
|
|
1067
|
+
rows: (string | number)[][];
|
|
1068
|
+
title?: string | undefined;
|
|
1069
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1070
|
+
} | {
|
|
1071
|
+
rows: Record<string, string | number>[];
|
|
1072
|
+
title?: string | undefined;
|
|
1073
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1074
|
+
key: string;
|
|
1075
|
+
label?: string | undefined;
|
|
1076
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1077
|
+
}[] | undefined;
|
|
1078
|
+
} | undefined;
|
|
639
1079
|
}>>;
|
|
640
1080
|
}, "strip", z.ZodTypeAny, {
|
|
641
1081
|
slug: string;
|
|
@@ -643,7 +1083,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
643
1083
|
score: number;
|
|
644
1084
|
displayValue?: string | undefined;
|
|
645
1085
|
details?: {
|
|
646
|
-
issues
|
|
1086
|
+
issues?: {
|
|
647
1087
|
message: string;
|
|
648
1088
|
severity: "error" | "info" | "warning";
|
|
649
1089
|
source?: {
|
|
@@ -655,7 +1095,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
655
1095
|
endColumn?: number | undefined;
|
|
656
1096
|
} | undefined;
|
|
657
1097
|
} | undefined;
|
|
658
|
-
}[];
|
|
1098
|
+
}[] | undefined;
|
|
1099
|
+
table?: {
|
|
1100
|
+
rows: (string | number)[][];
|
|
1101
|
+
title?: string | undefined;
|
|
1102
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1103
|
+
} | {
|
|
1104
|
+
rows: Record<string, string | number>[];
|
|
1105
|
+
title?: string | undefined;
|
|
1106
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1107
|
+
key: string;
|
|
1108
|
+
label?: string | undefined;
|
|
1109
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1110
|
+
}[] | undefined;
|
|
1111
|
+
} | undefined;
|
|
659
1112
|
} | undefined;
|
|
660
1113
|
}, {
|
|
661
1114
|
slug: string;
|
|
@@ -663,7 +1116,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
663
1116
|
score: number;
|
|
664
1117
|
displayValue?: string | undefined;
|
|
665
1118
|
details?: {
|
|
666
|
-
issues
|
|
1119
|
+
issues?: {
|
|
667
1120
|
message: string;
|
|
668
1121
|
severity: "error" | "info" | "warning";
|
|
669
1122
|
source?: {
|
|
@@ -675,7 +1128,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
675
1128
|
endColumn?: number | undefined;
|
|
676
1129
|
} | undefined;
|
|
677
1130
|
} | undefined;
|
|
678
|
-
}[];
|
|
1131
|
+
}[] | undefined;
|
|
1132
|
+
table?: {
|
|
1133
|
+
rows: (string | number)[][];
|
|
1134
|
+
title?: string | undefined;
|
|
1135
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1136
|
+
} | {
|
|
1137
|
+
rows: Record<string, string | number>[];
|
|
1138
|
+
title?: string | undefined;
|
|
1139
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1140
|
+
key: string;
|
|
1141
|
+
label?: string | undefined;
|
|
1142
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1143
|
+
}[] | undefined;
|
|
1144
|
+
} | undefined;
|
|
679
1145
|
} | undefined;
|
|
680
1146
|
}>, "many">, {
|
|
681
1147
|
slug: string;
|
|
@@ -683,7 +1149,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
683
1149
|
score: number;
|
|
684
1150
|
displayValue?: string | undefined;
|
|
685
1151
|
details?: {
|
|
686
|
-
issues
|
|
1152
|
+
issues?: {
|
|
687
1153
|
message: string;
|
|
688
1154
|
severity: "error" | "info" | "warning";
|
|
689
1155
|
source?: {
|
|
@@ -695,7 +1161,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
695
1161
|
endColumn?: number | undefined;
|
|
696
1162
|
} | undefined;
|
|
697
1163
|
} | undefined;
|
|
698
|
-
}[];
|
|
1164
|
+
}[] | undefined;
|
|
1165
|
+
table?: {
|
|
1166
|
+
rows: (string | number)[][];
|
|
1167
|
+
title?: string | undefined;
|
|
1168
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1169
|
+
} | {
|
|
1170
|
+
rows: Record<string, string | number>[];
|
|
1171
|
+
title?: string | undefined;
|
|
1172
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1173
|
+
key: string;
|
|
1174
|
+
label?: string | undefined;
|
|
1175
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1176
|
+
}[] | undefined;
|
|
1177
|
+
} | undefined;
|
|
699
1178
|
} | undefined;
|
|
700
1179
|
}[], {
|
|
701
1180
|
slug: string;
|
|
@@ -703,7 +1182,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
703
1182
|
score: number;
|
|
704
1183
|
displayValue?: string | undefined;
|
|
705
1184
|
details?: {
|
|
706
|
-
issues
|
|
1185
|
+
issues?: {
|
|
707
1186
|
message: string;
|
|
708
1187
|
severity: "error" | "info" | "warning";
|
|
709
1188
|
source?: {
|
|
@@ -715,7 +1194,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
715
1194
|
endColumn?: number | undefined;
|
|
716
1195
|
} | undefined;
|
|
717
1196
|
} | undefined;
|
|
718
|
-
}[];
|
|
1197
|
+
}[] | undefined;
|
|
1198
|
+
table?: {
|
|
1199
|
+
rows: (string | number)[][];
|
|
1200
|
+
title?: string | undefined;
|
|
1201
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1202
|
+
} | {
|
|
1203
|
+
rows: Record<string, string | number>[];
|
|
1204
|
+
title?: string | undefined;
|
|
1205
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1206
|
+
key: string;
|
|
1207
|
+
label?: string | undefined;
|
|
1208
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1209
|
+
}[] | undefined;
|
|
1210
|
+
} | undefined;
|
|
719
1211
|
} | undefined;
|
|
720
1212
|
}[]>>]>>>;
|
|
721
1213
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -728,7 +1220,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
728
1220
|
score: number;
|
|
729
1221
|
displayValue?: string | undefined;
|
|
730
1222
|
details?: {
|
|
731
|
-
issues
|
|
1223
|
+
issues?: {
|
|
732
1224
|
message: string;
|
|
733
1225
|
severity: "error" | "info" | "warning";
|
|
734
1226
|
source?: {
|
|
@@ -740,7 +1232,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
740
1232
|
endColumn?: number | undefined;
|
|
741
1233
|
} | undefined;
|
|
742
1234
|
} | undefined;
|
|
743
|
-
}[];
|
|
1235
|
+
}[] | undefined;
|
|
1236
|
+
table?: {
|
|
1237
|
+
rows: (string | number)[][];
|
|
1238
|
+
title?: string | undefined;
|
|
1239
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1240
|
+
} | {
|
|
1241
|
+
rows: Record<string, string | number>[];
|
|
1242
|
+
title?: string | undefined;
|
|
1243
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1244
|
+
key: string;
|
|
1245
|
+
label?: string | undefined;
|
|
1246
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1247
|
+
}[] | undefined;
|
|
1248
|
+
} | undefined;
|
|
744
1249
|
} | undefined;
|
|
745
1250
|
}[] | Promise<{
|
|
746
1251
|
slug: string;
|
|
@@ -748,7 +1253,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
748
1253
|
score: number;
|
|
749
1254
|
displayValue?: string | undefined;
|
|
750
1255
|
details?: {
|
|
751
|
-
issues
|
|
1256
|
+
issues?: {
|
|
752
1257
|
message: string;
|
|
753
1258
|
severity: "error" | "info" | "warning";
|
|
754
1259
|
source?: {
|
|
@@ -760,7 +1265,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
760
1265
|
endColumn?: number | undefined;
|
|
761
1266
|
} | undefined;
|
|
762
1267
|
} | undefined;
|
|
763
|
-
}[];
|
|
1268
|
+
}[] | undefined;
|
|
1269
|
+
table?: {
|
|
1270
|
+
rows: (string | number)[][];
|
|
1271
|
+
title?: string | undefined;
|
|
1272
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1273
|
+
} | {
|
|
1274
|
+
rows: Record<string, string | number>[];
|
|
1275
|
+
title?: string | undefined;
|
|
1276
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1277
|
+
key: string;
|
|
1278
|
+
label?: string | undefined;
|
|
1279
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1280
|
+
}[] | undefined;
|
|
1281
|
+
} | undefined;
|
|
764
1282
|
} | undefined;
|
|
765
1283
|
}[]>) | undefined;
|
|
766
1284
|
}, {
|
|
@@ -773,7 +1291,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
773
1291
|
score: number;
|
|
774
1292
|
displayValue?: string | undefined;
|
|
775
1293
|
details?: {
|
|
776
|
-
issues
|
|
1294
|
+
issues?: {
|
|
777
1295
|
message: string;
|
|
778
1296
|
severity: "error" | "info" | "warning";
|
|
779
1297
|
source?: {
|
|
@@ -785,7 +1303,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
785
1303
|
endColumn?: number | undefined;
|
|
786
1304
|
} | undefined;
|
|
787
1305
|
} | undefined;
|
|
788
|
-
}[];
|
|
1306
|
+
}[] | undefined;
|
|
1307
|
+
table?: {
|
|
1308
|
+
rows: (string | number)[][];
|
|
1309
|
+
title?: string | undefined;
|
|
1310
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1311
|
+
} | {
|
|
1312
|
+
rows: Record<string, string | number>[];
|
|
1313
|
+
title?: string | undefined;
|
|
1314
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1315
|
+
key: string;
|
|
1316
|
+
label?: string | undefined;
|
|
1317
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1318
|
+
}[] | undefined;
|
|
1319
|
+
} | undefined;
|
|
789
1320
|
} | undefined;
|
|
790
1321
|
}[] | Promise<{
|
|
791
1322
|
slug: string;
|
|
@@ -793,7 +1324,7 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
793
1324
|
score: number;
|
|
794
1325
|
displayValue?: string | undefined;
|
|
795
1326
|
details?: {
|
|
796
|
-
issues
|
|
1327
|
+
issues?: {
|
|
797
1328
|
message: string;
|
|
798
1329
|
severity: "error" | "info" | "warning";
|
|
799
1330
|
source?: {
|
|
@@ -805,7 +1336,20 @@ export declare const runnerConfigSchema: z.ZodObject<{
|
|
|
805
1336
|
endColumn?: number | undefined;
|
|
806
1337
|
} | undefined;
|
|
807
1338
|
} | undefined;
|
|
808
|
-
}[];
|
|
1339
|
+
}[] | undefined;
|
|
1340
|
+
table?: {
|
|
1341
|
+
rows: (string | number)[][];
|
|
1342
|
+
title?: string | undefined;
|
|
1343
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1344
|
+
} | {
|
|
1345
|
+
rows: Record<string, string | number>[];
|
|
1346
|
+
title?: string | undefined;
|
|
1347
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1348
|
+
key: string;
|
|
1349
|
+
label?: string | undefined;
|
|
1350
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1351
|
+
}[] | undefined;
|
|
1352
|
+
} | undefined;
|
|
809
1353
|
} | undefined;
|
|
810
1354
|
}[]>) | undefined;
|
|
811
1355
|
}>;
|
|
@@ -818,7 +1362,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
818
1362
|
value: z.ZodNumber;
|
|
819
1363
|
score: z.ZodNumber;
|
|
820
1364
|
details: z.ZodOptional<z.ZodObject<{
|
|
821
|
-
issues: z.ZodArray<z.ZodObject<{
|
|
1365
|
+
issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
822
1366
|
message: z.ZodString;
|
|
823
1367
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
824
1368
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -880,9 +1424,54 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
880
1424
|
endColumn?: number | undefined;
|
|
881
1425
|
} | undefined;
|
|
882
1426
|
} | undefined;
|
|
883
|
-
}>, "many"
|
|
1427
|
+
}>, "many">>;
|
|
1428
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1429
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1430
|
+
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1431
|
+
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
1432
|
+
}, "strip", z.ZodTypeAny, {
|
|
1433
|
+
rows: (string | number)[][];
|
|
1434
|
+
title?: string | undefined;
|
|
1435
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1436
|
+
}, {
|
|
1437
|
+
rows: (string | number)[][];
|
|
1438
|
+
title?: string | undefined;
|
|
1439
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1440
|
+
}>, z.ZodObject<{
|
|
1441
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1442
|
+
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
1443
|
+
key: z.ZodString;
|
|
1444
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1445
|
+
align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
|
|
1446
|
+
}, "strip", z.ZodTypeAny, {
|
|
1447
|
+
key: string;
|
|
1448
|
+
label?: string | undefined;
|
|
1449
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1450
|
+
}, {
|
|
1451
|
+
key: string;
|
|
1452
|
+
label?: string | undefined;
|
|
1453
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1454
|
+
}>, "many">]>>;
|
|
1455
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
1456
|
+
}, "strip", z.ZodTypeAny, {
|
|
1457
|
+
rows: Record<string, string | number>[];
|
|
1458
|
+
title?: string | undefined;
|
|
1459
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1460
|
+
key: string;
|
|
1461
|
+
label?: string | undefined;
|
|
1462
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1463
|
+
}[] | undefined;
|
|
1464
|
+
}, {
|
|
1465
|
+
rows: Record<string, string | number>[];
|
|
1466
|
+
title?: string | undefined;
|
|
1467
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1468
|
+
key: string;
|
|
1469
|
+
label?: string | undefined;
|
|
1470
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1471
|
+
}[] | undefined;
|
|
1472
|
+
}>]>>;
|
|
884
1473
|
}, "strip", z.ZodTypeAny, {
|
|
885
|
-
issues
|
|
1474
|
+
issues?: {
|
|
886
1475
|
message: string;
|
|
887
1476
|
severity: "error" | "info" | "warning";
|
|
888
1477
|
source?: {
|
|
@@ -894,9 +1483,22 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
894
1483
|
endColumn?: number | undefined;
|
|
895
1484
|
} | undefined;
|
|
896
1485
|
} | undefined;
|
|
897
|
-
}[];
|
|
1486
|
+
}[] | undefined;
|
|
1487
|
+
table?: {
|
|
1488
|
+
rows: (string | number)[][];
|
|
1489
|
+
title?: string | undefined;
|
|
1490
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1491
|
+
} | {
|
|
1492
|
+
rows: Record<string, string | number>[];
|
|
1493
|
+
title?: string | undefined;
|
|
1494
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1495
|
+
key: string;
|
|
1496
|
+
label?: string | undefined;
|
|
1497
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1498
|
+
}[] | undefined;
|
|
1499
|
+
} | undefined;
|
|
898
1500
|
}, {
|
|
899
|
-
issues
|
|
1501
|
+
issues?: {
|
|
900
1502
|
message: string;
|
|
901
1503
|
severity: "error" | "info" | "warning";
|
|
902
1504
|
source?: {
|
|
@@ -908,7 +1510,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
908
1510
|
endColumn?: number | undefined;
|
|
909
1511
|
} | undefined;
|
|
910
1512
|
} | undefined;
|
|
911
|
-
}[];
|
|
1513
|
+
}[] | undefined;
|
|
1514
|
+
table?: {
|
|
1515
|
+
rows: (string | number)[][];
|
|
1516
|
+
title?: string | undefined;
|
|
1517
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1518
|
+
} | {
|
|
1519
|
+
rows: Record<string, string | number>[];
|
|
1520
|
+
title?: string | undefined;
|
|
1521
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1522
|
+
key: string;
|
|
1523
|
+
label?: string | undefined;
|
|
1524
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1525
|
+
}[] | undefined;
|
|
1526
|
+
} | undefined;
|
|
912
1527
|
}>>;
|
|
913
1528
|
}, "strip", z.ZodTypeAny, {
|
|
914
1529
|
slug: string;
|
|
@@ -916,7 +1531,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
916
1531
|
score: number;
|
|
917
1532
|
displayValue?: string | undefined;
|
|
918
1533
|
details?: {
|
|
919
|
-
issues
|
|
1534
|
+
issues?: {
|
|
920
1535
|
message: string;
|
|
921
1536
|
severity: "error" | "info" | "warning";
|
|
922
1537
|
source?: {
|
|
@@ -928,7 +1543,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
928
1543
|
endColumn?: number | undefined;
|
|
929
1544
|
} | undefined;
|
|
930
1545
|
} | undefined;
|
|
931
|
-
}[];
|
|
1546
|
+
}[] | undefined;
|
|
1547
|
+
table?: {
|
|
1548
|
+
rows: (string | number)[][];
|
|
1549
|
+
title?: string | undefined;
|
|
1550
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1551
|
+
} | {
|
|
1552
|
+
rows: Record<string, string | number>[];
|
|
1553
|
+
title?: string | undefined;
|
|
1554
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1555
|
+
key: string;
|
|
1556
|
+
label?: string | undefined;
|
|
1557
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1558
|
+
}[] | undefined;
|
|
1559
|
+
} | undefined;
|
|
932
1560
|
} | undefined;
|
|
933
1561
|
}, {
|
|
934
1562
|
slug: string;
|
|
@@ -936,7 +1564,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
936
1564
|
score: number;
|
|
937
1565
|
displayValue?: string | undefined;
|
|
938
1566
|
details?: {
|
|
939
|
-
issues
|
|
1567
|
+
issues?: {
|
|
940
1568
|
message: string;
|
|
941
1569
|
severity: "error" | "info" | "warning";
|
|
942
1570
|
source?: {
|
|
@@ -948,7 +1576,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
948
1576
|
endColumn?: number | undefined;
|
|
949
1577
|
} | undefined;
|
|
950
1578
|
} | undefined;
|
|
951
|
-
}[];
|
|
1579
|
+
}[] | undefined;
|
|
1580
|
+
table?: {
|
|
1581
|
+
rows: (string | number)[][];
|
|
1582
|
+
title?: string | undefined;
|
|
1583
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1584
|
+
} | {
|
|
1585
|
+
rows: Record<string, string | number>[];
|
|
1586
|
+
title?: string | undefined;
|
|
1587
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1588
|
+
key: string;
|
|
1589
|
+
label?: string | undefined;
|
|
1590
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1591
|
+
}[] | undefined;
|
|
1592
|
+
} | undefined;
|
|
952
1593
|
} | undefined;
|
|
953
1594
|
}>, "many">, {
|
|
954
1595
|
slug: string;
|
|
@@ -956,7 +1597,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
956
1597
|
score: number;
|
|
957
1598
|
displayValue?: string | undefined;
|
|
958
1599
|
details?: {
|
|
959
|
-
issues
|
|
1600
|
+
issues?: {
|
|
960
1601
|
message: string;
|
|
961
1602
|
severity: "error" | "info" | "warning";
|
|
962
1603
|
source?: {
|
|
@@ -968,7 +1609,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
968
1609
|
endColumn?: number | undefined;
|
|
969
1610
|
} | undefined;
|
|
970
1611
|
} | undefined;
|
|
971
|
-
}[];
|
|
1612
|
+
}[] | undefined;
|
|
1613
|
+
table?: {
|
|
1614
|
+
rows: (string | number)[][];
|
|
1615
|
+
title?: string | undefined;
|
|
1616
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1617
|
+
} | {
|
|
1618
|
+
rows: Record<string, string | number>[];
|
|
1619
|
+
title?: string | undefined;
|
|
1620
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1621
|
+
key: string;
|
|
1622
|
+
label?: string | undefined;
|
|
1623
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1624
|
+
}[] | undefined;
|
|
1625
|
+
} | undefined;
|
|
972
1626
|
} | undefined;
|
|
973
1627
|
}[], {
|
|
974
1628
|
slug: string;
|
|
@@ -976,7 +1630,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
976
1630
|
score: number;
|
|
977
1631
|
displayValue?: string | undefined;
|
|
978
1632
|
details?: {
|
|
979
|
-
issues
|
|
1633
|
+
issues?: {
|
|
980
1634
|
message: string;
|
|
981
1635
|
severity: "error" | "info" | "warning";
|
|
982
1636
|
source?: {
|
|
@@ -988,7 +1642,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
988
1642
|
endColumn?: number | undefined;
|
|
989
1643
|
} | undefined;
|
|
990
1644
|
} | undefined;
|
|
991
|
-
}[];
|
|
1645
|
+
}[] | undefined;
|
|
1646
|
+
table?: {
|
|
1647
|
+
rows: (string | number)[][];
|
|
1648
|
+
title?: string | undefined;
|
|
1649
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1650
|
+
} | {
|
|
1651
|
+
rows: Record<string, string | number>[];
|
|
1652
|
+
title?: string | undefined;
|
|
1653
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1654
|
+
key: string;
|
|
1655
|
+
label?: string | undefined;
|
|
1656
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1657
|
+
}[] | undefined;
|
|
1658
|
+
} | undefined;
|
|
992
1659
|
} | undefined;
|
|
993
1660
|
}[]>, z.ZodPromise<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
994
1661
|
slug: z.ZodString;
|
|
@@ -996,7 +1663,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
996
1663
|
value: z.ZodNumber;
|
|
997
1664
|
score: z.ZodNumber;
|
|
998
1665
|
details: z.ZodOptional<z.ZodObject<{
|
|
999
|
-
issues: z.ZodArray<z.ZodObject<{
|
|
1666
|
+
issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1000
1667
|
message: z.ZodString;
|
|
1001
1668
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
1002
1669
|
source: z.ZodOptional<z.ZodObject<{
|
|
@@ -1058,9 +1725,54 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1058
1725
|
endColumn?: number | undefined;
|
|
1059
1726
|
} | undefined;
|
|
1060
1727
|
} | undefined;
|
|
1061
|
-
}>, "many"
|
|
1728
|
+
}>, "many">>;
|
|
1729
|
+
table: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1730
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1731
|
+
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1732
|
+
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">;
|
|
1733
|
+
}, "strip", z.ZodTypeAny, {
|
|
1734
|
+
rows: (string | number)[][];
|
|
1735
|
+
title?: string | undefined;
|
|
1736
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1737
|
+
}, {
|
|
1738
|
+
rows: (string | number)[][];
|
|
1739
|
+
title?: string | undefined;
|
|
1740
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1741
|
+
}>, z.ZodObject<{
|
|
1742
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1743
|
+
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">, z.ZodArray<z.ZodObject<{
|
|
1744
|
+
key: z.ZodString;
|
|
1745
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1746
|
+
align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
|
|
1747
|
+
}, "strip", z.ZodTypeAny, {
|
|
1748
|
+
key: string;
|
|
1749
|
+
label?: string | undefined;
|
|
1750
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1751
|
+
}, {
|
|
1752
|
+
key: string;
|
|
1753
|
+
label?: string | undefined;
|
|
1754
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1755
|
+
}>, "many">]>>;
|
|
1756
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">;
|
|
1757
|
+
}, "strip", z.ZodTypeAny, {
|
|
1758
|
+
rows: Record<string, string | number>[];
|
|
1759
|
+
title?: string | undefined;
|
|
1760
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1761
|
+
key: string;
|
|
1762
|
+
label?: string | undefined;
|
|
1763
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1764
|
+
}[] | undefined;
|
|
1765
|
+
}, {
|
|
1766
|
+
rows: Record<string, string | number>[];
|
|
1767
|
+
title?: string | undefined;
|
|
1768
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1769
|
+
key: string;
|
|
1770
|
+
label?: string | undefined;
|
|
1771
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1772
|
+
}[] | undefined;
|
|
1773
|
+
}>]>>;
|
|
1062
1774
|
}, "strip", z.ZodTypeAny, {
|
|
1063
|
-
issues
|
|
1775
|
+
issues?: {
|
|
1064
1776
|
message: string;
|
|
1065
1777
|
severity: "error" | "info" | "warning";
|
|
1066
1778
|
source?: {
|
|
@@ -1072,9 +1784,22 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1072
1784
|
endColumn?: number | undefined;
|
|
1073
1785
|
} | undefined;
|
|
1074
1786
|
} | undefined;
|
|
1075
|
-
}[];
|
|
1787
|
+
}[] | undefined;
|
|
1788
|
+
table?: {
|
|
1789
|
+
rows: (string | number)[][];
|
|
1790
|
+
title?: string | undefined;
|
|
1791
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1792
|
+
} | {
|
|
1793
|
+
rows: Record<string, string | number>[];
|
|
1794
|
+
title?: string | undefined;
|
|
1795
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1796
|
+
key: string;
|
|
1797
|
+
label?: string | undefined;
|
|
1798
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1799
|
+
}[] | undefined;
|
|
1800
|
+
} | undefined;
|
|
1076
1801
|
}, {
|
|
1077
|
-
issues
|
|
1802
|
+
issues?: {
|
|
1078
1803
|
message: string;
|
|
1079
1804
|
severity: "error" | "info" | "warning";
|
|
1080
1805
|
source?: {
|
|
@@ -1086,7 +1811,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1086
1811
|
endColumn?: number | undefined;
|
|
1087
1812
|
} | undefined;
|
|
1088
1813
|
} | undefined;
|
|
1089
|
-
}[];
|
|
1814
|
+
}[] | undefined;
|
|
1815
|
+
table?: {
|
|
1816
|
+
rows: (string | number)[][];
|
|
1817
|
+
title?: string | undefined;
|
|
1818
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1819
|
+
} | {
|
|
1820
|
+
rows: Record<string, string | number>[];
|
|
1821
|
+
title?: string | undefined;
|
|
1822
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1823
|
+
key: string;
|
|
1824
|
+
label?: string | undefined;
|
|
1825
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1826
|
+
}[] | undefined;
|
|
1827
|
+
} | undefined;
|
|
1090
1828
|
}>>;
|
|
1091
1829
|
}, "strip", z.ZodTypeAny, {
|
|
1092
1830
|
slug: string;
|
|
@@ -1094,7 +1832,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1094
1832
|
score: number;
|
|
1095
1833
|
displayValue?: string | undefined;
|
|
1096
1834
|
details?: {
|
|
1097
|
-
issues
|
|
1835
|
+
issues?: {
|
|
1098
1836
|
message: string;
|
|
1099
1837
|
severity: "error" | "info" | "warning";
|
|
1100
1838
|
source?: {
|
|
@@ -1106,7 +1844,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1106
1844
|
endColumn?: number | undefined;
|
|
1107
1845
|
} | undefined;
|
|
1108
1846
|
} | undefined;
|
|
1109
|
-
}[];
|
|
1847
|
+
}[] | undefined;
|
|
1848
|
+
table?: {
|
|
1849
|
+
rows: (string | number)[][];
|
|
1850
|
+
title?: string | undefined;
|
|
1851
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1852
|
+
} | {
|
|
1853
|
+
rows: Record<string, string | number>[];
|
|
1854
|
+
title?: string | undefined;
|
|
1855
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1856
|
+
key: string;
|
|
1857
|
+
label?: string | undefined;
|
|
1858
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1859
|
+
}[] | undefined;
|
|
1860
|
+
} | undefined;
|
|
1110
1861
|
} | undefined;
|
|
1111
1862
|
}, {
|
|
1112
1863
|
slug: string;
|
|
@@ -1114,7 +1865,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1114
1865
|
score: number;
|
|
1115
1866
|
displayValue?: string | undefined;
|
|
1116
1867
|
details?: {
|
|
1117
|
-
issues
|
|
1868
|
+
issues?: {
|
|
1118
1869
|
message: string;
|
|
1119
1870
|
severity: "error" | "info" | "warning";
|
|
1120
1871
|
source?: {
|
|
@@ -1126,7 +1877,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1126
1877
|
endColumn?: number | undefined;
|
|
1127
1878
|
} | undefined;
|
|
1128
1879
|
} | undefined;
|
|
1129
|
-
}[];
|
|
1880
|
+
}[] | undefined;
|
|
1881
|
+
table?: {
|
|
1882
|
+
rows: (string | number)[][];
|
|
1883
|
+
title?: string | undefined;
|
|
1884
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1885
|
+
} | {
|
|
1886
|
+
rows: Record<string, string | number>[];
|
|
1887
|
+
title?: string | undefined;
|
|
1888
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1889
|
+
key: string;
|
|
1890
|
+
label?: string | undefined;
|
|
1891
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1892
|
+
}[] | undefined;
|
|
1893
|
+
} | undefined;
|
|
1130
1894
|
} | undefined;
|
|
1131
1895
|
}>, "many">, {
|
|
1132
1896
|
slug: string;
|
|
@@ -1134,7 +1898,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1134
1898
|
score: number;
|
|
1135
1899
|
displayValue?: string | undefined;
|
|
1136
1900
|
details?: {
|
|
1137
|
-
issues
|
|
1901
|
+
issues?: {
|
|
1138
1902
|
message: string;
|
|
1139
1903
|
severity: "error" | "info" | "warning";
|
|
1140
1904
|
source?: {
|
|
@@ -1146,7 +1910,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1146
1910
|
endColumn?: number | undefined;
|
|
1147
1911
|
} | undefined;
|
|
1148
1912
|
} | undefined;
|
|
1149
|
-
}[];
|
|
1913
|
+
}[] | undefined;
|
|
1914
|
+
table?: {
|
|
1915
|
+
rows: (string | number)[][];
|
|
1916
|
+
title?: string | undefined;
|
|
1917
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1918
|
+
} | {
|
|
1919
|
+
rows: Record<string, string | number>[];
|
|
1920
|
+
title?: string | undefined;
|
|
1921
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1922
|
+
key: string;
|
|
1923
|
+
label?: string | undefined;
|
|
1924
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1925
|
+
}[] | undefined;
|
|
1926
|
+
} | undefined;
|
|
1150
1927
|
} | undefined;
|
|
1151
1928
|
}[], {
|
|
1152
1929
|
slug: string;
|
|
@@ -1154,7 +1931,7 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1154
1931
|
score: number;
|
|
1155
1932
|
displayValue?: string | undefined;
|
|
1156
1933
|
details?: {
|
|
1157
|
-
issues
|
|
1934
|
+
issues?: {
|
|
1158
1935
|
message: string;
|
|
1159
1936
|
severity: "error" | "info" | "warning";
|
|
1160
1937
|
source?: {
|
|
@@ -1166,7 +1943,20 @@ export declare const runnerFunctionSchema: z.ZodFunction<z.ZodTuple<[z.ZodOption
|
|
|
1166
1943
|
endColumn?: number | undefined;
|
|
1167
1944
|
} | undefined;
|
|
1168
1945
|
} | undefined;
|
|
1169
|
-
}[];
|
|
1946
|
+
}[] | undefined;
|
|
1947
|
+
table?: {
|
|
1948
|
+
rows: (string | number)[][];
|
|
1949
|
+
title?: string | undefined;
|
|
1950
|
+
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1951
|
+
} | {
|
|
1952
|
+
rows: Record<string, string | number>[];
|
|
1953
|
+
title?: string | undefined;
|
|
1954
|
+
columns?: ("left" | "center" | "right")[] | {
|
|
1955
|
+
key: string;
|
|
1956
|
+
label?: string | undefined;
|
|
1957
|
+
align?: "left" | "center" | "right" | undefined;
|
|
1958
|
+
}[] | undefined;
|
|
1959
|
+
} | undefined;
|
|
1170
1960
|
} | undefined;
|
|
1171
1961
|
}[]>>]>>;
|
|
1172
1962
|
export type RunnerFunction = z.infer<typeof runnerFunctionSchema>;
|