cmd-control-client-lib 3.0.266 → 3.0.268

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.
@@ -178,5 +178,6 @@ export declare enum ACTION {
178
178
  CMDP_SUPSERTMVCSCHEDULE = "CMDP_SUPSERTMVCSCHEDULE",
179
179
  CMDP_SUPSERTMVCSCHEDULES = "CMDP_SUPSERTMVCSCHEDULES",
180
180
  CMDP_SDELETEMVCSCHEDULE = "CMDP_SDELETEMVCSCHEDULE",
181
- CMDP_SGETUPLOADEDMEDIA2 = "CMDP_SGETUPLOADEDMEDIA2"
181
+ CMDP_SGETUPLOADEDMEDIA2 = "CMDP_SGETUPLOADEDMEDIA2",
182
+ CMDP_SSETMSETTINGS = "CMDP_SSETMSETTINGS"
182
183
  }
@@ -16,6 +16,7 @@ export interface IInitBackendPayload {
16
16
  export declare type UploadMediaTus = {
17
17
  endPoint: string;
18
18
  chunkSize: number;
19
+ chunksNumber: number;
19
20
  parallelUploads: number;
20
21
  authHeader: string;
21
22
  };
@@ -1,5 +1,5 @@
1
1
  import { JSONString } from "../../@types";
2
- import { ICOMMAND, ACTION, IRESPONSE, RESULT, IKeyMaybeValue } from "../../cmd-protocol";
2
+ import { ICOMMAND, ACTION, IRESPONSE, RESULT } from "../../cmd-protocol";
3
3
  import { baseParamsType, SupportedLanguage } from "../command/baseparams";
4
4
  export declare enum MSettingNameEnum {
5
5
  CONVERSION_CHAT = "ConversionChat",
@@ -123,7 +123,9 @@ export declare class CMDP_SSETMSETTING implements ICOMMAND {
123
123
  export declare class CMDP_SSETMSETTING_RESPONSE extends CMDP_SSETMSETTING implements IRESPONSE {
124
124
  result: RESULT;
125
125
  commands: ICOMMAND[];
126
- values: IKeyMaybeValue;
126
+ values: {
127
+ mSettings: JSONString<MSettings>;
128
+ };
127
129
  }
128
130
  /** NOOP update command */
129
131
  export declare class CMDC_MSETTINGS implements ICOMMAND {
@@ -132,3 +134,19 @@ export declare class CMDC_MSETTINGS implements ICOMMAND {
132
134
  mSettings: JSONString<MSettings>;
133
135
  };
134
136
  }
137
+ export declare class CMDP_SSETMSETTINGS implements ICOMMAND {
138
+ action: ACTION;
139
+ params: baseParamsType & {
140
+ mSettings: JSONString<MSettings>;
141
+ };
142
+ }
143
+ /**
144
+ * Set command response
145
+ */
146
+ export declare class CMDP_SSETMSETTINGS_RESPONSE extends CMDP_SSETMSETTINGS implements IRESPONSE {
147
+ result: RESULT;
148
+ commands: ICOMMAND[];
149
+ values: {
150
+ mSettings: JSONString<MSettings>;
151
+ };
152
+ }
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.266",
4
+ "version": "3.0.268",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },