@sedni/cloud_common 3.0.2 → 3.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/.idea/cloud_common.iml +8 -0
  2. package/.idea/copilot.data.migration.agent.xml +6 -0
  3. package/.idea/copilot.data.migration.ask.xml +6 -0
  4. package/.idea/copilot.data.migration.ask2agent.xml +6 -0
  5. package/.idea/copilot.data.migration.edit.xml +6 -0
  6. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  7. package/.idea/modules.xml +8 -0
  8. package/.idea/shelf/Changes/shelved.patch +30 -0
  9. package/.idea/shelf/Changes.xml +4 -0
  10. package/.idea/shelf/Changes1/shelved.patch +229 -0
  11. package/.idea/shelf/Changes1.xml +4 -0
  12. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26,_10_07_[Changes]/shelved.patch +229 -0
  13. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26,_10_20_[Changes]/shelved.patch +23 -0
  14. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26__10_07__Changes_.xml +4 -0
  15. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26__10_20__Changes_.xml +4 -0
  16. package/.idea/vcs.xml +6 -0
  17. package/.idea/workspace.xml +245 -0
  18. package/deno.lock +1204 -0
  19. package/dist/browser-index.cjs +30 -0
  20. package/dist/browser-index.d.cts +38 -17
  21. package/dist/browser-index.d.ts +38 -17
  22. package/dist/browser-index.js +7 -1
  23. package/dist/{chunk-VQWCQ4E2.js → chunk-XZJXANPO.js} +539 -2
  24. package/dist/index.cjs +42 -10
  25. package/dist/index.d.cts +45 -24
  26. package/dist/index.d.ts +45 -24
  27. package/dist/index.js +13 -7
  28. package/dist/models/Channel.d.ts +53 -0
  29. package/dist/models/Channel.js +65 -0
  30. package/dist/models/ChannelDataBucket.d.ts +81 -0
  31. package/dist/models/ChannelDataBucket.js +93 -0
  32. package/dist/models/ChannelDataPoint.d.ts +21 -0
  33. package/dist/models/ChannelDataPoint.js +75 -0
  34. package/dist/models/Event.d.ts +28 -0
  35. package/dist/models/Event.js +84 -0
  36. package/dist/models/History.d.ts +30 -0
  37. package/dist/models/History.js +96 -0
  38. package/dist/models/Unit.d.ts +50 -0
  39. package/dist/models/Unit.js +58 -0
  40. package/dist/models/docs/Channel.json +58 -0
  41. package/dist/models/docs/ChannelDataBucket.json +77 -0
  42. package/dist/models/docs/ChannelDataPoint.json +39 -0
  43. package/dist/models/docs/ChannelWithData.json +58 -0
  44. package/dist/models/docs/Event.json +78 -0
  45. package/dist/models/docs/History.json +103 -0
  46. package/dist/models/docs/Unit.json +67 -0
  47. package/dist/models/docs/index.d.ts +448 -0
  48. package/dist/models/docs/index.js +27 -0
  49. package/dist/models/mimics/AuxiliaryElements.d.ts +39 -0
  50. package/dist/models/mimics/AuxiliaryElements.js +33 -0
  51. package/dist/models/mimics/ChannelMimic.d.ts +9 -0
  52. package/dist/models/mimics/ChannelMimic.js +8 -0
  53. package/dist/models/mimics/ControlElements.d.ts +123 -0
  54. package/dist/models/mimics/ControlElements.js +114 -0
  55. package/dist/models/mimics/Elements.d.ts +109 -0
  56. package/dist/models/mimics/Elements.js +99 -0
  57. package/dist/models/mimics/IasElements.d.ts +25 -0
  58. package/dist/models/mimics/IasElements.js +21 -0
  59. package/dist/models/mimics/MimicSupport.d.ts +77 -0
  60. package/dist/models/mimics/MimicSupport.js +59 -0
  61. package/dist/models/mimics/MimicTraits.d.ts +58 -0
  62. package/dist/models/mimics/MimicTraits.js +48 -0
  63. package/dist/models/mimics/PmsElements.d.ts +74 -0
  64. package/dist/models/mimics/PmsElements.js +66 -0
  65. package/dist/network/requests/mimics/AuxiliaryElements.d.ts +29 -0
  66. package/dist/network/requests/mimics/AuxiliaryElements.js +23 -0
  67. package/dist/network/requests/mimics/ChannelMimic.d.ts +9 -0
  68. package/dist/network/requests/mimics/ChannelMimic.js +8 -0
  69. package/dist/network/requests/mimics/ControlElements.d.ts +68 -0
  70. package/dist/network/requests/mimics/ControlElements.js +59 -0
  71. package/dist/network/requests/mimics/Elements.d.ts +46 -0
  72. package/dist/network/requests/mimics/Elements.js +36 -0
  73. package/dist/network/requests/mimics/IasElements.d.ts +16 -0
  74. package/dist/network/requests/mimics/IasElements.js +12 -0
  75. package/dist/network/requests/mimics/MimicSupport.d.ts +77 -0
  76. package/dist/network/requests/mimics/MimicSupport.js +59 -0
  77. package/dist/network/requests/mimics/MimicTraits.d.ts +55 -0
  78. package/dist/network/requests/mimics/MimicTraits.js +45 -0
  79. package/dist/network/requests/mimics/PmsElements.d.ts +58 -0
  80. package/dist/network/requests/mimics/PmsElements.js +50 -0
  81. package/dist/network/responses/mimics/AuxiliaryElements.d.ts +23 -0
  82. package/dist/network/responses/mimics/AuxiliaryElements.js +17 -0
  83. package/dist/network/responses/mimics/ControlElements.d.ts +63 -0
  84. package/dist/network/responses/mimics/ControlElements.js +54 -0
  85. package/dist/network/responses/mimics/Elements.d.ts +58 -0
  86. package/dist/network/responses/mimics/Elements.js +48 -0
  87. package/dist/network/responses/mimics/IasElements.d.ts +17 -0
  88. package/dist/network/responses/mimics/IasElements.js +13 -0
  89. package/dist/network/responses/mimics/PmsElements.d.ts +44 -0
  90. package/dist/network/responses/mimics/PmsElements.js +37 -0
  91. package/dist/types/alarm.types.d.ts +42 -0
  92. package/dist/types/alarm.types.js +38 -0
  93. package/dist/types/channel.types.d.ts +27 -0
  94. package/dist/types/channel.types.js +30 -0
  95. package/dist/types/event.types.d.ts +19 -0
  96. package/dist/types/event.types.js +17 -0
  97. package/dist/types/mimics.types.d.ts +254 -0
  98. package/dist/types/mimics.types.js +325 -0
  99. package/dist/types/unit.types.d.ts +11 -0
  100. package/dist/types/unit.types.js +10 -0
  101. package/dist/{unit.types-4ZD9ivHi.d.cts → user.types-DaVBScqh.d.cts} +493 -17
  102. package/dist/{unit.types-4ZD9ivHi.d.ts → user.types-DaVBScqh.d.ts} +493 -17
  103. package/package.json +3 -2
  104. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,37 @@
