@edgeiq/edgeiq-api-js 1.3.19 → 1.3.20

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.
@@ -9,6 +9,11 @@ export interface GatewayCommandStatus {
9
9
  status: string;
10
10
  status_message?: string;
11
11
  }
12
+ export interface Lwm2mRequest {
13
+ type: string;
14
+ endpoint: string;
15
+ data: unknown;
16
+ }
12
17
  export interface GatewayCommandInput {
13
18
  command_type: GatewayCommandType;
14
19
  payload: {
@@ -27,7 +32,7 @@ export interface GatewayCommandInput {
27
32
  attached_device_ids: string[];
28
33
  attached_device_unique_ids: string[];
29
34
  }
30
- export interface GatewayCommandRequest {
35
+ export interface GatewayCommandRequest extends Lwm2mRequest {
31
36
  command_type: GatewayCommandType;
32
37
  schedule?: CommandSchedule;
33
38
  timeout: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgeiq/edgeiq-api-js",
3
- "version": "1.3.19",
3
+ "version": "1.3.20",
4
4
  "author": "EdgeIQ",
5
5
  "license": "ISC",
6
6
  "description": "This project presents EdgeIQ API SDK.",