@wildix/wda-history-client 1.0.33 → 1.0.35

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.
@@ -393,7 +393,9 @@ const se_QueryConversationsFilter = (input, context) => {
393
393
  'direction': [],
394
394
  'flags': smithy_client_1._json,
395
395
  'from': smithy_client_1.serializeDateTime,
396
+ 'search': [],
396
397
  'status': [],
398
+ 'tags': smithy_client_1._json,
397
399
  'to': smithy_client_1.serializeDateTime,
398
400
  });
399
401
  };
@@ -402,7 +404,9 @@ const se_QueryUserCallsFilter = (input, context) => {
402
404
  'direction': [],
403
405
  'flags': smithy_client_1._json,
404
406
  'from': smithy_client_1.serializeDateTime,
407
+ 'search': [],
405
408
  'status': [],
409
+ 'tags': smithy_client_1._json,
406
410
  'to': smithy_client_1.serializeDateTime,
407
411
  'userDirection': [],
408
412
  });
@@ -374,7 +374,9 @@ const se_QueryConversationsFilter = (input, context) => {
374
374
  'direction': [],
375
375
  'flags': _json,
376
376
  'from': __serializeDateTime,
377
+ 'search': [],
377
378
  'status': [],
379
+ 'tags': _json,
378
380
  'to': __serializeDateTime,
379
381
  });
380
382
  };
@@ -383,7 +385,9 @@ const se_QueryUserCallsFilter = (input, context) => {
383
385
  'direction': [],
384
386
  'flags': _json,
385
387
  'from': __serializeDateTime,
388
+ 'search': [],
386
389
  'status': [],
390
+ 'tags': _json,
387
391
  'to': __serializeDateTime,
388
392
  'userDirection': [],
389
393
  });
@@ -47,6 +47,10 @@ declare const QueryConversationsCommand_base: {
47
47
  * status: "COMPLETED" || "MISSED",
48
48
  * from: new Date("TIMESTAMP"),
49
49
  * to: new Date("TIMESTAMP"),
50
+ * tags: [ // TagList
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * search: "STRING_VALUE",
50
54
  * },
51
55
  * };
52
56
  * const command = new QueryConversationsCommand(input);
@@ -47,6 +47,10 @@ declare const QueryUserCallsCommand_base: {
47
47
  * status: "COMPLETED" || "MISSED",
48
48
  * from: new Date("TIMESTAMP"),
49
49
  * to: new Date("TIMESTAMP"),
50
+ * tags: [ // TagList
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * search: "STRING_VALUE",
50
54
  * userDirection: "INCOMING" || "OUTGOING",
51
55
  * },
52
56
  * };
@@ -819,6 +819,8 @@ export interface QueryConversationsFilter {
819
819
  status?: ConversationStatus | undefined;
820
820
  from?: Date | undefined;
821
821
  to?: Date | undefined;
822
+ tags?: (string)[] | undefined;
823
+ search?: string | undefined;
822
824
  }
823
825
  /**
824
826
  * @public
@@ -873,6 +875,8 @@ export interface QueryUserCallsFilter {
873
875
  status?: ConversationStatus | undefined;
874
876
  from?: Date | undefined;
875
877
  to?: Date | undefined;
878
+ tags?: (string)[] | undefined;
879
+ search?: string | undefined;
876
880
  userDirection?: ConversationUserDirection | undefined;
877
881
  }
878
882
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-history-client",
3
3
  "description": "@wildix/wda-history-client client",
4
- "version": "1.0.33",
4
+ "version": "1.0.35",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",