@wildix/wda-stream-client 1.1.62 → 1.1.63
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 +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/DescribeEventCommand.d.ts +3 -0
- package/dist-types/commands/GetOngoingCallTranscriptionCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +5 -0
- package/package.json +1 -1
|
@@ -985,6 +985,7 @@ const de_CallTranscriptionChunk = (output, context) => {
|
|
|
985
985
|
'isFinal': smithy_client_1.expectBoolean,
|
|
986
986
|
'language': smithy_client_1.expectString,
|
|
987
987
|
'sentiment': smithy_client_1.expectString,
|
|
988
|
+
'shouldComputeSentiment': smithy_client_1.expectBoolean,
|
|
988
989
|
'speaker': smithy_client_1.expectString,
|
|
989
990
|
'start': smithy_client_1.expectLong,
|
|
990
991
|
'text': smithy_client_1.expectString,
|
|
@@ -952,6 +952,7 @@ const de_CallTranscriptionChunk = (output, context) => {
|
|
|
952
952
|
'isFinal': __expectBoolean,
|
|
953
953
|
'language': __expectString,
|
|
954
954
|
'sentiment': __expectString,
|
|
955
|
+
'shouldComputeSentiment': __expectBoolean,
|
|
955
956
|
'speaker': __expectString,
|
|
956
957
|
'start': __expectLong,
|
|
957
958
|
'text': __expectString,
|
|
@@ -390,6 +390,7 @@ declare const DescribeEventCommand_base: {
|
|
|
390
390
|
* // end: Number("long"), // required
|
|
391
391
|
* // confidence: Number("double"),
|
|
392
392
|
* // sentiment: "POSITIVE" || "NEGATIVE" || "MIXED" || "NEUTRAL",
|
|
393
|
+
* // shouldComputeSentiment: true || false,
|
|
393
394
|
* // },
|
|
394
395
|
* // participant: {
|
|
395
396
|
* // type: "REMOTE" || "LOCAL", // required
|
|
@@ -625,6 +626,7 @@ declare const DescribeEventCommand_base: {
|
|
|
625
626
|
* // end: Number("long"), // required
|
|
626
627
|
* // confidence: Number("double"),
|
|
627
628
|
* // sentiment: "POSITIVE" || "NEGATIVE" || "MIXED" || "NEUTRAL",
|
|
629
|
+
* // shouldComputeSentiment: true || false,
|
|
628
630
|
* // },
|
|
629
631
|
* // },
|
|
630
632
|
* // },
|
|
@@ -655,6 +657,7 @@ declare const DescribeEventCommand_base: {
|
|
|
655
657
|
* // end: Number("long"), // required
|
|
656
658
|
* // confidence: Number("double"),
|
|
657
659
|
* // sentiment: "POSITIVE" || "NEGATIVE" || "MIXED" || "NEUTRAL",
|
|
660
|
+
* // shouldComputeSentiment: true || false,
|
|
658
661
|
* // },
|
|
659
662
|
* // },
|
|
660
663
|
* // },
|
|
@@ -242,6 +242,7 @@ declare const GetOngoingCallTranscriptionCommand_base: {
|
|
|
242
242
|
* // end: Number("long"), // required
|
|
243
243
|
* // confidence: Number("double"),
|
|
244
244
|
* // sentiment: "POSITIVE" || "NEGATIVE" || "MIXED" || "NEUTRAL",
|
|
245
|
+
* // shouldComputeSentiment: true || false,
|
|
245
246
|
* // },
|
|
246
247
|
* // participant: {
|
|
247
248
|
* // type: "REMOTE" || "LOCAL", // required
|
|
@@ -696,6 +696,11 @@ export interface CallTranscriptionChunk {
|
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
698
|
sentiment?: TranscriptionSentiment | undefined;
|
|
699
|
+
/**
|
|
700
|
+
* Tristate gate populated upstream from caller/callee user-level licenses. `true` = at least one participant is on a whitelisted tier (currently `business` or `premium`). `false` = both participants are known and neither is whitelisted. Absent or null means upstream had no license info — downstream should fall through and compute sentiment (fail-open) to preserve the pre-feature behaviour.
|
|
701
|
+
* @public
|
|
702
|
+
*/
|
|
703
|
+
shouldComputeSentiment?: boolean | undefined;
|
|
699
704
|
}
|
|
700
705
|
/**
|
|
701
706
|
* @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-stream-client",
|
|
3
3
|
"description": "@wildix/wda-stream-client client",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.63",
|
|
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",
|