cmd-control-client-lib 3.0.246 → 3.0.248

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.
@@ -13,6 +13,6 @@ export declare class CmdControlSession {
13
13
  logout(exitCode: number): void;
14
14
  close(): void;
15
15
  reconnect(): void;
16
- pause(): void;
16
+ pause(isResumable?: boolean): void;
17
17
  resume(): boolean;
18
18
  }
@@ -67,6 +67,7 @@ export declare class ChannelType implements IKeyValue {
67
67
  flags?: ComaSeparatedValues<EnumChannelFlags> | EnumChannelFlags;
68
68
  /** the weight of the channel*/
69
69
  weight?: string;
70
+ nextTimeOut?: string;
70
71
  }
71
72
  /**
72
73
  * the command for delivery channel info
@@ -348,7 +349,9 @@ export declare enum EnumUpdateChannelPropertyName {
348
349
  UNANSWERED = "unanswered",
349
350
  PINNED = "pinned",
350
351
  MUTED = "muted",
351
- BANNED = "banned"
352
+ BANNED = "banned",
353
+ BLOCKED_INBOUND = "blockedInbound",
354
+ BLOCKED_OUTBOUND = "blockedOutbound"
352
355
  }
353
356
  export declare class updateChannelParamsType implements IKeyMaybeValue {
354
357
  [key: string]: string;
@@ -45,6 +45,10 @@ export interface IChanelInfoV extends IKeyMaybeValue {
45
45
  followMe?: EnumBooleanStringified;
46
46
  /** Customer value badges */
47
47
  badges?: ComaSeparatedValues<EnumBadge>;
48
+ /** no messages can be sent, too many messages without answer. readonly*/
49
+ blockedOutbound?: EnumBooleanStringified;
50
+ /** no messages can come in*/
51
+ blockedInbound?: EnumBooleanStringified;
48
52
  }
49
53
  /**
50
54
  * channel note
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.246",
4
+ "version": "3.0.248",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },