@openframe-org/criteria-set-protocol 2.2.12 → 2.2.13
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 +7 -0
- package/dist/v1/schemas/common.js +8 -1
- package/dist/v1/schemas/criteria-tree.d.ts +192 -36
- package/dist/v1/schemas/criterion.d.ts +39 -5
- package/dist/v1/schemas/criterion.js +1 -0
- package/dist/v1/schemas/task-group.d.ts +15 -1
- package/dist/v1/schemas/task.d.ts +18 -2
- package/dist/v1/schemas/task.js +1 -0
- package/dist/v1/schemas/theme.d.ts +66 -14
- package/dist/v1/schemas/theme.js +1 -0
- package/package.json +1 -1
|
@@ -914,7 +914,7 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
914
914
|
})[] | undefined;
|
|
915
915
|
sortOrder?: number | undefined;
|
|
916
916
|
}>>, "many">;
|
|
917
|
-
options: z.ZodIntersection<z.ZodObject<{
|
|
917
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
918
918
|
breadcrumbTextFormat: z.ZodString;
|
|
919
919
|
documentTreeFolderTextFormat: z.ZodString;
|
|
920
920
|
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -932,6 +932,12 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
932
932
|
criteriaTreeElementTextFormat: string;
|
|
933
933
|
}, {
|
|
934
934
|
criteriaTreeElementTextFormat: string;
|
|
935
|
+
}>>, z.ZodObject<{
|
|
936
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
937
|
+
}, "strip", z.ZodTypeAny, {
|
|
938
|
+
reportTextFormat?: string | undefined;
|
|
939
|
+
}, {
|
|
940
|
+
reportTextFormat?: string | undefined;
|
|
935
941
|
}>>;
|
|
936
942
|
}, "strip", z.ZodTypeAny, {
|
|
937
943
|
code: string;
|
|
@@ -943,6 +949,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
943
949
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
944
950
|
} & {
|
|
945
951
|
criteriaTreeElementTextFormat: string;
|
|
952
|
+
} & {
|
|
953
|
+
reportTextFormat?: string | undefined;
|
|
946
954
|
};
|
|
947
955
|
items: {
|
|
948
956
|
code: string;
|
|
@@ -1069,6 +1077,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1069
1077
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1070
1078
|
} & {
|
|
1071
1079
|
criteriaTreeElementTextFormat: string;
|
|
1080
|
+
} & {
|
|
1081
|
+
reportTextFormat?: string | undefined;
|
|
1072
1082
|
};
|
|
1073
1083
|
items: {
|
|
1074
1084
|
code: string;
|
|
@@ -1200,6 +1210,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1200
1210
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
1201
1211
|
} & {
|
|
1202
1212
|
criteriaTreeElementTextFormat: string;
|
|
1213
|
+
} & {
|
|
1214
|
+
reportTextFormat?: string | undefined;
|
|
1203
1215
|
};
|
|
1204
1216
|
items: {
|
|
1205
1217
|
code: string;
|
|
@@ -1361,6 +1373,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1361
1373
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1362
1374
|
} & {
|
|
1363
1375
|
criteriaTreeElementTextFormat: string;
|
|
1376
|
+
} & {
|
|
1377
|
+
reportTextFormat?: string | undefined;
|
|
1364
1378
|
};
|
|
1365
1379
|
items: {
|
|
1366
1380
|
code: string;
|
|
@@ -1509,7 +1523,7 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1509
1523
|
sortOrder?: number | undefined;
|
|
1510
1524
|
category?: string | undefined;
|
|
1511
1525
|
}>>, "many">;
|
|
1512
|
-
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1526
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1513
1527
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1514
1528
|
}, "strip", z.ZodTypeAny, {
|
|
1515
1529
|
hideCodeInReport: boolean;
|
|
@@ -1557,12 +1571,18 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1557
1571
|
criteriaTreeElementTextFormat: string;
|
|
1558
1572
|
}, {
|
|
1559
1573
|
criteriaTreeElementTextFormat: string;
|
|
1574
|
+
}>>, z.ZodObject<{
|
|
1575
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
1576
|
+
}, "strip", z.ZodTypeAny, {
|
|
1577
|
+
reportTextFormat?: string | undefined;
|
|
1578
|
+
}, {
|
|
1579
|
+
reportTextFormat?: string | undefined;
|
|
1560
1580
|
}>>;
|
|
1561
1581
|
}, "strip", z.ZodTypeAny, {
|
|
1562
1582
|
code: string;
|
|
1563
1583
|
type: "criterion";
|
|
1564
1584
|
title: string;
|
|
1565
|
-
options: (({
|
|
1585
|
+
options: ((({
|
|
1566
1586
|
hideCodeInReport: boolean;
|
|
1567
1587
|
} & ({
|
|
1568
1588
|
hideFromBreadcrumbs: true;
|
|
@@ -1578,6 +1598,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1578
1598
|
hideFromDocumentTree?: false | undefined;
|
|
1579
1599
|
})) & {
|
|
1580
1600
|
criteriaTreeElementTextFormat: string;
|
|
1601
|
+
}) & {
|
|
1602
|
+
reportTextFormat?: string | undefined;
|
|
1581
1603
|
};
|
|
1582
1604
|
items: {
|
|
1583
1605
|
code: string;
|
|
@@ -1593,6 +1615,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1593
1615
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
1594
1616
|
} & {
|
|
1595
1617
|
criteriaTreeElementTextFormat: string;
|
|
1618
|
+
} & {
|
|
1619
|
+
reportTextFormat?: string | undefined;
|
|
1596
1620
|
};
|
|
1597
1621
|
items: {
|
|
1598
1622
|
code: string;
|
|
@@ -1773,7 +1797,7 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1773
1797
|
code: string;
|
|
1774
1798
|
type: "criterion";
|
|
1775
1799
|
title: string;
|
|
1776
|
-
options: (({
|
|
1800
|
+
options: ((({
|
|
1777
1801
|
hideCodeInReport?: boolean | undefined;
|
|
1778
1802
|
} & ({
|
|
1779
1803
|
hideFromBreadcrumbs: true;
|
|
@@ -1789,6 +1813,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1789
1813
|
hideFromDocumentTree?: false | undefined;
|
|
1790
1814
|
})) & {
|
|
1791
1815
|
criteriaTreeElementTextFormat: string;
|
|
1816
|
+
}) & {
|
|
1817
|
+
reportTextFormat?: string | undefined;
|
|
1792
1818
|
};
|
|
1793
1819
|
items: {
|
|
1794
1820
|
code: string;
|
|
@@ -1804,6 +1830,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1804
1830
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1805
1831
|
} & {
|
|
1806
1832
|
criteriaTreeElementTextFormat: string;
|
|
1833
|
+
} & {
|
|
1834
|
+
reportTextFormat?: string | undefined;
|
|
1807
1835
|
};
|
|
1808
1836
|
items: {
|
|
1809
1837
|
code: string;
|
|
@@ -1981,7 +2009,7 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1981
2009
|
})[] | undefined;
|
|
1982
2010
|
sortOrder?: number | undefined;
|
|
1983
2011
|
}>, "many">;
|
|
1984
|
-
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2012
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1985
2013
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1986
2014
|
}, "strip", z.ZodTypeAny, {
|
|
1987
2015
|
hideCodeInReport: boolean;
|
|
@@ -2023,12 +2051,18 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2023
2051
|
}, {
|
|
2024
2052
|
documentTreeFolderTextFormat: string;
|
|
2025
2053
|
hideFromDocumentTree?: false | undefined;
|
|
2026
|
-
}>]
|
|
2054
|
+
}>]>>, z.ZodObject<{
|
|
2055
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
2056
|
+
}, "strip", z.ZodTypeAny, {
|
|
2057
|
+
reportTextFormat?: string | undefined;
|
|
2058
|
+
}, {
|
|
2059
|
+
reportTextFormat?: string | undefined;
|
|
2060
|
+
}>>;
|
|
2027
2061
|
}, "strip", z.ZodTypeAny, {
|
|
2028
2062
|
code: string;
|
|
2029
2063
|
type: "theme";
|
|
2030
2064
|
title: string;
|
|
2031
|
-
options: ({
|
|
2065
|
+
options: (({
|
|
2032
2066
|
hideCodeInReport: boolean;
|
|
2033
2067
|
} & ({
|
|
2034
2068
|
hideFromBreadcrumbs: true;
|
|
@@ -2042,12 +2076,14 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2042
2076
|
} | {
|
|
2043
2077
|
documentTreeFolderTextFormat: string;
|
|
2044
2078
|
hideFromDocumentTree?: false | undefined;
|
|
2045
|
-
})
|
|
2079
|
+
})) & {
|
|
2080
|
+
reportTextFormat?: string | undefined;
|
|
2081
|
+
};
|
|
2046
2082
|
items: {
|
|
2047
2083
|
code: string;
|
|
2048
2084
|
type: "criterion";
|
|
2049
2085
|
title: string;
|
|
2050
|
-
options: (({
|
|
2086
|
+
options: ((({
|
|
2051
2087
|
hideCodeInReport: boolean;
|
|
2052
2088
|
} & ({
|
|
2053
2089
|
hideFromBreadcrumbs: true;
|
|
@@ -2063,6 +2099,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2063
2099
|
hideFromDocumentTree?: false | undefined;
|
|
2064
2100
|
})) & {
|
|
2065
2101
|
criteriaTreeElementTextFormat: string;
|
|
2102
|
+
}) & {
|
|
2103
|
+
reportTextFormat?: string | undefined;
|
|
2066
2104
|
};
|
|
2067
2105
|
items: {
|
|
2068
2106
|
code: string;
|
|
@@ -2078,6 +2116,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2078
2116
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
2079
2117
|
} & {
|
|
2080
2118
|
criteriaTreeElementTextFormat: string;
|
|
2119
|
+
} & {
|
|
2120
|
+
reportTextFormat?: string | undefined;
|
|
2081
2121
|
};
|
|
2082
2122
|
items: {
|
|
2083
2123
|
code: string;
|
|
@@ -2299,7 +2339,7 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2299
2339
|
code: string;
|
|
2300
2340
|
type: "theme";
|
|
2301
2341
|
title: string;
|
|
2302
|
-
options: ({
|
|
2342
|
+
options: (({
|
|
2303
2343
|
hideCodeInReport?: boolean | undefined;
|
|
2304
2344
|
} & ({
|
|
2305
2345
|
hideFromBreadcrumbs: true;
|
|
@@ -2313,12 +2353,14 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2313
2353
|
} | {
|
|
2314
2354
|
documentTreeFolderTextFormat: string;
|
|
2315
2355
|
hideFromDocumentTree?: false | undefined;
|
|
2316
|
-
})
|
|
2356
|
+
})) & {
|
|
2357
|
+
reportTextFormat?: string | undefined;
|
|
2358
|
+
};
|
|
2317
2359
|
items: {
|
|
2318
2360
|
code: string;
|
|
2319
2361
|
type: "criterion";
|
|
2320
2362
|
title: string;
|
|
2321
|
-
options: (({
|
|
2363
|
+
options: ((({
|
|
2322
2364
|
hideCodeInReport?: boolean | undefined;
|
|
2323
2365
|
} & ({
|
|
2324
2366
|
hideFromBreadcrumbs: true;
|
|
@@ -2334,6 +2376,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2334
2376
|
hideFromDocumentTree?: false | undefined;
|
|
2335
2377
|
})) & {
|
|
2336
2378
|
criteriaTreeElementTextFormat: string;
|
|
2379
|
+
}) & {
|
|
2380
|
+
reportTextFormat?: string | undefined;
|
|
2337
2381
|
};
|
|
2338
2382
|
items: {
|
|
2339
2383
|
code: string;
|
|
@@ -2349,6 +2393,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2349
2393
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
2350
2394
|
} & {
|
|
2351
2395
|
criteriaTreeElementTextFormat: string;
|
|
2396
|
+
} & {
|
|
2397
|
+
reportTextFormat?: string | undefined;
|
|
2352
2398
|
};
|
|
2353
2399
|
items: {
|
|
2354
2400
|
code: string;
|
|
@@ -2696,7 +2742,7 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2696
2742
|
code: string;
|
|
2697
2743
|
type: "theme";
|
|
2698
2744
|
title: string;
|
|
2699
|
-
options: ({
|
|
2745
|
+
options: (({
|
|
2700
2746
|
hideCodeInReport: boolean;
|
|
2701
2747
|
} & ({
|
|
2702
2748
|
hideFromBreadcrumbs: true;
|
|
@@ -2710,12 +2756,14 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2710
2756
|
} | {
|
|
2711
2757
|
documentTreeFolderTextFormat: string;
|
|
2712
2758
|
hideFromDocumentTree?: false | undefined;
|
|
2713
|
-
})
|
|
2759
|
+
})) & {
|
|
2760
|
+
reportTextFormat?: string | undefined;
|
|
2761
|
+
};
|
|
2714
2762
|
items: {
|
|
2715
2763
|
code: string;
|
|
2716
2764
|
type: "criterion";
|
|
2717
2765
|
title: string;
|
|
2718
|
-
options: (({
|
|
2766
|
+
options: ((({
|
|
2719
2767
|
hideCodeInReport: boolean;
|
|
2720
2768
|
} & ({
|
|
2721
2769
|
hideFromBreadcrumbs: true;
|
|
@@ -2731,6 +2779,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2731
2779
|
hideFromDocumentTree?: false | undefined;
|
|
2732
2780
|
})) & {
|
|
2733
2781
|
criteriaTreeElementTextFormat: string;
|
|
2782
|
+
}) & {
|
|
2783
|
+
reportTextFormat?: string | undefined;
|
|
2734
2784
|
};
|
|
2735
2785
|
items: {
|
|
2736
2786
|
code: string;
|
|
@@ -2746,6 +2796,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2746
2796
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
2747
2797
|
} & {
|
|
2748
2798
|
criteriaTreeElementTextFormat: string;
|
|
2799
|
+
} & {
|
|
2800
|
+
reportTextFormat?: string | undefined;
|
|
2749
2801
|
};
|
|
2750
2802
|
items: {
|
|
2751
2803
|
code: string;
|
|
@@ -3013,7 +3065,7 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
3013
3065
|
code: string;
|
|
3014
3066
|
type: "theme";
|
|
3015
3067
|
title: string;
|
|
3016
|
-
options: ({
|
|
3068
|
+
options: (({
|
|
3017
3069
|
hideCodeInReport?: boolean | undefined;
|
|
3018
3070
|
} & ({
|
|
3019
3071
|
hideFromBreadcrumbs: true;
|
|
@@ -3027,12 +3079,14 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
3027
3079
|
} | {
|
|
3028
3080
|
documentTreeFolderTextFormat: string;
|
|
3029
3081
|
hideFromDocumentTree?: false | undefined;
|
|
3030
|
-
})
|
|
3082
|
+
})) & {
|
|
3083
|
+
reportTextFormat?: string | undefined;
|
|
3084
|
+
};
|
|
3031
3085
|
items: {
|
|
3032
3086
|
code: string;
|
|
3033
3087
|
type: "criterion";
|
|
3034
3088
|
title: string;
|
|
3035
|
-
options: (({
|
|
3089
|
+
options: ((({
|
|
3036
3090
|
hideCodeInReport?: boolean | undefined;
|
|
3037
3091
|
} & ({
|
|
3038
3092
|
hideFromBreadcrumbs: true;
|
|
@@ -3048,6 +3102,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
3048
3102
|
hideFromDocumentTree?: false | undefined;
|
|
3049
3103
|
})) & {
|
|
3050
3104
|
criteriaTreeElementTextFormat: string;
|
|
3105
|
+
}) & {
|
|
3106
|
+
reportTextFormat?: string | undefined;
|
|
3051
3107
|
};
|
|
3052
3108
|
items: {
|
|
3053
3109
|
code: string;
|
|
@@ -3063,6 +3119,8 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
3063
3119
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
3064
3120
|
} & {
|
|
3065
3121
|
criteriaTreeElementTextFormat: string;
|
|
3122
|
+
} & {
|
|
3123
|
+
reportTextFormat?: string | undefined;
|
|
3066
3124
|
};
|
|
3067
3125
|
items: {
|
|
3068
3126
|
code: string;
|
|
@@ -4129,7 +4187,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4129
4187
|
})[] | undefined;
|
|
4130
4188
|
sortOrder?: number | undefined;
|
|
4131
4189
|
}>>, "many">;
|
|
4132
|
-
options: z.ZodIntersection<z.ZodObject<{
|
|
4190
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
4133
4191
|
breadcrumbTextFormat: z.ZodString;
|
|
4134
4192
|
documentTreeFolderTextFormat: z.ZodString;
|
|
4135
4193
|
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -4147,6 +4205,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4147
4205
|
criteriaTreeElementTextFormat: string;
|
|
4148
4206
|
}, {
|
|
4149
4207
|
criteriaTreeElementTextFormat: string;
|
|
4208
|
+
}>>, z.ZodObject<{
|
|
4209
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
4210
|
+
}, "strip", z.ZodTypeAny, {
|
|
4211
|
+
reportTextFormat?: string | undefined;
|
|
4212
|
+
}, {
|
|
4213
|
+
reportTextFormat?: string | undefined;
|
|
4150
4214
|
}>>;
|
|
4151
4215
|
}, "strip", z.ZodTypeAny, {
|
|
4152
4216
|
code: string;
|
|
@@ -4158,6 +4222,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4158
4222
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
4159
4223
|
} & {
|
|
4160
4224
|
criteriaTreeElementTextFormat: string;
|
|
4225
|
+
} & {
|
|
4226
|
+
reportTextFormat?: string | undefined;
|
|
4161
4227
|
};
|
|
4162
4228
|
items: {
|
|
4163
4229
|
code: string;
|
|
@@ -4284,6 +4350,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4284
4350
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
4285
4351
|
} & {
|
|
4286
4352
|
criteriaTreeElementTextFormat: string;
|
|
4353
|
+
} & {
|
|
4354
|
+
reportTextFormat?: string | undefined;
|
|
4287
4355
|
};
|
|
4288
4356
|
items: {
|
|
4289
4357
|
code: string;
|
|
@@ -4415,6 +4483,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4415
4483
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
4416
4484
|
} & {
|
|
4417
4485
|
criteriaTreeElementTextFormat: string;
|
|
4486
|
+
} & {
|
|
4487
|
+
reportTextFormat?: string | undefined;
|
|
4418
4488
|
};
|
|
4419
4489
|
items: {
|
|
4420
4490
|
code: string;
|
|
@@ -4576,6 +4646,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4576
4646
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
4577
4647
|
} & {
|
|
4578
4648
|
criteriaTreeElementTextFormat: string;
|
|
4649
|
+
} & {
|
|
4650
|
+
reportTextFormat?: string | undefined;
|
|
4579
4651
|
};
|
|
4580
4652
|
items: {
|
|
4581
4653
|
code: string;
|
|
@@ -4724,7 +4796,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4724
4796
|
sortOrder?: number | undefined;
|
|
4725
4797
|
category?: string | undefined;
|
|
4726
4798
|
}>>, "many">;
|
|
4727
|
-
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
4799
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
4728
4800
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4729
4801
|
}, "strip", z.ZodTypeAny, {
|
|
4730
4802
|
hideCodeInReport: boolean;
|
|
@@ -4772,12 +4844,18 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4772
4844
|
criteriaTreeElementTextFormat: string;
|
|
4773
4845
|
}, {
|
|
4774
4846
|
criteriaTreeElementTextFormat: string;
|
|
4847
|
+
}>>, z.ZodObject<{
|
|
4848
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
4849
|
+
}, "strip", z.ZodTypeAny, {
|
|
4850
|
+
reportTextFormat?: string | undefined;
|
|
4851
|
+
}, {
|
|
4852
|
+
reportTextFormat?: string | undefined;
|
|
4775
4853
|
}>>;
|
|
4776
4854
|
}, "strip", z.ZodTypeAny, {
|
|
4777
4855
|
code: string;
|
|
4778
4856
|
type: "criterion";
|
|
4779
4857
|
title: string;
|
|
4780
|
-
options: (({
|
|
4858
|
+
options: ((({
|
|
4781
4859
|
hideCodeInReport: boolean;
|
|
4782
4860
|
} & ({
|
|
4783
4861
|
hideFromBreadcrumbs: true;
|
|
@@ -4793,6 +4871,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4793
4871
|
hideFromDocumentTree?: false | undefined;
|
|
4794
4872
|
})) & {
|
|
4795
4873
|
criteriaTreeElementTextFormat: string;
|
|
4874
|
+
}) & {
|
|
4875
|
+
reportTextFormat?: string | undefined;
|
|
4796
4876
|
};
|
|
4797
4877
|
items: {
|
|
4798
4878
|
code: string;
|
|
@@ -4808,6 +4888,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4808
4888
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
4809
4889
|
} & {
|
|
4810
4890
|
criteriaTreeElementTextFormat: string;
|
|
4891
|
+
} & {
|
|
4892
|
+
reportTextFormat?: string | undefined;
|
|
4811
4893
|
};
|
|
4812
4894
|
items: {
|
|
4813
4895
|
code: string;
|
|
@@ -4988,7 +5070,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4988
5070
|
code: string;
|
|
4989
5071
|
type: "criterion";
|
|
4990
5072
|
title: string;
|
|
4991
|
-
options: (({
|
|
5073
|
+
options: ((({
|
|
4992
5074
|
hideCodeInReport?: boolean | undefined;
|
|
4993
5075
|
} & ({
|
|
4994
5076
|
hideFromBreadcrumbs: true;
|
|
@@ -5004,6 +5086,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5004
5086
|
hideFromDocumentTree?: false | undefined;
|
|
5005
5087
|
})) & {
|
|
5006
5088
|
criteriaTreeElementTextFormat: string;
|
|
5089
|
+
}) & {
|
|
5090
|
+
reportTextFormat?: string | undefined;
|
|
5007
5091
|
};
|
|
5008
5092
|
items: {
|
|
5009
5093
|
code: string;
|
|
@@ -5019,6 +5103,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5019
5103
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
5020
5104
|
} & {
|
|
5021
5105
|
criteriaTreeElementTextFormat: string;
|
|
5106
|
+
} & {
|
|
5107
|
+
reportTextFormat?: string | undefined;
|
|
5022
5108
|
};
|
|
5023
5109
|
items: {
|
|
5024
5110
|
code: string;
|
|
@@ -5196,7 +5282,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5196
5282
|
})[] | undefined;
|
|
5197
5283
|
sortOrder?: number | undefined;
|
|
5198
5284
|
}>, "many">;
|
|
5199
|
-
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
5285
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
5200
5286
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5201
5287
|
}, "strip", z.ZodTypeAny, {
|
|
5202
5288
|
hideCodeInReport: boolean;
|
|
@@ -5238,12 +5324,18 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5238
5324
|
}, {
|
|
5239
5325
|
documentTreeFolderTextFormat: string;
|
|
5240
5326
|
hideFromDocumentTree?: false | undefined;
|
|
5241
|
-
}>]
|
|
5327
|
+
}>]>>, z.ZodObject<{
|
|
5328
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
5329
|
+
}, "strip", z.ZodTypeAny, {
|
|
5330
|
+
reportTextFormat?: string | undefined;
|
|
5331
|
+
}, {
|
|
5332
|
+
reportTextFormat?: string | undefined;
|
|
5333
|
+
}>>;
|
|
5242
5334
|
}, "strip", z.ZodTypeAny, {
|
|
5243
5335
|
code: string;
|
|
5244
5336
|
type: "theme";
|
|
5245
5337
|
title: string;
|
|
5246
|
-
options: ({
|
|
5338
|
+
options: (({
|
|
5247
5339
|
hideCodeInReport: boolean;
|
|
5248
5340
|
} & ({
|
|
5249
5341
|
hideFromBreadcrumbs: true;
|
|
@@ -5257,12 +5349,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5257
5349
|
} | {
|
|
5258
5350
|
documentTreeFolderTextFormat: string;
|
|
5259
5351
|
hideFromDocumentTree?: false | undefined;
|
|
5260
|
-
})
|
|
5352
|
+
})) & {
|
|
5353
|
+
reportTextFormat?: string | undefined;
|
|
5354
|
+
};
|
|
5261
5355
|
items: {
|
|
5262
5356
|
code: string;
|
|
5263
5357
|
type: "criterion";
|
|
5264
5358
|
title: string;
|
|
5265
|
-
options: (({
|
|
5359
|
+
options: ((({
|
|
5266
5360
|
hideCodeInReport: boolean;
|
|
5267
5361
|
} & ({
|
|
5268
5362
|
hideFromBreadcrumbs: true;
|
|
@@ -5278,6 +5372,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5278
5372
|
hideFromDocumentTree?: false | undefined;
|
|
5279
5373
|
})) & {
|
|
5280
5374
|
criteriaTreeElementTextFormat: string;
|
|
5375
|
+
}) & {
|
|
5376
|
+
reportTextFormat?: string | undefined;
|
|
5281
5377
|
};
|
|
5282
5378
|
items: {
|
|
5283
5379
|
code: string;
|
|
@@ -5293,6 +5389,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5293
5389
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
5294
5390
|
} & {
|
|
5295
5391
|
criteriaTreeElementTextFormat: string;
|
|
5392
|
+
} & {
|
|
5393
|
+
reportTextFormat?: string | undefined;
|
|
5296
5394
|
};
|
|
5297
5395
|
items: {
|
|
5298
5396
|
code: string;
|
|
@@ -5514,7 +5612,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5514
5612
|
code: string;
|
|
5515
5613
|
type: "theme";
|
|
5516
5614
|
title: string;
|
|
5517
|
-
options: ({
|
|
5615
|
+
options: (({
|
|
5518
5616
|
hideCodeInReport?: boolean | undefined;
|
|
5519
5617
|
} & ({
|
|
5520
5618
|
hideFromBreadcrumbs: true;
|
|
@@ -5528,12 +5626,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5528
5626
|
} | {
|
|
5529
5627
|
documentTreeFolderTextFormat: string;
|
|
5530
5628
|
hideFromDocumentTree?: false | undefined;
|
|
5531
|
-
})
|
|
5629
|
+
})) & {
|
|
5630
|
+
reportTextFormat?: string | undefined;
|
|
5631
|
+
};
|
|
5532
5632
|
items: {
|
|
5533
5633
|
code: string;
|
|
5534
5634
|
type: "criterion";
|
|
5535
5635
|
title: string;
|
|
5536
|
-
options: (({
|
|
5636
|
+
options: ((({
|
|
5537
5637
|
hideCodeInReport?: boolean | undefined;
|
|
5538
5638
|
} & ({
|
|
5539
5639
|
hideFromBreadcrumbs: true;
|
|
@@ -5549,6 +5649,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5549
5649
|
hideFromDocumentTree?: false | undefined;
|
|
5550
5650
|
})) & {
|
|
5551
5651
|
criteriaTreeElementTextFormat: string;
|
|
5652
|
+
}) & {
|
|
5653
|
+
reportTextFormat?: string | undefined;
|
|
5552
5654
|
};
|
|
5553
5655
|
items: {
|
|
5554
5656
|
code: string;
|
|
@@ -5564,6 +5666,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5564
5666
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
5565
5667
|
} & {
|
|
5566
5668
|
criteriaTreeElementTextFormat: string;
|
|
5669
|
+
} & {
|
|
5670
|
+
reportTextFormat?: string | undefined;
|
|
5567
5671
|
};
|
|
5568
5672
|
items: {
|
|
5569
5673
|
code: string;
|
|
@@ -6468,7 +6572,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6468
6572
|
})[] | undefined;
|
|
6469
6573
|
sortOrder?: number | undefined;
|
|
6470
6574
|
}>>, "many">;
|
|
6471
|
-
options: z.ZodIntersection<z.ZodObject<{
|
|
6575
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6472
6576
|
breadcrumbTextFormat: z.ZodString;
|
|
6473
6577
|
documentTreeFolderTextFormat: z.ZodString;
|
|
6474
6578
|
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -6486,6 +6590,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6486
6590
|
criteriaTreeElementTextFormat: string;
|
|
6487
6591
|
}, {
|
|
6488
6592
|
criteriaTreeElementTextFormat: string;
|
|
6593
|
+
}>>, z.ZodObject<{
|
|
6594
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
6595
|
+
}, "strip", z.ZodTypeAny, {
|
|
6596
|
+
reportTextFormat?: string | undefined;
|
|
6597
|
+
}, {
|
|
6598
|
+
reportTextFormat?: string | undefined;
|
|
6489
6599
|
}>>;
|
|
6490
6600
|
}, "strip", z.ZodTypeAny, {
|
|
6491
6601
|
code: string;
|
|
@@ -6497,6 +6607,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6497
6607
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
6498
6608
|
} & {
|
|
6499
6609
|
criteriaTreeElementTextFormat: string;
|
|
6610
|
+
} & {
|
|
6611
|
+
reportTextFormat?: string | undefined;
|
|
6500
6612
|
};
|
|
6501
6613
|
items: {
|
|
6502
6614
|
code: string;
|
|
@@ -6623,6 +6735,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6623
6735
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
6624
6736
|
} & {
|
|
6625
6737
|
criteriaTreeElementTextFormat: string;
|
|
6738
|
+
} & {
|
|
6739
|
+
reportTextFormat?: string | undefined;
|
|
6626
6740
|
};
|
|
6627
6741
|
items: {
|
|
6628
6742
|
code: string;
|
|
@@ -6754,6 +6868,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6754
6868
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
6755
6869
|
} & {
|
|
6756
6870
|
criteriaTreeElementTextFormat: string;
|
|
6871
|
+
} & {
|
|
6872
|
+
reportTextFormat?: string | undefined;
|
|
6757
6873
|
};
|
|
6758
6874
|
items: {
|
|
6759
6875
|
code: string;
|
|
@@ -6915,6 +7031,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6915
7031
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
6916
7032
|
} & {
|
|
6917
7033
|
criteriaTreeElementTextFormat: string;
|
|
7034
|
+
} & {
|
|
7035
|
+
reportTextFormat?: string | undefined;
|
|
6918
7036
|
};
|
|
6919
7037
|
items: {
|
|
6920
7038
|
code: string;
|
|
@@ -7063,7 +7181,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7063
7181
|
sortOrder?: number | undefined;
|
|
7064
7182
|
category?: string | undefined;
|
|
7065
7183
|
}>>, "many">;
|
|
7066
|
-
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
7184
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
7067
7185
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7068
7186
|
}, "strip", z.ZodTypeAny, {
|
|
7069
7187
|
hideCodeInReport: boolean;
|
|
@@ -7111,12 +7229,18 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7111
7229
|
criteriaTreeElementTextFormat: string;
|
|
7112
7230
|
}, {
|
|
7113
7231
|
criteriaTreeElementTextFormat: string;
|
|
7232
|
+
}>>, z.ZodObject<{
|
|
7233
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
7234
|
+
}, "strip", z.ZodTypeAny, {
|
|
7235
|
+
reportTextFormat?: string | undefined;
|
|
7236
|
+
}, {
|
|
7237
|
+
reportTextFormat?: string | undefined;
|
|
7114
7238
|
}>>;
|
|
7115
7239
|
}, "strip", z.ZodTypeAny, {
|
|
7116
7240
|
code: string;
|
|
7117
7241
|
type: "criterion";
|
|
7118
7242
|
title: string;
|
|
7119
|
-
options: (({
|
|
7243
|
+
options: ((({
|
|
7120
7244
|
hideCodeInReport: boolean;
|
|
7121
7245
|
} & ({
|
|
7122
7246
|
hideFromBreadcrumbs: true;
|
|
@@ -7132,6 +7256,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7132
7256
|
hideFromDocumentTree?: false | undefined;
|
|
7133
7257
|
})) & {
|
|
7134
7258
|
criteriaTreeElementTextFormat: string;
|
|
7259
|
+
}) & {
|
|
7260
|
+
reportTextFormat?: string | undefined;
|
|
7135
7261
|
};
|
|
7136
7262
|
items: {
|
|
7137
7263
|
code: string;
|
|
@@ -7147,6 +7273,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7147
7273
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
7148
7274
|
} & {
|
|
7149
7275
|
criteriaTreeElementTextFormat: string;
|
|
7276
|
+
} & {
|
|
7277
|
+
reportTextFormat?: string | undefined;
|
|
7150
7278
|
};
|
|
7151
7279
|
items: {
|
|
7152
7280
|
code: string;
|
|
@@ -7327,7 +7455,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7327
7455
|
code: string;
|
|
7328
7456
|
type: "criterion";
|
|
7329
7457
|
title: string;
|
|
7330
|
-
options: (({
|
|
7458
|
+
options: ((({
|
|
7331
7459
|
hideCodeInReport?: boolean | undefined;
|
|
7332
7460
|
} & ({
|
|
7333
7461
|
hideFromBreadcrumbs: true;
|
|
@@ -7343,6 +7471,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7343
7471
|
hideFromDocumentTree?: false | undefined;
|
|
7344
7472
|
})) & {
|
|
7345
7473
|
criteriaTreeElementTextFormat: string;
|
|
7474
|
+
}) & {
|
|
7475
|
+
reportTextFormat?: string | undefined;
|
|
7346
7476
|
};
|
|
7347
7477
|
items: {
|
|
7348
7478
|
code: string;
|
|
@@ -7358,6 +7488,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7358
7488
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
7359
7489
|
} & {
|
|
7360
7490
|
criteriaTreeElementTextFormat: string;
|
|
7491
|
+
} & {
|
|
7492
|
+
reportTextFormat?: string | undefined;
|
|
7361
7493
|
};
|
|
7362
7494
|
items: {
|
|
7363
7495
|
code: string;
|
|
@@ -8139,7 +8271,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8139
8271
|
})[] | undefined;
|
|
8140
8272
|
sortOrder?: number | undefined;
|
|
8141
8273
|
}>>, "many">;
|
|
8142
|
-
options: z.ZodIntersection<z.ZodObject<{
|
|
8274
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
8143
8275
|
breadcrumbTextFormat: z.ZodString;
|
|
8144
8276
|
documentTreeFolderTextFormat: z.ZodString;
|
|
8145
8277
|
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -8157,6 +8289,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8157
8289
|
criteriaTreeElementTextFormat: string;
|
|
8158
8290
|
}, {
|
|
8159
8291
|
criteriaTreeElementTextFormat: string;
|
|
8292
|
+
}>>, z.ZodObject<{
|
|
8293
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
8294
|
+
}, "strip", z.ZodTypeAny, {
|
|
8295
|
+
reportTextFormat?: string | undefined;
|
|
8296
|
+
}, {
|
|
8297
|
+
reportTextFormat?: string | undefined;
|
|
8160
8298
|
}>>;
|
|
8161
8299
|
}, "strip", z.ZodTypeAny, {
|
|
8162
8300
|
code: string;
|
|
@@ -8168,6 +8306,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8168
8306
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
8169
8307
|
} & {
|
|
8170
8308
|
criteriaTreeElementTextFormat: string;
|
|
8309
|
+
} & {
|
|
8310
|
+
reportTextFormat?: string | undefined;
|
|
8171
8311
|
};
|
|
8172
8312
|
items: {
|
|
8173
8313
|
code: string;
|
|
@@ -8294,6 +8434,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8294
8434
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
8295
8435
|
} & {
|
|
8296
8436
|
criteriaTreeElementTextFormat: string;
|
|
8437
|
+
} & {
|
|
8438
|
+
reportTextFormat?: string | undefined;
|
|
8297
8439
|
};
|
|
8298
8440
|
items: {
|
|
8299
8441
|
code: string;
|
|
@@ -8425,6 +8567,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8425
8567
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
8426
8568
|
} & {
|
|
8427
8569
|
criteriaTreeElementTextFormat: string;
|
|
8570
|
+
} & {
|
|
8571
|
+
reportTextFormat?: string | undefined;
|
|
8428
8572
|
};
|
|
8429
8573
|
items: {
|
|
8430
8574
|
code: string;
|
|
@@ -8586,6 +8730,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8586
8730
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
8587
8731
|
} & {
|
|
8588
8732
|
criteriaTreeElementTextFormat: string;
|
|
8733
|
+
} & {
|
|
8734
|
+
reportTextFormat?: string | undefined;
|
|
8589
8735
|
};
|
|
8590
8736
|
items: {
|
|
8591
8737
|
code: string;
|
|
@@ -9254,7 +9400,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9254
9400
|
})[] | undefined;
|
|
9255
9401
|
sortOrder?: number | undefined;
|
|
9256
9402
|
}>>, "many">;
|
|
9257
|
-
options: z.ZodIntersection<z.ZodObject<{
|
|
9403
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
9258
9404
|
breadcrumbTextFormat: z.ZodString;
|
|
9259
9405
|
documentTreeFolderTextFormat: z.ZodString;
|
|
9260
9406
|
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -9272,6 +9418,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9272
9418
|
criteriaTreeElementTextFormat: string;
|
|
9273
9419
|
}, {
|
|
9274
9420
|
criteriaTreeElementTextFormat: string;
|
|
9421
|
+
}>>, z.ZodObject<{
|
|
9422
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
9423
|
+
}, "strip", z.ZodTypeAny, {
|
|
9424
|
+
reportTextFormat?: string | undefined;
|
|
9425
|
+
}, {
|
|
9426
|
+
reportTextFormat?: string | undefined;
|
|
9275
9427
|
}>>;
|
|
9276
9428
|
}, "strip", z.ZodTypeAny, {
|
|
9277
9429
|
code: string;
|
|
@@ -9283,6 +9435,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9283
9435
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
9284
9436
|
} & {
|
|
9285
9437
|
criteriaTreeElementTextFormat: string;
|
|
9438
|
+
} & {
|
|
9439
|
+
reportTextFormat?: string | undefined;
|
|
9286
9440
|
};
|
|
9287
9441
|
items: {
|
|
9288
9442
|
code: string;
|
|
@@ -9409,6 +9563,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9409
9563
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
9410
9564
|
} & {
|
|
9411
9565
|
criteriaTreeElementTextFormat: string;
|
|
9566
|
+
} & {
|
|
9567
|
+
reportTextFormat?: string | undefined;
|
|
9412
9568
|
};
|
|
9413
9569
|
items: {
|
|
9414
9570
|
code: string;
|