@wildix/wda-history-client 1.2.12 → 1.2.13

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.
@@ -85,6 +85,7 @@ var CallFlowAttachment;
85
85
  })(CallFlowAttachment || (exports.CallFlowAttachment = CallFlowAttachment = {}));
86
86
  exports.CallFlowAttachmentType = {
87
87
  FAX: "FAX",
88
+ TRANSCRIPTION: "TRANSCRIPTION",
88
89
  VOICEMAIL: "VOICEMAIL",
89
90
  };
90
91
  exports.CallParticipantRole = {
@@ -79,6 +79,7 @@ export var CallFlowAttachment;
79
79
  })(CallFlowAttachment || (CallFlowAttachment = {}));
80
80
  export const CallFlowAttachmentType = {
81
81
  FAX: "FAX",
82
+ TRANSCRIPTION: "TRANSCRIPTION",
82
83
  VOICEMAIL: "VOICEMAIL",
83
84
  };
84
85
  export const CallParticipantRole = {
@@ -152,7 +152,7 @@ declare const GetCallCommand_base: {
152
152
  * // transcriptionLanguage: "STRING_VALUE",
153
153
  * // transcriptionSeconds: Number("int"),
154
154
  * // attachment: "STRING_VALUE",
155
- * // attachmentType: "VOICEMAIL" || "FAX",
155
+ * // attachmentType: "VOICEMAIL" || "FAX" || "TRANSCRIPTION",
156
156
  * // attachmentDestinations: [
157
157
  * // {
158
158
  * // phone: "STRING_VALUE",
@@ -169,7 +169,7 @@ declare const QueryConversationsCommand_base: {
169
169
  * // transcriptionLanguage: "STRING_VALUE",
170
170
  * // transcriptionSeconds: Number("int"),
171
171
  * // attachment: "STRING_VALUE",
172
- * // attachmentType: "VOICEMAIL" || "FAX",
172
+ * // attachmentType: "VOICEMAIL" || "FAX" || "TRANSCRIPTION",
173
173
  * // attachmentDestinations: [
174
174
  * // {
175
175
  * // phone: "STRING_VALUE",
@@ -169,7 +169,7 @@ declare const QueryUserCallsCommand_base: {
169
169
  * // transcriptionLanguage: "STRING_VALUE",
170
170
  * // transcriptionSeconds: Number("int"),
171
171
  * // attachment: "STRING_VALUE",
172
- * // attachmentType: "VOICEMAIL" || "FAX",
172
+ * // attachmentType: "VOICEMAIL" || "FAX" || "TRANSCRIPTION",
173
173
  * // attachmentDestinations: [
174
174
  * // {
175
175
  * // phone: "STRING_VALUE",
@@ -155,7 +155,7 @@ declare const UpdateCallCommand_base: {
155
155
  * // transcriptionLanguage: "STRING_VALUE",
156
156
  * // transcriptionSeconds: Number("int"),
157
157
  * // attachment: "STRING_VALUE",
158
- * // attachmentType: "VOICEMAIL" || "FAX",
158
+ * // attachmentType: "VOICEMAIL" || "FAX" || "TRANSCRIPTION",
159
159
  * // attachmentDestinations: [
160
160
  * // {
161
161
  * // phone: "STRING_VALUE",
@@ -252,6 +252,7 @@ export declare namespace CallFlowAttachment {
252
252
  */
253
253
  export declare const CallFlowAttachmentType: {
254
254
  readonly FAX: "FAX";
255
+ readonly TRANSCRIPTION: "TRANSCRIPTION";
255
256
  readonly VOICEMAIL: "VOICEMAIL";
256
257
  };
257
258
  /**
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.12",
4
+ "version": "1.2.13",
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",