@openframe-org/criteria-set-protocol 2.0.29 → 2.1.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/dist/v1/schemas/certification.js +48 -25
- package/dist/v1/schemas/common.js +79 -45
- package/dist/v1/schemas/criteria-set.d.ts +8 -0
- package/dist/v1/schemas/criteria-set.js +21 -4
- package/dist/v1/schemas/criteria-tree.d.ts +240 -60
- package/dist/v1/schemas/criteria-tree.js +15 -4
- package/dist/v1/schemas/criterion.d.ts +62 -11
- package/dist/v1/schemas/criterion.js +44 -6
- package/dist/v1/schemas/data-map.js +17 -6
- package/dist/v1/schemas/documentation.js +16 -8
- package/dist/v1/schemas/metadata.js +38 -15
- package/dist/v1/schemas/request/criteria-set-id-param-schema.js +6 -3
- package/dist/v1/schemas/request/matrix-request-body-schema.js +17 -5
- package/dist/v1/schemas/request/tree-and-data-request-body-schema.js +13 -4
- package/dist/v1/schemas/request/version-param-schema.js +6 -3
- package/dist/v1/schemas/response.js +10 -6
- package/dist/v1/schemas/task-group.d.ts +26 -9
- package/dist/v1/schemas/task-group.js +28 -7
- package/dist/v1/schemas/task-item.d.ts +0 -8
- package/dist/v1/schemas/task-item.js +107 -44
- package/dist/v1/schemas/task.d.ts +22 -7
- package/dist/v1/schemas/task.js +28 -6
- package/dist/v1/schemas/theme.d.ts +94 -13
- package/dist/v1/schemas/theme.js +56 -14
- package/dist/v1/types/criteria.d.ts +2 -1
- package/dist/v1/utils.d.ts +0 -8
- package/dist/v1/utils.js +1 -19
- package/package.json +7 -5
|
@@ -674,13 +674,10 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
674
674
|
description: z.ZodOptional<z.ZodString>;
|
|
675
675
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
676
676
|
options: z.ZodOptional<z.ZodObject<{
|
|
677
|
-
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
678
677
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
679
678
|
}, "strip", z.ZodTypeAny, {
|
|
680
|
-
hideCode?: boolean | undefined;
|
|
681
679
|
excludeFromTargets?: boolean | undefined;
|
|
682
680
|
}, {
|
|
683
|
-
hideCode?: boolean | undefined;
|
|
684
681
|
excludeFromTargets?: boolean | undefined;
|
|
685
682
|
}>>;
|
|
686
683
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -746,7 +743,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
746
743
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
747
744
|
} | undefined;
|
|
748
745
|
options?: {
|
|
749
|
-
hideCode?: boolean | undefined;
|
|
750
746
|
excludeFromTargets?: boolean | undefined;
|
|
751
747
|
} | undefined;
|
|
752
748
|
description?: string | undefined;
|
|
@@ -832,7 +828,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
832
828
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
833
829
|
} | undefined;
|
|
834
830
|
options?: {
|
|
835
|
-
hideCode?: boolean | undefined;
|
|
836
831
|
excludeFromTargets?: boolean | undefined;
|
|
837
832
|
} | undefined;
|
|
838
833
|
description?: string | undefined;
|
|
@@ -858,10 +853,16 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
858
853
|
}>>, "many">;
|
|
859
854
|
options: z.ZodOptional<z.ZodObject<{
|
|
860
855
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
856
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
857
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
861
858
|
}, "strip", z.ZodTypeAny, {
|
|
859
|
+
breadcrumbTextFormat: string;
|
|
860
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
862
861
|
hideCode?: boolean | undefined;
|
|
863
862
|
}, {
|
|
864
863
|
hideCode?: boolean | undefined;
|
|
864
|
+
breadcrumbTextFormat?: string | undefined;
|
|
865
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
865
866
|
}>>;
|
|
866
867
|
}, "strip", z.ZodTypeAny, {
|
|
867
868
|
code: string;
|
|
@@ -930,7 +931,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
930
931
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
931
932
|
} | undefined;
|
|
932
933
|
options?: {
|
|
933
|
-
hideCode?: boolean | undefined;
|
|
934
934
|
excludeFromTargets?: boolean | undefined;
|
|
935
935
|
} | undefined;
|
|
936
936
|
description?: string | undefined;
|
|
@@ -967,6 +967,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
967
967
|
readOnly?: boolean | undefined;
|
|
968
968
|
} | undefined;
|
|
969
969
|
options?: {
|
|
970
|
+
breadcrumbTextFormat: string;
|
|
971
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
970
972
|
hideCode?: boolean | undefined;
|
|
971
973
|
} | undefined;
|
|
972
974
|
description?: string | undefined;
|
|
@@ -1055,7 +1057,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1055
1057
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1056
1058
|
} | undefined;
|
|
1057
1059
|
options?: {
|
|
1058
|
-
hideCode?: boolean | undefined;
|
|
1059
1060
|
excludeFromTargets?: boolean | undefined;
|
|
1060
1061
|
} | undefined;
|
|
1061
1062
|
description?: string | undefined;
|
|
@@ -1093,6 +1094,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1093
1094
|
} | undefined;
|
|
1094
1095
|
options?: {
|
|
1095
1096
|
hideCode?: boolean | undefined;
|
|
1097
|
+
breadcrumbTextFormat?: string | undefined;
|
|
1098
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1096
1099
|
} | undefined;
|
|
1097
1100
|
description?: string | undefined;
|
|
1098
1101
|
longFormTitle?: string | undefined;
|
|
@@ -1195,7 +1198,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1195
1198
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1196
1199
|
} | undefined;
|
|
1197
1200
|
options?: {
|
|
1198
|
-
hideCode?: boolean | undefined;
|
|
1199
1201
|
excludeFromTargets?: boolean | undefined;
|
|
1200
1202
|
} | undefined;
|
|
1201
1203
|
description?: string | undefined;
|
|
@@ -1232,6 +1234,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1232
1234
|
readOnly?: boolean | undefined;
|
|
1233
1235
|
} | undefined;
|
|
1234
1236
|
options?: {
|
|
1237
|
+
breadcrumbTextFormat: string;
|
|
1238
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
1235
1239
|
hideCode?: boolean | undefined;
|
|
1236
1240
|
} | undefined;
|
|
1237
1241
|
description?: string | undefined;
|
|
@@ -1361,7 +1365,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1361
1365
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1362
1366
|
} | undefined;
|
|
1363
1367
|
options?: {
|
|
1364
|
-
hideCode?: boolean | undefined;
|
|
1365
1368
|
excludeFromTargets?: boolean | undefined;
|
|
1366
1369
|
} | undefined;
|
|
1367
1370
|
description?: string | undefined;
|
|
@@ -1399,6 +1402,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1399
1402
|
} | undefined;
|
|
1400
1403
|
options?: {
|
|
1401
1404
|
hideCode?: boolean | undefined;
|
|
1405
|
+
breadcrumbTextFormat?: string | undefined;
|
|
1406
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1402
1407
|
} | undefined;
|
|
1403
1408
|
description?: string | undefined;
|
|
1404
1409
|
longFormTitle?: string | undefined;
|
|
@@ -1460,12 +1465,24 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1460
1465
|
options: z.ZodOptional<z.ZodObject<{
|
|
1461
1466
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
1462
1467
|
hideFromHierarchy: z.ZodOptional<z.ZodBoolean>;
|
|
1468
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1469
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1470
|
+
hideFromDocumentTree: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1471
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1463
1472
|
}, "strip", z.ZodTypeAny, {
|
|
1473
|
+
breadcrumbTextFormat: string;
|
|
1474
|
+
hideFromBreadcrumbs: boolean;
|
|
1475
|
+
hideFromDocumentTree: boolean;
|
|
1476
|
+
hideCodeInReport: boolean;
|
|
1464
1477
|
hideCode?: boolean | undefined;
|
|
1465
1478
|
hideFromHierarchy?: boolean | undefined;
|
|
1466
1479
|
}, {
|
|
1467
1480
|
hideCode?: boolean | undefined;
|
|
1481
|
+
breadcrumbTextFormat?: string | undefined;
|
|
1468
1482
|
hideFromHierarchy?: boolean | undefined;
|
|
1483
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
1484
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
1485
|
+
hideCodeInReport?: boolean | undefined;
|
|
1469
1486
|
}>>;
|
|
1470
1487
|
}, "strip", z.ZodTypeAny, {
|
|
1471
1488
|
code: string;
|
|
@@ -1542,7 +1559,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1542
1559
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1543
1560
|
} | undefined;
|
|
1544
1561
|
options?: {
|
|
1545
|
-
hideCode?: boolean | undefined;
|
|
1546
1562
|
excludeFromTargets?: boolean | undefined;
|
|
1547
1563
|
} | undefined;
|
|
1548
1564
|
description?: string | undefined;
|
|
@@ -1579,6 +1595,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1579
1595
|
readOnly?: boolean | undefined;
|
|
1580
1596
|
} | undefined;
|
|
1581
1597
|
options?: {
|
|
1598
|
+
breadcrumbTextFormat: string;
|
|
1599
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
1582
1600
|
hideCode?: boolean | undefined;
|
|
1583
1601
|
} | undefined;
|
|
1584
1602
|
description?: string | undefined;
|
|
@@ -1651,6 +1669,10 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1651
1669
|
readOnly?: boolean | undefined;
|
|
1652
1670
|
} | undefined;
|
|
1653
1671
|
options?: {
|
|
1672
|
+
breadcrumbTextFormat: string;
|
|
1673
|
+
hideFromBreadcrumbs: boolean;
|
|
1674
|
+
hideFromDocumentTree: boolean;
|
|
1675
|
+
hideCodeInReport: boolean;
|
|
1654
1676
|
hideCode?: boolean | undefined;
|
|
1655
1677
|
hideFromHierarchy?: boolean | undefined;
|
|
1656
1678
|
} | undefined;
|
|
@@ -1747,7 +1769,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1747
1769
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1748
1770
|
} | undefined;
|
|
1749
1771
|
options?: {
|
|
1750
|
-
hideCode?: boolean | undefined;
|
|
1751
1772
|
excludeFromTargets?: boolean | undefined;
|
|
1752
1773
|
} | undefined;
|
|
1753
1774
|
description?: string | undefined;
|
|
@@ -1785,6 +1806,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1785
1806
|
} | undefined;
|
|
1786
1807
|
options?: {
|
|
1787
1808
|
hideCode?: boolean | undefined;
|
|
1809
|
+
breadcrumbTextFormat?: string | undefined;
|
|
1810
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1788
1811
|
} | undefined;
|
|
1789
1812
|
description?: string | undefined;
|
|
1790
1813
|
longFormTitle?: string | undefined;
|
|
@@ -1857,7 +1880,11 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1857
1880
|
} | undefined;
|
|
1858
1881
|
options?: {
|
|
1859
1882
|
hideCode?: boolean | undefined;
|
|
1883
|
+
breadcrumbTextFormat?: string | undefined;
|
|
1860
1884
|
hideFromHierarchy?: boolean | undefined;
|
|
1885
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
1886
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
1887
|
+
hideCodeInReport?: boolean | undefined;
|
|
1861
1888
|
} | undefined;
|
|
1862
1889
|
longFormTitle?: string | undefined;
|
|
1863
1890
|
tags?: string[] | undefined;
|
|
@@ -1881,12 +1908,24 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1881
1908
|
options: z.ZodOptional<z.ZodObject<{
|
|
1882
1909
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
1883
1910
|
hideFromHierarchy: z.ZodOptional<z.ZodBoolean>;
|
|
1911
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1912
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1913
|
+
hideFromDocumentTree: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1914
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1884
1915
|
}, "strip", z.ZodTypeAny, {
|
|
1916
|
+
breadcrumbTextFormat: string;
|
|
1917
|
+
hideFromBreadcrumbs: boolean;
|
|
1918
|
+
hideFromDocumentTree: boolean;
|
|
1919
|
+
hideCodeInReport: boolean;
|
|
1885
1920
|
hideCode?: boolean | undefined;
|
|
1886
1921
|
hideFromHierarchy?: boolean | undefined;
|
|
1887
1922
|
}, {
|
|
1888
1923
|
hideCode?: boolean | undefined;
|
|
1924
|
+
breadcrumbTextFormat?: string | undefined;
|
|
1889
1925
|
hideFromHierarchy?: boolean | undefined;
|
|
1926
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
1927
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
1928
|
+
hideCodeInReport?: boolean | undefined;
|
|
1890
1929
|
}>>;
|
|
1891
1930
|
}, "strip", z.ZodTypeAny, {
|
|
1892
1931
|
code: string;
|
|
@@ -1967,7 +2006,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1967
2006
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1968
2007
|
} | undefined;
|
|
1969
2008
|
options?: {
|
|
1970
|
-
hideCode?: boolean | undefined;
|
|
1971
2009
|
excludeFromTargets?: boolean | undefined;
|
|
1972
2010
|
} | undefined;
|
|
1973
2011
|
description?: string | undefined;
|
|
@@ -2004,6 +2042,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2004
2042
|
readOnly?: boolean | undefined;
|
|
2005
2043
|
} | undefined;
|
|
2006
2044
|
options?: {
|
|
2045
|
+
breadcrumbTextFormat: string;
|
|
2046
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
2007
2047
|
hideCode?: boolean | undefined;
|
|
2008
2048
|
} | undefined;
|
|
2009
2049
|
description?: string | undefined;
|
|
@@ -2076,6 +2116,10 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2076
2116
|
readOnly?: boolean | undefined;
|
|
2077
2117
|
} | undefined;
|
|
2078
2118
|
options?: {
|
|
2119
|
+
breadcrumbTextFormat: string;
|
|
2120
|
+
hideFromBreadcrumbs: boolean;
|
|
2121
|
+
hideFromDocumentTree: boolean;
|
|
2122
|
+
hideCodeInReport: boolean;
|
|
2079
2123
|
hideCode?: boolean | undefined;
|
|
2080
2124
|
hideFromHierarchy?: boolean | undefined;
|
|
2081
2125
|
} | undefined;
|
|
@@ -2123,6 +2167,10 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2123
2167
|
};
|
|
2124
2168
|
} | undefined;
|
|
2125
2169
|
options?: {
|
|
2170
|
+
breadcrumbTextFormat: string;
|
|
2171
|
+
hideFromBreadcrumbs: boolean;
|
|
2172
|
+
hideFromDocumentTree: boolean;
|
|
2173
|
+
hideCodeInReport: boolean;
|
|
2126
2174
|
hideCode?: boolean | undefined;
|
|
2127
2175
|
hideFromHierarchy?: boolean | undefined;
|
|
2128
2176
|
} | undefined;
|
|
@@ -2223,7 +2271,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2223
2271
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
2224
2272
|
} | undefined;
|
|
2225
2273
|
options?: {
|
|
2226
|
-
hideCode?: boolean | undefined;
|
|
2227
2274
|
excludeFromTargets?: boolean | undefined;
|
|
2228
2275
|
} | undefined;
|
|
2229
2276
|
description?: string | undefined;
|
|
@@ -2261,6 +2308,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2261
2308
|
} | undefined;
|
|
2262
2309
|
options?: {
|
|
2263
2310
|
hideCode?: boolean | undefined;
|
|
2311
|
+
breadcrumbTextFormat?: string | undefined;
|
|
2312
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
2264
2313
|
} | undefined;
|
|
2265
2314
|
description?: string | undefined;
|
|
2266
2315
|
longFormTitle?: string | undefined;
|
|
@@ -2333,7 +2382,11 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2333
2382
|
} | undefined;
|
|
2334
2383
|
options?: {
|
|
2335
2384
|
hideCode?: boolean | undefined;
|
|
2385
|
+
breadcrumbTextFormat?: string | undefined;
|
|
2336
2386
|
hideFromHierarchy?: boolean | undefined;
|
|
2387
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
2388
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
2389
|
+
hideCodeInReport?: boolean | undefined;
|
|
2337
2390
|
} | undefined;
|
|
2338
2391
|
longFormTitle?: string | undefined;
|
|
2339
2392
|
tags?: string[] | undefined;
|
|
@@ -2380,7 +2433,11 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2380
2433
|
} | undefined;
|
|
2381
2434
|
options?: {
|
|
2382
2435
|
hideCode?: boolean | undefined;
|
|
2436
|
+
breadcrumbTextFormat?: string | undefined;
|
|
2383
2437
|
hideFromHierarchy?: boolean | undefined;
|
|
2438
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
2439
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
2440
|
+
hideCodeInReport?: boolean | undefined;
|
|
2384
2441
|
} | undefined;
|
|
2385
2442
|
longFormTitle?: string | undefined;
|
|
2386
2443
|
tags?: string[] | undefined;
|
|
@@ -2502,6 +2559,16 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2502
2559
|
description?: string | undefined;
|
|
2503
2560
|
icon?: string | undefined;
|
|
2504
2561
|
}>]>, "many">>;
|
|
2562
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
2563
|
+
renderDetailedViewInDashboard: z.ZodOptional<z.ZodBoolean>;
|
|
2564
|
+
dashboardRenderingType: z.ZodOptional<z.ZodString>;
|
|
2565
|
+
}, "strip", z.ZodTypeAny, {
|
|
2566
|
+
renderDetailedViewInDashboard?: boolean | undefined;
|
|
2567
|
+
dashboardRenderingType?: string | undefined;
|
|
2568
|
+
}, {
|
|
2569
|
+
renderDetailedViewInDashboard?: boolean | undefined;
|
|
2570
|
+
dashboardRenderingType?: string | undefined;
|
|
2571
|
+
}>>;
|
|
2505
2572
|
}, "strip", z.ZodTypeAny, {
|
|
2506
2573
|
version: string;
|
|
2507
2574
|
themes: {
|
|
@@ -2583,7 +2650,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2583
2650
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
2584
2651
|
} | undefined;
|
|
2585
2652
|
options?: {
|
|
2586
|
-
hideCode?: boolean | undefined;
|
|
2587
2653
|
excludeFromTargets?: boolean | undefined;
|
|
2588
2654
|
} | undefined;
|
|
2589
2655
|
description?: string | undefined;
|
|
@@ -2620,6 +2686,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2620
2686
|
readOnly?: boolean | undefined;
|
|
2621
2687
|
} | undefined;
|
|
2622
2688
|
options?: {
|
|
2689
|
+
breadcrumbTextFormat: string;
|
|
2690
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
2623
2691
|
hideCode?: boolean | undefined;
|
|
2624
2692
|
} | undefined;
|
|
2625
2693
|
description?: string | undefined;
|
|
@@ -2692,6 +2760,10 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2692
2760
|
readOnly?: boolean | undefined;
|
|
2693
2761
|
} | undefined;
|
|
2694
2762
|
options?: {
|
|
2763
|
+
breadcrumbTextFormat: string;
|
|
2764
|
+
hideFromBreadcrumbs: boolean;
|
|
2765
|
+
hideFromDocumentTree: boolean;
|
|
2766
|
+
hideCodeInReport: boolean;
|
|
2695
2767
|
hideCode?: boolean | undefined;
|
|
2696
2768
|
hideFromHierarchy?: boolean | undefined;
|
|
2697
2769
|
} | undefined;
|
|
@@ -2739,6 +2811,10 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2739
2811
|
};
|
|
2740
2812
|
} | undefined;
|
|
2741
2813
|
options?: {
|
|
2814
|
+
breadcrumbTextFormat: string;
|
|
2815
|
+
hideFromBreadcrumbs: boolean;
|
|
2816
|
+
hideFromDocumentTree: boolean;
|
|
2817
|
+
hideCodeInReport: boolean;
|
|
2742
2818
|
hideCode?: boolean | undefined;
|
|
2743
2819
|
hideFromHierarchy?: boolean | undefined;
|
|
2744
2820
|
} | undefined;
|
|
@@ -2761,6 +2837,10 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2761
2837
|
})[] | undefined;
|
|
2762
2838
|
sortOrder?: number | undefined;
|
|
2763
2839
|
}[];
|
|
2840
|
+
options?: {
|
|
2841
|
+
renderDetailedViewInDashboard?: boolean | undefined;
|
|
2842
|
+
dashboardRenderingType?: string | undefined;
|
|
2843
|
+
} | undefined;
|
|
2764
2844
|
result?: any;
|
|
2765
2845
|
certifications?: string[] | undefined;
|
|
2766
2846
|
certificationDefinitions?: ({
|
|
@@ -2871,7 +2951,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2871
2951
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
2872
2952
|
} | undefined;
|
|
2873
2953
|
options?: {
|
|
2874
|
-
hideCode?: boolean | undefined;
|
|
2875
2954
|
excludeFromTargets?: boolean | undefined;
|
|
2876
2955
|
} | undefined;
|
|
2877
2956
|
description?: string | undefined;
|
|
@@ -2909,6 +2988,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2909
2988
|
} | undefined;
|
|
2910
2989
|
options?: {
|
|
2911
2990
|
hideCode?: boolean | undefined;
|
|
2991
|
+
breadcrumbTextFormat?: string | undefined;
|
|
2992
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
2912
2993
|
} | undefined;
|
|
2913
2994
|
description?: string | undefined;
|
|
2914
2995
|
longFormTitle?: string | undefined;
|
|
@@ -2981,7 +3062,11 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2981
3062
|
} | undefined;
|
|
2982
3063
|
options?: {
|
|
2983
3064
|
hideCode?: boolean | undefined;
|
|
3065
|
+
breadcrumbTextFormat?: string | undefined;
|
|
2984
3066
|
hideFromHierarchy?: boolean | undefined;
|
|
3067
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
3068
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
3069
|
+
hideCodeInReport?: boolean | undefined;
|
|
2985
3070
|
} | undefined;
|
|
2986
3071
|
longFormTitle?: string | undefined;
|
|
2987
3072
|
tags?: string[] | undefined;
|
|
@@ -3028,7 +3113,11 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
3028
3113
|
} | undefined;
|
|
3029
3114
|
options?: {
|
|
3030
3115
|
hideCode?: boolean | undefined;
|
|
3116
|
+
breadcrumbTextFormat?: string | undefined;
|
|
3031
3117
|
hideFromHierarchy?: boolean | undefined;
|
|
3118
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
3119
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
3120
|
+
hideCodeInReport?: boolean | undefined;
|
|
3032
3121
|
} | undefined;
|
|
3033
3122
|
longFormTitle?: string | undefined;
|
|
3034
3123
|
tags?: string[] | undefined;
|
|
@@ -3049,6 +3138,10 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
3049
3138
|
})[] | undefined;
|
|
3050
3139
|
sortOrder?: number | undefined;
|
|
3051
3140
|
}[];
|
|
3141
|
+
options?: {
|
|
3142
|
+
renderDetailedViewInDashboard?: boolean | undefined;
|
|
3143
|
+
dashboardRenderingType?: string | undefined;
|
|
3144
|
+
} | undefined;
|
|
3052
3145
|
result?: any;
|
|
3053
3146
|
certifications?: string[] | undefined;
|
|
3054
3147
|
certificationDefinitions?: ({
|
|
@@ -3748,13 +3841,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3748
3841
|
description: z.ZodOptional<z.ZodString>;
|
|
3749
3842
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
3750
3843
|
options: z.ZodOptional<z.ZodObject<{
|
|
3751
|
-
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
3752
3844
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
3753
3845
|
}, "strip", z.ZodTypeAny, {
|
|
3754
|
-
hideCode?: boolean | undefined;
|
|
3755
3846
|
excludeFromTargets?: boolean | undefined;
|
|
3756
3847
|
}, {
|
|
3757
|
-
hideCode?: boolean | undefined;
|
|
3758
3848
|
excludeFromTargets?: boolean | undefined;
|
|
3759
3849
|
}>>;
|
|
3760
3850
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3820,7 +3910,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3820
3910
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
3821
3911
|
} | undefined;
|
|
3822
3912
|
options?: {
|
|
3823
|
-
hideCode?: boolean | undefined;
|
|
3824
3913
|
excludeFromTargets?: boolean | undefined;
|
|
3825
3914
|
} | undefined;
|
|
3826
3915
|
description?: string | undefined;
|
|
@@ -3906,7 +3995,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3906
3995
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
3907
3996
|
} | undefined;
|
|
3908
3997
|
options?: {
|
|
3909
|
-
hideCode?: boolean | undefined;
|
|
3910
3998
|
excludeFromTargets?: boolean | undefined;
|
|
3911
3999
|
} | undefined;
|
|
3912
4000
|
description?: string | undefined;
|
|
@@ -3932,10 +4020,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3932
4020
|
}>>, "many">;
|
|
3933
4021
|
options: z.ZodOptional<z.ZodObject<{
|
|
3934
4022
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
4023
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4024
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3935
4025
|
}, "strip", z.ZodTypeAny, {
|
|
4026
|
+
breadcrumbTextFormat: string;
|
|
4027
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
3936
4028
|
hideCode?: boolean | undefined;
|
|
3937
4029
|
}, {
|
|
3938
4030
|
hideCode?: boolean | undefined;
|
|
4031
|
+
breadcrumbTextFormat?: string | undefined;
|
|
4032
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
3939
4033
|
}>>;
|
|
3940
4034
|
}, "strip", z.ZodTypeAny, {
|
|
3941
4035
|
code: string;
|
|
@@ -4004,7 +4098,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4004
4098
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4005
4099
|
} | undefined;
|
|
4006
4100
|
options?: {
|
|
4007
|
-
hideCode?: boolean | undefined;
|
|
4008
4101
|
excludeFromTargets?: boolean | undefined;
|
|
4009
4102
|
} | undefined;
|
|
4010
4103
|
description?: string | undefined;
|
|
@@ -4041,6 +4134,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4041
4134
|
readOnly?: boolean | undefined;
|
|
4042
4135
|
} | undefined;
|
|
4043
4136
|
options?: {
|
|
4137
|
+
breadcrumbTextFormat: string;
|
|
4138
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
4044
4139
|
hideCode?: boolean | undefined;
|
|
4045
4140
|
} | undefined;
|
|
4046
4141
|
description?: string | undefined;
|
|
@@ -4129,7 +4224,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4129
4224
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4130
4225
|
} | undefined;
|
|
4131
4226
|
options?: {
|
|
4132
|
-
hideCode?: boolean | undefined;
|
|
4133
4227
|
excludeFromTargets?: boolean | undefined;
|
|
4134
4228
|
} | undefined;
|
|
4135
4229
|
description?: string | undefined;
|
|
@@ -4167,6 +4261,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4167
4261
|
} | undefined;
|
|
4168
4262
|
options?: {
|
|
4169
4263
|
hideCode?: boolean | undefined;
|
|
4264
|
+
breadcrumbTextFormat?: string | undefined;
|
|
4265
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
4170
4266
|
} | undefined;
|
|
4171
4267
|
description?: string | undefined;
|
|
4172
4268
|
longFormTitle?: string | undefined;
|
|
@@ -4269,7 +4365,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4269
4365
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4270
4366
|
} | undefined;
|
|
4271
4367
|
options?: {
|
|
4272
|
-
hideCode?: boolean | undefined;
|
|
4273
4368
|
excludeFromTargets?: boolean | undefined;
|
|
4274
4369
|
} | undefined;
|
|
4275
4370
|
description?: string | undefined;
|
|
@@ -4306,6 +4401,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4306
4401
|
readOnly?: boolean | undefined;
|
|
4307
4402
|
} | undefined;
|
|
4308
4403
|
options?: {
|
|
4404
|
+
breadcrumbTextFormat: string;
|
|
4405
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
4309
4406
|
hideCode?: boolean | undefined;
|
|
4310
4407
|
} | undefined;
|
|
4311
4408
|
description?: string | undefined;
|
|
@@ -4435,7 +4532,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4435
4532
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4436
4533
|
} | undefined;
|
|
4437
4534
|
options?: {
|
|
4438
|
-
hideCode?: boolean | undefined;
|
|
4439
4535
|
excludeFromTargets?: boolean | undefined;
|
|
4440
4536
|
} | undefined;
|
|
4441
4537
|
description?: string | undefined;
|
|
@@ -4473,6 +4569,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4473
4569
|
} | undefined;
|
|
4474
4570
|
options?: {
|
|
4475
4571
|
hideCode?: boolean | undefined;
|
|
4572
|
+
breadcrumbTextFormat?: string | undefined;
|
|
4573
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
4476
4574
|
} | undefined;
|
|
4477
4575
|
description?: string | undefined;
|
|
4478
4576
|
longFormTitle?: string | undefined;
|
|
@@ -4534,12 +4632,24 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4534
4632
|
options: z.ZodOptional<z.ZodObject<{
|
|
4535
4633
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
4536
4634
|
hideFromHierarchy: z.ZodOptional<z.ZodBoolean>;
|
|
4635
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4636
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4637
|
+
hideFromDocumentTree: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4638
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4537
4639
|
}, "strip", z.ZodTypeAny, {
|
|
4640
|
+
breadcrumbTextFormat: string;
|
|
4641
|
+
hideFromBreadcrumbs: boolean;
|
|
4642
|
+
hideFromDocumentTree: boolean;
|
|
4643
|
+
hideCodeInReport: boolean;
|
|
4538
4644
|
hideCode?: boolean | undefined;
|
|
4539
4645
|
hideFromHierarchy?: boolean | undefined;
|
|
4540
4646
|
}, {
|
|
4541
4647
|
hideCode?: boolean | undefined;
|
|
4648
|
+
breadcrumbTextFormat?: string | undefined;
|
|
4542
4649
|
hideFromHierarchy?: boolean | undefined;
|
|
4650
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
4651
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
4652
|
+
hideCodeInReport?: boolean | undefined;
|
|
4543
4653
|
}>>;
|
|
4544
4654
|
}, "strip", z.ZodTypeAny, {
|
|
4545
4655
|
code: string;
|
|
@@ -4616,7 +4726,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4616
4726
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4617
4727
|
} | undefined;
|
|
4618
4728
|
options?: {
|
|
4619
|
-
hideCode?: boolean | undefined;
|
|
4620
4729
|
excludeFromTargets?: boolean | undefined;
|
|
4621
4730
|
} | undefined;
|
|
4622
4731
|
description?: string | undefined;
|
|
@@ -4653,6 +4762,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4653
4762
|
readOnly?: boolean | undefined;
|
|
4654
4763
|
} | undefined;
|
|
4655
4764
|
options?: {
|
|
4765
|
+
breadcrumbTextFormat: string;
|
|
4766
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
4656
4767
|
hideCode?: boolean | undefined;
|
|
4657
4768
|
} | undefined;
|
|
4658
4769
|
description?: string | undefined;
|
|
@@ -4725,6 +4836,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4725
4836
|
readOnly?: boolean | undefined;
|
|
4726
4837
|
} | undefined;
|
|
4727
4838
|
options?: {
|
|
4839
|
+
breadcrumbTextFormat: string;
|
|
4840
|
+
hideFromBreadcrumbs: boolean;
|
|
4841
|
+
hideFromDocumentTree: boolean;
|
|
4842
|
+
hideCodeInReport: boolean;
|
|
4728
4843
|
hideCode?: boolean | undefined;
|
|
4729
4844
|
hideFromHierarchy?: boolean | undefined;
|
|
4730
4845
|
} | undefined;
|
|
@@ -4821,7 +4936,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4821
4936
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4822
4937
|
} | undefined;
|
|
4823
4938
|
options?: {
|
|
4824
|
-
hideCode?: boolean | undefined;
|
|
4825
4939
|
excludeFromTargets?: boolean | undefined;
|
|
4826
4940
|
} | undefined;
|
|
4827
4941
|
description?: string | undefined;
|
|
@@ -4859,6 +4973,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4859
4973
|
} | undefined;
|
|
4860
4974
|
options?: {
|
|
4861
4975
|
hideCode?: boolean | undefined;
|
|
4976
|
+
breadcrumbTextFormat?: string | undefined;
|
|
4977
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
4862
4978
|
} | undefined;
|
|
4863
4979
|
description?: string | undefined;
|
|
4864
4980
|
longFormTitle?: string | undefined;
|
|
@@ -4931,7 +5047,11 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4931
5047
|
} | undefined;
|
|
4932
5048
|
options?: {
|
|
4933
5049
|
hideCode?: boolean | undefined;
|
|
5050
|
+
breadcrumbTextFormat?: string | undefined;
|
|
4934
5051
|
hideFromHierarchy?: boolean | undefined;
|
|
5052
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
5053
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
5054
|
+
hideCodeInReport?: boolean | undefined;
|
|
4935
5055
|
} | undefined;
|
|
4936
5056
|
longFormTitle?: string | undefined;
|
|
4937
5057
|
tags?: string[] | undefined;
|
|
@@ -4955,12 +5075,24 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4955
5075
|
options: z.ZodOptional<z.ZodObject<{
|
|
4956
5076
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
4957
5077
|
hideFromHierarchy: z.ZodOptional<z.ZodBoolean>;
|
|
5078
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5079
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5080
|
+
hideFromDocumentTree: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5081
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4958
5082
|
}, "strip", z.ZodTypeAny, {
|
|
5083
|
+
breadcrumbTextFormat: string;
|
|
5084
|
+
hideFromBreadcrumbs: boolean;
|
|
5085
|
+
hideFromDocumentTree: boolean;
|
|
5086
|
+
hideCodeInReport: boolean;
|
|
4959
5087
|
hideCode?: boolean | undefined;
|
|
4960
5088
|
hideFromHierarchy?: boolean | undefined;
|
|
4961
5089
|
}, {
|
|
4962
5090
|
hideCode?: boolean | undefined;
|
|
5091
|
+
breadcrumbTextFormat?: string | undefined;
|
|
4963
5092
|
hideFromHierarchy?: boolean | undefined;
|
|
5093
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
5094
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
5095
|
+
hideCodeInReport?: boolean | undefined;
|
|
4964
5096
|
}>>;
|
|
4965
5097
|
}, "strip", z.ZodTypeAny, {
|
|
4966
5098
|
code: string;
|
|
@@ -5041,7 +5173,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5041
5173
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
5042
5174
|
} | undefined;
|
|
5043
5175
|
options?: {
|
|
5044
|
-
hideCode?: boolean | undefined;
|
|
5045
5176
|
excludeFromTargets?: boolean | undefined;
|
|
5046
5177
|
} | undefined;
|
|
5047
5178
|
description?: string | undefined;
|
|
@@ -5078,6 +5209,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5078
5209
|
readOnly?: boolean | undefined;
|
|
5079
5210
|
} | undefined;
|
|
5080
5211
|
options?: {
|
|
5212
|
+
breadcrumbTextFormat: string;
|
|
5213
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
5081
5214
|
hideCode?: boolean | undefined;
|
|
5082
5215
|
} | undefined;
|
|
5083
5216
|
description?: string | undefined;
|
|
@@ -5150,6 +5283,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5150
5283
|
readOnly?: boolean | undefined;
|
|
5151
5284
|
} | undefined;
|
|
5152
5285
|
options?: {
|
|
5286
|
+
breadcrumbTextFormat: string;
|
|
5287
|
+
hideFromBreadcrumbs: boolean;
|
|
5288
|
+
hideFromDocumentTree: boolean;
|
|
5289
|
+
hideCodeInReport: boolean;
|
|
5153
5290
|
hideCode?: boolean | undefined;
|
|
5154
5291
|
hideFromHierarchy?: boolean | undefined;
|
|
5155
5292
|
} | undefined;
|
|
@@ -5197,6 +5334,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5197
5334
|
};
|
|
5198
5335
|
} | undefined;
|
|
5199
5336
|
options?: {
|
|
5337
|
+
breadcrumbTextFormat: string;
|
|
5338
|
+
hideFromBreadcrumbs: boolean;
|
|
5339
|
+
hideFromDocumentTree: boolean;
|
|
5340
|
+
hideCodeInReport: boolean;
|
|
5200
5341
|
hideCode?: boolean | undefined;
|
|
5201
5342
|
hideFromHierarchy?: boolean | undefined;
|
|
5202
5343
|
} | undefined;
|
|
@@ -5297,7 +5438,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5297
5438
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
5298
5439
|
} | undefined;
|
|
5299
5440
|
options?: {
|
|
5300
|
-
hideCode?: boolean | undefined;
|
|
5301
5441
|
excludeFromTargets?: boolean | undefined;
|
|
5302
5442
|
} | undefined;
|
|
5303
5443
|
description?: string | undefined;
|
|
@@ -5335,6 +5475,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5335
5475
|
} | undefined;
|
|
5336
5476
|
options?: {
|
|
5337
5477
|
hideCode?: boolean | undefined;
|
|
5478
|
+
breadcrumbTextFormat?: string | undefined;
|
|
5479
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
5338
5480
|
} | undefined;
|
|
5339
5481
|
description?: string | undefined;
|
|
5340
5482
|
longFormTitle?: string | undefined;
|
|
@@ -5407,7 +5549,11 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5407
5549
|
} | undefined;
|
|
5408
5550
|
options?: {
|
|
5409
5551
|
hideCode?: boolean | undefined;
|
|
5552
|
+
breadcrumbTextFormat?: string | undefined;
|
|
5410
5553
|
hideFromHierarchy?: boolean | undefined;
|
|
5554
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
5555
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
5556
|
+
hideCodeInReport?: boolean | undefined;
|
|
5411
5557
|
} | undefined;
|
|
5412
5558
|
longFormTitle?: string | undefined;
|
|
5413
5559
|
tags?: string[] | undefined;
|
|
@@ -5454,7 +5600,11 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5454
5600
|
} | undefined;
|
|
5455
5601
|
options?: {
|
|
5456
5602
|
hideCode?: boolean | undefined;
|
|
5603
|
+
breadcrumbTextFormat?: string | undefined;
|
|
5457
5604
|
hideFromHierarchy?: boolean | undefined;
|
|
5605
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
5606
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
5607
|
+
hideCodeInReport?: boolean | undefined;
|
|
5458
5608
|
} | undefined;
|
|
5459
5609
|
longFormTitle?: string | undefined;
|
|
5460
5610
|
tags?: string[] | undefined;
|
|
@@ -6005,13 +6155,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6005
6155
|
description: z.ZodOptional<z.ZodString>;
|
|
6006
6156
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
6007
6157
|
options: z.ZodOptional<z.ZodObject<{
|
|
6008
|
-
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
6009
6158
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
6010
6159
|
}, "strip", z.ZodTypeAny, {
|
|
6011
|
-
hideCode?: boolean | undefined;
|
|
6012
6160
|
excludeFromTargets?: boolean | undefined;
|
|
6013
6161
|
}, {
|
|
6014
|
-
hideCode?: boolean | undefined;
|
|
6015
6162
|
excludeFromTargets?: boolean | undefined;
|
|
6016
6163
|
}>>;
|
|
6017
6164
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6077,7 +6224,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6077
6224
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6078
6225
|
} | undefined;
|
|
6079
6226
|
options?: {
|
|
6080
|
-
hideCode?: boolean | undefined;
|
|
6081
6227
|
excludeFromTargets?: boolean | undefined;
|
|
6082
6228
|
} | undefined;
|
|
6083
6229
|
description?: string | undefined;
|
|
@@ -6163,7 +6309,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6163
6309
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6164
6310
|
} | undefined;
|
|
6165
6311
|
options?: {
|
|
6166
|
-
hideCode?: boolean | undefined;
|
|
6167
6312
|
excludeFromTargets?: boolean | undefined;
|
|
6168
6313
|
} | undefined;
|
|
6169
6314
|
description?: string | undefined;
|
|
@@ -6189,10 +6334,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6189
6334
|
}>>, "many">;
|
|
6190
6335
|
options: z.ZodOptional<z.ZodObject<{
|
|
6191
6336
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
6337
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6338
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6192
6339
|
}, "strip", z.ZodTypeAny, {
|
|
6340
|
+
breadcrumbTextFormat: string;
|
|
6341
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
6193
6342
|
hideCode?: boolean | undefined;
|
|
6194
6343
|
}, {
|
|
6195
6344
|
hideCode?: boolean | undefined;
|
|
6345
|
+
breadcrumbTextFormat?: string | undefined;
|
|
6346
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
6196
6347
|
}>>;
|
|
6197
6348
|
}, "strip", z.ZodTypeAny, {
|
|
6198
6349
|
code: string;
|
|
@@ -6261,7 +6412,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6261
6412
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6262
6413
|
} | undefined;
|
|
6263
6414
|
options?: {
|
|
6264
|
-
hideCode?: boolean | undefined;
|
|
6265
6415
|
excludeFromTargets?: boolean | undefined;
|
|
6266
6416
|
} | undefined;
|
|
6267
6417
|
description?: string | undefined;
|
|
@@ -6298,6 +6448,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6298
6448
|
readOnly?: boolean | undefined;
|
|
6299
6449
|
} | undefined;
|
|
6300
6450
|
options?: {
|
|
6451
|
+
breadcrumbTextFormat: string;
|
|
6452
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
6301
6453
|
hideCode?: boolean | undefined;
|
|
6302
6454
|
} | undefined;
|
|
6303
6455
|
description?: string | undefined;
|
|
@@ -6386,7 +6538,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6386
6538
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6387
6539
|
} | undefined;
|
|
6388
6540
|
options?: {
|
|
6389
|
-
hideCode?: boolean | undefined;
|
|
6390
6541
|
excludeFromTargets?: boolean | undefined;
|
|
6391
6542
|
} | undefined;
|
|
6392
6543
|
description?: string | undefined;
|
|
@@ -6424,6 +6575,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6424
6575
|
} | undefined;
|
|
6425
6576
|
options?: {
|
|
6426
6577
|
hideCode?: boolean | undefined;
|
|
6578
|
+
breadcrumbTextFormat?: string | undefined;
|
|
6579
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
6427
6580
|
} | undefined;
|
|
6428
6581
|
description?: string | undefined;
|
|
6429
6582
|
longFormTitle?: string | undefined;
|
|
@@ -6526,7 +6679,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6526
6679
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6527
6680
|
} | undefined;
|
|
6528
6681
|
options?: {
|
|
6529
|
-
hideCode?: boolean | undefined;
|
|
6530
6682
|
excludeFromTargets?: boolean | undefined;
|
|
6531
6683
|
} | undefined;
|
|
6532
6684
|
description?: string | undefined;
|
|
@@ -6563,6 +6715,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6563
6715
|
readOnly?: boolean | undefined;
|
|
6564
6716
|
} | undefined;
|
|
6565
6717
|
options?: {
|
|
6718
|
+
breadcrumbTextFormat: string;
|
|
6719
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
6566
6720
|
hideCode?: boolean | undefined;
|
|
6567
6721
|
} | undefined;
|
|
6568
6722
|
description?: string | undefined;
|
|
@@ -6692,7 +6846,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6692
6846
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6693
6847
|
} | undefined;
|
|
6694
6848
|
options?: {
|
|
6695
|
-
hideCode?: boolean | undefined;
|
|
6696
6849
|
excludeFromTargets?: boolean | undefined;
|
|
6697
6850
|
} | undefined;
|
|
6698
6851
|
description?: string | undefined;
|
|
@@ -6730,6 +6883,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6730
6883
|
} | undefined;
|
|
6731
6884
|
options?: {
|
|
6732
6885
|
hideCode?: boolean | undefined;
|
|
6886
|
+
breadcrumbTextFormat?: string | undefined;
|
|
6887
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
6733
6888
|
} | undefined;
|
|
6734
6889
|
description?: string | undefined;
|
|
6735
6890
|
longFormTitle?: string | undefined;
|
|
@@ -6791,12 +6946,24 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6791
6946
|
options: z.ZodOptional<z.ZodObject<{
|
|
6792
6947
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
6793
6948
|
hideFromHierarchy: z.ZodOptional<z.ZodBoolean>;
|
|
6949
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6950
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6951
|
+
hideFromDocumentTree: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6952
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6794
6953
|
}, "strip", z.ZodTypeAny, {
|
|
6954
|
+
breadcrumbTextFormat: string;
|
|
6955
|
+
hideFromBreadcrumbs: boolean;
|
|
6956
|
+
hideFromDocumentTree: boolean;
|
|
6957
|
+
hideCodeInReport: boolean;
|
|
6795
6958
|
hideCode?: boolean | undefined;
|
|
6796
6959
|
hideFromHierarchy?: boolean | undefined;
|
|
6797
6960
|
}, {
|
|
6798
6961
|
hideCode?: boolean | undefined;
|
|
6962
|
+
breadcrumbTextFormat?: string | undefined;
|
|
6799
6963
|
hideFromHierarchy?: boolean | undefined;
|
|
6964
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
6965
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
6966
|
+
hideCodeInReport?: boolean | undefined;
|
|
6800
6967
|
}>>;
|
|
6801
6968
|
}, "strip", z.ZodTypeAny, {
|
|
6802
6969
|
code: string;
|
|
@@ -6873,7 +7040,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6873
7040
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6874
7041
|
} | undefined;
|
|
6875
7042
|
options?: {
|
|
6876
|
-
hideCode?: boolean | undefined;
|
|
6877
7043
|
excludeFromTargets?: boolean | undefined;
|
|
6878
7044
|
} | undefined;
|
|
6879
7045
|
description?: string | undefined;
|
|
@@ -6910,6 +7076,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6910
7076
|
readOnly?: boolean | undefined;
|
|
6911
7077
|
} | undefined;
|
|
6912
7078
|
options?: {
|
|
7079
|
+
breadcrumbTextFormat: string;
|
|
7080
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
6913
7081
|
hideCode?: boolean | undefined;
|
|
6914
7082
|
} | undefined;
|
|
6915
7083
|
description?: string | undefined;
|
|
@@ -6982,6 +7150,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6982
7150
|
readOnly?: boolean | undefined;
|
|
6983
7151
|
} | undefined;
|
|
6984
7152
|
options?: {
|
|
7153
|
+
breadcrumbTextFormat: string;
|
|
7154
|
+
hideFromBreadcrumbs: boolean;
|
|
7155
|
+
hideFromDocumentTree: boolean;
|
|
7156
|
+
hideCodeInReport: boolean;
|
|
6985
7157
|
hideCode?: boolean | undefined;
|
|
6986
7158
|
hideFromHierarchy?: boolean | undefined;
|
|
6987
7159
|
} | undefined;
|
|
@@ -7078,7 +7250,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7078
7250
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
7079
7251
|
} | undefined;
|
|
7080
7252
|
options?: {
|
|
7081
|
-
hideCode?: boolean | undefined;
|
|
7082
7253
|
excludeFromTargets?: boolean | undefined;
|
|
7083
7254
|
} | undefined;
|
|
7084
7255
|
description?: string | undefined;
|
|
@@ -7116,6 +7287,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7116
7287
|
} | undefined;
|
|
7117
7288
|
options?: {
|
|
7118
7289
|
hideCode?: boolean | undefined;
|
|
7290
|
+
breadcrumbTextFormat?: string | undefined;
|
|
7291
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
7119
7292
|
} | undefined;
|
|
7120
7293
|
description?: string | undefined;
|
|
7121
7294
|
longFormTitle?: string | undefined;
|
|
@@ -7188,7 +7361,11 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7188
7361
|
} | undefined;
|
|
7189
7362
|
options?: {
|
|
7190
7363
|
hideCode?: boolean | undefined;
|
|
7364
|
+
breadcrumbTextFormat?: string | undefined;
|
|
7191
7365
|
hideFromHierarchy?: boolean | undefined;
|
|
7366
|
+
hideFromBreadcrumbs?: boolean | undefined;
|
|
7367
|
+
hideFromDocumentTree?: boolean | undefined;
|
|
7368
|
+
hideCodeInReport?: boolean | undefined;
|
|
7192
7369
|
} | undefined;
|
|
7193
7370
|
longFormTitle?: string | undefined;
|
|
7194
7371
|
tags?: string[] | undefined;
|
|
@@ -7651,13 +7828,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7651
7828
|
description: z.ZodOptional<z.ZodString>;
|
|
7652
7829
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
7653
7830
|
options: z.ZodOptional<z.ZodObject<{
|
|
7654
|
-
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
7655
7831
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
7656
7832
|
}, "strip", z.ZodTypeAny, {
|
|
7657
|
-
hideCode?: boolean | undefined;
|
|
7658
7833
|
excludeFromTargets?: boolean | undefined;
|
|
7659
7834
|
}, {
|
|
7660
|
-
hideCode?: boolean | undefined;
|
|
7661
7835
|
excludeFromTargets?: boolean | undefined;
|
|
7662
7836
|
}>>;
|
|
7663
7837
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7723,7 +7897,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7723
7897
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
7724
7898
|
} | undefined;
|
|
7725
7899
|
options?: {
|
|
7726
|
-
hideCode?: boolean | undefined;
|
|
7727
7900
|
excludeFromTargets?: boolean | undefined;
|
|
7728
7901
|
} | undefined;
|
|
7729
7902
|
description?: string | undefined;
|
|
@@ -7809,7 +7982,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7809
7982
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
7810
7983
|
} | undefined;
|
|
7811
7984
|
options?: {
|
|
7812
|
-
hideCode?: boolean | undefined;
|
|
7813
7985
|
excludeFromTargets?: boolean | undefined;
|
|
7814
7986
|
} | undefined;
|
|
7815
7987
|
description?: string | undefined;
|
|
@@ -7835,10 +8007,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7835
8007
|
}>>, "many">;
|
|
7836
8008
|
options: z.ZodOptional<z.ZodObject<{
|
|
7837
8009
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
8010
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8011
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7838
8012
|
}, "strip", z.ZodTypeAny, {
|
|
8013
|
+
breadcrumbTextFormat: string;
|
|
8014
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
7839
8015
|
hideCode?: boolean | undefined;
|
|
7840
8016
|
}, {
|
|
7841
8017
|
hideCode?: boolean | undefined;
|
|
8018
|
+
breadcrumbTextFormat?: string | undefined;
|
|
8019
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
7842
8020
|
}>>;
|
|
7843
8021
|
}, "strip", z.ZodTypeAny, {
|
|
7844
8022
|
code: string;
|
|
@@ -7907,7 +8085,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7907
8085
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
7908
8086
|
} | undefined;
|
|
7909
8087
|
options?: {
|
|
7910
|
-
hideCode?: boolean | undefined;
|
|
7911
8088
|
excludeFromTargets?: boolean | undefined;
|
|
7912
8089
|
} | undefined;
|
|
7913
8090
|
description?: string | undefined;
|
|
@@ -7944,6 +8121,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7944
8121
|
readOnly?: boolean | undefined;
|
|
7945
8122
|
} | undefined;
|
|
7946
8123
|
options?: {
|
|
8124
|
+
breadcrumbTextFormat: string;
|
|
8125
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
7947
8126
|
hideCode?: boolean | undefined;
|
|
7948
8127
|
} | undefined;
|
|
7949
8128
|
description?: string | undefined;
|
|
@@ -8032,7 +8211,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8032
8211
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8033
8212
|
} | undefined;
|
|
8034
8213
|
options?: {
|
|
8035
|
-
hideCode?: boolean | undefined;
|
|
8036
8214
|
excludeFromTargets?: boolean | undefined;
|
|
8037
8215
|
} | undefined;
|
|
8038
8216
|
description?: string | undefined;
|
|
@@ -8070,6 +8248,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8070
8248
|
} | undefined;
|
|
8071
8249
|
options?: {
|
|
8072
8250
|
hideCode?: boolean | undefined;
|
|
8251
|
+
breadcrumbTextFormat?: string | undefined;
|
|
8252
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
8073
8253
|
} | undefined;
|
|
8074
8254
|
description?: string | undefined;
|
|
8075
8255
|
longFormTitle?: string | undefined;
|
|
@@ -8172,7 +8352,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8172
8352
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8173
8353
|
} | undefined;
|
|
8174
8354
|
options?: {
|
|
8175
|
-
hideCode?: boolean | undefined;
|
|
8176
8355
|
excludeFromTargets?: boolean | undefined;
|
|
8177
8356
|
} | undefined;
|
|
8178
8357
|
description?: string | undefined;
|
|
@@ -8209,6 +8388,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8209
8388
|
readOnly?: boolean | undefined;
|
|
8210
8389
|
} | undefined;
|
|
8211
8390
|
options?: {
|
|
8391
|
+
breadcrumbTextFormat: string;
|
|
8392
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
8212
8393
|
hideCode?: boolean | undefined;
|
|
8213
8394
|
} | undefined;
|
|
8214
8395
|
description?: string | undefined;
|
|
@@ -8338,7 +8519,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8338
8519
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8339
8520
|
} | undefined;
|
|
8340
8521
|
options?: {
|
|
8341
|
-
hideCode?: boolean | undefined;
|
|
8342
8522
|
excludeFromTargets?: boolean | undefined;
|
|
8343
8523
|
} | undefined;
|
|
8344
8524
|
description?: string | undefined;
|
|
@@ -8376,6 +8556,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8376
8556
|
} | undefined;
|
|
8377
8557
|
options?: {
|
|
8378
8558
|
hideCode?: boolean | undefined;
|
|
8559
|
+
breadcrumbTextFormat?: string | undefined;
|
|
8560
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
8379
8561
|
} | undefined;
|
|
8380
8562
|
description?: string | undefined;
|
|
8381
8563
|
longFormTitle?: string | undefined;
|
|
@@ -8786,13 +8968,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8786
8968
|
description: z.ZodOptional<z.ZodString>;
|
|
8787
8969
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
8788
8970
|
options: z.ZodOptional<z.ZodObject<{
|
|
8789
|
-
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
8790
8971
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
8791
8972
|
}, "strip", z.ZodTypeAny, {
|
|
8792
|
-
hideCode?: boolean | undefined;
|
|
8793
8973
|
excludeFromTargets?: boolean | undefined;
|
|
8794
8974
|
}, {
|
|
8795
|
-
hideCode?: boolean | undefined;
|
|
8796
8975
|
excludeFromTargets?: boolean | undefined;
|
|
8797
8976
|
}>>;
|
|
8798
8977
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8858,7 +9037,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8858
9037
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8859
9038
|
} | undefined;
|
|
8860
9039
|
options?: {
|
|
8861
|
-
hideCode?: boolean | undefined;
|
|
8862
9040
|
excludeFromTargets?: boolean | undefined;
|
|
8863
9041
|
} | undefined;
|
|
8864
9042
|
description?: string | undefined;
|
|
@@ -8944,7 +9122,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8944
9122
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8945
9123
|
} | undefined;
|
|
8946
9124
|
options?: {
|
|
8947
|
-
hideCode?: boolean | undefined;
|
|
8948
9125
|
excludeFromTargets?: boolean | undefined;
|
|
8949
9126
|
} | undefined;
|
|
8950
9127
|
description?: string | undefined;
|
|
@@ -8970,10 +9147,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8970
9147
|
}>>, "many">;
|
|
8971
9148
|
options: z.ZodOptional<z.ZodObject<{
|
|
8972
9149
|
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
9150
|
+
breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9151
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8973
9152
|
}, "strip", z.ZodTypeAny, {
|
|
9153
|
+
breadcrumbTextFormat: string;
|
|
9154
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
8974
9155
|
hideCode?: boolean | undefined;
|
|
8975
9156
|
}, {
|
|
8976
9157
|
hideCode?: boolean | undefined;
|
|
9158
|
+
breadcrumbTextFormat?: string | undefined;
|
|
9159
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
8977
9160
|
}>>;
|
|
8978
9161
|
}, "strip", z.ZodTypeAny, {
|
|
8979
9162
|
code: string;
|
|
@@ -9042,7 +9225,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9042
9225
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9043
9226
|
} | undefined;
|
|
9044
9227
|
options?: {
|
|
9045
|
-
hideCode?: boolean | undefined;
|
|
9046
9228
|
excludeFromTargets?: boolean | undefined;
|
|
9047
9229
|
} | undefined;
|
|
9048
9230
|
description?: string | undefined;
|
|
@@ -9079,6 +9261,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9079
9261
|
readOnly?: boolean | undefined;
|
|
9080
9262
|
} | undefined;
|
|
9081
9263
|
options?: {
|
|
9264
|
+
breadcrumbTextFormat: string;
|
|
9265
|
+
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
9082
9266
|
hideCode?: boolean | undefined;
|
|
9083
9267
|
} | undefined;
|
|
9084
9268
|
description?: string | undefined;
|
|
@@ -9167,7 +9351,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9167
9351
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9168
9352
|
} | undefined;
|
|
9169
9353
|
options?: {
|
|
9170
|
-
hideCode?: boolean | undefined;
|
|
9171
9354
|
excludeFromTargets?: boolean | undefined;
|
|
9172
9355
|
} | undefined;
|
|
9173
9356
|
description?: string | undefined;
|
|
@@ -9205,6 +9388,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9205
9388
|
} | undefined;
|
|
9206
9389
|
options?: {
|
|
9207
9390
|
hideCode?: boolean | undefined;
|
|
9391
|
+
breadcrumbTextFormat?: string | undefined;
|
|
9392
|
+
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
9208
9393
|
} | undefined;
|
|
9209
9394
|
description?: string | undefined;
|
|
9210
9395
|
longFormTitle?: string | undefined;
|
|
@@ -9489,13 +9674,10 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9489
9674
|
description: z.ZodOptional<z.ZodString>;
|
|
9490
9675
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
9491
9676
|
options: z.ZodOptional<z.ZodObject<{
|
|
9492
|
-
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
9493
9677
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
9494
9678
|
}, "strip", z.ZodTypeAny, {
|
|
9495
|
-
hideCode?: boolean | undefined;
|
|
9496
9679
|
excludeFromTargets?: boolean | undefined;
|
|
9497
9680
|
}, {
|
|
9498
|
-
hideCode?: boolean | undefined;
|
|
9499
9681
|
excludeFromTargets?: boolean | undefined;
|
|
9500
9682
|
}>>;
|
|
9501
9683
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9561,7 +9743,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9561
9743
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9562
9744
|
} | undefined;
|
|
9563
9745
|
options?: {
|
|
9564
|
-
hideCode?: boolean | undefined;
|
|
9565
9746
|
excludeFromTargets?: boolean | undefined;
|
|
9566
9747
|
} | undefined;
|
|
9567
9748
|
description?: string | undefined;
|
|
@@ -9647,7 +9828,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9647
9828
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9648
9829
|
} | undefined;
|
|
9649
9830
|
options?: {
|
|
9650
|
-
hideCode?: boolean | undefined;
|
|
9651
9831
|
excludeFromTargets?: boolean | undefined;
|
|
9652
9832
|
} | undefined;
|
|
9653
9833
|
description?: string | undefined;
|