cmd-control-client-lib 3.0.396 → 3.0.398
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
|
-
|
|
9
|
+
messageKey?: string;
|
|
10
|
+
caption?: string;
|
|
10
11
|
text: string;
|
|
11
12
|
btn0: string;
|
|
12
13
|
btn1: string;
|
|
@@ -153,6 +153,7 @@ export declare type channelIdSelector = {
|
|
|
153
153
|
selectOnline?: EnumBooleanStringified;
|
|
154
154
|
/**
|
|
155
155
|
* @deprecated
|
|
156
|
+
* use selectGroupId
|
|
156
157
|
*/
|
|
157
158
|
groupId?: ComaSeparatedValues<string> | string;
|
|
158
159
|
/**
|
|
@@ -512,7 +513,7 @@ export declare class CMDC_PRODUCTCHANNELSSUMMARY implements ICOMMAND {
|
|
|
512
513
|
export declare class CMDP_PRODUCTCHANNELSSUMMARY implements ICOMMAND {
|
|
513
514
|
action: ACTION;
|
|
514
515
|
params: baseParamsType & usrKeyType & {
|
|
515
|
-
productId
|
|
516
|
+
productId: string;
|
|
516
517
|
};
|
|
517
518
|
}
|
|
518
519
|
/**
|
|
@@ -521,7 +522,7 @@ export declare class CMDP_PRODUCTCHANNELSSUMMARY implements ICOMMAND {
|
|
|
521
522
|
export declare class CMDP_PRODUCTCHANNELSSUMMARY_RESPONSE extends CMDP_PRODUCTCHANNELSSUMMARY implements IRESPONSE {
|
|
522
523
|
result: RESULT;
|
|
523
524
|
/** unused */
|
|
524
|
-
commands:
|
|
525
|
+
commands: CMDC_PRODUCTCHANNELSSUMMARY[];
|
|
525
526
|
/** the summary info */
|
|
526
|
-
values:
|
|
527
|
+
values: IKeyMaybeValue;
|
|
527
528
|
}
|
|
@@ -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 {
|