@wildix/wim-voicebots-client 1.0.17 → 1.0.18

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.
@@ -44,6 +44,7 @@ declare const DescribeEventCommand_base: {
44
44
  * // type: "started" || "ended" || "reply" || "playback" || "transcription" || "interruption" || "complete", // required
45
45
  * // id: "STRING_VALUE", // required
46
46
  * // text: "STRING_VALUE", // required
47
+ * // final: true || false,
47
48
  * // time: Number("long"), // required
48
49
  * // },
49
50
  * // },
@@ -141,6 +142,7 @@ declare const DescribeEventCommand_base: {
141
142
  * // type: "started" || "ended" || "reply" || "playback" || "transcription" || "interruption" || "complete", // required
142
143
  * // id: "STRING_VALUE", // required
143
144
  * // text: "STRING_VALUE", // required
145
+ * // final: true || false,
144
146
  * // time: Number("long"), // required
145
147
  * // },
146
148
  * // },
@@ -267,6 +269,7 @@ declare const DescribeEventCommand_base: {
267
269
  * // type: "started" || "ended" || "reply" || "playback" || "transcription" || "interruption" || "complete", // required
268
270
  * // id: "STRING_VALUE", // required
269
271
  * // text: "STRING_VALUE", // required
272
+ * // final: true || false,
270
273
  * // time: Number("long"), // required
271
274
  * // },
272
275
  * // },
@@ -115,6 +115,7 @@ declare const GetTraceCommand_base: {
115
115
  * // type: "started" || "ended" || "reply" || "playback" || "transcription" || "interruption" || "complete", // required
116
116
  * // id: "STRING_VALUE", // required
117
117
  * // text: "STRING_VALUE", // required
118
+ * // final: true || false,
118
119
  * // time: Number("long"), // required
119
120
  * // },
120
121
  * // },
@@ -675,6 +675,7 @@ export interface TranscriptionEvent {
675
675
  type: VoiceBotEventType;
676
676
  id: string;
677
677
  text: string;
678
+ final?: boolean;
678
679
  time: number;
679
680
  }
680
681
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-voicebots-client",
3
3
  "description": "@wildix/wim-voicebots-client client",
4
- "version": "1.0.17",
4
+ "version": "1.0.18",
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",