cmd-control-client-lib 3.0.137 → 3.0.139

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.
@@ -151,6 +151,8 @@ export declare type channelIdSelector = {
151
151
  export declare type getChannelsParamsType = {
152
152
  /** from serial, default = 0 */
153
153
  serial?: string;
154
+ /** query offset */
155
+ skip?: string;
154
156
  /** limit, default is 1000 */
155
157
  limit?: string;
156
158
  /** get CMDC_CONTACTNOTE in commands, default 0, deprecated */
@@ -45,8 +45,9 @@ export declare class CMDP_SADDGROUP implements ICOMMAND {
45
45
  groupName: string;
46
46
  };
47
47
  }
48
- export declare class CMDP_SADDGROUP_RESPONSE extends CMDP_SADDGROUP {
49
- commands: CMDC_GROUP;
48
+ export declare class CMDP_SADDGROUP_RESPONSE extends CMDP_SADDGROUP implements IRESPONSE {
49
+ result: RESULT;
50
+ commands: CMDC_GROUP[];
50
51
  values: IKeyMaybeValue;
51
52
  }
52
53
  export declare class CMDP_SUPDATEGROUP implements ICOMMAND {
@@ -58,8 +59,9 @@ export declare class CMDP_SUPDATEGROUP implements ICOMMAND {
58
59
  groupActive?: "0" | "1" | string;
59
60
  };
60
61
  }
61
- export declare class CMDP_SUPDATEGROUP_RESPONSE extends CMDP_SUPDATEGROUP {
62
- commands: CMDC_GROUP[];
62
+ export declare class CMDP_SUPDATEGROUP_RESPONSE extends CMDP_SUPDATEGROUP implements IRESPONSE {
63
+ result: RESULT;
64
+ commands: ICOMMAND[];
63
65
  values: IKeyMaybeValue;
64
66
  }
65
67
  export declare class CMDP_SGETGROUPCHANNELS implements ICOMMAND {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cmd-control-client-lib",
3
3
  "description": "Cmd-Client-Library",
4
- "version": "3.0.137",
4
+ "version": "3.0.139",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },