cmd-control-client-lib 3.0.237 → 3.0.238

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.
@@ -48,4 +48,5 @@ export * from "./protocol/exit-code";
48
48
  export * from "./protocol/clivechat";
49
49
  export * from "./protocol/feedback";
50
50
  export * from "./protocol/messenger/videosdk";
51
+ export * from "./protocol/messenger/mvcschedule";
51
52
  export { SupportedLanguage, CmdClientAgent, EnumFormatValues, baseParamsType } from "./protocol/command/baseparams";
@@ -172,5 +172,9 @@ export declare enum ACTION {
172
172
  CMDP_WSA_HEARTBEAT = "CMDP_WSA_HEARTBEAT",
173
173
  CMDP_DEEPL = "CMDP_DEEPL",
174
174
  CMDP_SGETSTREAMPARAMS = "CMDP_SGETSTREAMPARAMS",
175
- CMDP_LOGOUTOTHERMOBILE = "CMDP_LOGOUTOTHERMOBILE"
175
+ CMDP_LOGOUTOTHERMOBILE = "CMDP_LOGOUTOTHERMOBILE",
176
+ CMDC_MVCSCHEDULE = "CMDC_MVCSCHEDULE",
177
+ CMDP_SGETMVCSCHEDULE = "CMDP_SGETMVCSCHEDULE",
178
+ CMDP_SUPSERTMVCSCHEDULE = "CMDP_SUPSERTMVCSCHEDULE",
179
+ CMDP_SDELETEMVCSCHEDULE = "CMDP_SDELETEMVCSCHEDULE"
176
180
  }
@@ -1,4 +1,4 @@
1
- import { ICOMMAND, ACTION, IRESPONSE, RESULT, IKeyMaybeValue, channelIdType } from "../../cmd-protocol";
1
+ import { ACTION, channelIdType, ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "../../cmd-protocol";
2
2
  import { baseParamsType } from "../command/baseparams";
3
3
  import { VideoSdkConfig } from "./videosdk";
4
4
  import { EnumBooleanStringified, JSONString } from "../../@types";
@@ -0,0 +1,45 @@
1
+ import { EnumBooleanStringified } from "../../@types";
2
+ import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "../command/icommand";
3
+ import { ACTION } from "../command/action";
4
+ import { baseParamsType } from "../command/baseparams";
5
+ export declare type MobileVideoCallScheduleType = {
6
+ scheduleId?: string;
7
+ startMinute: string;
8
+ stopMinute: string;
9
+ weekDays: string;
10
+ active?: EnumBooleanStringified;
11
+ deleted?: EnumBooleanStringified;
12
+ };
13
+ export declare class CMDC_MVCSCHEDULE implements ICOMMAND {
14
+ action: ACTION;
15
+ params: MobileVideoCallScheduleType;
16
+ }
17
+ export declare class CMDP_SGETMVCSCHEDULE implements ICOMMAND {
18
+ action: ACTION;
19
+ params: baseParamsType & MobileVideoCallScheduleType;
20
+ }
21
+ export declare class CMDP_SGETMVCSCHEDULE_RESPONSE extends CMDP_SGETMVCSCHEDULE implements IRESPONSE {
22
+ result: RESULT;
23
+ commands: CMDC_MVCSCHEDULE[];
24
+ values: IKeyMaybeValue;
25
+ }
26
+ export declare class CMDP_SUPSERTMVCSCHEDULE implements ICOMMAND {
27
+ action: ACTION;
28
+ params: baseParamsType & MobileVideoCallScheduleType;
29
+ }
30
+ export declare class CMDP_SUPSERTMVCSCHEDULE_RESPONSE extends CMDP_SUPSERTMVCSCHEDULE implements IRESPONSE {
31
+ result: RESULT;
32
+ commands: CMDC_MVCSCHEDULE[];
33
+ values: IKeyMaybeValue;
34
+ }
35
+ export declare class CMDP_SDELETEMVCSCHEDULE implements ICOMMAND {
36
+ action: ACTION;
37
+ params: baseParamsType & {
38
+ scheduleId: string;
39
+ };
40
+ }
41
+ export declare class CMDP_SDELETEMVCSCHEDULE_RESPONSE extends CMDP_SDELETEMVCSCHEDULE implements IRESPONSE {
42
+ result: RESULT;
43
+ commands: ICOMMAND[];
44
+ values: IKeyMaybeValue;
45
+ }
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.237",
4
+ "version": "3.0.238",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },