@openframe-org/criteria-set-protocol 2.2.10 → 2.2.12
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 +77 -77
- package/dist/v1/schemas/common.js +1 -0
- package/dist/v1/schemas/criteria-tree.d.ts +1216 -1128
- package/dist/v1/schemas/criterion.d.ts +212 -196
- package/dist/v1/schemas/data-map.d.ts +123 -115
- package/dist/v1/schemas/task-group.d.ts +129 -117
- package/dist/v1/schemas/task-item.d.ts +42 -38
- package/dist/v1/schemas/task.d.ts +66 -58
- package/dist/v1/schemas/theme.d.ts +315 -295
- package/dist/v1/utils.d.ts +11 -7
- 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;
|
|
@@ -691,6 +695,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
691
695
|
minimumValue?: number | undefined;
|
|
692
696
|
exclusiveMaximum?: number | undefined;
|
|
693
697
|
exclusiveMinimum?: number | undefined;
|
|
698
|
+
} & {
|
|
699
|
+
[k: string]: any;
|
|
694
700
|
} & {
|
|
695
701
|
readOnly?: boolean | undefined;
|
|
696
702
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -715,16 +721,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
715
721
|
sortOrder?: number | undefined;
|
|
716
722
|
}[];
|
|
717
723
|
longFormTitle: string;
|
|
718
|
-
data?: {
|
|
719
|
-
type
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
maximumValue
|
|
724
|
-
minimumValue
|
|
725
|
-
exclusiveMaximum
|
|
726
|
-
exclusiveMinimum
|
|
727
|
-
} | undefined;
|
|
724
|
+
data?: z.objectOutputType<{
|
|
725
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
726
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
727
|
+
text: z.ZodOptional<z.ZodString>;
|
|
728
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
729
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
730
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
731
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
732
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
733
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
728
734
|
description?: string | undefined;
|
|
729
735
|
tags?: string[] | undefined;
|
|
730
736
|
documentation?: ({
|
|
@@ -815,6 +821,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
815
821
|
minimumValue?: number | undefined;
|
|
816
822
|
exclusiveMaximum?: number | undefined;
|
|
817
823
|
exclusiveMinimum?: number | undefined;
|
|
824
|
+
} & {
|
|
825
|
+
[k: string]: any;
|
|
818
826
|
} & {
|
|
819
827
|
readOnly?: boolean | undefined;
|
|
820
828
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -839,16 +847,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
839
847
|
sortOrder?: number | undefined;
|
|
840
848
|
}[];
|
|
841
849
|
longFormTitle: string;
|
|
842
|
-
data?: {
|
|
843
|
-
type
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
maximumValue
|
|
848
|
-
minimumValue
|
|
849
|
-
exclusiveMaximum
|
|
850
|
-
exclusiveMinimum
|
|
851
|
-
} | undefined;
|
|
850
|
+
data?: z.objectInputType<{
|
|
851
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
852
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
853
|
+
text: z.ZodOptional<z.ZodString>;
|
|
854
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
855
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
856
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
857
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
858
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
859
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
852
860
|
description?: string | undefined;
|
|
853
861
|
tags?: string[] | undefined;
|
|
854
862
|
documentation?: ({
|
|
@@ -944,6 +952,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
944
952
|
minimumValue?: number | undefined;
|
|
945
953
|
exclusiveMaximum?: number | undefined;
|
|
946
954
|
exclusiveMinimum?: number | undefined;
|
|
955
|
+
} & {
|
|
956
|
+
[k: string]: any;
|
|
947
957
|
} & {
|
|
948
958
|
readOnly?: boolean | undefined;
|
|
949
959
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -968,16 +978,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
968
978
|
sortOrder?: number | undefined;
|
|
969
979
|
}[];
|
|
970
980
|
longFormTitle: string;
|
|
971
|
-
data?: {
|
|
972
|
-
type
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
maximumValue
|
|
977
|
-
minimumValue
|
|
978
|
-
exclusiveMaximum
|
|
979
|
-
exclusiveMinimum
|
|
980
|
-
} | undefined;
|
|
981
|
+
data?: z.objectOutputType<{
|
|
982
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
983
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
984
|
+
text: z.ZodOptional<z.ZodString>;
|
|
985
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
986
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
987
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
988
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
989
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
990
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
981
991
|
description?: string | undefined;
|
|
982
992
|
tags?: string[] | undefined;
|
|
983
993
|
documentation?: ({
|
|
@@ -998,16 +1008,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
998
1008
|
sortOrder?: number | undefined;
|
|
999
1009
|
}[];
|
|
1000
1010
|
longFormTitle: string;
|
|
1001
|
-
data?: {
|
|
1002
|
-
type
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
maximumValue
|
|
1007
|
-
minimumValue
|
|
1008
|
-
exclusiveMaximum
|
|
1009
|
-
exclusiveMinimum
|
|
1010
|
-
} | undefined;
|
|
1011
|
+
data?: z.objectOutputType<{
|
|
1012
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1013
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1014
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1016
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1017
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1018
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1019
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1020
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1011
1021
|
description?: string | undefined;
|
|
1012
1022
|
tags?: string[] | undefined;
|
|
1013
1023
|
documentation?: ({
|
|
@@ -1103,6 +1113,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1103
1113
|
minimumValue?: number | undefined;
|
|
1104
1114
|
exclusiveMaximum?: number | undefined;
|
|
1105
1115
|
exclusiveMinimum?: number | undefined;
|
|
1116
|
+
} & {
|
|
1117
|
+
[k: string]: any;
|
|
1106
1118
|
} & {
|
|
1107
1119
|
readOnly?: boolean | undefined;
|
|
1108
1120
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1127,16 +1139,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1127
1139
|
sortOrder?: number | undefined;
|
|
1128
1140
|
}[];
|
|
1129
1141
|
longFormTitle: string;
|
|
1130
|
-
data?: {
|
|
1131
|
-
type
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
maximumValue
|
|
1136
|
-
minimumValue
|
|
1137
|
-
exclusiveMaximum
|
|
1138
|
-
exclusiveMinimum
|
|
1139
|
-
} | undefined;
|
|
1142
|
+
data?: z.objectInputType<{
|
|
1143
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1144
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1145
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1147
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1148
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1149
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1150
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1151
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1140
1152
|
description?: string | undefined;
|
|
1141
1153
|
tags?: string[] | undefined;
|
|
1142
1154
|
documentation?: ({
|
|
@@ -1157,16 +1169,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1157
1169
|
sortOrder?: number | undefined;
|
|
1158
1170
|
}[];
|
|
1159
1171
|
longFormTitle: string;
|
|
1160
|
-
data?: {
|
|
1161
|
-
type
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
maximumValue
|
|
1166
|
-
minimumValue
|
|
1167
|
-
exclusiveMaximum
|
|
1168
|
-
exclusiveMinimum
|
|
1169
|
-
} | undefined;
|
|
1172
|
+
data?: z.objectInputType<{
|
|
1173
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1174
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1175
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1176
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1177
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1178
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1179
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1180
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1181
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1170
1182
|
description?: string | undefined;
|
|
1171
1183
|
tags?: string[] | undefined;
|
|
1172
1184
|
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;
|