@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.
@@ -1,43 +0,0 @@
1
- const ChannelBaseTypes =
2
- {
3
- VIRTUAL_ANALOG : "VirtualAnalog",
4
- VIRTUAL_DIGITAL : "VirtualDigital",
5
- VIRTUAL_STRING : "VirtualString",
6
- WIRED_ANALOG : "WiredAnalog",
7
- WIRED_DIGITAL : "WiredDigital",
8
- };
9
-
10
- const ChannelSpecificTypes =
11
- {
12
- // Wired types
13
- DIGITAL_INPUT : "DigitalInput",
14
- DIGITAL_OUTPUT : "DigitalOutput",
15
- ANALOG_INPUT : "AnalogInput",
16
- ANALOG_OUTPUT : "AnalogOutput",
17
-
18
- // Virtual types
19
- ANALOG_SOFTWARE : "AnalogSoftware",
20
- DIGITAL_SOFTWARE : "DigitalSoftware",
21
- VIRTUAL_STRING : "VirtualString",
22
- COMMAND : "Command",
23
-
24
- // Virtual logic types
25
- BROADCAST_COMMAND : "BroadcastCommand",
26
-
27
- // To be deleted in the near future
28
- SOFTWARE: "Software",
29
-
30
- ANALOG_TIMER : "AnalogTimer",
31
-
32
- // Serial types
33
- SERIAL_DIGITAL_INPUT : "SerialDigitalInput",
34
- SERIAL_DIGITAL_OUTPUT : "SerialDigitalOutput",
35
- SERIAL_LINE_COMMAND : "SerialLineCommand",
36
- SERIAL_ANALOG_INPUT : "SerialAnalogInput",
37
- SERIAL_ANALOG_OUTPUT : "SerialAnalogOutput",
38
- };
39
-
40
- module.exports = {
41
- ChannelBaseTypes,
42
- ChannelSpecificTypes,
43
- };
@@ -1,24 +0,0 @@
1
- const EventCategories =
2
- {
3
- ACCESS_CONTROL: "AccessControl",
4
- REQUEST_ERROR: "RequestErrors",
5
- OS: "OperatingSystemEvents",
6
- CONTROL: "ControlSystemEvents",
7
- BACKUP: "BackupAndRestoreEvents",
8
- CONFIG_CHANGE: "ConfigurationChanges",
9
- LOGS: "AuditLogEvents",
10
- POTENTIAL_ATTACK: "PotentialAttackActivity",
11
- };
12
-
13
- const EventCriticality = {
14
- VERBOSE: "Verbose",
15
- INFO: "Info",
16
- WARNING: "Warning",
17
- ERROR: "Error",
18
- CRITICAL: "Critical",
19
- };
20
-
21
- module.exports = {
22
- EventCategories,
23
- EventCriticality,
24
- };
@@ -1,15 +0,0 @@
1
- const UnitTypes =
2
- {
3
- AIM18 : "Aim18",
4
- DIM36 : "Dim36",
5
- DIOM24 : "Diom24",
6
- KLIM : "Klim",
7
- LUM : "Lum",
8
- PMM : "Pmm",
9
- SLIM : "Slim",
10
- TIM28 : "Tim28",
11
- };
12
-
13
- module.exports = {
14
- UnitTypes
15
- };