@wildix/wim-voicebots-client 1.0.21 → 1.0.22

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.
@@ -191,6 +191,11 @@ declare const DescribeEventCommand_base: {
191
191
  * // botId: "STRING_VALUE", // required
192
192
  * // callId: "STRING_VALUE", // required
193
193
  * // flowIndex: Number("int"), // required
194
+ * // event: {
195
+ * // type: "started" || "ended" || "reply" || "playback" || "transcription" || "interruption" || "complete", // required
196
+ * // reason: "STRING_VALUE", // required
197
+ * // time: Number("long"), // required
198
+ * // },
194
199
  * // },
195
200
  * // PubSubBroadcastWebsocketEvent: { // PubSubBroadcastWebsocketEvent
196
201
  * // event: "STRING_VALUE", // required
@@ -56,6 +56,7 @@ export interface CompleteWebhookEvent {
56
56
  botId: string;
57
57
  callId: string;
58
58
  flowIndex: number;
59
+ event: CompleteEvent;
59
60
  }
60
61
  /**
61
62
  * @public
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.21",
4
+ "version": "1.0.22",
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",