busroot-sdk 0.0.8-dev.2732686340 → 0.0.8-dev.2735819620
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 +21 -101
- package/build/index.js +17 -13
- 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"]>>>;
|
|
@@ -195,6 +193,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
195
193
|
pattern: string;
|
|
196
194
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
197
195
|
}>]>>;
|
|
196
|
+
requireNotes: z.ZodOptional<z.ZodBoolean>;
|
|
198
197
|
}, "strict", z.ZodTypeAny, {
|
|
199
198
|
code: string;
|
|
200
199
|
title: string;
|
|
@@ -206,10 +205,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
206
205
|
pattern: string;
|
|
207
206
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
208
207
|
};
|
|
208
|
+
requireNotes?: boolean | undefined;
|
|
209
209
|
}, {
|
|
210
210
|
code: string;
|
|
211
211
|
title: string;
|
|
212
212
|
description: string;
|
|
213
|
+
requireNotes?: boolean | undefined;
|
|
213
214
|
frequency?: {
|
|
214
215
|
type: "schedule";
|
|
215
216
|
} | {
|
|
@@ -276,7 +277,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
276
277
|
plants: z.ZodArray<z.ZodObject<{
|
|
277
278
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
278
279
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
279
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
280
280
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
281
281
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
282
282
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -297,7 +297,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
297
297
|
stationGroups: z.ZodArray<z.ZodObject<{
|
|
298
298
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
299
299
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
300
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
301
300
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
302
301
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
303
302
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -321,7 +320,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
321
320
|
stations: z.ZodArray<z.ZodObject<{
|
|
322
321
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
323
322
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
324
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
325
323
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
326
324
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
327
325
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -380,7 +378,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
380
378
|
description?: string | null | undefined;
|
|
381
379
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
382
380
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
383
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
384
381
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
385
382
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
386
383
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -427,7 +424,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
427
424
|
description?: string | null | undefined;
|
|
428
425
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
429
426
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
430
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
431
427
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
432
428
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
433
429
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -478,7 +474,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
478
474
|
description?: string | null | undefined;
|
|
479
475
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
480
476
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
481
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
482
477
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
483
478
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
484
479
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -517,7 +512,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
517
512
|
includeTaskCodes?: string[] | null | undefined;
|
|
518
513
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
519
514
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
520
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
521
515
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
522
516
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
523
517
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -549,7 +543,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
549
543
|
description?: string | null | undefined;
|
|
550
544
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
551
545
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
552
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
553
546
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
554
547
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
555
548
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -588,7 +581,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
588
581
|
includeTaskCodes?: string[] | null | undefined;
|
|
589
582
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
590
583
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
591
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
592
584
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
593
585
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
594
586
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -630,7 +622,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
630
622
|
description?: string | null | undefined;
|
|
631
623
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
632
624
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
633
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
634
625
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
635
626
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
636
627
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -669,7 +660,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
669
660
|
includeTaskCodes?: string[] | null | undefined;
|
|
670
661
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
671
662
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
672
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
673
663
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
674
664
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
675
665
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -689,7 +679,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
689
679
|
includeTaskCodes?: string[] | null | undefined;
|
|
690
680
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
691
681
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
692
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
693
682
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
694
683
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
695
684
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -725,7 +714,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
725
714
|
description?: string | null | undefined;
|
|
726
715
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
727
716
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
728
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
729
717
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
730
718
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
731
719
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -764,7 +752,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
764
752
|
includeTaskCodes?: string[] | null | undefined;
|
|
765
753
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
766
754
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
767
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
768
755
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
769
756
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
770
757
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -784,7 +771,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
784
771
|
includeTaskCodes?: string[] | null | undefined;
|
|
785
772
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
786
773
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
787
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
788
774
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
789
775
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
790
776
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -826,7 +812,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
826
812
|
description?: string | null | undefined;
|
|
827
813
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
828
814
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
829
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
830
815
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
831
816
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
832
817
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -865,7 +850,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
865
850
|
includeTaskCodes?: string[] | null | undefined;
|
|
866
851
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
867
852
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
868
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
869
853
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
870
854
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
871
855
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -885,7 +869,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
885
869
|
includeTaskCodes?: string[] | null | undefined;
|
|
886
870
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
887
871
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
888
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
889
872
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
890
873
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
891
874
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -909,7 +892,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
909
892
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
910
893
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
911
894
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
912
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
913
895
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
914
896
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
915
897
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -952,6 +934,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
952
934
|
pattern: string;
|
|
953
935
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
954
936
|
};
|
|
937
|
+
requireNotes?: boolean | undefined;
|
|
955
938
|
}[] | undefined;
|
|
956
939
|
skus?: {
|
|
957
940
|
code: string;
|
|
@@ -998,7 +981,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
998
981
|
description?: string | null | undefined;
|
|
999
982
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1000
983
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1001
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1002
984
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1003
985
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1004
986
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1037,7 +1019,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1037
1019
|
includeTaskCodes?: string[] | null | undefined;
|
|
1038
1020
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1039
1021
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1040
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1041
1022
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1042
1023
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1043
1024
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1057,7 +1038,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1057
1038
|
includeTaskCodes?: string[] | null | undefined;
|
|
1058
1039
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1059
1040
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1060
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1061
1041
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1062
1042
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1063
1043
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1082,7 +1062,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1082
1062
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1083
1063
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1084
1064
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1085
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1086
1065
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1087
1066
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1088
1067
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1118,6 +1097,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1118
1097
|
code: string;
|
|
1119
1098
|
title: string;
|
|
1120
1099
|
description: string;
|
|
1100
|
+
requireNotes?: boolean | undefined;
|
|
1121
1101
|
frequency?: {
|
|
1122
1102
|
type: "schedule";
|
|
1123
1103
|
} | {
|
|
@@ -1174,7 +1154,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1174
1154
|
description?: string | null | undefined;
|
|
1175
1155
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1176
1156
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1177
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1178
1157
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1179
1158
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1180
1159
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1213,7 +1192,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1213
1192
|
includeTaskCodes?: string[] | null | undefined;
|
|
1214
1193
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1215
1194
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1216
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1217
1195
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1218
1196
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1219
1197
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1233,7 +1211,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1233
1211
|
includeTaskCodes?: string[] | null | undefined;
|
|
1234
1212
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1235
1213
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1236
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1237
1214
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1238
1215
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1239
1216
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1257,7 +1234,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1257
1234
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1258
1235
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1259
1236
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1260
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1261
1237
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1262
1238
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1263
1239
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1300,6 +1276,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1300
1276
|
pattern: string;
|
|
1301
1277
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1302
1278
|
};
|
|
1279
|
+
requireNotes?: boolean | undefined;
|
|
1303
1280
|
}[] | undefined;
|
|
1304
1281
|
skus?: {
|
|
1305
1282
|
code: string;
|
|
@@ -1349,7 +1326,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1349
1326
|
description?: string | null | undefined;
|
|
1350
1327
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1351
1328
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1352
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1353
1329
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1354
1330
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1355
1331
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1388,7 +1364,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1388
1364
|
includeTaskCodes?: string[] | null | undefined;
|
|
1389
1365
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1390
1366
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1391
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1392
1367
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1393
1368
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1394
1369
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1408,7 +1383,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1408
1383
|
includeTaskCodes?: string[] | null | undefined;
|
|
1409
1384
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1410
1385
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1411
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1412
1386
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1413
1387
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1414
1388
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1433,7 +1407,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1433
1407
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1434
1408
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1435
1409
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1436
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1437
1410
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1438
1411
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1439
1412
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1469,6 +1442,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1469
1442
|
code: string;
|
|
1470
1443
|
title: string;
|
|
1471
1444
|
description: string;
|
|
1445
|
+
requireNotes?: boolean | undefined;
|
|
1472
1446
|
frequency?: {
|
|
1473
1447
|
type: "schedule";
|
|
1474
1448
|
} | {
|
|
@@ -1526,7 +1500,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1526
1500
|
description?: string | null | undefined;
|
|
1527
1501
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1528
1502
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1529
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1530
1503
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1531
1504
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1532
1505
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1565,7 +1538,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1565
1538
|
includeTaskCodes?: string[] | null | undefined;
|
|
1566
1539
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1567
1540
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1568
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1569
1541
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1570
1542
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1571
1543
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1585,7 +1557,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1585
1557
|
includeTaskCodes?: string[] | null | undefined;
|
|
1586
1558
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1587
1559
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1588
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1589
1560
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1590
1561
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1591
1562
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1609,7 +1580,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1609
1580
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1610
1581
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1611
1582
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1612
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1613
1583
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1614
1584
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1615
1585
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1652,6 +1622,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1652
1622
|
pattern: string;
|
|
1653
1623
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1654
1624
|
};
|
|
1625
|
+
requireNotes?: boolean | undefined;
|
|
1655
1626
|
}[] | undefined;
|
|
1656
1627
|
skus?: {
|
|
1657
1628
|
code: string;
|
|
@@ -1701,7 +1672,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1701
1672
|
description?: string | null | undefined;
|
|
1702
1673
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1703
1674
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1704
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1705
1675
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1706
1676
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1707
1677
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1740,7 +1710,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1740
1710
|
includeTaskCodes?: string[] | null | undefined;
|
|
1741
1711
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1742
1712
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1743
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1744
1713
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1745
1714
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1746
1715
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1760,7 +1729,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1760
1729
|
includeTaskCodes?: string[] | null | undefined;
|
|
1761
1730
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1762
1731
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1763
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1764
1732
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1765
1733
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1766
1734
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1785,7 +1753,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1785
1753
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1786
1754
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1787
1755
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1788
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1789
1756
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1790
1757
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1791
1758
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -1821,6 +1788,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1821
1788
|
code: string;
|
|
1822
1789
|
title: string;
|
|
1823
1790
|
description: string;
|
|
1791
|
+
requireNotes?: boolean | undefined;
|
|
1824
1792
|
frequency?: {
|
|
1825
1793
|
type: "schedule";
|
|
1826
1794
|
} | {
|
|
@@ -1882,7 +1850,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1882
1850
|
description?: string | null | undefined;
|
|
1883
1851
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1884
1852
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1885
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1886
1853
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1887
1854
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1888
1855
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1921,7 +1888,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1921
1888
|
includeTaskCodes?: string[] | null | undefined;
|
|
1922
1889
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1923
1890
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1924
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1925
1891
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1926
1892
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1927
1893
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1941,7 +1907,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1941
1907
|
includeTaskCodes?: string[] | null | undefined;
|
|
1942
1908
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
1943
1909
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
1944
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
1945
1910
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
1946
1911
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
1947
1912
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -1965,7 +1930,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1965
1930
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
1966
1931
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
1967
1932
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
1968
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
1969
1933
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
1970
1934
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
1971
1935
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -2008,6 +1972,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2008
1972
|
pattern: string;
|
|
2009
1973
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
2010
1974
|
};
|
|
1975
|
+
requireNotes?: boolean | undefined;
|
|
2011
1976
|
}[] | undefined;
|
|
2012
1977
|
skus?: {
|
|
2013
1978
|
code: string;
|
|
@@ -2033,7 +1998,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2033
1998
|
};
|
|
2034
1999
|
enableProductionCorrection?: "on" | "off" | null | undefined;
|
|
2035
2000
|
enableManualProduction?: "on" | "off" | null | undefined;
|
|
2036
|
-
enableInterruptionMode?: "on" | "off" | null | undefined;
|
|
2037
2001
|
enableQuickScheduleStart?: "on" | "off" | null | undefined;
|
|
2038
2002
|
enableScheduleCutShort?: "on" | "off" | null | undefined;
|
|
2039
2003
|
enableRejectProduction?: "on" | "off" | null | undefined;
|
|
@@ -2091,7 +2055,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2091
2055
|
description?: string | null | undefined;
|
|
2092
2056
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2093
2057
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2094
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2095
2058
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2096
2059
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2097
2060
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2130,7 +2093,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2130
2093
|
includeTaskCodes?: string[] | null | undefined;
|
|
2131
2094
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2132
2095
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2133
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2134
2096
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2135
2097
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2136
2098
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2150,7 +2112,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2150
2112
|
includeTaskCodes?: string[] | null | undefined;
|
|
2151
2113
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2152
2114
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2153
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2154
2115
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2155
2116
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2156
2117
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2175,7 +2136,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2175
2136
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
2176
2137
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
2177
2138
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
2178
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
2179
2139
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
2180
2140
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
2181
2141
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -2211,6 +2171,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2211
2171
|
code: string;
|
|
2212
2172
|
title: string;
|
|
2213
2173
|
description: string;
|
|
2174
|
+
requireNotes?: boolean | undefined;
|
|
2214
2175
|
frequency?: {
|
|
2215
2176
|
type: "schedule";
|
|
2216
2177
|
} | {
|
|
@@ -2243,7 +2204,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2243
2204
|
};
|
|
2244
2205
|
enableProductionCorrection?: "on" | "off" | null | undefined;
|
|
2245
2206
|
enableManualProduction?: "on" | "off" | null | undefined;
|
|
2246
|
-
enableInterruptionMode?: "on" | "off" | null | undefined;
|
|
2247
2207
|
enableQuickScheduleStart?: "on" | "off" | null | undefined;
|
|
2248
2208
|
enableScheduleCutShort?: "on" | "off" | null | undefined;
|
|
2249
2209
|
enableRejectProduction?: "on" | "off" | null | undefined;
|
|
@@ -2454,7 +2414,6 @@ declare class BusrootClient {
|
|
|
2454
2414
|
description?: string | null | undefined;
|
|
2455
2415
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2456
2416
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2457
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2458
2417
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2459
2418
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2460
2419
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2493,7 +2452,6 @@ declare class BusrootClient {
|
|
|
2493
2452
|
includeTaskCodes?: string[] | null | undefined;
|
|
2494
2453
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2495
2454
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2496
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2497
2455
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2498
2456
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2499
2457
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2513,7 +2471,6 @@ declare class BusrootClient {
|
|
|
2513
2471
|
includeTaskCodes?: string[] | null | undefined;
|
|
2514
2472
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2515
2473
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2516
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2517
2474
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2518
2475
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2519
2476
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2538,7 +2495,6 @@ declare class BusrootClient {
|
|
|
2538
2495
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
2539
2496
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
2540
2497
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
2541
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
2542
2498
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
2543
2499
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
2544
2500
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -2574,6 +2530,7 @@ declare class BusrootClient {
|
|
|
2574
2530
|
code: string;
|
|
2575
2531
|
title: string;
|
|
2576
2532
|
description: string;
|
|
2533
|
+
requireNotes?: boolean | undefined;
|
|
2577
2534
|
frequency?: {
|
|
2578
2535
|
type: "schedule";
|
|
2579
2536
|
} | {
|
|
@@ -2606,7 +2563,6 @@ declare class BusrootClient {
|
|
|
2606
2563
|
};
|
|
2607
2564
|
enableProductionCorrection?: "on" | "off" | null | undefined;
|
|
2608
2565
|
enableManualProduction?: "on" | "off" | null | undefined;
|
|
2609
|
-
enableInterruptionMode?: "on" | "off" | null | undefined;
|
|
2610
2566
|
enableQuickScheduleStart?: "on" | "off" | null | undefined;
|
|
2611
2567
|
enableScheduleCutShort?: "on" | "off" | null | undefined;
|
|
2612
2568
|
enableRejectProduction?: "on" | "off" | null | undefined;
|
|
@@ -2670,7 +2626,6 @@ declare class BusrootClient {
|
|
|
2670
2626
|
description?: string | null | undefined;
|
|
2671
2627
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2672
2628
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2673
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2674
2629
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2675
2630
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2676
2631
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2709,7 +2664,6 @@ declare class BusrootClient {
|
|
|
2709
2664
|
includeTaskCodes?: string[] | null | undefined;
|
|
2710
2665
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2711
2666
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2712
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2713
2667
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2714
2668
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2715
2669
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2729,7 +2683,6 @@ declare class BusrootClient {
|
|
|
2729
2683
|
includeTaskCodes?: string[] | null | undefined;
|
|
2730
2684
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2731
2685
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2732
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2733
2686
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2734
2687
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2735
2688
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2754,7 +2707,6 @@ declare class BusrootClient {
|
|
|
2754
2707
|
enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
|
|
2755
2708
|
enableProductionCorrection?: "off" | "on" | null | undefined;
|
|
2756
2709
|
enableManualProduction?: "off" | "on" | null | undefined;
|
|
2757
|
-
enableInterruptionMode?: "off" | "on" | null | undefined;
|
|
2758
2710
|
enableQuickScheduleStart?: "off" | "on" | null | undefined;
|
|
2759
2711
|
enableScheduleCutShort?: "off" | "on" | null | undefined;
|
|
2760
2712
|
enableRejectProduction?: "off" | "on" | null | undefined;
|
|
@@ -2790,6 +2742,7 @@ declare class BusrootClient {
|
|
|
2790
2742
|
code: string;
|
|
2791
2743
|
title: string;
|
|
2792
2744
|
description: string;
|
|
2745
|
+
requireNotes?: boolean | undefined;
|
|
2793
2746
|
frequency?: {
|
|
2794
2747
|
type: "schedule";
|
|
2795
2748
|
} | {
|
|
@@ -2822,7 +2775,6 @@ declare class BusrootClient {
|
|
|
2822
2775
|
};
|
|
2823
2776
|
enableProductionCorrection?: "on" | "off" | null | undefined;
|
|
2824
2777
|
enableManualProduction?: "on" | "off" | null | undefined;
|
|
2825
|
-
enableInterruptionMode?: "on" | "off" | null | undefined;
|
|
2826
2778
|
enableQuickScheduleStart?: "on" | "off" | null | undefined;
|
|
2827
2779
|
enableScheduleCutShort?: "on" | "off" | null | undefined;
|
|
2828
2780
|
enableRejectProduction?: "on" | "off" | null | undefined;
|
|
@@ -2884,7 +2836,6 @@ declare class BusrootClient {
|
|
|
2884
2836
|
description?: string | null | undefined;
|
|
2885
2837
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2886
2838
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2887
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2888
2839
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2889
2840
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2890
2841
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2923,7 +2874,6 @@ declare class BusrootClient {
|
|
|
2923
2874
|
includeTaskCodes?: string[] | null | undefined;
|
|
2924
2875
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2925
2876
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2926
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2927
2877
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2928
2878
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2929
2879
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -2967,7 +2917,6 @@ declare class BusrootClient {
|
|
|
2967
2917
|
description?: string | null | undefined;
|
|
2968
2918
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
2969
2919
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
2970
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
2971
2920
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
2972
2921
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
2973
2922
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3006,7 +2955,6 @@ declare class BusrootClient {
|
|
|
3006
2955
|
includeTaskCodes?: string[] | null | undefined;
|
|
3007
2956
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3008
2957
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3009
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3010
2958
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3011
2959
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3012
2960
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3029,7 +2977,6 @@ declare class BusrootClient {
|
|
|
3029
2977
|
includeTaskCodes?: string[] | null | undefined;
|
|
3030
2978
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3031
2979
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3032
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3033
2980
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3034
2981
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3035
2982
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3069,7 +3016,6 @@ declare class BusrootClient {
|
|
|
3069
3016
|
description?: string | null | undefined;
|
|
3070
3017
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3071
3018
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3072
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3073
3019
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3074
3020
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3075
3021
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3108,7 +3054,6 @@ declare class BusrootClient {
|
|
|
3108
3054
|
includeTaskCodes?: string[] | null | undefined;
|
|
3109
3055
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3110
3056
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3111
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3112
3057
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3113
3058
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3114
3059
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3280,6 +3225,7 @@ declare class BusrootClient {
|
|
|
3280
3225
|
code: string;
|
|
3281
3226
|
title: string;
|
|
3282
3227
|
description: string;
|
|
3228
|
+
requireNotes?: boolean | undefined;
|
|
3283
3229
|
frequency?: {
|
|
3284
3230
|
type: "schedule";
|
|
3285
3231
|
} | {
|
|
@@ -3419,7 +3365,6 @@ declare class BusrootClient {
|
|
|
3419
3365
|
groupCode: string;
|
|
3420
3366
|
enableProductionCorrection?: "on" | "off" | "inherit" | null | undefined;
|
|
3421
3367
|
enableManualProduction?: "on" | "off" | "inherit" | null | undefined;
|
|
3422
|
-
enableInterruptionMode?: "on" | "off" | "inherit" | null | undefined;
|
|
3423
3368
|
enableQuickScheduleStart?: "on" | "off" | "inherit" | null | undefined;
|
|
3424
3369
|
enableScheduleCutShort?: "on" | "off" | "inherit" | null | undefined;
|
|
3425
3370
|
enableRejectProduction?: "on" | "off" | "inherit" | null | undefined;
|
|
@@ -3464,7 +3409,6 @@ declare class BusrootClient {
|
|
|
3464
3409
|
code: z.ZodString;
|
|
3465
3410
|
enableProductionCorrection: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3466
3411
|
enableManualProduction: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3467
|
-
enableInterruptionMode: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3468
3412
|
enableQuickScheduleStart: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3469
3413
|
enableScheduleCutShort: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3470
3414
|
enableRejectProduction: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
@@ -3512,7 +3456,6 @@ declare class BusrootClient {
|
|
|
3512
3456
|
description?: string | null | undefined;
|
|
3513
3457
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
3514
3458
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
3515
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
3516
3459
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
3517
3460
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
3518
3461
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -3851,10 +3794,12 @@ declare class BusrootClient {
|
|
|
3851
3794
|
pattern: string;
|
|
3852
3795
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
3853
3796
|
};
|
|
3797
|
+
requireNotes?: boolean | undefined;
|
|
3854
3798
|
}, ...args: unknown[]) => Promise<{
|
|
3855
3799
|
code: string;
|
|
3856
3800
|
title: string;
|
|
3857
3801
|
description: string;
|
|
3802
|
+
requireNotes?: boolean | undefined;
|
|
3858
3803
|
frequency?: {
|
|
3859
3804
|
type: "schedule";
|
|
3860
3805
|
} | {
|
|
@@ -4192,7 +4137,6 @@ type BusrootSignalsPayload = z.infer<typeof BusrootSignalsPayload>;
|
|
|
4192
4137
|
declare const PlantSchema: z.ZodObject<{
|
|
4193
4138
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4194
4139
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4195
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4196
4140
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4197
4141
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4198
4142
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4213,7 +4157,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4213
4157
|
stationGroups: z.ZodArray<z.ZodObject<{
|
|
4214
4158
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4215
4159
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4216
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4217
4160
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4218
4161
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4219
4162
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4237,7 +4180,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4237
4180
|
stations: z.ZodArray<z.ZodObject<{
|
|
4238
4181
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4239
4182
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4240
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4241
4183
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4242
4184
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4243
4185
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4296,7 +4238,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4296
4238
|
description?: string | null | undefined;
|
|
4297
4239
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4298
4240
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4299
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4300
4241
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4301
4242
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4302
4243
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4343,7 +4284,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4343
4284
|
description?: string | null | undefined;
|
|
4344
4285
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4345
4286
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4346
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4347
4287
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4348
4288
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4349
4289
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4394,7 +4334,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4394
4334
|
description?: string | null | undefined;
|
|
4395
4335
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4396
4336
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4397
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4398
4337
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4399
4338
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4400
4339
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4433,7 +4372,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4433
4372
|
includeTaskCodes?: string[] | null | undefined;
|
|
4434
4373
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4435
4374
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4436
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4437
4375
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4438
4376
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4439
4377
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4465,7 +4403,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4465
4403
|
description?: string | null | undefined;
|
|
4466
4404
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4467
4405
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4468
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4469
4406
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4470
4407
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4471
4408
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4504,7 +4441,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4504
4441
|
includeTaskCodes?: string[] | null | undefined;
|
|
4505
4442
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4506
4443
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4507
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4508
4444
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4509
4445
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4510
4446
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4546,7 +4482,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4546
4482
|
description?: string | null | undefined;
|
|
4547
4483
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4548
4484
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4549
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4550
4485
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4551
4486
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4552
4487
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4585,7 +4520,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4585
4520
|
includeTaskCodes?: string[] | null | undefined;
|
|
4586
4521
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4587
4522
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4588
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4589
4523
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4590
4524
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4591
4525
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4605,7 +4539,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4605
4539
|
includeTaskCodes?: string[] | null | undefined;
|
|
4606
4540
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4607
4541
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4608
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4609
4542
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4610
4543
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4611
4544
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4641,7 +4574,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4641
4574
|
description?: string | null | undefined;
|
|
4642
4575
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4643
4576
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4644
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4645
4577
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4646
4578
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4647
4579
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4680,7 +4612,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4680
4612
|
includeTaskCodes?: string[] | null | undefined;
|
|
4681
4613
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4682
4614
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4683
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4684
4615
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4685
4616
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4686
4617
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4700,7 +4631,6 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4700
4631
|
includeTaskCodes?: string[] | null | undefined;
|
|
4701
4632
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4702
4633
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4703
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4704
4634
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4705
4635
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4706
4636
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4725,7 +4655,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4725
4655
|
stationGroups: z.ZodArray<z.ZodObject<{
|
|
4726
4656
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4727
4657
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4728
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4729
4658
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4730
4659
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4731
4660
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4749,7 +4678,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4749
4678
|
stations: z.ZodArray<z.ZodObject<{
|
|
4750
4679
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4751
4680
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4752
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4753
4681
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4754
4682
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4755
4683
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -4808,7 +4736,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4808
4736
|
description?: string | null | undefined;
|
|
4809
4737
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4810
4738
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4811
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4812
4739
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4813
4740
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4814
4741
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4855,7 +4782,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4855
4782
|
description?: string | null | undefined;
|
|
4856
4783
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4857
4784
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4858
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4859
4785
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4860
4786
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4861
4787
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4906,7 +4832,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4906
4832
|
description?: string | null | undefined;
|
|
4907
4833
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4908
4834
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4909
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4910
4835
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4911
4836
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4912
4837
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4945,7 +4870,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4945
4870
|
includeTaskCodes?: string[] | null | undefined;
|
|
4946
4871
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4947
4872
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4948
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4949
4873
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4950
4874
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4951
4875
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -4977,7 +4901,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4977
4901
|
description?: string | null | undefined;
|
|
4978
4902
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
4979
4903
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
4980
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
4981
4904
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
4982
4905
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
4983
4906
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5016,7 +4939,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5016
4939
|
includeTaskCodes?: string[] | null | undefined;
|
|
5017
4940
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5018
4941
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5019
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5020
4942
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5021
4943
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5022
4944
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5059,7 +4981,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5059
4981
|
description?: string | null | undefined;
|
|
5060
4982
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5061
4983
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5062
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5063
4984
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5064
4985
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5065
4986
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5098,7 +5019,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5098
5019
|
includeTaskCodes?: string[] | null | undefined;
|
|
5099
5020
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5100
5021
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5101
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5102
5022
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5103
5023
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5104
5024
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5139,7 +5059,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5139
5059
|
description?: string | null | undefined;
|
|
5140
5060
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5141
5061
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5142
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5143
5062
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5144
5063
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5145
5064
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5178,7 +5097,6 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5178
5097
|
includeTaskCodes?: string[] | null | undefined;
|
|
5179
5098
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5180
5099
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5181
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5182
5100
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5183
5101
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5184
5102
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5478,7 +5396,6 @@ type SkuViewModel = z.infer<typeof SkuViewModel>;
|
|
|
5478
5396
|
declare const StationSchema: z.ZodObject<{
|
|
5479
5397
|
enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5480
5398
|
enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5481
|
-
enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5482
5399
|
enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5483
5400
|
enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5484
5401
|
enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
@@ -5542,7 +5459,6 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5542
5459
|
description?: string | null | undefined;
|
|
5543
5460
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5544
5461
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5545
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5546
5462
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5547
5463
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5548
5464
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -5591,7 +5507,6 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5591
5507
|
description?: string | null | undefined;
|
|
5592
5508
|
enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
|
|
5593
5509
|
enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
5594
|
-
enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
|
|
5595
5510
|
enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
|
|
5596
5511
|
enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
|
|
5597
5512
|
enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
|
|
@@ -6009,6 +5924,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6009
5924
|
pattern: string;
|
|
6010
5925
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6011
5926
|
}>]>>;
|
|
5927
|
+
requireNotes: z.ZodOptional<z.ZodBoolean>;
|
|
6012
5928
|
} & {
|
|
6013
5929
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6014
5930
|
completedOperatorInitials: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6025,6 +5941,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6025
5941
|
pattern: string;
|
|
6026
5942
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6027
5943
|
};
|
|
5944
|
+
requireNotes?: boolean | undefined;
|
|
6028
5945
|
completedAt?: string | null | undefined;
|
|
6029
5946
|
completedOperatorInitials?: string | null | undefined;
|
|
6030
5947
|
periodStartAt?: string | null | undefined;
|
|
@@ -6033,6 +5950,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6033
5950
|
code: string;
|
|
6034
5951
|
title: string;
|
|
6035
5952
|
description: string;
|
|
5953
|
+
requireNotes?: boolean | undefined;
|
|
6036
5954
|
frequency?: {
|
|
6037
5955
|
type: "schedule";
|
|
6038
5956
|
} | {
|
|
@@ -6198,6 +6116,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6198
6116
|
pattern: string;
|
|
6199
6117
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6200
6118
|
};
|
|
6119
|
+
requireNotes?: boolean | undefined;
|
|
6201
6120
|
completedAt?: string | null | undefined;
|
|
6202
6121
|
completedOperatorInitials?: string | null | undefined;
|
|
6203
6122
|
periodStartAt?: string | null | undefined;
|
|
@@ -6349,6 +6268,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6349
6268
|
code: string;
|
|
6350
6269
|
title: string;
|
|
6351
6270
|
description: string;
|
|
6271
|
+
requireNotes?: boolean | undefined;
|
|
6352
6272
|
frequency?: {
|
|
6353
6273
|
type: "schedule";
|
|
6354
6274
|
} | {
|
package/build/index.js
CHANGED
|
@@ -174,7 +174,10 @@ var require_task = __commonJS({
|
|
|
174
174
|
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
175
|
title: zod_1.z.string().describe("Human-readable title of the Task (e.g., 'Machine Startup Checklist', 'Quality Inspection Procedure')"),
|
|
176
176
|
description: zod_1.z.string().describe("Detailed description of the Task and its purpose"),
|
|
177
|
-
frequency: exports2.TaskFrequencySchema.default({ type: exports2.TASK_FREQUENCY_TYPE_SCHEDULE })
|
|
177
|
+
frequency: exports2.TaskFrequencySchema.default({ type: exports2.TASK_FREQUENCY_TYPE_SCHEDULE }),
|
|
178
|
+
// Optional at the schema level so pre-existing Tasks (written before this field existed) still
|
|
179
|
+
// 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.")
|
|
178
181
|
}).strict();
|
|
179
182
|
}
|
|
180
183
|
});
|
|
@@ -245,13 +248,6 @@ var require_registry = __commonJS({
|
|
|
245
248
|
allowedLevels: ["account", "plant", "stationGroup", "station"],
|
|
246
249
|
oiManaged: false
|
|
247
250
|
},
|
|
248
|
-
enableInterruptionMode: {
|
|
249
|
-
key: "enableInterruptionMode",
|
|
250
|
-
label: "Allow Interruption Mode",
|
|
251
|
-
description: "Allow operators to put a running schedule into interruption mode.",
|
|
252
|
-
allowedLevels: ["account", "plant", "stationGroup", "station"],
|
|
253
|
-
oiManaged: false
|
|
254
|
-
},
|
|
255
251
|
enableQuickScheduleStart: {
|
|
256
252
|
key: "enableQuickScheduleStart",
|
|
257
253
|
label: "Allow Ad Hoc Schedules",
|
|
@@ -749,7 +745,7 @@ var require_base_station = __commonJS({
|
|
|
749
745
|
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"),
|
|
750
746
|
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"),
|
|
751
747
|
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."),
|
|
752
|
-
// Feature flags (
|
|
748
|
+
// Feature flags (allowManualProduction, allowQuickScheduleStart,
|
|
753
749
|
// allowScheduleCutShort, allowRejectProduction, allowEditPartsPerCycle, schedulingOnly) are now
|
|
754
750
|
// registry-managed tri-state `enable*` fields, added below via flagSchemaFieldsForLevel("station").
|
|
755
751
|
// Current State
|
|
@@ -2549,7 +2545,10 @@ var require_task_completion = __commonJS({
|
|
|
2549
2545
|
expectedAt: zod_1.z.string(),
|
|
2550
2546
|
completedAt: zod_1.z.string().nullish(),
|
|
2551
2547
|
completedUserId: zod_1.z.number().nullish(),
|
|
2552
|
-
completedOperatorInitials: zod_1.z.string().nullish()
|
|
2548
|
+
completedOperatorInitials: zod_1.z.string().nullish(),
|
|
2549
|
+
// Free-text detail recorded at completion time. Mandatory when the Task has `requireNotes` —
|
|
2550
|
+
// enforced at the completion API, not here, so expectation rows can be written noteless.
|
|
2551
|
+
note: zod_1.z.string().nullish()
|
|
2553
2552
|
}).refine((v) => v.scheduleId == null !== (v.periodStartAt == null), "Exactly one of scheduleId or periodStartAt must be set on a Task completion");
|
|
2554
2553
|
}
|
|
2555
2554
|
});
|
|
@@ -8918,7 +8917,6 @@ var require_station4 = __commonJS({
|
|
|
8918
8917
|
// from the manifest via `resolveFlag(manifest, key, { stationCode })`.
|
|
8919
8918
|
enableProductionCorrection: true,
|
|
8920
8919
|
enableManualProduction: true,
|
|
8921
|
-
enableInterruptionMode: true,
|
|
8922
8920
|
enableQuickScheduleStart: true,
|
|
8923
8921
|
enableScheduleCutShort: true,
|
|
8924
8922
|
enableRejectProduction: true,
|
|
@@ -9000,7 +8998,6 @@ var require_station_group3 = __commonJS({
|
|
|
9000
8998
|
// from the manifest via `resolveFlag(manifest, key, { stationGroupCode })`.
|
|
9001
8999
|
enableProductionCorrection: true,
|
|
9002
9000
|
enableManualProduction: true,
|
|
9003
|
-
enableInterruptionMode: true,
|
|
9004
9001
|
enableQuickScheduleStart: true,
|
|
9005
9002
|
enableScheduleCutShort: true,
|
|
9006
9003
|
enableRejectProduction: true,
|
|
@@ -9192,7 +9189,6 @@ var require_manifest_helpers = __commonJS({
|
|
|
9192
9189
|
allowDragBetweenStationsOnGantt: "enableDragBetweenStationsOnGantt",
|
|
9193
9190
|
defaultAutoEndOnQuantityComplete: "enableAutoEndOnQuantityComplete",
|
|
9194
9191
|
allowManualProduction: "enableManualProduction",
|
|
9195
|
-
allowInterruptionMode: "enableInterruptionMode",
|
|
9196
9192
|
allowQuickScheduleStart: "enableQuickScheduleStart",
|
|
9197
9193
|
allowScheduleCutShort: "enableScheduleCutShort",
|
|
9198
9194
|
allowRejectProduction: "enableRejectProduction",
|
|
@@ -9200,10 +9196,18 @@ var require_manifest_helpers = __commonJS({
|
|
|
9200
9196
|
allowScheduleStationFlexibility: "enableScheduleStationFlexibility",
|
|
9201
9197
|
schedulingOnly: "enableSchedulingOnly"
|
|
9202
9198
|
};
|
|
9199
|
+
var REMOVED_FLAG_KEYS = [
|
|
9200
|
+
// Interruption Mode was never wired to any behaviour and was removed in GitLab #2208.
|
|
9201
|
+
"enableInterruptionMode",
|
|
9202
|
+
"allowInterruptionMode"
|
|
9203
|
+
];
|
|
9203
9204
|
function renameLegacyFlagsInLevel(level) {
|
|
9204
9205
|
if (!level || typeof level !== "object") {
|
|
9205
9206
|
return;
|
|
9206
9207
|
}
|
|
9208
|
+
for (const removedKey of REMOVED_FLAG_KEYS) {
|
|
9209
|
+
delete level[removedKey];
|
|
9210
|
+
}
|
|
9207
9211
|
for (const [oldKey, newKey] of Object.entries(LEGACY_FLAG_RENAMES)) {
|
|
9208
9212
|
if (Object.prototype.hasOwnProperty.call(level, oldKey)) {
|
|
9209
9213
|
if (!Object.prototype.hasOwnProperty.call(level, newKey)) {
|
package/package.json
CHANGED