@wildix/wda-insights-client 1.0.42 → 1.0.43
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.
|
@@ -123,6 +123,7 @@ declare const ListConversationsCommand_base: {
|
|
|
123
123
|
* // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
|
|
124
124
|
* // role: "CLIENT" || "AGENT", // required
|
|
125
125
|
* // license: "STRING_VALUE",
|
|
126
|
+
* // sipCallId: "STRING_VALUE",
|
|
126
127
|
* // },
|
|
127
128
|
* // callee: {
|
|
128
129
|
* // type: "REMOTE" || "LOCAL", // required
|
|
@@ -139,6 +140,7 @@ declare const ListConversationsCommand_base: {
|
|
|
139
140
|
* // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
|
|
140
141
|
* // role: "CLIENT" || "AGENT", // required
|
|
141
142
|
* // license: "STRING_VALUE",
|
|
143
|
+
* // sipCallId: "STRING_VALUE",
|
|
142
144
|
* // },
|
|
143
145
|
* // service: "STRING_VALUE",
|
|
144
146
|
* // serviceNumber: "STRING_VALUE",
|
|
@@ -186,6 +188,7 @@ declare const ListConversationsCommand_base: {
|
|
|
186
188
|
* // callStatus: "COMPLETED" || "MISSED",
|
|
187
189
|
* // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
|
|
188
190
|
* // transcriptionLanguage: "STRING_VALUE",
|
|
191
|
+
* // transcriptionSeconds: Number("int"),
|
|
189
192
|
* // attachment: "STRING_VALUE",
|
|
190
193
|
* // attachmentType: "VOICEMAIL" || "FAX",
|
|
191
194
|
* // attachmentDestinations: [ // CallFlowAttachmentDestinationList
|
|
@@ -306,6 +309,7 @@ declare const ListConversationsCommand_base: {
|
|
|
306
309
|
* // ],
|
|
307
310
|
* // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE", // required
|
|
308
311
|
* // transcriptionLanguage: "STRING_VALUE",
|
|
312
|
+
* // transcriptionSeconds: Number("int"),
|
|
309
313
|
* // type: "call" || "call_transcription" || "conference" || "conference_transcription", // required
|
|
310
314
|
* // },
|
|
311
315
|
* // },
|
|
@@ -271,6 +271,11 @@ export interface CallParticipant {
|
|
|
271
271
|
userDevice?: CallDevice | undefined;
|
|
272
272
|
role: CallParticipantRole;
|
|
273
273
|
license?: string | undefined;
|
|
274
|
+
/**
|
|
275
|
+
* A unique identifier for the SIP call session used to control the call e.g., answer, hold, transfer, hang up.
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
sipCallId?: string | undefined;
|
|
274
279
|
}
|
|
275
280
|
/**
|
|
276
281
|
* @public
|
|
@@ -386,6 +391,7 @@ export interface CallRecord {
|
|
|
386
391
|
callStatus?: ConversationStatus | undefined;
|
|
387
392
|
transcriptionStatus?: CallFlowTranscriptionStatus | undefined;
|
|
388
393
|
transcriptionLanguage?: string | undefined;
|
|
394
|
+
transcriptionSeconds?: number | undefined;
|
|
389
395
|
/**
|
|
390
396
|
* Consider to use `attachments` instead.
|
|
391
397
|
*
|
|
@@ -542,6 +548,7 @@ export interface ConferenceRecord {
|
|
|
542
548
|
recordings?: (ConferenceRecording)[] | undefined;
|
|
543
549
|
transcriptionStatus: ConferenceTranscriptionStatus;
|
|
544
550
|
transcriptionLanguage?: string | undefined;
|
|
551
|
+
transcriptionSeconds?: number | undefined;
|
|
545
552
|
type: RecordType;
|
|
546
553
|
}
|
|
547
554
|
/**
|
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.43",
|
|
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",
|