@openframe-org/criteria-set-protocol 2.2.11 → 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 +84 -77
- package/dist/v1/schemas/common.js +9 -1
- package/dist/v1/schemas/criteria-tree.d.ts +1406 -1162
- package/dist/v1/schemas/criterion.d.ts +251 -201
- package/dist/v1/schemas/criterion.js +1 -0
- package/dist/v1/schemas/data-map.d.ts +123 -115
- package/dist/v1/schemas/task-group.d.ts +144 -118
- package/dist/v1/schemas/task-item.d.ts +42 -38
- package/dist/v1/schemas/task.d.ts +84 -60
- package/dist/v1/schemas/task.js +1 -0
- package/dist/v1/schemas/theme.d.ts +381 -309
- package/dist/v1/schemas/theme.js +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const criterionOptionsSchema: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2
|
+
export declare const criterionOptionsSchema: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
3
3
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4
4
|
}, "strip", z.ZodTypeAny, {
|
|
5
5
|
hideCodeInReport: boolean;
|
|
@@ -47,6 +47,12 @@ export declare const criterionOptionsSchema: z.ZodIntersection<z.ZodIntersection
|
|
|
47
47
|
criteriaTreeElementTextFormat: string;
|
|
48
48
|
}, {
|
|
49
49
|
criteriaTreeElementTextFormat: string;
|
|
50
|
+
}>>, z.ZodObject<{
|
|
51
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
52
|
+
}, "strip", z.ZodTypeAny, {
|
|
53
|
+
reportTextFormat?: string | undefined;
|
|
54
|
+
}, {
|
|
55
|
+
reportTextFormat?: string | undefined;
|
|
50
56
|
}>>;
|
|
51
57
|
export declare const criterionSchema: z.ZodObject<{
|
|
52
58
|
title: z.ZodString;
|
|
@@ -108,25 +114,25 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
108
114
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
109
115
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
110
116
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
111
|
-
}, "strip", z.
|
|
112
|
-
type
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
maximumValue
|
|
117
|
-
minimumValue
|
|
118
|
-
exclusiveMaximum
|
|
119
|
-
exclusiveMinimum
|
|
120
|
-
}, {
|
|
121
|
-
type
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
maximumValue
|
|
126
|
-
minimumValue
|
|
127
|
-
exclusiveMaximum
|
|
128
|
-
exclusiveMinimum
|
|
129
|
-
}
|
|
117
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
118
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
119
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
120
|
+
text: z.ZodOptional<z.ZodString>;
|
|
121
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
122
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
123
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
124
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
125
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
126
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
127
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
128
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
129
|
+
text: z.ZodOptional<z.ZodString>;
|
|
130
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
131
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
132
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
133
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
134
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
135
|
+
}, z.ZodAny, "strip">>>;
|
|
130
136
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
131
137
|
} & {
|
|
132
138
|
type: z.ZodLiteral<"criterion">;
|
|
@@ -190,25 +196,25 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
190
196
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
191
197
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
192
198
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
193
|
-
}, "strip", z.
|
|
194
|
-
type
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
maximumValue
|
|
199
|
-
minimumValue
|
|
200
|
-
exclusiveMaximum
|
|
201
|
-
exclusiveMinimum
|
|
202
|
-
}, {
|
|
203
|
-
type
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
maximumValue
|
|
208
|
-
minimumValue
|
|
209
|
-
exclusiveMaximum
|
|
210
|
-
exclusiveMinimum
|
|
211
|
-
}
|
|
199
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
200
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
201
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
202
|
+
text: z.ZodOptional<z.ZodString>;
|
|
203
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
204
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
205
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
206
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
207
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
208
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
209
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
210
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
211
|
+
text: z.ZodOptional<z.ZodString>;
|
|
212
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
213
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
214
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
215
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
216
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
217
|
+
}, z.ZodAny, "strip">>>;
|
|
212
218
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
213
219
|
} & {
|
|
214
220
|
type: z.ZodLiteral<"task-group">;
|
|
@@ -274,25 +280,25 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
274
280
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
275
281
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
276
282
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
277
|
-
}, "strip", z.
|
|
278
|
-
type
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
maximumValue
|
|
283
|
-
minimumValue
|
|
284
|
-
exclusiveMaximum
|
|
285
|
-
exclusiveMinimum
|
|
286
|
-
}, {
|
|
287
|
-
type
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
maximumValue
|
|
292
|
-
minimumValue
|
|
293
|
-
exclusiveMaximum
|
|
294
|
-
exclusiveMinimum
|
|
295
|
-
}
|
|
283
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
284
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
285
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
286
|
+
text: z.ZodOptional<z.ZodString>;
|
|
287
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
288
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
289
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
290
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
291
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
292
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
293
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
294
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
295
|
+
text: z.ZodOptional<z.ZodString>;
|
|
296
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
297
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
298
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
299
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
300
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
301
|
+
}, z.ZodAny, "strip">>>;
|
|
296
302
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
297
303
|
} & {
|
|
298
304
|
type: z.ZodLiteral<"task">;
|
|
@@ -358,25 +364,25 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
358
364
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
359
365
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
360
366
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
361
|
-
}, "strip", z.
|
|
362
|
-
type
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
maximumValue
|
|
367
|
-
minimumValue
|
|
368
|
-
exclusiveMaximum
|
|
369
|
-
exclusiveMinimum
|
|
370
|
-
}, {
|
|
371
|
-
type
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
maximumValue
|
|
376
|
-
minimumValue
|
|
377
|
-
exclusiveMaximum
|
|
378
|
-
exclusiveMinimum
|
|
379
|
-
}
|
|
367
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
368
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
369
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
370
|
+
text: z.ZodOptional<z.ZodString>;
|
|
371
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
372
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
373
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
374
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
375
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
377
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
378
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
379
|
+
text: z.ZodOptional<z.ZodString>;
|
|
380
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
383
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
384
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
385
|
+
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
380
386
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
381
387
|
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">]>>;
|
|
382
388
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -625,6 +631,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
625
631
|
minimumValue?: number | undefined;
|
|
626
632
|
exclusiveMaximum?: number | undefined;
|
|
627
633
|
exclusiveMinimum?: number | undefined;
|
|
634
|
+
} & {
|
|
635
|
+
[k: string]: any;
|
|
628
636
|
} & {
|
|
629
637
|
readOnly?: boolean | undefined;
|
|
630
638
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -708,6 +716,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
708
716
|
minimumValue?: number | undefined;
|
|
709
717
|
exclusiveMaximum?: number | undefined;
|
|
710
718
|
exclusiveMinimum?: number | undefined;
|
|
719
|
+
} & {
|
|
720
|
+
[k: string]: any;
|
|
711
721
|
} & {
|
|
712
722
|
readOnly?: boolean | undefined;
|
|
713
723
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -731,7 +741,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
731
741
|
})[] | undefined;
|
|
732
742
|
sortOrder?: number | undefined;
|
|
733
743
|
}>>, "many">;
|
|
734
|
-
options: z.ZodIntersection<z.ZodObject<{
|
|
744
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
735
745
|
breadcrumbTextFormat: z.ZodString;
|
|
736
746
|
documentTreeFolderTextFormat: z.ZodString;
|
|
737
747
|
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -749,6 +759,12 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
749
759
|
criteriaTreeElementTextFormat: string;
|
|
750
760
|
}, {
|
|
751
761
|
criteriaTreeElementTextFormat: string;
|
|
762
|
+
}>>, z.ZodObject<{
|
|
763
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
764
|
+
}, "strip", z.ZodTypeAny, {
|
|
765
|
+
reportTextFormat?: string | undefined;
|
|
766
|
+
}, {
|
|
767
|
+
reportTextFormat?: string | undefined;
|
|
752
768
|
}>>;
|
|
753
769
|
}, "strip", z.ZodTypeAny, {
|
|
754
770
|
code: string;
|
|
@@ -760,6 +776,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
760
776
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
761
777
|
} & {
|
|
762
778
|
criteriaTreeElementTextFormat: string;
|
|
779
|
+
} & {
|
|
780
|
+
reportTextFormat?: string | undefined;
|
|
763
781
|
};
|
|
764
782
|
items: {
|
|
765
783
|
code: string;
|
|
@@ -822,6 +840,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
822
840
|
minimumValue?: number | undefined;
|
|
823
841
|
exclusiveMaximum?: number | undefined;
|
|
824
842
|
exclusiveMinimum?: number | undefined;
|
|
843
|
+
} & {
|
|
844
|
+
[k: string]: any;
|
|
825
845
|
} & {
|
|
826
846
|
readOnly?: boolean | undefined;
|
|
827
847
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -846,16 +866,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
846
866
|
sortOrder?: number | undefined;
|
|
847
867
|
}[];
|
|
848
868
|
longFormTitle: string;
|
|
849
|
-
data?: {
|
|
850
|
-
type
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
maximumValue
|
|
855
|
-
minimumValue
|
|
856
|
-
exclusiveMaximum
|
|
857
|
-
exclusiveMinimum
|
|
858
|
-
} | undefined;
|
|
869
|
+
data?: z.objectOutputType<{
|
|
870
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
871
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
872
|
+
text: z.ZodOptional<z.ZodString>;
|
|
873
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
874
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
875
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
876
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
877
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
878
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
859
879
|
description?: string | undefined;
|
|
860
880
|
tags?: string[] | undefined;
|
|
861
881
|
documentation?: ({
|
|
@@ -884,6 +904,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
884
904
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
885
905
|
} & {
|
|
886
906
|
criteriaTreeElementTextFormat: string;
|
|
907
|
+
} & {
|
|
908
|
+
reportTextFormat?: string | undefined;
|
|
887
909
|
};
|
|
888
910
|
items: {
|
|
889
911
|
code: string;
|
|
@@ -946,6 +968,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
946
968
|
minimumValue?: number | undefined;
|
|
947
969
|
exclusiveMaximum?: number | undefined;
|
|
948
970
|
exclusiveMinimum?: number | undefined;
|
|
971
|
+
} & {
|
|
972
|
+
[k: string]: any;
|
|
949
973
|
} & {
|
|
950
974
|
readOnly?: boolean | undefined;
|
|
951
975
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -970,16 +994,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
970
994
|
sortOrder?: number | undefined;
|
|
971
995
|
}[];
|
|
972
996
|
longFormTitle: string;
|
|
973
|
-
data?: {
|
|
974
|
-
type
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
maximumValue
|
|
979
|
-
minimumValue
|
|
980
|
-
exclusiveMaximum
|
|
981
|
-
exclusiveMinimum
|
|
982
|
-
} | undefined;
|
|
997
|
+
data?: z.objectInputType<{
|
|
998
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
999
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1000
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1002
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1003
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1004
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1005
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1006
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
983
1007
|
description?: string | undefined;
|
|
984
1008
|
tags?: string[] | undefined;
|
|
985
1009
|
documentation?: ({
|
|
@@ -1013,6 +1037,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1013
1037
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
1014
1038
|
} & {
|
|
1015
1039
|
criteriaTreeElementTextFormat: string;
|
|
1040
|
+
} & {
|
|
1041
|
+
reportTextFormat?: string | undefined;
|
|
1016
1042
|
};
|
|
1017
1043
|
items: {
|
|
1018
1044
|
code: string;
|
|
@@ -1075,6 +1101,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1075
1101
|
minimumValue?: number | undefined;
|
|
1076
1102
|
exclusiveMaximum?: number | undefined;
|
|
1077
1103
|
exclusiveMinimum?: number | undefined;
|
|
1104
|
+
} & {
|
|
1105
|
+
[k: string]: any;
|
|
1078
1106
|
} & {
|
|
1079
1107
|
readOnly?: boolean | undefined;
|
|
1080
1108
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1099,16 +1127,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1099
1127
|
sortOrder?: number | undefined;
|
|
1100
1128
|
}[];
|
|
1101
1129
|
longFormTitle: string;
|
|
1102
|
-
data?: {
|
|
1103
|
-
type
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
maximumValue
|
|
1108
|
-
minimumValue
|
|
1109
|
-
exclusiveMaximum
|
|
1110
|
-
exclusiveMinimum
|
|
1111
|
-
} | undefined;
|
|
1130
|
+
data?: z.objectOutputType<{
|
|
1131
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1132
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1133
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1134
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1135
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1136
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1137
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1138
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1139
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1112
1140
|
description?: string | undefined;
|
|
1113
1141
|
tags?: string[] | undefined;
|
|
1114
1142
|
documentation?: ({
|
|
@@ -1129,16 +1157,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1129
1157
|
sortOrder?: number | undefined;
|
|
1130
1158
|
}[];
|
|
1131
1159
|
longFormTitle: string;
|
|
1132
|
-
data?: {
|
|
1133
|
-
type
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
maximumValue
|
|
1138
|
-
minimumValue
|
|
1139
|
-
exclusiveMaximum
|
|
1140
|
-
exclusiveMinimum
|
|
1141
|
-
} | undefined;
|
|
1160
|
+
data?: z.objectOutputType<{
|
|
1161
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1162
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1163
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1164
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1165
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1166
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1167
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1168
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1169
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1142
1170
|
description?: string | undefined;
|
|
1143
1171
|
tags?: string[] | undefined;
|
|
1144
1172
|
documentation?: ({
|
|
@@ -1172,6 +1200,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1172
1200
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1173
1201
|
} & {
|
|
1174
1202
|
criteriaTreeElementTextFormat: string;
|
|
1203
|
+
} & {
|
|
1204
|
+
reportTextFormat?: string | undefined;
|
|
1175
1205
|
};
|
|
1176
1206
|
items: {
|
|
1177
1207
|
code: string;
|
|
@@ -1234,6 +1264,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1234
1264
|
minimumValue?: number | undefined;
|
|
1235
1265
|
exclusiveMaximum?: number | undefined;
|
|
1236
1266
|
exclusiveMinimum?: number | undefined;
|
|
1267
|
+
} & {
|
|
1268
|
+
[k: string]: any;
|
|
1237
1269
|
} & {
|
|
1238
1270
|
readOnly?: boolean | undefined;
|
|
1239
1271
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1258,16 +1290,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1258
1290
|
sortOrder?: number | undefined;
|
|
1259
1291
|
}[];
|
|
1260
1292
|
longFormTitle: string;
|
|
1261
|
-
data?: {
|
|
1262
|
-
type
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
maximumValue
|
|
1267
|
-
minimumValue
|
|
1268
|
-
exclusiveMaximum
|
|
1269
|
-
exclusiveMinimum
|
|
1270
|
-
} | undefined;
|
|
1293
|
+
data?: z.objectInputType<{
|
|
1294
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1295
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1296
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1297
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1298
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1299
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1300
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1301
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1302
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1271
1303
|
description?: string | undefined;
|
|
1272
1304
|
tags?: string[] | undefined;
|
|
1273
1305
|
documentation?: ({
|
|
@@ -1288,16 +1320,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1288
1320
|
sortOrder?: number | undefined;
|
|
1289
1321
|
}[];
|
|
1290
1322
|
longFormTitle: string;
|
|
1291
|
-
data?: {
|
|
1292
|
-
type
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
maximumValue
|
|
1297
|
-
minimumValue
|
|
1298
|
-
exclusiveMaximum
|
|
1299
|
-
exclusiveMinimum
|
|
1300
|
-
} | undefined;
|
|
1323
|
+
data?: z.objectInputType<{
|
|
1324
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1325
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1326
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1327
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1328
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1329
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1330
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1331
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1332
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1301
1333
|
description?: string | undefined;
|
|
1302
1334
|
tags?: string[] | undefined;
|
|
1303
1335
|
documentation?: ({
|
|
@@ -1318,7 +1350,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1318
1350
|
sortOrder?: number | undefined;
|
|
1319
1351
|
category?: string | undefined;
|
|
1320
1352
|
}>>, "many">;
|
|
1321
|
-
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1353
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1322
1354
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1323
1355
|
}, "strip", z.ZodTypeAny, {
|
|
1324
1356
|
hideCodeInReport: boolean;
|
|
@@ -1366,12 +1398,18 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1366
1398
|
criteriaTreeElementTextFormat: string;
|
|
1367
1399
|
}, {
|
|
1368
1400
|
criteriaTreeElementTextFormat: string;
|
|
1401
|
+
}>>, z.ZodObject<{
|
|
1402
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
1403
|
+
}, "strip", z.ZodTypeAny, {
|
|
1404
|
+
reportTextFormat?: string | undefined;
|
|
1405
|
+
}, {
|
|
1406
|
+
reportTextFormat?: string | undefined;
|
|
1369
1407
|
}>>;
|
|
1370
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1371
1409
|
code: string;
|
|
1372
1410
|
type: "criterion";
|
|
1373
1411
|
title: string;
|
|
1374
|
-
options: (({
|
|
1412
|
+
options: ((({
|
|
1375
1413
|
hideCodeInReport: boolean;
|
|
1376
1414
|
} & ({
|
|
1377
1415
|
hideFromBreadcrumbs: true;
|
|
@@ -1387,6 +1425,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1387
1425
|
hideFromDocumentTree?: false | undefined;
|
|
1388
1426
|
})) & {
|
|
1389
1427
|
criteriaTreeElementTextFormat: string;
|
|
1428
|
+
}) & {
|
|
1429
|
+
reportTextFormat?: string | undefined;
|
|
1390
1430
|
};
|
|
1391
1431
|
items: {
|
|
1392
1432
|
code: string;
|
|
@@ -1402,6 +1442,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1402
1442
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
1403
1443
|
} & {
|
|
1404
1444
|
criteriaTreeElementTextFormat: string;
|
|
1445
|
+
} & {
|
|
1446
|
+
reportTextFormat?: string | undefined;
|
|
1405
1447
|
};
|
|
1406
1448
|
items: {
|
|
1407
1449
|
code: string;
|
|
@@ -1464,6 +1506,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1464
1506
|
minimumValue?: number | undefined;
|
|
1465
1507
|
exclusiveMaximum?: number | undefined;
|
|
1466
1508
|
exclusiveMinimum?: number | undefined;
|
|
1509
|
+
} & {
|
|
1510
|
+
[k: string]: any;
|
|
1467
1511
|
} & {
|
|
1468
1512
|
readOnly?: boolean | undefined;
|
|
1469
1513
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1488,16 +1532,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1488
1532
|
sortOrder?: number | undefined;
|
|
1489
1533
|
}[];
|
|
1490
1534
|
longFormTitle: string;
|
|
1491
|
-
data?: {
|
|
1492
|
-
type
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
maximumValue
|
|
1497
|
-
minimumValue
|
|
1498
|
-
exclusiveMaximum
|
|
1499
|
-
exclusiveMinimum
|
|
1500
|
-
} | undefined;
|
|
1535
|
+
data?: z.objectOutputType<{
|
|
1536
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1537
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1538
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1539
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1540
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1541
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1542
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1543
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1544
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1501
1545
|
description?: string | undefined;
|
|
1502
1546
|
tags?: string[] | undefined;
|
|
1503
1547
|
documentation?: ({
|
|
@@ -1518,16 +1562,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1518
1562
|
sortOrder?: number | undefined;
|
|
1519
1563
|
}[];
|
|
1520
1564
|
longFormTitle: string;
|
|
1521
|
-
data?: {
|
|
1522
|
-
type
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
maximumValue
|
|
1527
|
-
minimumValue
|
|
1528
|
-
exclusiveMaximum
|
|
1529
|
-
exclusiveMinimum
|
|
1530
|
-
} | undefined;
|
|
1565
|
+
data?: z.objectOutputType<{
|
|
1566
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1567
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1568
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1569
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1570
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1571
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1572
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1573
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1574
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1531
1575
|
description?: string | undefined;
|
|
1532
1576
|
tags?: string[] | undefined;
|
|
1533
1577
|
documentation?: ({
|
|
@@ -1549,16 +1593,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1549
1593
|
category?: string | undefined;
|
|
1550
1594
|
}[];
|
|
1551
1595
|
longFormTitle: string;
|
|
1552
|
-
data?: {
|
|
1553
|
-
type
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
maximumValue
|
|
1558
|
-
minimumValue
|
|
1559
|
-
exclusiveMaximum
|
|
1560
|
-
exclusiveMinimum
|
|
1561
|
-
} | undefined;
|
|
1596
|
+
data?: z.objectOutputType<{
|
|
1597
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1598
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1599
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1600
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1601
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1602
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1603
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1604
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1605
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1562
1606
|
tags?: string[] | undefined;
|
|
1563
1607
|
documentation?: ({
|
|
1564
1608
|
type: "pdf";
|
|
@@ -1580,7 +1624,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1580
1624
|
code: string;
|
|
1581
1625
|
type: "criterion";
|
|
1582
1626
|
title: string;
|
|
1583
|
-
options: (({
|
|
1627
|
+
options: ((({
|
|
1584
1628
|
hideCodeInReport?: boolean | undefined;
|
|
1585
1629
|
} & ({
|
|
1586
1630
|
hideFromBreadcrumbs: true;
|
|
@@ -1596,6 +1640,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1596
1640
|
hideFromDocumentTree?: false | undefined;
|
|
1597
1641
|
})) & {
|
|
1598
1642
|
criteriaTreeElementTextFormat: string;
|
|
1643
|
+
}) & {
|
|
1644
|
+
reportTextFormat?: string | undefined;
|
|
1599
1645
|
};
|
|
1600
1646
|
items: {
|
|
1601
1647
|
code: string;
|
|
@@ -1611,6 +1657,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1611
1657
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1612
1658
|
} & {
|
|
1613
1659
|
criteriaTreeElementTextFormat: string;
|
|
1660
|
+
} & {
|
|
1661
|
+
reportTextFormat?: string | undefined;
|
|
1614
1662
|
};
|
|
1615
1663
|
items: {
|
|
1616
1664
|
code: string;
|
|
@@ -1673,6 +1721,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1673
1721
|
minimumValue?: number | undefined;
|
|
1674
1722
|
exclusiveMaximum?: number | undefined;
|
|
1675
1723
|
exclusiveMinimum?: number | undefined;
|
|
1724
|
+
} & {
|
|
1725
|
+
[k: string]: any;
|
|
1676
1726
|
} & {
|
|
1677
1727
|
readOnly?: boolean | undefined;
|
|
1678
1728
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1697,16 +1747,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1697
1747
|
sortOrder?: number | undefined;
|
|
1698
1748
|
}[];
|
|
1699
1749
|
longFormTitle: string;
|
|
1700
|
-
data?: {
|
|
1701
|
-
type
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
maximumValue
|
|
1706
|
-
minimumValue
|
|
1707
|
-
exclusiveMaximum
|
|
1708
|
-
exclusiveMinimum
|
|
1709
|
-
} | undefined;
|
|
1750
|
+
data?: z.objectInputType<{
|
|
1751
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1752
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1753
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1754
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1755
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1756
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1757
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1758
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1759
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1710
1760
|
description?: string | undefined;
|
|
1711
1761
|
tags?: string[] | undefined;
|
|
1712
1762
|
documentation?: ({
|
|
@@ -1727,16 +1777,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1727
1777
|
sortOrder?: number | undefined;
|
|
1728
1778
|
}[];
|
|
1729
1779
|
longFormTitle: string;
|
|
1730
|
-
data?: {
|
|
1731
|
-
type
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
maximumValue
|
|
1736
|
-
minimumValue
|
|
1737
|
-
exclusiveMaximum
|
|
1738
|
-
exclusiveMinimum
|
|
1739
|
-
} | undefined;
|
|
1780
|
+
data?: z.objectInputType<{
|
|
1781
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1782
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1783
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1784
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1785
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1786
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1787
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1788
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1789
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1740
1790
|
description?: string | undefined;
|
|
1741
1791
|
tags?: string[] | undefined;
|
|
1742
1792
|
documentation?: ({
|
|
@@ -1758,16 +1808,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1758
1808
|
category?: string | undefined;
|
|
1759
1809
|
}[];
|
|
1760
1810
|
longFormTitle: string;
|
|
1761
|
-
data?: {
|
|
1762
|
-
type
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
maximumValue
|
|
1767
|
-
minimumValue
|
|
1768
|
-
exclusiveMaximum
|
|
1769
|
-
exclusiveMinimum
|
|
1770
|
-
} | undefined;
|
|
1811
|
+
data?: z.objectInputType<{
|
|
1812
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1813
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1814
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1815
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1816
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1817
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1818
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1819
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1820
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1771
1821
|
tags?: string[] | undefined;
|
|
1772
1822
|
documentation?: ({
|
|
1773
1823
|
type: "pdf";
|