cmd-control-client-lib 3.0.360 → 3.0.361

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.
@@ -19,11 +19,16 @@ export interface IInitBackendPayload {
19
19
  icons: any;
20
20
  }
21
21
  export declare type UploadMediaTus = {
22
- endPoint: string;
23
- chunkSize: number;
22
+ authHeader: string;
23
+ /**
24
+ * @deprecated/obsolete
25
+ */
26
+ chunkSize?: number;
24
27
  chunksNumber: number;
28
+ endPoint: string;
29
+ maxChunkSize: number;
30
+ minChunkSize: number;
25
31
  parallelUploads: number;
26
- authHeader: string;
27
32
  };
28
33
  /**
29
34
  * the initial command
@@ -21,7 +21,8 @@ export declare enum MSettingNameEnum {
21
21
  SERVICE0900_ENABLED = "Service0900Enabled",
22
22
  SERCIVE0900WEBSIP_ENABLED = "Service0900WebSipEnabled",
23
23
  SERVICE0900WEBSIP_VISIBLE = "Service0900WebSipVisible",
24
- SERVICE0900PHONE_ENABLED = "Service0900PhoneEnabled"
24
+ SERVICE0900PHONE_ENABLED = "Service0900PhoneEnabled",
25
+ MESSAGETEMPLATES_ENABLED = "MessageTemplatesEnabled"
25
26
  }
26
27
  export declare enum MSettingValueTypeEnum {
27
28
  FLOAT = "float",
@@ -102,6 +103,7 @@ export declare class MSettings {
102
103
  [MSettingNameEnum.SERCIVE0900WEBSIP_ENABLED]?: MSettingBool;
103
104
  [MSettingNameEnum.SERVICE0900WEBSIP_VISIBLE]?: MSettingBool;
104
105
  [MSettingNameEnum.SERVICE0900PHONE_ENABLED]?: MSettingBool;
106
+ [MSettingNameEnum.MESSAGETEMPLATES_ENABLED]?: MSettingBool;
105
107
  };
106
108
  }
107
109
  /**
@@ -70,7 +70,7 @@ export declare class CMDP_SINFORMMEDIAPURCHASED implements ICOMMAND {
70
70
  channelIdType &
71
71
  /** the message id of related media offer */
72
72
  MessageId & {
73
- billId: string;
73
+ billId?: string;
74
74
  };
75
75
  }
76
76
  /**
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.360",
4
+ "version": "3.0.361",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },