@wildix/wda-history-client 1.0.34 → 1.0.36

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,6 +393,7 @@ 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': [],
397
398
  'tags': smithy_client_1._json,
398
399
  'to': smithy_client_1.serializeDateTime,
@@ -403,6 +404,7 @@ const se_QueryUserCallsFilter = (input, context) => {
403
404
  'direction': [],
404
405
  'flags': smithy_client_1._json,
405
406
  'from': smithy_client_1.serializeDateTime,
407
+ 'search': [],
406
408
  'status': [],
407
409
  'tags': smithy_client_1._json,
408
410
  'to': smithy_client_1.serializeDateTime,
@@ -374,6 +374,7 @@ const se_QueryConversationsFilter = (input, context) => {
374
374
  'direction': [],
375
375
  'flags': _json,
376
376
  'from': __serializeDateTime,
377
+ 'search': [],
377
378
  'status': [],
378
379
  'tags': _json,
379
380
  'to': __serializeDateTime,
@@ -384,6 +385,7 @@ const se_QueryUserCallsFilter = (input, context) => {
384
385
  'direction': [],
385
386
  'flags': _json,
386
387
  'from': __serializeDateTime,
388
+ 'search': [],
387
389
  'status': [],
388
390
  'tags': _json,
389
391
  'to': __serializeDateTime,
@@ -50,6 +50,7 @@ declare const QueryConversationsCommand_base: {
50
50
  * tags: [ // TagList
51
51
  * "STRING_VALUE",
52
52
  * ],
53
+ * search: "STRING_VALUE",
53
54
  * },
54
55
  * };
55
56
  * const command = new QueryConversationsCommand(input);
@@ -50,6 +50,7 @@ declare const QueryUserCallsCommand_base: {
50
50
  * tags: [ // TagList
51
51
  * "STRING_VALUE",
52
52
  * ],
53
+ * search: "STRING_VALUE",
53
54
  * userDirection: "INCOMING" || "OUTGOING",
54
55
  * },
55
56
  * };
@@ -820,6 +820,7 @@ export interface QueryConversationsFilter {
820
820
  from?: Date | undefined;
821
821
  to?: Date | undefined;
822
822
  tags?: (string)[] | undefined;
823
+ search?: string | undefined;
823
824
  }
824
825
  /**
825
826
  * @public
@@ -875,6 +876,7 @@ export interface QueryUserCallsFilter {
875
876
  from?: Date | undefined;
876
877
  to?: Date | undefined;
877
878
  tags?: (string)[] | undefined;
879
+ search?: string | undefined;
878
880
  userDirection?: ConversationUserDirection | undefined;
879
881
  }
880
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.34",
4
+ "version": "1.0.36",
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",