dt-common-device 3.1.4 → 3.1.6

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 (37) hide show
  1. package/dist/audit/AuditProperties.d.ts +16 -0
  2. package/dist/audit/AuditUtils.d.ts +2 -0
  3. package/dist/audit/AuditUtils.js +36 -0
  4. package/dist/config/config.types.d.ts +1 -0
  5. package/dist/device/local/events/EventHandler.js +6 -6
  6. package/dist/device/local/events/Events.d.ts +33 -12
  7. package/dist/device/local/events/Events.js +33 -12
  8. package/dist/events/DeviceEventHandler.js +223 -139
  9. package/dist/index.d.ts +1 -0
  10. package/dist/index.js +2 -0
  11. package/dist/utils/http.utils.d.ts +2 -0
  12. package/dist/utils/http.utils.js +30 -0
  13. package/dist/utils/redis.utils.d.ts +39 -0
  14. package/dist/utils/redis.utils.js +49 -20
  15. package/package.json +4 -4
  16. package/dist/device/cloud/interface.d.ts +0 -101
  17. package/dist/device/cloud/interface.js +0 -3
  18. package/dist/device/cloud/interfaces/IDeviceConnectionService.d.ts +0 -7
  19. package/dist/device/cloud/interfaces/IDeviceConnectionService.js +0 -3
  20. package/dist/device/cloud/interfaces/IDevicesService.d.ts +0 -9
  21. package/dist/device/cloud/services/Device.service.d.ts +0 -39
  22. package/dist/device/cloud/services/Device.service.js +0 -9
  23. package/dist/device/cloud/services/DeviceCloudService.d.ts +0 -42
  24. package/dist/device/cloud/services/DeviceCloudService.js +0 -59
  25. package/dist/device/cloud/services/DeviceHub.service.d.ts +0 -3
  26. package/dist/device/cloud/services/DeviceHub.service.js +0 -6
  27. package/dist/device/cloud/services/Hub.service.d.ts +0 -25
  28. package/dist/device/cloud/services/Hub.service.js +0 -9
  29. package/dist/device/cloud/services/SmartThingsDeviceService.d.ts +0 -38
  30. package/dist/device/cloud/services/SmartThingsDeviceService.js +0 -52
  31. package/dist/device/index.d.ts +0 -4
  32. package/dist/device/index.js +0 -20
  33. package/dist/device/local/interface.d.ts +0 -0
  34. package/dist/device/local/interface.js +0 -1
  35. package/dist/device/local/services/DeviceHub.service.d.ts +0 -11
  36. package/dist/device/local/services/DeviceHub.service.js +0 -40
  37. /package/dist/{device/cloud/interfaces/IDevicesService.js → audit/AuditProperties.js} +0 -0
@@ -6,6 +6,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.validateServiceUrl = validateServiceUrl;
7
7
  exports.createAxiosInstance = createAxiosInstance;
8
8
  exports.getDeviceServiceAxiosInstance = getDeviceServiceAxiosInstance;
9
+ exports.getAccessServiceAxiosInstance = getAccessServiceAxiosInstance;
10
+ exports.getCloudServiceAxiosInstance = getCloudServiceAxiosInstance;
9
11
  exports.retryRequest = retryRequest;
10
12
  const config_1 = require("../config/config");
11
13
  const axios_1 = __importDefault(require("axios"));
@@ -89,6 +91,34 @@ function getDeviceServiceAxiosInstance() {
89
91
  }
90
92
  return deviceServiceAxiosInstance;
91
93
  }
