isy-nodejs 1.0.5-alpha.1 → 1.0.6-alpha.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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "isy-nodejs",
3
3
  "description": "Node.js wrapper for ISY interface including websockets for change notifications. Fork of isy-js by Rod Toll. Designed to be used in a node.js application.",
4
4
  "license": "MIT",
5
- "version": "1.0.5-alpha.1",
5
+ "version": "1.0.6-alpha.0",
6
6
  "author": {
7
7
  "name": "Pradeep Mouli"
8
8
  },
@@ -73,5 +73,5 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "gitHead": "098727cb35d99e11fcbad8026cd2f32ebcfacc29"
76
+ "gitHead": "5d625f624978b697bd1212a415587fee331d713d"
77
77
  }
package/src/ISYDevice.ts CHANGED
@@ -1,13 +1,9 @@
1
1
  import type { Command } from './Definitions/Global/Commands.js';
2
2
  import type { Driver } from './Definitions/Global/Drivers.js';
3
- import type { UnitOfMeasure } from './Definitions/Global/UOM.js';
4
3
  import type { Category, Family } from './Definitions/index.js';
5
4
  import { ISYDeviceNode } from './Devices/ISYDeviceNode.js';
6
- import type { ISY } from './ISY.js';
7
5
  import type { ISYNode } from './ISYNode.js';
8
6
  import type { ISYScene } from './ISYScene.js';
9
- import type { DriverState } from './Model/DriverState.js';
10
- import type { StringKeys } from './Utils.js';
11
7
 
12
8
  export interface ISYDevice<T extends Family, D extends ISYNode.DriverSignatures, C extends ISYNode.CommandSignatures, E extends ISYNode.EventSignatures> extends ISYDeviceInfo {
13
9
  // #region Properties (22)
@@ -354,7 +354,7 @@ async function initializeConfiguration(isy: ISY, config?: Config): Promise<Confi
354
354
  });
355
355
 
356
356
  logger.info(`Matter storage location: ${storageService.location} (Directory)`);
357
- logger.info(`Matter storage service type: ${storageService.factory.name}`);
357
+ //logger.info(`Matter storage service type: ${storageService.factory.name}`);
358
358
 
359
359
  const deviceStorage = (await storageService.open('bridge')).createContext('data');
360
360