@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
|
@@ -59,25 +59,25 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
59
59
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
60
60
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
61
61
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
62
|
-
}, "strip", z.
|
|
63
|
-
type
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
maximumValue
|
|
68
|
-
minimumValue
|
|
69
|
-
exclusiveMaximum
|
|
70
|
-
exclusiveMinimum
|
|
71
|
-
}, {
|
|
72
|
-
type
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
maximumValue
|
|
77
|
-
minimumValue
|
|
78
|
-
exclusiveMaximum
|
|
79
|
-
exclusiveMinimum
|
|
80
|
-
}
|
|
62
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
63
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
64
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
65
|
+
text: z.ZodOptional<z.ZodString>;
|
|
66
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
67
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
68
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
69
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
70
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
71
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
72
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
73
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
74
|
+
text: z.ZodOptional<z.ZodString>;
|
|
75
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
76
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
77
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
78
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
79
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
80
|
+
}, z.ZodAny, "strip">>>;
|
|
81
81
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
82
82
|
} & {
|
|
83
83
|
type: z.ZodLiteral<"task-group">;
|
|
@@ -143,25 +143,25 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
143
143
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
144
144
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
145
145
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
146
|
-
}, "strip", z.
|
|
147
|
-
type
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
maximumValue
|
|
152
|
-
minimumValue
|
|
153
|
-
exclusiveMaximum
|
|
154
|
-
exclusiveMinimum
|
|
155
|
-
}, {
|
|
156
|
-
type
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
maximumValue
|
|
161
|
-
minimumValue
|
|
162
|
-
exclusiveMaximum
|
|
163
|
-
exclusiveMinimum
|
|
164
|
-
}
|
|
146
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
147
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
148
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
149
|
+
text: z.ZodOptional<z.ZodString>;
|
|
150
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
151
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
152
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
153
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
154
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
155
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
156
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
157
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
158
|
+
text: z.ZodOptional<z.ZodString>;
|
|
159
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
160
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
161
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
162
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
163
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
164
|
+
}, z.ZodAny, "strip">>>;
|
|
165
165
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
166
166
|
} & {
|
|
167
167
|
type: z.ZodLiteral<"task">;
|
|
@@ -227,25 +227,25 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
227
227
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
228
228
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
229
229
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
230
|
-
}, "strip", z.
|
|
231
|
-
type
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
maximumValue
|
|
236
|
-
minimumValue
|
|
237
|
-
exclusiveMaximum
|
|
238
|
-
exclusiveMinimum
|
|
239
|
-
}, {
|
|
240
|
-
type
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
maximumValue
|
|
245
|
-
minimumValue
|
|
246
|
-
exclusiveMaximum
|
|
247
|
-
exclusiveMinimum
|
|
248
|
-
}
|
|
230
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
231
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
232
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
233
|
+
text: z.ZodOptional<z.ZodString>;
|
|
234
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
235
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
236
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
237
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
238
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
239
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
240
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
241
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
242
|
+
text: z.ZodOptional<z.ZodString>;
|
|
243
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
244
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
245
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
246
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
247
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
248
|
+
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
249
249
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
250
250
|
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">]>>;
|
|
251
251
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -494,6 +494,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
494
494
|
minimumValue?: number | undefined;
|
|
495
495
|
exclusiveMaximum?: number | undefined;
|
|
496
496
|
exclusiveMinimum?: number | undefined;
|
|
497
|
+
} & {
|
|
498
|
+
[k: string]: any;
|
|
497
499
|
} & {
|
|
498
500
|
readOnly?: boolean | undefined;
|
|
499
501
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -577,6 +579,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
577
579
|
minimumValue?: number | undefined;
|
|
578
580
|
exclusiveMaximum?: number | undefined;
|
|
579
581
|
exclusiveMinimum?: number | undefined;
|
|
582
|
+
} & {
|
|
583
|
+
[k: string]: any;
|
|
580
584
|
} & {
|
|
581
585
|
readOnly?: boolean | undefined;
|
|
582
586
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -600,7 +604,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
600
604
|
})[] | undefined;
|
|
601
605
|
sortOrder?: number | undefined;
|
|
602
606
|
}>>, "many">;
|
|
603
|
-
options: z.ZodIntersection<z.ZodObject<{
|
|
607
|
+
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
604
608
|
breadcrumbTextFormat: z.ZodString;
|
|
605
609
|
documentTreeFolderTextFormat: z.ZodString;
|
|
606
610
|
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -618,6 +622,12 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
618
622
|
criteriaTreeElementTextFormat: string;
|
|
619
623
|
}, {
|
|
620
624
|
criteriaTreeElementTextFormat: string;
|
|
625
|
+
}>>, z.ZodObject<{
|
|
626
|
+
reportTextFormat: z.ZodOptional<z.ZodString>;
|
|
627
|
+
}, "strip", z.ZodTypeAny, {
|
|
628
|
+
reportTextFormat?: string | undefined;
|
|
629
|
+
}, {
|
|
630
|
+
reportTextFormat?: string | undefined;
|
|
621
631
|
}>>;
|
|
622
632
|
}, "strip", z.ZodTypeAny, {
|
|
623
633
|
code: string;
|
|
@@ -629,6 +639,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
629
639
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
630
640
|
} & {
|
|
631
641
|
criteriaTreeElementTextFormat: string;
|
|
642
|
+
} & {
|
|
643
|
+
reportTextFormat?: string | undefined;
|
|
632
644
|
};
|
|
633
645
|
items: {
|
|
634
646
|
code: string;
|
|
@@ -691,6 +703,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
691
703
|
minimumValue?: number | undefined;
|
|
692
704
|
exclusiveMaximum?: number | undefined;
|
|
693
705
|
exclusiveMinimum?: number | undefined;
|
|
706
|
+
} & {
|
|
707
|
+
[k: string]: any;
|
|
694
708
|
} & {
|
|
695
709
|
readOnly?: boolean | undefined;
|
|
696
710
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -715,16 +729,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
715
729
|
sortOrder?: number | undefined;
|
|
716
730
|
}[];
|
|
717
731
|
longFormTitle: string;
|
|
718
|
-
data?: {
|
|
719
|
-
type
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
maximumValue
|
|
724
|
-
minimumValue
|
|
725
|
-
exclusiveMaximum
|
|
726
|
-
exclusiveMinimum
|
|
727
|
-
} | undefined;
|
|
732
|
+
data?: z.objectOutputType<{
|
|
733
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
734
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
735
|
+
text: z.ZodOptional<z.ZodString>;
|
|
736
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
737
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
738
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
739
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
740
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
741
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
728
742
|
description?: string | undefined;
|
|
729
743
|
tags?: string[] | undefined;
|
|
730
744
|
documentation?: ({
|
|
@@ -753,6 +767,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
753
767
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
754
768
|
} & {
|
|
755
769
|
criteriaTreeElementTextFormat: string;
|
|
770
|
+
} & {
|
|
771
|
+
reportTextFormat?: string | undefined;
|
|
756
772
|
};
|
|
757
773
|
items: {
|
|
758
774
|
code: string;
|
|
@@ -815,6 +831,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
815
831
|
minimumValue?: number | undefined;
|
|
816
832
|
exclusiveMaximum?: number | undefined;
|
|
817
833
|
exclusiveMinimum?: number | undefined;
|
|
834
|
+
} & {
|
|
835
|
+
[k: string]: any;
|
|
818
836
|
} & {
|
|
819
837
|
readOnly?: boolean | undefined;
|
|
820
838
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -839,16 +857,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
839
857
|
sortOrder?: number | undefined;
|
|
840
858
|
}[];
|
|
841
859
|
longFormTitle: string;
|
|
842
|
-
data?: {
|
|
843
|
-
type
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
maximumValue
|
|
848
|
-
minimumValue
|
|
849
|
-
exclusiveMaximum
|
|
850
|
-
exclusiveMinimum
|
|
851
|
-
} | undefined;
|
|
860
|
+
data?: z.objectInputType<{
|
|
861
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
862
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
863
|
+
text: z.ZodOptional<z.ZodString>;
|
|
864
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
865
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
866
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
867
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
868
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
869
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
852
870
|
description?: string | undefined;
|
|
853
871
|
tags?: string[] | undefined;
|
|
854
872
|
documentation?: ({
|
|
@@ -882,6 +900,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
882
900
|
showCodeAsIndicatorTaskViewTitle: boolean;
|
|
883
901
|
} & {
|
|
884
902
|
criteriaTreeElementTextFormat: string;
|
|
903
|
+
} & {
|
|
904
|
+
reportTextFormat?: string | undefined;
|
|
885
905
|
};
|
|
886
906
|
items: {
|
|
887
907
|
code: string;
|
|
@@ -944,6 +964,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
944
964
|
minimumValue?: number | undefined;
|
|
945
965
|
exclusiveMaximum?: number | undefined;
|
|
946
966
|
exclusiveMinimum?: number | undefined;
|
|
967
|
+
} & {
|
|
968
|
+
[k: string]: any;
|
|
947
969
|
} & {
|
|
948
970
|
readOnly?: boolean | undefined;
|
|
949
971
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -968,16 +990,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
968
990
|
sortOrder?: number | undefined;
|
|
969
991
|
}[];
|
|
970
992
|
longFormTitle: string;
|
|
971
|
-
data?: {
|
|
972
|
-
type
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
maximumValue
|
|
977
|
-
minimumValue
|
|
978
|
-
exclusiveMaximum
|
|
979
|
-
exclusiveMinimum
|
|
980
|
-
} | undefined;
|
|
993
|
+
data?: z.objectOutputType<{
|
|
994
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
995
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
996
|
+
text: z.ZodOptional<z.ZodString>;
|
|
997
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
998
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
999
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1000
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1001
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1002
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
981
1003
|
description?: string | undefined;
|
|
982
1004
|
tags?: string[] | undefined;
|
|
983
1005
|
documentation?: ({
|
|
@@ -998,16 +1020,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
998
1020
|
sortOrder?: number | undefined;
|
|
999
1021
|
}[];
|
|
1000
1022
|
longFormTitle: string;
|
|
1001
|
-
data?: {
|
|
1002
|
-
type
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
maximumValue
|
|
1007
|
-
minimumValue
|
|
1008
|
-
exclusiveMaximum
|
|
1009
|
-
exclusiveMinimum
|
|
1010
|
-
} | undefined;
|
|
1023
|
+
data?: z.objectOutputType<{
|
|
1024
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1025
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1026
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1027
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1028
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1029
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1030
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1031
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1032
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1011
1033
|
description?: string | undefined;
|
|
1012
1034
|
tags?: string[] | undefined;
|
|
1013
1035
|
documentation?: ({
|
|
@@ -1041,6 +1063,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1041
1063
|
showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
|
|
1042
1064
|
} & {
|
|
1043
1065
|
criteriaTreeElementTextFormat: string;
|
|
1066
|
+
} & {
|
|
1067
|
+
reportTextFormat?: string | undefined;
|
|
1044
1068
|
};
|
|
1045
1069
|
items: {
|
|
1046
1070
|
code: string;
|
|
@@ -1103,6 +1127,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1103
1127
|
minimumValue?: number | undefined;
|
|
1104
1128
|
exclusiveMaximum?: number | undefined;
|
|
1105
1129
|
exclusiveMinimum?: number | undefined;
|
|
1130
|
+
} & {
|
|
1131
|
+
[k: string]: any;
|
|
1106
1132
|
} & {
|
|
1107
1133
|
readOnly?: boolean | undefined;
|
|
1108
1134
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1127,16 +1153,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1127
1153
|
sortOrder?: number | undefined;
|
|
1128
1154
|
}[];
|
|
1129
1155
|
longFormTitle: string;
|
|
1130
|
-
data?: {
|
|
1131
|
-
type
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
maximumValue
|
|
1136
|
-
minimumValue
|
|
1137
|
-
exclusiveMaximum
|
|
1138
|
-
exclusiveMinimum
|
|
1139
|
-
} | undefined;
|
|
1156
|
+
data?: z.objectInputType<{
|
|
1157
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1158
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1159
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1160
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1161
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1162
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1163
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1164
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1165
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1140
1166
|
description?: string | undefined;
|
|
1141
1167
|
tags?: string[] | undefined;
|
|
1142
1168
|
documentation?: ({
|
|
@@ -1157,16 +1183,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1157
1183
|
sortOrder?: number | undefined;
|
|
1158
1184
|
}[];
|
|
1159
1185
|
longFormTitle: string;
|
|
1160
|
-
data?: {
|
|
1161
|
-
type
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
maximumValue
|
|
1166
|
-
minimumValue
|
|
1167
|
-
exclusiveMaximum
|
|
1168
|
-
exclusiveMinimum
|
|
1169
|
-
} | undefined;
|
|
1186
|
+
data?: z.objectInputType<{
|
|
1187
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1188
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1189
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1190
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1191
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1192
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1193
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1194
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1195
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1170
1196
|
description?: string | undefined;
|
|
1171
1197
|
tags?: string[] | undefined;
|
|
1172
1198
|
documentation?: ({
|
|
@@ -371,25 +371,25 @@ export declare const taskItemDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
371
371
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
372
372
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
373
373
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
374
|
-
}, "strip", z.
|
|
375
|
-
type
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
maximumValue
|
|
380
|
-
minimumValue
|
|
381
|
-
exclusiveMaximum
|
|
382
|
-
exclusiveMinimum
|
|
383
|
-
}, {
|
|
384
|
-
type
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
maximumValue
|
|
389
|
-
minimumValue
|
|
390
|
-
exclusiveMaximum
|
|
391
|
-
exclusiveMinimum
|
|
392
|
-
}
|
|
374
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
375
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
376
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
377
|
+
text: z.ZodOptional<z.ZodString>;
|
|
378
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
379
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
380
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
383
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
384
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
385
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
386
|
+
text: z.ZodOptional<z.ZodString>;
|
|
387
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
388
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
389
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
390
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
391
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
392
|
+
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
393
393
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
394
394
|
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">]>>;
|
|
395
395
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -467,25 +467,25 @@ export declare const taskItemSchema: z.ZodObject<{
|
|
|
467
467
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
468
468
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
469
469
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
470
|
-
}, "strip", z.
|
|
471
|
-
type
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
maximumValue
|
|
476
|
-
minimumValue
|
|
477
|
-
exclusiveMaximum
|
|
478
|
-
exclusiveMinimum
|
|
479
|
-
}, {
|
|
480
|
-
type
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
maximumValue
|
|
485
|
-
minimumValue
|
|
486
|
-
exclusiveMaximum
|
|
487
|
-
exclusiveMinimum
|
|
488
|
-
}
|
|
470
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
471
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
472
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
473
|
+
text: z.ZodOptional<z.ZodString>;
|
|
474
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
475
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
476
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
477
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
478
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
479
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
480
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
481
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
482
|
+
text: z.ZodOptional<z.ZodString>;
|
|
483
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
484
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
485
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
486
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
487
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
488
|
+
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
489
489
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
490
490
|
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">]>>;
|
|
491
491
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -734,6 +734,8 @@ export declare const taskItemSchema: z.ZodObject<{
|
|
|
734
734
|
minimumValue?: number | undefined;
|
|
735
735
|
exclusiveMaximum?: number | undefined;
|
|
736
736
|
exclusiveMinimum?: number | undefined;
|
|
737
|
+
} & {
|
|
738
|
+
[k: string]: any;
|
|
737
739
|
} & {
|
|
738
740
|
readOnly?: boolean | undefined;
|
|
739
741
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -817,6 +819,8 @@ export declare const taskItemSchema: z.ZodObject<{
|
|
|
817
819
|
minimumValue?: number | undefined;
|
|
818
820
|
exclusiveMaximum?: number | undefined;
|
|
819
821
|
exclusiveMinimum?: number | undefined;
|
|
822
|
+
} & {
|
|
823
|
+
[k: string]: any;
|
|
820
824
|
} & {
|
|
821
825
|
readOnly?: boolean | undefined;
|
|
822
826
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|