busroot-sdk 0.0.8-dev.2732994359 → 0.0.8-dev.2736448973
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/build/index.d.ts +84 -101
- package/build/index.js +46 -16
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -39,7 +39,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
39
39
|
enableDragBetweenStationsOnGantt: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
40
40
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
41
41
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
42
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
43
42
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
44
43
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
45
44
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
@@ -105,7 +104,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
105
104
|
enableDragBetweenStationsOnGantt: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
106
105
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
107
106
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
108
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
109
107
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
110
108
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
111
109
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
@@ -196,6 +194,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
196
194
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
197
195
|
}>]>>;
|
|
198
196
|
requireNotes: z.ZodOptional<z.ZodBoolean>;
|
|
197
|
+
taskListCodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
199
198
|
}, "strict", z.ZodTypeAny, {
|
|
200
199
|
code: string;
|
|
201
200
|
title: string;
|
|
@@ -208,6 +207,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
208
207
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
209
208
|
};
|
|
210
209
|
requireNotes?: boolean | undefined;
|
|
210
|
+
taskListCodes?: string[] | undefined;
|
|
211
211
|
}, {
|
|
212
212
|
code: string;
|
|
213
213
|
title: string;
|
|
@@ -220,6 +220,20 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
220
220
|
pattern: string;
|
|
221
221
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
222
222
|
} | undefined;
|
|
223
|
+
taskListCodes?: string[] | undefined;
|
|
224
|
+
}>, "many">>;
|
|
225
|
+
taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
226
|
+
code: z.ZodString;
|
|
227
|
+
name: z.ZodString;
|
|
228
|
+
description: z.ZodString;
|
|
229
|
+
}, "strict", z.ZodTypeAny, {
|
|
230
|
+
code: string;
|
|
231
|
+
name: string;
|
|
232
|
+
description: string;
|
|
233
|
+
}, {
|
|
234
|
+
code: string;
|
|
235
|
+
name: string;
|
|
236
|
+
description: string;
|
|
223
237
|
}>, "many">>;
|
|
224
238
|
skus: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
239
|
code: z.ZodString;
|
|
@@ -279,7 +293,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
279
293
|
plants: z.ZodArray<z.ZodObject<{
|
|
280
294
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
281
295
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
282
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
283
296
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
284
297
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
285
298
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -300,7 +313,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
300
313
|
stationGroups: z.ZodArray<z.ZodObject<{
|
|
301
314
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
302
315
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
303
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
304
316
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
305
317
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
306
318
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -324,7 +336,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
324
336
|
stations: z.ZodArray<z.ZodObject<{
|
|
325
337
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
326
338
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
327
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
328
339
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
329
340
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
330
341
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -383,7 +394,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
383
394
|
description?: string | null | undefined;
|
|
384
395
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
385
396
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
386
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
387
397
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
388
398
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
389
399
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -430,7 +440,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
430
440
|
description?: string | null | undefined;
|
|
431
441
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
432
442
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
433
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
434
443
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
435
444
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
436
445
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -481,7 +490,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
481
490
|
description?: string | null | undefined;
|
|
482
491
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
483
492
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
484
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
485
493
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
486
494
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
487
495
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -520,7 +528,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
520
528
|
includeTaskCodes?: string[] | null | undefined;
|
|
521
529
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
522
530
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
523
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
524
531
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
525
532
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
526
533
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -552,7 +559,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
552
559
|
description?: string | null | undefined;
|
|
553
560
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
554
561
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
555
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
556
562
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
557
563
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
558
564
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -591,7 +597,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
591
597
|
includeTaskCodes?: string[] | null | undefined;
|
|
592
598
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
593
599
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
594
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
595
600
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
596
601
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
597
602
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -633,7 +638,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
633
638
|
description?: string | null | undefined;
|
|
634
639
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
635
640
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
636
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
637
641
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
638
642
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
639
643
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -672,7 +676,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
672
676
|
includeTaskCodes?: string[] | null | undefined;
|
|
673
677
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
674
678
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
675
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
676
679
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
677
680
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
678
681
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -692,7 +695,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
692
695
|
includeTaskCodes?: string[] | null | undefined;
|
|
693
696
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
694
697
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
695
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
696
698
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
697
699
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
698
700
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -728,7 +730,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
728
730
|
description?: string | null | undefined;
|
|
729
731
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
730
732
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
731
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
732
733
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
733
734
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
734
735
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -767,7 +768,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
767
768
|
includeTaskCodes?: string[] | null | undefined;
|
|
768
769
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
769
770
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
770
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
771
771
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
772
772
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
773
773
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -787,7 +787,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
787
787
|
includeTaskCodes?: string[] | null | undefined;
|
|
788
788
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
789
789
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
790
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
791
790
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
792
791
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
793
792
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -829,7 +828,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
829
828
|
description?: string | null | undefined;
|
|
830
829
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
831
830
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
832
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
833
831
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
834
832
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
835
833
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -868,7 +866,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
868
866
|
includeTaskCodes?: string[] | null | undefined;
|
|
869
867
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
870
868
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
871
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
872
869
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
873
870
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
874
871
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -888,7 +885,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
888
885
|
includeTaskCodes?: string[] | null | undefined;
|
|
889
886
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
890
887
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
891
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
892
888
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
893
889
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
894
890
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -912,7 +908,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
912
908
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
913
909
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
914
910
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
915
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
916
911
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
917
912
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
918
913
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -956,6 +951,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
956
951
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
957
952
|
};
|
|
958
953
|
requireNotes?: boolean | undefined;
|
|
954
|
+
taskListCodes?: string[] | undefined;
|
|
955
|
+
}[] | undefined;
|
|
956
|
+
taskLists?: {
|
|
957
|
+
code: string;
|
|
958
|
+
name: string;
|
|
959
|
+
description: string;
|
|
959
960
|
}[] | undefined;
|
|
960
961
|
skus?: {
|
|
961
962
|
code: string;
|
|
@@ -1002,7 +1003,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1002
1003
|
description?: string | null | undefined;
|
|
1003
1004
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1004
1005
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1005
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1006
1006
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1007
1007
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1008
1008
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1041,7 +1041,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1041
1041
|
includeTaskCodes?: string[] | null | undefined;
|
|
1042
1042
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1043
1043
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1044
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1045
1044
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1046
1045
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1047
1046
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1061,7 +1060,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1061
1060
|
includeTaskCodes?: string[] | null | undefined;
|
|
1062
1061
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1063
1062
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1064
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1065
1063
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1066
1064
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1067
1065
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1086,7 +1084,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1086
1084
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1087
1085
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1088
1086
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1089
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1090
1087
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1091
1088
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1092
1089
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1130,6 +1127,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1130
1127
|
pattern: string;
|
|
1131
1128
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1132
1129
|
} | undefined;
|
|
1130
|
+
taskListCodes?: string[] | undefined;
|
|
1131
|
+
}[] | undefined;
|
|
1132
|
+
taskLists?: {
|
|
1133
|
+
code: string;
|
|
1134
|
+
name: string;
|
|
1135
|
+
description: string;
|
|
1133
1136
|
}[] | undefined;
|
|
1134
1137
|
skus?: {
|
|
1135
1138
|
code: string;
|
|
@@ -1179,7 +1182,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1179
1182
|
description?: string | null | undefined;
|
|
1180
1183
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1181
1184
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1182
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1183
1185
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1184
1186
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1185
1187
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1218,7 +1220,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1218
1220
|
includeTaskCodes?: string[] | null | undefined;
|
|
1219
1221
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1220
1222
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1221
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1222
1223
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1223
1224
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1224
1225
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1238,7 +1239,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1238
1239
|
includeTaskCodes?: string[] | null | undefined;
|
|
1239
1240
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1240
1241
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1241
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1242
1242
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1243
1243
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1244
1244
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1262,7 +1262,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1262
1262
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1263
1263
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1264
1264
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1265
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1266
1265
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1267
1266
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1268
1267
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1306,6 +1305,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1306
1305
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1307
1306
|
};
|
|
1308
1307
|
requireNotes?: boolean | undefined;
|
|
1308
|
+
taskListCodes?: string[] | undefined;
|
|
1309
|
+
}[] | undefined;
|
|
1310
|
+
taskLists?: {
|
|
1311
|
+
code: string;
|
|
1312
|
+
name: string;
|
|
1313
|
+
description: string;
|
|
1309
1314
|
}[] | undefined;
|
|
1310
1315
|
skus?: {
|
|
1311
1316
|
code: string;
|
|
@@ -1355,7 +1360,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1355
1360
|
description?: string | null | undefined;
|
|
1356
1361
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1357
1362
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1358
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1359
1363
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1360
1364
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1361
1365
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1394,7 +1398,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1394
1398
|
includeTaskCodes?: string[] | null | undefined;
|
|
1395
1399
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1396
1400
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1397
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1398
1401
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1399
1402
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1400
1403
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1414,7 +1417,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1414
1417
|
includeTaskCodes?: string[] | null | undefined;
|
|
1415
1418
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1416
1419
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1417
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1418
1420
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1419
1421
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1420
1422
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1439,7 +1441,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1439
1441
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1440
1442
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1441
1443
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1442
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1443
1444
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1444
1445
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1445
1446
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1483,6 +1484,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1483
1484
|
pattern: string;
|
|
1484
1485
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1485
1486
|
} | undefined;
|
|
1487
|
+
taskListCodes?: string[] | undefined;
|
|
1488
|
+
}[] | undefined;
|
|
1489
|
+
taskLists?: {
|
|
1490
|
+
code: string;
|
|
1491
|
+
name: string;
|
|
1492
|
+
description: string;
|
|
1486
1493
|
}[] | undefined;
|
|
1487
1494
|
skus?: {
|
|
1488
1495
|
code: string;
|
|
@@ -1533,7 +1540,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1533
1540
|
description?: string | null | undefined;
|
|
1534
1541
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1535
1542
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1536
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1537
1543
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1538
1544
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1539
1545
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1572,7 +1578,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1572
1578
|
includeTaskCodes?: string[] | null | undefined;
|
|
1573
1579
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1574
1580
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1575
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1576
1581
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1577
1582
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1578
1583
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1592,7 +1597,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1592
1597
|
includeTaskCodes?: string[] | null | undefined;
|
|
1593
1598
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1594
1599
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1595
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1596
1600
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1597
1601
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1598
1602
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1616,7 +1620,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1616
1620
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1617
1621
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1618
1622
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1619
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1620
1623
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1621
1624
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1622
1625
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1660,6 +1663,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1660
1663
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1661
1664
|
};
|
|
1662
1665
|
requireNotes?: boolean | undefined;
|
|
1666
|
+
taskListCodes?: string[] | undefined;
|
|
1667
|
+
}[] | undefined;
|
|
1668
|
+
taskLists?: {
|
|
1669
|
+
code: string;
|
|
1670
|
+
name: string;
|
|
1671
|
+
description: string;
|
|
1663
1672
|
}[] | undefined;
|
|
1664
1673
|
skus?: {
|
|
1665
1674
|
code: string;
|
|
@@ -1709,7 +1718,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1709
1718
|
description?: string | null | undefined;
|
|
1710
1719
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1711
1720
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1712
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1713
1721
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1714
1722
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1715
1723
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1748,7 +1756,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1748
1756
|
includeTaskCodes?: string[] | null | undefined;
|
|
1749
1757
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1750
1758
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1751
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1752
1759
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1753
1760
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1754
1761
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1768,7 +1775,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1768
1775
|
includeTaskCodes?: string[] | null | undefined;
|
|
1769
1776
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1770
1777
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1771
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1772
1778
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1773
1779
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1774
1780
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1793,7 +1799,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1793
1799
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1794
1800
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1795
1801
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1796
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1797
1802
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1798
1803
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1799
1804
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1837,6 +1842,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1837
1842
|
pattern: string;
|
|
1838
1843
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1839
1844
|
} | undefined;
|
|
1845
|
+
taskListCodes?: string[] | undefined;
|
|
1846
|
+
}[] | undefined;
|
|
1847
|
+
taskLists?: {
|
|
1848
|
+
code: string;
|
|
1849
|
+
name: string;
|
|
1850
|
+
description: string;
|
|
1840
1851
|
}[] | undefined;
|
|
1841
1852
|
skus?: {
|
|
1842
1853
|
code: string;
|
|
@@ -1891,7 +1902,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1891
1902
|
description?: string | null | undefined;
|
|
1892
1903
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1893
1904
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1894
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1895
1905
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1896
1906
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1897
1907
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1930,7 +1940,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1930
1940
|
includeTaskCodes?: string[] | null | undefined;
|
|
1931
1941
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1932
1942
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1933
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1934
1943
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1935
1944
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1936
1945
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1950,7 +1959,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1950
1959
|
includeTaskCodes?: string[] | null | undefined;
|
|
1951
1960
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1952
1961
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1953
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1954
1962
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1955
1963
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1956
1964
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1974,7 +1982,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1974
1982
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1975
1983
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1976
1984
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1977
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1978
1985
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1979
1986
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1980
1987
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -2018,6 +2025,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2018
2025
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
2019
2026
|
};
|
|
2020
2027
|
requireNotes?: boolean | undefined;
|
|
2028
|
+
taskListCodes?: string[] | undefined;
|
|
2029
|
+
}[] | undefined;
|
|
2030
|
+
taskLists?: {
|
|
2031
|
+
code: string;
|
|
2032
|
+
name: string;
|
|
2033
|
+
description: string;
|
|
2021
2034
|
}[] | undefined;
|
|
2022
2035
|
skus?: {
|
|
2023
2036
|
code: string;
|
|
@@ -2043,7 +2056,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2043
2056
|
};
|
|
2044
2057
|
enableProductionCorrection?: "on" | "off" | null | undefined;
|
|
2045
2058
|
enableManualProduction?: "on" | "off" | null | undefined;
|
|
2046
|
-
enableInterruptionMode?: "on" | "off" | null | undefined;
|
|
2047
2059
|
enableQuickScheduleStart?: "on" | "off" | null | undefined;
|
|
2048
2060
|
enableScheduleCutShort?: "on" | "off" | null | undefined;
|
|
2049
2061
|
enableRejectProduction?: "on" | "off" | null | undefined;
|
|
@@ -2101,7 +2113,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2101
2113
|
description?: string | null | undefined;
|
|
2102
2114
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2103
2115
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2104
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2105
2116
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2106
2117
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2107
2118
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2140,7 +2151,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2140
2151
|
includeTaskCodes?: string[] | null | undefined;
|
|
2141
2152
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2142
2153
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2143
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2144
2154
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2145
2155
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2146
2156
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2160,7 +2170,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2160
2170
|
includeTaskCodes?: string[] | null | undefined;
|
|
2161
2171
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2162
2172
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2163
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2164
2173
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2165
2174
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2166
2175
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2185,7 +2194,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2185
2194
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
2186
2195
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
2187
2196
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
2188
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
2189
2197
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
2190
2198
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
2191
2199
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -2229,6 +2237,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2229
2237
|
pattern: string;
|
|
2230
2238
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
2231
2239
|
} | undefined;
|
|
2240
|
+
taskListCodes?: string[] | undefined;
|
|
2241
|
+
}[] | undefined;
|
|
2242
|
+
taskLists?: {
|
|
2243
|
+
code: string;
|
|
2244
|
+
name: string;
|
|
2245
|
+
description: string;
|
|
2232
2246
|
}[] | undefined;
|
|
2233
2247
|
skus?: {
|
|
2234
2248
|
code: string;
|
|
@@ -2254,7 +2268,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2254
2268
|
};
|
|
2255
2269
|
enableProductionCorrection?: "on" | "off" | null | undefined;
|
|
2256
2270
|
enableManualProduction?: "on" | "off" | null | undefined;
|
|
2257
|
-
enableInterruptionMode?: "on" | "off" | null | undefined;
|
|
2258
2271
|
enableQuickScheduleStart?: "on" | "off" | null | undefined;
|
|
2259
2272
|
enableScheduleCutShort?: "on" | "off" | null | undefined;
|
|
2260
2273
|
enableRejectProduction?: "on" | "off" | null | undefined;
|
|
@@ -2465,7 +2478,6 @@ declare class BusrootClient {
|
|
|
2465
2478
|
description?: string | null | undefined;
|
|
2466
2479
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2467
2480
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2468
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2469
2481
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2470
2482
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2471
2483
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2504,7 +2516,6 @@ declare class BusrootClient {
|
|
|
2504
2516
|
includeTaskCodes?: string[] | null | undefined;
|
|
2505
2517
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2506
2518
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2507
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2508
2519
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2509
2520
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2510
2521
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2524,7 +2535,6 @@ declare class BusrootClient {
|
|
|
2524
2535
|
includeTaskCodes?: string[] | null | undefined;
|
|
2525
2536
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2526
2537
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2527
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2528
2538
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2529
2539
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2530
2540
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2549,7 +2559,6 @@ declare class BusrootClient {
|
|
|
2549
2559
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
2550
2560
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
2551
2561
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
2552
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
2553
2562
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
2554
2563
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
2555
2564
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -2593,6 +2602,12 @@ declare class BusrootClient {
|
|
|
2593
2602
|
pattern: string;
|
|
2594
2603
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
2595
2604
|
} | undefined;
|
|
2605
|
+
taskListCodes?: string[] | undefined;
|
|
2606
|
+
}[] | undefined;
|
|
2607
|
+
taskLists?: {
|
|
2608
|
+
code: string;
|
|
2609
|
+
name: string;
|
|
2610
|
+
description: string;
|
|
2596
2611
|
}[] | undefined;
|
|
2597
2612
|
skus?: {
|
|
2598
2613
|
code: string;
|
|
@@ -2618,7 +2633,6 @@ declare class BusrootClient {
|
|
|
2618
2633
|
};
|
|
2619
2634
|
enableProductionCorrection?: "on" | "off" | null | undefined;
|
|
2620
2635
|
enableManualProduction?: "on" | "off" | null | undefined;
|
|
2621
|
-
enableInterruptionMode?: "on" | "off" | null | undefined;
|
|
2622
2636
|
enableQuickScheduleStart?: "on" | "off" | null | undefined;
|
|
2623
2637
|
enableScheduleCutShort?: "on" | "off" | null | undefined;
|
|
2624
2638
|
enableRejectProduction?: "on" | "off" | null | undefined;
|
|
@@ -2682,7 +2696,6 @@ declare class BusrootClient {
|
|
|
2682
2696
|
description?: string | null | undefined;
|
|
2683
2697
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2684
2698
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2685
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2686
2699
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2687
2700
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2688
2701
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2721,7 +2734,6 @@ declare class BusrootClient {
|
|
|
2721
2734
|
includeTaskCodes?: string[] | null | undefined;
|
|
2722
2735
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2723
2736
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2724
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2725
2737
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2726
2738
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2727
2739
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2741,7 +2753,6 @@ declare class BusrootClient {
|
|
|
2741
2753
|
includeTaskCodes?: string[] | null | undefined;
|
|
2742
2754
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2743
2755
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2744
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2745
2756
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2746
2757
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2747
2758
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2766,7 +2777,6 @@ declare class BusrootClient {
|
|
|
2766
2777
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
2767
2778
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
2768
2779
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
2769
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
2770
2780
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
2771
2781
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
2772
2782
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -2810,6 +2820,12 @@ declare class BusrootClient {
|
|
|
2810
2820
|
pattern: string;
|
|
2811
2821
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
2812
2822
|
} | undefined;
|
|
2823
|
+
taskListCodes?: string[] | undefined;
|
|
2824
|
+
}[] | undefined;
|
|
2825
|
+
taskLists?: {
|
|
2826
|
+
code: string;
|
|
2827
|
+
name: string;
|
|
2828
|
+
description: string;
|
|
2813
2829
|
}[] | undefined;
|
|
2814
2830
|
skus?: {
|
|
2815
2831
|
code: string;
|
|
@@ -2835,7 +2851,6 @@ declare class BusrootClient {
|
|
|
2835
2851
|
};
|
|
2836
2852
|
enableProductionCorrection?: "on" | "off" | null | undefined;
|
|
2837
2853
|
enableManualProduction?: "on" | "off" | null | undefined;
|
|
2838
|
-
enableInterruptionMode?: "on" | "off" | null | undefined;
|
|
2839
2854
|
enableQuickScheduleStart?: "on" | "off" | null | undefined;
|
|
2840
2855
|
enableScheduleCutShort?: "on" | "off" | null | undefined;
|
|
2841
2856
|
enableRejectProduction?: "on" | "off" | null | undefined;
|
|
@@ -2897,7 +2912,6 @@ declare class BusrootClient {
|
|
|
2897
2912
|
description?: string | null | undefined;
|
|
2898
2913
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2899
2914
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2900
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2901
2915
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2902
2916
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2903
2917
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2936,7 +2950,6 @@ declare class BusrootClient {
|
|
|
2936
2950
|
includeTaskCodes?: string[] | null | undefined;
|
|
2937
2951
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2938
2952
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2939
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2940
2953
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2941
2954
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2942
2955
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2980,7 +2993,6 @@ declare class BusrootClient {
|
|
|
2980
2993
|
description?: string | null | undefined;
|
|
2981
2994
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2982
2995
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2983
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2984
2996
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2985
2997
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2986
2998
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3019,7 +3031,6 @@ declare class BusrootClient {
|
|
|
3019
3031
|
includeTaskCodes?: string[] | null | undefined;
|
|
3020
3032
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3021
3033
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3022
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3023
3034
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3024
3035
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3025
3036
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3042,7 +3053,6 @@ declare class BusrootClient {
|
|
|
3042
3053
|
includeTaskCodes?: string[] | null | undefined;
|
|
3043
3054
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3044
3055
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3045
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3046
3056
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3047
3057
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3048
3058
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3082,7 +3092,6 @@ declare class BusrootClient {
|
|
|
3082
3092
|
description?: string | null | undefined;
|
|
3083
3093
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3084
3094
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3085
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3086
3095
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3087
3096
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3088
3097
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3121,7 +3130,6 @@ declare class BusrootClient {
|
|
|
3121
3130
|
includeTaskCodes?: string[] | null | undefined;
|
|
3122
3131
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3123
3132
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3124
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3125
3133
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3126
3134
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3127
3135
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3301,6 +3309,7 @@ declare class BusrootClient {
|
|
|
3301
3309
|
pattern: string;
|
|
3302
3310
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
3303
3311
|
} | undefined;
|
|
3312
|
+
taskListCodes?: string[] | undefined;
|
|
3304
3313
|
completedAt?: string | null | undefined;
|
|
3305
3314
|
completedOperatorInitials?: string | null | undefined;
|
|
3306
3315
|
periodStartAt?: string | null | undefined;
|
|
@@ -3433,7 +3442,6 @@ declare class BusrootClient {
|
|
|
3433
3442
|
groupCode: string;
|
|
3434
3443
|
enableProductionCorrection?: "on" | "off" | "inherit" | null | undefined;
|
|
3435
3444
|
enableManualProduction?: "on" | "off" | "inherit" | null | undefined;
|
|
3436
|
-
enableInterruptionMode?: "on" | "off" | "inherit" | null | undefined;
|
|
3437
3445
|
enableQuickScheduleStart?: "on" | "off" | "inherit" | null | undefined;
|
|
3438
3446
|
enableScheduleCutShort?: "on" | "off" | "inherit" | null | undefined;
|
|
3439
3447
|
enableRejectProduction?: "on" | "off" | "inherit" | null | undefined;
|
|
@@ -3478,7 +3486,6 @@ declare class BusrootClient {
|
|
|
3478
3486
|
code: z.ZodString;
|
|
3479
3487
|
enableProductionCorrection: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3480
3488
|
enableManualProduction: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3481
|
-
enableInterruptionMode: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3482
3489
|
enableQuickScheduleStart: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3483
3490
|
enableScheduleCutShort: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3484
3491
|
enableRejectProduction: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
@@ -3526,7 +3533,6 @@ declare class BusrootClient {
|
|
|
3526
3533
|
description?: string | null | undefined;
|
|
3527
3534
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3528
3535
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3529
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3530
3536
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3531
3537
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3532
3538
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3866,6 +3872,7 @@ declare class BusrootClient {
|
|
|
3866
3872
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
3867
3873
|
};
|
|
3868
3874
|
requireNotes?: boolean | undefined;
|
|
3875
|
+
taskListCodes?: string[] | undefined;
|
|
3869
3876
|
}, ...args: unknown[]) => Promise<{
|
|
3870
3877
|
code: string;
|
|
3871
3878
|
title: string;
|
|
@@ -3878,6 +3885,7 @@ declare class BusrootClient {
|
|
|
3878
3885
|
pattern: string;
|
|
3879
3886
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
3880
3887
|
} | undefined;
|
|
3888
|
+
taskListCodes?: string[] | undefined;
|
|
3881
3889
|
}>;
|
|
3882
3890
|
"shiftPattern.createUpdate": (args_0: {
|
|
3883
3891
|
shiftPatternCode: string;
|
|
@@ -4208,7 +4216,6 @@ type BusrootSignalsPayload = z.infer<typeof BusrootSignalsPayload>;
|
|
|
4208
4216
|
declare const PlantSchema: z.ZodObject<{
|
|
4209
4217
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4210
4218
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4211
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4212
4219
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4213
4220
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4214
4221
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4229,7 +4236,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4229
4236
|
stationGroups: z.ZodArray<z.ZodObject<{
|
|
4230
4237
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4231
4238
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4232
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4233
4239
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4234
4240
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4235
4241
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4253,7 +4259,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4253
4259
|
stations: z.ZodArray<z.ZodObject<{
|
|
4254
4260
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4255
4261
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4256
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4257
4262
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4258
4263
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4259
4264
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4312,7 +4317,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4312
4317
|
description?: string | null | undefined;
|
|
4313
4318
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4314
4319
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4315
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4316
4320
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4317
4321
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4318
4322
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4359,7 +4363,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4359
4363
|
description?: string | null | undefined;
|
|
4360
4364
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4361
4365
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4362
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4363
4366
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4364
4367
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4365
4368
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4410,7 +4413,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4410
4413
|
description?: string | null | undefined;
|
|
4411
4414
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4412
4415
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4413
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4414
4416
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4415
4417
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4416
4418
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4449,7 +4451,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4449
4451
|
includeTaskCodes?: string[] | null | undefined;
|
|
4450
4452
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4451
4453
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4452
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4453
4454
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4454
4455
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4455
4456
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4481,7 +4482,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4481
4482
|
description?: string | null | undefined;
|
|
4482
4483
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4483
4484
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4484
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4485
4485
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4486
4486
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4487
4487
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4520,7 +4520,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4520
4520
|
includeTaskCodes?: string[] | null | undefined;
|
|
4521
4521
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4522
4522
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4523
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4524
4523
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4525
4524
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4526
4525
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4562,7 +4561,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4562
4561
|
description?: string | null | undefined;
|
|
4563
4562
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4564
4563
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4565
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4566
4564
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4567
4565
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4568
4566
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4601,7 +4599,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4601
4599
|
includeTaskCodes?: string[] | null | undefined;
|
|
4602
4600
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4603
4601
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4604
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4605
4602
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4606
4603
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4607
4604
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4621,7 +4618,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4621
4618
|
includeTaskCodes?: string[] | null | undefined;
|
|
4622
4619
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4623
4620
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4624
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4625
4621
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4626
4622
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4627
4623
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4657,7 +4653,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4657
4653
|
description?: string | null | undefined;
|
|
4658
4654
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4659
4655
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4660
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4661
4656
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4662
4657
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4663
4658
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4696,7 +4691,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4696
4691
|
includeTaskCodes?: string[] | null | undefined;
|
|
4697
4692
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4698
4693
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4699
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4700
4694
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4701
4695
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4702
4696
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4716,7 +4710,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4716
4710
|
includeTaskCodes?: string[] | null | undefined;
|
|
4717
4711
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4718
4712
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4719
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4720
4713
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4721
4714
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4722
4715
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4741,7 +4734,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4741
4734
|
stationGroups: z.ZodArray<z.ZodObject<{
|
|
4742
4735
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4743
4736
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4744
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4745
4737
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4746
4738
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4747
4739
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4765,7 +4757,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4765
4757
|
stations: z.ZodArray<z.ZodObject<{
|
|
4766
4758
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4767
4759
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4768
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4769
4760
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4770
4761
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4771
4762
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4824,7 +4815,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4824
4815
|
description?: string | null | undefined;
|
|
4825
4816
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4826
4817
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4827
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4828
4818
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4829
4819
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4830
4820
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4871,7 +4861,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4871
4861
|
description?: string | null | undefined;
|
|
4872
4862
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4873
4863
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4874
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4875
4864
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4876
4865
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4877
4866
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4922,7 +4911,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4922
4911
|
description?: string | null | undefined;
|
|
4923
4912
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4924
4913
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4925
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4926
4914
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4927
4915
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4928
4916
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4961,7 +4949,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4961
4949
|
includeTaskCodes?: string[] | null | undefined;
|
|
4962
4950
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4963
4951
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4964
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4965
4952
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4966
4953
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4967
4954
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4993,7 +4980,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4993
4980
|
description?: string | null | undefined;
|
|
4994
4981
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4995
4982
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4996
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4997
4983
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4998
4984
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4999
4985
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5032,7 +5018,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5032
5018
|
includeTaskCodes?: string[] | null | undefined;
|
|
5033
5019
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5034
5020
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5035
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5036
5021
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5037
5022
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5038
5023
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5075,7 +5060,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5075
5060
|
description?: string | null | undefined;
|
|
5076
5061
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5077
5062
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5078
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5079
5063
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5080
5064
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5081
5065
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5114,7 +5098,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5114
5098
|
includeTaskCodes?: string[] | null | undefined;
|
|
5115
5099
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5116
5100
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5117
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5118
5101
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5119
5102
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5120
5103
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5155,7 +5138,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5155
5138
|
description?: string | null | undefined;
|
|
5156
5139
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5157
5140
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5158
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5159
5141
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5160
5142
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5161
5143
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5194,7 +5176,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5194
5176
|
includeTaskCodes?: string[] | null | undefined;
|
|
5195
5177
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5196
5178
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5197
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5198
5179
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5199
5180
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5200
5181
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5494,7 +5475,6 @@ type SkuViewModel = z.infer<typeof SkuViewModel>;
|
|
|
5494
5475
|
declare const StationSchema: z.ZodObject<{
|
|
5495
5476
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5496
5477
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5497
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5498
5478
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5499
5479
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5500
5480
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -5558,7 +5538,6 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5558
5538
|
description?: string | null | undefined;
|
|
5559
5539
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5560
5540
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5561
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5562
5541
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5563
5542
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5564
5543
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5607,7 +5586,6 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5607
5586
|
description?: string | null | undefined;
|
|
5608
5587
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5609
5588
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5610
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5611
5589
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5612
5590
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5613
5591
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -6026,6 +6004,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6026
6004
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6027
6005
|
}>]>>;
|
|
6028
6006
|
requireNotes: z.ZodOptional<z.ZodBoolean>;
|
|
6007
|
+
taskListCodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6029
6008
|
} & {
|
|
6030
6009
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6031
6010
|
completedOperatorInitials: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6043,6 +6022,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6043
6022
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6044
6023
|
};
|
|
6045
6024
|
requireNotes?: boolean | undefined;
|
|
6025
|
+
taskListCodes?: string[] | undefined;
|
|
6046
6026
|
completedAt?: string | null | undefined;
|
|
6047
6027
|
completedOperatorInitials?: string | null | undefined;
|
|
6048
6028
|
periodStartAt?: string | null | undefined;
|
|
@@ -6059,6 +6039,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6059
6039
|
pattern: string;
|
|
6060
6040
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6061
6041
|
} | undefined;
|
|
6042
|
+
taskListCodes?: string[] | undefined;
|
|
6062
6043
|
completedAt?: string | null | undefined;
|
|
6063
6044
|
completedOperatorInitials?: string | null | undefined;
|
|
6064
6045
|
periodStartAt?: string | null | undefined;
|
|
@@ -6218,6 +6199,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6218
6199
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6219
6200
|
};
|
|
6220
6201
|
requireNotes?: boolean | undefined;
|
|
6202
|
+
taskListCodes?: string[] | undefined;
|
|
6221
6203
|
completedAt?: string | null | undefined;
|
|
6222
6204
|
completedOperatorInitials?: string | null | undefined;
|
|
6223
6205
|
periodStartAt?: string | null | undefined;
|
|
@@ -6377,6 +6359,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6377
6359
|
pattern: string;
|
|
6378
6360
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6379
6361
|
} | undefined;
|
|
6362
|
+
taskListCodes?: string[] | undefined;
|
|
6380
6363
|
completedAt?: string | null | undefined;
|
|
6381
6364
|
completedOperatorInitials?: string | null | undefined;
|
|
6382
6365
|
periodStartAt?: string | null | undefined;
|
package/build/index.js
CHANGED
|
@@ -153,7 +153,7 @@ var require_task = __commonJS({
|
|
|
153
153
|
"../../packages/common/build/schemas/task.js"(exports2) {
|
|
154
154
|
"use strict";
|
|
155
155
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
156
|
-
exports2.TaskSchema = exports2.TaskFrequencySchema = exports2.TASK_FREQUENCY_TYPE_CRON = exports2.TASK_FREQUENCY_TYPE_SCHEDULE = void 0;
|
|
156
|
+
exports2.TaskSchema = exports2.TaskListSchema = exports2.TaskFrequencySchema = exports2.TASK_FREQUENCY_TYPE_CRON = exports2.TASK_FREQUENCY_TYPE_SCHEDULE = void 0;
|
|
157
157
|
var zod_1 = require("zod");
|
|
158
158
|
exports2.TASK_FREQUENCY_TYPE_SCHEDULE = "schedule";
|
|
159
159
|
exports2.TASK_FREQUENCY_TYPE_CRON = "cron";
|
|
@@ -170,6 +170,11 @@ var require_task = __commonJS({
|
|
|
170
170
|
availableBeforeDeadlineMinutes: zod_1.z.number().int().positive().optional().describe("How many minutes before the deadline (the cron fire) this Task becomes available to complete on the tablet. Required for cron Tasks; must be shorter than the smallest gap between consecutive cron fires.")
|
|
171
171
|
}).strict()
|
|
172
172
|
]).describe("How often this Task must be completed. 'schedule' = once per production schedule; 'cron' = every cron interval.");
|
|
173
|
+
exports2.TaskListSchema = zod_1.z.object({
|
|
174
|
+
code: zod_1.z.string().min(1).describe("Unique Task list code used to reference this list (e.g., 'DAILY-CHECKS'). Must be unique within the account."),
|
|
175
|
+
name: zod_1.z.string().describe("Human-readable name of the Task list (e.g., 'Daily Checks')"),
|
|
176
|
+
description: zod_1.z.string().describe("Detailed description of what this Task list groups together")
|
|
177
|
+
}).strict();
|
|
173
178
|
exports2.TaskSchema = zod_1.z.object({
|
|
174
179
|
code: zod_1.z.string().describe("Unique Task code used to reference this procedure (e.g., 'TASK-001', 'STARTUP-CHECK'). Must be unique within the account."),
|
|
175
180
|
title: zod_1.z.string().describe("Human-readable title of the Task (e.g., 'Machine Startup Checklist', 'Quality Inspection Procedure')"),
|
|
@@ -177,7 +182,10 @@ var require_task = __commonJS({
|
|
|
177
182
|
frequency: exports2.TaskFrequencySchema.default({ type: exports2.TASK_FREQUENCY_TYPE_SCHEDULE }),
|
|
178
183
|
// Optional at the schema level so pre-existing Tasks (written before this field existed) still
|
|
179
184
|
// parse — absent means notes are not required, the pre-feature behaviour.
|
|
180
|
-
requireNotes: zod_1.z.boolean().optional().describe("When enabled, operators must enter notes before this Task can be confirmed as complete.")
|
|
185
|
+
requireNotes: zod_1.z.boolean().optional().describe("When enabled, operators must enter notes before this Task can be confirmed as complete."),
|
|
186
|
+
// Optional at the schema level so pre-existing Tasks (written before Task lists existed)
|
|
187
|
+
// still parse — absent means the Task belongs to no list.
|
|
188
|
+
taskListCodes: zod_1.z.array(zod_1.z.string()).optional().describe("Codes of the Task lists this Task belongs to. Purely organisational grouping; a Task can belong to zero or many lists.")
|
|
181
189
|
}).strict();
|
|
182
190
|
}
|
|
183
191
|
});
|
|
@@ -248,13 +256,6 @@ var require_registry = __commonJS({
|
|
|
248
256
|
allowedLevels: ["account", "plant", "stationGroup", "station"],
|
|
249
257
|
oiManaged: false
|
|
250
258
|
},
|
|
251
|
-
enableInterruptionMode: {
|
|
252
|
-
key: "enableInterruptionMode",
|
|
253
|
-
label: "Allow Interruption Mode",
|
|
254
|
-
description: "Allow operators to put a running schedule into interruption mode.",
|
|
255
|
-
allowedLevels: ["account", "plant", "stationGroup", "station"],
|
|
256
|
-
oiManaged: false
|
|
257
|
-
},
|
|
258
259
|
enableQuickScheduleStart: {
|
|
259
260
|
key: "enableQuickScheduleStart",
|
|
260
261
|
label: "Allow Ad Hoc Schedules",
|
|
@@ -752,7 +753,7 @@ var require_base_station = __commonJS({
|
|
|
752
753
|
electricalUsageStoppedThresholdKw: zod_1.z.number().gte(0).nullish().describe("Electrical Usage Stopped Threshold (kW): Minimum power consumption in kilowatts that indicates the station is active. Below this threshold, Busroot will regard the station as stopped/downtime. Example: 2.0, 1.0, 5.0"),
|
|
753
754
|
lineSpeedStoppedThreshold: zod_1.z.number().gte(0).nullish().describe("Line Speed Stopped Threshold: Minimum speed value that indicates the station is running. Below this threshold, Busroot will regard the station as stopped/downtime. Example: 10, 5, 20"),
|
|
754
755
|
productiveHoldOnTime: zod_1.z.number().int().gte(0).lte(time_1.TimeIntervals["1d"].ms).nullish().describe("Productive Hold On Time: Time in minutes to consider station active after a productive signal. Each new signal restarts the hold-on timer."),
|
|
755
|
-
// Feature flags (
|
|
756
|
+
// Feature flags (allowManualProduction, allowQuickScheduleStart,
|
|
756
757
|
// allowScheduleCutShort, allowRejectProduction, allowEditPartsPerCycle, schedulingOnly) are now
|
|
757
758
|
// registry-managed tri-state `enable*` fields, added below via flagSchemaFieldsForLevel("station").
|
|
758
759
|
// Current State
|
|
@@ -837,8 +838,8 @@ var require_error_key = __commonJS({
|
|
|
837
838
|
"use strict";
|
|
838
839
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
839
840
|
exports2.STATION_REASSIGN_CROSS_GROUP = exports2.TARGET_STATION_NOT_FOUND = exports2.PARTS_PER_CYCLE_NOT_ALLOWED_FOR_STATION = exports2.SCHEDULE_CANNOT_STOP_FUTURE = exports2.SCHEDULE_NON_PROD_OR_ENDED = exports2.SCHEDULE_CANNOT_CUT_SHORT = exports2.SCHEDULE_AUTO_ENDED_BY_QUANTITY = exports2.SCHEDULE_NOT_STARTED_OR_ENDED = exports2.ACTUAL_START_IN_PAST = exports2.PLANNED_START_IN_PAST = exports2.SCHEDULE_CANNOT_CHANGE_PROD_TO_NON_PROD = exports2.SCHEDULE_CANNOT_CHANGE_NON_PROD_TO_PROD = exports2.SCHEDULE_CANNOT_SET_PRIORITY_AFTER_START = exports2.SCHEDULE_ALREADY_STARTED_CANNOT_EDIT_START = exports2.SCHEDULE_ALREADY_ENDED = exports2.UNSUPPORTED_SCHEDULE_OPERATION = exports2.INVALID_RESOLUTION_MODE = exports2.EXISTED_EVENT = exports2.INVALID_SEARCH_TEXT = exports2.INVALID_SKIP = exports2.INVALID_LIMIT = exports2.INVALID_WINDOW_TIME = exports2.INVALID_NOTIFICATION_PREFERENCE = exports2.OVERLAPPED_SHIFT = exports2.INVALID_SHIFT_NAME = exports2.INVALID_WEEK_DAY = exports2.INVALID_FILE_TYPE = exports2.INVALID_HEADER_FIELDS = exports2.DELETE_LAST_SHIFT_PATTERN = exports2.INVALID_ACTUAL_START_AT_STATE = exports2.INVALID_DOMAIN = exports2.SKU_NOT_FOUND = exports2.STATION_GROUP_NOT_FOUND = exports2.WORK_ORDER_ENDED = exports2.SCHEDULE_NOT_FOUND = exports2.INVALID_SKU = exports2.INVALID_SCHEDULE = exports2.EXPIRED_TOKEN = exports2.UNAUTHORIZED_USER = exports2.UNAUTHENTICATED_USER = exports2.SHIFT_PATTERN_NOT_FOUND = exports2.INVALID_SHIFT_PATTERN_TITLE = exports2.INVALID_SHIFT_PATTERN_ID = exports2.INVALID_DELETE_SHIFTS = exports2.UNSUPPORTED_SHIFT_OVER_MID_NIGHT = exports2.INVALID_SHIFTS = exports2.INVALID_PLANTCODE = exports2.INVALID_RANGECODE = exports2.INTERNAL_SERVER_ERROR = exports2.CACHE_NOT_COMPLETE = void 0;
|
|
840
|
-
exports2.
|
|
841
|
-
exports2.PRODUCTION_BLOCKED_BY_MANUAL_DOWNTIME = exports2.PRODUCTION_CORRECTION_NOT_ALLOWED = exports2.PRODUCTION_QUANTITY_BELOW_ZERO = exports2.INVALID_PRODUCTION_ID = exports2.RESET_EXCEED_30_DAYS = exports2.INVALID_REASON_CODE = exports2.SELF_REFERENCING_CODE = exports2.PARENT_CODE_IN_USE = exports2.DUPLICATED_REASON_CODE = exports2.DATABASE_ERROR_MESSAGE = void 0;
|
|
841
|
+
exports2.UNSUPPORTED_API_KEY_OPERATION = exports2.ACCOUNT_ARCHIVED = exports2.ACCOUNT_DENIED = exports2.ACCOUNT_NOT_FOUND = exports2.ACCOUNT_MISMATCH = exports2.USER_ACCOUNT_IS_BLOCKED = exports2.ACCOUNT_NOT_SELECTED = exports2.INVALID_USER_ACCOUNT = exports2.NO_ACCOUNT_AVAILABLE = exports2.EXPIRED_USER = exports2.USER_IS_BLOCKED = exports2.INVALID_USER = exports2.USER_NOT_FOUND = exports2.MULTIPLE_ACCOUNT_ASSOCIATED = exports2.UNSUPPORTED_USER_OPERATION = exports2.EMAIL_TYPE_NOT_FOUND = exports2.INVALID_STATION_CODE = exports2.DUPLICATED_STATION_CODE = exports2.DUPLICATED_STATION_GROUP_CODE = exports2.INVALID_INPUT = exports2.DUPLICATED_SKU_CODE = exports2.INVALID_SKU_CODE = exports2.TOO_LARGE = exports2.BUSINESS_CONFLICT = exports2.FORBIDDEN = exports2.INVALID_ACCESS_CODE = exports2.EXPIRED_API_KEY = exports2.UNSUPPORTED_ARCHIVE_LAST_PLANT = exports2.PLANT_NOT_EXISTS = exports2.NOT_EMPTY_STATION_GROUP = exports2.INVALID_AGGREGATE_WINDOW = exports2.DUPLICATED_SCHEDULE = exports2.INVALID_SCHEDULE_ORDER_TYPE = exports2.INVALID_SKU_GROUP_NAME = exports2.SKU_GROUP_NOT_FOUND = exports2.INVALID_SKU_GROUP = exports2.INVALID_DOWNTIMNE_DURATION_THRESHOLD_MULTIPLIER = exports2.REASON_NOT_DOWNTIME_TYPE = exports2.MANUAL_DOWNTIME_NO_ACTIVE_SCHEDULE = exports2.MANUAL_DOWNTIME_ALREADY_ONGOING = exports2.CACHE_WARMING_DISABLED = exports2.MANUAL_DOWNTIME_DISABLED = exports2.DOWNTIME_NOT_MANUAL = exports2.DOWNTIME_NOT_FOUND = exports2.STATION_NOT_FOUND = exports2.TASK_LIST_NOT_FOUND = exports2.REASON_NOTE_REQUIRED = exports2.REASON_NOT_ALLOWED_FOR_STATION = exports2.REASON_NOT_FOUND = exports2.SKU_REQUIRED = void 0;
|
|
842
|
+
exports2.PRODUCTION_BLOCKED_BY_MANUAL_DOWNTIME = exports2.PRODUCTION_CORRECTION_NOT_ALLOWED = exports2.PRODUCTION_QUANTITY_BELOW_ZERO = exports2.INVALID_PRODUCTION_ID = exports2.RESET_EXCEED_30_DAYS = exports2.INVALID_REASON_CODE = exports2.SELF_REFERENCING_CODE = exports2.PARENT_CODE_IN_USE = exports2.DUPLICATED_REASON_CODE = exports2.DATABASE_ERROR_MESSAGE = exports2.INVALID_API_KEY = void 0;
|
|
842
843
|
exports2.CACHE_NOT_COMPLETE = "cacheNotComplete";
|
|
843
844
|
exports2.INTERNAL_SERVER_ERROR = "internalServerError";
|
|
844
845
|
exports2.INVALID_RANGECODE = "invalidRangeCode";
|
|
@@ -893,6 +894,7 @@ var require_error_key = __commonJS({
|
|
|
893
894
|
exports2.REASON_NOT_FOUND = "reasonNotFound";
|
|
894
895
|
exports2.REASON_NOT_ALLOWED_FOR_STATION = "reasonNotAllowedForStation";
|
|
895
896
|
exports2.REASON_NOTE_REQUIRED = "reasonNoteRequired";
|
|
897
|
+
exports2.TASK_LIST_NOT_FOUND = "taskListNotFound";
|
|
896
898
|
exports2.STATION_NOT_FOUND = "stationNotFound";
|
|
897
899
|
exports2.DOWNTIME_NOT_FOUND = "downtimeNotFound";
|
|
898
900
|
exports2.DOWNTIME_NOT_MANUAL = "downtimeNotManual";
|
|
@@ -2193,6 +2195,7 @@ var require_manifest = __commonJS({
|
|
|
2193
2195
|
})).optional().describe("Array of shift patterns defining working schedules (optional). Shift patterns can be referenced by ID from station groups and stations."),
|
|
2194
2196
|
reasons: zod_1.z.array(base_reason_1.ManifestReasonSchema).optional().describe("Array of reason codes for categorizing non-productive time (optional). Reasons can be hierarchical with nested child reasons. Used for both planned non-production schedules (e.g., maintenance, breaks) and categorizing downtime detected by Busroot."),
|
|
2195
2197
|
tasks: zod_1.z.array(task_1.TaskSchema).optional().describe("Array of Tasks (optional). Tasks can be linked to stations or SKUs via taskCodes arrays."),
|
|
2198
|
+
taskLists: zod_1.z.array(task_1.TaskListSchema).optional().describe("Array of Task lists (optional). A purely organisational grouping of Tasks, referenced by Tasks via taskListCodes."),
|
|
2196
2199
|
skus: zod_1.z.array(sku_1.SkuSchema).optional().describe("Array of SKUs (products/parts) that can be manufactured (optional). SKUs define production characteristics and can be referenced when scheduling."),
|
|
2197
2200
|
plants: zod_1.z.array(plant_1.PlantSchema).describe("Array of plants belonging to this account (minimum 1)")
|
|
2198
2201
|
}).describe("Account configuration with nested shift patterns, reasons, SKUs, plants, station groups, and stations")
|
|
@@ -6548,6 +6551,21 @@ var require_task2 = __commonJS({
|
|
|
6548
6551
|
}
|
|
6549
6552
|
});
|
|
6550
6553
|
|
|
6554
|
+
// ../../packages/common/build/api-schemas/task-list.js
|
|
6555
|
+
var require_task_list = __commonJS({
|
|
6556
|
+
"../../packages/common/build/api-schemas/task-list.js"(exports2) {
|
|
6557
|
+
"use strict";
|
|
6558
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
6559
|
+
exports2.TaskListDeleteRequest = exports2.TaskListPostRequest = void 0;
|
|
6560
|
+
var zod_1 = require("zod");
|
|
6561
|
+
var task_1 = require_task();
|
|
6562
|
+
exports2.TaskListPostRequest = task_1.TaskListSchema;
|
|
6563
|
+
exports2.TaskListDeleteRequest = zod_1.z.object({
|
|
6564
|
+
code: zod_1.z.string()
|
|
6565
|
+
});
|
|
6566
|
+
}
|
|
6567
|
+
});
|
|
6568
|
+
|
|
6551
6569
|
// ../../packages/common/build/api-schemas/agent.js
|
|
6552
6570
|
var require_agent = __commonJS({
|
|
6553
6571
|
"../../packages/common/build/api-schemas/agent.js"(exports2) {
|
|
@@ -6604,7 +6622,7 @@ var require_api_schemas = __commonJS({
|
|
|
6604
6622
|
"use strict";
|
|
6605
6623
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
6606
6624
|
exports2.ScheduleEditPartsPerCycleOverridePostBodyRequest = exports2.ScheduleEditPartsPerCycleOverridePostParamRequest = exports2.ScheduleFutureGetParamRequest = exports2.ScheduleCutShortPostRequest = exports2.ScheduleDeleteRequest = exports2.SchedulePostRequestTransform = exports2.SchedulePostRequestSuperRefine = exports2.SchedulePostRequest = exports2.ScheduleWorkderGetRequest = exports2.ScheduleGetRequest = exports2.ReasonDeleteRequest = exports2.ReasonPostRequest = exports2.ReasonGetRequest = exports2.ReasonBreadcrumb = exports2.NotificationRefferencesRequest = exports2.StationGroupDeleteRquest = exports2.StationGroupGetRquest = exports2.StationGroupPostRequest = exports2.StationGroupCodeSchema = exports2.StationOperatorPostRequest = exports2.StationTargetGetRequest = exports2.StationWindowGetRequest = exports2.StationLogGetRequest = exports2.AdminStationPutBodyRequest = exports2.StationGetRequest = exports2.StationPostRequest = exports2.StationPostRequestTransform = exports2.StationPostRequestSuperRefine = exports2.StationDeleteRequest = exports2.AccountArchivePostRequest = exports2.AccountSettingPostRequest = exports2.SelectAccountPostRequest = exports2.NewAccountPostRequest = exports2.ArchivePlantPostRequest = exports2.PlantPostRequest = exports2.UserGetRequest = exports2.UserPostRequest = exports2.SkuCycleTimeAnalysisGetRequest = exports2.SkuDeleteRequest = exports2.SkuPostBulkRequest = exports2.SkuPostRequestTransform = exports2.SkuPostRequestSuperRefine = exports2.SkuPostRequest = exports2.BooleanTypeSchema = exports2.SortByStandardParam = exports2.BusrootPagingResponse = exports2.StandardRequestSuperRefine = exports2.StandardRequestParams = exports2.RangeCodeSchema = exports2.UNKNOWN_CODE = void 0;
|
|
6607
|
-
exports2.BufferedDauMessageSchema = exports2.DauMessagesGetParams = exports2.AgentRequest = exports2.AgentMessage = exports2.TaskDeleteRequest = exports2.TaskPostRequest = exports2.NotePostRequest = exports2.NoteGetRequest = exports2.DeleteNoteRequest = exports2.DeleteKeyDeleteRequest = exports2.FilterGetRequest = exports2.AccessCodeGetRequest = exports2.DebugMockClearPostRequest = exports2.DebugResetCursorPostRequest = exports2.DebugEmailDowntimeSummaryGetRequest = exports2.EmailTestHarnessPostRequestRefinement = exports2.EmailTestHarnessPostRequest = exports2.LoginPostRequest = exports2.CallBackGetRequest = exports2.DevicePostRequest = exports2.DeviceDeleteRequest = exports2.DashboardGetRquest = exports2.ManualDowntimeEndByStationRequest = exports2.IssueEventPostRequestRefinement = exports2.IssueEventPostRequest = exports2.IssueEventQueryRequest = exports2.IssuePostRequest = exports2.IssueIdGetRequest = exports2.DOWNTIME_NOTE_MAX_LENGTH = exports2.ProductionAggregateWindowGetRequest = exports2.ProductionManualPostRequest = exports2.ShiftPatternDeleteRequest = exports2.ShiftPostRequest = exports2.ScheduleLogGetRequest = void 0;
|
|
6625
|
+
exports2.BufferedDauMessageSchema = exports2.DauMessagesGetParams = exports2.AgentRequest = exports2.AgentMessage = exports2.TaskListDeleteRequest = exports2.TaskListPostRequest = exports2.TaskDeleteRequest = exports2.TaskPostRequest = exports2.NotePostRequest = exports2.NoteGetRequest = exports2.DeleteNoteRequest = exports2.DeleteKeyDeleteRequest = exports2.FilterGetRequest = exports2.AccessCodeGetRequest = exports2.DebugMockClearPostRequest = exports2.DebugResetCursorPostRequest = exports2.DebugEmailDowntimeSummaryGetRequest = exports2.EmailTestHarnessPostRequestRefinement = exports2.EmailTestHarnessPostRequest = exports2.LoginPostRequest = exports2.CallBackGetRequest = exports2.DevicePostRequest = exports2.DeviceDeleteRequest = exports2.DashboardGetRquest = exports2.ManualDowntimeEndByStationRequest = exports2.IssueEventPostRequestRefinement = exports2.IssueEventPostRequest = exports2.IssueEventQueryRequest = exports2.IssuePostRequest = exports2.IssueIdGetRequest = exports2.DOWNTIME_NOTE_MAX_LENGTH = exports2.ProductionAggregateWindowGetRequest = exports2.ProductionManualPostRequest = exports2.ShiftPatternDeleteRequest = exports2.ShiftPostRequest = exports2.ScheduleLogGetRequest = void 0;
|
|
6608
6626
|
var common_1 = require_common();
|
|
6609
6627
|
Object.defineProperty(exports2, "UNKNOWN_CODE", { enumerable: true, get: function() {
|
|
6610
6628
|
return common_1.UNKNOWN_CODE;
|
|
@@ -6864,6 +6882,13 @@ var require_api_schemas = __commonJS({
|
|
|
6864
6882
|
Object.defineProperty(exports2, "TaskDeleteRequest", { enumerable: true, get: function() {
|
|
6865
6883
|
return task_1.TaskDeleteRequest;
|
|
6866
6884
|
} });
|
|
6885
|
+
var task_list_1 = require_task_list();
|
|
6886
|
+
Object.defineProperty(exports2, "TaskListPostRequest", { enumerable: true, get: function() {
|
|
6887
|
+
return task_list_1.TaskListPostRequest;
|
|
6888
|
+
} });
|
|
6889
|
+
Object.defineProperty(exports2, "TaskListDeleteRequest", { enumerable: true, get: function() {
|
|
6890
|
+
return task_list_1.TaskListDeleteRequest;
|
|
6891
|
+
} });
|
|
6867
6892
|
var agent_1 = require_agent();
|
|
6868
6893
|
Object.defineProperty(exports2, "AgentMessage", { enumerable: true, get: function() {
|
|
6869
6894
|
return agent_1.AgentMessage;
|
|
@@ -8924,7 +8949,6 @@ var require_station4 = __commonJS({
|
|
|
8924
8949
|
// from the manifest via `resolveFlag(manifest, key, { stationCode })`.
|
|
8925
8950
|
enableProductionCorrection: true,
|
|
8926
8951
|
enableManualProduction: true,
|
|
8927
|
-
enableInterruptionMode: true,
|
|
8928
8952
|
enableQuickScheduleStart: true,
|
|
8929
8953
|
enableScheduleCutShort: true,
|
|
8930
8954
|
enableRejectProduction: true,
|
|
@@ -9006,7 +9030,6 @@ var require_station_group3 = __commonJS({
|
|
|
9006
9030
|
// from the manifest via `resolveFlag(manifest, key, { stationGroupCode })`.
|
|
9007
9031
|
enableProductionCorrection: true,
|
|
9008
9032
|
enableManualProduction: true,
|
|
9009
|
-
enableInterruptionMode: true,
|
|
9010
9033
|
enableQuickScheduleStart: true,
|
|
9011
9034
|
enableScheduleCutShort: true,
|
|
9012
9035
|
enableRejectProduction: true,
|
|
@@ -9198,7 +9221,6 @@ var require_manifest_helpers = __commonJS({
|
|
|
9198
9221
|
allowDragBetweenStationsOnGantt: "enableDragBetweenStationsOnGantt",
|
|
9199
9222
|
defaultAutoEndOnQuantityComplete: "enableAutoEndOnQuantityComplete",
|
|
9200
9223
|
allowManualProduction: "enableManualProduction",
|
|
9201
|
-
allowInterruptionMode: "enableInterruptionMode",
|
|
9202
9224
|
allowQuickScheduleStart: "enableQuickScheduleStart",
|
|
9203
9225
|
allowScheduleCutShort: "enableScheduleCutShort",
|
|
9204
9226
|
allowRejectProduction: "enableRejectProduction",
|
|
@@ -9206,10 +9228,18 @@ var require_manifest_helpers = __commonJS({
|
|
|
9206
9228
|
allowScheduleStationFlexibility: "enableScheduleStationFlexibility",
|
|
9207
9229
|
schedulingOnly: "enableSchedulingOnly"
|
|
9208
9230
|
};
|
|
9231
|
+
var REMOVED_FLAG_KEYS = [
|
|
9232
|
+
// Interruption Mode was never wired to any behaviour and was removed in GitLab #2208.
|
|
9233
|
+
"enableInterruptionMode",
|
|
9234
|
+
"allowInterruptionMode"
|
|
9235
|
+
];
|
|
9209
9236
|
function renameLegacyFlagsInLevel(level) {
|
|
9210
9237
|
if (!level || typeof level !== "object") {
|
|
9211
9238
|
return;
|
|
9212
9239
|
}
|
|
9240
|
+
for (const removedKey of REMOVED_FLAG_KEYS) {
|
|
9241
|
+
delete level[removedKey];
|
|
9242
|
+
}
|
|
9213
9243
|
for (const [oldKey, newKey] of Object.entries(LEGACY_FLAG_RENAMES)) {
|
|
9214
9244
|
if (Object.prototype.hasOwnProperty.call(level, oldKey)) {
|
|
9215
9245
|
if (!Object.prototype.hasOwnProperty.call(level, newKey)) {
|
package/package.json
CHANGED