cmd-control-client-lib 3.0.258 → 3.0.260

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.
@@ -176,6 +176,10 @@ export declare type channelIdFilter = {
176
176
  filterMuted?: EnumChannelFilterValues;
177
177
  /** filter by VIP status, default any */
178
178
  filterVIP?: EnumChannelFilterValues;
179
+ /** has a video chat */
180
+ filterVideoChat?: EnumChannelFilterValues;
181
+ /** cant sent message*/
182
+ filterBlockedOutbound?: EnumChannelFilterValues;
179
183
  /** filter by product id, default empty*/
180
184
  filterProductId?: EnumProductId;
181
185
  /** filter by banned */
@@ -176,6 +176,7 @@ export declare enum ACTION {
176
176
  CMDC_MVCSCHEDULE = "CMDC_MVCSCHEDULE",
177
177
  CMDP_SGETMVCSCHEDULE = "CMDP_SGETMVCSCHEDULE",
178
178
  CMDP_SUPSERTMVCSCHEDULE = "CMDP_SUPSERTMVCSCHEDULE",
179
+ CMDP_SUPSERTMVCSCHEDULES = "CMDP_SUPSERTMVCSCHEDULES",
179
180
  CMDP_SDELETEMVCSCHEDULE = "CMDP_SDELETEMVCSCHEDULE",
180
181
  CMDP_SGETUPLOADEDMEDIA2 = "CMDP_SGETUPLOADEDMEDIA2"
181
182
  }
@@ -1,4 +1,4 @@
1
- import { EnumBooleanStringified } from "../../@types";
1
+ import { EnumBooleanStringified, JSONString } from "../../@types";
2
2
  import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "../command/icommand";
3
3
  import { ACTION } from "../command/action";
4
4
  import { baseParamsType } from "../command/baseparams";
@@ -45,3 +45,14 @@ export declare class CMDP_SDELETEMVCSCHEDULE_RESPONSE extends CMDP_SDELETEMVCSCH
45
45
  commands: ICOMMAND[];
46
46
  values: IKeyMaybeValue;
47
47
  }
48
+ export declare class CMDP_SUPSERTMVCSCHEDULES implements ICOMMAND {
49
+ action: ACTION;
50
+ params: baseParamsType & {
51
+ schedules: JSONString<MobileVideoCallScheduleType>;
52
+ };
53
+ }
54
+ export declare class CMDP_SUPSERTMVCSCHEDULES_RESPONSE extends CMDP_SUPSERTMVCSCHEDULES implements IRESPONSE {
55
+ result: RESULT;
56
+ commands: CMDC_MVCSCHEDULE[];
57
+ values: IKeyMaybeValue;
58
+ }
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.258",
4
+ "version": "3.0.260",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },