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