cmd-control-client-lib 3.0.397 → 3.0.399

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.
@@ -6,7 +6,8 @@ export declare class CMDP_B2BQUERYUSER implements ICOMMAND {
6
6
  action: ACTION;
7
7
  params: baseParamsType & usrKeyType & partnerIdKeyType & {
8
8
  queryId: string;
9
- caption: string;
9
+ messageKey?: string;
10
+ caption?: string;
10
11
  text: string;
11
12
  btn0: string;
12
13
  btn1: string;
@@ -193,14 +193,15 @@ export declare enum QueryUserButtons {
193
193
  export interface IQueryUserParams {
194
194
  queryId: string;
195
195
  key: QueryUserKeyEnum;
196
- caption: string;
196
+ messageKey?: string;
197
+ caption?: string;
197
198
  text: string;
198
199
  [QueryUserButtons.btn0]: string;
199
200
  [QueryUserButtons.btn1]: string;
200
- timeout: string;
201
- sound: string;
202
- btnDefault: EnumBooleanDigitized;
203
- btndef: QueryUserButtons;
201
+ timeout?: string;
202
+ sound?: string;
203
+ btnDefault?: EnumBooleanDigitized;
204
+ btndef?: QueryUserButtons;
204
205
  recordSingleChat?: EnumBooleanDigitized;
205
206
  }
206
207
  export declare class CMDC_QUERYUSER implements ICOMMAND {
@@ -82,6 +82,7 @@ export declare type MessageParams = IMayHaveChannelId & {
82
82
  reactionTime?: string;
83
83
  /** template*/
84
84
  templateId?: string;
85
+ caption?: string;
85
86
  };
86
87
  export declare type MediaMd5 = {
87
88
  mediaMd5?: string;
@@ -341,5 +341,10 @@ export declare enum SystemMessageKey {
341
341
  h_chat_mobilevideocall_ended = "h_chat_mobilevideocall_ended",
342
342
  h_chat_mobilevideocall_started_price = "h_chat_mobilevideocall_started_price",
343
343
  h_chat_mobilevideocall_init = "h_chat_mobilevideocall_init",
344
- h_chat_clip_bought = "h_chat_clip_bought"
344
+ h_chat_clip_bought = "h_chat_clip_bought",
345
+ h_uber_invite = "uberInvite",
346
+ h_uber_process = "uberProcess",
347
+ h_uber_decline = "uberDecline",
348
+ h_uber_chat_joined = "uberChatJoined",
349
+ h_uber_chat_timer = "uberChatTimer"
345
350
  }
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.397",
4
+ "version": "3.0.399",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },