@sedni/cloud_common 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser-index.cjs +885 -0
- package/dist/browser-index.d.cts +377 -0
- package/dist/browser-index.d.ts +377 -0
- package/dist/browser-index.js +245 -0
- package/dist/chunk-FO3TASV6.js +805 -0
- package/dist/index.cjs +1665 -49
- package/dist/index.d.cts +933 -81
- package/dist/index.d.ts +933 -81
- package/dist/index.js +1082 -43
- package/dist/unit.types-BhezeBWA.d.cts +737 -0
- package/dist/unit.types-BhezeBWA.d.ts +737 -0
- package/package.json +9 -6
- package/dist/chunk-NCUZ3O3P.js +0 -152
- package/dist/node-entry.cjs +0 -1191
- package/dist/node-entry.d.cts +0 -53
- package/dist/node-entry.d.ts +0 -53
- package/dist/node-entry.js +0 -1078
|
@@ -0,0 +1,737 @@
|
|
|
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 ActivationModes: {
|
|
81
|
+
readonly ALARM: "Alarm";
|
|
82
|
+
readonly LOGIC: "Logic";
|
|
83
|
+
readonly VALUE: "Value";
|
|
84
|
+
};
|
|
85
|
+
type ActivationMode = (typeof ActivationModes)[keyof typeof ActivationModes];
|
|
86
|
+
declare const TextAnchorPoints: {
|
|
87
|
+
readonly LEFT: "Left";
|
|
88
|
+
readonly CENTER: "Center";
|
|
89
|
+
readonly RIGHT: "Right";
|
|
90
|
+
};
|
|
91
|
+
type TextAnchorPoint = (typeof TextAnchorPoints)[keyof typeof TextAnchorPoints];
|
|
92
|
+
declare const ValveDesigns: {
|
|
93
|
+
readonly MECHANIC: "Mechanic";
|
|
94
|
+
readonly NORMAL: "Normal";
|
|
95
|
+
};
|
|
96
|
+
type ValveDesign = (typeof ValveDesigns)[keyof typeof ValveDesigns];
|
|
97
|
+
declare const FanDesigns: {
|
|
98
|
+
readonly NORMAL: "Normal";
|
|
99
|
+
readonly BLADED: "Bladed";
|
|
100
|
+
};
|
|
101
|
+
type FanDesign = (typeof FanDesigns)[keyof typeof FanDesigns];
|
|
102
|
+
declare const FanRunStates: {
|
|
103
|
+
readonly NO_VALUE: "NoValue";
|
|
104
|
+
readonly UNDEFINED: "Undefined";
|
|
105
|
+
readonly STOPPED: "Stopped";
|
|
106
|
+
readonly RUNNING: "Running";
|
|
107
|
+
readonly RUNNING_FAST: "RunningFast";
|
|
108
|
+
};
|
|
109
|
+
type FanRunState = (typeof FanRunStates)[keyof typeof FanRunStates];
|
|
110
|
+
declare const FanDirections: {
|
|
111
|
+
readonly NO_VALUE: "NoValue";
|
|
112
|
+
readonly UNDEFINED: "Undefined";
|
|
113
|
+
readonly SUPPLY: "Supply";
|
|
114
|
+
readonly EXHAUST: "Exhaust";
|
|
115
|
+
};
|
|
116
|
+
type FanDirection = (typeof FanDirections)[keyof typeof FanDirections];
|
|
117
|
+
declare const FanTypes: {
|
|
118
|
+
readonly SIMPLE: "Simple";
|
|
119
|
+
readonly SIMPLE_WITH_FAST: "SimpleWithFast";
|
|
120
|
+
readonly REVERSIBLE: "Reversible";
|
|
121
|
+
readonly REVERSIBLE_WITH_FAST: "ReversibleWithFast";
|
|
122
|
+
};
|
|
123
|
+
type FanType = (typeof FanTypes)[keyof typeof FanTypes];
|
|
124
|
+
declare const LevelBarOrientations: {
|
|
125
|
+
readonly VERTICAL: "Vertical";
|
|
126
|
+
readonly HORIZONTAL: "Horizontal";
|
|
127
|
+
};
|
|
128
|
+
type LevelBarOrientation = (typeof LevelBarOrientations)[keyof typeof LevelBarOrientations];
|
|
129
|
+
declare const SliderOrientations: {
|
|
130
|
+
readonly VERTICAL: "Vertical";
|
|
131
|
+
readonly HORIZONTAL: "Horizontal";
|
|
132
|
+
};
|
|
133
|
+
type SliderOrientation = (typeof SliderOrientations)[keyof typeof SliderOrientations];
|
|
134
|
+
declare const CompressorDesigns: {
|
|
135
|
+
readonly CENTRIFUGAL: "Centrifugal";
|
|
136
|
+
readonly MECHANIC: "Mechanic";
|
|
137
|
+
readonly NORMAL: "Normal";
|
|
138
|
+
readonly PISTONS: "Pistons";
|
|
139
|
+
readonly ROTATORY_SCREW: "RotatoryScrew";
|
|
140
|
+
readonly SCROLL: "Scroll";
|
|
141
|
+
readonly VANES: "Vanes";
|
|
142
|
+
};
|
|
143
|
+
type CompressorDesign = (typeof CompressorDesigns)[keyof typeof CompressorDesigns];
|
|
144
|
+
declare const LedTypes: {
|
|
145
|
+
readonly CIRCLE: "Circle";
|
|
146
|
+
readonly SQUARE: "Square";
|
|
147
|
+
};
|
|
148
|
+
type LedType = (typeof LedTypes)[keyof typeof LedTypes];
|
|
149
|
+
declare const InfoLocations: {
|
|
150
|
+
readonly BOTTOM: "Bottom";
|
|
151
|
+
readonly LEFT: "Left";
|
|
152
|
+
readonly RIGHT: "Right";
|
|
153
|
+
readonly TOP: "Top";
|
|
154
|
+
};
|
|
155
|
+
type InfoLocation = (typeof InfoLocations)[keyof typeof InfoLocations];
|
|
156
|
+
declare const MarkTypes: {
|
|
157
|
+
readonly LARGE_LINE: "LargeLine";
|
|
158
|
+
readonly SHORT_LINE: "ShortLine";
|
|
159
|
+
readonly TRIANGLE: "Triangle";
|
|
160
|
+
};
|
|
161
|
+
type MarkType = (typeof MarkTypes)[keyof typeof MarkTypes];
|
|
162
|
+
declare const ScalePositions: {
|
|
163
|
+
readonly LEFT: "Left";
|
|
164
|
+
readonly RIGHT: "Right";
|
|
165
|
+
};
|
|
166
|
+
type ScalePosition = (typeof ScalePositions)[keyof typeof ScalePositions];
|
|
167
|
+
declare const ValueTypes: {
|
|
168
|
+
readonly PERCENTAGE: "Percentage";
|
|
169
|
+
readonly RAW: "Raw";
|
|
170
|
+
};
|
|
171
|
+
type ValueType = (typeof ValueTypes)[keyof typeof ValueTypes];
|
|
172
|
+
declare const OperationModeStates: {
|
|
173
|
+
readonly ACTIVE: 0;
|
|
174
|
+
readonly INACTIVE: 1;
|
|
175
|
+
readonly IN_TRANSITION: 2;
|
|
176
|
+
readonly FAILED: 3;
|
|
177
|
+
};
|
|
178
|
+
type OperationModeState = (typeof OperationModeStates)[keyof typeof OperationModeStates];
|
|
179
|
+
declare const UnitDesigns: {
|
|
180
|
+
readonly IMAGE: "Image";
|
|
181
|
+
readonly MODERN: "Modern";
|
|
182
|
+
};
|
|
183
|
+
type UnitDesign = (typeof UnitDesigns)[keyof typeof UnitDesigns];
|
|
184
|
+
declare const StationDesigns: {
|
|
185
|
+
readonly IMAGE: "Image";
|
|
186
|
+
readonly MONITOR: "Monitor";
|
|
187
|
+
readonly SCREEN: "Screen";
|
|
188
|
+
};
|
|
189
|
+
type StationDesign = (typeof StationDesigns)[keyof typeof StationDesigns];
|
|
190
|
+
declare const RepeaterDesigns: {
|
|
191
|
+
readonly IMAGE: "Image";
|
|
192
|
+
readonly SLIM: "SLim";
|
|
193
|
+
readonly DIAMAR_REPEATER: "DiamarRepeater";
|
|
194
|
+
};
|
|
195
|
+
type RepeaterDesign = (typeof RepeaterDesigns)[keyof typeof RepeaterDesigns];
|
|
196
|
+
declare const CabinetDesigns: {
|
|
197
|
+
readonly IMAGE: "Image";
|
|
198
|
+
readonly MODERN: "Modern";
|
|
199
|
+
};
|
|
200
|
+
type CabinetDesign = (typeof CabinetDesigns)[keyof typeof CabinetDesigns];
|
|
201
|
+
declare const LinkDesigns: {
|
|
202
|
+
readonly BUTTON: "Button";
|
|
203
|
+
readonly IMAGE: "Image";
|
|
204
|
+
};
|
|
205
|
+
type LinkDesign = (typeof LinkDesigns)[keyof typeof LinkDesigns];
|
|
206
|
+
declare const OpClStates: {
|
|
207
|
+
readonly NO_VALUE: "NoValue";
|
|
208
|
+
readonly OPEN: "Open";
|
|
209
|
+
readonly CLOSE: "Close";
|
|
210
|
+
readonly UNDEFINED: "Undefined";
|
|
211
|
+
};
|
|
212
|
+
type OpClState = (typeof OpClStates)[keyof typeof OpClStates];
|
|
213
|
+
declare const RunningStoppedStates: {
|
|
214
|
+
readonly NO_VALUE: "NoValue";
|
|
215
|
+
readonly RUNNING: "Running";
|
|
216
|
+
readonly STOPPED: "Stopped";
|
|
217
|
+
readonly UNDEFINED: "Undefined";
|
|
218
|
+
};
|
|
219
|
+
type RunningStoppedState = (typeof RunningStoppedStates)[keyof typeof RunningStoppedStates];
|
|
220
|
+
|
|
221
|
+
type AddedAlarmsJsonSchema = {
|
|
222
|
+
Channels: {
|
|
223
|
+
ChannelId: string;
|
|
224
|
+
}[];
|
|
225
|
+
};
|
|
226
|
+
type BackgroundJsonSchema = {
|
|
227
|
+
Show: boolean;
|
|
228
|
+
};
|
|
229
|
+
type LineJsonSchema = {
|
|
230
|
+
Color: string;
|
|
231
|
+
Width: number;
|
|
232
|
+
Start: {
|
|
233
|
+
X: number;
|
|
234
|
+
Y: number;
|
|
235
|
+
};
|
|
236
|
+
End: {
|
|
237
|
+
X: number;
|
|
238
|
+
Y: number;
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
type LocalizedTextJsonSchema = {
|
|
242
|
+
English: string;
|
|
243
|
+
Spanish: string;
|
|
244
|
+
French: string;
|
|
245
|
+
German: string;
|
|
246
|
+
};
|
|
247
|
+
type LocationJsonSchema = {
|
|
248
|
+
X: number;
|
|
249
|
+
Y: number;
|
|
250
|
+
Z: number;
|
|
251
|
+
Rotation: number;
|
|
252
|
+
};
|
|
253
|
+
type LogicExpressionJsonSchema = {
|
|
254
|
+
Expression: string;
|
|
255
|
+
Value: undefined;
|
|
256
|
+
Variables: string[];
|
|
257
|
+
};
|
|
258
|
+
type LogicExpressionsJsonSchema = {
|
|
259
|
+
LogicExpressions: LogicExpressionJsonSchema[];
|
|
260
|
+
};
|
|
261
|
+
type ScaleJsonSchema = {
|
|
262
|
+
Show: boolean;
|
|
263
|
+
TextHeight: number;
|
|
264
|
+
Color: string;
|
|
265
|
+
Position: string;
|
|
266
|
+
LineWidth: number;
|
|
267
|
+
DivisionsNumber: number;
|
|
268
|
+
SubdivisionsNumber: number;
|
|
269
|
+
};
|
|
270
|
+
type TextAttributesJsonSchema = {
|
|
271
|
+
AnchorPoint: TextAnchorPoint;
|
|
272
|
+
Color: string;
|
|
273
|
+
HasUnderline: boolean;
|
|
274
|
+
UnderlineColor: string;
|
|
275
|
+
UnderlineLength: number;
|
|
276
|
+
UnderlineWidth: number;
|
|
277
|
+
};
|
|
278
|
+
type TitleJsonSchema = {
|
|
279
|
+
Show: boolean;
|
|
280
|
+
Height: number;
|
|
281
|
+
Padding: number;
|
|
282
|
+
Align: TitleAlign;
|
|
283
|
+
Color: string;
|
|
284
|
+
Text: LocalizedTextJsonSchema;
|
|
285
|
+
Location: LocationJsonSchema;
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
type ChannelJsonSchema = {
|
|
289
|
+
WithBackup: boolean;
|
|
290
|
+
Main: string | null;
|
|
291
|
+
Backup: string | null;
|
|
292
|
+
Max: number;
|
|
293
|
+
Min: number;
|
|
294
|
+
Units: string;
|
|
295
|
+
};
|
|
296
|
+
|
|
297
|
+
type AutomaticSemiAutoJsonSchema = {
|
|
298
|
+
withAutomatic: boolean;
|
|
299
|
+
automaticCommand: ChannelJsonSchema;
|
|
300
|
+
semiAutoCommand: ChannelJsonSchema;
|
|
301
|
+
automaticFeedback: ChannelJsonSchema;
|
|
302
|
+
hasSemiAutoFeedback: boolean;
|
|
303
|
+
semiAutoFeedback: ChannelJsonSchema;
|
|
304
|
+
};
|
|
305
|
+
type CommandsOpClJsonSchema = {
|
|
306
|
+
commandOpen: ChannelJsonSchema;
|
|
307
|
+
commandClose: ChannelJsonSchema;
|
|
308
|
+
};
|
|
309
|
+
type CommandsStartStopJsonSchema = {
|
|
310
|
+
commandStart: ChannelJsonSchema;
|
|
311
|
+
commandStop: ChannelJsonSchema;
|
|
312
|
+
};
|
|
313
|
+
type ControlLockJsonSchema = {
|
|
314
|
+
hasControlLock: boolean;
|
|
315
|
+
controlLock: ChannelJsonSchema;
|
|
316
|
+
};
|
|
317
|
+
type FeedbackOpClJsonSchema = {
|
|
318
|
+
openFeedback: ChannelJsonSchema;
|
|
319
|
+
closeFeedback: ChannelJsonSchema;
|
|
320
|
+
};
|
|
321
|
+
type FeedbackRunningStoppedJsonSchema = {
|
|
322
|
+
runFeedback: ChannelJsonSchema;
|
|
323
|
+
hasStoppedFeedback: boolean;
|
|
324
|
+
stoppedFeedback: ChannelJsonSchema;
|
|
325
|
+
};
|
|
326
|
+
type OrderOpClJsonSchema = {
|
|
327
|
+
openOrder: ChannelJsonSchema;
|
|
328
|
+
closeOrder: ChannelJsonSchema;
|
|
329
|
+
};
|
|
330
|
+
type OrderStartStopJsonSchema = {
|
|
331
|
+
startOrder: ChannelJsonSchema;
|
|
332
|
+
stopOrder: ChannelJsonSchema;
|
|
333
|
+
};
|
|
334
|
+
type RemoteLocalJsonSchema = {
|
|
335
|
+
remoteFeedback: ChannelJsonSchema;
|
|
336
|
+
hasLocalFeedback: boolean;
|
|
337
|
+
localFeedback: ChannelJsonSchema;
|
|
338
|
+
};
|
|
339
|
+
type TripResetJsonSchema = {
|
|
340
|
+
tripFeedback: ChannelJsonSchema;
|
|
341
|
+
withCommandReset: boolean;
|
|
342
|
+
resetCommand: ChannelJsonSchema;
|
|
343
|
+
};
|
|
344
|
+
|
|
345
|
+
type BreakerJsonSchema = {
|
|
346
|
+
FeedbackOpCl: FeedbackOpClJsonSchema;
|
|
347
|
+
CommandsOpCl: CommandsOpClJsonSchema;
|
|
348
|
+
ControlLock: ControlLockJsonSchema;
|
|
349
|
+
OrderOpCl: OrderOpClJsonSchema;
|
|
350
|
+
RemoteLocal: RemoteLocalJsonSchema;
|
|
351
|
+
TripReset: TripResetJsonSchema;
|
|
352
|
+
AutomaticManual: AutomaticSemiAutoJsonSchema;
|
|
353
|
+
IsControl: boolean;
|
|
354
|
+
RemoteIconSize: number;
|
|
355
|
+
};
|
|
356
|
+
type BreakerPmsJsonSchema = {
|
|
357
|
+
Breaker: string;
|
|
358
|
+
RemoteIconSize: number;
|
|
359
|
+
CommandsOpCl: CommandsOpClJsonSchema;
|
|
360
|
+
TripReset: TripResetJsonSchema;
|
|
361
|
+
};
|
|
362
|
+
type GeneratorJsonSchema = {
|
|
363
|
+
AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
|
|
364
|
+
CommandsStartStop: CommandsStartStopJsonSchema;
|
|
365
|
+
FeedbackRunningStopped: FeedbackRunningStoppedJsonSchema;
|
|
366
|
+
OrderStartStop: OrderStartStopJsonSchema;
|
|
367
|
+
RemoteLocal: RemoteLocalJsonSchema;
|
|
368
|
+
TripReset: TripResetJsonSchema;
|
|
369
|
+
OrderAuto: ChannelJsonSchema;
|
|
370
|
+
OrderSemiAuto: ChannelJsonSchema;
|
|
371
|
+
IsControl: boolean;
|
|
372
|
+
};
|
|
373
|
+
type GeneratorPmsJsonSchema = {
|
|
374
|
+
Generator: string;
|
|
375
|
+
GeneratorNameColor: string;
|
|
376
|
+
AutomaticSemiAutoTrait: AutomaticSemiAutoJsonSchema;
|
|
377
|
+
CommandsStartStopTrait: CommandsStartStopJsonSchema;
|
|
378
|
+
TripResetTrait: TripResetJsonSchema;
|
|
379
|
+
};
|
|
380
|
+
type OperationModesJsonSchema = {
|
|
381
|
+
TextHeight: number;
|
|
382
|
+
ModeToReach: string;
|
|
383
|
+
Messages: LocalizedTextJsonSchema;
|
|
384
|
+
};
|
|
385
|
+
type PriorityDataJsonSchema = {
|
|
386
|
+
Name: string;
|
|
387
|
+
ChannelPriority: string;
|
|
388
|
+
ChannelPriorityFeedback: string;
|
|
389
|
+
};
|
|
390
|
+
type PrioritiesJsonSchema = {
|
|
391
|
+
TextHeight: number;
|
|
392
|
+
HasPassword: boolean;
|
|
393
|
+
Texts: LocalizedTextJsonSchema;
|
|
394
|
+
Priorities: PriorityDataJsonSchema[];
|
|
395
|
+
};
|
|
396
|
+
type ShaftJsonSchema = {
|
|
397
|
+
WithFeedbackOpen: boolean;
|
|
398
|
+
ActivationMode: string;
|
|
399
|
+
ActivationValue: boolean;
|
|
400
|
+
OpenFeedback: ChannelJsonSchema;
|
|
401
|
+
CloseFeedback: ChannelJsonSchema;
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
type CabinetJsonSchema = {
|
|
405
|
+
Design: CabinetDesign;
|
|
406
|
+
ImageName: string;
|
|
407
|
+
CabinetId: string;
|
|
408
|
+
};
|
|
409
|
+
type RepeaterJsonSchema = {
|
|
410
|
+
Design: RepeaterDesign;
|
|
411
|
+
ImageName: string;
|
|
412
|
+
RepeaterId: string;
|
|
413
|
+
};
|
|
414
|
+
type StationJsonSchema = {
|
|
415
|
+
Design: StationDesign;
|
|
416
|
+
ImageName: string;
|
|
417
|
+
StationId: string;
|
|
418
|
+
};
|
|
419
|
+
type UnitJsonSchema = {
|
|
420
|
+
Design: UnitDesign;
|
|
421
|
+
ImageName: string;
|
|
422
|
+
UnitId: string;
|
|
423
|
+
};
|
|
424
|
+
|
|
425
|
+
type AlarmIndicatorJsonSchema = {
|
|
426
|
+
TextHeight: number;
|
|
427
|
+
TextColor: string;
|
|
428
|
+
Texts: LocalizedTextJsonSchema;
|
|
429
|
+
AlarmFeedback: ChannelJsonSchema;
|
|
430
|
+
};
|
|
431
|
+
type CommandJsonSchema = {
|
|
432
|
+
TextHeight: number;
|
|
433
|
+
MessageColor: string;
|
|
434
|
+
TimeoutCommandCheck: number;
|
|
435
|
+
CommandCheckColor: string;
|
|
436
|
+
TimeoutCommandResult: number;
|
|
437
|
+
CommandOkColor: string;
|
|
438
|
+
CommandErrorColor: string;
|
|
439
|
+
HasConfirmation: boolean;
|
|
440
|
+
HasPassword: boolean;
|
|
441
|
+
CommandChannel: ChannelJsonSchema;
|
|
442
|
+
CloseChannel: ChannelJsonSchema;
|
|
443
|
+
Messages: LocalizedTextJsonSchema;
|
|
444
|
+
ConfirmationMessages: LocalizedTextJsonSchema;
|
|
445
|
+
};
|
|
446
|
+
type DialJsonSchema = {
|
|
447
|
+
Color: string;
|
|
448
|
+
ShowTextValue: boolean;
|
|
449
|
+
Factor: number;
|
|
450
|
+
ShowAlarmLimits: boolean;
|
|
451
|
+
ShowFactor: boolean;
|
|
452
|
+
DivisionsNumber: number;
|
|
453
|
+
SubdivisionsNumber: number;
|
|
454
|
+
Channel: ChannelJsonSchema;
|
|
455
|
+
};
|
|
456
|
+
type DigitalJsonSchema = {
|
|
457
|
+
TextHeight: number;
|
|
458
|
+
LedType: LedType;
|
|
459
|
+
OpenLedColor: string;
|
|
460
|
+
CloseLedColor: string;
|
|
461
|
+
OpenTexts: LocalizedTextJsonSchema;
|
|
462
|
+
CloseTexts: LocalizedTextJsonSchema;
|
|
463
|
+
FeedbackOpCl: FeedbackOpClJsonSchema;
|
|
464
|
+
};
|
|
465
|
+
type DisplayJsonSchema = {
|
|
466
|
+
HeightText: number;
|
|
467
|
+
TextColor: string;
|
|
468
|
+
ShowMeasureUnit: boolean;
|
|
469
|
+
NumCharactersDisplay: number;
|
|
470
|
+
Channel: ChannelJsonSchema;
|
|
471
|
+
};
|
|
472
|
+
type DynamicTextJsonSchema = {
|
|
473
|
+
TextAttributes: TextAttributesJsonSchema;
|
|
474
|
+
DefaultTextColor: string;
|
|
475
|
+
DefaultText: LocalizedTextJsonSchema;
|
|
476
|
+
TextLogic: LogicExpressionsJsonSchema;
|
|
477
|
+
};
|
|
478
|
+
type LevelBarJsonSchema = {
|
|
479
|
+
Orientation: LevelBarOrientation;
|
|
480
|
+
BackgroundColor: string;
|
|
481
|
+
ForegroundColor: string;
|
|
482
|
+
ShowTextValue: boolean;
|
|
483
|
+
TextValueHeight: number;
|
|
484
|
+
ValueType: ValueType;
|
|
485
|
+
ShowAlarmLimits: boolean;
|
|
486
|
+
MarkType: MarkType;
|
|
487
|
+
Scale: ScaleJsonSchema;
|
|
488
|
+
LevelChannel: ChannelJsonSchema;
|
|
489
|
+
};
|
|
490
|
+
type SliderJsonSchema = {
|
|
491
|
+
Orientation: SliderOrientation;
|
|
492
|
+
Steps: number;
|
|
493
|
+
ColorBackground: string;
|
|
494
|
+
ColorValue: string;
|
|
495
|
+
ColorValueCircle: string;
|
|
496
|
+
HasTextValue: boolean;
|
|
497
|
+
ColorTextValue: string;
|
|
498
|
+
TextValueFontSize: number;
|
|
499
|
+
IsVisualizationOnly: boolean;
|
|
500
|
+
Channel: ChannelJsonSchema;
|
|
501
|
+
};
|
|
502
|
+
type TextChannelJsonSchema = {
|
|
503
|
+
TextAttributes: TextAttributesJsonSchema;
|
|
504
|
+
Channel: ChannelJsonSchema;
|
|
505
|
+
};
|
|
506
|
+
type ToggleJsonSchema = {
|
|
507
|
+
ColorCircle: string;
|
|
508
|
+
ColorOnBackground: string;
|
|
509
|
+
ColorOffBackground: string;
|
|
510
|
+
DisplayValue: boolean;
|
|
511
|
+
OnTextValue: string;
|
|
512
|
+
OnTextValueColor: string;
|
|
513
|
+
OffTextValue: string;
|
|
514
|
+
OffTextValueColor: string;
|
|
515
|
+
IsVisualizationOnly: boolean;
|
|
516
|
+
Channel: ChannelJsonSchema;
|
|
517
|
+
CommandOnChannel: ChannelJsonSchema;
|
|
518
|
+
CommandOffChannel: ChannelJsonSchema;
|
|
519
|
+
};
|
|
520
|
+
|
|
521
|
+
type CompressorJsonSchema = {
|
|
522
|
+
AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
|
|
523
|
+
CommandsStartStop: CommandsStartStopJsonSchema;
|
|
524
|
+
ControlLock: ControlLockJsonSchema;
|
|
525
|
+
FeedbackRunningStopped: FeedbackRunningStoppedJsonSchema;
|
|
526
|
+
OrderStartStop: OrderStartStopJsonSchema;
|
|
527
|
+
RemoteLocal: RemoteLocalJsonSchema;
|
|
528
|
+
TripReset: TripResetJsonSchema;
|
|
529
|
+
IsControl: boolean;
|
|
530
|
+
CompressorDesign: CompressorDesign;
|
|
531
|
+
};
|
|
532
|
+
type DamperJsonSchema = {
|
|
533
|
+
FeedbackAutoSemiAuto: AutomaticSemiAutoJsonSchema;
|
|
534
|
+
FeedbackOpCl: FeedbackOpClJsonSchema;
|
|
535
|
+
CommandsOpCl: CommandsOpClJsonSchema;
|
|
536
|
+
ControlLock: ControlLockJsonSchema;
|
|
537
|
+
OrderOpCl: OrderOpClJsonSchema;
|
|
538
|
+
RemoteLocal: RemoteLocalJsonSchema;
|
|
539
|
+
TripReset: TripResetJsonSchema;
|
|
540
|
+
IsControl: boolean;
|
|
541
|
+
};
|
|
542
|
+
type DamperAutomatedJsonSchema = {
|
|
543
|
+
Damper: string;
|
|
544
|
+
CommandsOpClTrait: CommandsOpClJsonSchema;
|
|
545
|
+
TripResetTrait: TripResetJsonSchema;
|
|
546
|
+
};
|
|
547
|
+
type FanJsonSchema = {
|
|
548
|
+
AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
|
|
549
|
+
ControlLock: ControlLockJsonSchema;
|
|
550
|
+
RemoteLocal: RemoteLocalJsonSchema;
|
|
551
|
+
TripReset: TripResetJsonSchema;
|
|
552
|
+
FanMode: FanType;
|
|
553
|
+
FanDesign: FanDesign;
|
|
554
|
+
SpeedFeedback: ChannelJsonSchema;
|
|
555
|
+
ConsignedSpeed: ChannelJsonSchema;
|
|
556
|
+
UserConsignedSpeed: ChannelJsonSchema;
|
|
557
|
+
RunFeedbackSupply: ChannelJsonSchema;
|
|
558
|
+
RunFeedbackSupplyFast: ChannelJsonSchema;
|
|
559
|
+
RunFeedbackExhaust: ChannelJsonSchema;
|
|
560
|
+
RunFeedbackExhaustFast: ChannelJsonSchema;
|
|
561
|
+
StoppedFeedback: ChannelJsonSchema;
|
|
562
|
+
StartOrderSupply: ChannelJsonSchema;
|
|
563
|
+
StartOrderSupplyFast: ChannelJsonSchema;
|
|
564
|
+
StartOrderExhaust: ChannelJsonSchema;
|
|
565
|
+
StartOrderExhaustFast: ChannelJsonSchema;
|
|
566
|
+
StopOrder: ChannelJsonSchema;
|
|
567
|
+
StartCommandSupply: ChannelJsonSchema;
|
|
568
|
+
StartCommandSupplyFast: ChannelJsonSchema;
|
|
569
|
+
StartCommandExhaust: ChannelJsonSchema;
|
|
570
|
+
StartCommandExhaustFast: ChannelJsonSchema;
|
|
571
|
+
StopCommand: ChannelJsonSchema;
|
|
572
|
+
StartCommandSupplyConfirmation: LocalizedTextJsonSchema;
|
|
573
|
+
StartCommandSupplyFastConfirmation: LocalizedTextJsonSchema;
|
|
574
|
+
StartCommandExhaustConfirmation: LocalizedTextJsonSchema;
|
|
575
|
+
StartCommandExhaustFastConfirmation: LocalizedTextJsonSchema;
|
|
576
|
+
StopCommandConfirmation: LocalizedTextJsonSchema;
|
|
577
|
+
};
|
|
578
|
+
type PumpJsonSchema = {
|
|
579
|
+
AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
|
|
580
|
+
ControlLock: ControlLockJsonSchema;
|
|
581
|
+
CommandsStartStop: CommandsStartStopJsonSchema;
|
|
582
|
+
FeedbackRunningStopped: FeedbackRunningStoppedJsonSchema;
|
|
583
|
+
OrderStartStop: OrderStartStopJsonSchema;
|
|
584
|
+
RemoteLocal: RemoteLocalJsonSchema;
|
|
585
|
+
TripReset: TripResetJsonSchema;
|
|
586
|
+
IsControl: boolean;
|
|
587
|
+
PumpDesign: CompressorDesign;
|
|
588
|
+
};
|
|
589
|
+
type PumpAutomatedJsonSchema = {
|
|
590
|
+
Pump: string;
|
|
591
|
+
PumpDesign: CompressorDesign;
|
|
592
|
+
AutomaticSemiAuto: AutomaticSemiAutoJsonSchema;
|
|
593
|
+
TripReset: TripResetJsonSchema;
|
|
594
|
+
};
|
|
595
|
+
type TankJsonSchema = {
|
|
596
|
+
TankName: string;
|
|
597
|
+
LocationInfo: InfoLocation;
|
|
598
|
+
ShowVolume: boolean;
|
|
599
|
+
ShowVolumeInPercent: boolean;
|
|
600
|
+
ShowVolumeInMeters: boolean;
|
|
601
|
+
ShowVolumeInLitres: boolean;
|
|
602
|
+
ShowWeight: boolean;
|
|
603
|
+
ShowSounding: boolean;
|
|
604
|
+
TextValueHeight: number;
|
|
605
|
+
TextValuePadding: number;
|
|
606
|
+
BackgroundColor: string;
|
|
607
|
+
ContentColor: string;
|
|
608
|
+
ShowAlarmLimits: boolean;
|
|
609
|
+
MarkType: MarkType;
|
|
610
|
+
Scale: ScaleJsonSchema;
|
|
611
|
+
};
|
|
612
|
+
type ValveJsonSchema = {
|
|
613
|
+
IsControl: boolean;
|
|
614
|
+
ValveDesign: ValveDesign;
|
|
615
|
+
FeedbackOpCl: FeedbackOpClJsonSchema;
|
|
616
|
+
CommandsOpCl: CommandsOpClJsonSchema;
|
|
617
|
+
OrderOpCl: OrderOpClJsonSchema;
|
|
618
|
+
ControlLock: ControlLockJsonSchema;
|
|
619
|
+
RemoteLocal: RemoteLocalJsonSchema;
|
|
620
|
+
TripReset: TripResetJsonSchema;
|
|
621
|
+
};
|
|
622
|
+
type ValveAutomatedJsonSchema = {
|
|
623
|
+
Valve: string;
|
|
624
|
+
ValveDesign: ValveDesign;
|
|
625
|
+
CommandsOpCl: CommandsOpClJsonSchema;
|
|
626
|
+
TripReset: TripResetJsonSchema;
|
|
627
|
+
};
|
|
628
|
+
|
|
629
|
+
type ImageAuxiliaryJsonSchema = {
|
|
630
|
+
DefaultImageName: string;
|
|
631
|
+
ImageLogic: LogicExpressionsJsonSchema;
|
|
632
|
+
};
|
|
633
|
+
type LineAuxiliaryJsonSchema = {
|
|
634
|
+
Line: LineJsonSchema;
|
|
635
|
+
LineColorLogic: LogicExpressionsJsonSchema;
|
|
636
|
+
};
|
|
637
|
+
type LinkAuxiliaryJsonSchema = {
|
|
638
|
+
DefaultImageName: string;
|
|
639
|
+
MimicId: string;
|
|
640
|
+
ImageLogic: LogicExpressionsJsonSchema;
|
|
641
|
+
Design: string;
|
|
642
|
+
ButtonColor: string;
|
|
643
|
+
TextColor: string;
|
|
644
|
+
TextHeight: number;
|
|
645
|
+
ButtonTexts: LocalizedTextJsonSchema;
|
|
646
|
+
};
|
|
647
|
+
type PolylineAuxiliaryJsonSchema = {
|
|
648
|
+
Lines: LineJsonSchema[];
|
|
649
|
+
LineColorLogic: LogicExpressionsJsonSchema;
|
|
650
|
+
};
|
|
651
|
+
type SquareAuxiliaryJsonSchema = {
|
|
652
|
+
Lines: LineJsonSchema[];
|
|
653
|
+
ColorBorder: string;
|
|
654
|
+
ColorFill: string;
|
|
655
|
+
LineColorLogic: LogicExpressionsJsonSchema;
|
|
656
|
+
};
|
|
657
|
+
type TextAuxiliaryJsonSchema = {
|
|
658
|
+
TextAttributes: TextAttributesJsonSchema;
|
|
659
|
+
Text: LocalizedTextJsonSchema;
|
|
660
|
+
};
|
|
661
|
+
|
|
662
|
+
declare const AlarmPriorities: {
|
|
663
|
+
readonly CRITICAL: "Critical";
|
|
664
|
+
readonly ALARM: "Alarm";
|
|
665
|
+
readonly WARNING: "Warning";
|
|
666
|
+
};
|
|
667
|
+
type AlarmPriority = (typeof AlarmPriorities)[keyof typeof AlarmPriorities];
|
|
668
|
+
declare const DiamarAlarmStates: {
|
|
669
|
+
readonly INACTIVE: "Inactive";
|
|
670
|
+
readonly ACKNOWLEDGED: "Acknowledged";
|
|
671
|
+
readonly ACTIVE: "Active";
|
|
672
|
+
readonly UNACKNOWLEDGED: "Unacknowledged";
|
|
673
|
+
readonly UNDEFINED: "Undefined";
|
|
674
|
+
};
|
|
675
|
+
type DiamarAlarmState = (typeof DiamarAlarmStates)[keyof typeof DiamarAlarmStates];
|
|
676
|
+
declare const CloudAlarmStates: {
|
|
677
|
+
readonly INACTIVE: "Inactive";
|
|
678
|
+
readonly ALARM: "Active";
|
|
679
|
+
readonly ALARM_ACK: "Acknowledged";
|
|
680
|
+
readonly WARNING: "WarningActive";
|
|
681
|
+
readonly WARNING_ACK: "WarningAcknowledged";
|
|
682
|
+
readonly RETURN_NO_ACK: "Unacknowledged";
|
|
683
|
+
readonly INHIBITED: "Inhibited";
|
|
684
|
+
readonly OFFSCAN: "Offscan";
|
|
685
|
+
readonly UNDEFINED: "Undefined";
|
|
686
|
+
};
|
|
687
|
+
type CloudAlarmState = (typeof CloudAlarmStates)[keyof typeof CloudAlarmStates];
|
|
688
|
+
declare const AlarmTypes: {
|
|
689
|
+
readonly NORMAL: "Normal";
|
|
690
|
+
readonly ALARM_OPEN: "AlarmOpen";
|
|
691
|
+
readonly ALARM_CLOSE: "AlarmClose";
|
|
692
|
+
readonly ALARM_IFH: "AlarmIfh";
|
|
693
|
+
readonly ALARM_HH: "AlarmHh";
|
|
694
|
+
readonly ALARM_H: "AlarmH";
|
|
695
|
+
readonly ALARM_L: "AlarmL";
|
|
696
|
+
readonly ALARM_LL: "AlarmLl";
|
|
697
|
+
readonly ALARM_IFL: "AlarmIfl";
|
|
698
|
+
readonly ALARM_OFFSCAN: "AlarmOffScan";
|
|
699
|
+
readonly ALARM_FAIL: "AlarmFail";
|
|
700
|
+
readonly ALARM_INH: "AlarmInh";
|
|
701
|
+
readonly ALARM_UNK: "AlarmUnk";
|
|
702
|
+
};
|
|
703
|
+
type AlarmType = (typeof AlarmTypes)[keyof typeof AlarmTypes];
|
|
704
|
+
|
|
705
|
+
declare const EventCategories: {
|
|
706
|
+
readonly ACCESS_CONTROL: "AccessControl";
|
|
707
|
+
readonly REQUEST_ERROR: "RequestErrors";
|
|
708
|
+
readonly OS: "OperatingSystemEvents";
|
|
709
|
+
readonly CONTROL: "ControlSystemEvents";
|
|
710
|
+
readonly BACKUP: "BackupAndRestoreEvents";
|
|
711
|
+
readonly CONFIG_CHANGE: "ConfigurationChanges";
|
|
712
|
+
readonly LOGS: "AuditLogEvents";
|
|
713
|
+
readonly POTENTIAL_ATTACK: "PotentialAttackActivity";
|
|
714
|
+
};
|
|
715
|
+
type EventCategory = (typeof EventCategories)[keyof typeof EventCategories];
|
|
716
|
+
declare const EventCriticalities: {
|
|
717
|
+
readonly VERBOSE: "Verbose";
|
|
718
|
+
readonly INFO: "Info";
|
|
719
|
+
readonly WARNING: "Warning";
|
|
720
|
+
readonly ERROR: "Error";
|
|
721
|
+
readonly CRITICAL: "Critical";
|
|
722
|
+
};
|
|
723
|
+
type EventCriticality = (typeof EventCriticalities)[keyof typeof EventCriticalities];
|
|
724
|
+
|
|
725
|
+
declare const UnitTypes: {
|
|
726
|
+
readonly AIM18: "Aim18";
|
|
727
|
+
readonly DIM36: "Dim36";
|
|
728
|
+
readonly DIOM24: "Diom24";
|
|
729
|
+
readonly KLIM: "Klim";
|
|
730
|
+
readonly LUM: "Lum";
|
|
731
|
+
readonly PMM: "Pmm";
|
|
732
|
+
readonly SLIM: "Slim";
|
|
733
|
+
readonly TIM28: "Tim28";
|
|
734
|
+
};
|
|
735
|
+
type UnitType = (typeof UnitTypes)[keyof typeof UnitTypes];
|
|
736
|
+
|
|
737
|
+
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 OperationModesJsonSchema as a0, type PriorityDataJsonSchema as a1, type PrioritiesJsonSchema as a2, type ShaftJsonSchema as a3, type AlarmType as a4, type AlarmPriority as a5, type CloudAlarmState as a6, type DiamarAlarmState as a7, type EventCategory as a8, type EventCriticality as a9, type LinkDesign as aA, type OpClState as aB, type RunningStoppedState as aC, UnitTypes as aD, AlarmPriorities as aE, DiamarAlarmStates as aF, CloudAlarmStates as aG, AlarmTypes as aH, EventCategories as aI, EventCriticalities as aJ, type UnitType as aa, type MimicElementType as ab, type ZDepth as ac, type TitleAlign as ad, type DigitalState as ae, type DigitalAlarmState as af, type AlarmState as ag, type ActivationMode as ah, type TextAnchorPoint as ai, type ValveDesign as aj, type FanDesign as ak, type FanRunState as al, type FanDirection as am, type FanType as an, type LevelBarOrientation as ao, type SliderOrientation as ap, type CompressorDesign as aq, type LedType as ar, type MarkType as as, type ScalePosition as at, type ValueType as au, type OperationModeState as av, type UnitDesign as aw, type StationDesign as ax, type RepeaterDesign as ay, type CabinetDesign as az, type CompressorJsonSchema as b, type DamperAutomatedJsonSchema as c, 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 };
|