@openframe-org/criteria-set-protocol 2.4.0 → 2.4.2
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 +11 -0
- package/dist/v1/schemas/common.js +2 -1
- package/dist/v1/schemas/criteria-tree.d.ts +181 -0
- package/dist/v1/schemas/criterion.d.ts +32 -0
- package/dist/v1/schemas/data-map.d.ts +21 -0
- package/dist/v1/schemas/task-group.d.ts +21 -0
- package/dist/v1/schemas/task-item.d.ts +8 -0
- package/dist/v1/schemas/task.d.ts +12 -0
- package/dist/v1/schemas/theme.d.ts +45 -0
- package/package.json +1 -1
|
@@ -84,6 +84,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
84
84
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
85
85
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
86
86
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
87
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
87
88
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
88
89
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
89
90
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -93,6 +94,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
93
94
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
94
95
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
95
96
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
97
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
96
98
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
97
99
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
98
100
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -102,6 +104,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
102
104
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
103
105
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
104
106
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
107
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
105
108
|
}, z.ZodAny, "strip">>>;
|
|
106
109
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
107
110
|
} & {
|
|
@@ -168,6 +171,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
168
171
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
169
172
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
170
173
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
174
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
171
175
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
172
176
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
173
177
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -177,6 +181,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
177
181
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
178
182
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
179
183
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
184
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
180
185
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
181
186
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
182
187
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -186,6 +191,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
186
191
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
187
192
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
188
193
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
194
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
189
195
|
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
190
196
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
191
197
|
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">]>>;
|
|
@@ -435,6 +441,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
435
441
|
minimumValue?: number | undefined;
|
|
436
442
|
exclusiveMaximum?: number | undefined;
|
|
437
443
|
exclusiveMinimum?: number | undefined;
|
|
444
|
+
weight?: number | undefined;
|
|
438
445
|
} & {
|
|
439
446
|
[k: string]: any;
|
|
440
447
|
} & {
|
|
@@ -520,6 +527,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
520
527
|
minimumValue?: number | undefined;
|
|
521
528
|
exclusiveMaximum?: number | undefined;
|
|
522
529
|
exclusiveMinimum?: number | undefined;
|
|
530
|
+
weight?: number | undefined;
|
|
523
531
|
} & {
|
|
524
532
|
[k: string]: any;
|
|
525
533
|
} & {
|
|
@@ -644,6 +652,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
644
652
|
minimumValue?: number | undefined;
|
|
645
653
|
exclusiveMaximum?: number | undefined;
|
|
646
654
|
exclusiveMinimum?: number | undefined;
|
|
655
|
+
weight?: number | undefined;
|
|
647
656
|
} & {
|
|
648
657
|
[k: string]: any;
|
|
649
658
|
} & {
|
|
@@ -679,6 +688,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
679
688
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
680
689
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
681
690
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
691
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
682
692
|
}, z.ZodAny, "strip"> | undefined;
|
|
683
693
|
description?: string | undefined;
|
|
684
694
|
tags?: string[] | undefined;
|
|
@@ -772,6 +782,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
772
782
|
minimumValue?: number | undefined;
|
|
773
783
|
exclusiveMaximum?: number | undefined;
|
|
774
784
|
exclusiveMinimum?: number | undefined;
|
|
785
|
+
weight?: number | undefined;
|
|
775
786
|
} & {
|
|
776
787
|
[k: string]: any;
|
|
777
788
|
} & {
|
|
@@ -807,6 +818,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
807
818
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
808
819
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
809
820
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
821
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
810
822
|
}, z.ZodAny, "strip"> | undefined;
|
|
811
823
|
description?: string | undefined;
|
|
812
824
|
tags?: string[] | undefined;
|
|
@@ -158,6 +158,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
158
158
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
159
159
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
160
160
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
161
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
161
162
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
162
163
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
163
164
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -167,6 +168,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
167
168
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
168
169
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
169
170
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
171
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
170
172
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
171
173
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
172
174
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -176,6 +178,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
176
178
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
177
179
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
178
180
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
181
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
179
182
|
}, z.ZodAny, "strip">>>;
|
|
180
183
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
181
184
|
} & {
|
|
@@ -290,6 +293,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
290
293
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
291
294
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
292
295
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
296
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
293
297
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
294
298
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
295
299
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -299,6 +303,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
299
303
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
300
304
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
301
305
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
306
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
302
307
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
303
308
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
304
309
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -308,6 +313,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
308
313
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
309
314
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
310
315
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
316
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
311
317
|
}, z.ZodAny, "strip">>>;
|
|
312
318
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
313
319
|
} & {
|
|
@@ -372,6 +378,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
372
378
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
373
379
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
374
380
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
375
382
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
376
383
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
377
384
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -381,6 +388,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
381
388
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
382
389
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
383
390
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
391
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
384
392
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
385
393
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
386
394
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -390,6 +398,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
390
398
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
391
399
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
392
400
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
401
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
393
402
|
}, z.ZodAny, "strip">>>;
|
|
394
403
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
395
404
|
} & {
|
|
@@ -456,6 +465,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
456
465
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
457
466
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
458
467
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
468
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
459
469
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
460
470
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
461
471
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -465,6 +475,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
465
475
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
466
476
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
467
477
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
478
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
468
479
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
469
480
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
470
481
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -474,6 +485,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
474
485
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
475
486
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
476
487
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
488
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
477
489
|
}, z.ZodAny, "strip">>>;
|
|
478
490
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
479
491
|
} & {
|
|
@@ -540,6 +552,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
540
552
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
541
553
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
542
554
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
555
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
543
556
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
544
557
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
545
558
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -549,6 +562,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
549
562
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
550
563
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
551
564
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
565
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
552
566
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
553
567
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
554
568
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -558,6 +572,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
558
572
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
559
573
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
560
574
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
575
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
561
576
|
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
562
577
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
563
578
|
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">]>>;
|
|
@@ -807,6 +822,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
807
822
|
minimumValue?: number | undefined;
|
|
808
823
|
exclusiveMaximum?: number | undefined;
|
|
809
824
|
exclusiveMinimum?: number | undefined;
|
|
825
|
+
weight?: number | undefined;
|
|
810
826
|
} & {
|
|
811
827
|
[k: string]: any;
|
|
812
828
|
} & {
|
|
@@ -892,6 +908,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
892
908
|
minimumValue?: number | undefined;
|
|
893
909
|
exclusiveMaximum?: number | undefined;
|
|
894
910
|
exclusiveMinimum?: number | undefined;
|
|
911
|
+
weight?: number | undefined;
|
|
895
912
|
} & {
|
|
896
913
|
[k: string]: any;
|
|
897
914
|
} & {
|
|
@@ -1016,6 +1033,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1016
1033
|
minimumValue?: number | undefined;
|
|
1017
1034
|
exclusiveMaximum?: number | undefined;
|
|
1018
1035
|
exclusiveMinimum?: number | undefined;
|
|
1036
|
+
weight?: number | undefined;
|
|
1019
1037
|
} & {
|
|
1020
1038
|
[k: string]: any;
|
|
1021
1039
|
} & {
|
|
@@ -1051,6 +1069,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1051
1069
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1052
1070
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1053
1071
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1072
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1054
1073
|
}, z.ZodAny, "strip"> | undefined;
|
|
1055
1074
|
description?: string | undefined;
|
|
1056
1075
|
tags?: string[] | undefined;
|
|
@@ -1144,6 +1163,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1144
1163
|
minimumValue?: number | undefined;
|
|
1145
1164
|
exclusiveMaximum?: number | undefined;
|
|
1146
1165
|
exclusiveMinimum?: number | undefined;
|
|
1166
|
+
weight?: number | undefined;
|
|
1147
1167
|
} & {
|
|
1148
1168
|
[k: string]: any;
|
|
1149
1169
|
} & {
|
|
@@ -1179,6 +1199,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1179
1199
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1180
1200
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1181
1201
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1202
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1182
1203
|
}, z.ZodAny, "strip"> | undefined;
|
|
1183
1204
|
description?: string | undefined;
|
|
1184
1205
|
tags?: string[] | undefined;
|
|
@@ -1277,6 +1298,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1277
1298
|
minimumValue?: number | undefined;
|
|
1278
1299
|
exclusiveMaximum?: number | undefined;
|
|
1279
1300
|
exclusiveMinimum?: number | undefined;
|
|
1301
|
+
weight?: number | undefined;
|
|
1280
1302
|
} & {
|
|
1281
1303
|
[k: string]: any;
|
|
1282
1304
|
} & {
|
|
@@ -1312,6 +1334,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1312
1334
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1313
1335
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1314
1336
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1337
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1315
1338
|
}, z.ZodAny, "strip"> | undefined;
|
|
1316
1339
|
description?: string | undefined;
|
|
1317
1340
|
tags?: string[] | undefined;
|
|
@@ -1342,6 +1365,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1342
1365
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1343
1366
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1344
1367
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1368
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1345
1369
|
}, z.ZodAny, "strip"> | undefined;
|
|
1346
1370
|
description?: string | undefined;
|
|
1347
1371
|
tags?: string[] | undefined;
|
|
@@ -1440,6 +1464,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1440
1464
|
minimumValue?: number | undefined;
|
|
1441
1465
|
exclusiveMaximum?: number | undefined;
|
|
1442
1466
|
exclusiveMinimum?: number | undefined;
|
|
1467
|
+
weight?: number | undefined;
|
|
1443
1468
|
} & {
|
|
1444
1469
|
[k: string]: any;
|
|
1445
1470
|
} & {
|
|
@@ -1475,6 +1500,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1475
1500
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1476
1501
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1477
1502
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1503
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1478
1504
|
}, z.ZodAny, "strip"> | undefined;
|
|
1479
1505
|
description?: string | undefined;
|
|
1480
1506
|
tags?: string[] | undefined;
|
|
@@ -1505,6 +1531,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1505
1531
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1506
1532
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1507
1533
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1534
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1508
1535
|
}, z.ZodAny, "strip"> | undefined;
|
|
1509
1536
|
description?: string | undefined;
|
|
1510
1537
|
tags?: string[] | undefined;
|
|
@@ -1682,6 +1709,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1682
1709
|
minimumValue?: number | undefined;
|
|
1683
1710
|
exclusiveMaximum?: number | undefined;
|
|
1684
1711
|
exclusiveMinimum?: number | undefined;
|
|
1712
|
+
weight?: number | undefined;
|
|
1685
1713
|
} & {
|
|
1686
1714
|
[k: string]: any;
|
|
1687
1715
|
} & {
|
|
@@ -1717,6 +1745,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1717
1745
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1718
1746
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1719
1747
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1748
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1720
1749
|
}, z.ZodAny, "strip"> | undefined;
|
|
1721
1750
|
description?: string | undefined;
|
|
1722
1751
|
tags?: string[] | undefined;
|
|
@@ -1747,6 +1776,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1747
1776
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1748
1777
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1749
1778
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1779
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1750
1780
|
}, z.ZodAny, "strip"> | undefined;
|
|
1751
1781
|
description?: string | undefined;
|
|
1752
1782
|
tags?: string[] | undefined;
|
|
@@ -1778,6 +1808,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1778
1808
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1779
1809
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1780
1810
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1811
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1781
1812
|
}, z.ZodAny, "strip"> | undefined;
|
|
1782
1813
|
tags?: string[] | undefined;
|
|
1783
1814
|
documentation?: ({
|
|
@@ -1897,6 +1928,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1897
1928
|
minimumValue?: number | undefined;
|
|
1898
1929
|
exclusiveMaximum?: number | undefined;
|
|
1899
1930
|
exclusiveMinimum?: number | undefined;
|
|
1931
|
+
weight?: number | undefined;
|
|
1900
1932
|
} & {
|
|
1901
1933
|
[k: string]: any;
|
|
1902
1934
|
} & {
|
|
@@ -1932,6 +1964,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1932
1964
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1933
1965
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1934
1966
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1967
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1935
1968
|
}, z.ZodAny, "strip"> | undefined;
|
|
1936
1969
|
description?: string | undefined;
|
|
1937
1970
|
tags?: string[] | undefined;
|
|
@@ -1962,6 +1995,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1962
1995
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1963
1996
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1964
1997
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1998
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1965
1999
|
}, z.ZodAny, "strip"> | undefined;
|
|
1966
2000
|
description?: string | undefined;
|
|
1967
2001
|
tags?: string[] | undefined;
|
|
@@ -1993,6 +2027,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
1993
2027
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1994
2028
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1995
2029
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2030
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1996
2031
|
}, z.ZodAny, "strip"> | undefined;
|
|
1997
2032
|
tags?: string[] | undefined;
|
|
1998
2033
|
documentation?: ({
|
|
@@ -2183,6 +2218,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2183
2218
|
minimumValue?: number | undefined;
|
|
2184
2219
|
exclusiveMaximum?: number | undefined;
|
|
2185
2220
|
exclusiveMinimum?: number | undefined;
|
|
2221
|
+
weight?: number | undefined;
|
|
2186
2222
|
} & {
|
|
2187
2223
|
[k: string]: any;
|
|
2188
2224
|
} & {
|
|
@@ -2218,6 +2254,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2218
2254
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2219
2255
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2220
2256
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2257
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2221
2258
|
}, z.ZodAny, "strip"> | undefined;
|
|
2222
2259
|
description?: string | undefined;
|
|
2223
2260
|
tags?: string[] | undefined;
|
|
@@ -2248,6 +2285,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2248
2285
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2249
2286
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2250
2287
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2288
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2251
2289
|
}, z.ZodAny, "strip"> | undefined;
|
|
2252
2290
|
description?: string | undefined;
|
|
2253
2291
|
tags?: string[] | undefined;
|
|
@@ -2279,6 +2317,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2279
2317
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2280
2318
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2281
2319
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2320
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2282
2321
|
}, z.ZodAny, "strip"> | undefined;
|
|
2283
2322
|
tags?: string[] | undefined;
|
|
2284
2323
|
documentation?: ({
|
|
@@ -2308,6 +2347,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2308
2347
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2309
2348
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2310
2349
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2350
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2311
2351
|
}, z.ZodAny, "strip"> | undefined;
|
|
2312
2352
|
style?: {
|
|
2313
2353
|
primaryColor: string | {
|
|
@@ -2460,6 +2500,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2460
2500
|
minimumValue?: number | undefined;
|
|
2461
2501
|
exclusiveMaximum?: number | undefined;
|
|
2462
2502
|
exclusiveMinimum?: number | undefined;
|
|
2503
|
+
weight?: number | undefined;
|
|
2463
2504
|
} & {
|
|
2464
2505
|
[k: string]: any;
|
|
2465
2506
|
} & {
|
|
@@ -2495,6 +2536,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2495
2536
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2496
2537
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2497
2538
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2539
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2498
2540
|
}, z.ZodAny, "strip"> | undefined;
|
|
2499
2541
|
description?: string | undefined;
|
|
2500
2542
|
tags?: string[] | undefined;
|
|
@@ -2525,6 +2567,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2525
2567
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2526
2568
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2527
2569
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2570
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2528
2571
|
}, z.ZodAny, "strip"> | undefined;
|
|
2529
2572
|
description?: string | undefined;
|
|
2530
2573
|
tags?: string[] | undefined;
|
|
@@ -2556,6 +2599,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2556
2599
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2557
2600
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2558
2601
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2602
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2559
2603
|
}, z.ZodAny, "strip"> | undefined;
|
|
2560
2604
|
tags?: string[] | undefined;
|
|
2561
2605
|
documentation?: ({
|
|
@@ -2585,6 +2629,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
2585
2629
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
2586
2630
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
2587
2631
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
2632
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2588
2633
|
}, z.ZodAny, "strip"> | undefined;
|
|
2589
2634
|
style?: {
|
|
2590
2635
|
primaryColor: string | {
|
package/package.json
CHANGED