@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
|
@@ -108,25 +108,25 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
108
108
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
109
109
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
110
110
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
111
|
-
}, "strip", z.
|
|
112
|
-
type
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
maximumValue
|
|
117
|
-
minimumValue
|
|
118
|
-
exclusiveMaximum
|
|
119
|
-
exclusiveMinimum
|
|
120
|
-
}, {
|
|
121
|
-
type
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
maximumValue
|
|
126
|
-
minimumValue
|
|
127
|
-
exclusiveMaximum
|
|
128
|
-
exclusiveMinimum
|
|
129
|
-
}
|
|
111
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
112
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
113
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
114
|
+
text: z.ZodOptional<z.ZodString>;
|
|
115
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
116
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
117
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
118
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
119
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
120
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
121
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
122
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
123
|
+
text: z.ZodOptional<z.ZodString>;
|
|
124
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
125
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
126
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
127
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
128
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
129
|
+
}, z.ZodAny, "strip">>>;
|
|
130
130
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
131
131
|
} & {
|
|
132
132
|
type: z.ZodLiteral<"criterion">;
|
|
@@ -190,25 +190,25 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
190
190
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
191
191
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
192
192
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
193
|
-
}, "strip", z.
|
|
194
|
-
type
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
maximumValue
|
|
199
|
-
minimumValue
|
|
200
|
-
exclusiveMaximum
|
|
201
|
-
exclusiveMinimum
|
|
202
|
-
}, {
|
|
203
|
-
type
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
maximumValue
|
|
208
|
-
minimumValue
|
|
209
|
-
exclusiveMaximum
|
|
210
|
-
exclusiveMinimum
|
|
211
|
-
}
|
|
193
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
194
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
195
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
196
|
+
text: z.ZodOptional<z.ZodString>;
|
|
197
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
198
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
199
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
200
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
201
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
202
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
203
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
204
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
205
|
+
text: z.ZodOptional<z.ZodString>;
|
|
206
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
207
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
208
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
209
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
210
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
211
|
+
}, z.ZodAny, "strip">>>;
|
|
212
212
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
213
213
|
} & {
|
|
214
214
|
type: z.ZodLiteral<"task-group">;
|
|
@@ -274,25 +274,25 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
274
274
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
275
275
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
276
276
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
277
|
-
}, "strip", z.
|
|
278
|
-
type
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
maximumValue
|
|
283
|
-
minimumValue
|
|
284
|
-
exclusiveMaximum
|
|
285
|
-
exclusiveMinimum
|
|
286
|
-
}, {
|
|
287
|
-
type
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
maximumValue
|
|
292
|
-
minimumValue
|
|
293
|
-
exclusiveMaximum
|
|
294
|
-
exclusiveMinimum
|
|
295
|
-
}
|
|
277
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
278
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
279
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
280
|
+
text: z.ZodOptional<z.ZodString>;
|
|
281
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
282
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
283
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
284
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
285
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
286
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
287
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
288
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
289
|
+
text: z.ZodOptional<z.ZodString>;
|
|
290
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
291
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
292
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
293
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
294
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
295
|
+
}, z.ZodAny, "strip">>>;
|
|
296
296
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
297
297
|
} & {
|
|
298
298
|
type: z.ZodLiteral<"task">;
|
|
@@ -358,25 +358,25 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
358
358
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
359
359
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
360
360
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
361
|
-
}, "strip", z.
|
|
362
|
-
type
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
maximumValue
|
|
367
|
-
minimumValue
|
|
368
|
-
exclusiveMaximum
|
|
369
|
-
exclusiveMinimum
|
|
370
|
-
}, {
|
|
371
|
-
type
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
maximumValue
|
|
376
|
-
minimumValue
|
|
377
|
-
exclusiveMaximum
|
|
378
|
-
exclusiveMinimum
|
|
379
|
-
}
|
|
361
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
362
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
363
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
364
|
+
text: z.ZodOptional<z.ZodString>;
|
|
365
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
366
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
367
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
368
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
369
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
370
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
371
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
372
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
373
|
+
text: z.ZodOptional<z.ZodString>;
|
|
374
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
375
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
377
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
378
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
379
|
+
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
380
380
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
381
381
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
382
382
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -625,6 +625,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
625
625
|
minimumValue?: number | undefined;
|
|
626
626
|
exclusiveMaximum?: number | undefined;
|
|
627
627
|
exclusiveMinimum?: number | undefined;
|
|
628
|
+
} & {
|
|
629
|
+
[k: string]: any;
|
|
628
630
|
} & {
|
|
629
631
|
readOnly?: boolean | undefined;
|
|
630
632
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -708,6 +710,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
708
710
|
minimumValue?: number | undefined;
|
|
709
711
|
exclusiveMaximum?: number | undefined;
|
|
710
712
|
exclusiveMinimum?: number | undefined;
|
|
713
|
+
} & {
|
|
714
|
+
[k: string]: any;
|
|
711
715
|
} & {
|
|
712
716
|
readOnly?: boolean | undefined;
|
|
713
717
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -822,6 +826,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
822
826
|
minimumValue?: number | undefined;
|
|
823
827
|
exclusiveMaximum?: number | undefined;
|
|
824
828
|
exclusiveMinimum?: number | undefined;
|
|
829
|
+
} & {
|
|
830
|
+
[k: string]: any;
|
|
825
831
|
} & {
|
|
826
832
|
readOnly?: boolean | undefined;
|
|
827
833
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -846,16 +852,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
846
852
|
sortOrder?: number | undefined;
|
|
847
853
|
}[];
|
|
848
854
|
longFormTitle: string;
|
|
849
|
-
data?: {
|
|
850
|
-
type
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
maximumValue
|
|
855
|
-
minimumValue
|
|
856
|
-
exclusiveMaximum
|
|
857
|
-
exclusiveMinimum
|
|
858
|
-
} | undefined;
|
|
855
|
+
data?: z.objectOutputType<{
|
|
856
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
857
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
858
|
+
text: z.ZodOptional<z.ZodString>;
|
|
859
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
860
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
861
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
862
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
863
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
864
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
859
865
|
description?: string | undefined;
|
|
860
866
|
tags?: string[] | undefined;
|
|
861
867
|
documentation?: ({
|
|
@@ -946,6 +952,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
946
952
|
minimumValue?: number | undefined;
|
|
947
953
|
exclusiveMaximum?: number | undefined;
|
|
948
954
|
exclusiveMinimum?: number | undefined;
|
|
955
|
+
} & {
|
|
956
|
+
[k: string]: any;
|
|
949
957
|
} & {
|
|
950
958
|
readOnly?: boolean | undefined;
|
|
951
959
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -970,16 +978,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
970
978
|
sortOrder?: number | undefined;
|
|
971
979
|
}[];
|
|
972
980
|
longFormTitle: string;
|
|
973
|
-
data?: {
|
|
974
|
-
type
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
maximumValue
|
|
979
|
-
minimumValue
|
|
980
|
-
exclusiveMaximum
|
|
981
|
-
exclusiveMinimum
|
|
982
|
-
} | undefined;
|
|
981
|
+
data?: z.objectInputType<{
|
|
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;
|
|
983
991
|
description?: string | undefined;
|
|
984
992
|
tags?: string[] | undefined;
|
|
985
993
|
documentation?: ({
|
|
@@ -1075,6 +1083,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1075
1083
|
minimumValue?: number | undefined;
|
|
1076
1084
|
exclusiveMaximum?: number | undefined;
|
|
1077
1085
|
exclusiveMinimum?: number | undefined;
|
|
1086
|
+
} & {
|
|
1087
|
+
[k: string]: any;
|
|
1078
1088
|
} & {
|
|
1079
1089
|
readOnly?: boolean | undefined;
|
|
1080
1090
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1099,16 +1109,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1099
1109
|
sortOrder?: number | undefined;
|
|
1100
1110
|
}[];
|
|
1101
1111
|
longFormTitle: string;
|
|
1102
|
-
data?: {
|
|
1103
|
-
type
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
maximumValue
|
|
1108
|
-
minimumValue
|
|
1109
|
-
exclusiveMaximum
|
|
1110
|
-
exclusiveMinimum
|
|
1111
|
-
} | undefined;
|
|
1112
|
+
data?: z.objectOutputType<{
|
|
1113
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1114
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1115
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1116
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1117
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1118
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1119
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1120
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1121
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1112
1122
|
description?: string | undefined;
|
|
1113
1123
|
tags?: string[] | undefined;
|
|
1114
1124
|
documentation?: ({
|
|
@@ -1129,16 +1139,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1129
1139
|
sortOrder?: number | undefined;
|
|
1130
1140
|
}[];
|
|
1131
1141
|
longFormTitle: string;
|
|
1132
|
-
data?: {
|
|
1133
|
-
type
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
maximumValue
|
|
1138
|
-
minimumValue
|
|
1139
|
-
exclusiveMaximum
|
|
1140
|
-
exclusiveMinimum
|
|
1141
|
-
} | undefined;
|
|
1142
|
+
data?: z.objectOutputType<{
|
|
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;
|
|
1142
1152
|
description?: string | undefined;
|
|
1143
1153
|
tags?: string[] | undefined;
|
|
1144
1154
|
documentation?: ({
|
|
@@ -1234,6 +1244,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1234
1244
|
minimumValue?: number | undefined;
|
|
1235
1245
|
exclusiveMaximum?: number | undefined;
|
|
1236
1246
|
exclusiveMinimum?: number | undefined;
|
|
1247
|
+
} & {
|
|
1248
|
+
[k: string]: any;
|
|
1237
1249
|
} & {
|
|
1238
1250
|
readOnly?: boolean | undefined;
|
|
1239
1251
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1258,16 +1270,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1258
1270
|
sortOrder?: number | undefined;
|
|
1259
1271
|
}[];
|
|
1260
1272
|
longFormTitle: string;
|
|
1261
|
-
data?: {
|
|
1262
|
-
type
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
maximumValue
|
|
1267
|
-
minimumValue
|
|
1268
|
-
exclusiveMaximum
|
|
1269
|
-
exclusiveMinimum
|
|
1270
|
-
} | undefined;
|
|
1273
|
+
data?: z.objectInputType<{
|
|
1274
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1275
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1276
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1277
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1278
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1279
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1280
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1281
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1282
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1271
1283
|
description?: string | undefined;
|
|
1272
1284
|
tags?: string[] | undefined;
|
|
1273
1285
|
documentation?: ({
|
|
@@ -1288,16 +1300,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1288
1300
|
sortOrder?: number | undefined;
|
|
1289
1301
|
}[];
|
|
1290
1302
|
longFormTitle: string;
|
|
1291
|
-
data?: {
|
|
1292
|
-
type
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
maximumValue
|
|
1297
|
-
minimumValue
|
|
1298
|
-
exclusiveMaximum
|
|
1299
|
-
exclusiveMinimum
|
|
1300
|
-
} | undefined;
|
|
1303
|
+
data?: z.objectInputType<{
|
|
1304
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1305
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1306
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1307
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1308
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1309
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1310
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1311
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1312
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1301
1313
|
description?: string | undefined;
|
|
1302
1314
|
tags?: string[] | undefined;
|
|
1303
1315
|
documentation?: ({
|
|
@@ -1464,6 +1476,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1464
1476
|
minimumValue?: number | undefined;
|
|
1465
1477
|
exclusiveMaximum?: number | undefined;
|
|
1466
1478
|
exclusiveMinimum?: number | undefined;
|
|
1479
|
+
} & {
|
|
1480
|
+
[k: string]: any;
|
|
1467
1481
|
} & {
|
|
1468
1482
|
readOnly?: boolean | undefined;
|
|
1469
1483
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1488,16 +1502,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1488
1502
|
sortOrder?: number | undefined;
|
|
1489
1503
|
}[];
|
|
1490
1504
|
longFormTitle: string;
|
|
1491
|
-
data?: {
|
|
1492
|
-
type
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
maximumValue
|
|
1497
|
-
minimumValue
|
|
1498
|
-
exclusiveMaximum
|
|
1499
|
-
exclusiveMinimum
|
|
1500
|
-
} | undefined;
|
|
1505
|
+
data?: z.objectOutputType<{
|
|
1506
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1507
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1508
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1509
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1510
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1511
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1512
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1513
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1514
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1501
1515
|
description?: string | undefined;
|
|
1502
1516
|
tags?: string[] | undefined;
|
|
1503
1517
|
documentation?: ({
|
|
@@ -1518,16 +1532,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1518
1532
|
sortOrder?: number | undefined;
|
|
1519
1533
|
}[];
|
|
1520
1534
|
longFormTitle: string;
|
|
1521
|
-
data?: {
|
|
1522
|
-
type
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
maximumValue
|
|
1527
|
-
minimumValue
|
|
1528
|
-
exclusiveMaximum
|
|
1529
|
-
exclusiveMinimum
|
|
1530
|
-
} | undefined;
|
|
1535
|
+
data?: z.objectOutputType<{
|
|
1536
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1537
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1538
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1539
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1540
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1541
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1542
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1543
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1544
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1531
1545
|
description?: string | undefined;
|
|
1532
1546
|
tags?: string[] | undefined;
|
|
1533
1547
|
documentation?: ({
|
|
@@ -1549,16 +1563,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1549
1563
|
category?: string | undefined;
|
|
1550
1564
|
}[];
|
|
1551
1565
|
longFormTitle: string;
|
|
1552
|
-
data?: {
|
|
1553
|
-
type
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
maximumValue
|
|
1558
|
-
minimumValue
|
|
1559
|
-
exclusiveMaximum
|
|
1560
|
-
exclusiveMinimum
|
|
1561
|
-
} | undefined;
|
|
1566
|
+
data?: z.objectOutputType<{
|
|
1567
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1568
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1569
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1570
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1571
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1572
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1573
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1574
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1575
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1562
1576
|
tags?: string[] | undefined;
|
|
1563
1577
|
documentation?: ({
|
|
1564
1578
|
type: "pdf";
|
|
@@ -1673,6 +1687,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1673
1687
|
minimumValue?: number | undefined;
|
|
1674
1688
|
exclusiveMaximum?: number | undefined;
|
|
1675
1689
|
exclusiveMinimum?: number | undefined;
|
|
1690
|
+
} & {
|
|
1691
|
+
[k: string]: any;
|
|
1676
1692
|
} & {
|
|
1677
1693
|
readOnly?: boolean | undefined;
|
|
1678
1694
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -1697,16 +1713,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1697
1713
|
sortOrder?: number | undefined;
|
|
1698
1714
|
}[];
|
|
1699
1715
|
longFormTitle: string;
|
|
1700
|
-
data?: {
|
|
1701
|
-
type
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
maximumValue
|
|
1706
|
-
minimumValue
|
|
1707
|
-
exclusiveMaximum
|
|
1708
|
-
exclusiveMinimum
|
|
1709
|
-
} | undefined;
|
|
1716
|
+
data?: z.objectInputType<{
|
|
1717
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1718
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1719
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1720
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1721
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1722
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1723
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1724
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1725
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1710
1726
|
description?: string | undefined;
|
|
1711
1727
|
tags?: string[] | undefined;
|
|
1712
1728
|
documentation?: ({
|
|
@@ -1727,16 +1743,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1727
1743
|
sortOrder?: number | undefined;
|
|
1728
1744
|
}[];
|
|
1729
1745
|
longFormTitle: string;
|
|
1730
|
-
data?: {
|
|
1731
|
-
type
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
maximumValue
|
|
1736
|
-
minimumValue
|
|
1737
|
-
exclusiveMaximum
|
|
1738
|
-
exclusiveMinimum
|
|
1739
|
-
} | undefined;
|
|
1746
|
+
data?: z.objectInputType<{
|
|
1747
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1748
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1749
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1750
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1751
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1752
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1753
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1754
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1755
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1740
1756
|
description?: string | undefined;
|
|
1741
1757
|
tags?: string[] | undefined;
|
|
1742
1758
|
documentation?: ({
|
|
@@ -1758,16 +1774,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1758
1774
|
category?: string | undefined;
|
|
1759
1775
|
}[];
|
|
1760
1776
|
longFormTitle: string;
|
|
1761
|
-
data?: {
|
|
1762
|
-
type
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
maximumValue
|
|
1767
|
-
minimumValue
|
|
1768
|
-
exclusiveMaximum
|
|
1769
|
-
exclusiveMinimum
|
|
1770
|
-
} | undefined;
|
|
1777
|
+
data?: z.objectInputType<{
|
|
1778
|
+
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
1779
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
1780
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1781
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1782
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
1783
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1784
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1785
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1786
|
+
}, z.ZodAny, "strip"> | undefined;
|
|
1771
1787
|
tags?: string[] | undefined;
|
|
1772
1788
|
documentation?: ({
|
|
1773
1789
|
type: "pdf";
|