@onereach/step-voice 4.0.7 → 4.0.10
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.
- package/dst/Initiate Call.js +2 -2
- package/package.json +1 -1
package/dst/Initiate Call.js
CHANGED
|
@@ -27,8 +27,7 @@ class InitiateCall extends voice_1.default {
|
|
|
27
27
|
}
|
|
28
28
|
});
|
|
29
29
|
}
|
|
30
|
-
await this.startConversation({ id: channelId }, { events: [] });
|
|
31
|
-
// await this.setDataOut()
|
|
30
|
+
await this.startConversation({ id: channelId, type: 'voicer' }, { events: [] });
|
|
32
31
|
this.gotoState('waitForCall');
|
|
33
32
|
}
|
|
34
33
|
async waitForCall() {
|
|
@@ -45,6 +44,7 @@ class InitiateCall extends voice_1.default {
|
|
|
45
44
|
}
|
|
46
45
|
};
|
|
47
46
|
});
|
|
47
|
+
await this.startConversation(event.params.channel, { events: [] });
|
|
48
48
|
this.log.warn('Confirming that the OB call can be started');
|
|
49
49
|
return this.exitFlow();
|
|
50
50
|
}
|