@wildix/wda-insights-client 1.1.27 → 1.1.28

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.
@@ -107,6 +107,7 @@ exports.License = {
107
107
  };
108
108
  exports.CallFlowTranscriptionStatus = {
109
109
  AVAILABLE: "AVAILABLE",
110
+ POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
110
111
  UNAVAILABLE: "UNAVAILABLE",
111
112
  };
112
113
  exports.RecordType = {
@@ -187,6 +188,7 @@ exports.ConferenceParticipantType = {
187
188
  };
188
189
  exports.ConferenceTranscriptionStatus = {
189
190
  AVAILABLE: "AVAILABLE",
191
+ POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
190
192
  UNAVAILABLE: "UNAVAILABLE",
191
193
  };
192
194
  var AggregationDefinition;
@@ -100,6 +100,7 @@ export const License = {
100
100
  };
101
101
  export const CallFlowTranscriptionStatus = {
102
102
  AVAILABLE: "AVAILABLE",
103
+ POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
103
104
  UNAVAILABLE: "UNAVAILABLE",
104
105
  };
105
106
  export const RecordType = {
@@ -180,6 +181,7 @@ export const ConferenceParticipantType = {
180
181
  };
181
182
  export const ConferenceTranscriptionStatus = {
182
183
  AVAILABLE: "AVAILABLE",
184
+ POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
183
185
  UNAVAILABLE: "UNAVAILABLE",
184
186
  };
185
187
  export var AggregationDefinition;
@@ -315,7 +315,7 @@ declare const ListConversationsCommand_base: {
315
315
  * // remotePhoneCountryCodeStr: "STRING_VALUE",
316
316
  * // remotePhoneLocation: "STRING_VALUE",
317
317
  * // callStatus: "COMPLETED" || "MISSED",
318
- * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
318
+ * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
319
319
  * // transcriptionLanguage: "STRING_VALUE",
320
320
  * // transcriptionSeconds: Number("int"),
321
321
  * // attachment: "STRING_VALUE",
@@ -436,7 +436,7 @@ declare const ListConversationsCommand_base: {
436
436
  * // end: Number("long"), // required
437
437
  * // },
438
438
  * // ],
439
- * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE", // required
439
+ * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
440
440
  * // transcriptionLanguage: "STRING_VALUE",
441
441
  * // transcriptionSeconds: Number("int"),
442
442
  * // type: "call" || "call_transcription" || "conference" || "conference_transcription" || "chat" || "chat_transcription", // required
@@ -141,7 +141,7 @@ declare const ListPlaylistItemsCommand_base: {
141
141
  * // remotePhoneCountryCodeStr: "STRING_VALUE",
142
142
  * // remotePhoneLocation: "STRING_VALUE",
143
143
  * // callStatus: "COMPLETED" || "MISSED",
144
- * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
144
+ * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
145
145
  * // transcriptionLanguage: "STRING_VALUE",
146
146
  * // transcriptionSeconds: Number("int"),
147
147
  * // attachment: "STRING_VALUE",
@@ -262,7 +262,7 @@ declare const ListPlaylistItemsCommand_base: {
262
262
  * // end: Number("long"), // required
263
263
  * // },
264
264
  * // ],
265
- * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE", // required
265
+ * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
266
266
  * // transcriptionLanguage: "STRING_VALUE",
267
267
  * // transcriptionSeconds: Number("int"),
268
268
  * // type: "call" || "call_transcription" || "conference" || "conference_transcription" || "chat" || "chat_transcription", // required
@@ -139,7 +139,7 @@ declare const ListWatchHistoryCommand_base: {
139
139
  * // remotePhoneCountryCodeStr: "STRING_VALUE",
140
140
  * // remotePhoneLocation: "STRING_VALUE",
141
141
  * // callStatus: "COMPLETED" || "MISSED",
142
- * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
142
+ * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
143
143
  * // transcriptionLanguage: "STRING_VALUE",
144
144
  * // transcriptionSeconds: Number("int"),
145
145
  * // attachment: "STRING_VALUE",
@@ -260,7 +260,7 @@ declare const ListWatchHistoryCommand_base: {
260
260
  * // end: Number("long"), // required
261
261
  * // },
262
262
  * // ],
263
- * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE", // required
263
+ * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
264
264
  * // transcriptionLanguage: "STRING_VALUE",
265
265
  * // transcriptionSeconds: Number("int"),
266
266
  * // type: "call" || "call_transcription" || "conference" || "conference_transcription" || "chat" || "chat_transcription", // required
@@ -311,6 +311,7 @@ export type License = typeof License[keyof typeof License];
311
311
  */
312
312
  export declare const CallFlowTranscriptionStatus: {
313
313
  readonly AVAILABLE: "AVAILABLE";
314
+ readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
314
315
  readonly UNAVAILABLE: "UNAVAILABLE";
315
316
  };
316
317
  /**
@@ -833,6 +834,7 @@ export interface ConferenceRecording {
833
834
  */
834
835
  export declare const ConferenceTranscriptionStatus: {
835
836
  readonly AVAILABLE: "AVAILABLE";
837
+ readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
836
838
  readonly UNAVAILABLE: "UNAVAILABLE";
837
839
  };
838
840
  /**
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.1.27",
4
+ "version": "1.1.28",
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",
@@ -80,4 +80,4 @@
80
80
  "react-native": {
81
81
  "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
82
82
  }
83
- }
83
+ }