94
+ /**
95
+ * Centralized axios instance for access service
96
+ */
97
+ let accessServiceAxiosInstance = null;
98
+ function getAccessServiceAxiosInstance() {
99
+ if (!accessServiceAxiosInstance) {
100
+ const { ACCESS_SERVICE } = (0, config_1.getConfig)();
101
+ if (!ACCESS_SERVICE) {
102
+ throw new Error("ACCESS_SERVICE is not configured. Call initialize() first with ACCESS_SERVICE.");
103
+ }
104
+ accessServiceAxiosInstance = createAxiosInstance(ACCESS_SERVICE);
105
+ }
106
+ return accessServiceAxiosInstance;
107
+ }
108
+ /**
109
+ * Centralized axios instance for cloud service (smart-cloud)
110
+ */
111
+ let cloudServiceAxiosInstance = null;
112
+ function getCloudServiceAxiosInstance() {
113
+ const { ADMIN_SERVICE } = (0, config_1.getConfig)();
114
+ if (!cloudServiceAxiosInstance) {
115
+ if (!ADMIN_SERVICE) {
116
+ throw new Error("ADMIN_SERVICE is not configured. Call initialize() first with ADMIN_SERVICE.");
117
+ }
118
+ cloudServiceAxiosInstance = createAxiosInstance(ADMIN_SERVICE);
119
+ }
120
+ return cloudServiceAxiosInstance;
121
+ }
92
122
  /**
93
123
  * Retry function for failed HTTP requests
94
124
  */
@@ -1,8 +1,47 @@
1
1
  export declare class RedisUtils {
2
2
  private readonly client;
3
+ /**
4
+ * Get a value from Redis
5
+ * @param key - The key to get
6
+ * @param field - The field to get
7
+ * @returns The value
8
+ */
3
9
  hget(key: string, field: string): Promise<any>;
10
+ /**
11
+ * Set a value in Redis with a TTL
12
+ * @param key - The key to set
13
+ * @param field - The field to set
14
+ * @param value - The value to set (JSON stringified)
15
+ * @param ttl - The TTL in seconds
16
+ * @returns The number of fields set
17
+ */
18
+ hsetWithTTL(key: string, field: string, value: string, ttl: number): Promise<number>;
19
+ /**
20
+ * Set a value in Redis
21
+ * @param key - The key to set
22
+ * @param field - The field to set
23
+ * @param value - The value to set (JSON stringified)
24
+ * @returns The number of fields set
25
+ */
4
26
  hset(key: string, field: string, value: string): Promise<number>;
27
+ /**
28
+ * Delete a field from a hash
29
+ * @param key - The key to delete from
30
+ * @param fields - The fields to delete
31
+ * @returns The number of fields deleted
32
+ */
5
33
  hdel(key: string, ...fields: string[]): Promise<number>;
34
+ /**
35
+ * Check if a key exists
36
+ * @param key - The key to check
37
+ * @returns 1 if the key exists, 0 otherwise
38
+ */
6
39
  exists(key: string): Promise<number>;
40
+ /**
41
+ * Set an expiration time for a key
42
+ * @param key - The key to set the expiration for
43
+ * @param seconds - The number of seconds until the key expires
44
+ * @returns 1 if the expiration was set, 0 if the key does not exist
45
+ */
7
46
  expire(key: string, seconds: number): Promise<any>;
8
47
  }
