@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.
@@ -0,0 +1,377 @@
1
+ import { I as ImageAuxiliaryJsonSchema, L as LineAuxiliaryJsonSchema, a as LinkAuxiliaryJsonSchema, P as PolylineAuxiliaryJsonSchema, S as SquareAuxiliaryJsonSchema, T as TextAuxiliaryJsonSchema, C as ChannelJsonSchema, b as CompressorJsonSchema, D as DamperJsonSchema, c as DamperAutomatedJsonSchema, F as FanJsonSchema, d as PumpJsonSchema, e as PumpAutomatedJsonSchema, f as TankJsonSchema, V as ValveJsonSchema, g as ValveAutomatedJsonSchema, A as AlarmIndicatorJsonSchema, h as CommandJsonSchema, i as DialJsonSchema, j as DigitalJsonSchema, k as DisplayJsonSchema, l as DynamicTextJsonSchema, m as LevelBarJsonSchema, n as SliderJsonSchema, o as TextChannelJsonSchema, p as ToggleJsonSchema, q as CabinetJsonSchema, R as RepeaterJsonSchema, r as StationJsonSchema, U as UnitJsonSchema, s as AddedAlarmsJsonSchema, B as BackgroundJsonSchema, t as LineJsonSchema, u as LocalizedTextJsonSchema, v as LocationJsonSchema, w as LogicExpressionJsonSchema, x as LogicExpressionsJsonSchema, y as ScaleJsonSchema, z as TextAttributesJsonSchema, E as TitleJsonSchema, G as AutomaticSemiAutoJsonSchema, H as CommandsOpClJsonSchema, J as CommandsStartStopJsonSchema, K as ControlLockJsonSchema, M as FeedbackOpClJsonSchema, N as FeedbackRunningStoppedJsonSchema, O as OrderOpClJsonSchema, Q as OrderStartStopJsonSchema, W as RemoteLocalJsonSchema, X as TripResetJsonSchema, Y as BreakerJsonSchema, Z as BreakerPmsJsonSchema, _ as GeneratorJsonSchema, $ as GeneratorPmsJsonSchema, a0 as OperationModesJsonSchema, a1 as PriorityDataJsonSchema, a2 as PrioritiesJsonSchema, a3 as ShaftJsonSchema } from './unit.types-BhezeBWA.js';
2
+ export { ah as ActivationMode, a5 as AlarmPriority, ag as AlarmState, a4 as AlarmType, az as CabinetDesign, a6 as CloudAlarmState, aq as CompressorDesign, a7 as DiamarAlarmState, af as DigitalAlarmState, ae as DigitalState, a8 as EventCategory, a9 as EventCriticality, ak as FanDesign, am as FanDirection, al as FanRunState, an as FanType, ar as LedType, ao as LevelBarOrientation, aA as LinkDesign, as as MarkType, ab as MimicElementType, aB as OpClState, av as OperationModeState, ay as RepeaterDesign, aC as RunningStoppedState, at as ScalePosition, ap as SliderOrientation, ax as StationDesign, ai as TextAnchorPoint, ad as TitleAlign, aw as UnitDesign, aa as UnitType, au as ValueType, aj as ValveDesign, ac as ZDepth } from './unit.types-BhezeBWA.js';
3
+
4
+ declare const ChannelBaseTypes: {
5
+ readonly VIRTUAL_ANALOG: "VirtualAnalog";
6
+ readonly VIRTUAL_DIGITAL: "VirtualDigital";
7
+ readonly VIRTUAL_STRING: "VirtualString";
8
+ readonly WIRED_ANALOG: "WiredAnalog";
9
+ readonly WIRED_DIGITAL: "WiredDigital";
10
+ };
11
+ type ChannelBaseType = (typeof ChannelBaseTypes)[keyof typeof ChannelBaseTypes];
12
+ declare const ChannelSpecificTypes: {
13
+ readonly DIGITAL_INPUT: "DigitalInput";
14
+ readonly DIGITAL_OUTPUT: "DigitalOutput";
15
+ readonly ANALOG_INPUT: "AnalogInput";
16
+ readonly ANALOG_OUTPUT: "AnalogOutput";
17
+ readonly ANALOG_SOFTWARE: "AnalogSoftware";
18
+ readonly DIGITAL_SOFTWARE: "DigitalSoftware";
19
+ readonly VIRTUAL_STRING: "VirtualString";
20
+ readonly COMMAND: "Command";
21
+ readonly BROADCAST_COMMAND: "BroadcastCommand";
22
+ readonly SOFTWARE: "Software";
23
+ readonly ANALOG_TIMER: "AnalogTimer";
24
+ readonly SERIAL_DIGITAL_INPUT: "SerialDigitalInput";
25
+ readonly SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput";
26
+ readonly SERIAL_LINE_COMMAND: "SerialLineCommand";
27
+ readonly SERIAL_ANALOG_INPUT: "SerialAnalogInput";
28
+ readonly SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput";
29
+ };
30
+ type ChannelSpecificType = (typeof ChannelSpecificTypes)[keyof typeof ChannelSpecificTypes];
31
+
32
+ declare const Mimics: {
33
+ ImageAuxiliaryJson: ImageAuxiliaryJsonSchema;
34
+ LineAuxiliaryJson: LineAuxiliaryJsonSchema;
35
+ LinkAuxiliaryJson: LinkAuxiliaryJsonSchema;
36
+ PolylineAuxiliaryJson: PolylineAuxiliaryJsonSchema;
37
+ SquareAuxiliaryJson: SquareAuxiliaryJsonSchema;
38
+ TextAuxiliaryJson: TextAuxiliaryJsonSchema;
39
+ ChannelJson: ChannelJsonSchema;
40
+ CompressorJson: CompressorJsonSchema;
41
+ DamperJson: DamperJsonSchema;
42
+ DamperAutomatedJson: DamperAutomatedJsonSchema;
43
+ FanJson: FanJsonSchema;
44
+ PumpJson: PumpJsonSchema;
45
+ PumpAutomatedJson: PumpAutomatedJsonSchema;
46
+ TankJson: TankJsonSchema;
47
+ ValveJson: ValveJsonSchema;
48
+ ValveAutomatedJson: ValveAutomatedJsonSchema;
49
+ AlarmIndicatorJson: AlarmIndicatorJsonSchema;
50
+ CommandJson: CommandJsonSchema;
51
+ DialJson: DialJsonSchema;
52
+ DigitalJson: DigitalJsonSchema;
53
+ DisplayJson: DisplayJsonSchema;
54
+ DynamicTextJson: DynamicTextJsonSchema;
55
+ LevelBarJson: LevelBarJsonSchema;
56
+ SliderJson: SliderJsonSchema;
57
+ TextChannelJson: TextChannelJsonSchema;
58
+ ToggleJson: ToggleJsonSchema;
59
+ CabinetJson: CabinetJsonSchema;
60
+ RepeaterJson: RepeaterJsonSchema;
61
+ StationJson: StationJsonSchema;
62
+ UnitJson: UnitJsonSchema;
63
+ AddedAlarmsJson: AddedAlarmsJsonSchema;
64
+ BackgroundJson: BackgroundJsonSchema;
65
+ LineJson: LineJsonSchema;
66
+ LocalizedTextJson: LocalizedTextJsonSchema;
67
+ LocationJson: LocationJsonSchema;
68
+ LogicExpressionJson: LogicExpressionJsonSchema;
69
+ LogicExpressionsJson: LogicExpressionsJsonSchema;
70
+ ScaleJson: ScaleJsonSchema;
71
+ TextAttributesJson: TextAttributesJsonSchema;
72
+ TitleJson: TitleJsonSchema;
73
+ AutomaticSemiAutoJson: AutomaticSemiAutoJsonSchema;
74
+ CommandsOpClJson: CommandsOpClJsonSchema;
75
+ CommandsStartStopJson: CommandsStartStopJsonSchema;
76
+ ControlLockJson: ControlLockJsonSchema;
77
+ FeedbackOpClJson: FeedbackOpClJsonSchema;
78
+ FeedbackRunningStoppedJson: FeedbackRunningStoppedJsonSchema;
79
+ OrderOpClJson: OrderOpClJsonSchema;
80
+ OrderStartStopJson: OrderStartStopJsonSchema;
81
+ RemoteLocalJson: RemoteLocalJsonSchema;
82
+ TripResetJson: TripResetJsonSchema;
83
+ BreakerJson: BreakerJsonSchema;
84
+ BreakerPmsJson: BreakerPmsJsonSchema;
85
+ GeneratorJson: GeneratorJsonSchema;
86
+ GeneratorPmsJson: GeneratorPmsJsonSchema;
87
+ OperationModesJson: OperationModesJsonSchema;
88
+ PriorityDataJson: PriorityDataJsonSchema;
89
+ PrioritiesJson: PrioritiesJsonSchema;
90
+ ShaftJson: ShaftJsonSchema;
91
+ };
92
+ declare const Types: {
93
+ AlarmTypes: {
94
+ readonly NORMAL: "Normal";
95
+ readonly ALARM_OPEN: "AlarmOpen";
96
+ readonly ALARM_CLOSE: "AlarmClose";
97
+ readonly ALARM_IFH: "AlarmIfh";
98
+ readonly ALARM_HH: "AlarmHh";
99
+ readonly ALARM_H: "AlarmH";
100
+ readonly ALARM_L: "AlarmL";
101
+ readonly ALARM_LL: "AlarmLl";
102
+ readonly ALARM_IFL: "AlarmIfl";
103
+ readonly ALARM_OFFSCAN: "AlarmOffScan";
104
+ readonly ALARM_FAIL: "AlarmFail";
105
+ readonly ALARM_INH: "AlarmInh";
106
+ readonly ALARM_UNK: "AlarmUnk";
107
+ };
108
+ AlarmPriorities: {
109
+ readonly CRITICAL: "Critical";
110
+ readonly ALARM: "Alarm";
111
+ readonly WARNING: "Warning";
112
+ };
113
+ CloudAlarmStates: {
114
+ readonly INACTIVE: "Inactive";
115
+ readonly ALARM: "Active";
116
+ readonly ALARM_ACK: "Acknowledged";
117
+ readonly WARNING: "WarningActive";
118
+ readonly WARNING_ACK: "WarningAcknowledged";
119
+ readonly RETURN_NO_ACK: "Unacknowledged";
120
+ readonly INHIBITED: "Inhibited";
121
+ readonly OFFSCAN: "Offscan";
122
+ readonly UNDEFINED: "Undefined";
123
+ };
124
+ DiamarAlarmStates: {
125
+ readonly INACTIVE: "Inactive";
126
+ readonly ACKNOWLEDGED: "Acknowledged";
127
+ readonly ACTIVE: "Active";
128
+ readonly UNACKNOWLEDGED: "Unacknowledged";
129
+ readonly UNDEFINED: "Undefined";
130
+ };
131
+ ChannelBaseTypes: {
132
+ readonly VIRTUAL_ANALOG: "VirtualAnalog";
133
+ readonly VIRTUAL_DIGITAL: "VirtualDigital";
134
+ readonly VIRTUAL_STRING: "VirtualString";
135
+ readonly WIRED_ANALOG: "WiredAnalog";
136
+ readonly WIRED_DIGITAL: "WiredDigital";
137
+ };
138
+ ChannelSpecificTypes: {
139
+ readonly DIGITAL_INPUT: "DigitalInput";
140
+ readonly DIGITAL_OUTPUT: "DigitalOutput";
141
+ readonly ANALOG_INPUT: "AnalogInput";
142
+ readonly ANALOG_OUTPUT: "AnalogOutput";
143
+ readonly ANALOG_SOFTWARE: "AnalogSoftware";
144
+ readonly DIGITAL_SOFTWARE: "DigitalSoftware";
145
+ readonly VIRTUAL_STRING: "VirtualString";
146
+ readonly COMMAND: "Command";
147
+ readonly BROADCAST_COMMAND: "BroadcastCommand";
148
+ readonly SOFTWARE: "Software";
149
+ readonly ANALOG_TIMER: "AnalogTimer";
150
+ readonly SERIAL_DIGITAL_INPUT: "SerialDigitalInput";
151
+ readonly SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput";
152
+ readonly SERIAL_LINE_COMMAND: "SerialLineCommand";
153
+ readonly SERIAL_ANALOG_INPUT: "SerialAnalogInput";
154
+ readonly SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput";
155
+ };
156
+ EventCategories: {
157
+ readonly ACCESS_CONTROL: "AccessControl";
158
+ readonly REQUEST_ERROR: "RequestErrors";
159
+ readonly OS: "OperatingSystemEvents";
160
+ readonly CONTROL: "ControlSystemEvents";
161
+ readonly BACKUP: "BackupAndRestoreEvents";
162
+ readonly CONFIG_CHANGE: "ConfigurationChanges";
163
+ readonly LOGS: "AuditLogEvents";
164
+ readonly POTENTIAL_ATTACK: "PotentialAttackActivity";
165
+ };
166
+ EventCriticalities: {
167
+ readonly VERBOSE: "Verbose";
168
+ readonly INFO: "Info";
169
+ readonly WARNING: "Warning";
170
+ readonly ERROR: "Error";
171
+ readonly CRITICAL: "Critical";
172
+ };
173
+ UnitTypes: {
174
+ readonly AIM18: "Aim18";
175
+ readonly DIM36: "Dim36";
176
+ readonly DIOM24: "Diom24";
177
+ readonly KLIM: "Klim";
178
+ readonly LUM: "Lum";
179
+ readonly PMM: "Pmm";
180
+ readonly SLIM: "Slim";
181
+ readonly TIM28: "Tim28";
182
+ };
183
+ Mimics: {
184
+ MimicElementTypes: {
185
+ readonly IMAGE: "Image";
186
+ readonly LINE: "Line";
187
+ readonly SQUARE: "Square";
188
+ readonly LINK: "Link";
189
+ readonly POLYLINE: "Polyline";
190
+ readonly TEXT: "Text";
191
+ readonly ALARM_INDICATOR: "AlarmIndicator";
192
+ readonly BREAKER: "Breaker";
193
+ readonly COMMAND: "Command";
194
+ readonly COMPRESSOR: "Compressor";
195
+ readonly DAMPER: "Damper";
196
+ readonly DIAL: "Dial";
197
+ readonly DIGITAL: "Digital";
198
+ readonly DISPLAY: "Display";
199
+ readonly FAN: "Fan";
200
+ readonly GENERATOR: "Generator";
201
+ readonly LEVEL_BAR: "LevelBar";
202
+ readonly PUMP: "Pump";
203
+ readonly SHAFT: "Shaft";
204
+ readonly TEXT_CHANNEL: "TextChannel";
205
+ readonly DYNAMIC_TEXT: "DynamicText";
206
+ readonly TANK: "Tank";
207
+ readonly VALVE: "Valve";
208
+ readonly SLIDER: "Slider";
209
+ readonly TOGGLE: "Toggle";
210
+ readonly UNIT: "Unit";
211
+ readonly REPEATER: "Repeater";
212
+ readonly STATION: "Station";
213
+ readonly CABINET: "Cabinet";
214
+ readonly BREAKER_PMS: "BreakerPms";
215
+ readonly GENERATOR_PMS: "GeneratorPms";
216
+ readonly OPERATION_MODES_PMS: "OperationModesPms";
217
+ readonly PMS_PRIORITIES: "PmsPriorities";
218
+ readonly VALVE_AUTOMATED: "ValveAutomated";
219
+ readonly DAMPER_AUTOMATED: "DamperAutomated";
220
+ readonly PUMP_AUTOMATED: "PumpAutomated";
221
+ };
222
+ ZDepths: {
223
+ readonly BACKGROUND: "Background";
224
+ readonly LOW: "Low";
225
+ readonly NORMAL: "Normal";
226
+ readonly HIGH: "High";
227
+ };
228
+ TitleAligns: {
229
+ readonly BOTTOM: "Bottom";
230
+ readonly LEFT: "Left";
231
+ readonly RIGHT: "Right";
232
+ readonly TOP: "Top";
233
+ };
234
+ DigitalStates: {
235
+ readonly NO_VALUE: "NoValue";
236
+ readonly OPEN: "Open";
237
+ readonly CLOSE: "Close";
238
+ readonly UNDEFINED: "Undefined";
239
+ };
240
+ DigitalAlarmStates: {
241
+ readonly NO_ALARM: "NoAlarm";
242
+ readonly ALARM: "Alarm";
243
+ readonly UNDEFINED: "Undefined";
244
+ };
245
+ AlarmStates: {
246
+ readonly ALARM: 1;
247
+ readonly WARNING: 2;
248
+ readonly UNACKNOWLEDGED_ALARM: 3;
249
+ readonly UNACKNOWLEDGED_WARNING: 4;
250
+ readonly ACKNOWLEDGED_ALARM: 5;
251
+ readonly ACKNOWLEDGED_WARNING: 6;
252
+ readonly INHIBITED: 7;
253
+ readonly OFF_SCAN: 8;
254
+ readonly NORMAL: 9;
255
+ readonly OFFLINE: 10;
256
+ };
257
+ ActivationModes: {
258
+ readonly ALARM: "Alarm";
259
+ readonly LOGIC: "Logic";
260
+ readonly VALUE: "Value";
261
+ };
262
+ TextAnchorPoints: {
263
+ readonly LEFT: "Left";
264
+ readonly CENTER: "Center";
265
+ readonly RIGHT: "Right";
266
+ };
267
+ ValveDesigns: {
268
+ readonly MECHANIC: "Mechanic";
269
+ readonly NORMAL: "Normal";
270
+ };
271
+ FanDesigns: {
272
+ readonly NORMAL: "Normal";
273
+ readonly BLADED: "Bladed";
274
+ };
275
+ FanRunStates: {
276
+ readonly NO_VALUE: "NoValue";
277
+ readonly UNDEFINED: "Undefined";
278
+ readonly STOPPED: "Stopped";
279
+ readonly RUNNING: "Running";
280
+ readonly RUNNING_FAST: "RunningFast";
281
+ };
282
+ FanDirections: {
283
+ readonly NO_VALUE: "NoValue";
284
+ readonly UNDEFINED: "Undefined";
285
+ readonly SUPPLY: "Supply";
286
+ readonly EXHAUST: "Exhaust";
287
+ };
288
+ FanTypes: {
289
+ readonly SIMPLE: "Simple";
290
+ readonly SIMPLE_WITH_FAST: "SimpleWithFast";
291
+ readonly REVERSIBLE: "Reversible";
292
+ readonly REVERSIBLE_WITH_FAST: "ReversibleWithFast";
293
+ };
294
+ LevelBarOrientations: {
295
+ readonly VERTICAL: "Vertical";
296
+ readonly HORIZONTAL: "Horizontal";
297
+ };
298
+ SliderOrientations: {
299
+ readonly VERTICAL: "Vertical";
300
+ readonly HORIZONTAL: "Horizontal";
301
+ };
302
+ CompressorDesigns: {
303
+ readonly CENTRIFUGAL: "Centrifugal";
304
+ readonly MECHANIC: "Mechanic";
305
+ readonly NORMAL: "Normal";
306
+ readonly PISTONS: "Pistons";
307
+ readonly ROTATORY_SCREW: "RotatoryScrew";
308
+ readonly SCROLL: "Scroll";
309
+ readonly VANES: "Vanes";
310
+ };
311
+ LedTypes: {
312
+ readonly CIRCLE: "Circle";
313
+ readonly SQUARE: "Square";
314
+ };
315
+ InfoLocations: {
316
+ readonly BOTTOM: "Bottom";
317
+ readonly LEFT: "Left";
318
+ readonly RIGHT: "Right";
319
+ readonly TOP: "Top";
320
+ };
321
+ MarkTypes: {
322
+ readonly LARGE_LINE: "LargeLine";
323
+ readonly SHORT_LINE: "ShortLine";
324
+ readonly TRIANGLE: "Triangle";
325
+ };
326
+ ScalePositions: {
327
+ readonly LEFT: "Left";
328
+ readonly RIGHT: "Right";
329
+ };
330
+ ValueTypes: {
331
+ readonly PERCENTAGE: "Percentage";
332
+ readonly RAW: "Raw";
333
+ };
334
+ OperationModeStates: {
335
+ readonly ACTIVE: 0;
336
+ readonly INACTIVE: 1;
337
+ readonly IN_TRANSITION: 2;
338
+ readonly FAILED: 3;
339
+ };
340
+ UnitDesigns: {
341
+ readonly IMAGE: "Image";
342
+ readonly MODERN: "Modern";
343
+ };
344
+ StationDesigns: {
345
+ readonly IMAGE: "Image";
346
+ readonly MONITOR: "Monitor";
347
+ readonly SCREEN: "Screen";
348
+ };
349
+ RepeaterDesigns: {
350
+ readonly IMAGE: "Image";
351
+ readonly SLIM: "SLim";
352
+ readonly DIAMAR_REPEATER: "DiamarRepeater";
353
+ };
354
+ CabinetDesigns: {
355
+ readonly IMAGE: "Image";
356
+ readonly MODERN: "Modern";
357
+ };
358
+ LinkDesigns: {
359
+ readonly BUTTON: "Button";
360
+ readonly IMAGE: "Image";
361
+ };
362
+ OpClStates: {
363
+ readonly NO_VALUE: "NoValue";
364
+ readonly OPEN: "Open";
365
+ readonly CLOSE: "Close";
366
+ readonly UNDEFINED: "Undefined";
367
+ };
368
+ RunningStoppedStates: {
369
+ readonly NO_VALUE: "NoValue";
370
+ readonly RUNNING: "Running";
371
+ readonly STOPPED: "Stopped";
372
+ readonly UNDEFINED: "Undefined";
373
+ };
374
+ };
375
+ };
376
+
377
+ export { AlarmIndicatorJsonSchema, AutomaticSemiAutoJsonSchema, BreakerJsonSchema, BreakerPmsJsonSchema, CabinetJsonSchema, type ChannelBaseType, ChannelJsonSchema, type ChannelSpecificType, CommandJsonSchema, CommandsOpClJsonSchema, CommandsStartStopJsonSchema, CompressorJsonSchema, ControlLockJsonSchema, DamperAutomatedJsonSchema, DamperJsonSchema, DialJsonSchema, DigitalJsonSchema, DisplayJsonSchema, DynamicTextJsonSchema, FanJsonSchema, FeedbackOpClJsonSchema, FeedbackRunningStoppedJsonSchema, GeneratorJsonSchema, GeneratorPmsJsonSchema, ImageAuxiliaryJsonSchema, LevelBarJsonSchema, LineAuxiliaryJsonSchema, LineJsonSchema, LinkAuxiliaryJsonSchema, Mimics, OperationModesJsonSchema, OrderOpClJsonSchema, OrderStartStopJsonSchema, PolylineAuxiliaryJsonSchema, PrioritiesJsonSchema, PriorityDataJsonSchema, PumpAutomatedJsonSchema, PumpJsonSchema, RemoteLocalJsonSchema, RepeaterJsonSchema, ShaftJsonSchema, SliderJsonSchema, SquareAuxiliaryJsonSchema, StationJsonSchema, TankJsonSchema, TextAuxiliaryJsonSchema, TextChannelJsonSchema, ToggleJsonSchema, TripResetJsonSchema, Types, UnitJsonSchema, ValveAutomatedJsonSchema, ValveJsonSchema };
@@ -0,0 +1,245 @@
1
+ import {
2
+ ActivationModes,
3
+ AddedAlarmsJson,
4
+ AlarmIndicatorJson,
5
+ AlarmPriorities,
6
+ AlarmStates,
7
+ AlarmTypes,
8
+ AutomaticSemiAutoJson,
9
+ BackgroundJson,
10
+ BreakerJson,
11
+ BreakerPmsJson,
12
+ CabinetDesigns,
13
+ CabinetJson,
14
+ ChannelJson,
15
+ CloudAlarmStates,
16
+ CommandJson,
17
+ CommandsOpClJson,
18
+ CommandsStartStopJson,
19
+ CompressorDesigns,
20
+ CompressorJson,
21
+ ControlLockJson,
22
+ DamperAutomatedJson,
23
+ DamperJson,
24
+ DialJson,
25
+ DiamarAlarmStates,
26
+ DigitalAlarmStates,
27
+ DigitalJson,
28
+ DigitalStates,
29
+ DisplayJson,
30
+ DynamicTextJson,
31
+ EventCategories,
32
+ EventCriticalities,
33
+ FanDesigns,
34
+ FanDirections,
35
+ FanJson,
36
+ FanRunStates,
37
+ FanTypes,
38
+ FeedbackOpClJson,
39
+ FeedbackRunningStoppedJson,
40
+ GeneratorJson,
41
+ GeneratorPmsJson,
42
+ ImageAuxiliaryJson,
43
+ InfoLocations,
44
+ LedTypes,
45
+ LevelBarJson,
46
+ LevelBarOrientations,
47
+ LineAuxiliaryJson,
48
+ LineJson,
49
+ LinkAuxiliaryJson,
50
+ LinkDesigns,
51
+ LocalizedTextJson,
52
+ LocationJson,
53
+ LogicExpressionJson,
54
+ LogicExpressionsJson,
55
+ MarkTypes,
56
+ MimicElementTypes,
57
+ OpClStates,
58
+ OperationModeStates,
59
+ OperationModesJson,
60
+ OrderOpClJson,
61
+ OrderStartStopJson,
62
+ PolylineAuxiliaryJson,
63
+ PrioritiesJson,
64
+ PriorityDataJson,
65
+ PumpAutomatedJson,
66
+ PumpJson,
67
+ RemoteLocalJson,
68
+ RepeaterDesigns,
69
+ RepeaterJson,
70
+ RunningStoppedStates,
71
+ ScaleJson,
72
+ ScalePositions,
73
+ ShaftJson,
74
+ SliderJson,
75
+ SliderOrientations,
76
+ SquareAuxiliaryJson,
77
+ StationDesigns,
78
+ StationJson,
79
+ TankJson,
80
+ TextAnchorPoints,
81
+ TextAttributesJson,
82
+ TextAuxiliaryJson,
83
+ TextChannelJson,
84
+ TitleAligns,
85
+ TitleJson,
86
+ ToggleJson,
87
+ TripResetJson,
88
+ UnitDesigns,
89
+ UnitJson,
90
+ UnitTypes,
91
+ ValueTypes,
92
+ ValveAutomatedJson,
93
+ ValveDesigns,
94
+ ValveJson,
95
+ ZDepths
96
+ } from "./chunk-FO3TASV6.js";
97
+
98
+ // app/types/channel.types.ts
99
+ var ChannelBaseTypes = {
100
+ VIRTUAL_ANALOG: "VirtualAnalog",
101
+ VIRTUAL_DIGITAL: "VirtualDigital",
102
+ VIRTUAL_STRING: "VirtualString",
103
+ WIRED_ANALOG: "WiredAnalog",
104
+ WIRED_DIGITAL: "WiredDigital"
105
+ };
106
+ var ChannelSpecificTypes = {
107
+ // Wired types
108
+ DIGITAL_INPUT: "DigitalInput",
109
+ DIGITAL_OUTPUT: "DigitalOutput",
110
+ ANALOG_INPUT: "AnalogInput",
111
+ ANALOG_OUTPUT: "AnalogOutput",
112
+ // Virtual types
113
+ ANALOG_SOFTWARE: "AnalogSoftware",
114
+ DIGITAL_SOFTWARE: "DigitalSoftware",
115
+ VIRTUAL_STRING: "VirtualString",
116
+ COMMAND: "Command",
117
+ // Virtual logic types
118
+ BROADCAST_COMMAND: "BroadcastCommand",
119
+ // To be deleted in the near future
120
+ SOFTWARE: "Software",
121
+ ANALOG_TIMER: "AnalogTimer",
122
+ // Serial types
123
+ SERIAL_DIGITAL_INPUT: "SerialDigitalInput",
124
+ SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput",
125
+ SERIAL_LINE_COMMAND: "SerialLineCommand",
126
+ SERIAL_ANALOG_INPUT: "SerialAnalogInput",
127
+ SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput"
128
+ };
129
+
130
+ // app/browser-index.ts
131
+ var Mimics = {
132
+ // Auxiliary
133
+ ImageAuxiliaryJson,
134
+ LineAuxiliaryJson,
135
+ LinkAuxiliaryJson,
136
+ PolylineAuxiliaryJson,
137
+ SquareAuxiliaryJson,
138
+ TextAuxiliaryJson,
139
+ // Channel
140
+ ChannelJson,
141
+ // Control elements
142
+ CompressorJson,
143
+ DamperJson,
144
+ DamperAutomatedJson,
145
+ FanJson,
146
+ PumpJson,
147
+ PumpAutomatedJson,
148
+ TankJson,
149
+ ValveJson,
150
+ ValveAutomatedJson,
151
+ // Elements
152
+ AlarmIndicatorJson,
153
+ CommandJson,
154
+ DialJson,
155
+ DigitalJson,
156
+ DisplayJson,
157
+ DynamicTextJson,
158
+ LevelBarJson,
159
+ SliderJson,
160
+ TextChannelJson,
161
+ ToggleJson,
162
+ // IAS elements
163
+ CabinetJson,
164
+ RepeaterJson,
165
+ StationJson,
166
+ UnitJson,
167
+ // Support
168
+ AddedAlarmsJson,
169
+ BackgroundJson,
170
+ LineJson,
171
+ LocalizedTextJson,
172
+ LocationJson,
173
+ LogicExpressionJson,
174
+ LogicExpressionsJson,
175
+ ScaleJson,
176
+ TextAttributesJson,
177
+ TitleJson,
178
+ // Traits
179
+ AutomaticSemiAutoJson,
180
+ CommandsOpClJson,
181
+ CommandsStartStopJson,
182
+ ControlLockJson,
183
+ FeedbackOpClJson,
184
+ FeedbackRunningStoppedJson,
185
+ OrderOpClJson,
186
+ OrderStartStopJson,
187
+ RemoteLocalJson,
188
+ TripResetJson,
189
+ // PMS elements
190
+ BreakerJson,
191
+ BreakerPmsJson,
192
+ GeneratorJson,
193
+ GeneratorPmsJson,
194
+ OperationModesJson,
195
+ PriorityDataJson,
196
+ PrioritiesJson,
197
+ ShaftJson
198
+ };
199
+ var MimicsTypes = {
200
+ MimicElementTypes,
201
+ ZDepths,
202
+ TitleAligns,
203
+ DigitalStates,
204
+ DigitalAlarmStates,
205
+ AlarmStates,
206
+ ActivationModes,
207
+ TextAnchorPoints,
208
+ ValveDesigns,
209
+ FanDesigns,
210
+ FanRunStates,
211
+ FanDirections,
212
+ FanTypes,
213
+ LevelBarOrientations,
214
+ SliderOrientations,
215
+ CompressorDesigns,
216
+ LedTypes,
217
+ InfoLocations,
218
+ MarkTypes,
219
+ ScalePositions,
220
+ ValueTypes,
221
+ OperationModeStates,
222
+ UnitDesigns,
223
+ StationDesigns,
224
+ RepeaterDesigns,
225
+ CabinetDesigns,
226
+ LinkDesigns,
227
+ OpClStates,
228
+ RunningStoppedStates
229
+ };
230
+ var Types = {
231
+ AlarmTypes,
232
+ AlarmPriorities,
233
+ CloudAlarmStates,
234
+ DiamarAlarmStates,
235
+ ChannelBaseTypes,
236
+ ChannelSpecificTypes,
237
+ EventCategories,
238
+ EventCriticalities,
239
+ UnitTypes,
240
+ Mimics: MimicsTypes
241
+ };
242
+ export {
243
+ Mimics,
244
+ Types
245
+ };