@wildix/wda-history-client 1.0.37 → 1.0.38

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