@wildix/wda-history-client 1.0.36 → 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,
@@ -65,7 +65,7 @@ declare const GetCallTranscriptionCommand_base: {
65
65
  * // isFinal: true || false, // required
66
66
  * // start: Number("long"), // required
67
67
  * // end: Number("long"), // required
68
- * // sentiment: "STRING_VALUE", // required
68
+ * // sentiment: "STRING_VALUE",
69
69
  * // },
70
70
  * // ],
71
71
  * // },
@@ -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
  * };
@@ -456,7 +456,7 @@ export interface CallTranscriptionChunk {
456
456
  isFinal: boolean;
457
457
  start: number;
458
458
  end: number;
459
- sentiment: string;
459
+ sentiment?: string | undefined;
460
460
  }
461
461
  /**
462
462
  * @public
@@ -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.36",
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",