busroot-sdk 0.0.8-dev.2713878872 → 0.0.8-dev.2714578674

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.
Files changed (3) hide show
  1. package/build/index.d.ts +1145 -548
  2. package/build/index.js +554 -60
  3. package/package.json +1 -1
package/build/index.d.ts CHANGED
@@ -32,23 +32,30 @@ declare enum PRODUCTIVE_STATUS_MODE {
32
32
  * source schema in busroot-common.
33
33
  */
34
34
  declare const PublicAccountViewModel: z.ZodObject<Omit<{
35
+ enableTasks: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
36
+ enableCycleTimeAnalysis: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
37
+ enableLostProductionCost: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
38
+ enableAutoEndOnQuantityComplete: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
39
+ enableDragBetweenStationsOnGantt: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
40
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
41
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
42
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
43
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
44
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
45
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
46
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
47
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
48
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
35
49
  id: z.ZodString;
36
50
  domain: z.ZodString;
37
51
  stationCountLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
38
52
  electricalPricePerKwh: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
39
53
  electricalCo2PerKwh: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
40
54
  currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41
- enableLostProductionCost: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
42
- enableTasks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
43
- allowCycleTimeAnalysis: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
44
55
  dashboardConfig: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
45
56
  redshiftPassword: z.ZodOptional<z.ZodNullable<z.ZodString>>;
46
57
  uploadTransforms: z.ZodOptional<z.ZodNullable<z.ZodString>>;
47
- defaultAutoEndOnQuantityComplete: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
48
58
  durationFormat: z.ZodOptional<z.ZodNullable<z.ZodEnum<["months", "days", "hours", "minutes"]>>>;
49
- allowProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
50
- enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
51
- allowDragBetweenStationsOnGantt: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
52
59
  appUrls: z.ZodOptional<z.ZodNullable<z.ZodString>>;
53
60
  includeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
54
61
  excludeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -90,23 +97,30 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
90
97
  manifest: z.ZodEffects<z.ZodObject<{
91
98
  version: z.ZodLiteral<"v1">;
92
99
  account: z.ZodObject<{
100
+ enableTasks: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
101
+ enableCycleTimeAnalysis: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
102
+ enableLostProductionCost: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
103
+ enableAutoEndOnQuantityComplete: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
104
+ enableDragBetweenStationsOnGantt: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
105
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
106
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
107
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
108
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
109
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
110
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
111
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
112
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
113
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off"]>>>;
93
114
  id: z.ZodString;
94
115
  domain: z.ZodString;
95
116
  stationCountLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
96
117
  electricalPricePerKwh: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
97
118
  electricalCo2PerKwh: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
98
119
  currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
99
- enableLostProductionCost: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
100
- enableTasks: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
101
- allowCycleTimeAnalysis: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
102
120
  dashboardConfig: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
103
121
  redshiftPassword: z.ZodOptional<z.ZodNullable<z.ZodString>>;
104
122
  uploadTransforms: z.ZodOptional<z.ZodNullable<z.ZodString>>;
105
- defaultAutoEndOnQuantityComplete: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
106
123
  durationFormat: z.ZodOptional<z.ZodNullable<z.ZodEnum<["months", "days", "hours", "minutes"]>>>;
107
- allowProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
108
- enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
109
- allowDragBetweenStationsOnGantt: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
110
124
  appUrls: z.ZodOptional<z.ZodNullable<z.ZodString>>;
111
125
  includeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
112
126
  excludeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -258,6 +272,15 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
258
272
  includeTaskCodes?: string[] | null | undefined;
259
273
  }>, "many">>;
260
274
  plants: z.ZodArray<z.ZodObject<{
275
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
276
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
277
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
278
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
279
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
280
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
281
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
282
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
283
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
261
284
  code: z.ZodString;
262
285
  name: z.ZodString;
263
286
  timezone: z.ZodString;
@@ -269,11 +292,20 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
269
292
  excludeTaskCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
270
293
  totalEnergyStationCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
271
294
  stationGroups: z.ZodArray<z.ZodObject<{
295
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
296
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
297
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
298
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
299
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
300
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
301
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
302
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
303
+ enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
304
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
305
+ enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
272
306
  code: z.ZodString;
273
307
  name: z.ZodString;
274
- allowScheduleStationFlexibility: z.ZodBoolean;
275
308
  shiftPatternCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
276
- allowQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
277
309
  includeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
278
310
  excludeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
279
311
  includeTaskCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -283,6 +315,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
283
315
  updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
284
316
  } & {
285
317
  stations: z.ZodArray<z.ZodObject<{
318
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
319
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
320
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
321
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
322
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
323
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
324
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
325
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
326
+ enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
327
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
328
+ enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
286
329
  code: z.ZodString;
287
330
  name: z.ZodString;
288
331
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -301,14 +344,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
301
344
  electricalUsageStoppedThresholdKw: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
302
345
  lineSpeedStoppedThreshold: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
303
346
  productiveHoldOnTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
304
- allowInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
305
- allowManualProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
306
- allowQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
307
- allowScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
308
- allowRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
309
- allowEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
310
- schedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
311
- meterOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
312
347
  currentOperatorInitials: z.ZodOptional<z.ZodNullable<z.ZodString>>;
313
348
  statusCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
314
349
  statusCodeUpdatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -338,6 +373,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
338
373
  minimumCycleTime?: number | null | undefined;
339
374
  includeTaskCodes?: string[] | null | undefined;
340
375
  description?: string | null | undefined;
376
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
377
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
378
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
379
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
380
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
381
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
382
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
383
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
384
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
385
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
386
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
341
387
  excludeTaskCodes?: string[] | null | undefined;
342
388
  includeReasonCodes?: string[] | null | undefined;
343
389
  excludeReasonCodes?: string[] | null | undefined;
@@ -354,14 +400,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
354
400
  electricalUsageStoppedThresholdKw?: number | null | undefined;
355
401
  lineSpeedStoppedThreshold?: number | null | undefined;
356
402
  productiveHoldOnTime?: number | null | undefined;
357
- allowInterruptionMode?: boolean | null | undefined;
358
- allowManualProduction?: boolean | null | undefined;
359
- allowQuickScheduleStart?: boolean | null | undefined;
360
- allowScheduleCutShort?: boolean | null | undefined;
361
- allowRejectProduction?: boolean | null | undefined;
362
- allowEditPartsPerCycle?: boolean | null | undefined;
363
- schedulingOnly?: boolean | null | undefined;
364
- meterOnly?: boolean | null | undefined;
365
403
  currentOperatorInitials?: string | null | undefined;
366
404
  statusCode?: string | null | undefined;
367
405
  statusCodeUpdatedAt?: string | null | undefined;
@@ -381,6 +419,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
381
419
  minimumCycleTime?: number | null | undefined;
382
420
  includeTaskCodes?: string[] | null | undefined;
383
421
  description?: string | null | undefined;
422
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
423
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
424
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
425
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
426
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
427
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
428
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
429
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
430
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
431
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
432
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
384
433
  excludeTaskCodes?: string[] | null | undefined;
385
434
  includeReasonCodes?: string[] | null | undefined;
386
435
  excludeReasonCodes?: string[] | null | undefined;
@@ -397,14 +446,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
397
446
  electricalUsageStoppedThresholdKw?: number | null | undefined;
398
447
  lineSpeedStoppedThreshold?: number | null | undefined;
399
448
  productiveHoldOnTime?: number | null | undefined;
400
- allowInterruptionMode?: boolean | null | undefined;
401
- allowManualProduction?: boolean | null | undefined;
402
- allowQuickScheduleStart?: boolean | null | undefined;
403
- allowScheduleCutShort?: boolean | null | undefined;
404
- allowRejectProduction?: boolean | null | undefined;
405
- allowEditPartsPerCycle?: boolean | null | undefined;
406
- schedulingOnly?: boolean | null | undefined;
407
- meterOnly?: boolean | null | undefined;
408
449
  currentOperatorInitials?: string | null | undefined;
409
450
  statusCode?: string | null | undefined;
410
451
  statusCodeUpdatedAt?: string | null | undefined;
@@ -415,7 +456,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
415
456
  }, "strict", z.ZodTypeAny, {
416
457
  code: string;
417
458
  name: string;
418
- allowScheduleStationFlexibility: boolean;
419
459
  stations: {
420
460
  code: string;
421
461
  name: string;
@@ -429,6 +469,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
429
469
  minimumCycleTime?: number | null | undefined;
430
470
  includeTaskCodes?: string[] | null | undefined;
431
471
  description?: string | null | undefined;
472
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
473
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
474
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
475
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
476
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
477
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
478
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
479
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
480
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
481
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
482
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
432
483
  excludeTaskCodes?: string[] | null | undefined;
433
484
  includeReasonCodes?: string[] | null | undefined;
434
485
  excludeReasonCodes?: string[] | null | undefined;
@@ -445,14 +496,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
445
496
  electricalUsageStoppedThresholdKw?: number | null | undefined;
446
497
  lineSpeedStoppedThreshold?: number | null | undefined;
447
498
  productiveHoldOnTime?: number | null | undefined;
448
- allowInterruptionMode?: boolean | null | undefined;
449
- allowManualProduction?: boolean | null | undefined;
450
- allowQuickScheduleStart?: boolean | null | undefined;
451
- allowScheduleCutShort?: boolean | null | undefined;
452
- allowRejectProduction?: boolean | null | undefined;
453
- allowEditPartsPerCycle?: boolean | null | undefined;
454
- schedulingOnly?: boolean | null | undefined;
455
- meterOnly?: boolean | null | undefined;
456
499
  currentOperatorInitials?: string | null | undefined;
457
500
  statusCode?: string | null | undefined;
458
501
  statusCodeUpdatedAt?: string | null | undefined;
@@ -464,15 +507,24 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
464
507
  updatedAt?: string | null | undefined;
465
508
  shiftPatternCode?: string | null | undefined;
466
509
  includeTaskCodes?: string[] | null | undefined;
510
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
511
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
512
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
513
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
514
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
515
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
516
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
517
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
518
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
519
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
520
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
467
521
  excludeTaskCodes?: string[] | null | undefined;
468
522
  includeReasonCodes?: string[] | null | undefined;
469
523
  excludeReasonCodes?: string[] | null | undefined;
470
524
  totalEnergyStationCodes?: string[] | null | undefined;
471
- allowQuickScheduleStart?: boolean | null | undefined;
472
525
  }, {
473
526
  code: string;
474
527
  name: string;
475
- allowScheduleStationFlexibility: boolean;
476
528
  stations: {
477
529
  code: string;
478
530
  name: string;
@@ -486,6 +538,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
486
538
  minimumCycleTime?: number | null | undefined;
487
539
  includeTaskCodes?: string[] | null | undefined;
488
540
  description?: string | null | undefined;
541
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
542
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
543
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
544
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
545
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
546
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
547
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
548
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
549
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
550
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
551
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
489
552
  excludeTaskCodes?: string[] | null | undefined;
490
553
  includeReasonCodes?: string[] | null | undefined;
491
554
  excludeReasonCodes?: string[] | null | undefined;
@@ -502,14 +565,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
502
565
  electricalUsageStoppedThresholdKw?: number | null | undefined;
503
566
  lineSpeedStoppedThreshold?: number | null | undefined;
504
567
  productiveHoldOnTime?: number | null | undefined;
505
- allowInterruptionMode?: boolean | null | undefined;
506
- allowManualProduction?: boolean | null | undefined;
507
- allowQuickScheduleStart?: boolean | null | undefined;
508
- allowScheduleCutShort?: boolean | null | undefined;
509
- allowRejectProduction?: boolean | null | undefined;
510
- allowEditPartsPerCycle?: boolean | null | undefined;
511
- schedulingOnly?: boolean | null | undefined;
512
- meterOnly?: boolean | null | undefined;
513
568
  currentOperatorInitials?: string | null | undefined;
514
569
  statusCode?: string | null | undefined;
515
570
  statusCodeUpdatedAt?: string | null | undefined;
@@ -521,11 +576,21 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
521
576
  updatedAt?: string | null | undefined;
522
577
  shiftPatternCode?: string | null | undefined;
523
578
  includeTaskCodes?: string[] | null | undefined;
579
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
580
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
581
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
582
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
583
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
584
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
585
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
586
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
587
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
588
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
589
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
524
590
  excludeTaskCodes?: string[] | null | undefined;
525
591
  includeReasonCodes?: string[] | null | undefined;
526
592
  excludeReasonCodes?: string[] | null | undefined;
527
593
  totalEnergyStationCodes?: string[] | null | undefined;
528
- allowQuickScheduleStart?: boolean | null | undefined;
529
594
  }>, "many">;
530
595
  createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
531
596
  updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -539,7 +604,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
539
604
  stationGroups: {
540
605
  code: string;
541
606
  name: string;
542
- allowScheduleStationFlexibility: boolean;
543
607
  stations: {
544
608
  code: string;
545
609
  name: string;
@@ -553,6 +617,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
553
617
  minimumCycleTime?: number | null | undefined;
554
618
  includeTaskCodes?: string[] | null | undefined;
555
619
  description?: string | null | undefined;
620
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
621
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
622
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
623
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
624
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
625
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
626
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
627
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
628
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
629
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
630
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
556
631
  excludeTaskCodes?: string[] | null | undefined;
557
632
  includeReasonCodes?: string[] | null | undefined;
558
633
  excludeReasonCodes?: string[] | null | undefined;
@@ -569,14 +644,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
569
644
  electricalUsageStoppedThresholdKw?: number | null | undefined;
570
645
  lineSpeedStoppedThreshold?: number | null | undefined;
571
646
  productiveHoldOnTime?: number | null | undefined;
572
- allowInterruptionMode?: boolean | null | undefined;
573
- allowManualProduction?: boolean | null | undefined;
574
- allowQuickScheduleStart?: boolean | null | undefined;
575
- allowScheduleCutShort?: boolean | null | undefined;
576
- allowRejectProduction?: boolean | null | undefined;
577
- allowEditPartsPerCycle?: boolean | null | undefined;
578
- schedulingOnly?: boolean | null | undefined;
579
- meterOnly?: boolean | null | undefined;
580
647
  currentOperatorInitials?: string | null | undefined;
581
648
  statusCode?: string | null | undefined;
582
649
  statusCodeUpdatedAt?: string | null | undefined;
@@ -588,15 +655,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
588
655
  updatedAt?: string | null | undefined;
589
656
  shiftPatternCode?: string | null | undefined;
590
657
  includeTaskCodes?: string[] | null | undefined;
658
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
659
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
660
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
661
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
662
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
663
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
664
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
665
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
666
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
667
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
668
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
591
669
  excludeTaskCodes?: string[] | null | undefined;
592
670
  includeReasonCodes?: string[] | null | undefined;
593
671
  excludeReasonCodes?: string[] | null | undefined;
594
672
  totalEnergyStationCodes?: string[] | null | undefined;
595
- allowQuickScheduleStart?: boolean | null | undefined;
596
673
  }[];
597
674
  createdAt?: string | null | undefined;
598
675
  updatedAt?: string | null | undefined;
599
676
  includeTaskCodes?: string[] | null | undefined;
677
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
678
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
679
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
680
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
681
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
682
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
683
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
684
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
685
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
600
686
  excludeTaskCodes?: string[] | null | undefined;
601
687
  includeReasonCodes?: string[] | null | undefined;
602
688
  excludeReasonCodes?: string[] | null | undefined;
@@ -610,7 +696,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
610
696
  stationGroups: {
611
697
  code: string;
612
698
  name: string;
613
- allowScheduleStationFlexibility: boolean;
614
699
  stations: {
615
700
  code: string;
616
701
  name: string;
@@ -624,6 +709,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
624
709
  minimumCycleTime?: number | null | undefined;
625
710
  includeTaskCodes?: string[] | null | undefined;
626
711
  description?: string | null | undefined;
712
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
713
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
714
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
715
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
716
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
717
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
718
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
719
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
720
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
721
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
722
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
627
723
  excludeTaskCodes?: string[] | null | undefined;
628
724
  includeReasonCodes?: string[] | null | undefined;
629
725
  excludeReasonCodes?: string[] | null | undefined;
@@ -640,14 +736,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
640
736
  electricalUsageStoppedThresholdKw?: number | null | undefined;
641
737
  lineSpeedStoppedThreshold?: number | null | undefined;
642
738
  productiveHoldOnTime?: number | null | undefined;
643
- allowInterruptionMode?: boolean | null | undefined;
644
- allowManualProduction?: boolean | null | undefined;
645
- allowQuickScheduleStart?: boolean | null | undefined;
646
- allowScheduleCutShort?: boolean | null | undefined;
647
- allowRejectProduction?: boolean | null | undefined;
648
- allowEditPartsPerCycle?: boolean | null | undefined;
649
- schedulingOnly?: boolean | null | undefined;
650
- meterOnly?: boolean | null | undefined;
651
739
  currentOperatorInitials?: string | null | undefined;
652
740
  statusCode?: string | null | undefined;
653
741
  statusCodeUpdatedAt?: string | null | undefined;
@@ -659,15 +747,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
659
747
  updatedAt?: string | null | undefined;
660
748
  shiftPatternCode?: string | null | undefined;
661
749
  includeTaskCodes?: string[] | null | undefined;
750
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
751
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
752
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
753
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
754
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
755
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
756
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
757
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
758
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
759
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
760
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
662
761
  excludeTaskCodes?: string[] | null | undefined;
663
762
  includeReasonCodes?: string[] | null | undefined;
664
763
  excludeReasonCodes?: string[] | null | undefined;
665
764
  totalEnergyStationCodes?: string[] | null | undefined;
666
- allowQuickScheduleStart?: boolean | null | undefined;
667
765
  }[];
668
766
  createdAt?: string | null | undefined;
669
767
  updatedAt?: string | null | undefined;
670
768
  includeTaskCodes?: string[] | null | undefined;
769
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
770
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
771
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
772
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
773
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
774
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
775
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
776
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
777
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
671
778
  weekStartDay?: number | undefined;
672
779
  excludeTaskCodes?: string[] | null | undefined;
673
780
  includeReasonCodes?: string[] | null | undefined;
@@ -687,7 +794,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
687
794
  stationGroups: {
688
795
  code: string;
689
796
  name: string;
690
- allowScheduleStationFlexibility: boolean;
691
797
  stations: {
692
798
  code: string;
693
799
  name: string;
@@ -701,6 +807,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
701
807
  minimumCycleTime?: number | null | undefined;
702
808
  includeTaskCodes?: string[] | null | undefined;
703
809
  description?: string | null | undefined;
810
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
811
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
812
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
813
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
814
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
815
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
816
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
817
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
818
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
819
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
820
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
704
821
  excludeTaskCodes?: string[] | null | undefined;
705
822
  includeReasonCodes?: string[] | null | undefined;
706
823
  excludeReasonCodes?: string[] | null | undefined;
@@ -717,14 +834,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
717
834
  electricalUsageStoppedThresholdKw?: number | null | undefined;
718
835
  lineSpeedStoppedThreshold?: number | null | undefined;
719
836
  productiveHoldOnTime?: number | null | undefined;
720
- allowInterruptionMode?: boolean | null | undefined;
721
- allowManualProduction?: boolean | null | undefined;
722
- allowQuickScheduleStart?: boolean | null | undefined;
723
- allowScheduleCutShort?: boolean | null | undefined;
724
- allowRejectProduction?: boolean | null | undefined;
725
- allowEditPartsPerCycle?: boolean | null | undefined;
726
- schedulingOnly?: boolean | null | undefined;
727
- meterOnly?: boolean | null | undefined;
728
837
  currentOperatorInitials?: string | null | undefined;
729
838
  statusCode?: string | null | undefined;
730
839
  statusCodeUpdatedAt?: string | null | undefined;
@@ -736,15 +845,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
736
845
  updatedAt?: string | null | undefined;
737
846
  shiftPatternCode?: string | null | undefined;
738
847
  includeTaskCodes?: string[] | null | undefined;
848
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
849
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
850
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
851
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
852
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
853
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
854
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
855
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
856
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
857
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
858
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
739
859
  excludeTaskCodes?: string[] | null | undefined;
740
860
  includeReasonCodes?: string[] | null | undefined;
741
861
  excludeReasonCodes?: string[] | null | undefined;
742
862
  totalEnergyStationCodes?: string[] | null | undefined;
743
- allowQuickScheduleStart?: boolean | null | undefined;
744
863
  }[];
745
864
  createdAt?: string | null | undefined;
746
865
  updatedAt?: string | null | undefined;
747
866
  includeTaskCodes?: string[] | null | undefined;
867
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
868
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
869
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
870
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
871
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
872
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
873
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
874
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
875
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
748
876
  excludeTaskCodes?: string[] | null | undefined;
749
877
  includeReasonCodes?: string[] | null | undefined;
750
878
  excludeReasonCodes?: string[] | null | undefined;
@@ -754,22 +882,29 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
754
882
  createdAt?: string | null | undefined;
755
883
  updatedAt?: string | null | undefined;
756
884
  includeTaskCodes?: string[] | null | undefined;
885
+ enableTasks?: "off" | "on" | null | undefined;
886
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
887
+ enableLostProductionCost?: "off" | "on" | null | undefined;
888
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
889
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
890
+ enableProductionCorrection?: "off" | "on" | null | undefined;
891
+ enableManualProduction?: "off" | "on" | null | undefined;
892
+ enableInterruptionMode?: "off" | "on" | null | undefined;
893
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
894
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
895
+ enableRejectProduction?: "off" | "on" | null | undefined;
896
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
897
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
898
+ enableManualDowntime?: "off" | "on" | null | undefined;
757
899
  excludeTaskCodes?: string[] | null | undefined;
758
900
  includeReasonCodes?: string[] | null | undefined;
759
901
  excludeReasonCodes?: string[] | null | undefined;
760
- enableLostProductionCost?: boolean | null | undefined;
761
- enableTasks?: boolean | null | undefined;
762
- allowCycleTimeAnalysis?: boolean | null | undefined;
763
902
  currency?: string | null | undefined;
764
903
  electricalPricePerKwh?: number | null | undefined;
765
904
  electricalCo2PerKwh?: number | null | undefined;
766
905
  dashboardConfig?: Record<string, any> | null | undefined;
767
906
  uploadTransforms?: string | null | undefined;
768
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
769
907
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
770
- allowProductionCorrection?: boolean | null | undefined;
771
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
772
- enableManualDowntime?: boolean | null | undefined;
773
908
  archivedAt?: string | null | undefined;
774
909
  reasons?: Reason[] | undefined;
775
910
  stationCountLimit?: number | null | undefined;
@@ -827,7 +962,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
827
962
  stationGroups: {
828
963
  code: string;
829
964
  name: string;
830
- allowScheduleStationFlexibility: boolean;
831
965
  stations: {
832
966
  code: string;
833
967
  name: string;
@@ -841,6 +975,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
841
975
  minimumCycleTime?: number | null | undefined;
842
976
  includeTaskCodes?: string[] | null | undefined;
843
977
  description?: string | null | undefined;
978
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
979
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
980
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
981
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
982
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
983
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
984
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
985
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
986
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
987
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
988
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
844
989
  excludeTaskCodes?: string[] | null | undefined;
845
990
  includeReasonCodes?: string[] | null | undefined;
846
991
  excludeReasonCodes?: string[] | null | undefined;
@@ -857,14 +1002,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
857
1002
  electricalUsageStoppedThresholdKw?: number | null | undefined;
858
1003
  lineSpeedStoppedThreshold?: number | null | undefined;
859
1004
  productiveHoldOnTime?: number | null | undefined;
860
- allowInterruptionMode?: boolean | null | undefined;
861
- allowManualProduction?: boolean | null | undefined;
862
- allowQuickScheduleStart?: boolean | null | undefined;
863
- allowScheduleCutShort?: boolean | null | undefined;
864
- allowRejectProduction?: boolean | null | undefined;
865
- allowEditPartsPerCycle?: boolean | null | undefined;
866
- schedulingOnly?: boolean | null | undefined;
867
- meterOnly?: boolean | null | undefined;
868
1005
  currentOperatorInitials?: string | null | undefined;
869
1006
  statusCode?: string | null | undefined;
870
1007
  statusCodeUpdatedAt?: string | null | undefined;
@@ -876,15 +1013,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
876
1013
  updatedAt?: string | null | undefined;
877
1014
  shiftPatternCode?: string | null | undefined;
878
1015
  includeTaskCodes?: string[] | null | undefined;
1016
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1017
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1018
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1019
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1020
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1021
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1022
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1023
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1024
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1025
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1026
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
879
1027
  excludeTaskCodes?: string[] | null | undefined;
880
1028
  includeReasonCodes?: string[] | null | undefined;
881
1029
  excludeReasonCodes?: string[] | null | undefined;
882
1030
  totalEnergyStationCodes?: string[] | null | undefined;
883
- allowQuickScheduleStart?: boolean | null | undefined;
884
1031
  }[];
885
1032
  createdAt?: string | null | undefined;
886
1033
  updatedAt?: string | null | undefined;
887
1034
  includeTaskCodes?: string[] | null | undefined;
1035
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1036
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1037
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1038
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1039
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1040
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1041
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1042
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1043
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
888
1044
  weekStartDay?: number | undefined;
889
1045
  excludeTaskCodes?: string[] | null | undefined;
890
1046
  includeReasonCodes?: string[] | null | undefined;
@@ -895,22 +1051,29 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
895
1051
  createdAt?: string | null | undefined;
896
1052
  updatedAt?: string | null | undefined;
897
1053
  includeTaskCodes?: string[] | null | undefined;
1054
+ enableTasks?: "off" | "on" | null | undefined;
1055
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
1056
+ enableLostProductionCost?: "off" | "on" | null | undefined;
1057
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
1058
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
1059
+ enableProductionCorrection?: "off" | "on" | null | undefined;
1060
+ enableManualProduction?: "off" | "on" | null | undefined;
1061
+ enableInterruptionMode?: "off" | "on" | null | undefined;
1062
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
1063
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
1064
+ enableRejectProduction?: "off" | "on" | null | undefined;
1065
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
1066
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
1067
+ enableManualDowntime?: "off" | "on" | null | undefined;
898
1068
  excludeTaskCodes?: string[] | null | undefined;
899
1069
  includeReasonCodes?: string[] | null | undefined;
900
1070
  excludeReasonCodes?: string[] | null | undefined;
901
- enableLostProductionCost?: boolean | null | undefined;
902
- enableTasks?: boolean | null | undefined;
903
- allowCycleTimeAnalysis?: boolean | null | undefined;
904
1071
  currency?: string | null | undefined;
905
1072
  electricalPricePerKwh?: number | null | undefined;
906
1073
  electricalCo2PerKwh?: number | null | undefined;
907
1074
  dashboardConfig?: Record<string, any> | null | undefined;
908
1075
  uploadTransforms?: string | null | undefined;
909
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
910
1076
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
911
- allowProductionCorrection?: boolean | null | undefined;
912
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
913
- enableManualDowntime?: boolean | null | undefined;
914
1077
  archivedAt?: string | null | undefined;
915
1078
  reasons?: Reason[] | undefined;
916
1079
  stationCountLimit?: number | null | undefined;
@@ -959,7 +1122,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
959
1122
  }[] | undefined;
960
1123
  }>;
961
1124
  }, "strict", z.ZodTypeAny, {
962
- version: "v1";
963
1125
  account: {
964
1126
  domain: string;
965
1127
  id: string;
@@ -972,7 +1134,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
972
1134
  stationGroups: {
973
1135
  code: string;
974
1136
  name: string;
975
- allowScheduleStationFlexibility: boolean;
976
1137
  stations: {
977
1138
  code: string;
978
1139
  name: string;
@@ -986,6 +1147,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
986
1147
  minimumCycleTime?: number | null | undefined;
987
1148
  includeTaskCodes?: string[] | null | undefined;
988
1149
  description?: string | null | undefined;
1150
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1151
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1152
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1153
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1154
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1155
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1156
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1157
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1158
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1159
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1160
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
989
1161
  excludeTaskCodes?: string[] | null | undefined;
990
1162
  includeReasonCodes?: string[] | null | undefined;
991
1163
  excludeReasonCodes?: string[] | null | undefined;
@@ -1002,14 +1174,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1002
1174
  electricalUsageStoppedThresholdKw?: number | null | undefined;
1003
1175
  lineSpeedStoppedThreshold?: number | null | undefined;
1004
1176
  productiveHoldOnTime?: number | null | undefined;
1005
- allowInterruptionMode?: boolean | null | undefined;
1006
- allowManualProduction?: boolean | null | undefined;
1007
- allowQuickScheduleStart?: boolean | null | undefined;
1008
- allowScheduleCutShort?: boolean | null | undefined;
1009
- allowRejectProduction?: boolean | null | undefined;
1010
- allowEditPartsPerCycle?: boolean | null | undefined;
1011
- schedulingOnly?: boolean | null | undefined;
1012
- meterOnly?: boolean | null | undefined;
1013
1177
  currentOperatorInitials?: string | null | undefined;
1014
1178
  statusCode?: string | null | undefined;
1015
1179
  statusCodeUpdatedAt?: string | null | undefined;
@@ -1021,15 +1185,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1021
1185
  updatedAt?: string | null | undefined;
1022
1186
  shiftPatternCode?: string | null | undefined;
1023
1187
  includeTaskCodes?: string[] | null | undefined;
1188
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1189
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1190
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1191
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1192
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1193
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1194
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1195
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1196
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1197
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1198
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1024
1199
  excludeTaskCodes?: string[] | null | undefined;
1025
1200
  includeReasonCodes?: string[] | null | undefined;
1026
1201
  excludeReasonCodes?: string[] | null | undefined;
1027
1202
  totalEnergyStationCodes?: string[] | null | undefined;
1028
- allowQuickScheduleStart?: boolean | null | undefined;
1029
1203
  }[];
1030
1204
  createdAt?: string | null | undefined;
1031
1205
  updatedAt?: string | null | undefined;
1032
1206
  includeTaskCodes?: string[] | null | undefined;
1207
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1208
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1209
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1210
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1211
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1212
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1213
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1214
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1215
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1033
1216
  excludeTaskCodes?: string[] | null | undefined;
1034
1217
  includeReasonCodes?: string[] | null | undefined;
1035
1218
  excludeReasonCodes?: string[] | null | undefined;
@@ -1039,22 +1222,29 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1039
1222
  createdAt?: string | null | undefined;
1040
1223
  updatedAt?: string | null | undefined;
1041
1224
  includeTaskCodes?: string[] | null | undefined;
1225
+ enableTasks?: "off" | "on" | null | undefined;
1226
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
1227
+ enableLostProductionCost?: "off" | "on" | null | undefined;
1228
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
1229
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
1230
+ enableProductionCorrection?: "off" | "on" | null | undefined;
1231
+ enableManualProduction?: "off" | "on" | null | undefined;
1232
+ enableInterruptionMode?: "off" | "on" | null | undefined;
1233
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
1234
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
1235
+ enableRejectProduction?: "off" | "on" | null | undefined;
1236
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
1237
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
1238
+ enableManualDowntime?: "off" | "on" | null | undefined;
1042
1239
  excludeTaskCodes?: string[] | null | undefined;
1043
1240
  includeReasonCodes?: string[] | null | undefined;
1044
1241
  excludeReasonCodes?: string[] | null | undefined;
1045
- enableLostProductionCost?: boolean | null | undefined;
1046
- enableTasks?: boolean | null | undefined;
1047
- allowCycleTimeAnalysis?: boolean | null | undefined;
1048
1242
  currency?: string | null | undefined;
1049
1243
  electricalPricePerKwh?: number | null | undefined;
1050
1244
  electricalCo2PerKwh?: number | null | undefined;
1051
1245
  dashboardConfig?: Record<string, any> | null | undefined;
1052
1246
  uploadTransforms?: string | null | undefined;
1053
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
1054
1247
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
1055
- allowProductionCorrection?: boolean | null | undefined;
1056
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
1057
- enableManualDowntime?: boolean | null | undefined;
1058
1248
  archivedAt?: string | null | undefined;
1059
1249
  reasons?: Reason[] | undefined;
1060
1250
  stationCountLimit?: number | null | undefined;
@@ -1102,8 +1292,8 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1102
1292
  includeTaskCodes?: string[] | null | undefined;
1103
1293
  }[] | undefined;
1104
1294
  };
1105
- }, {
1106
1295
  version: "v1";
1296
+ }, {
1107
1297
  account: {
1108
1298
  domain: string;
1109
1299
  id: string;
@@ -1115,7 +1305,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1115
1305
  stationGroups: {
1116
1306
  code: string;
1117
1307
  name: string;
1118
- allowScheduleStationFlexibility: boolean;
1119
1308
  stations: {
1120
1309
  code: string;
1121
1310
  name: string;
@@ -1129,6 +1318,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1129
1318
  minimumCycleTime?: number | null | undefined;
1130
1319
  includeTaskCodes?: string[] | null | undefined;
1131
1320
  description?: string | null | undefined;
1321
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1322
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1323
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1324
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1325
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1326
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1327
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1328
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1329
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1330
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1331
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1132
1332
  excludeTaskCodes?: string[] | null | undefined;
1133
1333
  includeReasonCodes?: string[] | null | undefined;
1134
1334
  excludeReasonCodes?: string[] | null | undefined;
@@ -1145,14 +1345,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1145
1345
  electricalUsageStoppedThresholdKw?: number | null | undefined;
1146
1346
  lineSpeedStoppedThreshold?: number | null | undefined;
1147
1347
  productiveHoldOnTime?: number | null | undefined;
1148
- allowInterruptionMode?: boolean | null | undefined;
1149
- allowManualProduction?: boolean | null | undefined;
1150
- allowQuickScheduleStart?: boolean | null | undefined;
1151
- allowScheduleCutShort?: boolean | null | undefined;
1152
- allowRejectProduction?: boolean | null | undefined;
1153
- allowEditPartsPerCycle?: boolean | null | undefined;
1154
- schedulingOnly?: boolean | null | undefined;
1155
- meterOnly?: boolean | null | undefined;
1156
1348
  currentOperatorInitials?: string | null | undefined;
1157
1349
  statusCode?: string | null | undefined;
1158
1350
  statusCodeUpdatedAt?: string | null | undefined;
@@ -1164,15 +1356,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1164
1356
  updatedAt?: string | null | undefined;
1165
1357
  shiftPatternCode?: string | null | undefined;
1166
1358
  includeTaskCodes?: string[] | null | undefined;
1359
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1360
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1361
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1362
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1363
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1364
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1365
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1366
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1367
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1368
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1369
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1167
1370
  excludeTaskCodes?: string[] | null | undefined;
1168
1371
  includeReasonCodes?: string[] | null | undefined;
1169
1372
  excludeReasonCodes?: string[] | null | undefined;
1170
1373
  totalEnergyStationCodes?: string[] | null | undefined;
1171
- allowQuickScheduleStart?: boolean | null | undefined;
1172
1374
  }[];
1173
1375
  createdAt?: string | null | undefined;
1174
1376
  updatedAt?: string | null | undefined;
1175
1377
  includeTaskCodes?: string[] | null | undefined;
1378
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1379
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1380
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1381
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1382
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1383
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1384
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1385
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1386
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1176
1387
  weekStartDay?: number | undefined;
1177
1388
  excludeTaskCodes?: string[] | null | undefined;
1178
1389
  includeReasonCodes?: string[] | null | undefined;
@@ -1183,22 +1394,29 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1183
1394
  createdAt?: string | null | undefined;
1184
1395
  updatedAt?: string | null | undefined;
1185
1396
  includeTaskCodes?: string[] | null | undefined;
1397
+ enableTasks?: "off" | "on" | null | undefined;
1398
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
1399
+ enableLostProductionCost?: "off" | "on" | null | undefined;
1400
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
1401
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
1402
+ enableProductionCorrection?: "off" | "on" | null | undefined;
1403
+ enableManualProduction?: "off" | "on" | null | undefined;
1404
+ enableInterruptionMode?: "off" | "on" | null | undefined;
1405
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
1406
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
1407
+ enableRejectProduction?: "off" | "on" | null | undefined;
1408
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
1409
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
1410
+ enableManualDowntime?: "off" | "on" | null | undefined;
1186
1411
  excludeTaskCodes?: string[] | null | undefined;
1187
1412
  includeReasonCodes?: string[] | null | undefined;
1188
1413
  excludeReasonCodes?: string[] | null | undefined;
1189
- enableLostProductionCost?: boolean | null | undefined;
1190
- enableTasks?: boolean | null | undefined;
1191
- allowCycleTimeAnalysis?: boolean | null | undefined;
1192
1414
  currency?: string | null | undefined;
1193
1415
  electricalPricePerKwh?: number | null | undefined;
1194
1416
  electricalCo2PerKwh?: number | null | undefined;
1195
1417
  dashboardConfig?: Record<string, any> | null | undefined;
1196
1418
  uploadTransforms?: string | null | undefined;
1197
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
1198
1419
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
1199
- allowProductionCorrection?: boolean | null | undefined;
1200
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
1201
- enableManualDowntime?: boolean | null | undefined;
1202
1420
  archivedAt?: string | null | undefined;
1203
1421
  reasons?: Reason[] | undefined;
1204
1422
  stationCountLimit?: number | null | undefined;
@@ -1246,8 +1464,8 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1246
1464
  includeTaskCodes?: string[] | null | undefined;
1247
1465
  }[] | undefined;
1248
1466
  };
1249
- }>, {
1250
1467
  version: "v1";
1468
+ }>, {
1251
1469
  account: {
1252
1470
  domain: string;
1253
1471
  id: string;
@@ -1260,7 +1478,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1260
1478
  stationGroups: {
1261
1479
  code: string;
1262
1480
  name: string;
1263
- allowScheduleStationFlexibility: boolean;
1264
1481
  stations: {
1265
1482
  code: string;
1266
1483
  name: string;
@@ -1274,6 +1491,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1274
1491
  minimumCycleTime?: number | null | undefined;
1275
1492
  includeTaskCodes?: string[] | null | undefined;
1276
1493
  description?: string | null | undefined;
1494
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1495
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1496
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1497
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1498
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1499
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1500
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1501
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1502
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1503
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1504
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1277
1505
  excludeTaskCodes?: string[] | null | undefined;
1278
1506
  includeReasonCodes?: string[] | null | undefined;
1279
1507
  excludeReasonCodes?: string[] | null | undefined;
@@ -1290,14 +1518,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1290
1518
  electricalUsageStoppedThresholdKw?: number | null | undefined;
1291
1519
  lineSpeedStoppedThreshold?: number | null | undefined;
1292
1520
  productiveHoldOnTime?: number | null | undefined;
1293
- allowInterruptionMode?: boolean | null | undefined;
1294
- allowManualProduction?: boolean | null | undefined;
1295
- allowQuickScheduleStart?: boolean | null | undefined;
1296
- allowScheduleCutShort?: boolean | null | undefined;
1297
- allowRejectProduction?: boolean | null | undefined;
1298
- allowEditPartsPerCycle?: boolean | null | undefined;
1299
- schedulingOnly?: boolean | null | undefined;
1300
- meterOnly?: boolean | null | undefined;
1301
1521
  currentOperatorInitials?: string | null | undefined;
1302
1522
  statusCode?: string | null | undefined;
1303
1523
  statusCodeUpdatedAt?: string | null | undefined;
@@ -1309,15 +1529,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1309
1529
  updatedAt?: string | null | undefined;
1310
1530
  shiftPatternCode?: string | null | undefined;
1311
1531
  includeTaskCodes?: string[] | null | undefined;
1532
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1533
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1534
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1535
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1536
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1537
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1538
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1539
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1540
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1541
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1542
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1312
1543
  excludeTaskCodes?: string[] | null | undefined;
1313
1544
  includeReasonCodes?: string[] | null | undefined;
1314
1545
  excludeReasonCodes?: string[] | null | undefined;
1315
1546
  totalEnergyStationCodes?: string[] | null | undefined;
1316
- allowQuickScheduleStart?: boolean | null | undefined;
1317
1547
  }[];
1318
1548
  createdAt?: string | null | undefined;
1319
1549
  updatedAt?: string | null | undefined;
1320
1550
  includeTaskCodes?: string[] | null | undefined;
1551
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1552
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1553
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1554
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1555
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1556
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1557
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1558
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1559
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1321
1560
  excludeTaskCodes?: string[] | null | undefined;
1322
1561
  includeReasonCodes?: string[] | null | undefined;
1323
1562
  excludeReasonCodes?: string[] | null | undefined;
@@ -1327,22 +1566,29 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1327
1566
  createdAt?: string | null | undefined;
1328
1567
  updatedAt?: string | null | undefined;
1329
1568
  includeTaskCodes?: string[] | null | undefined;
1569
+ enableTasks?: "off" | "on" | null | undefined;
1570
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
1571
+ enableLostProductionCost?: "off" | "on" | null | undefined;
1572
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
1573
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
1574
+ enableProductionCorrection?: "off" | "on" | null | undefined;
1575
+ enableManualProduction?: "off" | "on" | null | undefined;
1576
+ enableInterruptionMode?: "off" | "on" | null | undefined;
1577
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
1578
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
1579
+ enableRejectProduction?: "off" | "on" | null | undefined;
1580
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
1581
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
1582
+ enableManualDowntime?: "off" | "on" | null | undefined;
1330
1583
  excludeTaskCodes?: string[] | null | undefined;
1331
1584
  includeReasonCodes?: string[] | null | undefined;
1332
1585
  excludeReasonCodes?: string[] | null | undefined;
1333
- enableLostProductionCost?: boolean | null | undefined;
1334
- enableTasks?: boolean | null | undefined;
1335
- allowCycleTimeAnalysis?: boolean | null | undefined;
1336
1586
  currency?: string | null | undefined;
1337
1587
  electricalPricePerKwh?: number | null | undefined;
1338
1588
  electricalCo2PerKwh?: number | null | undefined;
1339
1589
  dashboardConfig?: Record<string, any> | null | undefined;
1340
1590
  uploadTransforms?: string | null | undefined;
1341
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
1342
1591
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
1343
- allowProductionCorrection?: boolean | null | undefined;
1344
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
1345
- enableManualDowntime?: boolean | null | undefined;
1346
1592
  archivedAt?: string | null | undefined;
1347
1593
  reasons?: Reason[] | undefined;
1348
1594
  stationCountLimit?: number | null | undefined;
@@ -1390,8 +1636,8 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1390
1636
  includeTaskCodes?: string[] | null | undefined;
1391
1637
  }[] | undefined;
1392
1638
  };
1393
- }, {
1394
1639
  version: "v1";
1640
+ }, {
1395
1641
  account: {
1396
1642
  domain: string;
1397
1643
  id: string;
@@ -1403,7 +1649,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1403
1649
  stationGroups: {
1404
1650
  code: string;
1405
1651
  name: string;
1406
- allowScheduleStationFlexibility: boolean;
1407
1652
  stations: {
1408
1653
  code: string;
1409
1654
  name: string;
@@ -1417,6 +1662,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1417
1662
  minimumCycleTime?: number | null | undefined;
1418
1663
  includeTaskCodes?: string[] | null | undefined;
1419
1664
  description?: string | null | undefined;
1665
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1666
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1667
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1668
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1669
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1670
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1671
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1672
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1673
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1674
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1675
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1420
1676
  excludeTaskCodes?: string[] | null | undefined;
1421
1677
  includeReasonCodes?: string[] | null | undefined;
1422
1678
  excludeReasonCodes?: string[] | null | undefined;
@@ -1433,14 +1689,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1433
1689
  electricalUsageStoppedThresholdKw?: number | null | undefined;
1434
1690
  lineSpeedStoppedThreshold?: number | null | undefined;
1435
1691
  productiveHoldOnTime?: number | null | undefined;
1436
- allowInterruptionMode?: boolean | null | undefined;
1437
- allowManualProduction?: boolean | null | undefined;
1438
- allowQuickScheduleStart?: boolean | null | undefined;
1439
- allowScheduleCutShort?: boolean | null | undefined;
1440
- allowRejectProduction?: boolean | null | undefined;
1441
- allowEditPartsPerCycle?: boolean | null | undefined;
1442
- schedulingOnly?: boolean | null | undefined;
1443
- meterOnly?: boolean | null | undefined;
1444
1692
  currentOperatorInitials?: string | null | undefined;
1445
1693
  statusCode?: string | null | undefined;
1446
1694
  statusCodeUpdatedAt?: string | null | undefined;
@@ -1452,15 +1700,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1452
1700
  updatedAt?: string | null | undefined;
1453
1701
  shiftPatternCode?: string | null | undefined;
1454
1702
  includeTaskCodes?: string[] | null | undefined;
1703
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1704
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1705
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1706
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1707
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1708
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1709
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1710
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1711
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1712
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1713
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1455
1714
  excludeTaskCodes?: string[] | null | undefined;
1456
1715
  includeReasonCodes?: string[] | null | undefined;
1457
1716
  excludeReasonCodes?: string[] | null | undefined;
1458
1717
  totalEnergyStationCodes?: string[] | null | undefined;
1459
- allowQuickScheduleStart?: boolean | null | undefined;
1460
1718
  }[];
1461
1719
  createdAt?: string | null | undefined;
1462
1720
  updatedAt?: string | null | undefined;
1463
1721
  includeTaskCodes?: string[] | null | undefined;
1722
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1723
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1724
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1725
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1726
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1727
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1728
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1729
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1730
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1464
1731
  weekStartDay?: number | undefined;
1465
1732
  excludeTaskCodes?: string[] | null | undefined;
1466
1733
  includeReasonCodes?: string[] | null | undefined;
@@ -1471,22 +1738,29 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1471
1738
  createdAt?: string | null | undefined;
1472
1739
  updatedAt?: string | null | undefined;
1473
1740
  includeTaskCodes?: string[] | null | undefined;
1741
+ enableTasks?: "off" | "on" | null | undefined;
1742
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
1743
+ enableLostProductionCost?: "off" | "on" | null | undefined;
1744
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
1745
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
1746
+ enableProductionCorrection?: "off" | "on" | null | undefined;
1747
+ enableManualProduction?: "off" | "on" | null | undefined;
1748
+ enableInterruptionMode?: "off" | "on" | null | undefined;
1749
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
1750
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
1751
+ enableRejectProduction?: "off" | "on" | null | undefined;
1752
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
1753
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
1754
+ enableManualDowntime?: "off" | "on" | null | undefined;
1474
1755
  excludeTaskCodes?: string[] | null | undefined;
1475
1756
  includeReasonCodes?: string[] | null | undefined;
1476
1757
  excludeReasonCodes?: string[] | null | undefined;
1477
- enableLostProductionCost?: boolean | null | undefined;
1478
- enableTasks?: boolean | null | undefined;
1479
- allowCycleTimeAnalysis?: boolean | null | undefined;
1480
1758
  currency?: string | null | undefined;
1481
1759
  electricalPricePerKwh?: number | null | undefined;
1482
1760
  electricalCo2PerKwh?: number | null | undefined;
1483
1761
  dashboardConfig?: Record<string, any> | null | undefined;
1484
1762
  uploadTransforms?: string | null | undefined;
1485
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
1486
1763
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
1487
- allowProductionCorrection?: boolean | null | undefined;
1488
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
1489
- enableManualDowntime?: boolean | null | undefined;
1490
1764
  archivedAt?: string | null | undefined;
1491
1765
  reasons?: Reason[] | undefined;
1492
1766
  stationCountLimit?: number | null | undefined;
@@ -1534,12 +1808,12 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1534
1808
  includeTaskCodes?: string[] | null | undefined;
1535
1809
  }[] | undefined;
1536
1810
  };
1811
+ version: "v1";
1537
1812
  }>;
1538
1813
  }, "redshiftPassword" | "cursors" | "redshiftConfig">, "strip", z.ZodTypeAny, {
1539
1814
  id: string;
1540
1815
  domain: string;
1541
1816
  manifest: {
1542
- version: "v1";
1543
1817
  account: {
1544
1818
  domain: string;
1545
1819
  id: string;
@@ -1552,7 +1826,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1552
1826
  stationGroups: {
1553
1827
  code: string;
1554
1828
  name: string;
1555
- allowScheduleStationFlexibility: boolean;
1556
1829
  stations: {
1557
1830
  code: string;
1558
1831
  name: string;
@@ -1566,6 +1839,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1566
1839
  minimumCycleTime?: number | null | undefined;
1567
1840
  includeTaskCodes?: string[] | null | undefined;
1568
1841
  description?: string | null | undefined;
1842
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1843
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1844
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1845
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1846
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1847
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1848
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1849
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1850
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1851
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1852
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1569
1853
  excludeTaskCodes?: string[] | null | undefined;
1570
1854
  includeReasonCodes?: string[] | null | undefined;
1571
1855
  excludeReasonCodes?: string[] | null | undefined;
@@ -1582,14 +1866,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1582
1866
  electricalUsageStoppedThresholdKw?: number | null | undefined;
1583
1867
  lineSpeedStoppedThreshold?: number | null | undefined;
1584
1868
  productiveHoldOnTime?: number | null | undefined;
1585
- allowInterruptionMode?: boolean | null | undefined;
1586
- allowManualProduction?: boolean | null | undefined;
1587
- allowQuickScheduleStart?: boolean | null | undefined;
1588
- allowScheduleCutShort?: boolean | null | undefined;
1589
- allowRejectProduction?: boolean | null | undefined;
1590
- allowEditPartsPerCycle?: boolean | null | undefined;
1591
- schedulingOnly?: boolean | null | undefined;
1592
- meterOnly?: boolean | null | undefined;
1593
1869
  currentOperatorInitials?: string | null | undefined;
1594
1870
  statusCode?: string | null | undefined;
1595
1871
  statusCodeUpdatedAt?: string | null | undefined;
@@ -1601,15 +1877,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1601
1877
  updatedAt?: string | null | undefined;
1602
1878
  shiftPatternCode?: string | null | undefined;
1603
1879
  includeTaskCodes?: string[] | null | undefined;
1880
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1881
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1882
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1883
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1884
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1885
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1886
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1887
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1888
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
1889
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1890
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1604
1891
  excludeTaskCodes?: string[] | null | undefined;
1605
1892
  includeReasonCodes?: string[] | null | undefined;
1606
1893
  excludeReasonCodes?: string[] | null | undefined;
1607
1894
  totalEnergyStationCodes?: string[] | null | undefined;
1608
- allowQuickScheduleStart?: boolean | null | undefined;
1609
1895
  }[];
1610
1896
  createdAt?: string | null | undefined;
1611
1897
  updatedAt?: string | null | undefined;
1612
1898
  includeTaskCodes?: string[] | null | undefined;
1899
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
1900
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
1901
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
1902
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
1903
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
1904
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
1905
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
1906
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
1907
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1613
1908
  excludeTaskCodes?: string[] | null | undefined;
1614
1909
  includeReasonCodes?: string[] | null | undefined;
1615
1910
  excludeReasonCodes?: string[] | null | undefined;
@@ -1619,22 +1914,29 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1619
1914
  createdAt?: string | null | undefined;
1620
1915
  updatedAt?: string | null | undefined;
1621
1916
  includeTaskCodes?: string[] | null | undefined;
1917
+ enableTasks?: "off" | "on" | null | undefined;
1918
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
1919
+ enableLostProductionCost?: "off" | "on" | null | undefined;
1920
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
1921
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
1922
+ enableProductionCorrection?: "off" | "on" | null | undefined;
1923
+ enableManualProduction?: "off" | "on" | null | undefined;
1924
+ enableInterruptionMode?: "off" | "on" | null | undefined;
1925
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
1926
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
1927
+ enableRejectProduction?: "off" | "on" | null | undefined;
1928
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
1929
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
1930
+ enableManualDowntime?: "off" | "on" | null | undefined;
1622
1931
  excludeTaskCodes?: string[] | null | undefined;
1623
1932
  includeReasonCodes?: string[] | null | undefined;
1624
1933
  excludeReasonCodes?: string[] | null | undefined;
1625
- enableLostProductionCost?: boolean | null | undefined;
1626
- enableTasks?: boolean | null | undefined;
1627
- allowCycleTimeAnalysis?: boolean | null | undefined;
1628
1934
  currency?: string | null | undefined;
1629
1935
  electricalPricePerKwh?: number | null | undefined;
1630
1936
  electricalCo2PerKwh?: number | null | undefined;
1631
1937
  dashboardConfig?: Record<string, any> | null | undefined;
1632
1938
  uploadTransforms?: string | null | undefined;
1633
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
1634
1939
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
1635
- allowProductionCorrection?: boolean | null | undefined;
1636
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
1637
- enableManualDowntime?: boolean | null | undefined;
1638
1940
  archivedAt?: string | null | undefined;
1639
1941
  reasons?: Reason[] | undefined;
1640
1942
  stationCountLimit?: number | null | undefined;
@@ -1682,7 +1984,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1682
1984
  includeTaskCodes?: string[] | null | undefined;
1683
1985
  }[] | undefined;
1684
1986
  };
1987
+ version: "v1";
1685
1988
  };
1989
+ enableProductionCorrection?: "on" | "off" | null | undefined;
1990
+ enableManualProduction?: "on" | "off" | null | undefined;
1991
+ enableInterruptionMode?: "on" | "off" | null | undefined;
1992
+ enableQuickScheduleStart?: "on" | "off" | null | undefined;
1993
+ enableScheduleCutShort?: "on" | "off" | null | undefined;
1994
+ enableRejectProduction?: "on" | "off" | null | undefined;
1995
+ enableEditPartsPerCycle?: "on" | "off" | null | undefined;
1996
+ enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
1997
+ enableManualDowntime?: "on" | "off" | null | undefined;
1686
1998
  includeReasonCodes?: string[] | null | undefined;
1687
1999
  excludeReasonCodes?: string[] | null | undefined;
1688
2000
  includeTaskCodes?: string[] | null | undefined;
@@ -1690,26 +2002,23 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1690
2002
  createdAt?: string | null | undefined;
1691
2003
  updatedAt?: string | null | undefined;
1692
2004
  archivedAt?: string | null | undefined;
2005
+ enableTasks?: "on" | "off" | null | undefined;
2006
+ enableCycleTimeAnalysis?: "on" | "off" | null | undefined;
2007
+ enableLostProductionCost?: "on" | "off" | null | undefined;
2008
+ enableAutoEndOnQuantityComplete?: "on" | "off" | null | undefined;
2009
+ enableDragBetweenStationsOnGantt?: "on" | "off" | null | undefined;
1693
2010
  stationCountLimit?: number | null | undefined;
1694
2011
  electricalPricePerKwh?: number | null | undefined;
1695
2012
  electricalCo2PerKwh?: number | null | undefined;
1696
2013
  currency?: string | null | undefined;
1697
- enableLostProductionCost?: boolean | null | undefined;
1698
- enableTasks?: boolean | null | undefined;
1699
- allowCycleTimeAnalysis?: boolean | null | undefined;
1700
2014
  dashboardConfig?: Record<string, any> | null | undefined;
1701
2015
  uploadTransforms?: string | null | undefined;
1702
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
1703
2016
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
1704
- allowProductionCorrection?: boolean | null | undefined;
1705
- enableManualDowntime?: boolean | null | undefined;
1706
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
1707
2017
  appUrls?: string | null | undefined;
1708
2018
  }, {
1709
2019
  id: string;
1710
2020
  domain: string;
1711
2021
  manifest: {
1712
- version: "v1";
1713
2022
  account: {
1714
2023
  domain: string;
1715
2024
  id: string;
@@ -1721,7 +2030,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1721
2030
  stationGroups: {
1722
2031
  code: string;
1723
2032
  name: string;
1724
- allowScheduleStationFlexibility: boolean;
1725
2033
  stations: {
1726
2034
  code: string;
1727
2035
  name: string;
@@ -1735,6 +2043,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1735
2043
  minimumCycleTime?: number | null | undefined;
1736
2044
  includeTaskCodes?: string[] | null | undefined;
1737
2045
  description?: string | null | undefined;
2046
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2047
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2048
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2049
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2050
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2051
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2052
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2053
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2054
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2055
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2056
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1738
2057
  excludeTaskCodes?: string[] | null | undefined;
1739
2058
  includeReasonCodes?: string[] | null | undefined;
1740
2059
  excludeReasonCodes?: string[] | null | undefined;
@@ -1751,14 +2070,6 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1751
2070
  electricalUsageStoppedThresholdKw?: number | null | undefined;
1752
2071
  lineSpeedStoppedThreshold?: number | null | undefined;
1753
2072
  productiveHoldOnTime?: number | null | undefined;
1754
- allowInterruptionMode?: boolean | null | undefined;
1755
- allowManualProduction?: boolean | null | undefined;
1756
- allowQuickScheduleStart?: boolean | null | undefined;
1757
- allowScheduleCutShort?: boolean | null | undefined;
1758
- allowRejectProduction?: boolean | null | undefined;
1759
- allowEditPartsPerCycle?: boolean | null | undefined;
1760
- schedulingOnly?: boolean | null | undefined;
1761
- meterOnly?: boolean | null | undefined;
1762
2073
  currentOperatorInitials?: string | null | undefined;
1763
2074
  statusCode?: string | null | undefined;
1764
2075
  statusCodeUpdatedAt?: string | null | undefined;
@@ -1770,15 +2081,34 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1770
2081
  updatedAt?: string | null | undefined;
1771
2082
  shiftPatternCode?: string | null | undefined;
1772
2083
  includeTaskCodes?: string[] | null | undefined;
2084
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2085
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2086
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2087
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2088
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2089
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2090
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2091
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2092
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2093
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2094
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
1773
2095
  excludeTaskCodes?: string[] | null | undefined;
1774
2096
  includeReasonCodes?: string[] | null | undefined;
1775
2097
  excludeReasonCodes?: string[] | null | undefined;
1776
2098
  totalEnergyStationCodes?: string[] | null | undefined;
1777
- allowQuickScheduleStart?: boolean | null | undefined;
1778
2099
  }[];
1779
2100
  createdAt?: string | null | undefined;
1780
2101
  updatedAt?: string | null | undefined;
1781
2102
  includeTaskCodes?: string[] | null | undefined;
2103
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2104
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2105
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2106
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2107
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2108
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2109
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2110
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2111
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
1782
2112
  weekStartDay?: number | undefined;
1783
2113
  excludeTaskCodes?: string[] | null | undefined;
1784
2114
  includeReasonCodes?: string[] | null | undefined;
@@ -1789,22 +2119,29 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1789
2119
  createdAt?: string | null | undefined;
1790
2120
  updatedAt?: string | null | undefined;
1791
2121
  includeTaskCodes?: string[] | null | undefined;
2122
+ enableTasks?: "off" | "on" | null | undefined;
2123
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
2124
+ enableLostProductionCost?: "off" | "on" | null | undefined;
2125
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
2126
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
2127
+ enableProductionCorrection?: "off" | "on" | null | undefined;
2128
+ enableManualProduction?: "off" | "on" | null | undefined;
2129
+ enableInterruptionMode?: "off" | "on" | null | undefined;
2130
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
2131
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
2132
+ enableRejectProduction?: "off" | "on" | null | undefined;
2133
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
2134
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
2135
+ enableManualDowntime?: "off" | "on" | null | undefined;
1792
2136
  excludeTaskCodes?: string[] | null | undefined;
1793
2137
  includeReasonCodes?: string[] | null | undefined;
1794
2138
  excludeReasonCodes?: string[] | null | undefined;
1795
- enableLostProductionCost?: boolean | null | undefined;
1796
- enableTasks?: boolean | null | undefined;
1797
- allowCycleTimeAnalysis?: boolean | null | undefined;
1798
2139
  currency?: string | null | undefined;
1799
2140
  electricalPricePerKwh?: number | null | undefined;
1800
2141
  electricalCo2PerKwh?: number | null | undefined;
1801
2142
  dashboardConfig?: Record<string, any> | null | undefined;
1802
2143
  uploadTransforms?: string | null | undefined;
1803
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
1804
2144
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
1805
- allowProductionCorrection?: boolean | null | undefined;
1806
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
1807
- enableManualDowntime?: boolean | null | undefined;
1808
2145
  archivedAt?: string | null | undefined;
1809
2146
  reasons?: Reason[] | undefined;
1810
2147
  stationCountLimit?: number | null | undefined;
@@ -1852,7 +2189,17 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1852
2189
  includeTaskCodes?: string[] | null | undefined;
1853
2190
  }[] | undefined;
1854
2191
  };
2192
+ version: "v1";
1855
2193
  };
2194
+ enableProductionCorrection?: "on" | "off" | null | undefined;
2195
+ enableManualProduction?: "on" | "off" | null | undefined;
2196
+ enableInterruptionMode?: "on" | "off" | null | undefined;
2197
+ enableQuickScheduleStart?: "on" | "off" | null | undefined;
2198
+ enableScheduleCutShort?: "on" | "off" | null | undefined;
2199
+ enableRejectProduction?: "on" | "off" | null | undefined;
2200
+ enableEditPartsPerCycle?: "on" | "off" | null | undefined;
2201
+ enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
2202
+ enableManualDowntime?: "on" | "off" | null | undefined;
1856
2203
  includeReasonCodes?: string[] | null | undefined;
1857
2204
  excludeReasonCodes?: string[] | null | undefined;
1858
2205
  includeTaskCodes?: string[] | null | undefined;
@@ -1860,20 +2207,18 @@ declare const PublicAccountViewModel: z.ZodObject<Omit<{
1860
2207
  createdAt?: string | null | undefined;
1861
2208
  updatedAt?: string | null | undefined;
1862
2209
  archivedAt?: string | null | undefined;
2210
+ enableTasks?: "on" | "off" | null | undefined;
2211
+ enableCycleTimeAnalysis?: "on" | "off" | null | undefined;
2212
+ enableLostProductionCost?: "on" | "off" | null | undefined;
2213
+ enableAutoEndOnQuantityComplete?: "on" | "off" | null | undefined;
2214
+ enableDragBetweenStationsOnGantt?: "on" | "off" | null | undefined;
1863
2215
  stationCountLimit?: number | null | undefined;
1864
2216
  electricalPricePerKwh?: number | null | undefined;
1865
2217
  electricalCo2PerKwh?: number | null | undefined;
1866
2218
  currency?: string | null | undefined;
1867
- enableLostProductionCost?: boolean | null | undefined;
1868
- enableTasks?: boolean | null | undefined;
1869
- allowCycleTimeAnalysis?: boolean | null | undefined;
1870
2219
  dashboardConfig?: Record<string, any> | null | undefined;
1871
2220
  uploadTransforms?: string | null | undefined;
1872
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
1873
2221
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
1874
- allowProductionCorrection?: boolean | null | undefined;
1875
- enableManualDowntime?: boolean | null | undefined;
1876
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
1877
2222
  appUrls?: string | null | undefined;
1878
2223
  }>;
1879
2224
  type PublicAccountViewModel = z.infer<typeof PublicAccountViewModel>;
@@ -2015,12 +2360,9 @@ declare class BusrootClient {
2015
2360
  account?: {
2016
2361
  domain: string;
2017
2362
  id: string;
2018
- enableLostProductionCost?: boolean | null | undefined;
2019
2363
  dashboardConfig?: Record<string, any> | null | undefined;
2020
2364
  uploadTransforms?: string | null | undefined;
2021
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
2022
2365
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
2023
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
2024
2366
  appUrls?: string | null | undefined;
2025
2367
  } | undefined;
2026
2368
  accounts?: {
@@ -2035,7 +2377,6 @@ declare class BusrootClient {
2035
2377
  id: string;
2036
2378
  domain: string;
2037
2379
  manifest: {
2038
- version: "v1";
2039
2380
  account: {
2040
2381
  domain: string;
2041
2382
  id: string;
@@ -2047,7 +2388,6 @@ declare class BusrootClient {
2047
2388
  stationGroups: {
2048
2389
  code: string;
2049
2390
  name: string;
2050
- allowScheduleStationFlexibility: boolean;
2051
2391
  stations: {
2052
2392
  code: string;
2053
2393
  name: string;
@@ -2061,6 +2401,17 @@ declare class BusrootClient {
2061
2401
  minimumCycleTime?: number | null | undefined;
2062
2402
  includeTaskCodes?: string[] | null | undefined;
2063
2403
  description?: string | null | undefined;
2404
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2405
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2406
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2407
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2408
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2409
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2410
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2411
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2412
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2413
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2414
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2064
2415
  excludeTaskCodes?: string[] | null | undefined;
2065
2416
  includeReasonCodes?: string[] | null | undefined;
2066
2417
  excludeReasonCodes?: string[] | null | undefined;
@@ -2077,14 +2428,6 @@ declare class BusrootClient {
2077
2428
  electricalUsageStoppedThresholdKw?: number | null | undefined;
2078
2429
  lineSpeedStoppedThreshold?: number | null | undefined;
2079
2430
  productiveHoldOnTime?: number | null | undefined;
2080
- allowInterruptionMode?: boolean | null | undefined;
2081
- allowManualProduction?: boolean | null | undefined;
2082
- allowQuickScheduleStart?: boolean | null | undefined;
2083
- allowScheduleCutShort?: boolean | null | undefined;
2084
- allowRejectProduction?: boolean | null | undefined;
2085
- allowEditPartsPerCycle?: boolean | null | undefined;
2086
- schedulingOnly?: boolean | null | undefined;
2087
- meterOnly?: boolean | null | undefined;
2088
2431
  currentOperatorInitials?: string | null | undefined;
2089
2432
  statusCode?: string | null | undefined;
2090
2433
  statusCodeUpdatedAt?: string | null | undefined;
@@ -2096,15 +2439,34 @@ declare class BusrootClient {
2096
2439
  updatedAt?: string | null | undefined;
2097
2440
  shiftPatternCode?: string | null | undefined;
2098
2441
  includeTaskCodes?: string[] | null | undefined;
2442
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2443
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2444
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2445
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2446
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2447
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2448
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2449
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2450
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2451
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2452
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2099
2453
  excludeTaskCodes?: string[] | null | undefined;
2100
2454
  includeReasonCodes?: string[] | null | undefined;
2101
2455
  excludeReasonCodes?: string[] | null | undefined;
2102
2456
  totalEnergyStationCodes?: string[] | null | undefined;
2103
- allowQuickScheduleStart?: boolean | null | undefined;
2104
2457
  }[];
2105
2458
  createdAt?: string | null | undefined;
2106
2459
  updatedAt?: string | null | undefined;
2107
2460
  includeTaskCodes?: string[] | null | undefined;
2461
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2462
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2463
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2464
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2465
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2466
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2467
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2468
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2469
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2108
2470
  weekStartDay?: number | undefined;
2109
2471
  excludeTaskCodes?: string[] | null | undefined;
2110
2472
  includeReasonCodes?: string[] | null | undefined;
@@ -2115,22 +2477,29 @@ declare class BusrootClient {
2115
2477
  createdAt?: string | null | undefined;
2116
2478
  updatedAt?: string | null | undefined;
2117
2479
  includeTaskCodes?: string[] | null | undefined;
2480
+ enableTasks?: "off" | "on" | null | undefined;
2481
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
2482
+ enableLostProductionCost?: "off" | "on" | null | undefined;
2483
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
2484
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
2485
+ enableProductionCorrection?: "off" | "on" | null | undefined;
2486
+ enableManualProduction?: "off" | "on" | null | undefined;
2487
+ enableInterruptionMode?: "off" | "on" | null | undefined;
2488
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
2489
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
2490
+ enableRejectProduction?: "off" | "on" | null | undefined;
2491
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
2492
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
2493
+ enableManualDowntime?: "off" | "on" | null | undefined;
2118
2494
  excludeTaskCodes?: string[] | null | undefined;
2119
2495
  includeReasonCodes?: string[] | null | undefined;
2120
2496
  excludeReasonCodes?: string[] | null | undefined;
2121
- enableLostProductionCost?: boolean | null | undefined;
2122
- enableTasks?: boolean | null | undefined;
2123
- allowCycleTimeAnalysis?: boolean | null | undefined;
2124
2497
  currency?: string | null | undefined;
2125
2498
  electricalPricePerKwh?: number | null | undefined;
2126
2499
  electricalCo2PerKwh?: number | null | undefined;
2127
2500
  dashboardConfig?: Record<string, any> | null | undefined;
2128
2501
  uploadTransforms?: string | null | undefined;
2129
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
2130
2502
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
2131
- allowProductionCorrection?: boolean | null | undefined;
2132
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
2133
- enableManualDowntime?: boolean | null | undefined;
2134
2503
  archivedAt?: string | null | undefined;
2135
2504
  reasons?: Reason[] | undefined;
2136
2505
  stationCountLimit?: number | null | undefined;
@@ -2178,7 +2547,17 @@ declare class BusrootClient {
2178
2547
  includeTaskCodes?: string[] | null | undefined;
2179
2548
  }[] | undefined;
2180
2549
  };
2550
+ version: "v1";
2181
2551
  };
2552
+ enableProductionCorrection?: "on" | "off" | null | undefined;
2553
+ enableManualProduction?: "on" | "off" | null | undefined;
2554
+ enableInterruptionMode?: "on" | "off" | null | undefined;
2555
+ enableQuickScheduleStart?: "on" | "off" | null | undefined;
2556
+ enableScheduleCutShort?: "on" | "off" | null | undefined;
2557
+ enableRejectProduction?: "on" | "off" | null | undefined;
2558
+ enableEditPartsPerCycle?: "on" | "off" | null | undefined;
2559
+ enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
2560
+ enableManualDowntime?: "on" | "off" | null | undefined;
2182
2561
  includeReasonCodes?: string[] | null | undefined;
2183
2562
  excludeReasonCodes?: string[] | null | undefined;
2184
2563
  includeTaskCodes?: string[] | null | undefined;
@@ -2186,20 +2565,18 @@ declare class BusrootClient {
2186
2565
  createdAt?: string | null | undefined;
2187
2566
  updatedAt?: string | null | undefined;
2188
2567
  archivedAt?: string | null | undefined;
2568
+ enableTasks?: "on" | "off" | null | undefined;
2569
+ enableCycleTimeAnalysis?: "on" | "off" | null | undefined;
2570
+ enableLostProductionCost?: "on" | "off" | null | undefined;
2571
+ enableAutoEndOnQuantityComplete?: "on" | "off" | null | undefined;
2572
+ enableDragBetweenStationsOnGantt?: "on" | "off" | null | undefined;
2189
2573
  stationCountLimit?: number | null | undefined;
2190
2574
  electricalPricePerKwh?: number | null | undefined;
2191
2575
  electricalCo2PerKwh?: number | null | undefined;
2192
2576
  currency?: string | null | undefined;
2193
- enableLostProductionCost?: boolean | null | undefined;
2194
- enableTasks?: boolean | null | undefined;
2195
- allowCycleTimeAnalysis?: boolean | null | undefined;
2196
2577
  dashboardConfig?: Record<string, any> | null | undefined;
2197
2578
  uploadTransforms?: string | null | undefined;
2198
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
2199
2579
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
2200
- allowProductionCorrection?: boolean | null | undefined;
2201
- enableManualDowntime?: boolean | null | undefined;
2202
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
2203
2580
  appUrls?: string | null | undefined;
2204
2581
  }>;
2205
2582
  "account.create": (args_0: {
@@ -2211,7 +2588,6 @@ declare class BusrootClient {
2211
2588
  id: string;
2212
2589
  domain: string;
2213
2590
  manifest: {
2214
- version: "v1";
2215
2591
  account: {
2216
2592
  domain: string;
2217
2593
  id: string;
@@ -2223,7 +2599,6 @@ declare class BusrootClient {
2223
2599
  stationGroups: {
2224
2600
  code: string;
2225
2601
  name: string;
2226
- allowScheduleStationFlexibility: boolean;
2227
2602
  stations: {
2228
2603
  code: string;
2229
2604
  name: string;
@@ -2237,6 +2612,17 @@ declare class BusrootClient {
2237
2612
  minimumCycleTime?: number | null | undefined;
2238
2613
  includeTaskCodes?: string[] | null | undefined;
2239
2614
  description?: string | null | undefined;
2615
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2616
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2617
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2618
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2619
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2620
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2621
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2622
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2623
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2624
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2625
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2240
2626
  excludeTaskCodes?: string[] | null | undefined;
2241
2627
  includeReasonCodes?: string[] | null | undefined;
2242
2628
  excludeReasonCodes?: string[] | null | undefined;
@@ -2253,14 +2639,6 @@ declare class BusrootClient {
2253
2639
  electricalUsageStoppedThresholdKw?: number | null | undefined;
2254
2640
  lineSpeedStoppedThreshold?: number | null | undefined;
2255
2641
  productiveHoldOnTime?: number | null | undefined;
2256
- allowInterruptionMode?: boolean | null | undefined;
2257
- allowManualProduction?: boolean | null | undefined;
2258
- allowQuickScheduleStart?: boolean | null | undefined;
2259
- allowScheduleCutShort?: boolean | null | undefined;
2260
- allowRejectProduction?: boolean | null | undefined;
2261
- allowEditPartsPerCycle?: boolean | null | undefined;
2262
- schedulingOnly?: boolean | null | undefined;
2263
- meterOnly?: boolean | null | undefined;
2264
2642
  currentOperatorInitials?: string | null | undefined;
2265
2643
  statusCode?: string | null | undefined;
2266
2644
  statusCodeUpdatedAt?: string | null | undefined;
@@ -2272,15 +2650,34 @@ declare class BusrootClient {
2272
2650
  updatedAt?: string | null | undefined;
2273
2651
  shiftPatternCode?: string | null | undefined;
2274
2652
  includeTaskCodes?: string[] | null | undefined;
2653
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2654
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2655
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2656
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2657
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2658
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2659
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2660
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2661
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2662
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2663
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2275
2664
  excludeTaskCodes?: string[] | null | undefined;
2276
2665
  includeReasonCodes?: string[] | null | undefined;
2277
2666
  excludeReasonCodes?: string[] | null | undefined;
2278
2667
  totalEnergyStationCodes?: string[] | null | undefined;
2279
- allowQuickScheduleStart?: boolean | null | undefined;
2280
2668
  }[];
2281
2669
  createdAt?: string | null | undefined;
2282
2670
  updatedAt?: string | null | undefined;
2283
2671
  includeTaskCodes?: string[] | null | undefined;
2672
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2673
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2674
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2675
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2676
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2677
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2678
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2679
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2680
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2284
2681
  weekStartDay?: number | undefined;
2285
2682
  excludeTaskCodes?: string[] | null | undefined;
2286
2683
  includeReasonCodes?: string[] | null | undefined;
@@ -2291,22 +2688,29 @@ declare class BusrootClient {
2291
2688
  createdAt?: string | null | undefined;
2292
2689
  updatedAt?: string | null | undefined;
2293
2690
  includeTaskCodes?: string[] | null | undefined;
2691
+ enableTasks?: "off" | "on" | null | undefined;
2692
+ enableCycleTimeAnalysis?: "off" | "on" | null | undefined;
2693
+ enableLostProductionCost?: "off" | "on" | null | undefined;
2694
+ enableAutoEndOnQuantityComplete?: "off" | "on" | null | undefined;
2695
+ enableDragBetweenStationsOnGantt?: "off" | "on" | null | undefined;
2696
+ enableProductionCorrection?: "off" | "on" | null | undefined;
2697
+ enableManualProduction?: "off" | "on" | null | undefined;
2698
+ enableInterruptionMode?: "off" | "on" | null | undefined;
2699
+ enableQuickScheduleStart?: "off" | "on" | null | undefined;
2700
+ enableScheduleCutShort?: "off" | "on" | null | undefined;
2701
+ enableRejectProduction?: "off" | "on" | null | undefined;
2702
+ enableEditPartsPerCycle?: "off" | "on" | null | undefined;
2703
+ enableScheduleStationFlexibility?: "off" | "on" | null | undefined;
2704
+ enableManualDowntime?: "off" | "on" | null | undefined;
2294
2705
  excludeTaskCodes?: string[] | null | undefined;
2295
2706
  includeReasonCodes?: string[] | null | undefined;
2296
2707
  excludeReasonCodes?: string[] | null | undefined;
2297
- enableLostProductionCost?: boolean | null | undefined;
2298
- enableTasks?: boolean | null | undefined;
2299
- allowCycleTimeAnalysis?: boolean | null | undefined;
2300
2708
  currency?: string | null | undefined;
2301
2709
  electricalPricePerKwh?: number | null | undefined;
2302
2710
  electricalCo2PerKwh?: number | null | undefined;
2303
2711
  dashboardConfig?: Record<string, any> | null | undefined;
2304
2712
  uploadTransforms?: string | null | undefined;
2305
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
2306
2713
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
2307
- allowProductionCorrection?: boolean | null | undefined;
2308
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
2309
- enableManualDowntime?: boolean | null | undefined;
2310
2714
  archivedAt?: string | null | undefined;
2311
2715
  reasons?: Reason[] | undefined;
2312
2716
  stationCountLimit?: number | null | undefined;
@@ -2354,7 +2758,17 @@ declare class BusrootClient {
2354
2758
  includeTaskCodes?: string[] | null | undefined;
2355
2759
  }[] | undefined;
2356
2760
  };
2761
+ version: "v1";
2357
2762
  };
2763
+ enableProductionCorrection?: "on" | "off" | null | undefined;
2764
+ enableManualProduction?: "on" | "off" | null | undefined;
2765
+ enableInterruptionMode?: "on" | "off" | null | undefined;
2766
+ enableQuickScheduleStart?: "on" | "off" | null | undefined;
2767
+ enableScheduleCutShort?: "on" | "off" | null | undefined;
2768
+ enableRejectProduction?: "on" | "off" | null | undefined;
2769
+ enableEditPartsPerCycle?: "on" | "off" | null | undefined;
2770
+ enableScheduleStationFlexibility?: "on" | "off" | null | undefined;
2771
+ enableManualDowntime?: "on" | "off" | null | undefined;
2358
2772
  includeReasonCodes?: string[] | null | undefined;
2359
2773
  excludeReasonCodes?: string[] | null | undefined;
2360
2774
  includeTaskCodes?: string[] | null | undefined;
@@ -2362,20 +2776,18 @@ declare class BusrootClient {
2362
2776
  createdAt?: string | null | undefined;
2363
2777
  updatedAt?: string | null | undefined;
2364
2778
  archivedAt?: string | null | undefined;
2779
+ enableTasks?: "on" | "off" | null | undefined;
2780
+ enableCycleTimeAnalysis?: "on" | "off" | null | undefined;
2781
+ enableLostProductionCost?: "on" | "off" | null | undefined;
2782
+ enableAutoEndOnQuantityComplete?: "on" | "off" | null | undefined;
2783
+ enableDragBetweenStationsOnGantt?: "on" | "off" | null | undefined;
2365
2784
  stationCountLimit?: number | null | undefined;
2366
2785
  electricalPricePerKwh?: number | null | undefined;
2367
2786
  electricalCo2PerKwh?: number | null | undefined;
2368
2787
  currency?: string | null | undefined;
2369
- enableLostProductionCost?: boolean | null | undefined;
2370
- enableTasks?: boolean | null | undefined;
2371
- allowCycleTimeAnalysis?: boolean | null | undefined;
2372
2788
  dashboardConfig?: Record<string, any> | null | undefined;
2373
2789
  uploadTransforms?: string | null | undefined;
2374
- defaultAutoEndOnQuantityComplete?: boolean | null | undefined;
2375
2790
  durationFormat?: "months" | "days" | "hours" | "minutes" | null | undefined;
2376
- allowProductionCorrection?: boolean | null | undefined;
2377
- enableManualDowntime?: boolean | null | undefined;
2378
- allowDragBetweenStationsOnGantt?: boolean | null | undefined;
2379
2791
  appUrls?: string | null | undefined;
2380
2792
  }>;
2381
2793
  "apiKey.create": (...args: unknown[]) => Promise<{
@@ -2396,7 +2808,6 @@ declare class BusrootClient {
2396
2808
  stationGroups: {
2397
2809
  code: string;
2398
2810
  name: string;
2399
- allowScheduleStationFlexibility: boolean;
2400
2811
  stations: {
2401
2812
  code: string;
2402
2813
  name: string;
@@ -2410,6 +2821,17 @@ declare class BusrootClient {
2410
2821
  minimumCycleTime?: number | null | undefined;
2411
2822
  includeTaskCodes?: string[] | null | undefined;
2412
2823
  description?: string | null | undefined;
2824
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2825
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2826
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2827
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2828
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2829
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2830
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2831
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2832
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2833
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2834
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2413
2835
  excludeTaskCodes?: string[] | null | undefined;
2414
2836
  includeReasonCodes?: string[] | null | undefined;
2415
2837
  excludeReasonCodes?: string[] | null | undefined;
@@ -2426,14 +2848,6 @@ declare class BusrootClient {
2426
2848
  electricalUsageStoppedThresholdKw?: number | null | undefined;
2427
2849
  lineSpeedStoppedThreshold?: number | null | undefined;
2428
2850
  productiveHoldOnTime?: number | null | undefined;
2429
- allowInterruptionMode?: boolean | null | undefined;
2430
- allowManualProduction?: boolean | null | undefined;
2431
- allowQuickScheduleStart?: boolean | null | undefined;
2432
- allowScheduleCutShort?: boolean | null | undefined;
2433
- allowRejectProduction?: boolean | null | undefined;
2434
- allowEditPartsPerCycle?: boolean | null | undefined;
2435
- schedulingOnly?: boolean | null | undefined;
2436
- meterOnly?: boolean | null | undefined;
2437
2851
  currentOperatorInitials?: string | null | undefined;
2438
2852
  statusCode?: string | null | undefined;
2439
2853
  statusCodeUpdatedAt?: string | null | undefined;
@@ -2445,11 +2859,21 @@ declare class BusrootClient {
2445
2859
  updatedAt?: string | null | undefined;
2446
2860
  shiftPatternCode?: string | null | undefined;
2447
2861
  includeTaskCodes?: string[] | null | undefined;
2862
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2863
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2864
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2865
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2866
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2867
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2868
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2869
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2870
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2871
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2872
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2448
2873
  excludeTaskCodes?: string[] | null | undefined;
2449
2874
  includeReasonCodes?: string[] | null | undefined;
2450
2875
  excludeReasonCodes?: string[] | null | undefined;
2451
2876
  totalEnergyStationCodes?: string[] | null | undefined;
2452
- allowQuickScheduleStart?: boolean | null | undefined;
2453
2877
  }[];
2454
2878
  totalEnergyStationCodes?: string[] | null | undefined;
2455
2879
  }[]>;
@@ -2465,7 +2889,6 @@ declare class BusrootClient {
2465
2889
  stationGroups: {
2466
2890
  code: string;
2467
2891
  name: string;
2468
- allowScheduleStationFlexibility: boolean;
2469
2892
  stations: {
2470
2893
  code: string;
2471
2894
  name: string;
@@ -2479,6 +2902,17 @@ declare class BusrootClient {
2479
2902
  minimumCycleTime?: number | null | undefined;
2480
2903
  includeTaskCodes?: string[] | null | undefined;
2481
2904
  description?: string | null | undefined;
2905
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2906
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2907
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2908
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2909
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2910
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2911
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2912
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2913
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2914
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2915
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2482
2916
  excludeTaskCodes?: string[] | null | undefined;
2483
2917
  includeReasonCodes?: string[] | null | undefined;
2484
2918
  excludeReasonCodes?: string[] | null | undefined;
@@ -2495,14 +2929,6 @@ declare class BusrootClient {
2495
2929
  electricalUsageStoppedThresholdKw?: number | null | undefined;
2496
2930
  lineSpeedStoppedThreshold?: number | null | undefined;
2497
2931
  productiveHoldOnTime?: number | null | undefined;
2498
- allowInterruptionMode?: boolean | null | undefined;
2499
- allowManualProduction?: boolean | null | undefined;
2500
- allowQuickScheduleStart?: boolean | null | undefined;
2501
- allowScheduleCutShort?: boolean | null | undefined;
2502
- allowRejectProduction?: boolean | null | undefined;
2503
- allowEditPartsPerCycle?: boolean | null | undefined;
2504
- schedulingOnly?: boolean | null | undefined;
2505
- meterOnly?: boolean | null | undefined;
2506
2932
  currentOperatorInitials?: string | null | undefined;
2507
2933
  statusCode?: string | null | undefined;
2508
2934
  statusCodeUpdatedAt?: string | null | undefined;
@@ -2514,11 +2940,21 @@ declare class BusrootClient {
2514
2940
  updatedAt?: string | null | undefined;
2515
2941
  shiftPatternCode?: string | null | undefined;
2516
2942
  includeTaskCodes?: string[] | null | undefined;
2943
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2944
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2945
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2946
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2947
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2948
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2949
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2950
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2951
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
2952
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2953
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2517
2954
  excludeTaskCodes?: string[] | null | undefined;
2518
2955
  includeReasonCodes?: string[] | null | undefined;
2519
2956
  excludeReasonCodes?: string[] | null | undefined;
2520
2957
  totalEnergyStationCodes?: string[] | null | undefined;
2521
- allowQuickScheduleStart?: boolean | null | undefined;
2522
2958
  }[];
2523
2959
  totalEnergyStationCodes?: string[] | null | undefined;
2524
2960
  }>;
@@ -2526,6 +2962,15 @@ declare class BusrootClient {
2526
2962
  code: string;
2527
2963
  name: string;
2528
2964
  includeTaskCodes?: string[] | null | undefined;
2965
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
2966
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
2967
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
2968
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
2969
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
2970
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
2971
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
2972
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
2973
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2529
2974
  dayStartHour?: number | undefined;
2530
2975
  weekStartDay?: number | undefined;
2531
2976
  timezone?: string | undefined;
@@ -2543,7 +2988,6 @@ declare class BusrootClient {
2543
2988
  stationGroups: {
2544
2989
  code: string;
2545
2990
  name: string;
2546
- allowScheduleStationFlexibility: boolean;
2547
2991
  stations: {
2548
2992
  code: string;
2549
2993
  name: string;
@@ -2557,6 +3001,17 @@ declare class BusrootClient {
2557
3001
  minimumCycleTime?: number | null | undefined;
2558
3002
  includeTaskCodes?: string[] | null | undefined;
2559
3003
  description?: string | null | undefined;
3004
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
3005
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
3006
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
3007
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
3008
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
3009
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
3010
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
3011
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
3012
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
3013
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
3014
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2560
3015
  excludeTaskCodes?: string[] | null | undefined;
2561
3016
  includeReasonCodes?: string[] | null | undefined;
2562
3017
  excludeReasonCodes?: string[] | null | undefined;
@@ -2573,14 +3028,6 @@ declare class BusrootClient {
2573
3028
  electricalUsageStoppedThresholdKw?: number | null | undefined;
2574
3029
  lineSpeedStoppedThreshold?: number | null | undefined;
2575
3030
  productiveHoldOnTime?: number | null | undefined;
2576
- allowInterruptionMode?: boolean | null | undefined;
2577
- allowManualProduction?: boolean | null | undefined;
2578
- allowQuickScheduleStart?: boolean | null | undefined;
2579
- allowScheduleCutShort?: boolean | null | undefined;
2580
- allowRejectProduction?: boolean | null | undefined;
2581
- allowEditPartsPerCycle?: boolean | null | undefined;
2582
- schedulingOnly?: boolean | null | undefined;
2583
- meterOnly?: boolean | null | undefined;
2584
3031
  currentOperatorInitials?: string | null | undefined;
2585
3032
  statusCode?: string | null | undefined;
2586
3033
  statusCodeUpdatedAt?: string | null | undefined;
@@ -2592,11 +3039,21 @@ declare class BusrootClient {
2592
3039
  updatedAt?: string | null | undefined;
2593
3040
  shiftPatternCode?: string | null | undefined;
2594
3041
  includeTaskCodes?: string[] | null | undefined;
3042
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
3043
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
3044
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
3045
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
3046
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
3047
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
3048
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
3049
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
3050
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
3051
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
3052
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2595
3053
  excludeTaskCodes?: string[] | null | undefined;
2596
3054
  includeReasonCodes?: string[] | null | undefined;
2597
3055
  excludeReasonCodes?: string[] | null | undefined;
2598
3056
  totalEnergyStationCodes?: string[] | null | undefined;
2599
- allowQuickScheduleStart?: boolean | null | undefined;
2600
3057
  }[];
2601
3058
  totalEnergyStationCodes?: string[] | null | undefined;
2602
3059
  }>;
@@ -2632,6 +3089,7 @@ declare class BusrootClient {
2632
3089
  lineSpeedTarget?: number | null | undefined;
2633
3090
  minimumCycleTime?: number | null | undefined;
2634
3091
  description?: string | null | undefined;
3092
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
2635
3093
  speedScale?: number | null | undefined;
2636
3094
  speedOffset?: number | null | undefined;
2637
3095
  speedToProductionRatio?: number | null | undefined;
@@ -2645,20 +3103,11 @@ declare class BusrootClient {
2645
3103
  electricalUsageStoppedThresholdKw?: number | null | undefined;
2646
3104
  lineSpeedStoppedThreshold?: number | null | undefined;
2647
3105
  productiveHoldOnTime?: number | null | undefined;
2648
- allowInterruptionMode?: boolean | null | undefined;
2649
- allowManualProduction?: boolean | null | undefined;
2650
- allowQuickScheduleStart?: boolean | null | undefined;
2651
- allowScheduleCutShort?: boolean | null | undefined;
2652
- allowRejectProduction?: boolean | null | undefined;
2653
- allowEditPartsPerCycle?: boolean | null | undefined;
2654
- schedulingOnly?: boolean | null | undefined;
2655
- meterOnly?: boolean | null | undefined;
2656
3106
  currentOperatorInitials?: string | null | undefined;
2657
3107
  statusCode?: string | null | undefined;
2658
3108
  statusCodeUpdatedAt?: string | null | undefined;
2659
3109
  alertMessage?: string | null | undefined;
2660
3110
  alertExpiresAt?: string | null | undefined;
2661
- allowScheduleStationFlexibility?: boolean | null | undefined;
2662
3111
  groupName?: string | null | undefined;
2663
3112
  shiftPattern?: {
2664
3113
  code: string;
@@ -2686,7 +3135,6 @@ declare class BusrootClient {
2686
3135
  currentStopReasonCode?: string | null | undefined;
2687
3136
  stoppedSince?: number | null | undefined;
2688
3137
  cachedAt?: number | null | undefined;
2689
- allowQuickScheduleStartGroup?: boolean | null | undefined;
2690
3138
  lastStationWindow?: {
2691
3139
  accountId: string;
2692
3140
  stationCode: string;
@@ -2794,7 +3242,6 @@ declare class BusrootClient {
2794
3242
  deletedAt?: string | null | undefined;
2795
3243
  stationName?: string | null | undefined;
2796
3244
  stationGroupCode?: string | null | undefined;
2797
- allowScheduleCutShort?: boolean | null | undefined;
2798
3245
  plannedStartAt?: string | null | undefined;
2799
3246
  plannedEndAt?: string | null | undefined;
2800
3247
  plannedQuantity?: number | null | undefined;
@@ -2812,7 +3259,7 @@ declare class BusrootClient {
2812
3259
  effectiveCycleTime?: number | null | undefined;
2813
3260
  quantityGood?: number | null | undefined;
2814
3261
  quantityBad?: number | null | undefined;
2815
- performanceModeFrom?: "none" | "schedule" | "station" | "sku" | undefined;
3262
+ performanceModeFrom?: "none" | "station" | "schedule" | "sku" | undefined;
2816
3263
  skuValue?: number | null | undefined;
2817
3264
  stationGroupName?: string | null | undefined;
2818
3265
  nonProductionReasonDescription?: string | null | undefined;
@@ -2855,7 +3302,6 @@ declare class BusrootClient {
2855
3302
  deletedAt?: string | null | undefined;
2856
3303
  stationName?: string | null | undefined;
2857
3304
  stationGroupCode?: string | null | undefined;
2858
- allowScheduleCutShort?: boolean | null | undefined;
2859
3305
  plannedStartAt?: string | null | undefined;
2860
3306
  plannedEndAt?: string | null | undefined;
2861
3307
  plannedQuantity?: number | null | undefined;
@@ -2873,7 +3319,7 @@ declare class BusrootClient {
2873
3319
  effectiveCycleTime?: number | null | undefined;
2874
3320
  quantityGood?: number | null | undefined;
2875
3321
  quantityBad?: number | null | undefined;
2876
- performanceModeFrom?: "none" | "schedule" | "station" | "sku" | undefined;
3322
+ performanceModeFrom?: "none" | "station" | "schedule" | "sku" | undefined;
2877
3323
  skuValue?: number | null | undefined;
2878
3324
  stationGroupName?: string | null | undefined;
2879
3325
  nonProductionReasonDescription?: string | null | undefined;
@@ -2902,6 +3348,17 @@ declare class BusrootClient {
2902
3348
  code: string;
2903
3349
  name: string;
2904
3350
  groupCode: string;
3351
+ enableProductionCorrection?: "on" | "off" | "inherit" | null | undefined;
3352
+ enableManualProduction?: "on" | "off" | "inherit" | null | undefined;
3353
+ enableInterruptionMode?: "on" | "off" | "inherit" | null | undefined;
3354
+ enableQuickScheduleStart?: "on" | "off" | "inherit" | null | undefined;
3355
+ enableScheduleCutShort?: "on" | "off" | "inherit" | null | undefined;
3356
+ enableRejectProduction?: "on" | "off" | "inherit" | null | undefined;
3357
+ enableEditPartsPerCycle?: "on" | "off" | "inherit" | null | undefined;
3358
+ enableScheduleStationFlexibility?: "on" | "off" | "inherit" | null | undefined;
3359
+ enableSchedulingOnly?: "on" | "off" | "inherit" | null | undefined;
3360
+ enableManualDowntime?: "on" | "off" | "inherit" | null | undefined;
3361
+ enableMeterOnly?: "on" | "off" | "inherit" | null | undefined;
2905
3362
  description?: string | null | undefined;
2906
3363
  shiftPatternCode?: string | null | undefined;
2907
3364
  minimumCycleTime?: number | null | undefined;
@@ -2918,14 +3375,6 @@ declare class BusrootClient {
2918
3375
  electricalUsageStoppedThresholdKw?: number | null | undefined;
2919
3376
  lineSpeedStoppedThreshold?: number | null | undefined;
2920
3377
  productiveHoldOnTime?: number | null | undefined;
2921
- allowInterruptionMode?: boolean | null | undefined;
2922
- allowManualProduction?: boolean | null | undefined;
2923
- allowQuickScheduleStart?: boolean | null | undefined;
2924
- allowScheduleCutShort?: boolean | null | undefined;
2925
- allowRejectProduction?: boolean | null | undefined;
2926
- allowEditPartsPerCycle?: boolean | null | undefined;
2927
- schedulingOnly?: boolean | null | undefined;
2928
- meterOnly?: boolean | null | undefined;
2929
3378
  cycleTime?: number | null | undefined;
2930
3379
  unitsPerMinute?: number | null | undefined;
2931
3380
  unitsPerHour?: number | null | undefined;
@@ -2943,15 +3392,24 @@ declare class BusrootClient {
2943
3392
  }, ...args: unknown[]) => void;
2944
3393
  "stationGroup.createUpdate": (args_0: z.objectOutputType<{
2945
3394
  code: z.ZodString;
3395
+ enableProductionCorrection: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3396
+ enableManualProduction: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3397
+ enableInterruptionMode: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3398
+ enableQuickScheduleStart: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3399
+ enableScheduleCutShort: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3400
+ enableRejectProduction: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3401
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3402
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3403
+ enableSchedulingOnly: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3404
+ enableManualDowntime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
3405
+ enableMeterOnly: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>>;
2946
3406
  name: z.ZodOptional<z.ZodString>;
2947
3407
  shiftPatternCode: z.ZodOptional<z.ZodString>;
2948
- allowQuickScheduleStart: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
2949
3408
  includeReasonCodes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
2950
3409
  excludeReasonCodes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
2951
3410
  includeTaskCodes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
2952
3411
  excludeTaskCodes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
2953
3412
  plantCode: z.ZodOptional<z.ZodString>;
2954
- allowScheduleStationFlexibility: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2955
3413
  totalEnergyStationCodes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
2956
3414
  }, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => Promise<{
2957
3415
  code: string;
@@ -2966,7 +3424,6 @@ declare class BusrootClient {
2966
3424
  shiftPatternCode: string;
2967
3425
  }[];
2968
3426
  plantCode: string;
2969
- allowScheduleStationFlexibility: boolean;
2970
3427
  stations: {
2971
3428
  code: string;
2972
3429
  accountId: string;
@@ -2982,6 +3439,17 @@ declare class BusrootClient {
2982
3439
  minimumCycleTime?: number | null | undefined;
2983
3440
  includeTaskCodes?: string[] | null | undefined;
2984
3441
  description?: string | null | undefined;
3442
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
3443
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
3444
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
3445
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
3446
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
3447
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
3448
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
3449
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
3450
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
3451
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
3452
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
2985
3453
  excludeTaskCodes?: string[] | null | undefined;
2986
3454
  includeReasonCodes?: string[] | null | undefined;
2987
3455
  excludeReasonCodes?: string[] | null | undefined;
@@ -2998,14 +3466,6 @@ declare class BusrootClient {
2998
3466
  electricalUsageStoppedThresholdKw?: number | null | undefined;
2999
3467
  lineSpeedStoppedThreshold?: number | null | undefined;
3000
3468
  productiveHoldOnTime?: number | null | undefined;
3001
- allowInterruptionMode?: boolean | null | undefined;
3002
- allowManualProduction?: boolean | null | undefined;
3003
- allowQuickScheduleStart?: boolean | null | undefined;
3004
- allowScheduleCutShort?: boolean | null | undefined;
3005
- allowRejectProduction?: boolean | null | undefined;
3006
- allowEditPartsPerCycle?: boolean | null | undefined;
3007
- schedulingOnly?: boolean | null | undefined;
3008
- meterOnly?: boolean | null | undefined;
3009
3469
  currentOperatorInitials?: string | null | undefined;
3010
3470
  statusCode?: string | null | undefined;
3011
3471
  statusCodeUpdatedAt?: string | null | undefined;
@@ -3015,8 +3475,9 @@ declare class BusrootClient {
3015
3475
  }[];
3016
3476
  plantTimezone: string;
3017
3477
  shiftPatternCode?: string | null | undefined;
3478
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
3479
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3018
3480
  totalEnergyStationCodes?: string[] | null | undefined;
3019
- allowQuickScheduleStart?: boolean | null | undefined;
3020
3481
  }>;
3021
3482
  "production.get": (args_0: {
3022
3483
  plantCode: string;
@@ -3381,7 +3842,6 @@ declare class BusrootClient {
3381
3842
  deletedAt?: string | null | undefined;
3382
3843
  stationName?: string | null | undefined;
3383
3844
  stationGroupCode?: string | null | undefined;
3384
- allowScheduleCutShort?: boolean | null | undefined;
3385
3845
  plannedStartAt?: string | null | undefined;
3386
3846
  plannedEndAt?: string | null | undefined;
3387
3847
  plannedQuantity?: number | null | undefined;
@@ -3399,7 +3859,7 @@ declare class BusrootClient {
3399
3859
  effectiveCycleTime?: number | null | undefined;
3400
3860
  quantityGood?: number | null | undefined;
3401
3861
  quantityBad?: number | null | undefined;
3402
- performanceModeFrom?: "none" | "schedule" | "station" | "sku" | undefined;
3862
+ performanceModeFrom?: "none" | "station" | "schedule" | "sku" | undefined;
3403
3863
  skuValue?: number | null | undefined;
3404
3864
  stationGroupName?: string | null | undefined;
3405
3865
  nonProductionReasonDescription?: string | null | undefined;
@@ -3465,7 +3925,6 @@ declare class BusrootClient {
3465
3925
  deletedAt?: string | null | undefined;
3466
3926
  stationName?: string | null | undefined;
3467
3927
  stationGroupCode?: string | null | undefined;
3468
- allowScheduleCutShort?: boolean | null | undefined;
3469
3928
  plannedStartAt?: string | null | undefined;
3470
3929
  plannedEndAt?: string | null | undefined;
3471
3930
  plannedQuantity?: number | null | undefined;
@@ -3483,7 +3942,7 @@ declare class BusrootClient {
3483
3942
  effectiveCycleTime?: number | null | undefined;
3484
3943
  quantityGood?: number | null | undefined;
3485
3944
  quantityBad?: number | null | undefined;
3486
- performanceModeFrom?: "none" | "schedule" | "station" | "sku" | undefined;
3945
+ performanceModeFrom?: "none" | "station" | "schedule" | "sku" | undefined;
3487
3946
  skuValue?: number | null | undefined;
3488
3947
  stationGroupName?: string | null | undefined;
3489
3948
  nonProductionReasonDescription?: string | null | undefined;
@@ -3658,6 +4117,15 @@ declare const BusrootSignalsPayload: z.ZodObject<{
3658
4117
  type BusrootSignalsPayload = z.infer<typeof BusrootSignalsPayload>;
3659
4118
 
3660
4119
  declare const PlantSchema: z.ZodObject<{
4120
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4121
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4122
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4123
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4124
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4125
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4126
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4127
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4128
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
3661
4129
  code: z.ZodString;
3662
4130
  name: z.ZodString;
3663
4131
  timezone: z.ZodString;
@@ -3669,11 +4137,20 @@ declare const PlantSchema: z.ZodObject<{
3669
4137
  excludeTaskCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
3670
4138
  totalEnergyStationCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
3671
4139
  stationGroups: z.ZodArray<z.ZodObject<{
4140
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4141
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4142
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4143
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4144
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4145
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4146
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4147
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4148
+ enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4149
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4150
+ enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
3672
4151
  code: z.ZodString;
3673
4152
  name: z.ZodString;
3674
- allowScheduleStationFlexibility: z.ZodBoolean;
3675
4153
  shiftPatternCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3676
- allowQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3677
4154
  includeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
3678
4155
  excludeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
3679
4156
  includeTaskCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -3683,6 +4160,17 @@ declare const PlantSchema: z.ZodObject<{
3683
4160
  updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3684
4161
  } & {
3685
4162
  stations: z.ZodArray<z.ZodObject<{
4163
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4164
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4165
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4166
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4167
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4168
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4169
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4170
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4171
+ enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4172
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4173
+ enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
3686
4174
  code: z.ZodString;
3687
4175
  name: z.ZodString;
3688
4176
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3701,14 +4189,6 @@ declare const PlantSchema: z.ZodObject<{
3701
4189
  electricalUsageStoppedThresholdKw: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3702
4190
  lineSpeedStoppedThreshold: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3703
4191
  productiveHoldOnTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3704
- allowInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
3705
- allowManualProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
3706
- allowQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
3707
- allowScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
3708
- allowRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
3709
- allowEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
3710
- schedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
3711
- meterOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
3712
4192
  currentOperatorInitials: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3713
4193
  statusCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3714
4194
  statusCodeUpdatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3738,6 +4218,17 @@ declare const PlantSchema: z.ZodObject<{
3738
4218
  minimumCycleTime?: number | null | undefined;
3739
4219
  includeTaskCodes?: string[] | null | undefined;
3740
4220
  description?: string | null | undefined;
4221
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4222
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4223
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4224
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4225
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4226
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4227
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4228
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4229
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4230
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4231
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3741
4232
  excludeTaskCodes?: string[] | null | undefined;
3742
4233
  includeReasonCodes?: string[] | null | undefined;
3743
4234
  excludeReasonCodes?: string[] | null | undefined;
@@ -3754,14 +4245,6 @@ declare const PlantSchema: z.ZodObject<{
3754
4245
  electricalUsageStoppedThresholdKw?: number | null | undefined;
3755
4246
  lineSpeedStoppedThreshold?: number | null | undefined;
3756
4247
  productiveHoldOnTime?: number | null | undefined;
3757
- allowInterruptionMode?: boolean | null | undefined;
3758
- allowManualProduction?: boolean | null | undefined;
3759
- allowQuickScheduleStart?: boolean | null | undefined;
3760
- allowScheduleCutShort?: boolean | null | undefined;
3761
- allowRejectProduction?: boolean | null | undefined;
3762
- allowEditPartsPerCycle?: boolean | null | undefined;
3763
- schedulingOnly?: boolean | null | undefined;
3764
- meterOnly?: boolean | null | undefined;
3765
4248
  currentOperatorInitials?: string | null | undefined;
3766
4249
  statusCode?: string | null | undefined;
3767
4250
  statusCodeUpdatedAt?: string | null | undefined;
@@ -3781,6 +4264,17 @@ declare const PlantSchema: z.ZodObject<{
3781
4264
  minimumCycleTime?: number | null | undefined;
3782
4265
  includeTaskCodes?: string[] | null | undefined;
3783
4266
  description?: string | null | undefined;
4267
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4268
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4269
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4270
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4271
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4272
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4273
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4274
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4275
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4276
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4277
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3784
4278
  excludeTaskCodes?: string[] | null | undefined;
3785
4279
  includeReasonCodes?: string[] | null | undefined;
3786
4280
  excludeReasonCodes?: string[] | null | undefined;
@@ -3797,14 +4291,6 @@ declare const PlantSchema: z.ZodObject<{
3797
4291
  electricalUsageStoppedThresholdKw?: number | null | undefined;
3798
4292
  lineSpeedStoppedThreshold?: number | null | undefined;
3799
4293
  productiveHoldOnTime?: number | null | undefined;
3800
- allowInterruptionMode?: boolean | null | undefined;
3801
- allowManualProduction?: boolean | null | undefined;
3802
- allowQuickScheduleStart?: boolean | null | undefined;
3803
- allowScheduleCutShort?: boolean | null | undefined;
3804
- allowRejectProduction?: boolean | null | undefined;
3805
- allowEditPartsPerCycle?: boolean | null | undefined;
3806
- schedulingOnly?: boolean | null | undefined;
3807
- meterOnly?: boolean | null | undefined;
3808
4294
  currentOperatorInitials?: string | null | undefined;
3809
4295
  statusCode?: string | null | undefined;
3810
4296
  statusCodeUpdatedAt?: string | null | undefined;
@@ -3815,7 +4301,6 @@ declare const PlantSchema: z.ZodObject<{
3815
4301
  }, "strict", z.ZodTypeAny, {
3816
4302
  code: string;
3817
4303
  name: string;
3818
- allowScheduleStationFlexibility: boolean;
3819
4304
  stations: {
3820
4305
  code: string;
3821
4306
  name: string;
@@ -3829,6 +4314,17 @@ declare const PlantSchema: z.ZodObject<{
3829
4314
  minimumCycleTime?: number | null | undefined;
3830
4315
  includeTaskCodes?: string[] | null | undefined;
3831
4316
  description?: string | null | undefined;
4317
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4318
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4319
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4320
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4321
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4322
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4323
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4324
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4325
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4326
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4327
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3832
4328
  excludeTaskCodes?: string[] | null | undefined;
3833
4329
  includeReasonCodes?: string[] | null | undefined;
3834
4330
  excludeReasonCodes?: string[] | null | undefined;
@@ -3845,14 +4341,6 @@ declare const PlantSchema: z.ZodObject<{
3845
4341
  electricalUsageStoppedThresholdKw?: number | null | undefined;
3846
4342
  lineSpeedStoppedThreshold?: number | null | undefined;
3847
4343
  productiveHoldOnTime?: number | null | undefined;
3848
- allowInterruptionMode?: boolean | null | undefined;
3849
- allowManualProduction?: boolean | null | undefined;
3850
- allowQuickScheduleStart?: boolean | null | undefined;
3851
- allowScheduleCutShort?: boolean | null | undefined;
3852
- allowRejectProduction?: boolean | null | undefined;
3853
- allowEditPartsPerCycle?: boolean | null | undefined;
3854
- schedulingOnly?: boolean | null | undefined;
3855
- meterOnly?: boolean | null | undefined;
3856
4344
  currentOperatorInitials?: string | null | undefined;
3857
4345
  statusCode?: string | null | undefined;
3858
4346
  statusCodeUpdatedAt?: string | null | undefined;
@@ -3864,15 +4352,24 @@ declare const PlantSchema: z.ZodObject<{
3864
4352
  updatedAt?: string | null | undefined;
3865
4353
  shiftPatternCode?: string | null | undefined;
3866
4354
  includeTaskCodes?: string[] | null | undefined;
4355
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4356
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4357
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4358
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4359
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4360
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4361
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4362
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4363
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4364
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4365
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3867
4366
  excludeTaskCodes?: string[] | null | undefined;
3868
4367
  includeReasonCodes?: string[] | null | undefined;
3869
4368
  excludeReasonCodes?: string[] | null | undefined;
3870
4369
  totalEnergyStationCodes?: string[] | null | undefined;
3871
- allowQuickScheduleStart?: boolean | null | undefined;
3872
4370
  }, {
3873
4371
  code: string;
3874
4372
  name: string;
3875
- allowScheduleStationFlexibility: boolean;
3876
4373
  stations: {
3877
4374
  code: string;
3878
4375
  name: string;
@@ -3886,6 +4383,17 @@ declare const PlantSchema: z.ZodObject<{
3886
4383
  minimumCycleTime?: number | null | undefined;
3887
4384
  includeTaskCodes?: string[] | null | undefined;
3888
4385
  description?: string | null | undefined;
4386
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4387
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4388
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4389
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4390
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4391
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4392
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4393
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4394
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4395
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4396
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3889
4397
  excludeTaskCodes?: string[] | null | undefined;
3890
4398
  includeReasonCodes?: string[] | null | undefined;
3891
4399
  excludeReasonCodes?: string[] | null | undefined;
@@ -3902,14 +4410,6 @@ declare const PlantSchema: z.ZodObject<{
3902
4410
  electricalUsageStoppedThresholdKw?: number | null | undefined;
3903
4411
  lineSpeedStoppedThreshold?: number | null | undefined;
3904
4412
  productiveHoldOnTime?: number | null | undefined;
3905
- allowInterruptionMode?: boolean | null | undefined;
3906
- allowManualProduction?: boolean | null | undefined;
3907
- allowQuickScheduleStart?: boolean | null | undefined;
3908
- allowScheduleCutShort?: boolean | null | undefined;
3909
- allowRejectProduction?: boolean | null | undefined;
3910
- allowEditPartsPerCycle?: boolean | null | undefined;
3911
- schedulingOnly?: boolean | null | undefined;
3912
- meterOnly?: boolean | null | undefined;
3913
4413
  currentOperatorInitials?: string | null | undefined;
3914
4414
  statusCode?: string | null | undefined;
3915
4415
  statusCodeUpdatedAt?: string | null | undefined;
@@ -3921,11 +4421,21 @@ declare const PlantSchema: z.ZodObject<{
3921
4421
  updatedAt?: string | null | undefined;
3922
4422
  shiftPatternCode?: string | null | undefined;
3923
4423
  includeTaskCodes?: string[] | null | undefined;
4424
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4425
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4426
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4427
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4428
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4429
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4430
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4431
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4432
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4433
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4434
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3924
4435
  excludeTaskCodes?: string[] | null | undefined;
3925
4436
  includeReasonCodes?: string[] | null | undefined;
3926
4437
  excludeReasonCodes?: string[] | null | undefined;
3927
4438
  totalEnergyStationCodes?: string[] | null | undefined;
3928
- allowQuickScheduleStart?: boolean | null | undefined;
3929
4439
  }>, "many">;
3930
4440
  createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3931
4441
  updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3939,7 +4449,6 @@ declare const PlantSchema: z.ZodObject<{
3939
4449
  stationGroups: {
3940
4450
  code: string;
3941
4451
  name: string;
3942
- allowScheduleStationFlexibility: boolean;
3943
4452
  stations: {
3944
4453
  code: string;
3945
4454
  name: string;
@@ -3953,6 +4462,17 @@ declare const PlantSchema: z.ZodObject<{
3953
4462
  minimumCycleTime?: number | null | undefined;
3954
4463
  includeTaskCodes?: string[] | null | undefined;
3955
4464
  description?: string | null | undefined;
4465
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4466
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4467
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4468
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4469
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4470
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4471
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4472
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4473
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4474
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4475
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3956
4476
  excludeTaskCodes?: string[] | null | undefined;
3957
4477
  includeReasonCodes?: string[] | null | undefined;
3958
4478
  excludeReasonCodes?: string[] | null | undefined;
@@ -3969,14 +4489,6 @@ declare const PlantSchema: z.ZodObject<{
3969
4489
  electricalUsageStoppedThresholdKw?: number | null | undefined;
3970
4490
  lineSpeedStoppedThreshold?: number | null | undefined;
3971
4491
  productiveHoldOnTime?: number | null | undefined;
3972
- allowInterruptionMode?: boolean | null | undefined;
3973
- allowManualProduction?: boolean | null | undefined;
3974
- allowQuickScheduleStart?: boolean | null | undefined;
3975
- allowScheduleCutShort?: boolean | null | undefined;
3976
- allowRejectProduction?: boolean | null | undefined;
3977
- allowEditPartsPerCycle?: boolean | null | undefined;
3978
- schedulingOnly?: boolean | null | undefined;
3979
- meterOnly?: boolean | null | undefined;
3980
4492
  currentOperatorInitials?: string | null | undefined;
3981
4493
  statusCode?: string | null | undefined;
3982
4494
  statusCodeUpdatedAt?: string | null | undefined;
@@ -3988,15 +4500,34 @@ declare const PlantSchema: z.ZodObject<{
3988
4500
  updatedAt?: string | null | undefined;
3989
4501
  shiftPatternCode?: string | null | undefined;
3990
4502
  includeTaskCodes?: string[] | null | undefined;
4503
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4504
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4505
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4506
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4507
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4508
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4509
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4510
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4511
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4512
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4513
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
3991
4514
  excludeTaskCodes?: string[] | null | undefined;
3992
4515
  includeReasonCodes?: string[] | null | undefined;
3993
4516
  excludeReasonCodes?: string[] | null | undefined;
3994
4517
  totalEnergyStationCodes?: string[] | null | undefined;
3995
- allowQuickScheduleStart?: boolean | null | undefined;
3996
4518
  }[];
3997
4519
  createdAt?: string | null | undefined;
3998
4520
  updatedAt?: string | null | undefined;
3999
4521
  includeTaskCodes?: string[] | null | undefined;
4522
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4523
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4524
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4525
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4526
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4527
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4528
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4529
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4530
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4000
4531
  excludeTaskCodes?: string[] | null | undefined;
4001
4532
  includeReasonCodes?: string[] | null | undefined;
4002
4533
  excludeReasonCodes?: string[] | null | undefined;
@@ -4010,7 +4541,6 @@ declare const PlantSchema: z.ZodObject<{
4010
4541
  stationGroups: {
4011
4542
  code: string;
4012
4543
  name: string;
4013
- allowScheduleStationFlexibility: boolean;
4014
4544
  stations: {
4015
4545
  code: string;
4016
4546
  name: string;
@@ -4024,6 +4554,17 @@ declare const PlantSchema: z.ZodObject<{
4024
4554
  minimumCycleTime?: number | null | undefined;
4025
4555
  includeTaskCodes?: string[] | null | undefined;
4026
4556
  description?: string | null | undefined;
4557
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4558
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4559
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4560
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4561
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4562
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4563
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4564
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4565
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4566
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4567
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4027
4568
  excludeTaskCodes?: string[] | null | undefined;
4028
4569
  includeReasonCodes?: string[] | null | undefined;
4029
4570
  excludeReasonCodes?: string[] | null | undefined;
@@ -4040,14 +4581,6 @@ declare const PlantSchema: z.ZodObject<{
4040
4581
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4041
4582
  lineSpeedStoppedThreshold?: number | null | undefined;
4042
4583
  productiveHoldOnTime?: number | null | undefined;
4043
- allowInterruptionMode?: boolean | null | undefined;
4044
- allowManualProduction?: boolean | null | undefined;
4045
- allowQuickScheduleStart?: boolean | null | undefined;
4046
- allowScheduleCutShort?: boolean | null | undefined;
4047
- allowRejectProduction?: boolean | null | undefined;
4048
- allowEditPartsPerCycle?: boolean | null | undefined;
4049
- schedulingOnly?: boolean | null | undefined;
4050
- meterOnly?: boolean | null | undefined;
4051
4584
  currentOperatorInitials?: string | null | undefined;
4052
4585
  statusCode?: string | null | undefined;
4053
4586
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4059,15 +4592,34 @@ declare const PlantSchema: z.ZodObject<{
4059
4592
  updatedAt?: string | null | undefined;
4060
4593
  shiftPatternCode?: string | null | undefined;
4061
4594
  includeTaskCodes?: string[] | null | undefined;
4595
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4596
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4597
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4598
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4599
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4600
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4601
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4602
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4603
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4604
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4605
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4062
4606
  excludeTaskCodes?: string[] | null | undefined;
4063
4607
  includeReasonCodes?: string[] | null | undefined;
4064
4608
  excludeReasonCodes?: string[] | null | undefined;
4065
4609
  totalEnergyStationCodes?: string[] | null | undefined;
4066
- allowQuickScheduleStart?: boolean | null | undefined;
4067
4610
  }[];
4068
4611
  createdAt?: string | null | undefined;
4069
4612
  updatedAt?: string | null | undefined;
4070
4613
  includeTaskCodes?: string[] | null | undefined;
4614
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4615
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4616
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4617
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4618
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4619
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4620
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4621
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4622
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4071
4623
  weekStartDay?: number | undefined;
4072
4624
  excludeTaskCodes?: string[] | null | undefined;
4073
4625
  includeReasonCodes?: string[] | null | undefined;
@@ -4083,11 +4635,20 @@ declare const PlantViewModel: z.ZodObject<{
4083
4635
  timezone: z.ZodString;
4084
4636
  now: z.ZodString;
4085
4637
  stationGroups: z.ZodArray<z.ZodObject<{
4638
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4639
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4640
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4641
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4642
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4643
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4644
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4645
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4646
+ enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4647
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4648
+ enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4086
4649
  code: z.ZodString;
4087
4650
  name: z.ZodString;
4088
- allowScheduleStationFlexibility: z.ZodBoolean;
4089
4651
  shiftPatternCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4090
- allowQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4091
4652
  includeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
4092
4653
  excludeReasonCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
4093
4654
  includeTaskCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
@@ -4097,6 +4658,17 @@ declare const PlantViewModel: z.ZodObject<{
4097
4658
  updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4098
4659
  } & {
4099
4660
  stations: z.ZodArray<z.ZodObject<{
4661
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4662
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4663
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4664
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4665
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4666
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4667
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4668
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4669
+ enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4670
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4671
+ enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4100
4672
  code: z.ZodString;
4101
4673
  name: z.ZodString;
4102
4674
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4115,14 +4687,6 @@ declare const PlantViewModel: z.ZodObject<{
4115
4687
  electricalUsageStoppedThresholdKw: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4116
4688
  lineSpeedStoppedThreshold: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4117
4689
  productiveHoldOnTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4118
- allowInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4119
- allowManualProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4120
- allowQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4121
- allowScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4122
- allowRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4123
- allowEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4124
- schedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4125
- meterOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4126
4690
  currentOperatorInitials: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4127
4691
  statusCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4128
4692
  statusCodeUpdatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4152,6 +4716,17 @@ declare const PlantViewModel: z.ZodObject<{
4152
4716
  minimumCycleTime?: number | null | undefined;
4153
4717
  includeTaskCodes?: string[] | null | undefined;
4154
4718
  description?: string | null | undefined;
4719
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4720
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4721
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4722
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4723
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4724
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4725
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4726
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4727
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4728
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4729
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4155
4730
  excludeTaskCodes?: string[] | null | undefined;
4156
4731
  includeReasonCodes?: string[] | null | undefined;
4157
4732
  excludeReasonCodes?: string[] | null | undefined;
@@ -4168,14 +4743,6 @@ declare const PlantViewModel: z.ZodObject<{
4168
4743
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4169
4744
  lineSpeedStoppedThreshold?: number | null | undefined;
4170
4745
  productiveHoldOnTime?: number | null | undefined;
4171
- allowInterruptionMode?: boolean | null | undefined;
4172
- allowManualProduction?: boolean | null | undefined;
4173
- allowQuickScheduleStart?: boolean | null | undefined;
4174
- allowScheduleCutShort?: boolean | null | undefined;
4175
- allowRejectProduction?: boolean | null | undefined;
4176
- allowEditPartsPerCycle?: boolean | null | undefined;
4177
- schedulingOnly?: boolean | null | undefined;
4178
- meterOnly?: boolean | null | undefined;
4179
4746
  currentOperatorInitials?: string | null | undefined;
4180
4747
  statusCode?: string | null | undefined;
4181
4748
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4195,6 +4762,17 @@ declare const PlantViewModel: z.ZodObject<{
4195
4762
  minimumCycleTime?: number | null | undefined;
4196
4763
  includeTaskCodes?: string[] | null | undefined;
4197
4764
  description?: string | null | undefined;
4765
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4766
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4767
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4768
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4769
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4770
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4771
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4772
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4773
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4774
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4775
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4198
4776
  excludeTaskCodes?: string[] | null | undefined;
4199
4777
  includeReasonCodes?: string[] | null | undefined;
4200
4778
  excludeReasonCodes?: string[] | null | undefined;
@@ -4211,14 +4789,6 @@ declare const PlantViewModel: z.ZodObject<{
4211
4789
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4212
4790
  lineSpeedStoppedThreshold?: number | null | undefined;
4213
4791
  productiveHoldOnTime?: number | null | undefined;
4214
- allowInterruptionMode?: boolean | null | undefined;
4215
- allowManualProduction?: boolean | null | undefined;
4216
- allowQuickScheduleStart?: boolean | null | undefined;
4217
- allowScheduleCutShort?: boolean | null | undefined;
4218
- allowRejectProduction?: boolean | null | undefined;
4219
- allowEditPartsPerCycle?: boolean | null | undefined;
4220
- schedulingOnly?: boolean | null | undefined;
4221
- meterOnly?: boolean | null | undefined;
4222
4792
  currentOperatorInitials?: string | null | undefined;
4223
4793
  statusCode?: string | null | undefined;
4224
4794
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4229,7 +4799,6 @@ declare const PlantViewModel: z.ZodObject<{
4229
4799
  }, "strict", z.ZodTypeAny, {
4230
4800
  code: string;
4231
4801
  name: string;
4232
- allowScheduleStationFlexibility: boolean;
4233
4802
  stations: {
4234
4803
  code: string;
4235
4804
  name: string;
@@ -4243,6 +4812,17 @@ declare const PlantViewModel: z.ZodObject<{
4243
4812
  minimumCycleTime?: number | null | undefined;
4244
4813
  includeTaskCodes?: string[] | null | undefined;
4245
4814
  description?: string | null | undefined;
4815
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4816
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4817
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4818
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4819
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4820
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4821
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4822
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4823
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4824
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4825
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4246
4826
  excludeTaskCodes?: string[] | null | undefined;
4247
4827
  includeReasonCodes?: string[] | null | undefined;
4248
4828
  excludeReasonCodes?: string[] | null | undefined;
@@ -4259,14 +4839,6 @@ declare const PlantViewModel: z.ZodObject<{
4259
4839
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4260
4840
  lineSpeedStoppedThreshold?: number | null | undefined;
4261
4841
  productiveHoldOnTime?: number | null | undefined;
4262
- allowInterruptionMode?: boolean | null | undefined;
4263
- allowManualProduction?: boolean | null | undefined;
4264
- allowQuickScheduleStart?: boolean | null | undefined;
4265
- allowScheduleCutShort?: boolean | null | undefined;
4266
- allowRejectProduction?: boolean | null | undefined;
4267
- allowEditPartsPerCycle?: boolean | null | undefined;
4268
- schedulingOnly?: boolean | null | undefined;
4269
- meterOnly?: boolean | null | undefined;
4270
4842
  currentOperatorInitials?: string | null | undefined;
4271
4843
  statusCode?: string | null | undefined;
4272
4844
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4278,15 +4850,24 @@ declare const PlantViewModel: z.ZodObject<{
4278
4850
  updatedAt?: string | null | undefined;
4279
4851
  shiftPatternCode?: string | null | undefined;
4280
4852
  includeTaskCodes?: string[] | null | undefined;
4853
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4854
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4855
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4856
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4857
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4858
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4859
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4860
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4861
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4862
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4863
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4281
4864
  excludeTaskCodes?: string[] | null | undefined;
4282
4865
  includeReasonCodes?: string[] | null | undefined;
4283
4866
  excludeReasonCodes?: string[] | null | undefined;
4284
4867
  totalEnergyStationCodes?: string[] | null | undefined;
4285
- allowQuickScheduleStart?: boolean | null | undefined;
4286
4868
  }, {
4287
4869
  code: string;
4288
4870
  name: string;
4289
- allowScheduleStationFlexibility: boolean;
4290
4871
  stations: {
4291
4872
  code: string;
4292
4873
  name: string;
@@ -4300,6 +4881,17 @@ declare const PlantViewModel: z.ZodObject<{
4300
4881
  minimumCycleTime?: number | null | undefined;
4301
4882
  includeTaskCodes?: string[] | null | undefined;
4302
4883
  description?: string | null | undefined;
4884
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4885
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4886
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4887
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4888
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4889
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4890
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4891
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4892
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4893
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4894
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4303
4895
  excludeTaskCodes?: string[] | null | undefined;
4304
4896
  includeReasonCodes?: string[] | null | undefined;
4305
4897
  excludeReasonCodes?: string[] | null | undefined;
@@ -4316,14 +4908,6 @@ declare const PlantViewModel: z.ZodObject<{
4316
4908
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4317
4909
  lineSpeedStoppedThreshold?: number | null | undefined;
4318
4910
  productiveHoldOnTime?: number | null | undefined;
4319
- allowInterruptionMode?: boolean | null | undefined;
4320
- allowManualProduction?: boolean | null | undefined;
4321
- allowQuickScheduleStart?: boolean | null | undefined;
4322
- allowScheduleCutShort?: boolean | null | undefined;
4323
- allowRejectProduction?: boolean | null | undefined;
4324
- allowEditPartsPerCycle?: boolean | null | undefined;
4325
- schedulingOnly?: boolean | null | undefined;
4326
- meterOnly?: boolean | null | undefined;
4327
4911
  currentOperatorInitials?: string | null | undefined;
4328
4912
  statusCode?: string | null | undefined;
4329
4913
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4335,11 +4919,21 @@ declare const PlantViewModel: z.ZodObject<{
4335
4919
  updatedAt?: string | null | undefined;
4336
4920
  shiftPatternCode?: string | null | undefined;
4337
4921
  includeTaskCodes?: string[] | null | undefined;
4922
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4923
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4924
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4925
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4926
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4927
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4928
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4929
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4930
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4931
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4932
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4338
4933
  excludeTaskCodes?: string[] | null | undefined;
4339
4934
  includeReasonCodes?: string[] | null | undefined;
4340
4935
  excludeReasonCodes?: string[] | null | undefined;
4341
4936
  totalEnergyStationCodes?: string[] | null | undefined;
4342
- allowQuickScheduleStart?: boolean | null | undefined;
4343
4937
  }>, "many">;
4344
4938
  dayStartHour: z.ZodNumber;
4345
4939
  weekStartDay: z.ZodNumber;
@@ -4354,7 +4948,6 @@ declare const PlantViewModel: z.ZodObject<{
4354
4948
  stationGroups: {
4355
4949
  code: string;
4356
4950
  name: string;
4357
- allowScheduleStationFlexibility: boolean;
4358
4951
  stations: {
4359
4952
  code: string;
4360
4953
  name: string;
@@ -4368,6 +4961,17 @@ declare const PlantViewModel: z.ZodObject<{
4368
4961
  minimumCycleTime?: number | null | undefined;
4369
4962
  includeTaskCodes?: string[] | null | undefined;
4370
4963
  description?: string | null | undefined;
4964
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
4965
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
4966
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
4967
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
4968
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
4969
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
4970
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
4971
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
4972
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
4973
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
4974
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4371
4975
  excludeTaskCodes?: string[] | null | undefined;
4372
4976
  includeReasonCodes?: string[] | null | undefined;
4373
4977
  excludeReasonCodes?: string[] | null | undefined;
@@ -4384,14 +4988,6 @@ declare const PlantViewModel: z.ZodObject<{
4384
4988
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4385
4989
  lineSpeedStoppedThreshold?: number | null | undefined;
4386
4990
  productiveHoldOnTime?: number | null | undefined;
4387
- allowInterruptionMode?: boolean | null | undefined;
4388
- allowManualProduction?: boolean | null | undefined;
4389
- allowQuickScheduleStart?: boolean | null | undefined;
4390
- allowScheduleCutShort?: boolean | null | undefined;
4391
- allowRejectProduction?: boolean | null | undefined;
4392
- allowEditPartsPerCycle?: boolean | null | undefined;
4393
- schedulingOnly?: boolean | null | undefined;
4394
- meterOnly?: boolean | null | undefined;
4395
4991
  currentOperatorInitials?: string | null | undefined;
4396
4992
  statusCode?: string | null | undefined;
4397
4993
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4403,11 +4999,21 @@ declare const PlantViewModel: z.ZodObject<{
4403
4999
  updatedAt?: string | null | undefined;
4404
5000
  shiftPatternCode?: string | null | undefined;
4405
5001
  includeTaskCodes?: string[] | null | undefined;
5002
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
5003
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
5004
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
5005
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
5006
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
5007
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
5008
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
5009
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
5010
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
5011
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
5012
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4406
5013
  excludeTaskCodes?: string[] | null | undefined;
4407
5014
  includeReasonCodes?: string[] | null | undefined;
4408
5015
  excludeReasonCodes?: string[] | null | undefined;
4409
5016
  totalEnergyStationCodes?: string[] | null | undefined;
4410
- allowQuickScheduleStart?: boolean | null | undefined;
4411
5017
  }[];
4412
5018
  totalEnergyStationCodes?: string[] | null | undefined;
4413
5019
  }, {
@@ -4420,7 +5026,6 @@ declare const PlantViewModel: z.ZodObject<{
4420
5026
  stationGroups: {
4421
5027
  code: string;
4422
5028
  name: string;
4423
- allowScheduleStationFlexibility: boolean;
4424
5029
  stations: {
4425
5030
  code: string;
4426
5031
  name: string;
@@ -4434,6 +5039,17 @@ declare const PlantViewModel: z.ZodObject<{
4434
5039
  minimumCycleTime?: number | null | undefined;
4435
5040
  includeTaskCodes?: string[] | null | undefined;
4436
5041
  description?: string | null | undefined;
5042
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
5043
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
5044
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
5045
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
5046
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
5047
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
5048
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
5049
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
5050
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
5051
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
5052
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4437
5053
  excludeTaskCodes?: string[] | null | undefined;
4438
5054
  includeReasonCodes?: string[] | null | undefined;
4439
5055
  excludeReasonCodes?: string[] | null | undefined;
@@ -4450,14 +5066,6 @@ declare const PlantViewModel: z.ZodObject<{
4450
5066
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4451
5067
  lineSpeedStoppedThreshold?: number | null | undefined;
4452
5068
  productiveHoldOnTime?: number | null | undefined;
4453
- allowInterruptionMode?: boolean | null | undefined;
4454
- allowManualProduction?: boolean | null | undefined;
4455
- allowQuickScheduleStart?: boolean | null | undefined;
4456
- allowScheduleCutShort?: boolean | null | undefined;
4457
- allowRejectProduction?: boolean | null | undefined;
4458
- allowEditPartsPerCycle?: boolean | null | undefined;
4459
- schedulingOnly?: boolean | null | undefined;
4460
- meterOnly?: boolean | null | undefined;
4461
5069
  currentOperatorInitials?: string | null | undefined;
4462
5070
  statusCode?: string | null | undefined;
4463
5071
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4469,11 +5077,21 @@ declare const PlantViewModel: z.ZodObject<{
4469
5077
  updatedAt?: string | null | undefined;
4470
5078
  shiftPatternCode?: string | null | undefined;
4471
5079
  includeTaskCodes?: string[] | null | undefined;
5080
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
5081
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
5082
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
5083
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
5084
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
5085
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
5086
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
5087
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
5088
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
5089
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
5090
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4472
5091
  excludeTaskCodes?: string[] | null | undefined;
4473
5092
  includeReasonCodes?: string[] | null | undefined;
4474
5093
  excludeReasonCodes?: string[] | null | undefined;
4475
5094
  totalEnergyStationCodes?: string[] | null | undefined;
4476
- allowQuickScheduleStart?: boolean | null | undefined;
4477
5095
  }[];
4478
5096
  totalEnergyStationCodes?: string[] | null | undefined;
4479
5097
  }>;
@@ -4540,7 +5158,6 @@ declare const ScheduleViewModel: z.ZodObject<Omit<{
4540
5158
  quantityBad: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4541
5159
  quantityTotal: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4542
5160
  downtimeDurationThresholdMultiplier: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4543
- allowScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4544
5161
  logs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
4545
5162
  isStarted: z.ZodBoolean;
4546
5163
  isEnded: z.ZodBoolean;
@@ -4565,7 +5182,6 @@ declare const ScheduleViewModel: z.ZodObject<Omit<{
4565
5182
  deletedAt?: string | null | undefined;
4566
5183
  stationName?: string | null | undefined;
4567
5184
  stationGroupCode?: string | null | undefined;
4568
- allowScheduleCutShort?: boolean | null | undefined;
4569
5185
  plannedStartAt?: string | null | undefined;
4570
5186
  plannedEndAt?: string | null | undefined;
4571
5187
  plannedQuantity?: number | null | undefined;
@@ -4583,7 +5199,7 @@ declare const ScheduleViewModel: z.ZodObject<Omit<{
4583
5199
  effectiveCycleTime?: number | null | undefined;
4584
5200
  quantityGood?: number | null | undefined;
4585
5201
  quantityBad?: number | null | undefined;
4586
- performanceModeFrom?: "none" | "schedule" | "station" | "sku" | undefined;
5202
+ performanceModeFrom?: "none" | "station" | "schedule" | "sku" | undefined;
4587
5203
  skuValue?: number | null | undefined;
4588
5204
  stationGroupName?: string | null | undefined;
4589
5205
  nonProductionReasonDescription?: string | null | undefined;
@@ -4625,7 +5241,6 @@ declare const ScheduleViewModel: z.ZodObject<Omit<{
4625
5241
  deletedAt?: string | null | undefined;
4626
5242
  stationName?: string | null | undefined;
4627
5243
  stationGroupCode?: string | null | undefined;
4628
- allowScheduleCutShort?: boolean | null | undefined;
4629
5244
  plannedStartAt?: string | null | undefined;
4630
5245
  plannedEndAt?: string | null | undefined;
4631
5246
  plannedQuantity?: number | null | undefined;
@@ -4643,7 +5258,7 @@ declare const ScheduleViewModel: z.ZodObject<Omit<{
4643
5258
  effectiveCycleTime?: number | null | undefined;
4644
5259
  quantityGood?: number | null | undefined;
4645
5260
  quantityBad?: number | null | undefined;
4646
- performanceModeFrom?: "none" | "schedule" | "station" | "sku" | undefined;
5261
+ performanceModeFrom?: "none" | "station" | "schedule" | "sku" | undefined;
4647
5262
  skuValue?: number | null | undefined;
4648
5263
  stationGroupName?: string | null | undefined;
4649
5264
  nonProductionReasonDescription?: string | null | undefined;
@@ -4761,6 +5376,17 @@ declare const SkuViewModel: z.ZodObject<{
4761
5376
  type SkuViewModel = z.infer<typeof SkuViewModel>;
4762
5377
 
4763
5378
  declare const StationSchema: z.ZodObject<{
5379
+ enableProductionCorrection: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5380
+ enableManualProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5381
+ enableInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5382
+ enableQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5383
+ enableScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5384
+ enableRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5385
+ enableEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5386
+ enableScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5387
+ enableSchedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5388
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
5389
+ enableMeterOnly: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4764
5390
  code: z.ZodString;
4765
5391
  name: z.ZodString;
4766
5392
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4779,14 +5405,6 @@ declare const StationSchema: z.ZodObject<{
4779
5405
  electricalUsageStoppedThresholdKw: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4780
5406
  lineSpeedStoppedThreshold: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4781
5407
  productiveHoldOnTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4782
- allowInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4783
- allowManualProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4784
- allowQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4785
- allowScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4786
- allowRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4787
- allowEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4788
- schedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4789
- meterOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4790
5408
  currentOperatorInitials: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4791
5409
  statusCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4792
5410
  statusCodeUpdatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4821,6 +5439,17 @@ declare const StationSchema: z.ZodObject<{
4821
5439
  minimumCycleTime?: number | null | undefined;
4822
5440
  includeTaskCodes?: string[] | null | undefined;
4823
5441
  description?: string | null | undefined;
5442
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
5443
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
5444
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
5445
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
5446
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
5447
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
5448
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
5449
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
5450
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
5451
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
5452
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4824
5453
  excludeTaskCodes?: string[] | null | undefined;
4825
5454
  includeReasonCodes?: string[] | null | undefined;
4826
5455
  excludeReasonCodes?: string[] | null | undefined;
@@ -4837,14 +5466,6 @@ declare const StationSchema: z.ZodObject<{
4837
5466
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4838
5467
  lineSpeedStoppedThreshold?: number | null | undefined;
4839
5468
  productiveHoldOnTime?: number | null | undefined;
4840
- allowInterruptionMode?: boolean | null | undefined;
4841
- allowManualProduction?: boolean | null | undefined;
4842
- allowQuickScheduleStart?: boolean | null | undefined;
4843
- allowScheduleCutShort?: boolean | null | undefined;
4844
- allowRejectProduction?: boolean | null | undefined;
4845
- allowEditPartsPerCycle?: boolean | null | undefined;
4846
- schedulingOnly?: boolean | null | undefined;
4847
- meterOnly?: boolean | null | undefined;
4848
5469
  currentOperatorInitials?: string | null | undefined;
4849
5470
  statusCode?: string | null | undefined;
4850
5471
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4866,6 +5487,17 @@ declare const StationSchema: z.ZodObject<{
4866
5487
  minimumCycleTime?: number | null | undefined;
4867
5488
  includeTaskCodes?: string[] | null | undefined;
4868
5489
  description?: string | null | undefined;
5490
+ enableProductionCorrection?: "off" | "on" | "inherit" | null | undefined;
5491
+ enableManualProduction?: "off" | "on" | "inherit" | null | undefined;
5492
+ enableInterruptionMode?: "off" | "on" | "inherit" | null | undefined;
5493
+ enableQuickScheduleStart?: "off" | "on" | "inherit" | null | undefined;
5494
+ enableScheduleCutShort?: "off" | "on" | "inherit" | null | undefined;
5495
+ enableRejectProduction?: "off" | "on" | "inherit" | null | undefined;
5496
+ enableEditPartsPerCycle?: "off" | "on" | "inherit" | null | undefined;
5497
+ enableScheduleStationFlexibility?: "off" | "on" | "inherit" | null | undefined;
5498
+ enableSchedulingOnly?: "off" | "on" | "inherit" | null | undefined;
5499
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
5500
+ enableMeterOnly?: "off" | "on" | "inherit" | null | undefined;
4869
5501
  excludeTaskCodes?: string[] | null | undefined;
4870
5502
  includeReasonCodes?: string[] | null | undefined;
4871
5503
  excludeReasonCodes?: string[] | null | undefined;
@@ -4882,14 +5514,6 @@ declare const StationSchema: z.ZodObject<{
4882
5514
  electricalUsageStoppedThresholdKw?: number | null | undefined;
4883
5515
  lineSpeedStoppedThreshold?: number | null | undefined;
4884
5516
  productiveHoldOnTime?: number | null | undefined;
4885
- allowInterruptionMode?: boolean | null | undefined;
4886
- allowManualProduction?: boolean | null | undefined;
4887
- allowQuickScheduleStart?: boolean | null | undefined;
4888
- allowScheduleCutShort?: boolean | null | undefined;
4889
- allowRejectProduction?: boolean | null | undefined;
4890
- allowEditPartsPerCycle?: boolean | null | undefined;
4891
- schedulingOnly?: boolean | null | undefined;
4892
- meterOnly?: boolean | null | undefined;
4893
5517
  currentOperatorInitials?: string | null | undefined;
4894
5518
  statusCode?: string | null | undefined;
4895
5519
  statusCodeUpdatedAt?: string | null | undefined;
@@ -4910,6 +5534,7 @@ declare const StationViewModel: z.ZodObject<{
4910
5534
  lineSpeedTarget: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4911
5535
  minimumCycleTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4912
5536
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5537
+ enableManualDowntime: z.ZodOptional<z.ZodNullable<z.ZodEnum<["on", "off", "inherit"]>>>;
4913
5538
  speedScale: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4914
5539
  speedOffset: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4915
5540
  speedToProductionRatio: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -4922,14 +5547,6 @@ declare const StationViewModel: z.ZodObject<{
4922
5547
  electricalUsageStoppedThresholdKw: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4923
5548
  lineSpeedStoppedThreshold: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4924
5549
  productiveHoldOnTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4925
- allowInterruptionMode: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4926
- allowManualProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4927
- allowQuickScheduleStart: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4928
- allowScheduleCutShort: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4929
- allowRejectProduction: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4930
- allowEditPartsPerCycle: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4931
- schedulingOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4932
- meterOnly: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
4933
5550
  currentOperatorInitials: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4934
5551
  statusCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4935
5552
  statusCodeUpdatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4939,7 +5556,6 @@ declare const StationViewModel: z.ZodObject<{
4939
5556
  } & {
4940
5557
  utilisationDowntimeThreshold: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4941
5558
  groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4942
- allowScheduleStationFlexibility: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4943
5559
  plantCode: z.ZodString;
4944
5560
  dayStartHour: z.ZodNumber;
4945
5561
  timezone: z.ZodString;
@@ -5051,7 +5667,6 @@ declare const StationViewModel: z.ZodObject<{
5051
5667
  currentStopReasonCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5052
5668
  stoppedSince: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5053
5669
  cachedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5054
- allowQuickScheduleStartGroup: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5055
5670
  lastStationWindow: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5056
5671
  accountId: z.ZodString;
5057
5672
  createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5349,6 +5964,7 @@ declare const StationViewModel: z.ZodObject<{
5349
5964
  lineSpeedTarget?: number | null | undefined;
5350
5965
  minimumCycleTime?: number | null | undefined;
5351
5966
  description?: string | null | undefined;
5967
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
5352
5968
  speedScale?: number | null | undefined;
5353
5969
  speedOffset?: number | null | undefined;
5354
5970
  speedToProductionRatio?: number | null | undefined;
@@ -5362,20 +5978,11 @@ declare const StationViewModel: z.ZodObject<{
5362
5978
  electricalUsageStoppedThresholdKw?: number | null | undefined;
5363
5979
  lineSpeedStoppedThreshold?: number | null | undefined;
5364
5980
  productiveHoldOnTime?: number | null | undefined;
5365
- allowInterruptionMode?: boolean | null | undefined;
5366
- allowManualProduction?: boolean | null | undefined;
5367
- allowQuickScheduleStart?: boolean | null | undefined;
5368
- allowScheduleCutShort?: boolean | null | undefined;
5369
- allowRejectProduction?: boolean | null | undefined;
5370
- allowEditPartsPerCycle?: boolean | null | undefined;
5371
- schedulingOnly?: boolean | null | undefined;
5372
- meterOnly?: boolean | null | undefined;
5373
5981
  currentOperatorInitials?: string | null | undefined;
5374
5982
  statusCode?: string | null | undefined;
5375
5983
  statusCodeUpdatedAt?: string | null | undefined;
5376
5984
  alertMessage?: string | null | undefined;
5377
5985
  alertExpiresAt?: string | null | undefined;
5378
- allowScheduleStationFlexibility?: boolean | null | undefined;
5379
5986
  groupName?: string | null | undefined;
5380
5987
  shiftPattern?: {
5381
5988
  code: string;
@@ -5403,7 +6010,6 @@ declare const StationViewModel: z.ZodObject<{
5403
6010
  currentStopReasonCode?: string | null | undefined;
5404
6011
  stoppedSince?: number | null | undefined;
5405
6012
  cachedAt?: number | null | undefined;
5406
- allowQuickScheduleStartGroup?: boolean | null | undefined;
5407
6013
  lastStationWindow?: {
5408
6014
  accountId: string;
5409
6015
  stationCode: string;
@@ -5515,6 +6121,7 @@ declare const StationViewModel: z.ZodObject<{
5515
6121
  lineSpeedTarget?: number | null | undefined;
5516
6122
  minimumCycleTime?: number | null | undefined;
5517
6123
  description?: string | null | undefined;
6124
+ enableManualDowntime?: "off" | "on" | "inherit" | null | undefined;
5518
6125
  speedScale?: number | null | undefined;
5519
6126
  speedOffset?: number | null | undefined;
5520
6127
  speedToProductionRatio?: number | null | undefined;
@@ -5528,20 +6135,11 @@ declare const StationViewModel: z.ZodObject<{
5528
6135
  electricalUsageStoppedThresholdKw?: number | null | undefined;
5529
6136
  lineSpeedStoppedThreshold?: number | null | undefined;
5530
6137
  productiveHoldOnTime?: number | null | undefined;
5531
- allowInterruptionMode?: boolean | null | undefined;
5532
- allowManualProduction?: boolean | null | undefined;
5533
- allowQuickScheduleStart?: boolean | null | undefined;
5534
- allowScheduleCutShort?: boolean | null | undefined;
5535
- allowRejectProduction?: boolean | null | undefined;
5536
- allowEditPartsPerCycle?: boolean | null | undefined;
5537
- schedulingOnly?: boolean | null | undefined;
5538
- meterOnly?: boolean | null | undefined;
5539
6138
  currentOperatorInitials?: string | null | undefined;
5540
6139
  statusCode?: string | null | undefined;
5541
6140
  statusCodeUpdatedAt?: string | null | undefined;
5542
6141
  alertMessage?: string | null | undefined;
5543
6142
  alertExpiresAt?: string | null | undefined;
5544
- allowScheduleStationFlexibility?: boolean | null | undefined;
5545
6143
  groupName?: string | null | undefined;
5546
6144
  shiftPattern?: {
5547
6145
  code: string;
@@ -5569,7 +6167,6 @@ declare const StationViewModel: z.ZodObject<{
5569
6167
  currentStopReasonCode?: string | null | undefined;
5570
6168
  stoppedSince?: number | null | undefined;
5571
6169
  cachedAt?: number | null | undefined;
5572
- allowQuickScheduleStartGroup?: boolean | null | undefined;
5573
6170
  lastStationWindow?: {
5574
6171
  accountId: string;
5575
6172
  stationCode: string;