1
+ import { MimicAlarmStates, MimicControlStates, OpClStates, OperationModeStates, RunningStoppedStates } from "../../../types/mimics.types";
2
+ export const BreakerResponse = {
3
+ AlarmState: MimicAlarmStates.OFFLINE,
4
+ ControlState: MimicControlStates.NO_VALUE,
5
+ Value: OpClStates.NO_VALUE,
6
+ Active: false
7
+ };
8
+ export const BreakerPmsResponse = {
9
+ AlarmState: MimicAlarmStates.OFFLINE,
10
+ ControlState: MimicControlStates.NO_VALUE,
11
+ Value: OpClStates.NO_VALUE,
12
+ Active: false
13
+ };
14
+ export const GeneratorResponse = {
15
+ AlarmState: MimicAlarmStates.OFFLINE,
16
+ ControlState: MimicControlStates.NO_VALUE,
17
+ Value: RunningStoppedStates.NO_VALUE,
18
+ Active: false
19
+ };
20
+ export const GeneratorPmsResponse = {
21
+ AlarmState: MimicAlarmStates.OFFLINE,
22
+ ControlState: MimicControlStates.NO_VALUE,
23
+ Value: RunningStoppedStates.NO_VALUE,
24
+ PowerValue: null,
25
+ FrequencyValue: null,
26
+ PriorityValue: null,
27
+ Active: false
28
+ };
29
+ export const OperationModesResponse = {
30
+ AlarmState: OperationModeStates.INACTIVE,
31
+ Active: false
32
+ };
33
+ export const PrioritiesResponse = {};
34
+ export const ShaftResponse = {
35
+ AlarmState: MimicAlarmStates.OFFLINE,
36
+ Active: false
37
+ };
@@ -0,0 +1,42 @@
1
+ export declare const AlarmPriorities: {
2
+ readonly CRITICAL: "Critical";
3
+ readonly ALARM: "Alarm";
4
+ readonly WARNING: "Warning";
5
+ };
6
+ export type AlarmPriority = (typeof AlarmPriorities)[keyof typeof AlarmPriorities];
7
+ export declare const DiamarAlarmStates: {
8
+ readonly INACTIVE: "Inactive";
9
+ readonly ACKNOWLEDGED: "Acknowledged";
10
+ readonly ACTIVE: "Active";
11
+ readonly UNACKNOWLEDGED: "Unacknowledged";
12
+ readonly UNDEFINED: "Undefined";
13
+ };
14
+ export type DiamarAlarmState = (typeof DiamarAlarmStates)[keyof typeof DiamarAlarmStates];
15
+ export declare const CloudAlarmStates: {
16
+ readonly INACTIVE: "Inactive";
17
+ readonly ALARM: "Active";
18
+ readonly ALARM_ACK: "Acknowledged";
19
+ readonly WARNING: "WarningActive";
20
+ readonly WARNING_ACK: "WarningAcknowledged";
21
+ readonly RETURN_NO_ACK: "Unacknowledged";
22
+ readonly INHIBITED: "Inhibited";
23
+ readonly OFFSCAN: "Offscan";
24
+ readonly UNDEFINED: "Undefined";
25
+ };
26
+ export type CloudAlarmState = (typeof CloudAlarmStates)[keyof typeof CloudAlarmStates];
27
+ export declare const AlarmTypes: {
28
+ readonly NORMAL: "Normal";
29
+ readonly ALARM_OPEN: "AlarmOpen";
30
+ readonly ALARM_CLOSE: "AlarmClose";
31
+ readonly ALARM_IFH: "AlarmIfh";
32
+ readonly ALARM_HH: "AlarmHh";
33
+ readonly ALARM_H: "AlarmH";
34
+ readonly ALARM_L: "AlarmL";
35
+ readonly ALARM_LL: "AlarmLl";
36
+ readonly ALARM_IFL: "AlarmIfl";
37
+ readonly ALARM_OFFSCAN: "AlarmOffScan";
38
+ readonly ALARM_FAIL: "AlarmFail";
39
+ readonly ALARM_INH: "AlarmInh";
40
+ readonly ALARM_UNK: "AlarmUnk";
41
+ };
42
+ export type AlarmType = (typeof AlarmTypes)[keyof typeof AlarmTypes];
@@ -0,0 +1,38 @@
1
+ export const AlarmPriorities = {
2
+ CRITICAL: "Critical",
3
+ ALARM: "Alarm",
4
+ WARNING: "Warning"
5
+ };
6
+ export const DiamarAlarmStates = {
7
+ INACTIVE: "Inactive",
8
+ ACKNOWLEDGED: "Acknowledged",
9
+ ACTIVE: "Active",
10
+ UNACKNOWLEDGED: "Unacknowledged",
11
+ UNDEFINED: "Undefined"
12
+ };
13
+ export const CloudAlarmStates = {
14
+ INACTIVE: "Inactive",
15
+ ALARM: "Active",
16
+ ALARM_ACK: "Acknowledged",
17
+ WARNING: "WarningActive",
18
+ WARNING_ACK: "WarningAcknowledged",
19
+ RETURN_NO_ACK: "Unacknowledged",
20
+ INHIBITED: "Inhibited",
21
+ OFFSCAN: "Offscan",
22
+ UNDEFINED: "Undefined"
23
+ };
24
+ export const AlarmTypes = {
25
+ NORMAL: "Normal",
26
+ ALARM_OPEN: "AlarmOpen",
27
+ ALARM_CLOSE: "AlarmClose",
28
+ ALARM_IFH: "AlarmIfh",
29
+ ALARM_HH: "AlarmHh",
30
+ ALARM_H: "AlarmH",
31
+ ALARM_L: "AlarmL",
32
+ ALARM_LL: "AlarmLl",
33
+ ALARM_IFL: "AlarmIfl",
34
+ ALARM_OFFSCAN: "AlarmOffScan",
35
+ ALARM_FAIL: "AlarmFail",
36
+ ALARM_INH: "AlarmInh",
37
+ ALARM_UNK: "AlarmUnk"
38
+ };
@@ -0,0 +1,27 @@
1
+ export declare const ChannelBaseTypes: {
2
+ readonly VIRTUAL_ANALOG: "VirtualAnalog";
3
+ readonly VIRTUAL_DIGITAL: "VirtualDigital";
4
+ readonly VIRTUAL_STRING: "VirtualString";
5
+ readonly WIRED_ANALOG: "WiredAnalog";
6
+ readonly WIRED_DIGITAL: "WiredDigital";
7
+ };
8
+ export type ChannelBaseType = (typeof ChannelBaseTypes)[keyof typeof ChannelBaseTypes];
9
+ export declare const ChannelSpecificTypes: {
10
+ readonly DIGITAL_INPUT: "DigitalInput";
11
+ readonly DIGITAL_OUTPUT: "DigitalOutput";
12
+ readonly ANALOG_INPUT: "AnalogInput";
13
+ readonly ANALOG_OUTPUT: "AnalogOutput";
14
+ readonly ANALOG_SOFTWARE: "AnalogSoftware";
15
+ readonly DIGITAL_SOFTWARE: "DigitalSoftware";
16
+ readonly VIRTUAL_STRING: "VirtualString";
17
+ readonly COMMAND: "Command";
18
+ readonly BROADCAST_COMMAND: "BroadcastCommand";
19
+ readonly SOFTWARE: "Software";
20
+ readonly ANALOG_TIMER: "AnalogTimer";
21
+ readonly SERIAL_DIGITAL_INPUT: "SerialDigitalInput";
22
+ readonly SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput";
23
+ readonly SERIAL_LINE_COMMAND: "SerialLineCommand";
24
+ readonly SERIAL_ANALOG_INPUT: "SerialAnalogInput";
25
+ readonly SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput";
26
+ };
27
+ export type ChannelSpecificType = (typeof ChannelSpecificTypes)[keyof typeof ChannelSpecificTypes];
@@ -0,0 +1,30 @@
1
+ export const ChannelBaseTypes = {
2
+ VIRTUAL_ANALOG: "VirtualAnalog",
3
+ VIRTUAL_DIGITAL: "VirtualDigital",
4
+ VIRTUAL_STRING: "VirtualString",
5
+ WIRED_ANALOG: "WiredAnalog",
6
+ WIRED_DIGITAL: "WiredDigital"
7
+ };
8
+ export const ChannelSpecificTypes = {
9
+ // Wired types
10
+ DIGITAL_INPUT: "DigitalInput",
11
+ DIGITAL_OUTPUT: "DigitalOutput",
12
+ ANALOG_INPUT: "AnalogInput",
13
+ ANALOG_OUTPUT: "AnalogOutput",
14
+ // Virtual types
15
+ ANALOG_SOFTWARE: "AnalogSoftware",
16
+ DIGITAL_SOFTWARE: "DigitalSoftware",
17
+ VIRTUAL_STRING: "VirtualString",
18
+ COMMAND: "Command",
19
+ // Virtual logic types
20
+ BROADCAST_COMMAND: "BroadcastCommand",
21
+ // To be deleted in the near future
22
+ SOFTWARE: "Software",
23
+ ANALOG_TIMER: "AnalogTimer",
24
+ // Serial types
25
+ SERIAL_DIGITAL_INPUT: "SerialDigitalInput",
26
+ SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput",
27
+ SERIAL_LINE_COMMAND: "SerialLineCommand",
28
+ SERIAL_ANALOG_INPUT: "SerialAnalogInput",
29
+ SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput"
30
+ };
@@ -0,0 +1,19 @@
1
+ export declare const EventCategories: {
2
+ readonly ACCESS_CONTROL: "AccessControl";
3
+ readonly REQUEST_ERROR: "RequestErrors";
4
+ readonly OS: "OperatingSystemEvents";
5
+ readonly CONTROL: "ControlSystemEvents";
6
+ readonly BACKUP: "BackupAndRestoreEvents";
7
+ readonly CONFIG_CHANGE: "ConfigurationChanges";
8
+ readonly LOGS: "AuditLogEvents";
9
+ readonly POTENTIAL_ATTACK: "PotentialAttackActivity";
10
+ };
11
+ export type EventCategory = (typeof EventCategories)[keyof typeof EventCategories];
12
+ export declare const EventCriticalities: {
13
+ readonly VERBOSE: "Verbose";
14
+ readonly INFO: "Info";
15
+ readonly WARNING: "Warning";
16
+ readonly ERROR: "Error";
17
+ readonly CRITICAL: "Critical";
18
+ };
19
+ export type EventCriticality = (typeof EventCriticalities)[keyof typeof EventCriticalities];
@@ -0,0 +1,17 @@
1
+ export const EventCategories = {
2
+ ACCESS_CONTROL: "AccessControl",
3
+ REQUEST_ERROR: "RequestErrors",
4
+ OS: "OperatingSystemEvents",
5
+ CONTROL: "ControlSystemEvents",
6
+ BACKUP: "BackupAndRestoreEvents",
7
+ CONFIG_CHANGE: "ConfigurationChanges",
8
+ LOGS: "AuditLogEvents",
9
+ POTENTIAL_ATTACK: "PotentialAttackActivity"
10
+ };
11
+ export const EventCriticalities = {
12
+ VERBOSE: "Verbose",
13
+ INFO: "Info",
14
+ WARNING: "Warning",
15
+ ERROR: "Error",
16
+ CRITICAL: "Critical"
17
+ };
@@ -0,0 +1,254 @@
1
+ export 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
+ export type MimicElementType = (typeof MimicElementTypes)[keyof typeof MimicElementTypes];
40
+ export declare const ZDepths: {
41
+ readonly BACKGROUND: "Background";
42
+ readonly LOW: "Low";
43
+ readonly NORMAL: "Normal";
44
+ readonly HIGH: "High";
45
+ };
46
+ export type ZDepth = (typeof ZDepths)[keyof typeof ZDepths];
47
+ export declare const TitleAligns: {
48
+ readonly BOTTOM: "Bottom";
49
+ readonly LEFT: "Left";
50
+ readonly RIGHT: "Right";
51
+ readonly TOP: "Top";
52
+ };
53
+ export type TitleAlign = (typeof TitleAligns)[keyof typeof TitleAligns];
54
+ export declare const DigitalStates: {
55
+ readonly NO_VALUE: "NoValue";
56
+ readonly OPEN: "Open";
57
+ readonly CLOSE: "Close";
58
+ readonly UNDEFINED: "Undefined";
59
+ };
60
+ export type DigitalState = (typeof DigitalStates)[keyof typeof DigitalStates];
61
+ export declare const DigitalAlarmStates: {
62
+ readonly NO_ALARM: "NoAlarm";
63
+ readonly ALARM: "Alarm";
64
+ readonly UNDEFINED: "Undefined";
65
+ };
66
+ export type DigitalAlarmState = (typeof DigitalAlarmStates)[keyof typeof DigitalAlarmStates];
67
+ export 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
+ export type AlarmState = (typeof AlarmStates)[keyof typeof AlarmStates];
80
+ export 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
+ export type MimicAlarmState = (typeof MimicAlarmStates)[keyof typeof MimicAlarmStates];
93
+ export declare const MimicControlStates: {
94
+ NO_VALUE: string;
95
+ LOCAL: string;
96
+ AUTOMATIC: string;
97
+ SEMI_AUTOMATIC: string;
98
+ UNDEFINED: string;
99
+ };
100
+ export type MimicControlState = (typeof MimicControlStates)[keyof typeof MimicControlStates];
101
+ export declare const ActivationModes: {
102
+ readonly ALARM: "Alarm";
103
+ readonly LOGIC: "Logic";
104
+ readonly VALUE: "Value";
105
+ };
106
+ export type ActivationMode = (typeof ActivationModes)[keyof typeof ActivationModes];
107
+ export declare const TextAnchorPoints: {
108
+ readonly LEFT: "Left";
109
+ readonly CENTER: "Center";
110
+ readonly RIGHT: "Right";
111
+ };
112
+ export type TextAnchorPoint = (typeof TextAnchorPoints)[keyof typeof TextAnchorPoints];
113
+ export declare const ValveDesigns: {
114
+ readonly MECHANIC: "Mechanic";
115
+ readonly NORMAL: "Normal";
116
+ };
117
+ export type ValveDesign = (typeof ValveDesigns)[keyof typeof ValveDesigns];
118
+ export declare const FanDesigns: {
119
+ readonly NORMAL: "Normal";
120
+ readonly BLADED: "Bladed";
121
+ };
122
+ export type FanDesign = (typeof FanDesigns)[keyof typeof FanDesigns];
123
+ export 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
+ export type FanRunState = (typeof FanRunStates)[keyof typeof FanRunStates];
131
+ export declare const FanDirections: {
132
+ readonly NO_VALUE: "NoValue";
133
+ readonly UNDEFINED: "Undefined";
134
+ readonly SUPPLY: "Supply";
135
+ readonly EXHAUST: "Exhaust";
136
+ };
137
+ export type FanDirection = (typeof FanDirections)[keyof typeof FanDirections];
138
+ export 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
+ export type FanType = (typeof FanTypes)[keyof typeof FanTypes];
145
+ export declare const LevelBarOrientations: {
146
+ readonly VERTICAL: "Vertical";
147
+ readonly HORIZONTAL: "Horizontal";
148
+ };
149
+ export type LevelBarOrientation = (typeof LevelBarOrientations)[keyof typeof LevelBarOrientations];
150
+ export declare const SliderOrientations: {
151
+ readonly VERTICAL: "Vertical";
152
+ readonly HORIZONTAL: "Horizontal";
153
+ };
154
+ export type SliderOrientation = (typeof SliderOrientations)[keyof typeof SliderOrientations];
155
+ export 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
+ export type CompressorDesign = (typeof CompressorDesigns)[keyof typeof CompressorDesigns];
165
+ export declare const LedTypes: {
166
+ readonly CIRCLE: "Circle";
167
+ readonly SQUARE: "Square";
168
+ };
169
+ export type LedType = (typeof LedTypes)[keyof typeof LedTypes];
170
+ export declare const InfoLocations: {
171
+ readonly BOTTOM: "Bottom";
172
+ readonly LEFT: "Left";
173
+ readonly RIGHT: "Right";
174
+ readonly TOP: "Top";
175
+ };
176
+ export type InfoLocation = (typeof InfoLocations)[keyof typeof InfoLocations];
177
+ export declare const MarkTypes: {
178
+ readonly LARGE_LINE: "LargeLine";
179
+ readonly SHORT_LINE: "ShortLine";
180
+ readonly TRIANGLE: "Triangle";
181
+ };
182
+ export type MarkType = (typeof MarkTypes)[keyof typeof MarkTypes];
183
+ export declare const ScalePositions: {
184
+ readonly LEFT: "Left";
185
+ readonly RIGHT: "Right";
186
+ };
187
+ export type ScalePosition = (typeof ScalePositions)[keyof typeof ScalePositions];
188
+ export declare const ValueTypes: {
189
+ readonly PERCENTAGE: "Percentage";
190
+ readonly RAW: "Raw";
191
+ };
192
+ export type ValueType = (typeof ValueTypes)[keyof typeof ValueTypes];
193
+ export declare const OperationModeStates: {
194
+ readonly ACTIVE: 0;
195
+ readonly INACTIVE: 1;
196
+ readonly IN_TRANSITION: 2;
197
+ readonly FAILED: 3;
198
+ };
199
+ export type OperationModeState = (typeof OperationModeStates)[keyof typeof OperationModeStates];
200
+ export declare const UnitDesigns: {
201
+ readonly IMAGE: "Image";
202
+ readonly MODERN: "Modern";
203
+ };
204
+ export type UnitDesign = (typeof UnitDesigns)[keyof typeof UnitDesigns];
205
+ export declare const StationDesigns: {
206
+ readonly IMAGE: "Image";
207
+ readonly MONITOR: "Monitor";
208
+ readonly SCREEN: "Screen";
209
+ };
210
+ export type StationDesign = (typeof StationDesigns)[keyof typeof StationDesigns];
211
+ export declare const RepeaterDesigns: {
212
+ readonly IMAGE: "Image";
213
+ readonly SLIM: "SLim";
214
+ readonly DIAMAR_REPEATER: "DiamarRepeater";
215
+ };
216
+ export type RepeaterDesign = (typeof RepeaterDesigns)[keyof typeof RepeaterDesigns];
217
+ export declare const CabinetDesigns: {
218
+ readonly IMAGE: "Image";
219
+ readonly MODERN: "Modern";
220
+ };
221
+ export type CabinetDesign = (typeof CabinetDesigns)[keyof typeof CabinetDesigns];
222
+ export declare const LinkDesigns: {
223
+ readonly BUTTON: "Button";
224
+ readonly IMAGE: "Image";
225
+ };
226
+ export type LinkDesign = (typeof LinkDesigns)[keyof typeof LinkDesigns];
227
+ export declare const OpClStates: {
228
+ readonly NO_VALUE: "NoValue";
229
+ readonly OPEN: "Open";
230
+ readonly CLOSE: "Close";
231
+ readonly UNDEFINED: "Undefined";
232
+ };
233
+ export type OpClState = (typeof OpClStates)[keyof typeof OpClStates];
234
+ export declare const RunningStoppedStates: {
235
+ readonly NO_VALUE: "NoValue";
236
+ readonly RUNNING: "Running";
237
+ readonly STOPPED: "Stopped";
238
+ readonly UNDEFINED: "Undefined";
239
+ };
240
+ export type RunningStoppedState = (typeof RunningStoppedStates)[keyof typeof RunningStoppedStates];
241
+ export declare const AutoSemiAutoStates: {
242
+ readonly NO_VALUE: "NoValue";
243
+ readonly AUTOMATIC: "Automatic";
244
+ readonly SEMI_AUTOMATIC: "SemiAuto";
245
+ readonly UNDEFINED: "Undefined";
246
+ };
247
+ export type AutoSemiAutoState = (typeof AutoSemiAutoStates)[keyof typeof AutoSemiAutoStates];
248
+ export declare const RemoteLocalStates: {
249
+ readonly NO_VALUE: "NoValue";
250
+ readonly REMOTE: "Remote";
251
+ readonly LOCAL: "Local";
252
+ readonly UNDEFINED: "Undefined";
253
+ };
254
+ export type RemoteLocalState = (typeof RemoteLocalStates)[keyof typeof RemoteLocalStates];