@openframe-org/criteria-set-protocol 2.1.5 → 2.1.7
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/dist/v1/schemas/common.d.ts +3 -3
- package/dist/v1/schemas/common.js +0 -1
- package/dist/v1/schemas/criteria-tree.d.ts +82 -130
- package/dist/v1/schemas/criterion.d.ts +15 -24
- package/dist/v1/schemas/task-group.d.ts +8 -15
- package/dist/v1/schemas/task-item.d.ts +0 -3
- package/dist/v1/schemas/task-item.js +1 -1
- package/dist/v1/schemas/task.d.ts +3 -8
- package/dist/v1/schemas/theme.d.ts +24 -35
- package/package.json +1 -1
|
@@ -44,7 +44,7 @@ export declare const criterionOptionsSchema: z.ZodIntersection<z.ZodIntersection
|
|
|
44
44
|
}>]>>;
|
|
45
45
|
export declare const criterionSchema: z.ZodObject<{
|
|
46
46
|
title: z.ZodString;
|
|
47
|
-
longFormTitle: z.
|
|
47
|
+
longFormTitle: z.ZodString;
|
|
48
48
|
code: z.ZodString;
|
|
49
49
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50
50
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -132,7 +132,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
132
132
|
type: z.ZodLiteral<"criterion">;
|
|
133
133
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
134
134
|
title: z.ZodString;
|
|
135
|
-
longFormTitle: z.
|
|
135
|
+
longFormTitle: z.ZodString;
|
|
136
136
|
code: z.ZodString;
|
|
137
137
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
138
138
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -222,7 +222,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
222
222
|
category: z.ZodOptional<z.ZodString>;
|
|
223
223
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
224
224
|
title: z.ZodString;
|
|
225
|
-
longFormTitle: z.
|
|
225
|
+
longFormTitle: z.ZodString;
|
|
226
226
|
code: z.ZodString;
|
|
227
227
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
228
228
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -311,7 +311,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
311
311
|
description: z.ZodOptional<z.ZodString>;
|
|
312
312
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
313
313
|
code: z.ZodString;
|
|
314
|
-
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
315
314
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
316
315
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
317
316
|
label: z.ZodString;
|
|
@@ -645,7 +644,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
645
644
|
excludeFromTargets?: boolean | undefined;
|
|
646
645
|
} | undefined;
|
|
647
646
|
description?: string | undefined;
|
|
648
|
-
longFormTitle?: string | undefined;
|
|
649
647
|
tags?: string[] | undefined;
|
|
650
648
|
documentation?: ({
|
|
651
649
|
type: "pdf";
|
|
@@ -730,7 +728,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
730
728
|
excludeFromTargets?: boolean | undefined;
|
|
731
729
|
} | undefined;
|
|
732
730
|
description?: string | undefined;
|
|
733
|
-
longFormTitle?: string | undefined;
|
|
734
731
|
tags?: string[] | undefined;
|
|
735
732
|
documentation?: ({
|
|
736
733
|
type: "pdf";
|
|
@@ -838,7 +835,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
838
835
|
excludeFromTargets?: boolean | undefined;
|
|
839
836
|
} | undefined;
|
|
840
837
|
description?: string | undefined;
|
|
841
|
-
longFormTitle?: string | undefined;
|
|
842
838
|
tags?: string[] | undefined;
|
|
843
839
|
documentation?: ({
|
|
844
840
|
type: "pdf";
|
|
@@ -858,6 +854,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
858
854
|
sortOrder?: number | undefined;
|
|
859
855
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
860
856
|
}[];
|
|
857
|
+
longFormTitle: string;
|
|
861
858
|
data?: {
|
|
862
859
|
type?: "number" | "percentage" | undefined;
|
|
863
860
|
total?: number | undefined;
|
|
@@ -871,7 +868,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
871
868
|
readOnly?: boolean | undefined;
|
|
872
869
|
} | undefined;
|
|
873
870
|
description?: string | undefined;
|
|
874
|
-
longFormTitle?: string | undefined;
|
|
875
871
|
tags?: string[] | undefined;
|
|
876
872
|
documentation?: ({
|
|
877
873
|
type: "pdf";
|
|
@@ -964,7 +960,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
964
960
|
excludeFromTargets?: boolean | undefined;
|
|
965
961
|
} | undefined;
|
|
966
962
|
description?: string | undefined;
|
|
967
|
-
longFormTitle?: string | undefined;
|
|
968
963
|
tags?: string[] | undefined;
|
|
969
964
|
documentation?: ({
|
|
970
965
|
type: "pdf";
|
|
@@ -984,6 +979,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
984
979
|
sortOrder?: number | undefined;
|
|
985
980
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
986
981
|
}[];
|
|
982
|
+
longFormTitle: string;
|
|
987
983
|
data?: {
|
|
988
984
|
type?: "number" | "percentage" | undefined;
|
|
989
985
|
total?: number | undefined;
|
|
@@ -997,7 +993,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
997
993
|
readOnly?: boolean | undefined;
|
|
998
994
|
} | undefined;
|
|
999
995
|
description?: string | undefined;
|
|
1000
|
-
longFormTitle?: string | undefined;
|
|
1001
996
|
tags?: string[] | undefined;
|
|
1002
997
|
documentation?: ({
|
|
1003
998
|
type: "pdf";
|
|
@@ -1095,7 +1090,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1095
1090
|
excludeFromTargets?: boolean | undefined;
|
|
1096
1091
|
} | undefined;
|
|
1097
1092
|
description?: string | undefined;
|
|
1098
|
-
longFormTitle?: string | undefined;
|
|
1099
1093
|
tags?: string[] | undefined;
|
|
1100
1094
|
documentation?: ({
|
|
1101
1095
|
type: "pdf";
|
|
@@ -1115,6 +1109,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1115
1109
|
sortOrder?: number | undefined;
|
|
1116
1110
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1117
1111
|
}[];
|
|
1112
|
+
longFormTitle: string;
|
|
1118
1113
|
data?: {
|
|
1119
1114
|
type?: "number" | "percentage" | undefined;
|
|
1120
1115
|
total?: number | undefined;
|
|
@@ -1128,7 +1123,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1128
1123
|
readOnly?: boolean | undefined;
|
|
1129
1124
|
} | undefined;
|
|
1130
1125
|
description?: string | undefined;
|
|
1131
|
-
longFormTitle?: string | undefined;
|
|
1132
1126
|
tags?: string[] | undefined;
|
|
1133
1127
|
documentation?: ({
|
|
1134
1128
|
type: "pdf";
|
|
@@ -1147,6 +1141,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1147
1141
|
})[] | undefined;
|
|
1148
1142
|
sortOrder?: number | undefined;
|
|
1149
1143
|
}[];
|
|
1144
|
+
longFormTitle: string;
|
|
1150
1145
|
data?: {
|
|
1151
1146
|
type?: "number" | "percentage" | undefined;
|
|
1152
1147
|
total?: number | undefined;
|
|
@@ -1160,7 +1155,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1160
1155
|
readOnly?: boolean | undefined;
|
|
1161
1156
|
} | undefined;
|
|
1162
1157
|
description?: string | undefined;
|
|
1163
|
-
longFormTitle?: string | undefined;
|
|
1164
1158
|
tags?: string[] | undefined;
|
|
1165
1159
|
documentation?: ({
|
|
1166
1160
|
type: "pdf";
|
|
@@ -1258,7 +1252,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1258
1252
|
excludeFromTargets?: boolean | undefined;
|
|
1259
1253
|
} | undefined;
|
|
1260
1254
|
description?: string | undefined;
|
|
1261
|
-
longFormTitle?: string | undefined;
|
|
1262
1255
|
tags?: string[] | undefined;
|
|
1263
1256
|
documentation?: ({
|
|
1264
1257
|
type: "pdf";
|
|
@@ -1278,6 +1271,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1278
1271
|
sortOrder?: number | undefined;
|
|
1279
1272
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1280
1273
|
}[];
|
|
1274
|
+
longFormTitle: string;
|
|
1281
1275
|
data?: {
|
|
1282
1276
|
type?: "number" | "percentage" | undefined;
|
|
1283
1277
|
total?: number | undefined;
|
|
@@ -1291,7 +1285,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1291
1285
|
readOnly?: boolean | undefined;
|
|
1292
1286
|
} | undefined;
|
|
1293
1287
|
description?: string | undefined;
|
|
1294
|
-
longFormTitle?: string | undefined;
|
|
1295
1288
|
tags?: string[] | undefined;
|
|
1296
1289
|
documentation?: ({
|
|
1297
1290
|
type: "pdf";
|
|
@@ -1310,6 +1303,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1310
1303
|
})[] | undefined;
|
|
1311
1304
|
sortOrder?: number | undefined;
|
|
1312
1305
|
}[];
|
|
1306
|
+
longFormTitle: string;
|
|
1313
1307
|
data?: {
|
|
1314
1308
|
type?: "number" | "percentage" | undefined;
|
|
1315
1309
|
total?: number | undefined;
|
|
@@ -1323,7 +1317,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1323
1317
|
readOnly?: boolean | undefined;
|
|
1324
1318
|
} | undefined;
|
|
1325
1319
|
description?: string | undefined;
|
|
1326
|
-
longFormTitle?: string | undefined;
|
|
1327
1320
|
tags?: string[] | undefined;
|
|
1328
1321
|
documentation?: ({
|
|
1329
1322
|
type: "pdf";
|
|
@@ -1484,7 +1477,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1484
1477
|
excludeFromTargets?: boolean | undefined;
|
|
1485
1478
|
} | undefined;
|
|
1486
1479
|
description?: string | undefined;
|
|
1487
|
-
longFormTitle?: string | undefined;
|
|
1488
1480
|
tags?: string[] | undefined;
|
|
1489
1481
|
documentation?: ({
|
|
1490
1482
|
type: "pdf";
|
|
@@ -1504,6 +1496,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1504
1496
|
sortOrder?: number | undefined;
|
|
1505
1497
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1506
1498
|
}[];
|
|
1499
|
+
longFormTitle: string;
|
|
1507
1500
|
data?: {
|
|
1508
1501
|
type?: "number" | "percentage" | undefined;
|
|
1509
1502
|
total?: number | undefined;
|
|
@@ -1517,7 +1510,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1517
1510
|
readOnly?: boolean | undefined;
|
|
1518
1511
|
} | undefined;
|
|
1519
1512
|
description?: string | undefined;
|
|
1520
|
-
longFormTitle?: string | undefined;
|
|
1521
1513
|
tags?: string[] | undefined;
|
|
1522
1514
|
documentation?: ({
|
|
1523
1515
|
type: "pdf";
|
|
@@ -1536,6 +1528,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1536
1528
|
})[] | undefined;
|
|
1537
1529
|
sortOrder?: number | undefined;
|
|
1538
1530
|
}[];
|
|
1531
|
+
longFormTitle: string;
|
|
1539
1532
|
data?: {
|
|
1540
1533
|
type?: "number" | "percentage" | undefined;
|
|
1541
1534
|
total?: number | undefined;
|
|
@@ -1549,7 +1542,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1549
1542
|
readOnly?: boolean | undefined;
|
|
1550
1543
|
} | undefined;
|
|
1551
1544
|
description?: string | undefined;
|
|
1552
|
-
longFormTitle?: string | undefined;
|
|
1553
1545
|
tags?: string[] | undefined;
|
|
1554
1546
|
documentation?: ({
|
|
1555
1547
|
type: "pdf";
|
|
@@ -1569,6 +1561,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1569
1561
|
sortOrder?: number | undefined;
|
|
1570
1562
|
category?: string | undefined;
|
|
1571
1563
|
}[];
|
|
1564
|
+
longFormTitle: string;
|
|
1572
1565
|
data?: {
|
|
1573
1566
|
type?: "number" | "percentage" | undefined;
|
|
1574
1567
|
total?: number | undefined;
|
|
@@ -1581,7 +1574,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1581
1574
|
step?: number | undefined;
|
|
1582
1575
|
readOnly?: boolean | undefined;
|
|
1583
1576
|
} | undefined;
|
|
1584
|
-
longFormTitle?: string | undefined;
|
|
1585
1577
|
tags?: string[] | undefined;
|
|
1586
1578
|
documentation?: ({
|
|
1587
1579
|
type: "pdf";
|
|
@@ -1697,7 +1689,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1697
1689
|
excludeFromTargets?: boolean | undefined;
|
|
1698
1690
|
} | undefined;
|
|
1699
1691
|
description?: string | undefined;
|
|
1700
|
-
longFormTitle?: string | undefined;
|
|
1701
1692
|
tags?: string[] | undefined;
|
|
1702
1693
|
documentation?: ({
|
|
1703
1694
|
type: "pdf";
|
|
@@ -1717,6 +1708,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1717
1708
|
sortOrder?: number | undefined;
|
|
1718
1709
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1719
1710
|
}[];
|
|
1711
|
+
longFormTitle: string;
|
|
1720
1712
|
data?: {
|
|
1721
1713
|
type?: "number" | "percentage" | undefined;
|
|
1722
1714
|
total?: number | undefined;
|
|
@@ -1730,7 +1722,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1730
1722
|
readOnly?: boolean | undefined;
|
|
1731
1723
|
} | undefined;
|
|
1732
1724
|
description?: string | undefined;
|
|
1733
|
-
longFormTitle?: string | undefined;
|
|
1734
1725
|
tags?: string[] | undefined;
|
|
1735
1726
|
documentation?: ({
|
|
1736
1727
|
type: "pdf";
|
|
@@ -1749,6 +1740,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1749
1740
|
})[] | undefined;
|
|
1750
1741
|
sortOrder?: number | undefined;
|
|
1751
1742
|
}[];
|
|
1743
|
+
longFormTitle: string;
|
|
1752
1744
|
data?: {
|
|
1753
1745
|
type?: "number" | "percentage" | undefined;
|
|
1754
1746
|
total?: number | undefined;
|
|
@@ -1762,7 +1754,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1762
1754
|
readOnly?: boolean | undefined;
|
|
1763
1755
|
} | undefined;
|
|
1764
1756
|
description?: string | undefined;
|
|
1765
|
-
longFormTitle?: string | undefined;
|
|
1766
1757
|
tags?: string[] | undefined;
|
|
1767
1758
|
documentation?: ({
|
|
1768
1759
|
type: "pdf";
|
|
@@ -1782,6 +1773,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1782
1773
|
sortOrder?: number | undefined;
|
|
1783
1774
|
category?: string | undefined;
|
|
1784
1775
|
}[];
|
|
1776
|
+
longFormTitle: string;
|
|
1785
1777
|
data?: {
|
|
1786
1778
|
type?: "number" | "percentage" | undefined;
|
|
1787
1779
|
total?: number | undefined;
|
|
@@ -1794,7 +1786,6 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1794
1786
|
step?: number | undefined;
|
|
1795
1787
|
readOnly?: boolean | undefined;
|
|
1796
1788
|
} | undefined;
|
|
1797
|
-
longFormTitle?: string | undefined;
|
|
1798
1789
|
tags?: string[] | undefined;
|
|
1799
1790
|
documentation?: ({
|
|
1800
1791
|
type: "pdf";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const taskGroupSchema: z.ZodObject<{
|
|
3
3
|
title: z.ZodString;
|
|
4
|
-
longFormTitle: z.
|
|
4
|
+
longFormTitle: z.ZodString;
|
|
5
5
|
code: z.ZodString;
|
|
6
6
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7
7
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -91,7 +91,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
91
91
|
category: z.ZodOptional<z.ZodString>;
|
|
92
92
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
93
93
|
title: z.ZodString;
|
|
94
|
-
longFormTitle: z.
|
|
94
|
+
longFormTitle: z.ZodString;
|
|
95
95
|
code: z.ZodString;
|
|
96
96
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
97
97
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -180,7 +180,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
180
180
|
description: z.ZodOptional<z.ZodString>;
|
|
181
181
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
182
182
|
code: z.ZodString;
|
|
183
|
-
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
184
183
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
185
184
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
186
185
|
label: z.ZodString;
|
|
@@ -514,7 +513,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
514
513
|
excludeFromTargets?: boolean | undefined;
|
|
515
514
|
} | undefined;
|
|
516
515
|
description?: string | undefined;
|
|
517
|
-
longFormTitle?: string | undefined;
|
|
518
516
|
tags?: string[] | undefined;
|
|
519
517
|
documentation?: ({
|
|
520
518
|
type: "pdf";
|
|
@@ -599,7 +597,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
599
597
|
excludeFromTargets?: boolean | undefined;
|
|
600
598
|
} | undefined;
|
|
601
599
|
description?: string | undefined;
|
|
602
|
-
longFormTitle?: string | undefined;
|
|
603
600
|
tags?: string[] | undefined;
|
|
604
601
|
documentation?: ({
|
|
605
602
|
type: "pdf";
|
|
@@ -707,7 +704,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
707
704
|
excludeFromTargets?: boolean | undefined;
|
|
708
705
|
} | undefined;
|
|
709
706
|
description?: string | undefined;
|
|
710
|
-
longFormTitle?: string | undefined;
|
|
711
707
|
tags?: string[] | undefined;
|
|
712
708
|
documentation?: ({
|
|
713
709
|
type: "pdf";
|
|
@@ -727,6 +723,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
727
723
|
sortOrder?: number | undefined;
|
|
728
724
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
729
725
|
}[];
|
|
726
|
+
longFormTitle: string;
|
|
730
727
|
data?: {
|
|
731
728
|
type?: "number" | "percentage" | undefined;
|
|
732
729
|
total?: number | undefined;
|
|
@@ -740,7 +737,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
740
737
|
readOnly?: boolean | undefined;
|
|
741
738
|
} | undefined;
|
|
742
739
|
description?: string | undefined;
|
|
743
|
-
longFormTitle?: string | undefined;
|
|
744
740
|
tags?: string[] | undefined;
|
|
745
741
|
documentation?: ({
|
|
746
742
|
type: "pdf";
|
|
@@ -833,7 +829,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
833
829
|
excludeFromTargets?: boolean | undefined;
|
|
834
830
|
} | undefined;
|
|
835
831
|
description?: string | undefined;
|
|
836
|
-
longFormTitle?: string | undefined;
|
|
837
832
|
tags?: string[] | undefined;
|
|
838
833
|
documentation?: ({
|
|
839
834
|
type: "pdf";
|
|
@@ -853,6 +848,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
853
848
|
sortOrder?: number | undefined;
|
|
854
849
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
855
850
|
}[];
|
|
851
|
+
longFormTitle: string;
|
|
856
852
|
data?: {
|
|
857
853
|
type?: "number" | "percentage" | undefined;
|
|
858
854
|
total?: number | undefined;
|
|
@@ -866,7 +862,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
866
862
|
readOnly?: boolean | undefined;
|
|
867
863
|
} | undefined;
|
|
868
864
|
description?: string | undefined;
|
|
869
|
-
longFormTitle?: string | undefined;
|
|
870
865
|
tags?: string[] | undefined;
|
|
871
866
|
documentation?: ({
|
|
872
867
|
type: "pdf";
|
|
@@ -964,7 +959,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
964
959
|
excludeFromTargets?: boolean | undefined;
|
|
965
960
|
} | undefined;
|
|
966
961
|
description?: string | undefined;
|
|
967
|
-
longFormTitle?: string | undefined;
|
|
968
962
|
tags?: string[] | undefined;
|
|
969
963
|
documentation?: ({
|
|
970
964
|
type: "pdf";
|
|
@@ -984,6 +978,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
984
978
|
sortOrder?: number | undefined;
|
|
985
979
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
986
980
|
}[];
|
|
981
|
+
longFormTitle: string;
|
|
987
982
|
data?: {
|
|
988
983
|
type?: "number" | "percentage" | undefined;
|
|
989
984
|
total?: number | undefined;
|
|
@@ -997,7 +992,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
997
992
|
readOnly?: boolean | undefined;
|
|
998
993
|
} | undefined;
|
|
999
994
|
description?: string | undefined;
|
|
1000
|
-
longFormTitle?: string | undefined;
|
|
1001
995
|
tags?: string[] | undefined;
|
|
1002
996
|
documentation?: ({
|
|
1003
997
|
type: "pdf";
|
|
@@ -1016,6 +1010,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1016
1010
|
})[] | undefined;
|
|
1017
1011
|
sortOrder?: number | undefined;
|
|
1018
1012
|
}[];
|
|
1013
|
+
longFormTitle: string;
|
|
1019
1014
|
data?: {
|
|
1020
1015
|
type?: "number" | "percentage" | undefined;
|
|
1021
1016
|
total?: number | undefined;
|
|
@@ -1029,7 +1024,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1029
1024
|
readOnly?: boolean | undefined;
|
|
1030
1025
|
} | undefined;
|
|
1031
1026
|
description?: string | undefined;
|
|
1032
|
-
longFormTitle?: string | undefined;
|
|
1033
1027
|
tags?: string[] | undefined;
|
|
1034
1028
|
documentation?: ({
|
|
1035
1029
|
type: "pdf";
|
|
@@ -1127,7 +1121,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1127
1121
|
excludeFromTargets?: boolean | undefined;
|
|
1128
1122
|
} | undefined;
|
|
1129
1123
|
description?: string | undefined;
|
|
1130
|
-
longFormTitle?: string | undefined;
|
|
1131
1124
|
tags?: string[] | undefined;
|
|
1132
1125
|
documentation?: ({
|
|
1133
1126
|
type: "pdf";
|
|
@@ -1147,6 +1140,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1147
1140
|
sortOrder?: number | undefined;
|
|
1148
1141
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1149
1142
|
}[];
|
|
1143
|
+
longFormTitle: string;
|
|
1150
1144
|
data?: {
|
|
1151
1145
|
type?: "number" | "percentage" | undefined;
|
|
1152
1146
|
total?: number | undefined;
|
|
@@ -1160,7 +1154,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1160
1154
|
readOnly?: boolean | undefined;
|
|
1161
1155
|
} | undefined;
|
|
1162
1156
|
description?: string | undefined;
|
|
1163
|
-
longFormTitle?: string | undefined;
|
|
1164
1157
|
tags?: string[] | undefined;
|
|
1165
1158
|
documentation?: ({
|
|
1166
1159
|
type: "pdf";
|
|
@@ -1179,6 +1172,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1179
1172
|
})[] | undefined;
|
|
1180
1173
|
sortOrder?: number | undefined;
|
|
1181
1174
|
}[];
|
|
1175
|
+
longFormTitle: string;
|
|
1182
1176
|
data?: {
|
|
1183
1177
|
type?: "number" | "percentage" | undefined;
|
|
1184
1178
|
total?: number | undefined;
|
|
@@ -1192,7 +1186,6 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1192
1186
|
readOnly?: boolean | undefined;
|
|
1193
1187
|
} | undefined;
|
|
1194
1188
|
description?: string | undefined;
|
|
1195
|
-
longFormTitle?: string | undefined;
|
|
1196
1189
|
tags?: string[] | undefined;
|
|
1197
1190
|
documentation?: ({
|
|
1198
1191
|
type: "pdf";
|
|
@@ -409,7 +409,6 @@ export declare const taskItemOptionsSchema: z.ZodObject<{
|
|
|
409
409
|
}>;
|
|
410
410
|
export declare const taskItemSchema: z.ZodObject<{
|
|
411
411
|
code: z.ZodString;
|
|
412
|
-
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
413
412
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
414
413
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
415
414
|
label: z.ZodString;
|
|
@@ -743,7 +742,6 @@ export declare const taskItemSchema: z.ZodObject<{
|
|
|
743
742
|
excludeFromTargets?: boolean | undefined;
|
|
744
743
|
} | undefined;
|
|
745
744
|
description?: string | undefined;
|
|
746
|
-
longFormTitle?: string | undefined;
|
|
747
745
|
tags?: string[] | undefined;
|
|
748
746
|
documentation?: ({
|
|
749
747
|
type: "pdf";
|
|
@@ -828,7 +826,6 @@ export declare const taskItemSchema: z.ZodObject<{
|
|
|
828
826
|
excludeFromTargets?: boolean | undefined;
|
|
829
827
|
} | undefined;
|
|
830
828
|
description?: string | undefined;
|
|
831
|
-
longFormTitle?: string | undefined;
|
|
832
829
|
tags?: string[] | undefined;
|
|
833
830
|
documentation?: ({
|
|
834
831
|
type: "pdf";
|
|
@@ -113,7 +113,7 @@ exports.taskItemOptionsSchema = zod_1.z
|
|
|
113
113
|
})
|
|
114
114
|
.describe("TaskItemOptions - Options for configuring the display and behavior of a task item");
|
|
115
115
|
exports.taskItemSchema = common_1.abstractElementSchema
|
|
116
|
-
.omit({ title: true })
|
|
116
|
+
.omit({ title: true, longFormTitle: true })
|
|
117
117
|
.extend({
|
|
118
118
|
type: zod_1.z
|
|
119
119
|
.literal("task-item")
|
|
@@ -14,7 +14,7 @@ export declare const taskOptionsSchema: z.ZodObject<{
|
|
|
14
14
|
}>;
|
|
15
15
|
export declare const taskSchema: z.ZodObject<{
|
|
16
16
|
title: z.ZodString;
|
|
17
|
-
longFormTitle: z.
|
|
17
|
+
longFormTitle: z.ZodString;
|
|
18
18
|
code: z.ZodString;
|
|
19
19
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20
20
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -103,7 +103,6 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
103
103
|
description: z.ZodOptional<z.ZodString>;
|
|
104
104
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
105
105
|
code: z.ZodString;
|
|
106
|
-
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
107
106
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
108
107
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
109
108
|
label: z.ZodString;
|
|
@@ -437,7 +436,6 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
437
436
|
excludeFromTargets?: boolean | undefined;
|
|
438
437
|
} | undefined;
|
|
439
438
|
description?: string | undefined;
|
|
440
|
-
longFormTitle?: string | undefined;
|
|
441
439
|
tags?: string[] | undefined;
|
|
442
440
|
documentation?: ({
|
|
443
441
|
type: "pdf";
|
|
@@ -522,7 +520,6 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
522
520
|
excludeFromTargets?: boolean | undefined;
|
|
523
521
|
} | undefined;
|
|
524
522
|
description?: string | undefined;
|
|
525
|
-
longFormTitle?: string | undefined;
|
|
526
523
|
tags?: string[] | undefined;
|
|
527
524
|
documentation?: ({
|
|
528
525
|
type: "pdf";
|
|
@@ -630,7 +627,6 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
630
627
|
excludeFromTargets?: boolean | undefined;
|
|
631
628
|
} | undefined;
|
|
632
629
|
description?: string | undefined;
|
|
633
|
-
longFormTitle?: string | undefined;
|
|
634
630
|
tags?: string[] | undefined;
|
|
635
631
|
documentation?: ({
|
|
636
632
|
type: "pdf";
|
|
@@ -650,6 +646,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
650
646
|
sortOrder?: number | undefined;
|
|
651
647
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
652
648
|
}[];
|
|
649
|
+
longFormTitle: string;
|
|
653
650
|
data?: {
|
|
654
651
|
type?: "number" | "percentage" | undefined;
|
|
655
652
|
total?: number | undefined;
|
|
@@ -663,7 +660,6 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
663
660
|
readOnly?: boolean | undefined;
|
|
664
661
|
} | undefined;
|
|
665
662
|
description?: string | undefined;
|
|
666
|
-
longFormTitle?: string | undefined;
|
|
667
663
|
tags?: string[] | undefined;
|
|
668
664
|
documentation?: ({
|
|
669
665
|
type: "pdf";
|
|
@@ -756,7 +752,6 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
756
752
|
excludeFromTargets?: boolean | undefined;
|
|
757
753
|
} | undefined;
|
|
758
754
|
description?: string | undefined;
|
|
759
|
-
longFormTitle?: string | undefined;
|
|
760
755
|
tags?: string[] | undefined;
|
|
761
756
|
documentation?: ({
|
|
762
757
|
type: "pdf";
|
|
@@ -776,6 +771,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
776
771
|
sortOrder?: number | undefined;
|
|
777
772
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
778
773
|
}[];
|
|
774
|
+
longFormTitle: string;
|
|
779
775
|
data?: {
|
|
780
776
|
type?: "number" | "percentage" | undefined;
|
|
781
777
|
total?: number | undefined;
|
|
@@ -789,7 +785,6 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
789
785
|
readOnly?: boolean | undefined;
|
|
790
786
|
} | undefined;
|
|
791
787
|
description?: string | undefined;
|
|
792
|
-
longFormTitle?: string | undefined;
|
|
793
788
|
tags?: string[] | undefined;
|
|
794
789
|
documentation?: ({
|
|
795
790
|
type: "pdf";
|