cmd-control-client-lib 3.0.263 → 3.0.266

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.
@@ -5,7 +5,7 @@ import { IBACKENDPAYLOAD } from "./backend";
5
5
  import { ACTION } from "./command/action";
6
6
  import { baseParamsType } from "./command/baseparams";
7
7
  import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "./command/icommand";
8
- import { MayHaveChannelId } from "./media";
8
+ import { ChannelMediaLinkState, MayHaveChannelId } from "./media";
9
9
  export declare enum MessageFlags {
10
10
  "canDeleted" = 0,
11
11
  "isDeleted" = 1
@@ -87,6 +87,8 @@ export declare type MediaInfo = MediaMd5 & {
87
87
  mediaState?: EnumMediaState | string;
88
88
  /** datetime of media*/
89
89
  mediaCreated?: string;
90
+ linkState?: ChannelMediaLinkState;
91
+ linkDate?: string;
90
92
  };
91
93
  export declare type MediaPrice = Currency & {
92
94
  mediaPrice?: string;
@@ -11,6 +11,7 @@ export declare enum EnumMobileVideoCallState {
11
11
  Cancelled = "CANCELLED",
12
12
  Answered = "ANSWERED",
13
13
  Declined = "DECLINED",
14
+ FskDenied = "FSKDENIED",
14
15
  Busy = "BUSY",
15
16
  NoAnswer = "NOANSWER",
16
17
  Failed = "FAILED",
@@ -10,9 +10,12 @@ export declare type MobileVideoCallScheduleType = {
10
10
  active?: EnumBooleanStringified;
11
11
  deleted?: EnumBooleanStringified;
12
12
  };
13
+ export declare type MobileVideoCallScheduleTypeCMDC = Omit<MobileVideoCallScheduleType, "scheduleId"> & {
14
+ scheduleId: string;
15
+ };
13
16
  export declare class CMDC_MVCSCHEDULE implements ICOMMAND {
14
17
  action: ACTION;
15
- params: MobileVideoCallScheduleType;
18
+ params: MobileVideoCallScheduleTypeCMDC;
16
19
  }
17
20
  export declare class CMDP_SGETMVCSCHEDULE implements ICOMMAND {
18
21
  action: ACTION;
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.263",
4
+ "version": "3.0.266",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },