@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.
- package/dist-cjs/protocols/Aws_restJson1.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/GetCallTranscriptionCommand.d.ts +1 -1
- package/dist-types/commands/QueryConversationsCommand.d.ts +1 -0
- package/dist-types/commands/QueryUserCallsCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +3 -1
- package/package.json +1 -1
|
@@ -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",
|
|
68
|
+
* // sentiment: "STRING_VALUE",
|
|
69
69
|
* // },
|
|
70
70
|
* // ],
|
|
71
71
|
* // },
|
|
@@ -456,7 +456,7 @@ export interface CallTranscriptionChunk {
|
|
|
456
456
|
isFinal: boolean;
|
|
457
457
|
start: number;
|
|
458
458
|
end: number;
|
|
459
|
-
sentiment
|
|
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.
|
|
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",
|