@wildix/wda-history-client 1.2.13 → 1.2.15
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-types/commands/GetCallCommand.d.ts +1 -3
- package/dist-types/commands/QueryConversationsCommand.d.ts +1 -3
- package/dist-types/commands/QueryUserCallsCommand.d.ts +1 -3
- package/dist-types/commands/UpdateCallCommand.d.ts +1 -3
- package/dist-types/models/models_0.d.ts +5 -3
- package/package.json +1 -1
|
@@ -196,9 +196,7 @@ declare const GetCallCommand_base: {
|
|
|
196
196
|
* // },
|
|
197
197
|
* // transcription: { // CallFlowTranscription
|
|
198
198
|
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
199
|
-
* // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
|
|
200
|
-
* // language: "STRING_VALUE",
|
|
201
|
-
* // seconds: Number("int"),
|
|
199
|
+
* // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
|
|
202
200
|
* // },
|
|
203
201
|
* // },
|
|
204
202
|
* // ],
|
|
@@ -213,9 +213,7 @@ declare const QueryConversationsCommand_base: {
|
|
|
213
213
|
* // },
|
|
214
214
|
* // transcription: { // CallFlowTranscription
|
|
215
215
|
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
216
|
-
* // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
|
|
217
|
-
* // language: "STRING_VALUE",
|
|
218
|
-
* // seconds: Number("int"),
|
|
216
|
+
* // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
|
|
219
217
|
* // },
|
|
220
218
|
* // },
|
|
221
219
|
* // ],
|
|
@@ -213,9 +213,7 @@ declare const QueryUserCallsCommand_base: {
|
|
|
213
213
|
* // },
|
|
214
214
|
* // transcription: { // CallFlowTranscription
|
|
215
215
|
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
216
|
-
* // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
|
|
217
|
-
* // language: "STRING_VALUE",
|
|
218
|
-
* // seconds: Number("int"),
|
|
216
|
+
* // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
|
|
219
217
|
* // },
|
|
220
218
|
* // },
|
|
221
219
|
* // ],
|
|
@@ -199,9 +199,7 @@ declare const UpdateCallCommand_base: {
|
|
|
199
199
|
* // },
|
|
200
200
|
* // transcription: { // CallFlowTranscription
|
|
201
201
|
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
202
|
-
* // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
|
|
203
|
-
* // language: "STRING_VALUE",
|
|
204
|
-
* // seconds: Number("int"),
|
|
202
|
+
* // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
|
|
205
203
|
* // },
|
|
206
204
|
* // },
|
|
207
205
|
* // ],
|
|
@@ -178,10 +178,12 @@ export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[key
|
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
180
|
export interface CallFlowTranscription {
|
|
181
|
+
/**
|
|
182
|
+
* If present, indicates the explicit recipients from 'Send To Emails'
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
181
185
|
destinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
182
|
-
status
|
|
183
|
-
language?: string | undefined;
|
|
184
|
-
seconds?: number | undefined;
|
|
186
|
+
status: CallFlowTranscriptionStatus;
|
|
185
187
|
}
|
|
186
188
|
/**
|
|
187
189
|
* @public
|
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.2.
|
|
4
|
+
"version": "1.2.15",
|
|
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",
|