busroot-sdk 0.0.8-dev.2729374553 → 0.0.8-dev.2732994359
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 +127 -0
- package/build/index.js +15 -2
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
46
46
|
enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
47
47
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
48
48
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
49
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
49
50
|
id: z.ZodString;
|
|
50
51
|
domain: z.ZodString;
|
|
51
52
|
stationCountLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -111,6 +112,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
111
112
|
enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
112
113
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
113
114
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
115
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
|
|
114
116
|
id: z.ZodString;
|
|
115
117
|
domain: z.ZodString;
|
|
116
118
|
stationCountLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -193,6 +195,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
193
195
|
pattern: string;
|
|
194
196
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
195
197
|
}>]>>;
|
|
198
|
+
requireNotes: z.ZodOptional<z.ZodBoolean>;
|
|
196
199
|
}, "strict", z.ZodTypeAny, {
|
|
197
200
|
code: string;
|
|
198
201
|
title: string;
|
|
@@ -204,10 +207,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
204
207
|
pattern: string;
|
|
205
208
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
206
209
|
};
|
|
210
|
+
requireNotes?: boolean | undefined;
|
|
207
211
|
}, {
|
|
208
212
|
code: string;
|
|
209
213
|
title: string;
|
|
210
214
|
description: string;
|
|
215
|
+
requireNotes?: boolean | undefined;
|
|
211
216
|
frequency?: {
|
|
212
217
|
type: "schedule";
|
|
213
218
|
} | {
|
|
@@ -281,6 +286,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
281
286
|
enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
282
287
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
283
288
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
289
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
284
290
|
code: z.ZodString;
|
|
285
291
|
name: z.ZodString;
|
|
286
292
|
timezone: z.ZodString;
|
|
@@ -302,6 +308,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
302
308
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
303
309
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
304
310
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
311
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
305
312
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
306
313
|
code: z.ZodString;
|
|
307
314
|
name: z.ZodString;
|
|
@@ -325,6 +332,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
325
332
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
326
333
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
327
334
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
335
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
328
336
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
329
337
|
code: z.ZodString;
|
|
330
338
|
name: z.ZodString;
|
|
@@ -383,6 +391,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
383
391
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
384
392
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
385
393
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
394
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
386
395
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
387
396
|
excludeTaskCodes?: string[] | null | undefined;
|
|
388
397
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -429,6 +438,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
429
438
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
430
439
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
431
440
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
441
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
432
442
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
433
443
|
excludeTaskCodes?: string[] | null | undefined;
|
|
434
444
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -479,6 +489,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
479
489
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
480
490
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
481
491
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
492
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
482
493
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
483
494
|
excludeTaskCodes?: string[] | null | undefined;
|
|
484
495
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -517,6 +528,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
517
528
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
518
529
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
519
530
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
531
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
520
532
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
521
533
|
excludeTaskCodes?: string[] | null | undefined;
|
|
522
534
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -548,6 +560,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
548
560
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
549
561
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
550
562
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
563
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
551
564
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
552
565
|
excludeTaskCodes?: string[] | null | undefined;
|
|
553
566
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -586,6 +599,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
586
599
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
587
600
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
588
601
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
602
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
589
603
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
590
604
|
excludeTaskCodes?: string[] | null | undefined;
|
|
591
605
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -627,6 +641,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
627
641
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
628
642
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
629
643
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
644
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
630
645
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
631
646
|
excludeTaskCodes?: string[] | null | undefined;
|
|
632
647
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -665,6 +680,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
665
680
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
666
681
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
667
682
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
683
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
668
684
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
669
685
|
excludeTaskCodes?: string[] | null | undefined;
|
|
670
686
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -683,6 +699,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
683
699
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
684
700
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
685
701
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
702
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
686
703
|
excludeTaskCodes?: string[] | null | undefined;
|
|
687
704
|
includeReasonCodes?: string[] | null | undefined;
|
|
688
705
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -719,6 +736,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
719
736
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
720
737
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
721
738
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
739
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
722
740
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
723
741
|
excludeTaskCodes?: string[] | null | undefined;
|
|
724
742
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -757,6 +775,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
757
775
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
758
776
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
759
777
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
778
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
760
779
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
761
780
|
excludeTaskCodes?: string[] | null | undefined;
|
|
762
781
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -775,6 +794,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
775
794
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
776
795
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
777
796
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
797
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
778
798
|
weekStartDay?: number | undefined;
|
|
779
799
|
excludeTaskCodes?: string[] | null | undefined;
|
|
780
800
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -817,6 +837,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
817
837
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
818
838
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
819
839
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
840
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
820
841
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
821
842
|
excludeTaskCodes?: string[] | null | undefined;
|
|
822
843
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -855,6 +876,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
855
876
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
856
877
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
857
878
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
879
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
858
880
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
859
881
|
excludeTaskCodes?: string[] | null | undefined;
|
|
860
882
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -873,6 +895,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
873
895
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
874
896
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
875
897
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
898
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
876
899
|
excludeTaskCodes?: string[] | null | undefined;
|
|
877
900
|
includeReasonCodes?: string[] | null | undefined;
|
|
878
901
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -896,6 +919,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
896
919
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
897
920
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
898
921
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
922
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
899
923
|
excludeTaskCodes?: string[] | null | undefined;
|
|
900
924
|
includeReasonCodes?: string[] | null | undefined;
|
|
901
925
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -931,6 +955,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
931
955
|
pattern: string;
|
|
932
956
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
933
957
|
};
|
|
958
|
+
requireNotes?: boolean | undefined;
|
|
934
959
|
}[] | undefined;
|
|
935
960
|
skus?: {
|
|
936
961
|
code: string;
|
|
@@ -985,6 +1010,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
985
1010
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
986
1011
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
987
1012
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1013
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
988
1014
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
989
1015
|
excludeTaskCodes?: string[] | null | undefined;
|
|
990
1016
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1023,6 +1049,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1023
1049
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1024
1050
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1025
1051
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1052
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1026
1053
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1027
1054
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1028
1055
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1041,6 +1068,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1041
1068
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1042
1069
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1043
1070
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1071
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1044
1072
|
weekStartDay?: number | undefined;
|
|
1045
1073
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1046
1074
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1065,6 +1093,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1065
1093
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1066
1094
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1067
1095
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1096
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1068
1097
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1069
1098
|
includeReasonCodes?: string[] | null | undefined;
|
|
1070
1099
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1093,6 +1122,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1093
1122
|
code: string;
|
|
1094
1123
|
title: string;
|
|
1095
1124
|
description: string;
|
|
1125
|
+
requireNotes?: boolean | undefined;
|
|
1096
1126
|
frequency?: {
|
|
1097
1127
|
type: "schedule";
|
|
1098
1128
|
} | {
|
|
@@ -1157,6 +1187,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1157
1187
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1158
1188
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1159
1189
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1190
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1160
1191
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1161
1192
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1162
1193
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1195,6 +1226,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1195
1226
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1196
1227
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1197
1228
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1229
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1198
1230
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1199
1231
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1200
1232
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1213,6 +1245,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1213
1245
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1214
1246
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1215
1247
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1248
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1216
1249
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1217
1250
|
includeReasonCodes?: string[] | null | undefined;
|
|
1218
1251
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1236,6 +1269,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1236
1269
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1237
1270
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1238
1271
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1272
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1239
1273
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1240
1274
|
includeReasonCodes?: string[] | null | undefined;
|
|
1241
1275
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1271,6 +1305,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1271
1305
|
pattern: string;
|
|
1272
1306
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1273
1307
|
};
|
|
1308
|
+
requireNotes?: boolean | undefined;
|
|
1274
1309
|
}[] | undefined;
|
|
1275
1310
|
skus?: {
|
|
1276
1311
|
code: string;
|
|
@@ -1328,6 +1363,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1328
1363
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1329
1364
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1330
1365
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1366
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1331
1367
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1332
1368
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1333
1369
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1366,6 +1402,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1366
1402
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1367
1403
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1368
1404
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1405
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1369
1406
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1370
1407
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1371
1408
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1384,6 +1421,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1384
1421
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1385
1422
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1386
1423
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1424
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1387
1425
|
weekStartDay?: number | undefined;
|
|
1388
1426
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1389
1427
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1408,6 +1446,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1408
1446
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1409
1447
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1410
1448
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1449
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1411
1450
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1412
1451
|
includeReasonCodes?: string[] | null | undefined;
|
|
1413
1452
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1436,6 +1475,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1436
1475
|
code: string;
|
|
1437
1476
|
title: string;
|
|
1438
1477
|
description: string;
|
|
1478
|
+
requireNotes?: boolean | undefined;
|
|
1439
1479
|
frequency?: {
|
|
1440
1480
|
type: "schedule";
|
|
1441
1481
|
} | {
|
|
@@ -1501,6 +1541,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1501
1541
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1502
1542
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1503
1543
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1544
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1504
1545
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1505
1546
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1506
1547
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1539,6 +1580,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1539
1580
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1540
1581
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1541
1582
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1583
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1542
1584
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1543
1585
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1544
1586
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1557,6 +1599,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1557
1599
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1558
1600
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1559
1601
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1602
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1560
1603
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1561
1604
|
includeReasonCodes?: string[] | null | undefined;
|
|
1562
1605
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1580,6 +1623,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1580
1623
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1581
1624
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1582
1625
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1626
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1583
1627
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1584
1628
|
includeReasonCodes?: string[] | null | undefined;
|
|
1585
1629
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1615,6 +1659,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1615
1659
|
pattern: string;
|
|
1616
1660
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1617
1661
|
};
|
|
1662
|
+
requireNotes?: boolean | undefined;
|
|
1618
1663
|
}[] | undefined;
|
|
1619
1664
|
skus?: {
|
|
1620
1665
|
code: string;
|
|
@@ -1672,6 +1717,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1672
1717
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1673
1718
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1674
1719
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1720
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1675
1721
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1676
1722
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1677
1723
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1710,6 +1756,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1710
1756
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1711
1757
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1712
1758
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1759
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1713
1760
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1714
1761
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1715
1762
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1728,6 +1775,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1728
1775
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1729
1776
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1730
1777
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1778
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1731
1779
|
weekStartDay?: number | undefined;
|
|
1732
1780
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1733
1781
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1752,6 +1800,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1752
1800
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1753
1801
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1754
1802
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1803
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1755
1804
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1756
1805
|
includeReasonCodes?: string[] | null | undefined;
|
|
1757
1806
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1780,6 +1829,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1780
1829
|
code: string;
|
|
1781
1830
|
title: string;
|
|
1782
1831
|
description: string;
|
|
1832
|
+
requireNotes?: boolean | undefined;
|
|
1783
1833
|
frequency?: {
|
|
1784
1834
|
type: "schedule";
|
|
1785
1835
|
} | {
|
|
@@ -1849,6 +1899,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1849
1899
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1850
1900
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1851
1901
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1902
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1852
1903
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1853
1904
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1854
1905
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1887,6 +1938,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1887
1938
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1888
1939
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1889
1940
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1941
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1890
1942
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1891
1943
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1892
1944
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1905,6 +1957,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1905
1957
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1906
1958
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1907
1959
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1960
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1908
1961
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1909
1962
|
includeReasonCodes?: string[] | null | undefined;
|
|
1910
1963
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1928,6 +1981,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1928
1981
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1929
1982
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1930
1983
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1984
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1931
1985
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1932
1986
|
includeReasonCodes?: string[] | null | undefined;
|
|
1933
1987
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1963,6 +2017,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1963
2017
|
pattern: string;
|
|
1964
2018
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
1965
2019
|
};
|
|
2020
|
+
requireNotes?: boolean | undefined;
|
|
1966
2021
|
}[] | undefined;
|
|
1967
2022
|
skus?: {
|
|
1968
2023
|
code: string;
|
|
@@ -1995,6 +2050,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1995
2050
|
enableEditPartsPerCycle?: "on" | "off" | null | undefined;
|
|
1996
2051
|
enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
|
|
1997
2052
|
enableManualDowntime?: "on" | "off" | null | undefined;
|
|
2053
|
+
enableAlwaysConnected?: "on" | "off" | null | undefined;
|
|
1998
2054
|
includeReasonCodes?: string[] | null | undefined;
|
|
1999
2055
|
excludeReasonCodes?: string[] | null | undefined;
|
|
2000
2056
|
includeTaskCodes?: string[] | null | undefined;
|
|
@@ -2053,6 +2109,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2053
2109
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2054
2110
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2055
2111
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2112
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2056
2113
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2057
2114
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2058
2115
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2091,6 +2148,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2091
2148
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2092
2149
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2093
2150
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2151
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2094
2152
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2095
2153
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2096
2154
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2109,6 +2167,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2109
2167
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
2110
2168
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2111
2169
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2170
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2112
2171
|
weekStartDay?: number | undefined;
|
|
2113
2172
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2114
2173
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2133,6 +2192,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2133
2192
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
2134
2193
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
2135
2194
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
2195
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
2136
2196
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2137
2197
|
includeReasonCodes?: string[] | null | undefined;
|
|
2138
2198
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -2161,6 +2221,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2161
2221
|
code: string;
|
|
2162
2222
|
title: string;
|
|
2163
2223
|
description: string;
|
|
2224
|
+
requireNotes?: boolean | undefined;
|
|
2164
2225
|
frequency?: {
|
|
2165
2226
|
type: "schedule";
|
|
2166
2227
|
} | {
|
|
@@ -2200,6 +2261,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2200
2261
|
enableEditPartsPerCycle?: "on" | "off" | null | undefined;
|
|
2201
2262
|
enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
|
|
2202
2263
|
enableManualDowntime?: "on" | "off" | null | undefined;
|
|
2264
|
+
enableAlwaysConnected?: "on" | "off" | null | undefined;
|
|
2203
2265
|
includeReasonCodes?: string[] | null | undefined;
|
|
2204
2266
|
excludeReasonCodes?: string[] | null | undefined;
|
|
2205
2267
|
includeTaskCodes?: string[] | null | undefined;
|
|
@@ -2411,6 +2473,7 @@ declare class BusrootClient {
|
|
|
2411
2473
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2412
2474
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2413
2475
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2476
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2414
2477
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2415
2478
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2416
2479
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2449,6 +2512,7 @@ declare class BusrootClient {
|
|
|
2449
2512
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2450
2513
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2451
2514
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2515
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2452
2516
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2453
2517
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2454
2518
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2467,6 +2531,7 @@ declare class BusrootClient {
|
|
|
2467
2531
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
2468
2532
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2469
2533
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2534
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2470
2535
|
weekStartDay?: number | undefined;
|
|
2471
2536
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2472
2537
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2491,6 +2556,7 @@ declare class BusrootClient {
|
|
|
2491
2556
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
2492
2557
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
2493
2558
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
2559
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
2494
2560
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2495
2561
|
includeReasonCodes?: string[] | null | undefined;
|
|
2496
2562
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -2519,6 +2585,7 @@ declare class BusrootClient {
|
|
|
2519
2585
|
code: string;
|
|
2520
2586
|
title: string;
|
|
2521
2587
|
description: string;
|
|
2588
|
+
requireNotes?: boolean | undefined;
|
|
2522
2589
|
frequency?: {
|
|
2523
2590
|
type: "schedule";
|
|
2524
2591
|
} | {
|
|
@@ -2558,6 +2625,7 @@ declare class BusrootClient {
|
|
|
2558
2625
|
enableEditPartsPerCycle?: "on" | "off" | null | undefined;
|
|
2559
2626
|
enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
|
|
2560
2627
|
enableManualDowntime?: "on" | "off" | null | undefined;
|
|
2628
|
+
enableAlwaysConnected?: "on" | "off" | null | undefined;
|
|
2561
2629
|
includeReasonCodes?: string[] | null | undefined;
|
|
2562
2630
|
excludeReasonCodes?: string[] | null | undefined;
|
|
2563
2631
|
includeTaskCodes?: string[] | null | undefined;
|
|
@@ -2622,6 +2690,7 @@ declare class BusrootClient {
|
|
|
2622
2690
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2623
2691
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2624
2692
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2693
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2625
2694
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2626
2695
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2627
2696
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2660,6 +2729,7 @@ declare class BusrootClient {
|
|
|
2660
2729
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2661
2730
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2662
2731
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2732
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2663
2733
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2664
2734
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2665
2735
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2678,6 +2748,7 @@ declare class BusrootClient {
|
|
|
2678
2748
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
2679
2749
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2680
2750
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2751
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2681
2752
|
weekStartDay?: number | undefined;
|
|
2682
2753
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2683
2754
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2702,6 +2773,7 @@ declare class BusrootClient {
|
|
|
2702
2773
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
2703
2774
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
2704
2775
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
2776
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
2705
2777
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2706
2778
|
includeReasonCodes?: string[] | null | undefined;
|
|
2707
2779
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -2730,6 +2802,7 @@ declare class BusrootClient {
|
|
|
2730
2802
|
code: string;
|
|
2731
2803
|
title: string;
|
|
2732
2804
|
description: string;
|
|
2805
|
+
requireNotes?: boolean | undefined;
|
|
2733
2806
|
frequency?: {
|
|
2734
2807
|
type: "schedule";
|
|
2735
2808
|
} | {
|
|
@@ -2769,6 +2842,7 @@ declare class BusrootClient {
|
|
|
2769
2842
|
enableEditPartsPerCycle?: "on" | "off" | null | undefined;
|
|
2770
2843
|
enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
|
|
2771
2844
|
enableManualDowntime?: "on" | "off" | null | undefined;
|
|
2845
|
+
enableAlwaysConnected?: "on" | "off" | null | undefined;
|
|
2772
2846
|
includeReasonCodes?: string[] | null | undefined;
|
|
2773
2847
|
excludeReasonCodes?: string[] | null | undefined;
|
|
2774
2848
|
includeTaskCodes?: string[] | null | undefined;
|
|
@@ -2831,6 +2905,7 @@ declare class BusrootClient {
|
|
|
2831
2905
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2832
2906
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2833
2907
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2908
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2834
2909
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2835
2910
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2836
2911
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2869,6 +2944,7 @@ declare class BusrootClient {
|
|
|
2869
2944
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2870
2945
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2871
2946
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2947
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2872
2948
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2873
2949
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2874
2950
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2912,6 +2988,7 @@ declare class BusrootClient {
|
|
|
2912
2988
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2913
2989
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2914
2990
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2991
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2915
2992
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2916
2993
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2917
2994
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2950,6 +3027,7 @@ declare class BusrootClient {
|
|
|
2950
3027
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2951
3028
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2952
3029
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3030
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2953
3031
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2954
3032
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2955
3033
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2971,6 +3049,7 @@ declare class BusrootClient {
|
|
|
2971
3049
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
2972
3050
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2973
3051
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3052
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2974
3053
|
dayStartHour?: number | undefined;
|
|
2975
3054
|
weekStartDay?: number | undefined;
|
|
2976
3055
|
timezone?: string | undefined;
|
|
@@ -3011,6 +3090,7 @@ declare class BusrootClient {
|
|
|
3011
3090
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
3012
3091
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3013
3092
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3093
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3014
3094
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3015
3095
|
excludeTaskCodes?: string[] | null | undefined;
|
|
3016
3096
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -3049,6 +3129,7 @@ declare class BusrootClient {
|
|
|
3049
3129
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
3050
3130
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3051
3131
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3132
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3052
3133
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3053
3134
|
excludeTaskCodes?: string[] | null | undefined;
|
|
3054
3135
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -3090,6 +3171,7 @@ declare class BusrootClient {
|
|
|
3090
3171
|
minimumCycleTime?: number | null | undefined;
|
|
3091
3172
|
description?: string | null | undefined;
|
|
3092
3173
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3174
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3093
3175
|
speedScale?: number | null | undefined;
|
|
3094
3176
|
speedOffset?: number | null | undefined;
|
|
3095
3177
|
speedToProductionRatio?: number | null | undefined;
|
|
@@ -3211,6 +3293,7 @@ declare class BusrootClient {
|
|
|
3211
3293
|
code: string;
|
|
3212
3294
|
title: string;
|
|
3213
3295
|
description: string;
|
|
3296
|
+
requireNotes?: boolean | undefined;
|
|
3214
3297
|
frequency?: {
|
|
3215
3298
|
type: "schedule";
|
|
3216
3299
|
} | {
|
|
@@ -3358,6 +3441,7 @@ declare class BusrootClient {
|
|
|
3358
3441
|
enableScheduleStationFlexibility?: "on" | "off" | "inherit" | null | undefined;
|
|
3359
3442
|
enableSchedulingOnly?: "on" | "off" | "inherit" | null | undefined;
|
|
3360
3443
|
enableManualDowntime?: "on" | "off" | "inherit" | null | undefined;
|
|
3444
|
+
enableAlwaysConnected?: "on" | "off" | "inherit" | null | undefined;
|
|
3361
3445
|
enableMeterOnly?: "on" | "off" | "inherit" | null | undefined;
|
|
3362
3446
|
description?: string | null | undefined;
|
|
3363
3447
|
shiftPatternCode?: string | null | undefined;
|
|
@@ -3402,6 +3486,7 @@ declare class BusrootClient {
|
|
|
3402
3486
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3403
3487
|
enableSchedulingOnly: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3404
3488
|
enableManualDowntime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3489
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3405
3490
|
enableMeterOnly: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3406
3491
|
name: z.ZodOptional<z.ZodString>;
|
|
3407
3492
|
shiftPatternCode: z.ZodOptional<z.ZodString>;
|
|
@@ -3449,6 +3534,7 @@ declare class BusrootClient {
|
|
|
3449
3534
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
3450
3535
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3451
3536
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3537
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3452
3538
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3453
3539
|
excludeTaskCodes?: string[] | null | undefined;
|
|
3454
3540
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -3476,6 +3562,7 @@ declare class BusrootClient {
|
|
|
3476
3562
|
plantTimezone: string;
|
|
3477
3563
|
shiftPatternCode?: string | null | undefined;
|
|
3478
3564
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3565
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3479
3566
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3480
3567
|
totalEnergyStationCodes?: string[] | null | undefined;
|
|
3481
3568
|
}>;
|
|
@@ -3778,10 +3865,12 @@ declare class BusrootClient {
|
|
|
3778
3865
|
pattern: string;
|
|
3779
3866
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
3780
3867
|
};
|
|
3868
|
+
requireNotes?: boolean | undefined;
|
|
3781
3869
|
}, ...args: unknown[]) => Promise<{
|
|
3782
3870
|
code: string;
|
|
3783
3871
|
title: string;
|
|
3784
3872
|
description: string;
|
|
3873
|
+
requireNotes?: boolean | undefined;
|
|
3785
3874
|
frequency?: {
|
|
3786
3875
|
type: "schedule";
|
|
3787
3876
|
} | {
|
|
@@ -4126,6 +4215,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4126
4215
|
enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4127
4216
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4128
4217
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4218
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4129
4219
|
code: z.ZodString;
|
|
4130
4220
|
name: z.ZodString;
|
|
4131
4221
|
timezone: z.ZodString;
|
|
@@ -4147,6 +4237,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4147
4237
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4148
4238
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4149
4239
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4240
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4150
4241
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4151
4242
|
code: z.ZodString;
|
|
4152
4243
|
name: z.ZodString;
|
|
@@ -4170,6 +4261,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4170
4261
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4171
4262
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4172
4263
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4264
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4173
4265
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4174
4266
|
code: z.ZodString;
|
|
4175
4267
|
name: z.ZodString;
|
|
@@ -4228,6 +4320,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4228
4320
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4229
4321
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4230
4322
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4323
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4231
4324
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4232
4325
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4233
4326
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4274,6 +4367,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4274
4367
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4275
4368
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4276
4369
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4370
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4277
4371
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4278
4372
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4279
4373
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4324,6 +4418,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4324
4418
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4325
4419
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4326
4420
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4421
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4327
4422
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4328
4423
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4329
4424
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4362,6 +4457,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4362
4457
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4363
4458
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4364
4459
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4460
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4365
4461
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4366
4462
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4367
4463
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4393,6 +4489,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4393
4489
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4394
4490
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4395
4491
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4492
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4396
4493
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4397
4494
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4398
4495
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4431,6 +4528,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4431
4528
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4432
4529
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4433
4530
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4531
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4434
4532
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4435
4533
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4436
4534
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4472,6 +4570,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4472
4570
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4473
4571
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4474
4572
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4573
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4475
4574
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4476
4575
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4477
4576
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4510,6 +4609,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4510
4609
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4511
4610
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4512
4611
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4612
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4513
4613
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4514
4614
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4515
4615
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4528,6 +4628,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4528
4628
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
4529
4629
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4530
4630
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4631
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4531
4632
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4532
4633
|
includeReasonCodes?: string[] | null | undefined;
|
|
4533
4634
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -4564,6 +4665,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4564
4665
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4565
4666
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4566
4667
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4668
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4567
4669
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4568
4670
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4569
4671
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4602,6 +4704,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4602
4704
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4603
4705
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4604
4706
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4707
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4605
4708
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4606
4709
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4607
4710
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4620,6 +4723,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4620
4723
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
4621
4724
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4622
4725
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4726
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4623
4727
|
weekStartDay?: number | undefined;
|
|
4624
4728
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4625
4729
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4645,6 +4749,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4645
4749
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4646
4750
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4647
4751
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4752
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4648
4753
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4649
4754
|
code: z.ZodString;
|
|
4650
4755
|
name: z.ZodString;
|
|
@@ -4668,6 +4773,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4668
4773
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4669
4774
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4670
4775
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4776
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4671
4777
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4672
4778
|
code: z.ZodString;
|
|
4673
4779
|
name: z.ZodString;
|
|
@@ -4726,6 +4832,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4726
4832
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4727
4833
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4728
4834
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4835
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4729
4836
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4730
4837
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4731
4838
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4772,6 +4879,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4772
4879
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4773
4880
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4774
4881
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4882
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4775
4883
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4776
4884
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4777
4885
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4822,6 +4930,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4822
4930
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4823
4931
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4824
4932
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4933
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4825
4934
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4826
4935
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4827
4936
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4860,6 +4969,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4860
4969
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4861
4970
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4862
4971
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4972
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4863
4973
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4864
4974
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4865
4975
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4891,6 +5001,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4891
5001
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4892
5002
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4893
5003
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5004
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4894
5005
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4895
5006
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4896
5007
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4929,6 +5040,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4929
5040
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4930
5041
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4931
5042
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5043
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4932
5044
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4933
5045
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4934
5046
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4971,6 +5083,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4971
5083
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4972
5084
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4973
5085
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5086
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4974
5087
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4975
5088
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4976
5089
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5009,6 +5122,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5009
5122
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5010
5123
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5011
5124
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5125
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5012
5126
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5013
5127
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5014
5128
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5049,6 +5163,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5049
5163
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5050
5164
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5051
5165
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5166
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5052
5167
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5053
5168
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5054
5169
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5087,6 +5202,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5087
5202
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5088
5203
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5089
5204
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5205
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5090
5206
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5091
5207
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5092
5208
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5386,6 +5502,7 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5386
5502
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5387
5503
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5388
5504
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5505
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5389
5506
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5390
5507
|
code: z.ZodString;
|
|
5391
5508
|
name: z.ZodString;
|
|
@@ -5449,6 +5566,7 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5449
5566
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5450
5567
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5451
5568
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5569
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5452
5570
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5453
5571
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5454
5572
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5497,6 +5615,7 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5497
5615
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5498
5616
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5499
5617
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5618
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5500
5619
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5501
5620
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5502
5621
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5535,6 +5654,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
5535
5654
|
minimumCycleTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5536
5655
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5537
5656
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5657
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5538
5658
|
speedScale: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5539
5659
|
speedOffset: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5540
5660
|
speedToProductionRatio: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -5905,6 +6025,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
5905
6025
|
pattern: string;
|
|
5906
6026
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
5907
6027
|
}>]>>;
|
|
6028
|
+
requireNotes: z.ZodOptional<z.ZodBoolean>;
|
|
5908
6029
|
} & {
|
|
5909
6030
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5910
6031
|
completedOperatorInitials: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5921,6 +6042,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
5921
6042
|
pattern: string;
|
|
5922
6043
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
5923
6044
|
};
|
|
6045
|
+
requireNotes?: boolean | undefined;
|
|
5924
6046
|
completedAt?: string | null | undefined;
|
|
5925
6047
|
completedOperatorInitials?: string | null | undefined;
|
|
5926
6048
|
periodStartAt?: string | null | undefined;
|
|
@@ -5929,6 +6051,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
5929
6051
|
code: string;
|
|
5930
6052
|
title: string;
|
|
5931
6053
|
description: string;
|
|
6054
|
+
requireNotes?: boolean | undefined;
|
|
5932
6055
|
frequency?: {
|
|
5933
6056
|
type: "schedule";
|
|
5934
6057
|
} | {
|
|
@@ -5965,6 +6088,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
5965
6088
|
minimumCycleTime?: number | null | undefined;
|
|
5966
6089
|
description?: string | null | undefined;
|
|
5967
6090
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
6091
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5968
6092
|
speedScale?: number | null | undefined;
|
|
5969
6093
|
speedOffset?: number | null | undefined;
|
|
5970
6094
|
speedToProductionRatio?: number | null | undefined;
|
|
@@ -6093,6 +6217,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6093
6217
|
pattern: string;
|
|
6094
6218
|
availableBeforeDeadlineMinutes?: number | undefined;
|
|
6095
6219
|
};
|
|
6220
|
+
requireNotes?: boolean | undefined;
|
|
6096
6221
|
completedAt?: string | null | undefined;
|
|
6097
6222
|
completedOperatorInitials?: string | null | undefined;
|
|
6098
6223
|
periodStartAt?: string | null | undefined;
|
|
@@ -6122,6 +6247,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6122
6247
|
minimumCycleTime?: number | null | undefined;
|
|
6123
6248
|
description?: string | null | undefined;
|
|
6124
6249
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
6250
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
6125
6251
|
speedScale?: number | null | undefined;
|
|
6126
6252
|
speedOffset?: number | null | undefined;
|
|
6127
6253
|
speedToProductionRatio?: number | null | undefined;
|
|
@@ -6243,6 +6369,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6243
6369
|
code: string;
|
|
6244
6370
|
title: string;
|
|
6245
6371
|
description: string;
|
|
6372
|
+
requireNotes?: boolean | undefined;
|
|
6246
6373
|
frequency?: {
|
|
6247
6374
|
type: "schedule";
|
|
6248
6375
|
} | {
|
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
|
});
|
|
@@ -301,6 +304,13 @@ var require_registry = __commonJS({
|
|
|
301
304
|
allowedLevels: ["account", "plant", "stationGroup", "station"],
|
|
302
305
|
oiManaged: false
|
|
303
306
|
},
|
|
307
|
+
enableAlwaysConnected: {
|
|
308
|
+
key: "enableAlwaysConnected",
|
|
309
|
+
label: "Always Connected",
|
|
310
|
+
description: "Force this station to always show as connected, regardless of device signals. Useful for stations with no physical device. Inherits from parent level if not set.",
|
|
311
|
+
allowedLevels: ["account", "plant", "stationGroup", "station"],
|
|
312
|
+
oiManaged: false
|
|
313
|
+
},
|
|
304
314
|
enableMeterOnly: {
|
|
305
315
|
key: "enableMeterOnly",
|
|
306
316
|
label: "Meter Only",
|
|
@@ -2542,7 +2552,10 @@ var require_task_completion = __commonJS({
|
|
|
2542
2552
|
expectedAt: zod_1.z.string(),
|
|
2543
2553
|
completedAt: zod_1.z.string().nullish(),
|
|
2544
2554
|
completedUserId: zod_1.z.number().nullish(),
|
|
2545
|
-
completedOperatorInitials: zod_1.z.string().nullish()
|
|
2555
|
+
completedOperatorInitials: zod_1.z.string().nullish(),
|
|
2556
|
+
// Free-text detail recorded at completion time. Mandatory when the Task has `requireNotes` —
|
|
2557
|
+
// enforced at the completion API, not here, so expectation rows can be written noteless.
|
|
2558
|
+
note: zod_1.z.string().nullish()
|
|
2546
2559
|
}).refine((v) => v.scheduleId == null !== (v.periodStartAt == null), "Exactly one of scheduleId or periodStartAt must be set on a Task completion");
|
|
2547
2560
|
}
|
|
2548
2561
|
});
|
package/package.json
CHANGED