@onereach/step-voice 7.0.11-VOIC1606.7 → 7.0.11-VOIC1606.8
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 +5 -1
- package/package.json +1 -1
package/dst/Initiate Call.js
CHANGED
|
@@ -31,6 +31,10 @@ class InitiateCall extends voice_1.default {
|
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
33
|
}
|
|
34
|
+
const call = await this.fetchData();
|
|
35
|
+
this.log.error(`Starting call with id ${callId}`, {
|
|
36
|
+
config: call?.loopPrevention ?? {},
|
|
37
|
+
});
|
|
34
38
|
const convData = { id: callId, type: 'voicer', vv: 0 }; // vv - voicer version
|
|
35
39
|
await this.startConversation(convData);
|
|
36
40
|
// await this.pushConvStep()
|
|
@@ -214,7 +218,7 @@ class InitiateCall extends voice_1.default {
|
|
|
214
218
|
v: 1
|
|
215
219
|
}
|
|
216
220
|
};
|
|
217
|
-
this.log.error('Originate call params', params);
|
|
221
|
+
this.log.error('Originate call params', { ...params, config: this.config, session: this.session, state: this.state });
|
|
218
222
|
if (otherCallRef) {
|
|
219
223
|
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
|
220
224
|
const otherThread = this.process.getSafeThread(otherCallRefThread || this.thread.id);
|