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.
- package/dist/cmd-control-client-lib.js +1 -1
- package/dist/cmd-control-client-lib.js.map +1 -1
- package/dist/protocol/b2b/b2bqueryuser.d.ts +2 -1
- package/dist/protocol/live/live-commands.d.ts +6 -5
- package/dist/protocol/message.d.ts +1 -0
- package/dist/protocol/systemmessagekey.d.ts +6 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
196
|
+
messageKey?: string;
|
|
197
|
+
caption?: string;
|
|
197
198
|
text: string;
|
|
198
199
|
[QueryUserButtons.btn0]: string;
|
|
199
200
|
[QueryUserButtons.btn1]: string;
|
|
200
|
-
timeout
|
|
201
|
-
sound
|
|
202
|
-
btnDefault
|
|
203
|
-
btndef
|
|
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 {
|
|
@@ -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
|
}
|