@sedni/cloud_common 3.0.0 → 3.0.2

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.
@@ -0,0 +1,797 @@
1
+ declare const MimicElementTypes: {
2
+ readonly IMAGE: "Image";
3
+ readonly LINE: "Line";
4
+ readonly SQUARE: "Square";
5
+ readonly LINK: "Link";
6
+ readonly POLYLINE: "Polyline";
7
+ readonly TEXT: "Text";
8
+ readonly ALARM_INDICATOR: "AlarmIndicator";
9
+ readonly BREAKER: "Breaker";
10
+ readonly COMMAND: "Command";
11
+ readonly COMPRESSOR: "Compressor";
12
+ readonly DAMPER: "Damper";
13
+ readonly DIAL: "Dial";
14
+ readonly DIGITAL: "Digital";
15
+ readonly DISPLAY: "Display";
16
+ readonly FAN: "Fan";
17
+ readonly GENERATOR: "Generator";
18
+ readonly LEVEL_BAR: "LevelBar";
19
+ readonly PUMP: "Pump";
20
+ readonly SHAFT: "Shaft";
21
+ readonly TEXT_CHANNEL: "TextChannel";
22
+ readonly DYNAMIC_TEXT: "DynamicText";
23
+ readonly TANK: "Tank";
24
+ readonly VALVE: "Valve";
25
+ readonly SLIDER: "Slider";
26
+ readonly TOGGLE: "Toggle";
27
+ readonly UNIT: "Unit";
28
+ readonly REPEATER: "Repeater";
29
+ readonly STATION: "Station";
30
+ readonly CABINET: "Cabinet";
31
+ readonly BREAKER_PMS: "BreakerPms";
32
+ readonly GENERATOR_PMS: "GeneratorPms";
33
+ readonly OPERATION_MODES_PMS: "OperationModesPms";
34
+ readonly PMS_PRIORITIES: "PmsPriorities";
35
+ readonly VALVE_AUTOMATED: "ValveAutomated";
36
+ readonly DAMPER_AUTOMATED: "DamperAutomated";
37
+ readonly PUMP_AUTOMATED: "PumpAutomated";
38
+ };
39
+ type MimicElementType = (typeof MimicElementTypes)[keyof typeof MimicElementTypes];
40
+ declare const ZDepths: {
41
+ readonly BACKGROUND: "Background";
42
+ readonly LOW: "Low";
43
+ readonly NORMAL: "Normal";
44
+ readonly HIGH: "High";
45
+ };
46
+ type ZDepth = (typeof ZDepths)[keyof typeof ZDepths];
47
+ declare const TitleAligns: {
48
+ readonly BOTTOM: "Bottom";
49
+ readonly LEFT: "Left";
50
+ readonly RIGHT: "Right";
51
+ readonly TOP: "Top";
52
+ };
53
+ type TitleAlign = (typeof TitleAligns)[keyof typeof TitleAligns];
54
+ declare const DigitalStates: {
55
+ readonly NO_VALUE: "NoValue";
56
+ readonly OPEN: "Open";
57
+ readonly CLOSE: "Close";
58
+ readonly UNDEFINED: "Undefined";
59
+ };
60
+ type DigitalState = (typeof DigitalStates)[keyof typeof DigitalStates];
61
+ declare const DigitalAlarmStates: {
62
+ readonly NO_ALARM: "NoAlarm";
63
+ readonly ALARM: "Alarm";
64
+ readonly UNDEFINED: "Undefined";
65
+ };
66
+ type DigitalAlarmState = (typeof DigitalAlarmStates)[keyof typeof DigitalAlarmStates];
67
+ declare const AlarmStates: {
68
+ readonly ALARM: 1;
69
+ readonly WARNING: 2;
70
+ readonly UNACKNOWLEDGED_ALARM: 3;
71
+ readonly UNACKNOWLEDGED_WARNING: 4;
72
+ readonly ACKNOWLEDGED_ALARM: 5;
73
+ readonly ACKNOWLEDGED_WARNING: 6;
74
+ readonly INHIBITED: 7;
75
+ readonly OFF_SCAN: 8;
76
+ readonly NORMAL: 9;
77
+ readonly OFFLINE: 10;
78
+ };
79
+ type AlarmState = (typeof AlarmStates)[keyof typeof AlarmStates];
80
+ declare const MimicAlarmStates: {
81
+ ALARM: string;
82
+ WARNING: string;
83
+ UNACKNOWLEDGED_ALARM: string;
84
+ UNACKNOWLEDGED_WARNING: string;
85
+ ACKNOWLEDGED_ALARM: string;
86
+ ACKNOWLEDGED_WARNING: string;
87
+ INHIBITED: string;
88
+ OFF_SCAN: string;
89
+ NORMAL: string;
90
+ OFFLINE: string;
91
+ };
92
+ type MimicAlarmState = (typeof MimicAlarmStates)[keyof typeof MimicAlarmStates];
93
+ declare const MimicControlStates: {
94
+ NO_VALUE: string;
95
+ LOCAL: string;
96
+ AUTOMATIC: string;
97
+ SEMI_AUTOMATIC: string;
98
+ UNDEFINED: string;
99
+ };
100
+ type MimicControlState = (typeof MimicControlStates)[keyof typeof MimicControlStates];
101
+ declare const ActivationModes: {
102
+ readonly ALARM: "Alarm";
103
+ readonly LOGIC: "Logic";
104
+ readonly VALUE: "Value";
105
+ };
106
+ type ActivationMode = (typeof ActivationModes)[keyof typeof ActivationModes];
107
+ declare const TextAnchorPoints: {
108
+ readonly LEFT: "Left";
109
+ readonly CENTER: "Center";
110
+ readonly RIGHT: "Right";
111
+ };
112
+ type TextAnchorPoint = (typeof TextAnchorPoints)[keyof typeof TextAnchorPoints];
113
+ declare const ValveDesigns: {
114
+ readonly MECHANIC: "Mechanic";
115
+ readonly NORMAL: "Normal";
116
+ };
117
+ type ValveDesign = (typeof ValveDesigns)[keyof typeof ValveDesigns];
118
+ declare const FanDesigns: {
119
+ readonly NORMAL: "Normal";
120
+ readonly BLADED: "Bladed";
121
+ };
122
+ type FanDesign = (typeof FanDesigns)[keyof typeof FanDesigns];
123
+ declare const FanRunStates: {
124
+ readonly NO_VALUE: "NoValue";
125
+ readonly UNDEFINED: "Undefined";
126
+ readonly STOPPED: "Stopped";
127
+ readonly RUNNING: "Running";
128
+ readonly RUNNING_FAST: "RunningFast";
129
+ };
130
+ type FanRunState = (typeof FanRunStates)[keyof typeof FanRunStates];
131
+ declare const FanDirections: {
132
+ readonly NO_VALUE: "NoValue";
133
+ readonly UNDEFINED: "Undefined";
134
+ readonly SUPPLY: "Supply";
135
+ readonly EXHAUST: "Exhaust";
136
+ };
137
+ type FanDirection = (typeof FanDirections)[keyof typeof FanDirections];
138
+ declare const FanTypes: {
139
+ readonly SIMPLE: "Simple";
140
+ readonly SIMPLE_WITH_FAST: "SimpleWithFast";
141
+ readonly REVERSIBLE: "Reversible";
142
+ readonly REVERSIBLE_WITH_FAST: "ReversibleWithFast";
143
+ };
144
+ type FanType = (typeof FanTypes)[keyof typeof FanTypes];
145
+ declare const LevelBarOrientations: {
146
+ readonly VERTICAL: "Vertical";
147
+ readonly HORIZONTAL: "Horizontal";
148
+ };
149
+ type LevelBarOrientation = (typeof LevelBarOrientations)[keyof typeof LevelBarOrientations];
150
+ declare const SliderOrientations: {
151
+ readonly VERTICAL: "Vertical";
152
+ readonly HORIZONTAL: "Horizontal";
153
+ };
154
+ type SliderOrientation = (typeof SliderOrientations)[keyof typeof SliderOrientations];
155
+ declare const CompressorDesigns: {
156
+ readonly CENTRIFUGAL: "Centrifugal";
157
+ readonly MECHANIC: "Mechanic";
158
+ readonly NORMAL: "Normal";
159
+ readonly PISTONS: "Pistons";
160
+ readonly ROTATORY_SCREW: "RotatoryScrew";
161
+ readonly SCROLL: "Scroll";
162
+ readonly VANES: "Vanes";
163
+ };
164
+ type CompressorDesign = (typeof CompressorDesigns)[keyof typeof CompressorDesigns];
165
+ declare const LedTypes: {
166
+ readonly CIRCLE: "Circle";
167
+ readonly SQUARE: "Square";
168
+ };
169
+ type LedType = (typeof LedTypes)[keyof typeof LedTypes];
170
+ declare const InfoLocations: {
171
+ readonly BOTTOM: "Bottom";
172
+ readonly LEFT: "Left";
173
+ readonly RIGHT: "Right";
174
+ readonly TOP: "Top";
175
+ };
176
+ type InfoLocation = (typeof InfoLocations)[keyof typeof InfoLocations];
177
+ declare const MarkTypes: {
178
+ readonly LARGE_LINE: "LargeLine";
179
+ readonly SHORT_LINE: "ShortLine";
180
+ readonly TRIANGLE: "Triangle";
181
+ };
182
+ type MarkType = (typeof MarkTypes)[keyof typeof MarkTypes];
183
+ declare const ScalePositions: {
184
+ readonly LEFT: "Left";
185
+ readonly RIGHT: "Right";
186
+ };
187
+ type ScalePosition = (typeof ScalePositions)[keyof typeof ScalePositions];
188
+ declare const ValueTypes: {
189
+ readonly PERCENTAGE: "Percentage";
190
+ readonly RAW: "Raw";
191
+ };
192
+ type ValueType = (typeof ValueTypes)[keyof typeof ValueTypes];
193
+ declare const OperationModeStates: {
194
+ readonly ACTIVE: 0;
195
+ readonly INACTIVE: 1;
196
+ readonly IN_TRANSITION: 2;
197
+ readonly FAILED: 3;
198
+ };
199
+ type OperationModeState = (typeof OperationModeStates)[keyof typeof OperationModeStates];
200
+ declare const UnitDesigns: {
201
+ readonly IMAGE: "Image";
202
+ readonly MODERN: "Modern";
203
+ };
204
+ type UnitDesign = (typeof UnitDesigns)[keyof typeof UnitDesigns];
205
+ declare const StationDesigns: {
206
+ readonly IMAGE: "Image";
207
+ readonly MONITOR: "Monitor";
208
+ readonly SCREEN: "Screen";
209
+ };
210
+ type StationDesign = (typeof StationDesigns)[keyof typeof StationDesigns];
211
+ declare const RepeaterDesigns: {
212
+ readonly IMAGE: "Image";
213
+ readonly SLIM: "SLim";
214
+ readonly DIAMAR_REPEATER: "DiamarRepeater";
215
+ };
216
+ type RepeaterDesign = (typeof RepeaterDesigns)[keyof typeof RepeaterDesigns];
217
+ declare const CabinetDesigns: {
218
+ readonly IMAGE: "Image";
219
+ readonly MODERN: "Modern";
220
+ };
221
+ type CabinetDesign = (typeof CabinetDesigns)[keyof typeof CabinetDesigns];
222
+ declare const LinkDesigns: {
223
+ readonly BUTTON: "Button";
224
+ readonly IMAGE: "Image";
225
+ };
226
+ type LinkDesign = (typeof LinkDesigns)[keyof typeof LinkDesigns];
227
+ declare const OpClStates: {
228
+ readonly NO_VALUE: "NoValue";
229
+ readonly OPEN: "Open";
230
+ readonly CLOSE: "Close";
231
+ readonly UNDEFINED: "Undefined";
232
+ };
233
+ type OpClState = (typeof OpClStates)[keyof typeof OpClStates];
234
+ declare const RunningStoppedStates: {
235
+ readonly NO_VALUE: "NoValue";
236
+ readonly RUNNING: "Running";
237
+ readonly STOPPED: "Stopped";
238
+ readonly UNDEFINED: "Undefined";
239
+ };
240
+ type RunningStoppedState = (typeof RunningStoppedStates)[keyof typeof RunningStoppedStates];
241
+ declare const AutoSemiAutoStates: {
242
+ readonly NO_VALUE: "NoValue";
243
+ readonly AUTOMATIC: "Automatic";
244
+ readonly SEMI_AUTOMATIC: "SemiAuto";
245
+ readonly UNDEFINED: "Undefined";
246
+ };
247
+ type AutoSemiAutoState = (typeof AutoSemiAutoStates)[keyof typeof AutoSemiAutoStates];
248
+ declare const RemoteLocalStates: {
249
+ readonly NO_VALUE: "NoValue";
250
+ readonly REMOTE: "Remote";
251
+ readonly LOCAL: "Local";
252
+ readonly UNDEFINED: "Undefined";
253
+ };
254
+ type RemoteLocalState = (typeof RemoteLocalStates)[keyof typeof RemoteLocalStates];
255
+
256
+ type BreakerResponseSchema = {
257
+ AlarmState: MimicAlarmState;
258
+ ControlState: MimicControlState;
259
+ Value: OpClState;
260
+ Active: boolean;
261
+ };
262
+ type BreakerPmsResponseSchema = {
263
+ AlarmState: MimicAlarmState;
264
+ ControlState: MimicControlState;
265
+ Value: OpClState;
266
+ Active: boolean;
267
+ };
268
+ type GeneratorResponseSchema = {
269
+ AlarmState: MimicAlarmState;
270
+ ControlState: MimicControlState;
271
+ Value: RunningStoppedState;
272
+ Active: boolean;
273
+ };
274
+ type GeneratorPmsResponseSchema = {
275
+ AlarmState: MimicAlarmState;
276
+ ControlState: MimicControlState;
277
+ Value: RunningStoppedState;
278
+ PowerValue: number | null;
279
+ FrequencyValue: number | null;
280
+ PriorityValue: number | null;
281
+ Active: boolean;
282
+ };
283
+ type OperationModesResponseSchema = {
284
+ AlarmState: OperationModeState;
285
+ Active: boolean;
286
+ };
287
+ type PrioritiesResponseSchema = {};
288
+ type ShaftResponseSchema = {
289
+ AlarmState: MimicAlarmState;
290
+ Active: boolean;
291
+ };
292
+
293
+ type CabinetResponseSchema = {
294
+ AlarmState: MimicAlarmState;
295
+ };
296
+ type RepeaterResponseSchema = {
297
+ AlarmState: MimicAlarmState;
298
+ };
299
+ type StationResponseSchema = {
300
+ AlarmState: MimicAlarmState;
301
+ };
302
+ type UnitResponseSchema = {
303
+ AlarmState: MimicAlarmState;
304
+ };
305
+
306
+ type AlarmIndicatorResponseSchema = {
307
+ AlarmState: MimicAlarmState;
308
+ Active: boolean;
309
+ };
310
+ type CommandResponseSchema = {
311
+ AlarmState: MimicAlarmState;
312
+ Active: boolean;
313
+ };
314
+ type DialResponseSchema = {
315
+ AlarmState: MimicAlarmState;
316
+ Value: number | null;
317
+ Active: boolean;
318
+ };
319
+ type DigitalResponseSchema = {
320
+ AlarmState: MimicAlarmState;
321
+ Value: DigitalState;
322
+ Active: boolean;
323
+ };
324
+ type DisplayResponseSchema = {
325
+ AlarmState: MimicAlarmState;
326
+ Value: string | null;
327
+ Active: boolean;
328
+ };
329
+ type DynamicTextResponseSchema = {
330
+ TextColor: string;
331
+ Text: string;
332
+ };
333
+ type LevelBarResponseSchema = {
334
+ AlarmState: MimicAlarmState;
335
+ Value: number | null;
336
+ Active: boolean;
337
+ };
338
+ type SliderResponseSchema = {
339
+ AlarmState: MimicAlarmState;
340
+ Value: number | null;
341
+ Active: boolean;
342
+ };
343
+ type TextChannelResponseSchema = {
344
+ AlarmState: MimicAlarmState;
345
+ Value: string | null;
346
+ Active: boolean;
347
+ };
348
+ type ToggleResponseSchema = {
349
+ AlarmState: MimicAlarmState;
350
+ Value: boolean | null;
351
+ Active: boolean;
352
+ };
353
+
354
+ type CompressorResponseSchema = {
355
+ AlarmState: MimicAlarmState;
356
+ ControlState: MimicControlState;
357
+ Value: RunningStoppedState;
358
+ Active: boolean;
359
+ };
360
+ type DamperResponseSchema = {
361
+ AlarmState: MimicAlarmState;
362
+ ControlState: MimicControlState;
363
+ Value: OpClState;
364
+ Active: boolean;
365
+ };
366
+ type DamperAutomatedResponseSchema = {
367
+ AlarmState: MimicAlarmState;
368
+ Value: OpClState;
369
+ Active: boolean;
370
+ };
371
+ type FanResponseSchema = {
372
+ AlarmState: MimicAlarmState;
373
+ ControlState: MimicControlState;
374
+ RunState: FanRunState;
375
+ FanDirection: FanDirection;
376
+ Active: boolean;
377
+ };
378
+ type PumpResponseSchema = {
379
+ AlarmState: MimicAlarmState;
380
+ ControlState: MimicControlState;
381
+ Value: RunningStoppedState;
382
+ Active: boolean;
383
+ };
384
+ type PumpAutomatedResponseSchema = {
385
+ AlarmState: MimicAlarmState;
386
+ ControlState: MimicControlState;
387
+ Value: RunningStoppedState;
388
+ Active: boolean;
389
+ };
390
+ type TankResponseSchema = {
391
+ AlarmState: MimicAlarmState;
392
+ Volume: number | null;
393
+ Sounding: number | null;
394
+ Percentage: number | null;
395
+ };
396
+ type ValveResponseSchema = {
397
+ AlarmState: MimicAlarmState;
398
+ ControlState: MimicControlState;
399
+ Value: OpClState;
400
+ Active: boolean;
401
+ };
402
+ type ValveAutomatedResponseSchema = {
403
+ AlarmState: MimicAlarmState;
404
+ Value: OpClState;
405
+ Active: boolean;
406
+ };
407
+
408
+ type ImageAuxiliaryResponseSchema = {
409
+ ImageName: string;
410
+ };
411
+ type LineAuxiliaryResponseSchema = {
412
+ LineColor: string;
413
+ };
414
+ type LinkAuxiliaryResponseSchema = {
415
+ ImageName: string;
416
+ };
417
+ type PolylineAuxiliaryResponseSchema = {
418
+ LinesColor: string;
419
+ };
420
+ type SquareAuxiliaryResponseSchema = {
421
+ ColorBorder: string;
422
+ ColorFill: string;
423
+ };
424
+ type TextAuxiliaryResponseSchema = {};
425
+
426
+ type AutomaticSemiAutoRequestSchema = {
427
+ withAutomatic: boolean;
428
+ automaticFeedback: string | null;
429
+ hasSemiAutoFeedback: boolean;
430
+ semiAutoFeedback: string | null;
431
+ };
432
+ type CommandsOpClRequestSchema = {
433
+ commandOpen: string | null;
434
+ commandClose: string | null;
435
+ };
436
+ type CommandsStartStopRequestSchema = {
437
+ commandStart: string | null;
438
+ commandStop: string | null;
439
+ };
440
+ type ControlLockRequestSchema = {
441
+ hasControlLock: boolean;
442
+ controlLock: string | null;
443
+ };
444
+ type FeedbackOpClRequestSchema = {
445
+ openFeedback: string | null;
446
+ closeFeedback: string | null;
447
+ };
448
+ type FeedbackRunningStoppedRequestSchema = {
449
+ runFeedback: string | null;
450
+ hasStoppedFeedback: boolean;
451
+ stoppedFeedback: string | null;
452
+ };
453
+ type OrderOpClRequestSchema = {
454
+ openOrder: string | null;
455
+ closeOrder: string | null;
456
+ };
457
+ type OrderStartStopRequestSchema = {
458
+ startOrder: string | null;
459
+ stopOrder: string | null;
460
+ };
461
+ type RemoteLocalRequestSchema = {
462
+ remoteFeedback: string | null;
463
+ hasLocalFeedback: boolean;
464
+ localFeedback: string | null;
465
+ };
466
+ type TripResetRequestSchema = {
467
+ tripFeedback: string | null;
468
+ withCommandReset: boolean;
469
+ resetCommand: string | null;
470
+ };
471
+
472
+ type ChannelRequestSchema = {
473
+ WithBackup: boolean;
474
+ Main: string | null;
475
+ Backup: string | null;
476
+ Max: number;
477
+ Min: number;
478
+ Units: string;
479
+ };
480
+
481
+ type BreakerRequestSchema = {
482
+ FeedbackOpCl: FeedbackOpClRequestSchema;
483
+ RemoteLocal: RemoteLocalRequestSchema;
484
+ TripReset: TripResetRequestSchema;
485
+ AutomaticSemiAuto: AutomaticSemiAutoRequestSchema;
486
+ IsControl: boolean;
487
+ };
488
+ type BreakerPmsRequestSchema = {
489
+ Breaker: string;
490
+ FeedbackOpCl: FeedbackOpClRequestSchema;
491
+ RemoteLocal: RemoteLocalRequestSchema;
492
+ TripReset: TripResetRequestSchema;
493
+ };
494
+ type GeneratorRequestSchema = {
495
+ AutomaticSemiAuto: AutomaticSemiAutoRequestSchema;
496
+ FeedbackRunningStopped: FeedbackRunningStoppedRequestSchema;
497
+ RemoteLocal: RemoteLocalRequestSchema;
498
+ TripReset: TripResetRequestSchema;
499
+ IsControl: boolean;
500
+ };
501
+ type GeneratorPmsRequestSchema = {
502
+ Generator: string;
503
+ PowerChannel: string | null;
504
+ FrequencyChannel: string | null;
505
+ PriorityChannel: string | null;
506
+ AutomaticSemiAutoTrait: AutomaticSemiAutoRequestSchema;
507
+ FeedbackRunningStopped: FeedbackRunningStoppedRequestSchema;
508
+ RemoteLocal: RemoteLocalRequestSchema;
509
+ TripResetTrait: TripResetRequestSchema;
510
+ };
511
+ type OperationModesRequestSchema = {
512
+ ModeToReach: string;
513
+ };
514
+ type PriorityDataRequestSchema = {
515
+ Name: string;
516
+ ChannelPriority: string | null;
517
+ ChannelPriorityFeedback: string | null;
518
+ };
519
+ type PrioritiesRequestSchema = {
520
+ Priorities: PriorityDataRequestSchema[];
521
+ };
522
+ type ShaftRequestSchema = {
523
+ WithFeedbackOpen: boolean;
524
+ ActivationMode: string;
525
+ ActivationValue: boolean;
526
+ OpenFeedback: ChannelRequestSchema;
527
+ CloseFeedback: ChannelRequestSchema;
528
+ };
529
+
530
+ type CabinetRequestSchema = {
531
+ CabinetId: string;
532
+ };
533
+ type RepeaterRequestSchema = {
534
+ RepeaterId: string;
535
+ };
536
+ type StationRequestSchema = {
537
+ StationId: string;
538
+ };
539
+ type UnitRequestSchema = {
540
+ UnitId: string;
541
+ };
542
+
543
+ type LineRequestSchema = {
544
+ Color: string;
545
+ Width: number;
546
+ Start: {
547
+ X: number;
548
+ Y: number;
549
+ };
550
+ End: {
551
+ X: number;
552
+ Y: number;
553
+ };
554
+ };
555
+ type LocalizedTextRequestSchema = {
556
+ English: string;
557
+ Spanish: string;
558
+ French: string;
559
+ German: string;
560
+ };
561
+ type LogicExpressionRequestSchema = {
562
+ Expression: string;
563
+ Value: undefined;
564
+ Variables: string[];
565
+ };
566
+ type LogicExpressionsRequestSchema = {
567
+ LogicExpressions: LogicExpressionRequestSchema[];
568
+ };
569
+ type TextAttributesRequestSchema = {
570
+ AnchorPoint: TextAnchorPoint;
571
+ Color: string;
572
+ HasUnderline: boolean;
573
+ UnderlineColor: string;
574
+ UnderlineLength: number;
575
+ UnderlineWidth: number;
576
+ };
577
+
578
+ type AlarmIndicatorRequestSchema = {
579
+ AlarmFeedback: string | null;
580
+ };
581
+ type CommandRequestSchema = {
582
+ CommandChannel: string | null;
583
+ CloseChannel: string | null;
584
+ };
585
+ type DialRequestSchema = {
586
+ Channel: string | null;
587
+ };
588
+ type DigitalRequestSchema = {
589
+ FeedbackOpCl: FeedbackOpClRequestSchema;
590
+ };
591
+ type DisplayRequestSchema = {
592
+ Channel: string | null;
593
+ };
594
+ type DynamicTextRequestSchema = {
595
+ TextAttributes: TextAttributesRequestSchema;
596
+ DefaultTextColor: string;
597
+ DefaultText: LocalizedTextRequestSchema;
598
+ TextLogic: LogicExpressionsRequestSchema;
599
+ };
600
+ type LevelBarRequestSchema = {
601
+ LevelChannel: string | null;
602
+ };
603
+ type SliderRequestSchema = {
604
+ Channel: string | null;
605
+ };
606
+ type TextChannelRequestSchema = {
607
+ Channel: string | null;
608
+ };
609
+ type ToggleRequestSchema = {
610
+ Channel: string | null;
611
+ };
612
+
613
+ type CompressorRequestSchema = {
614
+ AutomaticSemiAuto: AutomaticSemiAutoRequestSchema;
615
+ FeedbackRunningStopped: FeedbackRunningStoppedRequestSchema;
616
+ RemoteLocal: RemoteLocalRequestSchema;
617
+ TripReset: TripResetRequestSchema;
618
+ IsControl: boolean;
619
+ };
620
+ type DamperRequestSchema = {
621
+ AutomaticSemiAuto: AutomaticSemiAutoRequestSchema;
622
+ FeedbackOpCl: FeedbackOpClRequestSchema;
623
+ RemoteLocal: RemoteLocalRequestSchema;
624
+ TripReset: TripResetRequestSchema;
625
+ IsControl: boolean;
626
+ };
627
+ type DamperAutomatedRequestSchema = {
628
+ Damper: string;
629
+ FeedbackOpCl: FeedbackOpClRequestSchema;
630
+ TripReset: TripResetRequestSchema;
631
+ };
632
+ type FanRequestSchema = {
633
+ AutomaticSemiAuto: AutomaticSemiAutoRequestSchema;
634
+ RemoteLocal: RemoteLocalRequestSchema;
635
+ RunFeedbackSupply: ChannelRequestSchema;
636
+ RunFeedbackSupplyFast: ChannelRequestSchema;
637
+ RunFeedbackExhaust: ChannelRequestSchema;
638
+ RunFeedbackExhaustFast: ChannelRequestSchema;
639
+ StoppedFeedback: ChannelRequestSchema;
640
+ };
641
+ type PumpRequestSchema = {
642
+ AutomaticSemiAuto: AutomaticSemiAutoRequestSchema;
643
+ FeedbackRunningStopped: FeedbackRunningStoppedRequestSchema;
644
+ RemoteLocal: RemoteLocalRequestSchema;
645
+ TripReset: TripResetRequestSchema;
646
+ IsControl: boolean;
647
+ };
648
+ type PumpAutomatedRequestSchema = {
649
+ Pump: string;
650
+ AutomaticSemiAuto: AutomaticSemiAutoRequestSchema;
651
+ FeedbackRunningStopped: FeedbackRunningStoppedRequestSchema;
652
+ RemoteLocal: RemoteLocalRequestSchema;
653
+ TripReset: TripResetRequestSchema;
654
+ };
655
+ type TankRequestSchema = {
656
+ TankName: string;
657
+ VolumeChannel: string | null;
658
+ };
659
+ type ValveRequestSchema = {
660
+ IsControl: boolean;
661
+ FeedbackOpCl: FeedbackOpClRequestSchema;
662
+ RemoteLocal: RemoteLocalRequestSchema;
663
+ TripReset: TripResetRequestSchema;
664
+ };
665
+ type ValveAutomatedRequestSchema = {
666
+ Valve: string;
667
+ FeedbackOpCl: FeedbackOpClRequestSchema;
668
+ TripReset: TripResetRequestSchema;
669
+ };
670
+
671
+ type ImageAuxiliaryRequestSchema = {
672
+ DefaultImageName: string;
673
+ ImageLogic: LogicExpressionsRequestSchema;
674
+ };
675
+ type LineAuxiliaryRequestSchema = {
676
+ LineColor: string;
677
+ LineColorLogic: LogicExpressionsRequestSchema;
678
+ };
679
+ type LinkAuxiliaryRequestSchema = {
680
+ DefaultImageName: string;
681
+ ImageLogic: LogicExpressionsRequestSchema;
682
+ };
683
+ type PolylineAuxiliaryRequestSchema = {
684
+ LinesColor: string;
685
+ LineColorLogic: LogicExpressionsRequestSchema;
686
+ };
687
+ type SquareAuxiliaryRequestSchema = {
688
+ ColorBorder: string;
689
+ ColorFill: string;
690
+ LineColorLogic: LogicExpressionsRequestSchema;
691
+ };
692
+ type TextAuxiliaryRequestSchema = {};
693
+
694
+ declare const AlarmPriorities: {
695
+ readonly CRITICAL: "Critical";
696
+ readonly ALARM: "Alarm";
697
+ readonly WARNING: "Warning";
698
+ };
699
+ type AlarmPriority = (typeof AlarmPriorities)[keyof typeof AlarmPriorities];
700
+ declare const DiamarAlarmStates: {
701
+ readonly INACTIVE: "Inactive";
702
+ readonly ACKNOWLEDGED: "Acknowledged";
703
+ readonly ACTIVE: "Active";
704
+ readonly UNACKNOWLEDGED: "Unacknowledged";
705
+ readonly UNDEFINED: "Undefined";
706
+ };
707
+ type DiamarAlarmState = (typeof DiamarAlarmStates)[keyof typeof DiamarAlarmStates];
708
+ declare const CloudAlarmStates: {
709
+ readonly INACTIVE: "Inactive";
710
+ readonly ALARM: "Active";
711
+ readonly ALARM_ACK: "Acknowledged";
712
+ readonly WARNING: "WarningActive";
713
+ readonly WARNING_ACK: "WarningAcknowledged";
714
+ readonly RETURN_NO_ACK: "Unacknowledged";
715
+ readonly INHIBITED: "Inhibited";
716
+ readonly OFFSCAN: "Offscan";
717
+ readonly UNDEFINED: "Undefined";
718
+ };
719
+ type CloudAlarmState = (typeof CloudAlarmStates)[keyof typeof CloudAlarmStates];
720
+ declare const AlarmTypes: {
721
+ readonly NORMAL: "Normal";
722
+ readonly ALARM_OPEN: "AlarmOpen";
723
+ readonly ALARM_CLOSE: "AlarmClose";
724
+ readonly ALARM_IFH: "AlarmIfh";
725
+ readonly ALARM_HH: "AlarmHh";
726
+ readonly ALARM_H: "AlarmH";
727
+ readonly ALARM_L: "AlarmL";
728
+ readonly ALARM_LL: "AlarmLl";
729
+ readonly ALARM_IFL: "AlarmIfl";
730
+ readonly ALARM_OFFSCAN: "AlarmOffScan";
731
+ readonly ALARM_FAIL: "AlarmFail";
732
+ readonly ALARM_INH: "AlarmInh";
733
+ readonly ALARM_UNK: "AlarmUnk";
734
+ };
735
+ type AlarmType = (typeof AlarmTypes)[keyof typeof AlarmTypes];
736
+
737
+ declare const ChannelBaseTypes: {
738
+ readonly VIRTUAL_ANALOG: "VirtualAnalog";
739
+ readonly VIRTUAL_DIGITAL: "VirtualDigital";
740
+ readonly VIRTUAL_STRING: "VirtualString";
741
+ readonly WIRED_ANALOG: "WiredAnalog";
742
+ readonly WIRED_DIGITAL: "WiredDigital";
743
+ };
744
+ type ChannelBaseType = (typeof ChannelBaseTypes)[keyof typeof ChannelBaseTypes];
745
+ declare const ChannelSpecificTypes: {
746
+ readonly DIGITAL_INPUT: "DigitalInput";
747
+ readonly DIGITAL_OUTPUT: "DigitalOutput";
748
+ readonly ANALOG_INPUT: "AnalogInput";
749
+ readonly ANALOG_OUTPUT: "AnalogOutput";
750
+ readonly ANALOG_SOFTWARE: "AnalogSoftware";
751
+ readonly DIGITAL_SOFTWARE: "DigitalSoftware";
752
+ readonly VIRTUAL_STRING: "VirtualString";
753
+ readonly COMMAND: "Command";
754
+ readonly BROADCAST_COMMAND: "BroadcastCommand";
755
+ readonly SOFTWARE: "Software";
756
+ readonly ANALOG_TIMER: "AnalogTimer";
757
+ readonly SERIAL_DIGITAL_INPUT: "SerialDigitalInput";
758
+ readonly SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput";
759
+ readonly SERIAL_LINE_COMMAND: "SerialLineCommand";
760
+ readonly SERIAL_ANALOG_INPUT: "SerialAnalogInput";
761
+ readonly SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput";
762
+ };
763
+ type ChannelSpecificType = (typeof ChannelSpecificTypes)[keyof typeof ChannelSpecificTypes];
764
+
765
+ declare const EventCategories: {
766
+ readonly ACCESS_CONTROL: "AccessControl";
767
+ readonly REQUEST_ERROR: "RequestErrors";
768
+ readonly OS: "OperatingSystemEvents";
769
+ readonly CONTROL: "ControlSystemEvents";
770
+ readonly BACKUP: "BackupAndRestoreEvents";
771
+ readonly CONFIG_CHANGE: "ConfigurationChanges";
772
+ readonly LOGS: "AuditLogEvents";
773
+ readonly POTENTIAL_ATTACK: "PotentialAttackActivity";
774
+ };
775
+ type EventCategory = (typeof EventCategories)[keyof typeof EventCategories];
776
+ declare const EventCriticalities: {
777
+ readonly VERBOSE: "Verbose";
778
+ readonly INFO: "Info";
779
+ readonly WARNING: "Warning";
780
+ readonly ERROR: "Error";
781
+ readonly CRITICAL: "Critical";
782
+ };
783
+ type EventCriticality = (typeof EventCriticalities)[keyof typeof EventCriticalities];
784
+
785
+ declare const UnitTypes: {
786
+ readonly AIM18: "Aim18";
787
+ readonly DIM36: "Dim36";
788
+ readonly DIOM24: "Diom24";
789
+ readonly KLIM: "Klim";
790
+ readonly LUM: "Lum";
791
+ readonly PMM: "Pmm";
792
+ readonly SLIM: "Slim";
793
+ readonly TIM28: "Tim28";
794
+ };
795
+ type UnitType = (typeof UnitTypes)[keyof typeof UnitTypes];
796
+
797
+ export { type OrderStartStopRequestSchema as $, type AlarmIndicatorRequestSchema as A, type SliderRequestSchema as B, type CabinetDesign as C, type DamperRequestSchema as D, type TextChannelRequestSchema as E, type FanType as F, type ToggleRequestSchema as G, type CabinetRequestSchema as H, type InfoLocation as I, type RepeaterRequestSchema as J, type StationRequestSchema as K, type LedType as L, type MarkType as M, type UnitRequestSchema as N, type AutomaticSemiAutoRequestSchema as O, type PolylineAuxiliaryRequestSchema as P, type CommandsOpClRequestSchema as Q, type RepeaterDesign as R, type StationDesign as S, type TextAnchorPoint as T, type UnitDesign as U, type ValueType as V, type CommandsStartStopRequestSchema as W, type ControlLockRequestSchema as X, type FeedbackOpClRequestSchema as Y, type FeedbackRunningStoppedRequestSchema as Z, type OrderOpClRequestSchema as _, type TitleAlign as a, type MimicAlarmState as a$, type RemoteLocalRequestSchema as a0, type TripResetRequestSchema as a1, type BreakerRequestSchema as a2, type BreakerPmsRequestSchema as a3, type GeneratorRequestSchema as a4, type GeneratorPmsRequestSchema as a5, type OperationModesRequestSchema as a6, type PriorityDataRequestSchema as a7, type PrioritiesRequestSchema as a8, type ShaftRequestSchema as a9, type RepeaterResponseSchema as aA, type StationResponseSchema as aB, type UnitResponseSchema as aC, type BreakerResponseSchema as aD, type BreakerPmsResponseSchema as aE, type GeneratorResponseSchema as aF, type GeneratorPmsResponseSchema as aG, type OperationModesResponseSchema as aH, type PrioritiesResponseSchema as aI, type ShaftResponseSchema as aJ, type ActivationMode as aK, type AlarmPriority as aL, type AlarmState as aM, type AlarmType as aN, type AutoSemiAutoState as aO, type ChannelBaseType as aP, type ChannelSpecificType as aQ, type CloudAlarmState as aR, type DiamarAlarmState as aS, type DigitalAlarmState as aT, type DigitalState as aU, type EventCategory as aV, type EventCriticality as aW, type FanDirection as aX, type FanRunState as aY, type LineRequestSchema as aZ, type LinkDesign as a_, type ImageAuxiliaryResponseSchema as aa, type LineAuxiliaryResponseSchema as ab, type LinkAuxiliaryResponseSchema as ac, type PolylineAuxiliaryResponseSchema as ad, type SquareAuxiliaryResponseSchema as ae, type TextAuxiliaryResponseSchema as af, type CompressorResponseSchema as ag, type DamperResponseSchema as ah, type DamperAutomatedResponseSchema as ai, type FanResponseSchema as aj, type PumpResponseSchema as ak, type PumpAutomatedResponseSchema as al, type TankResponseSchema as am, type ValveResponseSchema as an, type ValveAutomatedResponseSchema as ao, type AlarmIndicatorResponseSchema as ap, type CommandResponseSchema as aq, type DialResponseSchema as ar, type DigitalResponseSchema as as, type DisplayResponseSchema as at, type DynamicTextResponseSchema as au, type LevelBarResponseSchema as av, type SliderResponseSchema as aw, type TextChannelResponseSchema as ax, type ToggleResponseSchema as ay, type CabinetResponseSchema as az, type LevelBarOrientation as b, type MimicControlState as b0, type MimicElementType as b1, type OpClState as b2, type OperationModeState as b3, type RemoteLocalState as b4, type RunningStoppedState as b5, type ScalePosition as b6, type UnitType as b7, type ZDepth as b8, UnitTypes as b9, AlarmPriorities as ba, DiamarAlarmStates as bb, CloudAlarmStates as bc, AlarmTypes as bd, EventCategories as be, EventCriticalities as bf, type SliderOrientation as c, type CompressorDesign as d, type FanDesign as e, type ValveDesign as f, type ImageAuxiliaryRequestSchema as g, type LineAuxiliaryRequestSchema as h, type LinkAuxiliaryRequestSchema as i, type SquareAuxiliaryRequestSchema as j, type TextAuxiliaryRequestSchema as k, type ChannelRequestSchema as l, type CompressorRequestSchema as m, type DamperAutomatedRequestSchema as n, type FanRequestSchema as o, type PumpRequestSchema as p, type PumpAutomatedRequestSchema as q, type TankRequestSchema as r, type ValveRequestSchema as s, type ValveAutomatedRequestSchema as t, type CommandRequestSchema as u, type DialRequestSchema as v, type DigitalRequestSchema as w, type DisplayRequestSchema as x, type DynamicTextRequestSchema as y, type LevelBarRequestSchema as z };