iobroker-ucl 1.0.39 → 1.0.40

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 (2) hide show
  1. package/main.ts +16 -16
  2. package/package.json +1 -1
package/main.ts CHANGED
@@ -1,21 +1,21 @@
1
1
  // https://stackoverflow.com/questions/8595509/how-do-you-share-constants-in-nodejs-modules
2
2
 
3
- const deviceHomematicWandthermostat = "Wandthermostat";
4
- const deviceHomematicPraesenzmelder = "Praesenzmelder";
5
- const deviceHomematicWetterstation = "Wetterstation";
6
- const deviceHomematicDoor = "Door";
7
- const deviceHomematicRollladen = "Rollladen";
8
- const deviceHomematicWandschalter = "Wandschalter";
9
- const deviceHomematicFussbodenheizung = "Fussbodenheizung";
10
- const deviceHomematicWandtaster = "Wandtaster";
11
- const deviceHomematicAccessPoint = "AccessPoint";
12
- const deviceHomematicTemperatursensor = "Temperatursensor";
13
- const deviceHomematicRauchmelder = "Rauchmelder";
14
- const deviceHomematicFunkSchaltaktor = "FunkSchaltaktor";
15
- const deviceHomematicWindow = "Window";
16
- const deviceHomematicSteckdose = "Steckdose";
17
- const deviceHomematicHeizkoerper = "Heizkoerper";
18
- const deviceHomematicDimmer = "Dimmer";
3
+ const deviceHomematicWandthermostat: string = "Wandthermostat";
4
+ const deviceHomematicPraesenzmelder: string = "Praesenzmelder";
5
+ const deviceHomematicWetterstation: string = "Wetterstation";
6
+ const deviceHomematicDoor: string = "Door";
7
+ const deviceHomematicRollladen: string = "Rollladen";
8
+ const deviceHomematicWandschalter: string = "Wandschalter";
9
+ const deviceHomematicFussbodenheizung: string = "Fussbodenheizung";
10
+ const deviceHomematicWandtaster: string = "Wandtaster";
11
+ const deviceHomematicAccessPoint: string = "AccessPoint";
12
+ const deviceHomematicTemperatursensor: string = "Temperatursensor";
13
+ const deviceHomematicRauchmelder: string = "Rauchmelder";
14
+ const deviceHomematicFunkSchaltaktor: string = "FunkSchaltaktor";
15
+ const deviceHomematicWindow: string = "Window";
16
+ const deviceHomematicSteckdose: string = "Steckdose";
17
+ const deviceHomematicHeizkoerper: string = "Heizkoerper";
18
+ const deviceHomematicDimmer: string = "Dimmer";
19
19
 
20
20
  const { DateHelper } = require('./date.js');
21
21
  const { DateCalendarTest } = require('./test.js');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker-ucl",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "main": "main.js",
5
5
  "scripts": {
6
6
  "build": "tsc --build",