@@ -50,6 +50,12 @@ let RedisUtils = (() => {
50
50
  constructor() {
51
51
  this.client = (0, redis_1.getRedisClient)(); // singleton Redis client instance
52
52
  }
53
+ /**
54
+ * Get a value from Redis
55
+ * @param key - The key to get
56
+ * @param field - The field to get
57
+ * @returns The value
58
+ */
53
59
  async hget(key, field) {
54
60
  try {
55
61
  const value = await this.client.hget(key, field);
@@ -63,6 +69,32 @@ let RedisUtils = (() => {
63
69
  throw error;
64
70
  }
65
71
  }
72
+ /**
73
+ * Set a value in Redis with a TTL
74
+ * @param key - The key to set
75
+ * @param field - The field to set
76
+ * @param value - The value to set (JSON stringified)
77
+ * @param ttl - The TTL in seconds
78
+ * @returns The number of fields set
79
+ */
80
+ async hsetWithTTL(key, field, value, ttl) {
81
+ try {
82
+ await this.hset(key, field, value);
83
+ await this.expire(key, ttl);
84
+ return 1;
85
+ }
86
+ catch (error) {
87
+ console.error(`Error setting value for key ${key}:`, error);
88
+ throw error;
89
+ }
90
+ }
91
+ /**
92
+ * Set a value in Redis
93
+ * @param key - The key to set
94
+ * @param field - The field to set
95
+ * @param value - The value to set (JSON stringified)
96
+ * @returns The number of fields set
97
+ */
66
98
  async hset(key, field, value) {
67
99
  try {
68
100
  return await this.client.hset(key, field, value);
@@ -72,29 +104,20 @@ let RedisUtils = (() => {
72
104
  throw error;
73
105
  }
74
106
  }
75
- // async del(key: string): Promise<number> {
76
- // return this.client.del(key);
77
- // }
107
+ /**
108
+ * Delete a field from a hash
109
+ * @param key - The key to delete from
110
+ * @param fields - The fields to delete
111
+ * @returns The number of fields deleted
112
+ */
78
113
  async hdel(key, ...fields) {
79
114
  return await this.client.hdel(key, ...fields);
80
115
  }
81
- // async get(key: string): Promise<string | null> {
82
- // try {
83
- // return await this.client.get(key);
84
- // } catch (error) {
85
- // console.error(`Error getting value for key ${key}:`, error);
86
- // throw error;
87
- // }
88
- // }
89
- /* async set(key: string, value: string): Promise<boolean> {
90
- try {
91
- await this.client.set(key, value);
92
- return true;
93
- } catch (error) {
94
- console.error(`Error setting value for key ${key}:`, error);
95
- throw error;
96
- }
97
- } */
116
+ /**
117
+ * Check if a key exists
118
+ * @param key - The key to check
119
+ * @returns 1 if the key exists, 0 otherwise
120
+ */
98
121
  async exists(key) {
99
122
  try {
100
123
  return await this.client.exists(key);
@@ -104,6 +127,12 @@ let RedisUtils = (() => {
104
127
  throw error;
105
128
  }
106
129
  }
130
+ /**
131
+ * Set an expiration time for a key
132
+ * @param key - The key to set the expiration for
133
+ * @param seconds - The number of seconds until the key expires
134
+ * @returns 1 if the expiration was set, 0 if the key does not exist
135
+ */
107
136
  async expire(key, seconds) {
108
137
  try {
109
138
  return await this.client.expire(key, seconds);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dt-common-device",
3
- "version": "3.1.4",
3
+ "version": "3.1.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
@@ -10,9 +10,9 @@
10
10
  ],
11
11
  "scripts": {
12
12
  "build": "tsc",
13
- "patch": "npm version patch && npm run build && npm publish",
14
- "minor": "npm version minor && npm run build && npm publish",
15
- "major": "npm version major && npm run build && npm publish",
13
+ "patch": "npm version patch && npm run build && npm publish && git push",
14
+ "minor": "npm version minor && npm run build && npm publish && git push",
15
+ "major": "npm version major && npm run build && npm publish && git push",
16
16
  "security:audit": "npm audit --audit-level=moderate",
17
17
  "security:fix": "npm audit fix",
18
18
  "security:check": "npm audit && npm outdated",
@@ -1,101 +0,0 @@
1
- import { IConnection, IConnectionConnectParams, IDevice, IDeviceAccountResponse, IDeviceCommand, ISmartthingsDeviceCommand, ICommandResponse } from "./types";
2
- /**
3
- * Class interface for device cloud operations and connection management
4
- */
5
- export interface IDeviceCloudService {
6
- /**
7
- * Creates a new connection for device management
8
- * @param data - Connection data
9
- * @param userId - User identifier
10
- * @returns Promise with connection result
11
- */
12
- createConnection(data: IConnection, userId: string): Promise<any>;
13
- /**
14
- * Gets device account information for a connection
15
- * @param connection - Connection object
16
- * @returns Promise with device account response
17
- */
18
- getDeviceAccount(connection: IConnection): Promise<IDeviceAccountResponse>;
19
- /**
20
- * Gets all devices for a connection
21
- * @param connection - Connection object
22
- * @returns Promise with array of devices
23
- */
24
- getDevices(connection: IConnection): Promise<IDevice[]>;
25
- /**
26
- * Filters devices based on connection and device list
27
- * @param connection - Connection object
28
- * @param devices - Array of devices to filter
29
- * @returns Promise with filtered devices
30
- */
31
- filterDevices(connection: IConnection, devices: any[]): Promise<IDevice[]>;
32
- /**
33
- * Connects to a device service
34
- * @param connection - Connection object
35
- * @param connectionConnect - Connection parameters
36
- * @returns Promise with connection result
37
- */
38
- connect(connection: IConnection, connectionConnect: IConnectionConnectParams): Promise<any>;
39
- }
40
- /**
41
- * Interface for device command operations
42
- */
43
- export interface IDeviceCommandManager {
44
- /**
45
- * Invokes a command on a device
46
- * @param command - Device command to execute
47
- * @param deviceId - Device identifier
48
- * @returns Promise with command response
49
- */
50
- invokeCommand(command: IDeviceCommand, deviceId: string): Promise<ICommandResponse>;
51
- }
52
- /**
53
- * Interface for SmartThings specific device command operations
54
- */
55
- export interface ISmartthingsDeviceCommandManager extends IDeviceCommandManager {
56
- /**
57
- * Performs device action for SmartThings
58
- * @param commands - Array of SmartThings device commands
59
- * @param deviceId - Device identifier
60
- * @param accessToken - Access token for authentication
61
- * @returns Promise with action result
62
- */
63
- performDeviceAction(commands: ISmartthingsDeviceCommand[], deviceId: string, accessToken: string): Promise<any>;
64
- /**
65
- * Gets device status for SmartThings
66
- * @param deviceId - Device identifier
67
- * @param accessToken - Access token for authentication
68
- * @returns Promise with device status
69
- */
70
- getDeviceStatus(deviceId: string, accessToken: string): Promise<any>;
71
- /**
72
- * Gets device lock status for SmartThings
73
- * @param deviceId - Device identifier
74
- * @param accessToken - Access token for authentication
75
- * @returns Promise with lock status
76
- */
77
- getDeviceLockStatus(deviceId: string, accessToken: string): Promise<any>;
78
- }
79
- /**
80
- * Interface for device command factory
81
- */
82
- export interface IDeviceCommandManagerFactory {
83
- /**
84
- * Creates a device command manager for a specific connection provider
85
- * @param connectionProvider - Connection provider type
86
- * @param connection - Connection object
87
- * @returns Device command manager instance
88
- */
89
- createDeviceCommandManager(connectionProvider: string, connection: IConnection): IDeviceCommandManager;
90
- }
91
- /**
92
- * Interface for device command classes
93
- */
94
- export interface IDeviceCommandClass {
95
- /**
96
- * Creates a SmartThings device command from a generic device command
97
- * @param deviceCommand - Generic device command
98
- * @returns SmartThings device command
99
- */
100
- fromDeviceCommand(deviceCommand: IDeviceCommand): ISmartthingsDeviceCommand;
101
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- // Device Cloud Class Interface for DeviceThread Common Library
3
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +0,0 @@
1
- import { IConnection, IConnectionConnectParams, IDeviceAccountResponse } from "../types";
2
- export interface IDeviceConnectionService {
3
- createConnection(data: IConnection, userId: string): Promise<any>;
4
- getDeviceAccount(connection: IConnection): Promise<IDeviceAccountResponse>;
5
- getDevices(connection: IConnection): Promise<any>;
6
- connect(connection: IConnection, connectionConnect: IConnectionConnectParams): Promise<any>;
7
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- // Device Cloud Class Interface for DeviceThread Common Library
3
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,9 +0,0 @@
1
- import { IConnection } from "../types";
2
- export interface IDeviceService {
3
- getDevices(connection: IConnection): Promise<Record<string, any>[]>;
4
- getDevice(connectionId: string, deviceId: string): Promise<Record<string, any>>;
5
- getStatus(connectionId: string, deviceId: string): Promise<string | null>;
6
- getState(deviceId: string): Promise<Record<string, any>>;
7
- getGateways(connectionId: string): Promise<any[] | null>;
8
- getGatewayDetails(connectionId: string, gatewayId: string): Promise<any>;
9
- }
@@ -1,39 +0,0 @@
1
- import { IDeviceService } from "../interfaces";
2
- import { IConnection, IDevice } from "../types";
3
- export declare abstract class DeviceService implements IDeviceService {
4
- deviceId: string;
5
- propertyId: string;
6
- name: string;
7
- hubId: string[];
8
- deviceType: {
9
- id: string;
10
- type: string;
11
- };
12
- status: {
13
- online: boolean;
14
- error?: {
15
- type?: string;
16
- message?: string;
17
- };
18
- lastUpdated?: string;
19
- };
20
- state?: Record<string, any>;
21
- metaData?: Record<string, any>;
22
- zone?: {
23
- id: string;
24
- name: string;
25
- zoneType: string;
26
- parentZone?: {
27
- id: string;
28
- name: string;
29
- zoneType: string;
30
- };
31
- };
32
- connection: IConnection;
33
- constructor(device: IDevice);
34
- abstract getDevices(connection: IConnection): Promise<Record<string, any>[]>;
35
- abstract getDevice(connectionId: string, deviceId: string): Promise<any>;
36
- abstract getBattery(deviceId: string): Promise<number | string>;
37
- abstract getStatus(connectionId: string, deviceId: string): Promise<string>;
38
- abstract getState(deviceId: string): Promise<string>;
39
- }
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeviceService = void 0;
4
- class DeviceService {
5
- constructor(device) {
6
- Object.assign(this, device);
7
- }
8
- }
9
- exports.DeviceService = DeviceService;
@@ -1,42 +0,0 @@
1
- import { IDeviceCloudService } from "../interface";
2
- import { IConnection, IDevice, IDeviceAccountResponse, IConnectionConnectParams } from "../types";
3
- /**
4
- * Device Cloud Service Class
5
- * Implements IDeviceCloudService interface with empty implementations
6
- * Implementation will be provided by the consuming project
7
- */
8
- export declare class DeviceCloudService implements IDeviceCloudService {
9
- /**
10
- * Creates a new connection for device management
11
- * @param data - Connection data
12
- * @param userId - User identifier
13
- * @returns Promise with connection result
14
- */
15
- createConnection(data: IConnection, userId: string): Promise<any>;
16
- /**
17
- * Gets device account information for a connection
18
- * @param connection - Connection object
19
- * @returns Promise with device account response
20
- */
21
- getDeviceAccount(connection: IConnection): Promise<IDeviceAccountResponse>;
22
- /**
23
- * Gets all devices for a connection
24
- * @param connection - Connection object
25
- * @returns Promise with array of devices
26
- */
27
- getDevices(connection: IConnection): Promise<IDevice[]>;
28
- /**
29
- * Filters devices based on connection and device list
30
- * @param connection - Connection object
31
- * @param devices - Array of devices to filter
32
- * @returns Promise with filtered devices
33
- */
34
- filterDevices(connection: IConnection, devices: any[]): Promise<IDevice[]>;
35
- /**
36
- * Connects to a device service
37
- * @param connection - Connection object
38
- * @param connectionConnect - Connection parameters
39
- * @returns Promise with connection result
40
- */
41
- connect(connection: IConnection, connectionConnect: IConnectionConnectParams): Promise<any>;
42
- }
@@ -1,59 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeviceCloudService = void 0;
4
- /**
5
- * Device Cloud Service Class
6
- * Implements IDeviceCloudService interface with empty implementations
7
- * Implementation will be provided by the consuming project
8
- */
9
- class DeviceCloudService {
10
- /**
11
- * Creates a new connection for device management
12
- * @param data - Connection data
13
- * @param userId - User identifier
14
- * @returns Promise with connection result
15
- */
16
- async createConnection(data, userId) {
17
- // Implementation will be provided by the consuming project
18
- throw new Error("createConnection method not implemented");
19
- }
20
- /**
21
- * Gets device account information for a connection
22
- * @param connection - Connection object
23
- * @returns Promise with device account response
24
- */
25
- async getDeviceAccount(connection) {
26
- // Implementation will be provided by the consuming project
27
- throw new Error("getDeviceAccount method not implemented");
28
- }
29
- /**
30
- * Gets all devices for a connection
31
- * @param connection - Connection object
32
- * @returns Promise with array of devices
33
- */
34
- async getDevices(connection) {
35
- // Implementation will be provided by the consuming project
36
- throw new Error("getDevices method not implemented");
37
- }
38
- /**
39
- * Filters devices based on connection and device list
40
- * @param connection - Connection object
41
- * @param devices - Array of devices to filter
42
- * @returns Promise with filtered devices
43
- */
44
- async filterDevices(connection, devices) {
45
- // Implementation will be provided by the consuming project
46
- throw new Error("filterDevices method not implemented");
47
- }
48
- /**
49
- * Connects to a device service
50
- * @param connection - Connection object
51
- * @param connectionConnect - Connection parameters
52
- * @returns Promise with connection result
53
- */
54
- async connect(connection, connectionConnect) {
55
- // Implementation will be provided by the consuming project
56
- throw new Error("connect method not implemented");
57
- }
58
- }
59
- exports.DeviceCloudService = DeviceCloudService;
@@ -1,3 +0,0 @@
1
- export declare abstract class DeviceHubService {
2
- abstract getHubs(): Promise<any>;
3
- }
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeviceHubService = void 0;
4
- class DeviceHubService {
5
- }
6
- exports.DeviceHubService = DeviceHubService;
@@ -1,25 +0,0 @@
1
- import { IHubService } from "../interfaces";
2
- import { IConnection, IDevice } from "../types";
3
- export declare abstract class HubService implements IHubService {
4
- deviceId: string;
5
- propertyId: string;
6
- name: string;
7
- deviceType: {
8
- id: string;
9
- type: string;
10
- };
11
- status: {
12
- online: boolean;
13
- error?: {
14
- type?: string;
15
- message?: string;
16
- };
17
- lastUpdated?: string;
18
- };
19
- metaData?: Record<string, any>;
20
- connection: IConnection;
21
- constructor(hub: IDevice);
22
- abstract getHubs(connectionId: string): Promise<any[] | null>;
23
- abstract getHub(connectionId: string, hubId: string): Promise<Record<string, any>>;
24
- abstract getStatus(connectionId: string, hubId: string): Promise<string>;
25
- }
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.HubService = void 0;
4
- class HubService {
5
- constructor(hub) {
6
- Object.assign(this, hub);
7
- }
8
- }
9
- exports.HubService = HubService;
@@ -1,38 +0,0 @@
1
- import { ISmartthingsDeviceCommandManager } from "../interface";
2
- import { IDeviceCommand, ISmartthingsDeviceCommand, ICommandResponse } from "../types";
3
- /**
4
- * SmartThings Device Service Class
5
- * Implements ISmartthingsDeviceCommandManager interface with empty implementations
6
- * Implementation will be provided by the consuming project
7
- */
8
- export declare class SmartThingsDeviceService implements ISmartthingsDeviceCommandManager {
9
- /**
10
- * Invokes a command on a device
11
- * @param command - Device command to execute
12
- * @param deviceId - Device identifier
13
- * @returns Promise with command response
14
- */
15
- invokeCommand(command: IDeviceCommand, deviceId: string): Promise<ICommandResponse>;
16
- /**
17
- * Performs device action for SmartThings
18
- * @param commands - Array of SmartThings device commands
19
- * @param deviceId - Device identifier
20
- * @param accessToken - Access token for authentication
21
- * @returns Promise with action result
22
- */
23
- performDeviceAction(commands: ISmartthingsDeviceCommand[], deviceId: string, accessToken: string): Promise<any>;
24
- /**
25
- * Gets device status for SmartThings
26
- * @param deviceId - Device identifier
27
- * @param accessToken - Access token for authentication
28
- * @returns Promise with device status
29
- */
30
- getDeviceStatus(deviceId: string, accessToken: string): Promise<any>;
31
- /**
32
- * Gets device lock status for SmartThings
33
- * @param deviceId - Device identifier
34
- * @param accessToken - Access token for authentication
35
- * @returns Promise with lock status
36
- */
37
- getDeviceLockStatus(deviceId: string, accessToken: string): Promise<any>;
38
- }
@@ -1,52 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SmartThingsDeviceService = void 0;
4
- /**
5
- * SmartThings Device Service Class
6
- * Implements ISmartthingsDeviceCommandManager interface with empty implementations
7
- * Implementation will be provided by the consuming project
8
- */
9
- class SmartThingsDeviceService {
10
- /**
11
- * Invokes a command on a device
12
- * @param command - Device command to execute
13
- * @param deviceId - Device identifier
14
- * @returns Promise with command response
15
- */
16
- async invokeCommand(command, deviceId) {
17
- // Implementation will be provided by the consuming project
18
- throw new Error("invokeCommand method not implemented");
19
- }
20
- /**
21
- * Performs device action for SmartThings
22
- * @param commands - Array of SmartThings device commands
23
- * @param deviceId - Device identifier
24
- * @param accessToken - Access token for authentication
25
- * @returns Promise with action result
26
- */
27
- async performDeviceAction(commands, deviceId, accessToken) {
28
- // Implementation will be provided by the consuming project
29
- throw new Error("performDeviceAction method not implemented");
30
- }
31
- /**
32
- * Gets device status for SmartThings
33
- * @param deviceId - Device identifier
34
- * @param accessToken - Access token for authentication
35
- * @returns Promise with device status
36
- */
37
- async getDeviceStatus(deviceId, accessToken) {
38
- // Implementation will be provided by the consuming project
39
- throw new Error("getDeviceStatus method not implemented");
40
- }
41
- /**
42
- * Gets device lock status for SmartThings
43
- * @param deviceId - Device identifier
44
- * @param accessToken - Access token for authentication
45
- * @returns Promise with lock status
46
- */
47
- async getDeviceLockStatus(deviceId, accessToken) {
48
- // Implementation will be provided by the consuming project
49
- throw new Error("getDeviceLockStatus method not implemented");
50
- }
51
- }
52
- exports.SmartThingsDeviceService = SmartThingsDeviceService;
@@ -1,4 +0,0 @@
1
- export * from "./cloud/interface";
2
- export * from "./cloud/types";
3
- export type { IConnection, IConnectionConnectParams, IDevice, IDeviceAccountResponse, } from "./cloud/types";
4
- export type { IDeviceCloudService } from "./cloud/interface";
@@ -1,20 +0,0 @@
1
- "use strict";
2
- // DeviceThread Common Library - Device Module
3
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
- if (k2 === undefined) k2 = k;
5
- var desc = Object.getOwnPropertyDescriptor(m, k);
6
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
- desc = { enumerable: true, get: function() { return m[k]; } };
8
- }
9
- Object.defineProperty(o, k2, desc);
10
- }) : (function(o, m, k, k2) {
11
- if (k2 === undefined) k2 = k;
12
- o[k2] = m[k];
13
- }));
14
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
- };
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- // Export cloud device interfaces
19
- __exportStar(require("./cloud/interface"), exports);
20
- __exportStar(require("./cloud/types"), exports);
File without changes
@@ -1 +0,0 @@
1
- "use strict";