@sedni/cloud_common 1.2.0 → 2.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,152 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
6
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
7
+ }) : x)(function(x) {
8
+ if (typeof require !== "undefined") return require.apply(this, arguments);
9
+ throw Error('Dynamic require of "' + x + '" is not supported');
10
+ });
11
+ var __esm = (fn, res) => function __init() {
12
+ return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
13
+ };
14
+ var __commonJS = (cb, mod) => function __require2() {
15
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
16
+ };
17
+ var __export = (target, all) => {
18
+ for (var name in all)
19
+ __defProp(target, name, { get: all[name], enumerable: true });
20
+ };
21
+ var __copyProps = (to, from, except, desc) => {
22
+ if (from && typeof from === "object" || typeof from === "function") {
23
+ for (let key of __getOwnPropNames(from))
24
+ if (!__hasOwnProp.call(to, key) && key !== except)
25
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
26
+ }
27
+ return to;
28
+ };
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
+
31
+ // app/types/alarm.types.ts
32
+ var alarm_types_exports = {};
33
+ __export(alarm_types_exports, {
34
+ AlarmPriorities: () => AlarmPriorities,
35
+ AlarmTypes: () => AlarmTypes,
36
+ CloudAlarmStates: () => CloudAlarmStates,
37
+ DiamarAlarmStates: () => DiamarAlarmStates
38
+ });
39
+ var AlarmPriorities, DiamarAlarmStates, CloudAlarmStates, AlarmTypes;
40
+ var init_alarm_types = __esm({
41
+ "app/types/alarm.types.ts"() {
42
+ "use strict";
43
+ AlarmPriorities = {
44
+ CRITICAL: "Critical",
45
+ ALARM: "Alarm",
46
+ WARNING: "Warning"
47
+ };
48
+ DiamarAlarmStates = {
49
+ INACTIVE: "Inactive",
50
+ ACKNOWLEDGED: "Acknowledged",
51
+ ACTIVE: "Active",
52
+ UNACKNOWLEDGED: "Unacknowledged",
53
+ UNDEFINED: "Undefined"
54
+ };
55
+ CloudAlarmStates = {
56
+ INACTIVE: "Inactive",
57
+ ALARM: "Active",
58
+ ALARM_ACK: "Acknowledged",
59
+ WARNING: "WarningActive",
60
+ WARNING_ACK: "WarningAcknowledged",
61
+ RETURN_NO_ACK: "Unacknowledged",
62
+ INHIBITED: "Inhibited",
63
+ OFFSCAN: "Offscan",
64
+ UNDEFINED: "Undefined"
65
+ };
66
+ AlarmTypes = {
67
+ NORMAL: "Normal",
68
+ ALARM_OPEN: "AlarmOpen",
69
+ ALARM_CLOSE: "AlarmClose",
70
+ ALARM_IFH: "AlarmIfh",
71
+ ALARM_HH: "AlarmHh",
72
+ ALARM_H: "AlarmH",
73
+ ALARM_L: "AlarmL",
74
+ ALARM_LL: "AlarmLl",
75
+ ALARM_IFL: "AlarmIfl",
76
+ ALARM_OFFSCAN: "AlarmOffScan",
77
+ ALARM_FAIL: "AlarmFail",
78
+ ALARM_INH: "AlarmInh",
79
+ ALARM_UNK: "AlarmUnk"
80
+ };
81
+ }
82
+ });
83
+
84
+ // app/types/event.types.ts
85
+ var event_types_exports = {};
86
+ __export(event_types_exports, {
87
+ EventCategories: () => EventCategories,
88
+ EventCriticalities: () => EventCriticalities
89
+ });
90
+ var EventCategories, EventCriticalities;
91
+ var init_event_types = __esm({
92
+ "app/types/event.types.ts"() {
93
+ "use strict";
94
+ EventCategories = {
95
+ ACCESS_CONTROL: "AccessControl",
96
+ REQUEST_ERROR: "RequestErrors",
97
+ OS: "OperatingSystemEvents",
98
+ CONTROL: "ControlSystemEvents",
99
+ BACKUP: "BackupAndRestoreEvents",
100
+ CONFIG_CHANGE: "ConfigurationChanges",
101
+ LOGS: "AuditLogEvents",
102
+ POTENTIAL_ATTACK: "PotentialAttackActivity"
103
+ };
104
+ EventCriticalities = {
105
+ VERBOSE: "Verbose",
106
+ INFO: "Info",
107
+ WARNING: "Warning",
108
+ ERROR: "Error",
109
+ CRITICAL: "Critical"
110
+ };
111
+ }
112
+ });
113
+
114
+ // app/types/unit.types.ts
115
+ var unit_types_exports = {};
116
+ __export(unit_types_exports, {
117
+ UnitTypes: () => UnitTypes
118
+ });
119
+ var UnitTypes;
120
+ var init_unit_types = __esm({
121
+ "app/types/unit.types.ts"() {
122
+ "use strict";
123
+ UnitTypes = {
124
+ AIM18: "Aim18",
125
+ DIM36: "Dim36",
126
+ DIOM24: "Diom24",
127
+ KLIM: "Klim",
128
+ LUM: "Lum",
129
+ PMM: "Pmm",
130
+ SLIM: "Slim",
131
+ TIM28: "Tim28"
132
+ };
133
+ }
134
+ });
135
+
136
+ export {
137
+ __require,
138
+ __commonJS,
139
+ __toCommonJS,
140
+ AlarmPriorities,
141
+ DiamarAlarmStates,
142
+ CloudAlarmStates,
143
+ AlarmTypes,
144
+ alarm_types_exports,
145
+ init_alarm_types,
146
+ EventCategories,
147
+ event_types_exports,
148
+ init_event_types,
149
+ UnitTypes,
150
+ unit_types_exports,
151
+ init_unit_types
152
+ };
package/dist/index.cjs ADDED
@@ -0,0 +1,137 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // app/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ Types: () => Types
24
+ });
25
+ module.exports = __toCommonJS(index_exports);
26
+
27
+ // app/types/alarm.types.ts
28
+ var AlarmPriorities = {
29
+ CRITICAL: "Critical",
30
+ ALARM: "Alarm",
31
+ WARNING: "Warning"
32
+ };
33
+ var DiamarAlarmStates = {
34
+ INACTIVE: "Inactive",
35
+ ACKNOWLEDGED: "Acknowledged",
36
+ ACTIVE: "Active",
37
+ UNACKNOWLEDGED: "Unacknowledged",
38
+ UNDEFINED: "Undefined"
39
+ };
40
+ var CloudAlarmStates = {
41
+ INACTIVE: "Inactive",
42
+ ALARM: "Active",
43
+ ALARM_ACK: "Acknowledged",
44
+ WARNING: "WarningActive",
45
+ WARNING_ACK: "WarningAcknowledged",
46
+ RETURN_NO_ACK: "Unacknowledged",
47
+ INHIBITED: "Inhibited",
48
+ OFFSCAN: "Offscan",
49
+ UNDEFINED: "Undefined"
50
+ };
51
+ var AlarmTypes = {
52
+ NORMAL: "Normal",
53
+ ALARM_OPEN: "AlarmOpen",
54
+ ALARM_CLOSE: "AlarmClose",
55
+ ALARM_IFH: "AlarmIfh",
56
+ ALARM_HH: "AlarmHh",
57
+ ALARM_H: "AlarmH",
58
+ ALARM_L: "AlarmL",
59
+ ALARM_LL: "AlarmLl",
60
+ ALARM_IFL: "AlarmIfl",
61
+ ALARM_OFFSCAN: "AlarmOffScan",
62
+ ALARM_FAIL: "AlarmFail",
63
+ ALARM_INH: "AlarmInh",
64
+ ALARM_UNK: "AlarmUnk"
65
+ };
66
+
67
+ // app/types/channel.types.ts
68
+ var ChannelBaseTypes = {
69
+ VIRTUAL_ANALOG: "VirtualAnalog",
70
+ VIRTUAL_DIGITAL: "VirtualDigital",
71
+ VIRTUAL_STRING: "VirtualString",
72
+ WIRED_ANALOG: "WiredAnalog",
73
+ WIRED_DIGITAL: "WiredDigital"
74
+ };
75
+ var ChannelSpecificTypes = {
76
+ // Wired types
77
+ DIGITAL_INPUT: "DigitalInput",
78
+ DIGITAL_OUTPUT: "DigitalOutput",
79
+ ANALOG_INPUT: "AnalogInput",
80
+ ANALOG_OUTPUT: "AnalogOutput",
81
+ // Virtual types
82
+ ANALOG_SOFTWARE: "AnalogSoftware",
83
+ DIGITAL_SOFTWARE: "DigitalSoftware",
84
+ VIRTUAL_STRING: "VirtualString",
85
+ COMMAND: "Command",
86
+ // Virtual logic types
87
+ BROADCAST_COMMAND: "BroadcastCommand",
88
+ // To be deleted in the near future
89
+ SOFTWARE: "Software",
90
+ ANALOG_TIMER: "AnalogTimer",
91
+ // Serial types
92
+ SERIAL_DIGITAL_INPUT: "SerialDigitalInput",
93
+ SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput",
94
+ SERIAL_LINE_COMMAND: "SerialLineCommand",
95
+ SERIAL_ANALOG_INPUT: "SerialAnalogInput",
96
+ SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput"
97
+ };
98
+
99
+ // app/types/event.types.ts
100
+ var EventCategories = {
101
+ ACCESS_CONTROL: "AccessControl",
102
+ REQUEST_ERROR: "RequestErrors",
103
+ OS: "OperatingSystemEvents",
104
+ CONTROL: "ControlSystemEvents",
105
+ BACKUP: "BackupAndRestoreEvents",
106
+ CONFIG_CHANGE: "ConfigurationChanges",
107
+ LOGS: "AuditLogEvents",
108
+ POTENTIAL_ATTACK: "PotentialAttackActivity"
109
+ };
110
+
111
+ // app/types/unit.types.ts
112
+ var UnitTypes = {
113
+ AIM18: "Aim18",
114
+ DIM36: "Dim36",
115
+ DIOM24: "Diom24",
116
+ KLIM: "Klim",
117
+ LUM: "Lum",
118
+ PMM: "Pmm",
119
+ SLIM: "Slim",
120
+ TIM28: "Tim28"
121
+ };
122
+
123
+ // app/index.ts
124
+ var Types = {
125
+ AlarmTypes,
126
+ AlarmPriorities,
127
+ CloudAlarmStates,
128
+ DiamarAlarmStates,
129
+ ChannelBaseTypes,
130
+ ChannelSpecificTypes,
131
+ EventCategories,
132
+ UnitTypes
133
+ };
134
+ // Annotate the CommonJS export names for ESM import in node:
135
+ 0 && (module.exports = {
136
+ Types
137
+ });
@@ -0,0 +1,87 @@
1
+ declare const Types: {
2
+ AlarmTypes: {
3
+ readonly NORMAL: "Normal";
4
+ readonly ALARM_OPEN: "AlarmOpen";
5
+ readonly ALARM_CLOSE: "AlarmClose";
6
+ readonly ALARM_IFH: "AlarmIfh";
7
+ readonly ALARM_HH: "AlarmHh";
8
+ readonly ALARM_H: "AlarmH";
9
+ readonly ALARM_L: "AlarmL";
10
+ readonly ALARM_LL: "AlarmLl";
11
+ readonly ALARM_IFL: "AlarmIfl";
12
+ readonly ALARM_OFFSCAN: "AlarmOffScan";
13
+ readonly ALARM_FAIL: "AlarmFail";
14
+ readonly ALARM_INH: "AlarmInh";
15
+ readonly ALARM_UNK: "AlarmUnk";
16
+ };
17
+ AlarmPriorities: {
18
+ readonly CRITICAL: "Critical";
19
+ readonly ALARM: "Alarm";
20
+ readonly WARNING: "Warning";
21
+ };
22
+ CloudAlarmStates: {
23
+ readonly INACTIVE: "Inactive";
24
+ readonly ALARM: "Active";
25
+ readonly ALARM_ACK: "Acknowledged";
26
+ readonly WARNING: "WarningActive";
27
+ readonly WARNING_ACK: "WarningAcknowledged";
28
+ readonly RETURN_NO_ACK: "Unacknowledged";
29
+ readonly INHIBITED: "Inhibited";
30
+ readonly OFFSCAN: "Offscan";
31
+ readonly UNDEFINED: "Undefined";
32
+ };
33
+ DiamarAlarmStates: {
34
+ readonly INACTIVE: "Inactive";
35
+ readonly ACKNOWLEDGED: "Acknowledged";
36
+ readonly ACTIVE: "Active";
37
+ readonly UNACKNOWLEDGED: "Unacknowledged";
38
+ readonly UNDEFINED: "Undefined";
39
+ };
40
+ ChannelBaseTypes: {
41
+ readonly VIRTUAL_ANALOG: "VirtualAnalog";
42
+ readonly VIRTUAL_DIGITAL: "VirtualDigital";
43
+ readonly VIRTUAL_STRING: "VirtualString";
44
+ readonly WIRED_ANALOG: "WiredAnalog";
45
+ readonly WIRED_DIGITAL: "WiredDigital";
46
+ };
47
+ ChannelSpecificTypes: {
48
+ readonly DIGITAL_INPUT: "DigitalInput";
49
+ readonly DIGITAL_OUTPUT: "DigitalOutput";
50
+ readonly ANALOG_INPUT: "AnalogInput";
51
+ readonly ANALOG_OUTPUT: "AnalogOutput";
52
+ readonly ANALOG_SOFTWARE: "AnalogSoftware";
53
+ readonly DIGITAL_SOFTWARE: "DigitalSoftware";
54
+ readonly VIRTUAL_STRING: "VirtualString";
55
+ readonly COMMAND: "Command";
56
+ readonly BROADCAST_COMMAND: "BroadcastCommand";
57
+ readonly SOFTWARE: "Software";
58
+ readonly ANALOG_TIMER: "AnalogTimer";
59
+ readonly SERIAL_DIGITAL_INPUT: "SerialDigitalInput";
60
+ readonly SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput";
61
+ readonly SERIAL_LINE_COMMAND: "SerialLineCommand";
62
+ readonly SERIAL_ANALOG_INPUT: "SerialAnalogInput";
63
+ readonly SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput";
64
+ };
65
+ EventCategories: {
66
+ readonly ACCESS_CONTROL: "AccessControl";
67
+ readonly REQUEST_ERROR: "RequestErrors";
68
+ readonly OS: "OperatingSystemEvents";
69
+ readonly CONTROL: "ControlSystemEvents";
70
+ readonly BACKUP: "BackupAndRestoreEvents";
71
+ readonly CONFIG_CHANGE: "ConfigurationChanges";
72
+ readonly LOGS: "AuditLogEvents";
73
+ readonly POTENTIAL_ATTACK: "PotentialAttackActivity";
74
+ };
75
+ UnitTypes: {
76
+ readonly AIM18: "Aim18";
77
+ readonly DIM36: "Dim36";
78
+ readonly DIOM24: "Diom24";
79
+ readonly KLIM: "Klim";
80
+ readonly LUM: "Lum";
81
+ readonly PMM: "Pmm";
82
+ readonly SLIM: "Slim";
83
+ readonly TIM28: "Tim28";
84
+ };
85
+ };
86
+
87
+ export { Types };
@@ -0,0 +1,87 @@
1
+ declare const Types: {
2
+ AlarmTypes: {
3
+ readonly NORMAL: "Normal";
4
+ readonly ALARM_OPEN: "AlarmOpen";
5
+ readonly ALARM_CLOSE: "AlarmClose";
6
+ readonly ALARM_IFH: "AlarmIfh";
7
+ readonly ALARM_HH: "AlarmHh";
8
+ readonly ALARM_H: "AlarmH";
9
+ readonly ALARM_L: "AlarmL";
10
+ readonly ALARM_LL: "AlarmLl";
11
+ readonly ALARM_IFL: "AlarmIfl";
12
+ readonly ALARM_OFFSCAN: "AlarmOffScan";
13
+ readonly ALARM_FAIL: "AlarmFail";
14
+ readonly ALARM_INH: "AlarmInh";
15
+ readonly ALARM_UNK: "AlarmUnk";
16
+ };
17
+ AlarmPriorities: {
18
+ readonly CRITICAL: "Critical";
19
+ readonly ALARM: "Alarm";
20
+ readonly WARNING: "Warning";
21
+ };
22
+ CloudAlarmStates: {
23
+ readonly INACTIVE: "Inactive";
24
+ readonly ALARM: "Active";
25
+ readonly ALARM_ACK: "Acknowledged";
26
+ readonly WARNING: "WarningActive";
27
+ readonly WARNING_ACK: "WarningAcknowledged";
28
+ readonly RETURN_NO_ACK: "Unacknowledged";
29
+ readonly INHIBITED: "Inhibited";
30
+ readonly OFFSCAN: "Offscan";
31
+ readonly UNDEFINED: "Undefined";
32
+ };
33
+ DiamarAlarmStates: {
34
+ readonly INACTIVE: "Inactive";
35
+ readonly ACKNOWLEDGED: "Acknowledged";
36
+ readonly ACTIVE: "Active";
37
+ readonly UNACKNOWLEDGED: "Unacknowledged";
38
+ readonly UNDEFINED: "Undefined";
39
+ };
40
+ ChannelBaseTypes: {
41
+ readonly VIRTUAL_ANALOG: "VirtualAnalog";
42
+ readonly VIRTUAL_DIGITAL: "VirtualDigital";
43
+ readonly VIRTUAL_STRING: "VirtualString";
44
+ readonly WIRED_ANALOG: "WiredAnalog";
45
+ readonly WIRED_DIGITAL: "WiredDigital";
46
+ };
47
+ ChannelSpecificTypes: {
48
+ readonly DIGITAL_INPUT: "DigitalInput";
49
+ readonly DIGITAL_OUTPUT: "DigitalOutput";
50
+ readonly ANALOG_INPUT: "AnalogInput";
51
+ readonly ANALOG_OUTPUT: "AnalogOutput";
52
+ readonly ANALOG_SOFTWARE: "AnalogSoftware";
53
+ readonly DIGITAL_SOFTWARE: "DigitalSoftware";
54
+ readonly VIRTUAL_STRING: "VirtualString";
55
+ readonly COMMAND: "Command";
56
+ readonly BROADCAST_COMMAND: "BroadcastCommand";
57
+ readonly SOFTWARE: "Software";
58
+ readonly ANALOG_TIMER: "AnalogTimer";
59
+ readonly SERIAL_DIGITAL_INPUT: "SerialDigitalInput";
60
+ readonly SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput";
61
+ readonly SERIAL_LINE_COMMAND: "SerialLineCommand";
62
+ readonly SERIAL_ANALOG_INPUT: "SerialAnalogInput";
63
+ readonly SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput";
64
+ };
65
+ EventCategories: {
66
+ readonly ACCESS_CONTROL: "AccessControl";
67
+ readonly REQUEST_ERROR: "RequestErrors";
68
+ readonly OS: "OperatingSystemEvents";
69
+ readonly CONTROL: "ControlSystemEvents";
70
+ readonly BACKUP: "BackupAndRestoreEvents";
71
+ readonly CONFIG_CHANGE: "ConfigurationChanges";
72
+ readonly LOGS: "AuditLogEvents";
73
+ readonly POTENTIAL_ATTACK: "PotentialAttackActivity";
74
+ };
75
+ UnitTypes: {
76
+ readonly AIM18: "Aim18";
77
+ readonly DIM36: "Dim36";
78
+ readonly DIOM24: "Diom24";
79
+ readonly KLIM: "Klim";
80
+ readonly LUM: "Lum";
81
+ readonly PMM: "Pmm";
82
+ readonly SLIM: "Slim";
83
+ readonly TIM28: "Tim28";
84
+ };
85
+ };
86
+
87
+ export { Types };
package/dist/index.js ADDED
@@ -0,0 +1,63 @@
1
+ import {
2
+ AlarmPriorities,
3
+ AlarmTypes,
4
+ CloudAlarmStates,
5
+ DiamarAlarmStates,
6
+ EventCategories,
7
+ UnitTypes,
8
+ init_alarm_types,
9
+ init_event_types,
10
+ init_unit_types
11
+ } from "./chunk-NCUZ3O3P.js";
12
+
13
+ // app/index.ts
14
+ init_alarm_types();
15
+
16
+ // app/types/channel.types.ts
17
+ var ChannelBaseTypes = {
18
+ VIRTUAL_ANALOG: "VirtualAnalog",
19
+ VIRTUAL_DIGITAL: "VirtualDigital",
20
+ VIRTUAL_STRING: "VirtualString",
21
+ WIRED_ANALOG: "WiredAnalog",
22
+ WIRED_DIGITAL: "WiredDigital"
23
+ };
24
+ var ChannelSpecificTypes = {
25
+ // Wired types
26
+ DIGITAL_INPUT: "DigitalInput",
27
+ DIGITAL_OUTPUT: "DigitalOutput",
28
+ ANALOG_INPUT: "AnalogInput",
29
+ ANALOG_OUTPUT: "AnalogOutput",
30
+ // Virtual types
31
+ ANALOG_SOFTWARE: "AnalogSoftware",
32
+ DIGITAL_SOFTWARE: "DigitalSoftware",
33
+ VIRTUAL_STRING: "VirtualString",
34
+ COMMAND: "Command",
35
+ // Virtual logic types
36
+ BROADCAST_COMMAND: "BroadcastCommand",
37
+ // To be deleted in the near future
38
+ SOFTWARE: "Software",
39
+ ANALOG_TIMER: "AnalogTimer",
40
+ // Serial types
41
+ SERIAL_DIGITAL_INPUT: "SerialDigitalInput",
42
+ SERIAL_DIGITAL_OUTPUT: "SerialDigitalOutput",
43
+ SERIAL_LINE_COMMAND: "SerialLineCommand",
44
+ SERIAL_ANALOG_INPUT: "SerialAnalogInput",
45
+ SERIAL_ANALOG_OUTPUT: "SerialAnalogOutput"
46
+ };
47
+
48
+ // app/index.ts
49
+ init_event_types();
50
+ init_unit_types();
51
+ var Types = {
52
+ AlarmTypes,
53
+ AlarmPriorities,
54
+ CloudAlarmStates,
55
+ DiamarAlarmStates,
56
+ ChannelBaseTypes,
57
+ ChannelSpecificTypes,
58
+ EventCategories,
59
+ UnitTypes
60
+ };
61
+ export {
62
+ Types
63
+ };