@wildix/wda-history-client 1.0.33 → 1.0.34

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.
@@ -394,6 +394,7 @@ const se_QueryConversationsFilter = (input, context) => {
394
394
  'flags': smithy_client_1._json,
395
395
  'from': smithy_client_1.serializeDateTime,
396
396
  'status': [],
397
+ 'tags': smithy_client_1._json,
397
398
  'to': smithy_client_1.serializeDateTime,
398
399
  });
399
400
  };
@@ -403,6 +404,7 @@ const se_QueryUserCallsFilter = (input, context) => {
403
404
  'flags': smithy_client_1._json,
404
405
  'from': smithy_client_1.serializeDateTime,
405
406
  'status': [],
407
+ 'tags': smithy_client_1._json,
406
408
  'to': smithy_client_1.serializeDateTime,
407
409
  'userDirection': [],
408
410
  });
@@ -375,6 +375,7 @@ const se_QueryConversationsFilter = (input, context) => {
375
375
  'flags': _json,
376
376
  'from': __serializeDateTime,
377
377
  'status': [],
378
+ 'tags': _json,
378
379
  'to': __serializeDateTime,
379
380
  });
380
381
  };
@@ -384,6 +385,7 @@ const se_QueryUserCallsFilter = (input, context) => {
384
385
  'flags': _json,
385
386
  'from': __serializeDateTime,
386
387
  'status': [],
388
+ 'tags': _json,
387
389
  'to': __serializeDateTime,
388
390
  'userDirection': [],
389
391
  });
@@ -47,6 +47,9 @@ 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
+ * ],
50
53
  * },
51
54
  * };
52
55
  * const command = new QueryConversationsCommand(input);
@@ -47,6 +47,9 @@ 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
+ * ],
50
53
  * userDirection: "INCOMING" || "OUTGOING",
51
54
  * },
52
55
  * };
@@ -819,6 +819,7 @@ export interface QueryConversationsFilter {
819
819
  status?: ConversationStatus | undefined;
820
820
  from?: Date | undefined;
821
821
  to?: Date | undefined;
822
+ tags?: (string)[] | undefined;
822
823
  }
823
824
  /**
824
825
  * @public
@@ -873,6 +874,7 @@ export interface QueryUserCallsFilter {
873
874
  status?: ConversationStatus | undefined;
874
875
  from?: Date | undefined;
875
876
  to?: Date | undefined;
877
+ tags?: (string)[] | undefined;
876
878
  userDirection?: ConversationUserDirection | undefined;
877
879
  }
878
880
  /**
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.34",
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",