@wildix/wda-history-client 1.2.10 → 1.2.11

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.
@@ -294,6 +294,7 @@ exports.ConferenceParticipantType = {
294
294
  };
295
295
  exports.ConferenceTranscriptionStatus = {
296
296
  AVAILABLE: "AVAILABLE",
297
+ POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
297
298
  UNAVAILABLE: "UNAVAILABLE",
298
299
  };
299
300
  class ConferenceTranscriptionNotFoundException extends WdaHistoryServiceException_1.WdaHistoryServiceException {
@@ -284,6 +284,7 @@ export const ConferenceParticipantType = {
284
284
  };
285
285
  export const ConferenceTranscriptionStatus = {
286
286
  AVAILABLE: "AVAILABLE",
287
+ POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
287
288
  UNAVAILABLE: "UNAVAILABLE",
288
289
  };
289
290
  export class ConferenceTranscriptionNotFoundException extends __BaseException {
@@ -84,7 +84,7 @@ declare const GetConferenceCommand_base: {
84
84
  * // end: Number("long"), // required
85
85
  * // },
86
86
  * // ],
87
- * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE", // required
87
+ * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
88
88
  * // transcriptionLanguage: "STRING_VALUE",
89
89
  * // transcriptionSeconds: Number("int"),
90
90
  * // type: "call" || "call_transcription" || "conference" || "conference_transcription" || "chat" || "chat_transcription", // required
@@ -274,7 +274,7 @@ declare const QueryConversationsCommand_base: {
274
274
  * // end: Number("long"), // required
275
275
  * // },
276
276
  * // ],
277
- * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE", // required
277
+ * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
278
278
  * // transcriptionLanguage: "STRING_VALUE",
279
279
  * // transcriptionSeconds: Number("int"),
280
280
  * // type: "call" || "call_transcription" || "conference" || "conference_transcription" || "chat" || "chat_transcription", // required
@@ -1307,6 +1307,7 @@ export interface ConferenceRecording {
1307
1307
  */
1308
1308
  export declare const ConferenceTranscriptionStatus: {
1309
1309
  readonly AVAILABLE: "AVAILABLE";
1310
+ readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
1310
1311
  readonly UNAVAILABLE: "UNAVAILABLE";
1311
1312
  };
1312
1313
  /**
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.10",
4
+ "version": "1.2.11",
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",