@sedni/cloud_common 2.1.0 → 3.0.1

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,1246 @@
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
+ AutomaticSemiAuto: 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
+ type AddedAlarmsJsonSchema = {
695
+ Channels: {
696
+ ChannelId: string;
697
+ }[];
698
+ };
699
+ type BackgroundJsonSchema = {
700
+ Show: boolean;
701
+ };
702
+ type LineJsonSchema = {
703
+ Color: string;
704
+ Width: number;
705
+ Start: {
706
+ X: number;
707
+ Y: number;
708
+ };
709
+ End: {
710
+ X: number;
711
+ Y: number;
712
+ };
713
+ };
714
+ type LocalizedTextJsonSchema = {
715
+ English: string;
716
+ Spanish: string;
717
+ French: string;
718
+ German: string;
719
+ };
720
+ type LocationJsonSchema = {
721
+ X: number;
722
+ Y: number;
723
+ Z: number;
724
+ Rotation: number;
725
+ };
726
+ type LogicExpressionJsonSchema = {
727
+ Expression: string;
728
+ Value: undefined;
729
+ Variables: string[];
730
+ };
731
+ type LogicExpressionsJsonSchema = {
732
+ LogicExpressions: LogicExpressionJsonSchema[];
733
+ };
734
+ type ScaleJsonSchema = {
735
+ Show: boolean;
736
+ TextHeight: number;
737
+ Color: string;
738
+ Position: string;
739
+ LineWidth: number;
740
+ DivisionsNumber: number;
741
+ SubdivisionsNumber: number;
742
+ };
743
+ type TextAttributesJsonSchema = {
744
+ AnchorPoint: TextAnchorPoint;
745
+ Color: string;
746
+ HasUnderline: boolean;
747
+ UnderlineColor: string;
748
+ UnderlineLength: number;
749
+ UnderlineWidth: number;
750
+ };
751
+ type TitleJsonSchema = {
752
+ Show: boolean;
753
+ Height: number;
754
+ Padding: number;
755
+ Align: TitleAlign;
756
+ Color: string;
757
+ Text: LocalizedTextJsonSchema;
758
+ Location: LocationJsonSchema;
759
+ };
760
+
761
+ type ChannelJsonSchema = {
762
+ WithBackup: boolean;
763
+ Main: string | null;
764
+ Backup: string | null;
765
+ Max: number;
766
+ Min: number;
767
+ Units: string;
768
+ };
769
+
770
+ type AutomaticSemiAutoJsonSchema = {
771
+ withAutomatic: boolean;
772
+ automaticCommand: ChannelJsonSchema;
773
+ semiAutoCommand: ChannelJsonSchema;
774
+ automaticFeedback: ChannelJsonSchema;
775
+ hasSemiAutoFeedback: boolean;
776
+ semiAutoFeedback: ChannelJsonSchema;
777
+ };
778
+ type CommandsOpClJsonSchema = {
779
+ commandOpen: ChannelJsonSchema;
780
+ commandClose: ChannelJsonSchema;
781
+ };
782
+ type CommandsStartStopJsonSchema = {
783
+ commandStart: ChannelJsonSchema;
784
+ commandStop: ChannelJsonSchema;
785
+ };
786
+ type ControlLockJsonSchema = {
787
+ hasControlLock: boolean;
788
+ controlLock: ChannelJsonSchema;
789
+ };
790
+ type FeedbackOpClJsonSchema = {
791
+ openFeedback: ChannelJsonSchema;
792
+ closeFeedback: ChannelJsonSchema;
793
+ };
794
+ type FeedbackRunningStoppedJsonSchema = {
795
+ runFeedback: ChannelJsonSchema;
796
+ hasStoppedFeedback: boolean;
797
+ stoppedFeedback: ChannelJsonSchema;
798
+ };
799
+ type OrderOpClJsonSchema = {
800
+ openOrder: ChannelJsonSchema;
801
+ closeOrder: ChannelJsonSchema;
802
+ };
803
+ type OrderStartStopJsonSchema = {
804
+ startOrder: ChannelJsonSchema;
805
+ stopOrder: ChannelJsonSchema;
806
+ };
807
+ type RemoteLocalJsonSchema = {
808
+ remoteFeedback: ChannelJsonSchema;
809
+ hasLocalFeedback: boolean;
810
+ localFeedback: ChannelJsonSchema;
811
+ };
812
+ type TripResetJsonSchema = {
813
+ tripFeedback: ChannelJsonSchema;
814
+ withCommandReset: boolean;
815
+ resetCommand: ChannelJsonSchema;
816
+ };
817
+
818
+ type BreakerJsonSchema = {
819
+ FeedbackOpCl: FeedbackOpClJsonSchema;
820
+ CommandsOpCl: CommandsOpClJsonSchema;
821
+ ControlLock: ControlLockJsonSchema;
822
+ OrderOpCl: OrderOpClJsonSchema;
823
+ RemoteLocal: RemoteLocalJsonSchema;
824
+ TripReset: TripResetJsonSchema;
825
+ AutomaticManual: AutomaticSemiAutoJsonSchema;
826
+ IsControl: boolean;
827
+ RemoteIconSize: number;
828
+ };
829
+ type BreakerPmsJsonSchema = {
830
+ Breaker: string;
831
+ RemoteIconSize: number;
832
+ FeedbackOpCl: FeedbackOpClJsonSchema;
833
+ RemoteLocal: RemoteLocalJsonSchema;
834
+ TripReset: TripResetJsonSchema;
835
+ };
836
+ type GeneratorJsonSchema = {
837
+ AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
838
+ CommandsStartStop: CommandsStartStopJsonSchema;
839
+ FeedbackRunningStopped: FeedbackRunningStoppedJsonSchema;
840
+ OrderStartStop: OrderStartStopJsonSchema;
841
+ RemoteLocal: RemoteLocalJsonSchema;
842
+ TripReset: TripResetJsonSchema;
843
+ OrderAuto: ChannelJsonSchema;
844
+ OrderSemiAuto: ChannelJsonSchema;
845
+ IsControl: boolean;
846
+ };
847
+ type GeneratorPmsJsonSchema = {
848
+ Generator: string;
849
+ GeneratorNameColor: string;
850
+ PowerChannel: ChannelJsonSchema;
851
+ FrequencyChannel: ChannelJsonSchema;
852
+ PriorityChannel: ChannelJsonSchema;
853
+ AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
854
+ FeedbackRunningStopped: FeedbackRunningStoppedJsonSchema;
855
+ RemoteLocal: RemoteLocalJsonSchema;
856
+ TripReset: TripResetJsonSchema;
857
+ };
858
+ type OperationModesJsonSchema = {
859
+ TextHeight: number;
860
+ ModeToReach: string;
861
+ Messages: LocalizedTextJsonSchema;
862
+ };
863
+ type PriorityDataJsonSchema = {
864
+ Name: string;
865
+ ChannelPriority: string;
866
+ ChannelPriorityFeedback: string;
867
+ };
868
+ type PrioritiesJsonSchema = {
869
+ TextHeight: number;
870
+ HasPassword: boolean;
871
+ Texts: LocalizedTextJsonSchema;
872
+ Priorities: PriorityDataJsonSchema[];
873
+ };
874
+ type ShaftJsonSchema = {
875
+ WithFeedbackOpen: boolean;
876
+ ActivationMode: string;
877
+ ActivationValue: boolean;
878
+ OpenFeedback: ChannelJsonSchema;
879
+ CloseFeedback: ChannelJsonSchema;
880
+ };
881
+
882
+ type CabinetJsonSchema = {
883
+ Design: CabinetDesign;
884
+ ImageName: string;
885
+ CabinetId: string;
886
+ };
887
+ type RepeaterJsonSchema = {
888
+ Design: RepeaterDesign;
889
+ ImageName: string;
890
+ RepeaterId: string;
891
+ };
892
+ type StationJsonSchema = {
893
+ Design: StationDesign;
894
+ ImageName: string;
895
+ StationId: string;
896
+ };
897
+ type UnitJsonSchema = {
898
+ Design: UnitDesign;
899
+ ImageName: string;
900
+ UnitId: string;
901
+ };
902
+
903
+ type AlarmIndicatorJsonSchema = {
904
+ TextHeight: number;
905
+ TextColor: string;
906
+ Texts: LocalizedTextJsonSchema;
907
+ AlarmFeedback: ChannelJsonSchema;
908
+ };
909
+ type CommandJsonSchema = {
910
+ TextHeight: number;
911
+ MessageColor: string;
912
+ TimeoutCommandCheck: number;
913
+ CommandCheckColor: string;
914
+ TimeoutCommandResult: number;
915
+ CommandOkColor: string;
916
+ CommandErrorColor: string;
917
+ HasConfirmation: boolean;
918
+ HasPassword: boolean;
919
+ CommandChannel: ChannelJsonSchema;
920
+ CloseChannel: ChannelJsonSchema;
921
+ Messages: LocalizedTextJsonSchema;
922
+ ConfirmationMessages: LocalizedTextJsonSchema;
923
+ };
924
+ type DialJsonSchema = {
925
+ Color: string;
926
+ ShowTextValue: boolean;
927
+ Factor: number;
928
+ ShowAlarmLimits: boolean;
929
+ ShowFactor: boolean;
930
+ DivisionsNumber: number;
931
+ SubdivisionsNumber: number;
932
+ Channel: ChannelJsonSchema;
933
+ };
934
+ type DigitalJsonSchema = {
935
+ TextHeight: number;
936
+ LedType: LedType;
937
+ OpenLedColor: string;
938
+ CloseLedColor: string;
939
+ OpenTexts: LocalizedTextJsonSchema;
940
+ CloseTexts: LocalizedTextJsonSchema;
941
+ FeedbackOpCl: FeedbackOpClJsonSchema;
942
+ };
943
+ type DisplayJsonSchema = {
944
+ HeightText: number;
945
+ TextColor: string;
946
+ ShowMeasureUnit: boolean;
947
+ NumCharactersDisplay: number;
948
+ Channel: ChannelJsonSchema;
949
+ };
950
+ type DynamicTextJsonSchema = {
951
+ TextAttributes: TextAttributesJsonSchema;
952
+ DefaultTextColor: string;
953
+ DefaultText: LocalizedTextJsonSchema;
954
+ TextLogic: LogicExpressionsJsonSchema;
955
+ };
956
+ type LevelBarJsonSchema = {
957
+ Orientation: LevelBarOrientation;
958
+ BackgroundColor: string;
959
+ ForegroundColor: string;
960
+ ShowTextValue: boolean;
961
+ TextValueHeight: number;
962
+ ValueType: ValueType;
963
+ ShowAlarmLimits: boolean;
964
+ MarkType: MarkType;
965
+ Scale: ScaleJsonSchema;
966
+ LevelChannel: ChannelJsonSchema;
967
+ };
968
+ type SliderJsonSchema = {
969
+ Orientation: SliderOrientation;
970
+ Steps: number;
971
+ ColorBackground: string;
972
+ ColorValue: string;
973
+ ColorValueCircle: string;
974
+ HasTextValue: boolean;
975
+ ColorTextValue: string;
976
+ TextValueFontSize: number;
977
+ IsVisualizationOnly: boolean;
978
+ Channel: ChannelJsonSchema;
979
+ };
980
+ type TextChannelJsonSchema = {
981
+ TextAttributes: TextAttributesJsonSchema;
982
+ Channel: ChannelJsonSchema;
983
+ };
984
+ type ToggleJsonSchema = {
985
+ ColorCircle: string;
986
+ ColorOnBackground: string;
987
+ ColorOffBackground: string;
988
+ DisplayValue: boolean;
989
+ OnTextValue: string;
990
+ OnTextValueColor: string;
991
+ OffTextValue: string;
992
+ OffTextValueColor: string;
993
+ IsVisualizationOnly: boolean;
994
+ Channel: ChannelJsonSchema;
995
+ CommandOnChannel: ChannelJsonSchema;
996
+ CommandOffChannel: ChannelJsonSchema;
997
+ };
998
+
999
+ type CompressorJsonSchema = {
1000
+ AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
1001
+ CommandsStartStop: CommandsStartStopJsonSchema;
1002
+ ControlLock: ControlLockJsonSchema;
1003
+ FeedbackRunningStopped: FeedbackRunningStoppedJsonSchema;
1004
+ OrderStartStop: OrderStartStopJsonSchema;
1005
+ RemoteLocal: RemoteLocalJsonSchema;
1006
+ TripReset: TripResetJsonSchema;
1007
+ IsControl: boolean;
1008
+ CompressorDesign: CompressorDesign;
1009
+ };
1010
+ type DamperJsonSchema = {
1011
+ FeedbackAutoSemiAuto: AutomaticSemiAutoJsonSchema;
1012
+ FeedbackOpCl: FeedbackOpClJsonSchema;
1013
+ CommandsOpCl: CommandsOpClJsonSchema;
1014
+ ControlLock: ControlLockJsonSchema;
1015
+ OrderOpCl: OrderOpClJsonSchema;
1016
+ RemoteLocal: RemoteLocalJsonSchema;
1017
+ TripReset: TripResetJsonSchema;
1018
+ IsControl: boolean;
1019
+ };
1020
+ type DamperAutomatedJsonSchema = {
1021
+ Damper: string;
1022
+ FeedbackOpCl: FeedbackOpClJsonSchema;
1023
+ TripReset: TripResetJsonSchema;
1024
+ };
1025
+ type FanJsonSchema = {
1026
+ AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
1027
+ ControlLock: ControlLockJsonSchema;
1028
+ RemoteLocal: RemoteLocalJsonSchema;
1029
+ TripReset: TripResetJsonSchema;
1030
+ FanMode: FanType;
1031
+ FanDesign: FanDesign;
1032
+ SpeedFeedback: ChannelJsonSchema;
1033
+ ConsignedSpeed: ChannelJsonSchema;
1034
+ UserConsignedSpeed: ChannelJsonSchema;
1035
+ RunFeedbackSupply: ChannelJsonSchema;
1036
+ RunFeedbackSupplyFast: ChannelJsonSchema;
1037
+ RunFeedbackExhaust: ChannelJsonSchema;
1038
+ RunFeedbackExhaustFast: ChannelJsonSchema;
1039
+ StoppedFeedback: ChannelJsonSchema;
1040
+ StartOrderSupply: ChannelJsonSchema;
1041
+ StartOrderSupplyFast: ChannelJsonSchema;
1042
+ StartOrderExhaust: ChannelJsonSchema;
1043
+ StartOrderExhaustFast: ChannelJsonSchema;
1044
+ StopOrder: ChannelJsonSchema;
1045
+ StartCommandSupply: ChannelJsonSchema;
1046
+ StartCommandSupplyFast: ChannelJsonSchema;
1047
+ StartCommandExhaust: ChannelJsonSchema;
1048
+ StartCommandExhaustFast: ChannelJsonSchema;
1049
+ StopCommand: ChannelJsonSchema;
1050
+ StartCommandSupplyConfirmation: LocalizedTextJsonSchema;
1051
+ StartCommandSupplyFastConfirmation: LocalizedTextJsonSchema;
1052
+ StartCommandExhaustConfirmation: LocalizedTextJsonSchema;
1053
+ StartCommandExhaustFastConfirmation: LocalizedTextJsonSchema;
1054
+ StopCommandConfirmation: LocalizedTextJsonSchema;
1055
+ };
1056
+ type PumpJsonSchema = {
1057
+ AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
1058
+ ControlLock: ControlLockJsonSchema;
1059
+ CommandsStartStop: CommandsStartStopJsonSchema;
1060
+ FeedbackRunningStopped: FeedbackRunningStoppedJsonSchema;
1061
+ OrderStartStop: OrderStartStopJsonSchema;
1062
+ RemoteLocal: RemoteLocalJsonSchema;
1063
+ TripReset: TripResetJsonSchema;
1064
+ IsControl: boolean;
1065
+ PumpDesign: CompressorDesign;
1066
+ };
1067
+ type PumpAutomatedJsonSchema = {
1068
+ Pump: string;
1069
+ PumpDesign: CompressorDesign;
1070
+ AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
1071
+ FeedbackRunningStopped: FeedbackRunningStoppedJsonSchema;
1072
+ RemoteLocal: RemoteLocalJsonSchema;
1073
+ TripReset: TripResetJsonSchema;
1074
+ };
1075
+ type TankJsonSchema = {
1076
+ TankName: string;
1077
+ VolumeChannel: ChannelJsonSchema;
1078
+ LocationInfo: InfoLocation;
1079
+ ShowVolume: boolean;
1080
+ ShowVolumeInPercent: boolean;
1081
+ ShowVolumeInMeters: boolean;
1082
+ ShowVolumeInLitres: boolean;
1083
+ ShowWeight: boolean;
1084
+ ShowSounding: boolean;
1085
+ TextValueHeight: number;
1086
+ TextValuePadding: number;
1087
+ BackgroundColor: string;
1088
+ ContentColor: string;
1089
+ ShowAlarmLimits: boolean;
1090
+ MarkType: MarkType;
1091
+ Scale: ScaleJsonSchema;
1092
+ };
1093
+ type ValveJsonSchema = {
1094
+ IsControl: boolean;
1095
+ ValveDesign: ValveDesign;
1096
+ FeedbackOpCl: FeedbackOpClJsonSchema;
1097
+ CommandsOpCl: CommandsOpClJsonSchema;
1098
+ OrderOpCl: OrderOpClJsonSchema;
1099
+ ControlLock: ControlLockJsonSchema;
1100
+ RemoteLocal: RemoteLocalJsonSchema;
1101
+ TripReset: TripResetJsonSchema;
1102
+ };
1103
+ type ValveAutomatedJsonSchema = {
1104
+ Valve: string;
1105
+ ValveDesign: ValveDesign;
1106
+ FeedbackOpCl: FeedbackOpClJsonSchema;
1107
+ TripReset: TripResetJsonSchema;
1108
+ };
1109
+
1110
+ type ImageAuxiliaryJsonSchema = {
1111
+ DefaultImageName: string;
1112
+ ImageLogic: LogicExpressionsJsonSchema;
1113
+ };
1114
+ type LineAuxiliaryJsonSchema = {
1115
+ Line: LineJsonSchema;
1116
+ LineColorLogic: LogicExpressionsJsonSchema;
1117
+ };
1118
+ type LinkAuxiliaryJsonSchema = {
1119
+ DefaultImageName: string;
1120
+ MimicId: string;
1121
+ ImageLogic: LogicExpressionsJsonSchema;
1122
+ Design: string;
1123
+ ButtonColor: string;
1124
+ TextColor: string;
1125
+ TextHeight: number;
1126
+ ButtonTexts: LocalizedTextJsonSchema;
1127
+ };
1128
+ type PolylineAuxiliaryJsonSchema = {
1129
+ Lines: LineJsonSchema[];
1130
+ LineColorLogic: LogicExpressionsJsonSchema;
1131
+ };
1132
+ type SquareAuxiliaryJsonSchema = {
1133
+ Lines: LineJsonSchema[];
1134
+ ColorBorder: string;
1135
+ ColorFill: string;
1136
+ LineColorLogic: LogicExpressionsJsonSchema;
1137
+ };
1138
+ type TextAuxiliaryJsonSchema = {
1139
+ TextAttributes: TextAttributesJsonSchema;
1140
+ Text: LocalizedTextJsonSchema;
1141
+ };
1142
+
1143
+ declare const AlarmPriorities: {
1144
+ readonly CRITICAL: "Critical";
1145
+ readonly ALARM: "Alarm";
1146
+ readonly WARNING: "Warning";
1147
+ };
1148
+ type AlarmPriority = (typeof AlarmPriorities)[keyof typeof AlarmPriorities];
1149
+ declare const DiamarAlarmStates: {
1150
+ readonly INACTIVE: "Inactive";
1151
+ readonly ACKNOWLEDGED: "Acknowledged";
1152
+ readonly ACTIVE: "Active";
1153
+ readonly UNACKNOWLEDGED: "Unacknowledged";
1154
+ readonly UNDEFINED: "Undefined";
1155
+ };
1156
+ type DiamarAlarmState = (typeof DiamarAlarmStates)[keyof typeof DiamarAlarmStates];
1157
+ declare const CloudAlarmStates: {
1158
+ readonly INACTIVE: "Inactive";
1159
+ readonly ALARM: "Active";
1160
+ readonly ALARM_ACK: "Acknowledged";
1161
+ readonly WARNING: "WarningActive";
1162
+ readonly WARNING_ACK: "WarningAcknowledged";
1163
+ readonly RETURN_NO_ACK: "Unacknowledged";
1164
+ readonly INHIBITED: "Inhibited";
1165
+ readonly OFFSCAN: "Offscan";
1166
+ readonly UNDEFINED: "Undefined";
1167
+ };
1168
+ type CloudAlarmState = (typeof CloudAlarmStates)[keyof typeof CloudAlarmStates];
1169
+ declare const AlarmTypes: {
1170
+ readonly NORMAL: "Normal";
1171
+ readonly ALARM_OPEN: "AlarmOpen";
1172
+ readonly ALARM_CLOSE: "AlarmClose";
1173
+ readonly ALARM_IFH: "AlarmIfh";
1174
+ readonly ALARM_HH: "AlarmHh";
1175
+ readonly ALARM_H: "AlarmH";
1176
+ readonly ALARM_L: "AlarmL";
1177
+ readonly ALARM_LL: "AlarmLl";
1178
+ readonly ALARM_IFL: "AlarmIfl";
1179
+ readonly ALARM_OFFSCAN: "AlarmOffScan";
1180
+ readonly ALARM_FAIL: "AlarmFail";
1181
+ readonly ALARM_INH: "AlarmInh";
1182
+ readonly ALARM_UNK: "AlarmUnk";
1183
+ };
1184
+ type AlarmType = (typeof AlarmTypes)[keyof typeof AlarmTypes];
1185
+
1186
+ declare const ChannelBaseTypes: {
1187
+ readonly VIRTUAL_ANALOG: "VirtualAnalog";
1188
+ readonly VIRTUAL_DIGITAL: "VirtualDigital";
1189
+ readonly VIRTUAL_STRING: "VirtualString";
1190
+ readonly WIRED_ANALOG: "WiredAnalog";
1191
+ readonly WIRED_DIGITAL: "WiredDigital";
1192
+ };
1193
+ type ChannelBaseType = (typeof ChannelBaseTypes)[keyof typeof ChannelBaseTypes];
1194
+ declare const ChannelSpecificTypes: {
1195
+ readonly DIGITAL_INPUT: "DigitalInput";
1196
+ readonly DIGITAL_OUTPUT: "DigitalOutput";
1197
+ readonly ANALOG_INPUT: "AnalogInput";
1198
+ readonly ANALOG_OUTPUT: "AnalogOutput";
1199
+ readonly ANALOG_SOFTWARE: "AnalogSoftware";
1200
+ readonly DIGITAL_SOFTWARE: "DigitalSoftware";
1201
+ readonly VIRTUAL_STRING: "VirtualString";
1202
+ readonly COMMAND: "Command";
1203
+ readonly BROADCAST_COMMAND: "BroadcastCommand";
1204
+ readonly SOFTWARE: "Software";
1205
+ readonly ANALOG_TIMER: "AnalogTimer";
1206
+ readonly SERIAL_DIGITAL_INPUT: "SerialDigitalInput";
1207
+ readonly SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput";
1208
+ readonly SERIAL_LINE_COMMAND: "SerialLineCommand";
1209
+ readonly SERIAL_ANALOG_INPUT: "SerialAnalogInput";
1210
+ readonly SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput";
1211
+ };
1212
+ type ChannelSpecificType = (typeof ChannelSpecificTypes)[keyof typeof ChannelSpecificTypes];
1213
+
1214
+ declare const EventCategories: {
1215
+ readonly ACCESS_CONTROL: "AccessControl";
1216
+ readonly REQUEST_ERROR: "RequestErrors";
1217
+ readonly OS: "OperatingSystemEvents";
1218
+ readonly CONTROL: "ControlSystemEvents";
1219
+ readonly BACKUP: "BackupAndRestoreEvents";
1220
+ readonly CONFIG_CHANGE: "ConfigurationChanges";
1221
+ readonly LOGS: "AuditLogEvents";
1222
+ readonly POTENTIAL_ATTACK: "PotentialAttackActivity";
1223
+ };
1224
+ type EventCategory = (typeof EventCategories)[keyof typeof EventCategories];
1225
+ declare const EventCriticalities: {
1226
+ readonly VERBOSE: "Verbose";
1227
+ readonly INFO: "Info";
1228
+ readonly WARNING: "Warning";
1229
+ readonly ERROR: "Error";
1230
+ readonly CRITICAL: "Critical";
1231
+ };
1232
+ type EventCriticality = (typeof EventCriticalities)[keyof typeof EventCriticalities];
1233
+
1234
+ declare const UnitTypes: {
1235
+ readonly AIM18: "Aim18";
1236
+ readonly DIM36: "Dim36";
1237
+ readonly DIOM24: "Diom24";
1238
+ readonly KLIM: "Klim";
1239
+ readonly LUM: "Lum";
1240
+ readonly PMM: "Pmm";
1241
+ readonly SLIM: "Slim";
1242
+ readonly TIM28: "Tim28";
1243
+ };
1244
+ type UnitType = (typeof UnitTypes)[keyof typeof UnitTypes];
1245
+
1246
+ export { type GeneratorPmsJsonSchema as $, type AlarmIndicatorJsonSchema as A, type BackgroundJsonSchema as B, type ChannelJsonSchema as C, type DamperJsonSchema as D, type TitleJsonSchema as E, type FanJsonSchema as F, type AutomaticSemiAutoJsonSchema as G, type CommandsOpClJsonSchema as H, type ImageAuxiliaryJsonSchema as I, type CommandsStartStopJsonSchema as J, type ControlLockJsonSchema as K, type LineAuxiliaryJsonSchema as L, type FeedbackOpClJsonSchema as M, type FeedbackRunningStoppedJsonSchema as N, type OrderOpClJsonSchema as O, type PolylineAuxiliaryJsonSchema as P, type OrderStartStopJsonSchema as Q, type RepeaterJsonSchema as R, type SquareAuxiliaryJsonSchema as S, type TextAuxiliaryJsonSchema as T, type UnitJsonSchema as U, type ValveJsonSchema as V, type RemoteLocalJsonSchema as W, type TripResetJsonSchema as X, type BreakerJsonSchema as Y, type BreakerPmsJsonSchema as Z, type GeneratorJsonSchema as _, type LinkAuxiliaryJsonSchema as a, type PumpAutomatedResponseSchema as a$, type OperationModesJsonSchema as a0, type PriorityDataJsonSchema as a1, type PrioritiesJsonSchema as a2, type ShaftJsonSchema as a3, type ImageAuxiliaryRequestSchema as a4, type LineAuxiliaryRequestSchema as a5, type LinkAuxiliaryRequestSchema as a6, type PolylineAuxiliaryRequestSchema as a7, type SquareAuxiliaryRequestSchema as a8, type TextAuxiliaryRequestSchema as a9, type CommandsStartStopRequestSchema as aA, type ControlLockRequestSchema as aB, type FeedbackOpClRequestSchema as aC, type FeedbackRunningStoppedRequestSchema as aD, type OrderOpClRequestSchema as aE, type OrderStartStopRequestSchema as aF, type RemoteLocalRequestSchema as aG, type TripResetRequestSchema as aH, type BreakerRequestSchema as aI, type BreakerPmsRequestSchema as aJ, type GeneratorRequestSchema as aK, type GeneratorPmsRequestSchema as aL, type OperationModesRequestSchema as aM, type PriorityDataRequestSchema as aN, type PrioritiesRequestSchema as aO, type ShaftRequestSchema as aP, type ImageAuxiliaryResponseSchema as aQ, type LineAuxiliaryResponseSchema as aR, type LinkAuxiliaryResponseSchema as aS, type PolylineAuxiliaryResponseSchema as aT, type SquareAuxiliaryResponseSchema as aU, type TextAuxiliaryResponseSchema as aV, type CompressorResponseSchema as aW, type DamperResponseSchema as aX, type DamperAutomatedResponseSchema as aY, type FanResponseSchema as aZ, type PumpResponseSchema as a_, type ChannelRequestSchema as aa, type CompressorRequestSchema as ab, type DamperRequestSchema as ac, type DamperAutomatedRequestSchema as ad, type FanRequestSchema as ae, type PumpRequestSchema as af, type PumpAutomatedRequestSchema as ag, type TankRequestSchema as ah, type ValveRequestSchema as ai, type ValveAutomatedRequestSchema as aj, type AlarmIndicatorRequestSchema as ak, type CommandRequestSchema as al, type DialRequestSchema as am, type DigitalRequestSchema as an, type DisplayRequestSchema as ao, type DynamicTextRequestSchema as ap, type LevelBarRequestSchema as aq, type SliderRequestSchema as ar, type TextChannelRequestSchema as as, type ToggleRequestSchema as at, type CabinetRequestSchema as au, type RepeaterRequestSchema as av, type StationRequestSchema as aw, type UnitRequestSchema as ax, type AutomaticSemiAutoRequestSchema as ay, type CommandsOpClRequestSchema as az, type CompressorJsonSchema as b, type ValueType as b$, type TankResponseSchema as b0, type ValveResponseSchema as b1, type ValveAutomatedResponseSchema as b2, type AlarmIndicatorResponseSchema as b3, type CommandResponseSchema as b4, type DialResponseSchema as b5, type DigitalResponseSchema as b6, type DisplayResponseSchema as b7, type DynamicTextResponseSchema as b8, type LevelBarResponseSchema as b9, type DigitalState as bA, type EventCategory as bB, type EventCriticality as bC, type FanDesign as bD, type FanDirection as bE, type FanRunState as bF, type FanType as bG, type LedType as bH, type LevelBarOrientation as bI, type LineRequestSchema as bJ, type LinkDesign as bK, type MarkType as bL, type MimicAlarmState as bM, type MimicControlState as bN, type MimicElementType as bO, type OpClState as bP, type OperationModeState as bQ, type RemoteLocalState as bR, type RepeaterDesign as bS, type RunningStoppedState as bT, type ScalePosition as bU, type SliderOrientation as bV, type StationDesign as bW, type TextAnchorPoint as bX, type TitleAlign as bY, type UnitDesign as bZ, type UnitType as b_, type SliderResponseSchema as ba, type TextChannelResponseSchema as bb, type ToggleResponseSchema as bc, type CabinetResponseSchema as bd, type RepeaterResponseSchema as be, type StationResponseSchema as bf, type UnitResponseSchema as bg, type BreakerResponseSchema as bh, type BreakerPmsResponseSchema as bi, type GeneratorResponseSchema as bj, type GeneratorPmsResponseSchema as bk, type OperationModesResponseSchema as bl, type PrioritiesResponseSchema as bm, type ShaftResponseSchema as bn, type ActivationMode as bo, type AlarmPriority as bp, type AlarmState as bq, type AlarmType as br, type AutoSemiAutoState as bs, type CabinetDesign as bt, type ChannelBaseType as bu, type ChannelSpecificType as bv, type CloudAlarmState as bw, type CompressorDesign as bx, type DiamarAlarmState as by, type DigitalAlarmState as bz, type DamperAutomatedJsonSchema as c, type ValveDesign as c0, type ZDepth as c1, UnitTypes as c2, AlarmPriorities as c3, DiamarAlarmStates as c4, CloudAlarmStates as c5, AlarmTypes as c6, EventCategories as c7, EventCriticalities as c8, type InfoLocation as c9, type PumpJsonSchema as d, type PumpAutomatedJsonSchema as e, type TankJsonSchema as f, type ValveAutomatedJsonSchema as g, type CommandJsonSchema as h, type DialJsonSchema as i, type DigitalJsonSchema as j, type DisplayJsonSchema as k, type DynamicTextJsonSchema as l, type LevelBarJsonSchema as m, type SliderJsonSchema as n, type TextChannelJsonSchema as o, type ToggleJsonSchema as p, type CabinetJsonSchema as q, type StationJsonSchema as r, type AddedAlarmsJsonSchema as s, type LineJsonSchema as t, type LocalizedTextJsonSchema as u, type LocationJsonSchema as v, type LogicExpressionJsonSchema as w, type LogicExpressionsJsonSchema as x, type ScaleJsonSchema as y, type TextAttributesJsonSchema as z };