@wildix/wda-stream-client 1.1.24 → 1.1.26

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.
@@ -218,6 +218,7 @@ declare const ConsumeEventCommand_base: {
218
218
  * reason: "STRING_VALUE",
219
219
  * transferType: "STRING_VALUE",
220
220
  * mergeWith: "STRING_VALUE",
221
+ * postTranscribe: true || false,
221
222
  * },
222
223
  * },
223
224
  * callLive: { // CallLiveConsumeEvent
@@ -270,6 +271,7 @@ declare const ConsumeEventCommand_base: {
270
271
  * cause: "STRING_VALUE",
271
272
  * causeStr: "STRING_VALUE",
272
273
  * who: "caller" || "callee",
274
+ * postTranscribe: true || false,
273
275
  * },
274
276
  * },
275
277
  * callRecordStart: { // CallRecordStartConsumeEvent
@@ -287,9 +287,7 @@ declare const DescribeEventCommand_base: {
287
287
  * // },
288
288
  * // transcription: { // CallFlowTranscription
289
289
  * // destinations: "<CallFlowAttachmentDestinationList>",
290
- * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
291
- * // language: "STRING_VALUE",
292
- * // seconds: Number("int"),
290
+ * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
293
291
  * // },
294
292
  * // },
295
293
  * // ],
@@ -508,9 +506,7 @@ declare const DescribeEventCommand_base: {
508
506
  * // },
509
507
  * // transcription: {
510
508
  * // destinations: "<CallFlowAttachmentDestinationList>",
511
- * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
512
- * // language: "STRING_VALUE",
513
- * // seconds: Number("int"),
509
+ * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
514
510
  * // },
515
511
  * // },
516
512
  * // ],
@@ -1521,9 +1517,7 @@ declare const DescribeEventCommand_base: {
1521
1517
  * // },
1522
1518
  * // transcription: {
1523
1519
  * // destinations: "<CallFlowAttachmentDestinationList>",
1524
- * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
1525
- * // language: "STRING_VALUE",
1526
- * // seconds: Number("int"),
1520
+ * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
1527
1521
  * // },
1528
1522
  * // },
1529
1523
  * // ],
@@ -1671,9 +1665,7 @@ declare const DescribeEventCommand_base: {
1671
1665
  * // },
1672
1666
  * // transcription: {
1673
1667
  * // destinations: "<CallFlowAttachmentDestinationList>",
1674
- * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
1675
- * // language: "STRING_VALUE",
1676
- * // seconds: Number("int"),
1668
+ * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
1677
1669
  * // },
1678
1670
  * // },
1679
1671
  * // ],
@@ -1765,9 +1757,7 @@ declare const DescribeEventCommand_base: {
1765
1757
  * // },
1766
1758
  * // transcription: {
1767
1759
  * // destinations: "<CallFlowAttachmentDestinationList>",
1768
- * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
1769
- * // language: "STRING_VALUE",
1770
- * // seconds: Number("int"),
1760
+ * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
1771
1761
  * // },
1772
1762
  * // },
1773
1763
  * // ],
@@ -214,9 +214,7 @@ declare const QueryConversationsCommand_base: {
214
214
  * // },
215
215
  * // transcription: { // CallFlowTranscription
216
216
  * // destinations: "<CallFlowAttachmentDestinationList>",
217
- * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
218
- * // language: "STRING_VALUE",
219
- * // seconds: Number("int"),
217
+ * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
220
218
  * // },
221
219
  * // },
222
220
  * // ],
@@ -223,10 +223,12 @@ export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[key
223
223
  * @public
224
224
  */
225
225
  export interface CallFlowTranscription {
226
+ /**
227
+ * If present, indicates the explicit recipients from 'Send To Emails'
228
+ * @public
229
+ */
226
230
  destinations?: (CallFlowAttachmentDestination)[] | undefined;
227
- status?: CallFlowTranscriptionStatus | undefined;
228
- language?: string | undefined;
229
- seconds?: number | undefined;
231
+ status: CallFlowTranscriptionStatus;
230
232
  }
231
233
  /**
232
234
  * @public
@@ -1915,6 +1917,7 @@ export interface CallEndConsumeEventData {
1915
1917
  cause?: string | undefined;
1916
1918
  causeStr?: string | undefined;
1917
1919
  who?: CallEndConsume | undefined;
1920
+ postTranscribe?: boolean | undefined;
1918
1921
  }
1919
1922
  /**
1920
1923
  * @public
@@ -2077,6 +2080,7 @@ export interface CallSplitConsumeEventData {
2077
2080
  reason?: string | undefined;
2078
2081
  transferType?: string | undefined;
2079
2082
  mergeWith?: string | undefined;
2083
+ postTranscribe?: boolean | undefined;
2080
2084
  }
2081
2085
  /**
2082
2086
  * @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.24",
4
+ "version": "1.1.26",
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",