@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
|
@@ -49,7 +49,7 @@ export declare const themeStyleSchema: z.ZodObject<{
|
|
|
49
49
|
blue: number;
|
|
50
50
|
};
|
|
51
51
|
}>;
|
|
52
|
-
export declare const themeOptionsSchema: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
52
|
+
export declare const themeOptionsSchema: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
53
53
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
55
|
hideCodeInReport: boolean;
|
|
@@ -91,7 +91,13 @@ export declare const themeOptionsSchema: z.ZodIntersection<z.ZodIntersection<z.Z
|
|
|
91
91
|
}, {
|
|
92
92
|
documentTreeFolderTextFormat: string;
|
|
93
93
|
hideFromDocumentTree?: false | undefined;
|
|
94
|
-
}>]
|
|
94
|
+
}>]>>, z.ZodObject<{
|
|
95
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
96
|
+
}, "strip", z.ZodTypeAny, {
|
|
97
|
+
reportTextFormat?: string | undefined;
|
|
98
|
+
}, {
|
|
99
|
+
reportTextFormat?: string | undefined;
|
|
100
|
+
}>>;
|
|
95
101
|
export declare const themeSchema: z.ZodObject<{
|
|
96
102
|
title: z.ZodString;
|
|
97
103
|
longFormTitle: z.ZodString;
|
|
@@ -152,25 +158,25 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
152
158
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
153
159
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
154
160
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
155
|
-
}, "strip", z.
|
|
156
|
-
type
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
maximumValue
|
|
161
|
-
minimumValue
|
|
162
|
-
exclusiveMaximum
|
|
163
|
-
exclusiveMinimum
|
|
164
|
-
}, {
|
|
165
|
-
type
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
maximumValue
|
|
170
|
-
minimumValue
|
|
171
|
-
exclusiveMaximum
|
|
172
|
-
exclusiveMinimum
|
|
173
|
-
}
|
|
161
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
162
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
163
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
164
|
+
text: z.ZodOptional<z.ZodString>;
|
|
165
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
166
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
167
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
168
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
169
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
170
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
171
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
172
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
173
|
+
text: z.ZodOptional<z.ZodString>;
|
|
174
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
175
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
176
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
177
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
178
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
179
|
+
}, z.ZodAny, "strip">>>;
|
|
174
180
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
175
181
|
} & {
|
|
176
182
|
type: z.ZodLiteral<"theme">;
|
|
@@ -284,25 +290,25 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
284
290
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
285
291
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
286
292
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
287
|
-
}, "strip", z.
|
|
288
|
-
type
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
maximumValue
|
|
293
|
-
minimumValue
|
|
294
|
-
exclusiveMaximum
|
|
295
|
-
exclusiveMinimum
|
|
296
|
-
}, {
|
|
297
|
-
type
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
maximumValue
|
|
302
|
-
minimumValue
|
|
303
|
-
exclusiveMaximum
|
|
304
|
-
exclusiveMinimum
|
|
305
|
-
}
|
|
293
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
294
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
295
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
296
|
+
text: z.ZodOptional<z.ZodString>;
|
|
297
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
298
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
299
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
300
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
301
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
302
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
303
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
304
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
305
|
+
text: z.ZodOptional<z.ZodString>;
|
|
306
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
307
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
308
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
309
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
310
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
311
|
+
}, z.ZodAny, "strip">>>;
|
|
306
312
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
307
313
|
} & {
|
|
308
314
|
type: z.ZodLiteral<"criterion">;
|
|
@@ -366,25 +372,25 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
366
372
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
367
373
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
368
374
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
369
|
-
}, "strip", z.
|
|
370
|
-
type
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
maximumValue
|
|
375
|
-
minimumValue
|
|
376
|
-
exclusiveMaximum
|
|
377
|
-
exclusiveMinimum
|
|
378
|
-
}, {
|
|
379
|
-
type
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
maximumValue
|
|
384
|
-
minimumValue
|
|
385
|
-
exclusiveMaximum
|
|
386
|
-
exclusiveMinimum
|
|
387
|
-
}
|
|
375
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
376
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
377
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
378
|
+
text: z.ZodOptional<z.ZodString>;
|
|
379
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
380
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
383
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
384
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
385
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
386
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
387
|
+
text: z.ZodOptional<z.ZodString>;
|
|
388
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
389
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
390
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
391
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
392
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
393
|
+
}, z.ZodAny, "strip">>>;
|
|
388
394
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
389
395
|
} & {
|
|
390
396
|
type: z.ZodLiteral<"task-group">;
|
|
@@ -450,25 +456,25 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
450
456
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
451
457
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
452
458
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
453
|
-
}, "strip", z.
|
|
454
|
-
type
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
maximumValue
|
|
459
|
-
minimumValue
|
|
460
|
-
exclusiveMaximum
|
|
461
|
-
exclusiveMinimum
|
|
462
|
-
}, {
|
|
463
|
-
type
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
maximumValue
|
|
468
|
-
minimumValue
|
|
469
|
-
exclusiveMaximum
|
|
470
|
-
exclusiveMinimum
|
|
471
|
-
}
|
|
459
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
460
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
461
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
462
|
+
text: z.ZodOptional<z.ZodString>;
|
|
463
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
464
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
465
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
466
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
467
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
468
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
469
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
470
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
471
|
+
text: z.ZodOptional<z.ZodString>;
|
|
472
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
473
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
474
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
475
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
476
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
477
|
+
}, z.ZodAny, "strip">>>;
|
|
472
478
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
473
479
|
} & {
|
|
474
480
|
type: z.ZodLiteral<"task">;
|
|
@@ -534,25 +540,25 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
534
540
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
535
541
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
536
542
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
537
|
-
}, "strip", z.
|
|
538
|
-
type
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
maximumValue
|
|
543
|
-
minimumValue
|
|
544
|
-
exclusiveMaximum
|
|
545
|
-
exclusiveMinimum
|
|
546
|
-
}, {
|
|
547
|
-
type
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
maximumValue
|
|
552
|
-
minimumValue
|
|
553
|
-
exclusiveMaximum
|
|
554
|
-
exclusiveMinimum
|
|
555
|
-
}
|
|
543
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
544
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
545
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
546
|
+
text: z.ZodOptional<z.ZodString>;
|
|
547
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
548
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
549
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
550
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
551
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
552
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
553
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
554
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
555
|
+
text: z.ZodOptional<z.ZodString>;
|
|
556
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
557
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
558
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
559
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
560
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
561
|
+
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
556
562
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
557
563
|
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">]>>;
|
|
558
564
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -801,6 +807,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
801
807
|
minimumValue?: number | undefined;
|
|
802
808
|
exclusiveMaximum?: number | undefined;
|
|
803
809
|
exclusiveMinimum?: number | undefined;
|
|
810
|
+
} & {
|
|
811
|
+
[k: string]: any;
|
|
804
812
|
} & {
|
|
805
813
|
readOnly?: boolean | undefined;
|
|
806
814
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -884,6 +892,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
884
892
|
minimumValue?: number | undefined;
|
|
885
893
|
exclusiveMaximum?: number | undefined;
|
|
886
894
|
exclusiveMinimum?: number | undefined;
|
|
895
|
+
} & {
|
|
896
|
+
[k: string]: any;
|
|
887
897
|
} & {
|
|
888
898
|
readOnly?: boolean | undefined;
|
|
889
899
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -907,7 +917,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
907
917
|
})[] | undefined;
|
|
908
918
|
sortOrder?: number | undefined;
|
|
909
919
|
}>>, "many">;
|
|
910
|
-
options: z.ZodIntersection<z.ZodObject<{
|
|
920
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
911
921
|
breadcrumbTextFormat: z.ZodString;
|
|
912
922
|
documentTreeFolderTextFormat: z.ZodString;
|
|
913
923
|
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -925,6 +935,12 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
925
935
|
criteriaTreeElementTextFormat: string;
|
|
926
936
|
}, {
|
|
927
937
|
criteriaTreeElementTextFormat: string;
|
|
938
|
+
}>>, z.ZodObject<{
|
|
939
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
940
|
+
}, "strip", z.ZodTypeAny, {
|
|
941
|
+
reportTextFormat?: string | undefined;
|
|
942
|
+
}, {
|
|
943
|
+
reportTextFormat?: string | undefined;
|
|
928
944
|
}>>;
|
|
929
945
|
}, "strip", z.ZodTypeAny, {
|
|
930
946
|
code: string;
|
|
@@ -936,6 +952,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
936
952
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
937
953
|
} & {
|
|
938
954
|
criteriaTreeElementTextFormat: string;
|
|
955
|
+
} & {
|
|
956
|
+
reportTextFormat?: string | undefined;
|
|
939
957
|
};
|
|
940
958
|
items: {
|
|
941
959
|
code: string;
|
|
@@ -998,6 +1016,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
998
1016
|
minimumValue?: number | undefined;
|
|
999
1017
|
exclusiveMaximum?: number | undefined;
|
|
1000
1018
|
exclusiveMinimum?: number | undefined;
|
|
1019
|
+
} & {
|
|
1020
|
+
[k: string]: any;
|
|
1001
1021
|
} & {
|
|
1002
1022
|
readOnly?: boolean | undefined;
|
|
1003
1023
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1022,16 +1042,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1022
1042
|
sortOrder?: number | undefined;
|
|
1023
1043
|
}[];
|
|
1024
1044
|
longFormTitle: string;
|
|
1025
|
-
data?: {
|
|
1026
|
-
type
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
maximumValue
|
|
1031
|
-
minimumValue
|
|
1032
|
-
exclusiveMaximum
|
|
1033
|
-
exclusiveMinimum
|
|
1034
|
-
} | undefined;
|
|
1045
|
+
data?: z.objectOutputType<{
|
|
1046
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1047
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1048
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1049
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1050
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1051
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1052
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1053
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1054
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1035
1055
|
description?: string | undefined;
|
|
1036
1056
|
tags?: string[] | undefined;
|
|
1037
1057
|
documentation?: ({
|
|
@@ -1060,6 +1080,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1060
1080
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1061
1081
|
} & {
|
|
1062
1082
|
criteriaTreeElementTextFormat: string;
|
|
1083
|
+
} & {
|
|
1084
|
+
reportTextFormat?: string | undefined;
|
|
1063
1085
|
};
|
|
1064
1086
|
items: {
|
|
1065
1087
|
code: string;
|
|
@@ -1122,6 +1144,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1122
1144
|
minimumValue?: number | undefined;
|
|
1123
1145
|
exclusiveMaximum?: number | undefined;
|
|
1124
1146
|
exclusiveMinimum?: number | undefined;
|
|
1147
|
+
} & {
|
|
1148
|
+
[k: string]: any;
|
|
1125
1149
|
} & {
|
|
1126
1150
|
readOnly?: boolean | undefined;
|
|
1127
1151
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1146,16 +1170,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1146
1170
|
sortOrder?: number | undefined;
|
|
1147
1171
|
}[];
|
|
1148
1172
|
longFormTitle: string;
|
|
1149
|
-
data?: {
|
|
1150
|
-
type
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
maximumValue
|
|
1155
|
-
minimumValue
|
|
1156
|
-
exclusiveMaximum
|
|
1157
|
-
exclusiveMinimum
|
|
1158
|
-
} | undefined;
|
|
1173
|
+
data?: z.objectInputType<{
|
|
1174
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1175
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1176
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1177
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1178
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1179
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1180
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1181
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1182
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1159
1183
|
description?: string | undefined;
|
|
1160
1184
|
tags?: string[] | undefined;
|
|
1161
1185
|
documentation?: ({
|
|
@@ -1189,6 +1213,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1189
1213
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
1190
1214
|
} & {
|
|
1191
1215
|
criteriaTreeElementTextFormat: string;
|
|
1216
|
+
} & {
|
|
1217
|
+
reportTextFormat?: string | undefined;
|
|
1192
1218
|
};
|
|
1193
1219
|
items: {
|
|
1194
1220
|
code: string;
|
|
@@ -1251,6 +1277,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1251
1277
|
minimumValue?: number | undefined;
|
|
1252
1278
|
exclusiveMaximum?: number | undefined;
|
|
1253
1279
|
exclusiveMinimum?: number | undefined;
|
|
1280
|
+
} & {
|
|
1281
|
+
[k: string]: any;
|
|
1254
1282
|
} & {
|
|
1255
1283
|
readOnly?: boolean | undefined;
|
|
1256
1284
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1275,16 +1303,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1275
1303
|
sortOrder?: number | undefined;
|
|
1276
1304
|
}[];
|
|
1277
1305
|
longFormTitle: string;
|
|
1278
|
-
data?: {
|
|
1279
|
-
type
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
maximumValue
|
|
1284
|
-
minimumValue
|
|
1285
|
-
exclusiveMaximum
|
|
1286
|
-
exclusiveMinimum
|
|
1287
|
-
} | undefined;
|
|
1306
|
+
data?: z.objectOutputType<{
|
|
1307
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1308
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1309
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1310
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1311
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1312
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1313
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1314
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1315
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1288
1316
|
description?: string | undefined;
|
|
1289
1317
|
tags?: string[] | undefined;
|
|
1290
1318
|
documentation?: ({
|
|
@@ -1305,16 +1333,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1305
1333
|
sortOrder?: number | undefined;
|
|
1306
1334
|
}[];
|
|
1307
1335
|
longFormTitle: string;
|
|
1308
|
-
data?: {
|
|
1309
|
-
type
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
maximumValue
|
|
1314
|
-
minimumValue
|
|
1315
|
-
exclusiveMaximum
|
|
1316
|
-
exclusiveMinimum
|
|
1317
|
-
} | undefined;
|
|
1336
|
+
data?: z.objectOutputType<{
|
|
1337
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1338
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1339
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1340
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1341
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1342
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1343
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1344
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1345
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1318
1346
|
description?: string | undefined;
|
|
1319
1347
|
tags?: string[] | undefined;
|
|
1320
1348
|
documentation?: ({
|
|
@@ -1348,6 +1376,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1348
1376
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1349
1377
|
} & {
|
|
1350
1378
|
criteriaTreeElementTextFormat: string;
|
|
1379
|
+
} & {
|
|
1380
|
+
reportTextFormat?: string | undefined;
|
|
1351
1381
|
};
|
|
1352
1382
|
items: {
|
|
1353
1383
|
code: string;
|
|
@@ -1410,6 +1440,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1410
1440
|
minimumValue?: number | undefined;
|
|
1411
1441
|
exclusiveMaximum?: number | undefined;
|
|
1412
1442
|
exclusiveMinimum?: number | undefined;
|
|
1443
|
+
} & {
|
|
1444
|
+
[k: string]: any;
|
|
1413
1445
|
} & {
|
|
1414
1446
|
readOnly?: boolean | undefined;
|
|
1415
1447
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1434,16 +1466,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1434
1466
|
sortOrder?: number | undefined;
|
|
1435
1467
|
}[];
|
|
1436
1468
|
longFormTitle: string;
|
|
1437
|
-
data?: {
|
|
1438
|
-
type
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
maximumValue
|
|
1443
|
-
minimumValue
|
|
1444
|
-
exclusiveMaximum
|
|
1445
|
-
exclusiveMinimum
|
|
1446
|
-
} | undefined;
|
|
1469
|
+
data?: z.objectInputType<{
|
|
1470
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1471
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1472
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1473
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1474
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1475
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1476
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1477
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1478
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1447
1479
|
description?: string | undefined;
|
|
1448
1480
|
tags?: string[] | undefined;
|
|
1449
1481
|
documentation?: ({
|
|
@@ -1464,16 +1496,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1464
1496
|
sortOrder?: number | undefined;
|
|
1465
1497
|
}[];
|
|
1466
1498
|
longFormTitle: string;
|
|
1467
|
-
data?: {
|
|
1468
|
-
type
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
maximumValue
|
|
1473
|
-
minimumValue
|
|
1474
|
-
exclusiveMaximum
|
|
1475
|
-
exclusiveMinimum
|
|
1476
|
-
} | undefined;
|
|
1499
|
+
data?: z.objectInputType<{
|
|
1500
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1501
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1502
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1503
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1504
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1505
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1506
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1507
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1508
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1477
1509
|
description?: string | undefined;
|
|
1478
1510
|
tags?: string[] | undefined;
|
|
1479
1511
|
documentation?: ({
|
|
@@ -1494,7 +1526,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1494
1526
|
sortOrder?: number | undefined;
|
|
1495
1527
|
category?: string | undefined;
|
|
1496
1528
|
}>>, "many">;
|
|
1497
|
-
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1529
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1498
1530
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1499
1531
|
}, "strip", z.ZodTypeAny, {
|
|
1500
1532
|
hideCodeInReport: boolean;
|
|
@@ -1542,12 +1574,18 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1542
1574
|
criteriaTreeElementTextFormat: string;
|
|
1543
1575
|
}, {
|
|
1544
1576
|
criteriaTreeElementTextFormat: string;
|
|
1577
|
+
}>>, z.ZodObject<{
|
|
1578
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
1579
|
+
}, "strip", z.ZodTypeAny, {
|
|
1580
|
+
reportTextFormat?: string | undefined;
|
|
1581
|
+
}, {
|
|
1582
|
+
reportTextFormat?: string | undefined;
|
|
1545
1583
|
}>>;
|
|
1546
1584
|
}, "strip", z.ZodTypeAny, {
|
|
1547
1585
|
code: string;
|
|
1548
1586
|
type: "criterion";
|
|
1549
1587
|
title: string;
|
|
1550
|
-
options: (({
|
|
1588
|
+
options: ((({
|
|
1551
1589
|
hideCodeInReport: boolean;
|
|
1552
1590
|
} & ({
|
|
1553
1591
|
hideFromBreadcrumbs: true;
|
|
@@ -1563,6 +1601,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1563
1601
|
hideFromDocumentTree?: false | undefined;
|
|
1564
1602
|
})) & {
|
|
1565
1603
|
criteriaTreeElementTextFormat: string;
|
|
1604
|
+
}) & {
|
|
1605
|
+
reportTextFormat?: string | undefined;
|
|
1566
1606
|
};
|
|
1567
1607
|
items: {
|
|
1568
1608
|
code: string;
|
|
@@ -1578,6 +1618,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1578
1618
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
1579
1619
|
} & {
|
|
1580
1620
|
criteriaTreeElementTextFormat: string;
|
|
1621
|
+
} & {
|
|
1622
|
+
reportTextFormat?: string | undefined;
|
|
1581
1623
|
};
|
|
1582
1624
|
items: {
|
|
1583
1625
|
code: string;
|
|
@@ -1640,6 +1682,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1640
1682
|
minimumValue?: number | undefined;
|
|
1641
1683
|
exclusiveMaximum?: number | undefined;
|
|
1642
1684
|
exclusiveMinimum?: number | undefined;
|
|
1685
|
+
} & {
|
|
1686
|
+
[k: string]: any;
|
|
1643
1687
|
} & {
|
|
1644
1688
|
readOnly?: boolean | undefined;
|
|
1645
1689
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1664,16 +1708,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1664
1708
|
sortOrder?: number | undefined;
|
|
1665
1709
|
}[];
|
|
1666
1710
|
longFormTitle: string;
|
|
1667
|
-
data?: {
|
|
1668
|
-
type
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
maximumValue
|
|
1673
|
-
minimumValue
|
|
1674
|
-
exclusiveMaximum
|
|
1675
|
-
exclusiveMinimum
|
|
1676
|
-
} | undefined;
|
|
1711
|
+
data?: z.objectOutputType<{
|
|
1712
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1713
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1714
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1715
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1716
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1717
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1718
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1719
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1720
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1677
1721
|
description?: string | undefined;
|
|
1678
1722
|
tags?: string[] | undefined;
|
|
1679
1723
|
documentation?: ({
|
|
@@ -1694,16 +1738,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1694
1738
|
sortOrder?: number | undefined;
|
|
1695
1739
|
}[];
|
|
1696
1740
|
longFormTitle: string;
|
|
1697
|
-
data?: {
|
|
1698
|
-
type
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
maximumValue
|
|
1703
|
-
minimumValue
|
|
1704
|
-
exclusiveMaximum
|
|
1705
|
-
exclusiveMinimum
|
|
1706
|
-
} | undefined;
|
|
1741
|
+
data?: z.objectOutputType<{
|
|
1742
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1743
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1744
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1745
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1746
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1747
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1748
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1749
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1750
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1707
1751
|
description?: string | undefined;
|
|
1708
1752
|
tags?: string[] | undefined;
|
|
1709
1753
|
documentation?: ({
|
|
@@ -1725,16 +1769,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1725
1769
|
category?: string | undefined;
|
|
1726
1770
|
}[];
|
|
1727
1771
|
longFormTitle: string;
|
|
1728
|
-
data?: {
|
|
1729
|
-
type
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
maximumValue
|
|
1734
|
-
minimumValue
|
|
1735
|
-
exclusiveMaximum
|
|
1736
|
-
exclusiveMinimum
|
|
1737
|
-
} | undefined;
|
|
1772
|
+
data?: z.objectOutputType<{
|
|
1773
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1774
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1775
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1776
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1777
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1778
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1779
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1780
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1781
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1738
1782
|
tags?: string[] | undefined;
|
|
1739
1783
|
documentation?: ({
|
|
1740
1784
|
type: "pdf";
|
|
@@ -1756,7 +1800,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1756
1800
|
code: string;
|
|
1757
1801
|
type: "criterion";
|
|
1758
1802
|
title: string;
|
|
1759
|
-
options: (({
|
|
1803
|
+
options: ((({
|
|
1760
1804
|
hideCodeInReport?: boolean | undefined;
|
|
1761
1805
|
} & ({
|
|
1762
1806
|
hideFromBreadcrumbs: true;
|
|
@@ -1772,6 +1816,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1772
1816
|
hideFromDocumentTree?: false | undefined;
|
|
1773
1817
|
})) & {
|
|
1774
1818
|
criteriaTreeElementTextFormat: string;
|
|
1819
|
+
}) & {
|
|
1820
|
+
reportTextFormat?: string | undefined;
|
|
1775
1821
|
};
|
|
1776
1822
|
items: {
|
|
1777
1823
|
code: string;
|
|
@@ -1787,6 +1833,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1787
1833
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1788
1834
|
} & {
|
|
1789
1835
|
criteriaTreeElementTextFormat: string;
|
|
1836
|
+
} & {
|
|
1837
|
+
reportTextFormat?: string | undefined;
|
|
1790
1838
|
};
|
|
1791
1839
|
items: {
|
|
1792
1840
|
code: string;
|
|
@@ -1849,6 +1897,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1849
1897
|
minimumValue?: number | undefined;
|
|
1850
1898
|
exclusiveMaximum?: number | undefined;
|
|
1851
1899
|
exclusiveMinimum?: number | undefined;
|
|
1900
|
+
} & {
|
|
1901
|
+
[k: string]: any;
|
|
1852
1902
|
} & {
|
|
1853
1903
|
readOnly?: boolean | undefined;
|
|
1854
1904
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1873,16 +1923,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1873
1923
|
sortOrder?: number | undefined;
|
|
1874
1924
|
}[];
|
|
1875
1925
|
longFormTitle: string;
|
|
1876
|
-
data?: {
|
|
1877
|
-
type
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
maximumValue
|
|
1882
|
-
minimumValue
|
|
1883
|
-
exclusiveMaximum
|
|
1884
|
-
exclusiveMinimum
|
|
1885
|
-
} | undefined;
|
|
1926
|
+
data?: z.objectInputType<{
|
|
1927
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1928
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1929
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1930
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1931
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1932
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1933
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1934
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1935
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1886
1936
|
description?: string | undefined;
|
|
1887
1937
|
tags?: string[] | undefined;
|
|
1888
1938
|
documentation?: ({
|
|
@@ -1903,16 +1953,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1903
1953
|
sortOrder?: number | undefined;
|
|
1904
1954
|
}[];
|
|
1905
1955
|
longFormTitle: string;
|
|
1906
|
-
data?: {
|
|
1907
|
-
type
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
maximumValue
|
|
1912
|
-
minimumValue
|
|
1913
|
-
exclusiveMaximum
|
|
1914
|
-
exclusiveMinimum
|
|
1915
|
-
} | undefined;
|
|
1956
|
+
data?: z.objectInputType<{
|
|
1957
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1958
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1959
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1960
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1961
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1962
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1963
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1964
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1965
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1916
1966
|
description?: string | undefined;
|
|
1917
1967
|
tags?: string[] | undefined;
|
|
1918
1968
|
documentation?: ({
|
|
@@ -1934,16 +1984,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1934
1984
|
category?: string | undefined;
|
|
1935
1985
|
}[];
|
|
1936
1986
|
longFormTitle: string;
|
|
1937
|
-
data?: {
|
|
1938
|
-
type
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
maximumValue
|
|
1943
|
-
minimumValue
|
|
1944
|
-
exclusiveMaximum
|
|
1945
|
-
exclusiveMinimum
|
|
1946
|
-
} | undefined;
|
|
1987
|
+
data?: z.objectInputType<{
|
|
1988
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1989
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1990
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1991
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1992
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1993
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1994
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1995
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1996
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1947
1997
|
tags?: string[] | undefined;
|
|
1948
1998
|
documentation?: ({
|
|
1949
1999
|
type: "pdf";
|
|
@@ -1962,7 +2012,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1962
2012
|
})[] | undefined;
|
|
1963
2013
|
sortOrder?: number | undefined;
|
|
1964
2014
|
}>, "many">;
|
|
1965
|
-
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2015
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1966
2016
|
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1967
2017
|
}, "strip", z.ZodTypeAny, {
|
|
1968
2018
|
hideCodeInReport: boolean;
|
|
@@ -2004,12 +2054,18 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2004
2054
|
}, {
|
|
2005
2055
|
documentTreeFolderTextFormat: string;
|
|
2006
2056
|
hideFromDocumentTree?: false | undefined;
|
|
2007
|
-
}>]
|
|
2057
|
+
}>]>>, z.ZodObject<{
|
|
2058
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
2059
|
+
}, "strip", z.ZodTypeAny, {
|
|
2060
|
+
reportTextFormat?: string | undefined;
|
|
2061
|
+
}, {
|
|
2062
|
+
reportTextFormat?: string | undefined;
|
|
2063
|
+
}>>;
|
|
2008
2064
|
}, "strip", z.ZodTypeAny, {
|
|
2009
2065
|
code: string;
|
|
2010
2066
|
type: "theme";
|
|
2011
2067
|
title: string;
|
|
2012
|
-
options: ({
|
|
2068
|
+
options: (({
|
|
2013
2069
|
hideCodeInReport: boolean;
|
|
2014
2070
|
} & ({
|
|
2015
2071
|
hideFromBreadcrumbs: true;
|
|
@@ -2023,12 +2079,14 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2023
2079
|
} | {
|
|
2024
2080
|
documentTreeFolderTextFormat: string;
|
|
2025
2081
|
hideFromDocumentTree?: false | undefined;
|
|
2026
|
-
})
|
|
2082
|
+
})) & {
|
|
2083
|
+
reportTextFormat?: string | undefined;
|
|
2084
|
+
};
|
|
2027
2085
|
items: {
|
|
2028
2086
|
code: string;
|
|
2029
2087
|
type: "criterion";
|
|
2030
2088
|
title: string;
|
|
2031
|
-
options: (({
|
|
2089
|
+
options: ((({
|
|
2032
2090
|
hideCodeInReport: boolean;
|
|
2033
2091
|
} & ({
|
|
2034
2092
|
hideFromBreadcrumbs: true;
|
|
@@ -2044,6 +2102,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2044
2102
|
hideFromDocumentTree?: false | undefined;
|
|
2045
2103
|
})) & {
|
|
2046
2104
|
criteriaTreeElementTextFormat: string;
|
|
2105
|
+
}) & {
|
|
2106
|
+
reportTextFormat?: string | undefined;
|
|
2047
2107
|
};
|
|
2048
2108
|
items: {
|
|
2049
2109
|
code: string;
|
|
@@ -2059,6 +2119,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2059
2119
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
2060
2120
|
} & {
|
|
2061
2121
|
criteriaTreeElementTextFormat: string;
|
|
2122
|
+
} & {
|
|
2123
|
+
reportTextFormat?: string | undefined;
|
|
2062
2124
|
};
|
|
2063
2125
|
items: {
|
|
2064
2126
|
code: string;
|
|
@@ -2121,6 +2183,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2121
2183
|
minimumValue?: number | undefined;
|
|
2122
2184
|
exclusiveMaximum?: number | undefined;
|
|
2123
2185
|
exclusiveMinimum?: number | undefined;
|
|
2186
|
+
} & {
|
|
2187
|
+
[k: string]: any;
|
|
2124
2188
|
} & {
|
|
2125
2189
|
readOnly?: boolean | undefined;
|
|
2126
2190
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -2145,16 +2209,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2145
2209
|
sortOrder?: number | undefined;
|
|
2146
2210
|
}[];
|
|
2147
2211
|
longFormTitle: string;
|
|
2148
|
-
data?: {
|
|
2149
|
-
type
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
maximumValue
|
|
2154
|
-
minimumValue
|
|
2155
|
-
exclusiveMaximum
|
|
2156
|
-
exclusiveMinimum
|
|
2157
|
-
} | undefined;
|
|
2212
|
+
data?: z.objectOutputType<{
|
|
2213
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
2214
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
2215
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2216
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
2217
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
2218
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2219
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2220
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2221
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
2158
2222
|
description?: string | undefined;
|
|
2159
2223
|
tags?: string[] | undefined;
|
|
2160
2224
|
documentation?: ({
|
|
@@ -2175,16 +2239,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2175
2239
|
sortOrder?: number | undefined;
|
|
2176
2240
|
}[];
|
|
2177
2241
|
longFormTitle: string;
|
|
2178
|
-
data?: {
|
|
2179
|
-
type
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
maximumValue
|
|
2184
|
-
minimumValue
|
|
2185
|
-
exclusiveMaximum
|
|
2186
|
-
exclusiveMinimum
|
|
2187
|
-
} | undefined;
|
|
2242
|
+
data?: z.objectOutputType<{
|
|
2243
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
2244
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
2245
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2246
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
2247
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
2248
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2249
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2250
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2251
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
2188
2252
|
description?: string | undefined;
|
|
2189
2253
|
tags?: string[] | undefined;
|
|
2190
2254
|
documentation?: ({
|
|
@@ -2206,16 +2270,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2206
2270
|
category?: string | undefined;
|
|
2207
2271
|
}[];
|
|
2208
2272
|
longFormTitle: string;
|
|
2209
|
-
data?: {
|
|
2210
|
-
type
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
maximumValue
|
|
2215
|
-
minimumValue
|
|
2216
|
-
exclusiveMaximum
|
|
2217
|
-
exclusiveMinimum
|
|
2218
|
-
} | undefined;
|
|
2273
|
+
data?: z.objectOutputType<{
|
|
2274
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
2275
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
2276
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2277
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
2278
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
2279
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2280
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2281
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2282
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
2219
2283
|
tags?: string[] | undefined;
|
|
2220
2284
|
documentation?: ({
|
|
2221
2285
|
type: "pdf";
|
|
@@ -2235,16 +2299,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2235
2299
|
sortOrder?: number | undefined;
|
|
2236
2300
|
}[];
|
|
2237
2301
|
longFormTitle: string;
|
|
2238
|
-
data?: {
|
|
2239
|
-
type
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
maximumValue
|
|
2244
|
-
minimumValue
|
|
2245
|
-
exclusiveMaximum
|
|
2246
|
-
exclusiveMinimum
|
|
2247
|
-
} | undefined;
|
|
2302
|
+
data?: z.objectOutputType<{
|
|
2303
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
2304
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
2305
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2306
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
2307
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
2308
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2309
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2310
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2311
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
2248
2312
|
style?: {
|
|
2249
2313
|
primaryColor: string | {
|
|
2250
2314
|
red: number;
|
|
@@ -2278,7 +2342,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2278
2342
|
code: string;
|
|
2279
2343
|
type: "theme";
|
|
2280
2344
|
title: string;
|
|
2281
|
-
options: ({
|
|
2345
|
+
options: (({
|
|
2282
2346
|
hideCodeInReport?: boolean | undefined;
|
|
2283
2347
|
} & ({
|
|
2284
2348
|
hideFromBreadcrumbs: true;
|
|
@@ -2292,12 +2356,14 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2292
2356
|
} | {
|
|
2293
2357
|
documentTreeFolderTextFormat: string;
|
|
2294
2358
|
hideFromDocumentTree?: false | undefined;
|
|
2295
|
-
})
|
|
2359
|
+
})) & {
|
|
2360
|
+
reportTextFormat?: string | undefined;
|
|
2361
|
+
};
|
|
2296
2362
|
items: {
|
|
2297
2363
|
code: string;
|
|
2298
2364
|
type: "criterion";
|
|
2299
2365
|
title: string;
|
|
2300
|
-
options: (({
|
|
2366
|
+
options: ((({
|
|
2301
2367
|
hideCodeInReport?: boolean | undefined;
|
|
2302
2368
|
} & ({
|
|
2303
2369
|
hideFromBreadcrumbs: true;
|
|
@@ -2313,6 +2379,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2313
2379
|
hideFromDocumentTree?: false | undefined;
|
|
2314
2380
|
})) & {
|
|
2315
2381
|
criteriaTreeElementTextFormat: string;
|
|
2382
|
+
}) & {
|
|
2383
|
+
reportTextFormat?: string | undefined;
|
|
2316
2384
|
};
|
|
2317
2385
|
items: {
|
|
2318
2386
|
code: string;
|
|
@@ -2328,6 +2396,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2328
2396
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
2329
2397
|
} & {
|
|
2330
2398
|
criteriaTreeElementTextFormat: string;
|
|
2399
|
+
} & {
|
|
2400
|
+
reportTextFormat?: string | undefined;
|
|
2331
2401
|
};
|
|
2332
2402
|
items: {
|
|
2333
2403
|
code: string;
|
|
@@ -2390,6 +2460,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2390
2460
|
minimumValue?: number | undefined;
|
|
2391
2461
|
exclusiveMaximum?: number | undefined;
|
|
2392
2462
|
exclusiveMinimum?: number | undefined;
|
|
2463
|
+
} & {
|
|
2464
|
+
[k: string]: any;
|
|
2393
2465
|
} & {
|
|
2394
2466
|
readOnly?: boolean | undefined;
|
|
2395
2467
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -2414,16 +2486,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2414
2486
|
sortOrder?: number | undefined;
|
|
2415
2487
|
}[];
|
|
2416
2488
|
longFormTitle: string;
|
|
2417
|
-
data?: {
|
|
2418
|
-
type
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
maximumValue
|
|
2423
|
-
minimumValue
|
|
2424
|
-
exclusiveMaximum
|
|
2425
|
-
exclusiveMinimum
|
|
2426
|
-
} | undefined;
|
|
2489
|
+
data?: z.objectInputType<{
|
|
2490
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
2491
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
2492
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2493
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
2494
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
2495
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2496
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2497
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2498
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
2427
2499
|
description?: string | undefined;
|
|
2428
2500
|
tags?: string[] | undefined;
|
|
2429
2501
|
documentation?: ({
|
|
@@ -2444,16 +2516,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2444
2516
|
sortOrder?: number | undefined;
|
|
2445
2517
|
}[];
|
|
2446
2518
|
longFormTitle: string;
|
|
2447
|
-
data?: {
|
|
2448
|
-
type
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
maximumValue
|
|
2453
|
-
minimumValue
|
|
2454
|
-
exclusiveMaximum
|
|
2455
|
-
exclusiveMinimum
|
|
2456
|
-
} | undefined;
|
|
2519
|
+
data?: z.objectInputType<{
|
|
2520
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
2521
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
2522
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2523
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
2524
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
2525
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2526
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2527
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2528
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
2457
2529
|
description?: string | undefined;
|
|
2458
2530
|
tags?: string[] | undefined;
|
|
2459
2531
|
documentation?: ({
|
|
@@ -2475,16 +2547,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2475
2547
|
category?: string | undefined;
|
|
2476
2548
|
}[];
|
|
2477
2549
|
longFormTitle: string;
|
|
2478
|
-
data?: {
|
|
2479
|
-
type
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
maximumValue
|
|
2484
|
-
minimumValue
|
|
2485
|
-
exclusiveMaximum
|
|
2486
|
-
exclusiveMinimum
|
|
2487
|
-
} | undefined;
|
|
2550
|
+
data?: z.objectInputType<{
|
|
2551
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
2552
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
2553
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2554
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
2555
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
2556
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2557
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2558
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2559
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
2488
2560
|
tags?: string[] | undefined;
|
|
2489
2561
|
documentation?: ({
|
|
2490
2562
|
type: "pdf";
|
|
@@ -2504,16 +2576,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2504
2576
|
sortOrder?: number | undefined;
|
|
2505
2577
|
}[];
|
|
2506
2578
|
longFormTitle: string;
|
|
2507
|
-
data?: {
|
|
2508
|
-
type
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
maximumValue
|
|
2513
|
-
minimumValue
|
|
2514
|
-
exclusiveMaximum
|
|
2515
|
-
exclusiveMinimum
|
|
2516
|
-
} | undefined;
|
|
2579
|
+
data?: z.objectInputType<{
|
|
2580
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
2581
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
2582
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2583
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
2584
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
2585
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2586
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2587
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2588
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
2517
2589
|
style?: {
|
|
2518
2590
|
primaryColor: string | {
|
|
2519
2591
|
red: number;
|