@code-pushup/models 0.46.0 → 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 +42 -42
- package/src/lib/core-config.d.ts +384 -384
- package/src/lib/implementation/schemas.d.ts +2 -2
- package/src/lib/plugin-config.d.ts +208 -208
- package/src/lib/report.d.ts +66 -66
- package/src/lib/reports-diff.d.ts +40 -40
- package/src/lib/runner-config.d.ts +116 -116
- package/src/lib/table.d.ts +8 -8
|
@@ -385,13 +385,13 @@ export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
385
385
|
title: z.ZodOptional<z.ZodString>;
|
|
386
386
|
}, {
|
|
387
387
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
388
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
388
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
389
389
|
}>, "strip", ZodTypeAny, {
|
|
390
|
-
rows: (string | number)[][];
|
|
390
|
+
rows: (string | number | boolean | null)[][];
|
|
391
391
|
title?: string | undefined;
|
|
392
392
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
393
393
|
}, {
|
|
394
|
-
rows: (string | number)[][];
|
|
394
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
395
395
|
title?: string | undefined;
|
|
396
396
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
397
397
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -410,9 +410,9 @@ export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
410
410
|
label?: string | undefined;
|
|
411
411
|
align?: "left" | "center" | "right" | undefined;
|
|
412
412
|
}>, "many">]>>;
|
|
413
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
413
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
414
414
|
}>, "strip", ZodTypeAny, {
|
|
415
|
-
rows: Record<string, string | number>[];
|
|
415
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
416
416
|
title?: string | undefined;
|
|
417
417
|
columns?: ("left" | "center" | "right")[] | {
|
|
418
418
|
key: string;
|
|
@@ -420,7 +420,7 @@ export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
420
420
|
align?: "left" | "center" | "right" | undefined;
|
|
421
421
|
}[] | undefined;
|
|
422
422
|
}, {
|
|
423
|
-
rows: Record<string, string | number>[];
|
|
423
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
424
424
|
title?: string | undefined;
|
|
425
425
|
columns?: ("left" | "center" | "right")[] | {
|
|
426
426
|
key: string;
|
|
@@ -443,11 +443,11 @@ export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
443
443
|
} | undefined;
|
|
444
444
|
}[] | undefined;
|
|
445
445
|
table?: {
|
|
446
|
-
rows: (string | number)[][];
|
|
446
|
+
rows: (string | number | boolean | null)[][];
|
|
447
447
|
title?: string | undefined;
|
|
448
448
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
449
449
|
} | {
|
|
450
|
-
rows: Record<string, string | number>[];
|
|
450
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
451
451
|
title?: string | undefined;
|
|
452
452
|
columns?: ("left" | "center" | "right")[] | {
|
|
453
453
|
key: string;
|
|
@@ -470,11 +470,11 @@ export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
470
470
|
} | undefined;
|
|
471
471
|
}[] | undefined;
|
|
472
472
|
table?: {
|
|
473
|
-
rows: (string | number)[][];
|
|
473
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
474
474
|
title?: string | undefined;
|
|
475
475
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
476
476
|
} | {
|
|
477
|
-
rows: Record<string, string | number>[];
|
|
477
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
478
478
|
title?: string | undefined;
|
|
479
479
|
columns?: ("left" | "center" | "right")[] | {
|
|
480
480
|
key: string;
|
|
@@ -1250,13 +1250,13 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1250
1250
|
title: z.ZodOptional<z.ZodString>;
|
|
1251
1251
|
}, {
|
|
1252
1252
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1253
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1253
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1254
1254
|
}>, "strip", ZodTypeAny, {
|
|
1255
|
-
rows: (string | number)[][];
|
|
1255
|
+
rows: (string | number | boolean | null)[][];
|
|
1256
1256
|
title?: string | undefined;
|
|
1257
1257
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1258
1258
|
}, {
|
|
1259
|
-
rows: (string | number)[][];
|
|
1259
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1260
1260
|
title?: string | undefined;
|
|
1261
1261
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1262
1262
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1275,9 +1275,9 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1275
1275
|
label?: string | undefined;
|
|
1276
1276
|
align?: "left" | "center" | "right" | undefined;
|
|
1277
1277
|
}>, "many">]>>;
|
|
1278
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1278
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1279
1279
|
}>, "strip", ZodTypeAny, {
|
|
1280
|
-
rows: Record<string, string | number>[];
|
|
1280
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1281
1281
|
title?: string | undefined;
|
|
1282
1282
|
columns?: ("left" | "center" | "right")[] | {
|
|
1283
1283
|
key: string;
|
|
@@ -1285,7 +1285,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1285
1285
|
align?: "left" | "center" | "right" | undefined;
|
|
1286
1286
|
}[] | undefined;
|
|
1287
1287
|
}, {
|
|
1288
|
-
rows: Record<string, string | number>[];
|
|
1288
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1289
1289
|
title?: string | undefined;
|
|
1290
1290
|
columns?: ("left" | "center" | "right")[] | {
|
|
1291
1291
|
key: string;
|
|
@@ -1308,11 +1308,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1308
1308
|
} | undefined;
|
|
1309
1309
|
}[] | undefined;
|
|
1310
1310
|
table?: {
|
|
1311
|
-
rows: (string | number)[][];
|
|
1311
|
+
rows: (string | number | boolean | null)[][];
|
|
1312
1312
|
title?: string | undefined;
|
|
1313
1313
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1314
1314
|
} | {
|
|
1315
|
-
rows: Record<string, string | number>[];
|
|
1315
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1316
1316
|
title?: string | undefined;
|
|
1317
1317
|
columns?: ("left" | "center" | "right")[] | {
|
|
1318
1318
|
key: string;
|
|
@@ -1335,11 +1335,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1335
1335
|
} | undefined;
|
|
1336
1336
|
}[] | undefined;
|
|
1337
1337
|
table?: {
|
|
1338
|
-
rows: (string | number)[][];
|
|
1338
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1339
1339
|
title?: string | undefined;
|
|
1340
1340
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1341
1341
|
} | {
|
|
1342
|
-
rows: Record<string, string | number>[];
|
|
1342
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1343
1343
|
title?: string | undefined;
|
|
1344
1344
|
columns?: ("left" | "center" | "right")[] | {
|
|
1345
1345
|
key: string;
|
|
@@ -1470,13 +1470,13 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1470
1470
|
title: z.ZodOptional<z.ZodString>;
|
|
1471
1471
|
}, {
|
|
1472
1472
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1473
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1473
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1474
1474
|
}>, "strip", ZodTypeAny, {
|
|
1475
|
-
rows: (string | number)[][];
|
|
1475
|
+
rows: (string | number | boolean | null)[][];
|
|
1476
1476
|
title?: string | undefined;
|
|
1477
1477
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1478
1478
|
}, {
|
|
1479
|
-
rows: (string | number)[][];
|
|
1479
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1480
1480
|
title?: string | undefined;
|
|
1481
1481
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1482
1482
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1495,9 +1495,9 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1495
1495
|
label?: string | undefined;
|
|
1496
1496
|
align?: "left" | "center" | "right" | undefined;
|
|
1497
1497
|
}>, "many">]>>;
|
|
1498
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1498
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1499
1499
|
}>, "strip", ZodTypeAny, {
|
|
1500
|
-
rows: Record<string, string | number>[];
|
|
1500
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1501
1501
|
title?: string | undefined;
|
|
1502
1502
|
columns?: ("left" | "center" | "right")[] | {
|
|
1503
1503
|
key: string;
|
|
@@ -1505,7 +1505,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1505
1505
|
align?: "left" | "center" | "right" | undefined;
|
|
1506
1506
|
}[] | undefined;
|
|
1507
1507
|
}, {
|
|
1508
|
-
rows: Record<string, string | number>[];
|
|
1508
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1509
1509
|
title?: string | undefined;
|
|
1510
1510
|
columns?: ("left" | "center" | "right")[] | {
|
|
1511
1511
|
key: string;
|
|
@@ -1528,11 +1528,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1528
1528
|
} | undefined;
|
|
1529
1529
|
}[] | undefined;
|
|
1530
1530
|
table?: {
|
|
1531
|
-
rows: (string | number)[][];
|
|
1531
|
+
rows: (string | number | boolean | null)[][];
|
|
1532
1532
|
title?: string | undefined;
|
|
1533
1533
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1534
1534
|
} | {
|
|
1535
|
-
rows: Record<string, string | number>[];
|
|
1535
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1536
1536
|
title?: string | undefined;
|
|
1537
1537
|
columns?: ("left" | "center" | "right")[] | {
|
|
1538
1538
|
key: string;
|
|
@@ -1555,11 +1555,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1555
1555
|
} | undefined;
|
|
1556
1556
|
}[] | undefined;
|
|
1557
1557
|
table?: {
|
|
1558
|
-
rows: (string | number)[][];
|
|
1558
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1559
1559
|
title?: string | undefined;
|
|
1560
1560
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1561
1561
|
} | {
|
|
1562
|
-
rows: Record<string, string | number>[];
|
|
1562
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1563
1563
|
title?: string | undefined;
|
|
1564
1564
|
columns?: ("left" | "center" | "right")[] | {
|
|
1565
1565
|
key: string;
|
|
@@ -1690,13 +1690,13 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1690
1690
|
title: z.ZodOptional<z.ZodString>;
|
|
1691
1691
|
}, {
|
|
1692
1692
|
columns: z.ZodOptional<z.ZodArray<z.ZodEnum<["left", "center", "right"]>, "many">>;
|
|
1693
|
-
rows: z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1693
|
+
rows: z.ZodArray<z.ZodArray<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">, "many">;
|
|
1694
1694
|
}>, "strip", ZodTypeAny, {
|
|
1695
|
-
rows: (string | number)[][];
|
|
1695
|
+
rows: (string | number | boolean | null)[][];
|
|
1696
1696
|
title?: string | undefined;
|
|
1697
1697
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1698
1698
|
}, {
|
|
1699
|
-
rows: (string | number)[][];
|
|
1699
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1700
1700
|
title?: string | undefined;
|
|
1701
1701
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1702
1702
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1715,9 +1715,9 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1715
1715
|
label?: string | undefined;
|
|
1716
1716
|
align?: "left" | "center" | "right" | undefined;
|
|
1717
1717
|
}>, "many">]>>;
|
|
1718
|
-
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]
|
|
1718
|
+
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>, "many">;
|
|
1719
1719
|
}>, "strip", ZodTypeAny, {
|
|
1720
|
-
rows: Record<string, string | number>[];
|
|
1720
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1721
1721
|
title?: string | undefined;
|
|
1722
1722
|
columns?: ("left" | "center" | "right")[] | {
|
|
1723
1723
|
key: string;
|
|
@@ -1725,7 +1725,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1725
1725
|
align?: "left" | "center" | "right" | undefined;
|
|
1726
1726
|
}[] | undefined;
|
|
1727
1727
|
}, {
|
|
1728
|
-
rows: Record<string, string | number>[];
|
|
1728
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1729
1729
|
title?: string | undefined;
|
|
1730
1730
|
columns?: ("left" | "center" | "right")[] | {
|
|
1731
1731
|
key: string;
|
|
@@ -1748,11 +1748,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1748
1748
|
} | undefined;
|
|
1749
1749
|
}[] | undefined;
|
|
1750
1750
|
table?: {
|
|
1751
|
-
rows: (string | number)[][];
|
|
1751
|
+
rows: (string | number | boolean | null)[][];
|
|
1752
1752
|
title?: string | undefined;
|
|
1753
1753
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1754
1754
|
} | {
|
|
1755
|
-
rows: Record<string, string | number>[];
|
|
1755
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
1756
1756
|
title?: string | undefined;
|
|
1757
1757
|
columns?: ("left" | "center" | "right")[] | {
|
|
1758
1758
|
key: string;
|
|
@@ -1775,11 +1775,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1775
1775
|
} | undefined;
|
|
1776
1776
|
}[] | undefined;
|
|
1777
1777
|
table?: {
|
|
1778
|
-
rows: (string | number)[][];
|
|
1778
|
+
rows: (string | number | boolean | null | undefined)[][];
|
|
1779
1779
|
title?: string | undefined;
|
|
1780
1780
|
columns?: ("left" | "center" | "right")[] | undefined;
|
|
1781
1781
|
} | {
|
|
1782
|
-
rows: Record<string, string | number>[];
|
|
1782
|
+
rows: Record<string, string | number | boolean | null | undefined>[];
|
|
1783
1783
|
title?: string | undefined;
|
|
1784
1784
|
columns?: ("left" | "center" | "right")[] | {
|
|
1785
1785
|
key: string;
|