busroot-sdk 0.0.8-dev.2729374553 → 0.0.8-dev.2732686340
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 +106 -0
- package/build/index.js +7 -0
- 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>>;
|
|
@@ -281,6 +283,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
281
283
|
enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
282
284
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
283
285
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
286
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
284
287
|
code: z.ZodString;
|
|
285
288
|
name: z.ZodString;
|
|
286
289
|
timezone: z.ZodString;
|
|
@@ -302,6 +305,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
302
305
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
303
306
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
304
307
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
308
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
305
309
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
306
310
|
code: z.ZodString;
|
|
307
311
|
name: z.ZodString;
|
|
@@ -325,6 +329,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
325
329
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
326
330
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
327
331
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
332
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
328
333
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
329
334
|
code: z.ZodString;
|
|
330
335
|
name: z.ZodString;
|
|
@@ -383,6 +388,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
383
388
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
384
389
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
385
390
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
391
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
386
392
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
387
393
|
excludeTaskCodes?: string[] | null | undefined;
|
|
388
394
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -429,6 +435,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
429
435
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
430
436
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
431
437
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
438
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
432
439
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
433
440
|
excludeTaskCodes?: string[] | null | undefined;
|
|
434
441
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -479,6 +486,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
479
486
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
480
487
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
481
488
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
489
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
482
490
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
483
491
|
excludeTaskCodes?: string[] | null | undefined;
|
|
484
492
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -517,6 +525,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
517
525
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
518
526
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
519
527
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
528
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
520
529
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
521
530
|
excludeTaskCodes?: string[] | null | undefined;
|
|
522
531
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -548,6 +557,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
548
557
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
549
558
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
550
559
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
560
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
551
561
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
552
562
|
excludeTaskCodes?: string[] | null | undefined;
|
|
553
563
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -586,6 +596,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
586
596
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
587
597
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
588
598
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
599
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
589
600
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
590
601
|
excludeTaskCodes?: string[] | null | undefined;
|
|
591
602
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -627,6 +638,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
627
638
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
628
639
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
629
640
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
641
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
630
642
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
631
643
|
excludeTaskCodes?: string[] | null | undefined;
|
|
632
644
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -665,6 +677,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
665
677
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
666
678
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
667
679
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
680
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
668
681
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
669
682
|
excludeTaskCodes?: string[] | null | undefined;
|
|
670
683
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -683,6 +696,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
683
696
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
684
697
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
685
698
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
699
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
686
700
|
excludeTaskCodes?: string[] | null | undefined;
|
|
687
701
|
includeReasonCodes?: string[] | null | undefined;
|
|
688
702
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -719,6 +733,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
719
733
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
720
734
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
721
735
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
736
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
722
737
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
723
738
|
excludeTaskCodes?: string[] | null | undefined;
|
|
724
739
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -757,6 +772,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
757
772
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
758
773
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
759
774
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
775
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
760
776
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
761
777
|
excludeTaskCodes?: string[] | null | undefined;
|
|
762
778
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -775,6 +791,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
775
791
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
776
792
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
777
793
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
794
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
778
795
|
weekStartDay?: number | undefined;
|
|
779
796
|
excludeTaskCodes?: string[] | null | undefined;
|
|
780
797
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -817,6 +834,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
817
834
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
818
835
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
819
836
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
837
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
820
838
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
821
839
|
excludeTaskCodes?: string[] | null | undefined;
|
|
822
840
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -855,6 +873,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
855
873
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
856
874
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
857
875
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
876
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
858
877
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
859
878
|
excludeTaskCodes?: string[] | null | undefined;
|
|
860
879
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -873,6 +892,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
873
892
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
874
893
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
875
894
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
895
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
876
896
|
excludeTaskCodes?: string[] | null | undefined;
|
|
877
897
|
includeReasonCodes?: string[] | null | undefined;
|
|
878
898
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -896,6 +916,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
896
916
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
897
917
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
898
918
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
919
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
899
920
|
excludeTaskCodes?: string[] | null | undefined;
|
|
900
921
|
includeReasonCodes?: string[] | null | undefined;
|
|
901
922
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -985,6 +1006,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
985
1006
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
986
1007
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
987
1008
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1009
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
988
1010
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
989
1011
|
excludeTaskCodes?: string[] | null | undefined;
|
|
990
1012
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1023,6 +1045,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1023
1045
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1024
1046
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1025
1047
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1048
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1026
1049
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1027
1050
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1028
1051
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1041,6 +1064,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1041
1064
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1042
1065
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1043
1066
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1067
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1044
1068
|
weekStartDay?: number | undefined;
|
|
1045
1069
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1046
1070
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1065,6 +1089,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1065
1089
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1066
1090
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1067
1091
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1092
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1068
1093
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1069
1094
|
includeReasonCodes?: string[] | null | undefined;
|
|
1070
1095
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1157,6 +1182,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1157
1182
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1158
1183
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1159
1184
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1185
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1160
1186
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1161
1187
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1162
1188
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1195,6 +1221,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1195
1221
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1196
1222
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1197
1223
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1224
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1198
1225
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1199
1226
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1200
1227
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1213,6 +1240,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1213
1240
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1214
1241
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1215
1242
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1243
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1216
1244
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1217
1245
|
includeReasonCodes?: string[] | null | undefined;
|
|
1218
1246
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1236,6 +1264,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1236
1264
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1237
1265
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1238
1266
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1267
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1239
1268
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1240
1269
|
includeReasonCodes?: string[] | null | undefined;
|
|
1241
1270
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1328,6 +1357,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1328
1357
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1329
1358
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1330
1359
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1360
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1331
1361
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1332
1362
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1333
1363
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1366,6 +1396,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1366
1396
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1367
1397
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1368
1398
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1399
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1369
1400
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1370
1401
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1371
1402
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1384,6 +1415,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1384
1415
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1385
1416
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1386
1417
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1418
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1387
1419
|
weekStartDay?: number | undefined;
|
|
1388
1420
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1389
1421
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1408,6 +1440,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1408
1440
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1409
1441
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1410
1442
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1443
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1411
1444
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1412
1445
|
includeReasonCodes?: string[] | null | undefined;
|
|
1413
1446
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1501,6 +1534,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1501
1534
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1502
1535
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1503
1536
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1537
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1504
1538
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1505
1539
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1506
1540
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1539,6 +1573,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1539
1573
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1540
1574
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1541
1575
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1576
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1542
1577
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1543
1578
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1544
1579
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1557,6 +1592,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1557
1592
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1558
1593
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1559
1594
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1595
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1560
1596
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1561
1597
|
includeReasonCodes?: string[] | null | undefined;
|
|
1562
1598
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1580,6 +1616,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1580
1616
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1581
1617
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1582
1618
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1619
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1583
1620
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1584
1621
|
includeReasonCodes?: string[] | null | undefined;
|
|
1585
1622
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1672,6 +1709,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1672
1709
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1673
1710
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1674
1711
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1712
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1675
1713
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1676
1714
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1677
1715
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1710,6 +1748,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1710
1748
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1711
1749
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1712
1750
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1751
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1713
1752
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1714
1753
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1715
1754
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1728,6 +1767,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1728
1767
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1729
1768
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1730
1769
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1770
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1731
1771
|
weekStartDay?: number | undefined;
|
|
1732
1772
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1733
1773
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1752,6 +1792,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1752
1792
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1753
1793
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1754
1794
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1795
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1755
1796
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1756
1797
|
includeReasonCodes?: string[] | null | undefined;
|
|
1757
1798
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1849,6 +1890,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1849
1890
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1850
1891
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1851
1892
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1893
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1852
1894
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1853
1895
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1854
1896
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1887,6 +1929,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1887
1929
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1888
1930
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1889
1931
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1932
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1890
1933
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
1891
1934
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1892
1935
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -1905,6 +1948,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1905
1948
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
1906
1949
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
1907
1950
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
1951
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
1908
1952
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1909
1953
|
includeReasonCodes?: string[] | null | undefined;
|
|
1910
1954
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1928,6 +1972,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1928
1972
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
1929
1973
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
1930
1974
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
1975
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
1931
1976
|
excludeTaskCodes?: string[] | null | undefined;
|
|
1932
1977
|
includeReasonCodes?: string[] | null | undefined;
|
|
1933
1978
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -1995,6 +2040,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
1995
2040
|
enableEditPartsPerCycle?: "on" | "off" | null | undefined;
|
|
1996
2041
|
enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
|
|
1997
2042
|
enableManualDowntime?: "on" | "off" | null | undefined;
|
|
2043
|
+
enableAlwaysConnected?: "on" | "off" | null | undefined;
|
|
1998
2044
|
includeReasonCodes?: string[] | null | undefined;
|
|
1999
2045
|
excludeReasonCodes?: string[] | null | undefined;
|
|
2000
2046
|
includeTaskCodes?: string[] | null | undefined;
|
|
@@ -2053,6 +2099,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2053
2099
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2054
2100
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2055
2101
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2102
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2056
2103
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2057
2104
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2058
2105
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2091,6 +2138,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2091
2138
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2092
2139
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2093
2140
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2141
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2094
2142
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2095
2143
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2096
2144
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2109,6 +2157,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2109
2157
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
2110
2158
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2111
2159
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2160
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2112
2161
|
weekStartDay?: number | undefined;
|
|
2113
2162
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2114
2163
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2133,6 +2182,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2133
2182
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
2134
2183
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
2135
2184
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
2185
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
2136
2186
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2137
2187
|
includeReasonCodes?: string[] | null | undefined;
|
|
2138
2188
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -2200,6 +2250,7 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
|
|
|
2200
2250
|
enableEditPartsPerCycle?: "on" | "off" | null | undefined;
|
|
2201
2251
|
enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
|
|
2202
2252
|
enableManualDowntime?: "on" | "off" | null | undefined;
|
|
2253
|
+
enableAlwaysConnected?: "on" | "off" | null | undefined;
|
|
2203
2254
|
includeReasonCodes?: string[] | null | undefined;
|
|
2204
2255
|
excludeReasonCodes?: string[] | null | undefined;
|
|
2205
2256
|
includeTaskCodes?: string[] | null | undefined;
|
|
@@ -2411,6 +2462,7 @@ declare class BusrootClient {
|
|
|
2411
2462
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2412
2463
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2413
2464
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2465
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2414
2466
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2415
2467
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2416
2468
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2449,6 +2501,7 @@ declare class BusrootClient {
|
|
|
2449
2501
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2450
2502
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2451
2503
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2504
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2452
2505
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2453
2506
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2454
2507
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2467,6 +2520,7 @@ declare class BusrootClient {
|
|
|
2467
2520
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
2468
2521
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2469
2522
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2523
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2470
2524
|
weekStartDay?: number | undefined;
|
|
2471
2525
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2472
2526
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2491,6 +2545,7 @@ declare class BusrootClient {
|
|
|
2491
2545
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
2492
2546
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
2493
2547
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
2548
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
2494
2549
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2495
2550
|
includeReasonCodes?: string[] | null | undefined;
|
|
2496
2551
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -2558,6 +2613,7 @@ declare class BusrootClient {
|
|
|
2558
2613
|
enableEditPartsPerCycle?: "on" | "off" | null | undefined;
|
|
2559
2614
|
enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
|
|
2560
2615
|
enableManualDowntime?: "on" | "off" | null | undefined;
|
|
2616
|
+
enableAlwaysConnected?: "on" | "off" | null | undefined;
|
|
2561
2617
|
includeReasonCodes?: string[] | null | undefined;
|
|
2562
2618
|
excludeReasonCodes?: string[] | null | undefined;
|
|
2563
2619
|
includeTaskCodes?: string[] | null | undefined;
|
|
@@ -2622,6 +2678,7 @@ declare class BusrootClient {
|
|
|
2622
2678
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2623
2679
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2624
2680
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2681
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2625
2682
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2626
2683
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2627
2684
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2660,6 +2717,7 @@ declare class BusrootClient {
|
|
|
2660
2717
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2661
2718
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2662
2719
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2720
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2663
2721
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2664
2722
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2665
2723
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2678,6 +2736,7 @@ declare class BusrootClient {
|
|
|
2678
2736
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
2679
2737
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2680
2738
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2739
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2681
2740
|
weekStartDay?: number | undefined;
|
|
2682
2741
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2683
2742
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2702,6 +2761,7 @@ declare class BusrootClient {
|
|
|
2702
2761
|
enableEditPartsPerCycle?: "off" | "on" | null | undefined;
|
|
2703
2762
|
enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
|
|
2704
2763
|
enableManualDowntime?: "off" | "on" | null | undefined;
|
|
2764
|
+
enableAlwaysConnected?: "off" | "on" | null | undefined;
|
|
2705
2765
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2706
2766
|
includeReasonCodes?: string[] | null | undefined;
|
|
2707
2767
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -2769,6 +2829,7 @@ declare class BusrootClient {
|
|
|
2769
2829
|
enableEditPartsPerCycle?: "on" | "off" | null | undefined;
|
|
2770
2830
|
enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
|
|
2771
2831
|
enableManualDowntime?: "on" | "off" | null | undefined;
|
|
2832
|
+
enableAlwaysConnected?: "on" | "off" | null | undefined;
|
|
2772
2833
|
includeReasonCodes?: string[] | null | undefined;
|
|
2773
2834
|
excludeReasonCodes?: string[] | null | undefined;
|
|
2774
2835
|
includeTaskCodes?: string[] | null | undefined;
|
|
@@ -2831,6 +2892,7 @@ declare class BusrootClient {
|
|
|
2831
2892
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2832
2893
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2833
2894
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2895
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2834
2896
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2835
2897
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2836
2898
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2869,6 +2931,7 @@ declare class BusrootClient {
|
|
|
2869
2931
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2870
2932
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2871
2933
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2934
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2872
2935
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2873
2936
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2874
2937
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2912,6 +2975,7 @@ declare class BusrootClient {
|
|
|
2912
2975
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2913
2976
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2914
2977
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
2978
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2915
2979
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2916
2980
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2917
2981
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2950,6 +3014,7 @@ declare class BusrootClient {
|
|
|
2950
3014
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2951
3015
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2952
3016
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3017
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2953
3018
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
2954
3019
|
excludeTaskCodes?: string[] | null | undefined;
|
|
2955
3020
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -2971,6 +3036,7 @@ declare class BusrootClient {
|
|
|
2971
3036
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
2972
3037
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
2973
3038
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3039
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
2974
3040
|
dayStartHour?: number | undefined;
|
|
2975
3041
|
weekStartDay?: number | undefined;
|
|
2976
3042
|
timezone?: string | undefined;
|
|
@@ -3011,6 +3077,7 @@ declare class BusrootClient {
|
|
|
3011
3077
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
3012
3078
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3013
3079
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3080
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3014
3081
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3015
3082
|
excludeTaskCodes?: string[] | null | undefined;
|
|
3016
3083
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -3049,6 +3116,7 @@ declare class BusrootClient {
|
|
|
3049
3116
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
3050
3117
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3051
3118
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3119
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3052
3120
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3053
3121
|
excludeTaskCodes?: string[] | null | undefined;
|
|
3054
3122
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -3090,6 +3158,7 @@ declare class BusrootClient {
|
|
|
3090
3158
|
minimumCycleTime?: number | null | undefined;
|
|
3091
3159
|
description?: string | null | undefined;
|
|
3092
3160
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3161
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3093
3162
|
speedScale?: number | null | undefined;
|
|
3094
3163
|
speedOffset?: number | null | undefined;
|
|
3095
3164
|
speedToProductionRatio?: number | null | undefined;
|
|
@@ -3358,6 +3427,7 @@ declare class BusrootClient {
|
|
|
3358
3427
|
enableScheduleStationFlexibility?: "on" | "off" | "inherit" | null | undefined;
|
|
3359
3428
|
enableSchedulingOnly?: "on" | "off" | "inherit" | null | undefined;
|
|
3360
3429
|
enableManualDowntime?: "on" | "off" | "inherit" | null | undefined;
|
|
3430
|
+
enableAlwaysConnected?: "on" | "off" | "inherit" | null | undefined;
|
|
3361
3431
|
enableMeterOnly?: "on" | "off" | "inherit" | null | undefined;
|
|
3362
3432
|
description?: string | null | undefined;
|
|
3363
3433
|
shiftPatternCode?: string | null | undefined;
|
|
@@ -3402,6 +3472,7 @@ declare class BusrootClient {
|
|
|
3402
3472
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3403
3473
|
enableSchedulingOnly: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3404
3474
|
enableManualDowntime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3475
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3405
3476
|
enableMeterOnly: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
|
|
3406
3477
|
name: z.ZodOptional<z.ZodString>;
|
|
3407
3478
|
shiftPatternCode: z.ZodOptional<z.ZodString>;
|
|
@@ -3449,6 +3520,7 @@ declare class BusrootClient {
|
|
|
3449
3520
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
3450
3521
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3451
3522
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3523
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3452
3524
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3453
3525
|
excludeTaskCodes?: string[] | null | undefined;
|
|
3454
3526
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -3476,6 +3548,7 @@ declare class BusrootClient {
|
|
|
3476
3548
|
plantTimezone: string;
|
|
3477
3549
|
shiftPatternCode?: string | null | undefined;
|
|
3478
3550
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
3551
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
3479
3552
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
3480
3553
|
totalEnergyStationCodes?: string[] | null | undefined;
|
|
3481
3554
|
}>;
|
|
@@ -4126,6 +4199,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4126
4199
|
enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4127
4200
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4128
4201
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4202
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4129
4203
|
code: z.ZodString;
|
|
4130
4204
|
name: z.ZodString;
|
|
4131
4205
|
timezone: z.ZodString;
|
|
@@ -4147,6 +4221,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4147
4221
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4148
4222
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4149
4223
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4224
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4150
4225
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4151
4226
|
code: z.ZodString;
|
|
4152
4227
|
name: z.ZodString;
|
|
@@ -4170,6 +4245,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4170
4245
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4171
4246
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4172
4247
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4248
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4173
4249
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4174
4250
|
code: z.ZodString;
|
|
4175
4251
|
name: z.ZodString;
|
|
@@ -4228,6 +4304,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4228
4304
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4229
4305
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4230
4306
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4307
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4231
4308
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4232
4309
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4233
4310
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4274,6 +4351,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4274
4351
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4275
4352
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4276
4353
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4354
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4277
4355
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4278
4356
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4279
4357
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4324,6 +4402,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4324
4402
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4325
4403
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4326
4404
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4405
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4327
4406
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4328
4407
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4329
4408
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4362,6 +4441,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4362
4441
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4363
4442
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4364
4443
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4444
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4365
4445
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4366
4446
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4367
4447
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4393,6 +4473,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4393
4473
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4394
4474
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4395
4475
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4476
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4396
4477
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4397
4478
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4398
4479
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4431,6 +4512,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4431
4512
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4432
4513
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4433
4514
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4515
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4434
4516
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4435
4517
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4436
4518
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4472,6 +4554,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4472
4554
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4473
4555
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4474
4556
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4557
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4475
4558
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4476
4559
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4477
4560
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4510,6 +4593,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4510
4593
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4511
4594
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4512
4595
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4596
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4513
4597
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4514
4598
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4515
4599
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4528,6 +4612,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4528
4612
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
4529
4613
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4530
4614
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4615
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4531
4616
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4532
4617
|
includeReasonCodes?: string[] | null | undefined;
|
|
4533
4618
|
excludeReasonCodes?: string[] | null | undefined;
|
|
@@ -4564,6 +4649,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4564
4649
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4565
4650
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4566
4651
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4652
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4567
4653
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4568
4654
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4569
4655
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4602,6 +4688,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4602
4688
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4603
4689
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4604
4690
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4691
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4605
4692
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4606
4693
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4607
4694
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4620,6 +4707,7 @@ declare const PlantSchema: z.ZodObject<{
|
|
|
4620
4707
|
enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
|
|
4621
4708
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4622
4709
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4710
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4623
4711
|
weekStartDay?: number | undefined;
|
|
4624
4712
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4625
4713
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4645,6 +4733,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4645
4733
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4646
4734
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4647
4735
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4736
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4648
4737
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4649
4738
|
code: z.ZodString;
|
|
4650
4739
|
name: z.ZodString;
|
|
@@ -4668,6 +4757,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4668
4757
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4669
4758
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4670
4759
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4760
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4671
4761
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
4672
4762
|
code: z.ZodString;
|
|
4673
4763
|
name: z.ZodString;
|
|
@@ -4726,6 +4816,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4726
4816
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4727
4817
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4728
4818
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4819
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4729
4820
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4730
4821
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4731
4822
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4772,6 +4863,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4772
4863
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4773
4864
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4774
4865
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4866
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4775
4867
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4776
4868
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4777
4869
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4822,6 +4914,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4822
4914
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4823
4915
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4824
4916
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4917
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4825
4918
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4826
4919
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4827
4920
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4860,6 +4953,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4860
4953
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4861
4954
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4862
4955
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4956
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4863
4957
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4864
4958
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4865
4959
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4891,6 +4985,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4891
4985
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4892
4986
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4893
4987
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
4988
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4894
4989
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4895
4990
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4896
4991
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4929,6 +5024,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4929
5024
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4930
5025
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4931
5026
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5027
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4932
5028
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4933
5029
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4934
5030
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -4971,6 +5067,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
4971
5067
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
4972
5068
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4973
5069
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5070
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
4974
5071
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
4975
5072
|
excludeTaskCodes?: string[] | null | undefined;
|
|
4976
5073
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5009,6 +5106,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5009
5106
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5010
5107
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5011
5108
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5109
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5012
5110
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5013
5111
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5014
5112
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5049,6 +5147,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5049
5147
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5050
5148
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5051
5149
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5150
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5052
5151
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5053
5152
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5054
5153
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5087,6 +5186,7 @@ declare const PlantViewModel: z.ZodObject<{
|
|
|
5087
5186
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5088
5187
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5089
5188
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5189
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5090
5190
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5091
5191
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5092
5192
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5386,6 +5486,7 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5386
5486
|
enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5387
5487
|
enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5388
5488
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5489
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5389
5490
|
enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5390
5491
|
code: z.ZodString;
|
|
5391
5492
|
name: z.ZodString;
|
|
@@ -5449,6 +5550,7 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5449
5550
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5450
5551
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5451
5552
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5553
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5452
5554
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5453
5555
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5454
5556
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5497,6 +5599,7 @@ declare const StationSchema: z.ZodObject<{
|
|
|
5497
5599
|
enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
|
|
5498
5600
|
enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5499
5601
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
5602
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5500
5603
|
enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
|
|
5501
5604
|
excludeTaskCodes?: string[] | null | undefined;
|
|
5502
5605
|
includeReasonCodes?: string[] | null | undefined;
|
|
@@ -5535,6 +5638,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
5535
5638
|
minimumCycleTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5536
5639
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5537
5640
|
enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5641
|
+
enableAlwaysConnected: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
|
|
5538
5642
|
speedScale: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5539
5643
|
speedOffset: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5540
5644
|
speedToProductionRatio: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -5965,6 +6069,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
5965
6069
|
minimumCycleTime?: number | null | undefined;
|
|
5966
6070
|
description?: string | null | undefined;
|
|
5967
6071
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
6072
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
5968
6073
|
speedScale?: number | null | undefined;
|
|
5969
6074
|
speedOffset?: number | null | undefined;
|
|
5970
6075
|
speedToProductionRatio?: number | null | undefined;
|
|
@@ -6122,6 +6227,7 @@ declare const StationViewModel: z.ZodObject<{
|
|
|
6122
6227
|
minimumCycleTime?: number | null | undefined;
|
|
6123
6228
|
description?: string | null | undefined;
|
|
6124
6229
|
enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
|
|
6230
|
+
enableAlwaysConnected?: "off" | "on" | "inherit" | null | undefined;
|
|
6125
6231
|
speedScale?: number | null | undefined;
|
|
6126
6232
|
speedOffset?: number | null | undefined;
|
|
6127
6233
|
speedToProductionRatio?: number | null | undefined;
|
package/build/index.js
CHANGED
|
@@ -301,6 +301,13 @@ var require_registry = __commonJS({
|
|
|
301
301
|
allowedLevels: ["account", "plant", "stationGroup", "station"],
|
|
302
302
|
oiManaged: false
|
|
303
303
|
},
|
|
304
|
+
enableAlwaysConnected: {
|
|
305
|
+
key: "enableAlwaysConnected",
|
|
306
|
+
label: "Always Connected",
|
|
307
|
+
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.",
|
|
308
|
+
allowedLevels: ["account", "plant", "stationGroup", "station"],
|
|
309
|
+
oiManaged: false
|
|
310
|
+
},
|
|
304
311
|
enableMeterOnly: {
|
|
305
312
|
key: "enableMeterOnly",
|
|
306
313
|
label: "Meter Only",
|
package/package.json
CHANGED