cmd-control-client-lib 3.0.397 → 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
- 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 {
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.398",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },