@wildix/wda-stream-client 1.0.4 → 1.0.5
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.
|
@@ -186,6 +186,8 @@ export interface DescribeEventCommandOutput extends DescribeEventOutput, __Metad
|
|
|
186
186
|
* // ],
|
|
187
187
|
* // event: "chat" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call" || "call_complete" || "call_interrupted" || "call_transcription" || "call_transcription_complete" || "conference" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_transcription_complete", // required
|
|
188
188
|
* // flowIndex: Number("int"), // required
|
|
189
|
+
* // flowStartTime: Number("long"), // required
|
|
190
|
+
* // callStartTime: Number("long"), // required
|
|
189
191
|
* // chunk: { // CallTranscriptionChunk
|
|
190
192
|
* // id: "STRING_VALUE", // required
|
|
191
193
|
* // time: Number("long"), // required
|
|
@@ -262,6 +264,8 @@ export interface DescribeEventCommandOutput extends DescribeEventOutput, __Metad
|
|
|
262
264
|
* // time: Number("long"), // required
|
|
263
265
|
* // company: "STRING_VALUE", // required
|
|
264
266
|
* // event: "chat" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call" || "call_complete" || "call_interrupted" || "call_transcription" || "call_transcription_complete" || "conference" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_transcription_complete", // required
|
|
267
|
+
* // conferenceStartTime: Number("long"), // required
|
|
268
|
+
* // transcriptionStartTime: Number("long"), // required
|
|
265
269
|
* // chunk: { // ConferenceTranscriptionChunk
|
|
266
270
|
* // id: "STRING_VALUE", // required
|
|
267
271
|
* // time: Number("long"), // required
|
|
@@ -388,6 +388,8 @@ export interface CallAnalyticsLiveTranscriptionEvent {
|
|
|
388
388
|
licenses: (License | string)[];
|
|
389
389
|
event: LiveEventType | string;
|
|
390
390
|
flowIndex: number;
|
|
391
|
+
flowStartTime: number;
|
|
392
|
+
callStartTime: number;
|
|
391
393
|
chunk: CallTranscriptionChunk;
|
|
392
394
|
participant: CallParticipant;
|
|
393
395
|
}
|
|
@@ -648,6 +650,8 @@ export interface ConferenceAnalyticsLiveTranscriptionEvent {
|
|
|
648
650
|
time: number;
|
|
649
651
|
company: string;
|
|
650
652
|
event: LiveEventType | string;
|
|
653
|
+
conferenceStartTime: number;
|
|
654
|
+
transcriptionStartTime: number;
|
|
651
655
|
chunk: ConferenceTranscriptionChunk;
|
|
652
656
|
participant: ConferenceParticipant;
|
|
653
657
|
}
|
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.0.
|
|
4
|
+
"version": "1.0.5",
|
|
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",
|