@wildix/wda-insights-client 1.0.20 → 1.0.21
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.
|
@@ -637,8 +637,10 @@ const de_InsightsSentiment = (output, context) => {
|
|
|
637
637
|
};
|
|
638
638
|
const de_InsightsSentimentScoreByParticipantChunk = (output, context) => {
|
|
639
639
|
return (0, smithy_client_1.take)(output, {
|
|
640
|
+
'endTime': smithy_client_1.expectLong,
|
|
640
641
|
'interrupter': smithy_client_1.expectString,
|
|
641
642
|
'score': smithy_client_1.limitedParseFloat32,
|
|
643
|
+
'startTime': smithy_client_1.expectLong,
|
|
642
644
|
});
|
|
643
645
|
};
|
|
644
646
|
const de_InsightsSentimentScoreByParticipantList = (output, context) => {
|
|
@@ -616,8 +616,10 @@ const de_InsightsSentiment = (output, context) => {
|
|
|
616
616
|
};
|
|
617
617
|
const de_InsightsSentimentScoreByParticipantChunk = (output, context) => {
|
|
618
618
|
return take(output, {
|
|
619
|
+
'endTime': __expectLong,
|
|
619
620
|
'interrupter': __expectString,
|
|
620
621
|
'score': __limitedParseFloat32,
|
|
622
|
+
'startTime': __expectLong,
|
|
621
623
|
});
|
|
622
624
|
};
|
|
623
625
|
const de_InsightsSentimentScoreByParticipantList = (output, context) => {
|
|
@@ -63,6 +63,8 @@ export interface GetCallCharacteristicsCommandOutput extends GetCallCharacterist
|
|
|
63
63
|
* // { // InsightsSentimentScoreByParticipantChunk
|
|
64
64
|
* // interrupter: "STRING_VALUE", // required
|
|
65
65
|
* // score: Number("float"), // required
|
|
66
|
+
* // startTime: Number("long"), // required
|
|
67
|
+
* // endTime: Number("long"), // required
|
|
66
68
|
* // },
|
|
67
69
|
* // ],
|
|
68
70
|
* // scoreByPeriod: [ // InsightsSentimentScoreByPeriodList
|
|
@@ -72,6 +74,8 @@ export interface GetCallCharacteristicsCommandOutput extends GetCallCharacterist
|
|
|
72
74
|
* // {
|
|
73
75
|
* // interrupter: "STRING_VALUE", // required
|
|
74
76
|
* // score: Number("float"), // required
|
|
77
|
+
* // startTime: Number("long"), // required
|
|
78
|
+
* // endTime: Number("long"), // required
|
|
75
79
|
* // },
|
|
76
80
|
* // ],
|
|
77
81
|
* // },
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-insights-client",
|
|
3
3
|
"description": "@wildix/wda-insights-client client",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.21",
|
|
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",
|