@openframe-org/criteria-set-protocol 2.0.13 → 2.0.14
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 -0
- package/dist/v1/schemas/common.js +1 -0
- package/dist/v1/schemas/criteria-tree.d.ts +130 -45
- package/dist/v1/schemas/criterion.d.ts +24 -9
- package/dist/v1/schemas/task-group.d.ts +15 -7
- package/dist/v1/schemas/task-item.d.ts +3 -0
- package/dist/v1/schemas/task.d.ts +8 -8
- package/dist/v1/schemas/task.js +0 -2
- package/dist/v1/schemas/theme.d.ts +35 -11
- package/dist/v1/utils.d.ts +15 -4
- package/package.json +1 -1
|
@@ -62,6 +62,7 @@ export declare const themeOptionsSchema: z.ZodObject<{
|
|
|
62
62
|
export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
63
63
|
type: z.ZodEnum<["theme", "criterion", "task-group", "task", "task-item"]>;
|
|
64
64
|
title: z.ZodString;
|
|
65
|
+
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
65
66
|
code: z.ZodString;
|
|
66
67
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
67
68
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -203,6 +204,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
203
204
|
items: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
204
205
|
type: z.ZodEnum<["theme", "criterion", "task-group", "task", "task-item"]>;
|
|
205
206
|
title: z.ZodString;
|
|
207
|
+
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
206
208
|
code: z.ZodString;
|
|
207
209
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
208
210
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -294,6 +296,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
294
296
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<z.objectUtil.extendShape<{
|
|
295
297
|
type: z.ZodEnum<["theme", "criterion", "task-group", "task", "task-item"]>;
|
|
296
298
|
title: z.ZodString;
|
|
299
|
+
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
297
300
|
code: z.ZodString;
|
|
298
301
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
299
302
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -386,6 +389,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
386
389
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<z.objectUtil.extendShape<{
|
|
387
390
|
type: z.ZodEnum<["theme", "criterion", "task-group", "task", "task-item"]>;
|
|
388
391
|
title: z.ZodString;
|
|
392
|
+
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
389
393
|
code: z.ZodString;
|
|
390
394
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
391
395
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -478,6 +482,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
478
482
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
479
483
|
type: z.ZodEnum<["theme", "criterion", "task-group", "task", "task-item"]>;
|
|
480
484
|
title: z.ZodString;
|
|
485
|
+
longFormTitle: z.ZodOptional<z.ZodString>;
|
|
481
486
|
code: z.ZodString;
|
|
482
487
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
483
488
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -790,6 +795,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
790
795
|
hideCode?: boolean | undefined;
|
|
791
796
|
} | undefined;
|
|
792
797
|
description?: string | undefined;
|
|
798
|
+
longFormTitle?: string | undefined;
|
|
793
799
|
tags?: string[] | undefined;
|
|
794
800
|
documentation?: ({
|
|
795
801
|
type: "pdf";
|
|
@@ -859,6 +865,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
859
865
|
hideCode?: boolean | undefined;
|
|
860
866
|
} | undefined;
|
|
861
867
|
description?: string | undefined;
|
|
868
|
+
longFormTitle?: string | undefined;
|
|
862
869
|
tags?: string[] | undefined;
|
|
863
870
|
documentation?: ({
|
|
864
871
|
type: "pdf";
|
|
@@ -881,13 +888,10 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
881
888
|
}>>, "many">;
|
|
882
889
|
options: z.ZodOptional<z.ZodObject<{
|
|
883
890
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
884
|
-
includeCodeInLongFormName: z.ZodOptional<z.ZodBoolean>;
|
|
885
891
|
}, "strip", z.ZodTypeAny, {
|
|
886
892
|
hideCode?: boolean | undefined;
|
|
887
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
888
893
|
}, {
|
|
889
894
|
hideCode?: boolean | undefined;
|
|
890
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
891
895
|
}>>;
|
|
892
896
|
}>, "strip", z.ZodTypeAny, {
|
|
893
897
|
type: "task";
|
|
@@ -943,6 +947,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
943
947
|
hideCode?: boolean | undefined;
|
|
944
948
|
} | undefined;
|
|
945
949
|
description?: string | undefined;
|
|
950
|
+
longFormTitle?: string | undefined;
|
|
946
951
|
tags?: string[] | undefined;
|
|
947
952
|
documentation?: ({
|
|
948
953
|
type: "pdf";
|
|
@@ -977,9 +982,9 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
977
982
|
} | undefined;
|
|
978
983
|
options?: {
|
|
979
984
|
hideCode?: boolean | undefined;
|
|
980
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
981
985
|
} | undefined;
|
|
982
986
|
description?: string | undefined;
|
|
987
|
+
longFormTitle?: string | undefined;
|
|
983
988
|
tags?: string[] | undefined;
|
|
984
989
|
documentation?: ({
|
|
985
990
|
type: "pdf";
|
|
@@ -1051,6 +1056,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1051
1056
|
hideCode?: boolean | undefined;
|
|
1052
1057
|
} | undefined;
|
|
1053
1058
|
description?: string | undefined;
|
|
1059
|
+
longFormTitle?: string | undefined;
|
|
1054
1060
|
tags?: string[] | undefined;
|
|
1055
1061
|
documentation?: ({
|
|
1056
1062
|
type: "pdf";
|
|
@@ -1085,9 +1091,9 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1085
1091
|
} | undefined;
|
|
1086
1092
|
options?: {
|
|
1087
1093
|
hideCode?: boolean | undefined;
|
|
1088
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
1089
1094
|
} | undefined;
|
|
1090
1095
|
description?: string | undefined;
|
|
1096
|
+
longFormTitle?: string | undefined;
|
|
1091
1097
|
tags?: string[] | undefined;
|
|
1092
1098
|
documentation?: ({
|
|
1093
1099
|
type: "pdf";
|
|
@@ -1174,6 +1180,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1174
1180
|
hideCode?: boolean | undefined;
|
|
1175
1181
|
} | undefined;
|
|
1176
1182
|
description?: string | undefined;
|
|
1183
|
+
longFormTitle?: string | undefined;
|
|
1177
1184
|
tags?: string[] | undefined;
|
|
1178
1185
|
documentation?: ({
|
|
1179
1186
|
type: "pdf";
|
|
@@ -1208,9 +1215,9 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1208
1215
|
} | undefined;
|
|
1209
1216
|
options?: {
|
|
1210
1217
|
hideCode?: boolean | undefined;
|
|
1211
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
1212
1218
|
} | undefined;
|
|
1213
1219
|
description?: string | undefined;
|
|
1220
|
+
longFormTitle?: string | undefined;
|
|
1214
1221
|
tags?: string[] | undefined;
|
|
1215
1222
|
documentation?: ({
|
|
1216
1223
|
type: "pdf";
|
|
@@ -1245,6 +1252,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1245
1252
|
hideCode?: boolean | undefined;
|
|
1246
1253
|
hideFromHierarchy?: boolean | undefined;
|
|
1247
1254
|
} | undefined;
|
|
1255
|
+
longFormTitle?: string | undefined;
|
|
1248
1256
|
tags?: string[] | undefined;
|
|
1249
1257
|
documentation?: ({
|
|
1250
1258
|
type: "pdf";
|
|
@@ -1321,6 +1329,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1321
1329
|
hideCode?: boolean | undefined;
|
|
1322
1330
|
} | undefined;
|
|
1323
1331
|
description?: string | undefined;
|
|
1332
|
+
longFormTitle?: string | undefined;
|
|
1324
1333
|
tags?: string[] | undefined;
|
|
1325
1334
|
documentation?: ({
|
|
1326
1335
|
type: "pdf";
|
|
@@ -1355,9 +1364,9 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1355
1364
|
} | undefined;
|
|
1356
1365
|
options?: {
|
|
1357
1366
|
hideCode?: boolean | undefined;
|
|
1358
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
1359
1367
|
} | undefined;
|
|
1360
1368
|
description?: string | undefined;
|
|
1369
|
+
longFormTitle?: string | undefined;
|
|
1361
1370
|
tags?: string[] | undefined;
|
|
1362
1371
|
documentation?: ({
|
|
1363
1372
|
type: "pdf";
|
|
@@ -1392,6 +1401,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1392
1401
|
hideCode?: boolean | undefined;
|
|
1393
1402
|
hideFromHierarchy?: boolean | undefined;
|
|
1394
1403
|
} | undefined;
|
|
1404
|
+
longFormTitle?: string | undefined;
|
|
1395
1405
|
tags?: string[] | undefined;
|
|
1396
1406
|
documentation?: ({
|
|
1397
1407
|
type: "pdf";
|
|
@@ -1483,6 +1493,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1483
1493
|
hideCode?: boolean | undefined;
|
|
1484
1494
|
} | undefined;
|
|
1485
1495
|
description?: string | undefined;
|
|
1496
|
+
longFormTitle?: string | undefined;
|
|
1486
1497
|
tags?: string[] | undefined;
|
|
1487
1498
|
documentation?: ({
|
|
1488
1499
|
type: "pdf";
|
|
@@ -1517,9 +1528,9 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1517
1528
|
} | undefined;
|
|
1518
1529
|
options?: {
|
|
1519
1530
|
hideCode?: boolean | undefined;
|
|
1520
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
1521
1531
|
} | undefined;
|
|
1522
1532
|
description?: string | undefined;
|
|
1533
|
+
longFormTitle?: string | undefined;
|
|
1523
1534
|
tags?: string[] | undefined;
|
|
1524
1535
|
documentation?: ({
|
|
1525
1536
|
type: "pdf";
|
|
@@ -1554,6 +1565,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1554
1565
|
hideCode?: boolean | undefined;
|
|
1555
1566
|
hideFromHierarchy?: boolean | undefined;
|
|
1556
1567
|
} | undefined;
|
|
1568
|
+
longFormTitle?: string | undefined;
|
|
1557
1569
|
tags?: string[] | undefined;
|
|
1558
1570
|
documentation?: ({
|
|
1559
1571
|
type: "pdf";
|
|
@@ -1589,6 +1601,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1589
1601
|
hideCode?: boolean | undefined;
|
|
1590
1602
|
hideFromHierarchy?: boolean | undefined;
|
|
1591
1603
|
} | undefined;
|
|
1604
|
+
longFormTitle?: string | undefined;
|
|
1592
1605
|
tags?: string[] | undefined;
|
|
1593
1606
|
documentation?: ({
|
|
1594
1607
|
type: "pdf";
|
|
@@ -1668,6 +1681,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1668
1681
|
hideCode?: boolean | undefined;
|
|
1669
1682
|
} | undefined;
|
|
1670
1683
|
description?: string | undefined;
|
|
1684
|
+
longFormTitle?: string | undefined;
|
|
1671
1685
|
tags?: string[] | undefined;
|
|
1672
1686
|
documentation?: ({
|
|
1673
1687
|
type: "pdf";
|
|
@@ -1702,9 +1716,9 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1702
1716
|
} | undefined;
|
|
1703
1717
|
options?: {
|
|
1704
1718
|
hideCode?: boolean | undefined;
|
|
1705
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
1706
1719
|
} | undefined;
|
|
1707
1720
|
description?: string | undefined;
|
|
1721
|
+
longFormTitle?: string | undefined;
|
|
1708
1722
|
tags?: string[] | undefined;
|
|
1709
1723
|
documentation?: ({
|
|
1710
1724
|
type: "pdf";
|
|
@@ -1739,6 +1753,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1739
1753
|
hideCode?: boolean | undefined;
|
|
1740
1754
|
hideFromHierarchy?: boolean | undefined;
|
|
1741
1755
|
} | undefined;
|
|
1756
|
+
longFormTitle?: string | undefined;
|
|
1742
1757
|
tags?: string[] | undefined;
|
|
1743
1758
|
documentation?: ({
|
|
1744
1759
|
type: "pdf";
|
|
@@ -1774,6 +1789,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1774
1789
|
hideCode?: boolean | undefined;
|
|
1775
1790
|
hideFromHierarchy?: boolean | undefined;
|
|
1776
1791
|
} | undefined;
|
|
1792
|
+
longFormTitle?: string | undefined;
|
|
1777
1793
|
tags?: string[] | undefined;
|
|
1778
1794
|
documentation?: ({
|
|
1779
1795
|
type: "pdf";
|
|
@@ -1868,6 +1884,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1868
1884
|
hideCode?: boolean | undefined;
|
|
1869
1885
|
} | undefined;
|
|
1870
1886
|
description?: string | undefined;
|
|
1887
|
+
longFormTitle?: string | undefined;
|
|
1871
1888
|
tags?: string[] | undefined;
|
|
1872
1889
|
documentation?: ({
|
|
1873
1890
|
type: "pdf";
|
|
@@ -1902,9 +1919,9 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1902
1919
|
} | undefined;
|
|
1903
1920
|
options?: {
|
|
1904
1921
|
hideCode?: boolean | undefined;
|
|
1905
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
1906
1922
|
} | undefined;
|
|
1907
1923
|
description?: string | undefined;
|
|
1924
|
+
longFormTitle?: string | undefined;
|
|
1908
1925
|
tags?: string[] | undefined;
|
|
1909
1926
|
documentation?: ({
|
|
1910
1927
|
type: "pdf";
|
|
@@ -1939,6 +1956,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1939
1956
|
hideCode?: boolean | undefined;
|
|
1940
1957
|
hideFromHierarchy?: boolean | undefined;
|
|
1941
1958
|
} | undefined;
|
|
1959
|
+
longFormTitle?: string | undefined;
|
|
1942
1960
|
tags?: string[] | undefined;
|
|
1943
1961
|
documentation?: ({
|
|
1944
1962
|
type: "pdf";
|
|
@@ -1974,6 +1992,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1974
1992
|
hideCode?: boolean | undefined;
|
|
1975
1993
|
hideFromHierarchy?: boolean | undefined;
|
|
1976
1994
|
} | undefined;
|
|
1995
|
+
longFormTitle?: string | undefined;
|
|
1977
1996
|
tags?: string[] | undefined;
|
|
1978
1997
|
documentation?: ({
|
|
1979
1998
|
type: "pdf";
|
|
@@ -2020,6 +2039,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2020
2039
|
hideCode?: boolean | undefined;
|
|
2021
2040
|
hideFromHierarchy?: boolean | undefined;
|
|
2022
2041
|
} | undefined;
|
|
2042
|
+
longFormTitle?: string | undefined;
|
|
2023
2043
|
tags?: string[] | undefined;
|
|
2024
2044
|
documentation?: ({
|
|
2025
2045
|
type: "pdf";
|
|
@@ -2103,6 +2123,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2103
2123
|
hideCode?: boolean | undefined;
|
|
2104
2124
|
} | undefined;
|
|
2105
2125
|
description?: string | undefined;
|
|
2126
|
+
longFormTitle?: string | undefined;
|
|
2106
2127
|
tags?: string[] | undefined;
|
|
2107
2128
|
documentation?: ({
|
|
2108
2129
|
type: "pdf";
|
|
@@ -2137,9 +2158,9 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2137
2158
|
} | undefined;
|
|
2138
2159
|
options?: {
|
|
2139
2160
|
hideCode?: boolean | undefined;
|
|
2140
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
2141
2161
|
} | undefined;
|
|
2142
2162
|
description?: string | undefined;
|
|
2163
|
+
longFormTitle?: string | undefined;
|
|
2143
2164
|
tags?: string[] | undefined;
|
|
2144
2165
|
documentation?: ({
|
|
2145
2166
|
type: "pdf";
|
|
@@ -2174,6 +2195,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2174
2195
|
hideCode?: boolean | undefined;
|
|
2175
2196
|
hideFromHierarchy?: boolean | undefined;
|
|
2176
2197
|
} | undefined;
|
|
2198
|
+
longFormTitle?: string | undefined;
|
|
2177
2199
|
tags?: string[] | undefined;
|
|
2178
2200
|
documentation?: ({
|
|
2179
2201
|
type: "pdf";
|
|
@@ -2209,6 +2231,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2209
2231
|
hideCode?: boolean | undefined;
|
|
2210
2232
|
hideFromHierarchy?: boolean | undefined;
|
|
2211
2233
|
} | undefined;
|
|
2234
|
+
longFormTitle?: string | undefined;
|
|
2212
2235
|
tags?: string[] | undefined;
|
|
2213
2236
|
documentation?: ({
|
|
2214
2237
|
type: "pdf";
|
|
@@ -2255,6 +2278,7 @@ export declare const themeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2255
2278
|
hideCode?: boolean | undefined;
|
|
2256
2279
|
hideFromHierarchy?: boolean | undefined;
|
|
2257
2280
|
} | undefined;
|
|
2281
|
+
longFormTitle?: string | undefined;
|
|
2258
2282
|
tags?: string[] | undefined;
|
|
2259
2283
|
documentation?: ({
|
|
2260
2284
|
type: "pdf";
|
package/dist/v1/utils.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export declare const isTheme: (element: CriteriaTreeElement) => element is {
|
|
|
65
65
|
hideCode?: boolean | undefined;
|
|
66
66
|
} | undefined;
|
|
67
67
|
description?: string | undefined;
|
|
68
|
+
longFormTitle?: string | undefined;
|
|
68
69
|
tags?: string[] | undefined;
|
|
69
70
|
documentation?: ({
|
|
70
71
|
type: "pdf";
|
|
@@ -99,9 +100,9 @@ export declare const isTheme: (element: CriteriaTreeElement) => element is {
|
|
|
99
100
|
} | undefined;
|
|
100
101
|
options?: {
|
|
101
102
|
hideCode?: boolean | undefined;
|
|
102
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
103
103
|
} | undefined;
|
|
104
104
|
description?: string | undefined;
|
|
105
|
+
longFormTitle?: string | undefined;
|
|
105
106
|
tags?: string[] | undefined;
|
|
106
107
|
documentation?: ({
|
|
107
108
|
type: "pdf";
|
|
@@ -136,6 +137,7 @@ export declare const isTheme: (element: CriteriaTreeElement) => element is {
|
|
|
136
137
|
hideCode?: boolean | undefined;
|
|
137
138
|
hideFromHierarchy?: boolean | undefined;
|
|
138
139
|
} | undefined;
|
|
140
|
+
longFormTitle?: string | undefined;
|
|
139
141
|
tags?: string[] | undefined;
|
|
140
142
|
documentation?: ({
|
|
141
143
|
type: "pdf";
|
|
@@ -171,6 +173,7 @@ export declare const isTheme: (element: CriteriaTreeElement) => element is {
|
|
|
171
173
|
hideCode?: boolean | undefined;
|
|
172
174
|
hideFromHierarchy?: boolean | undefined;
|
|
173
175
|
} | undefined;
|
|
176
|
+
longFormTitle?: string | undefined;
|
|
174
177
|
tags?: string[] | undefined;
|
|
175
178
|
documentation?: ({
|
|
176
179
|
type: "pdf";
|
|
@@ -217,6 +220,7 @@ export declare const isTheme: (element: CriteriaTreeElement) => element is {
|
|
|
217
220
|
hideCode?: boolean | undefined;
|
|
218
221
|
hideFromHierarchy?: boolean | undefined;
|
|
219
222
|
} | undefined;
|
|
223
|
+
longFormTitle?: string | undefined;
|
|
220
224
|
tags?: string[] | undefined;
|
|
221
225
|
documentation?: ({
|
|
222
226
|
type: "pdf";
|
|
@@ -297,6 +301,7 @@ export declare const isCriterion: (element: CriteriaTreeElement) => element is {
|
|
|
297
301
|
hideCode?: boolean | undefined;
|
|
298
302
|
} | undefined;
|
|
299
303
|
description?: string | undefined;
|
|
304
|
+
longFormTitle?: string | undefined;
|
|
300
305
|
tags?: string[] | undefined;
|
|
301
306
|
documentation?: ({
|
|
302
307
|
type: "pdf";
|
|
@@ -331,9 +336,9 @@ export declare const isCriterion: (element: CriteriaTreeElement) => element is {
|
|
|
331
336
|
} | undefined;
|
|
332
337
|
options?: {
|
|
333
338
|
hideCode?: boolean | undefined;
|
|
334
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
335
339
|
} | undefined;
|
|
336
340
|
description?: string | undefined;
|
|
341
|
+
longFormTitle?: string | undefined;
|
|
337
342
|
tags?: string[] | undefined;
|
|
338
343
|
documentation?: ({
|
|
339
344
|
type: "pdf";
|
|
@@ -368,6 +373,7 @@ export declare const isCriterion: (element: CriteriaTreeElement) => element is {
|
|
|
368
373
|
hideCode?: boolean | undefined;
|
|
369
374
|
hideFromHierarchy?: boolean | undefined;
|
|
370
375
|
} | undefined;
|
|
376
|
+
longFormTitle?: string | undefined;
|
|
371
377
|
tags?: string[] | undefined;
|
|
372
378
|
documentation?: ({
|
|
373
379
|
type: "pdf";
|
|
@@ -403,6 +409,7 @@ export declare const isCriterion: (element: CriteriaTreeElement) => element is {
|
|
|
403
409
|
hideCode?: boolean | undefined;
|
|
404
410
|
hideFromHierarchy?: boolean | undefined;
|
|
405
411
|
} | undefined;
|
|
412
|
+
longFormTitle?: string | undefined;
|
|
406
413
|
tags?: string[] | undefined;
|
|
407
414
|
documentation?: ({
|
|
408
415
|
type: "pdf";
|
|
@@ -479,6 +486,7 @@ export declare const isTaskGroup: (element: CriteriaTreeElement) => element is {
|
|
|
479
486
|
hideCode?: boolean | undefined;
|
|
480
487
|
} | undefined;
|
|
481
488
|
description?: string | undefined;
|
|
489
|
+
longFormTitle?: string | undefined;
|
|
482
490
|
tags?: string[] | undefined;
|
|
483
491
|
documentation?: ({
|
|
484
492
|
type: "pdf";
|
|
@@ -513,9 +521,9 @@ export declare const isTaskGroup: (element: CriteriaTreeElement) => element is {
|
|
|
513
521
|
} | undefined;
|
|
514
522
|
options?: {
|
|
515
523
|
hideCode?: boolean | undefined;
|
|
516
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
517
524
|
} | undefined;
|
|
518
525
|
description?: string | undefined;
|
|
526
|
+
longFormTitle?: string | undefined;
|
|
519
527
|
tags?: string[] | undefined;
|
|
520
528
|
documentation?: ({
|
|
521
529
|
type: "pdf";
|
|
@@ -550,6 +558,7 @@ export declare const isTaskGroup: (element: CriteriaTreeElement) => element is {
|
|
|
550
558
|
hideCode?: boolean | undefined;
|
|
551
559
|
hideFromHierarchy?: boolean | undefined;
|
|
552
560
|
} | undefined;
|
|
561
|
+
longFormTitle?: string | undefined;
|
|
553
562
|
tags?: string[] | undefined;
|
|
554
563
|
documentation?: ({
|
|
555
564
|
type: "pdf";
|
|
@@ -623,6 +632,7 @@ export declare const isTask: (element: CriteriaTreeElement) => element is {
|
|
|
623
632
|
hideCode?: boolean | undefined;
|
|
624
633
|
} | undefined;
|
|
625
634
|
description?: string | undefined;
|
|
635
|
+
longFormTitle?: string | undefined;
|
|
626
636
|
tags?: string[] | undefined;
|
|
627
637
|
documentation?: ({
|
|
628
638
|
type: "pdf";
|
|
@@ -657,9 +667,9 @@ export declare const isTask: (element: CriteriaTreeElement) => element is {
|
|
|
657
667
|
} | undefined;
|
|
658
668
|
options?: {
|
|
659
669
|
hideCode?: boolean | undefined;
|
|
660
|
-
includeCodeInLongFormName?: boolean | undefined;
|
|
661
670
|
} | undefined;
|
|
662
671
|
description?: string | undefined;
|
|
672
|
+
longFormTitle?: string | undefined;
|
|
663
673
|
tags?: string[] | undefined;
|
|
664
674
|
documentation?: ({
|
|
665
675
|
type: "pdf";
|
|
@@ -728,6 +738,7 @@ export declare const isTaskItem: (element: CriteriaTreeElement) => element is {
|
|
|
728
738
|
hideCode?: boolean | undefined;
|
|
729
739
|
} | undefined;
|
|
730
740
|
description?: string | undefined;
|
|
741
|
+
longFormTitle?: string | undefined;
|
|
731
742
|
tags?: string[] | undefined;
|
|
732
743
|
documentation?: ({
|
|
733
744
|
type: "pdf";
|
package/package.json
CHANGED