@onereach/step-voice 7.0.2-VOIC1438.13 → 7.0.2-VOIC1438.14
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/MeetOps.js +6 -2
- package/dst/Send DTMF.js +1 -1
- package/package.json +1 -1
package/dst/MeetOps.js
CHANGED
|
@@ -151,7 +151,7 @@ class MeetOps extends voice_1.default {
|
|
|
151
151
|
name: 'meet-ops',
|
|
152
152
|
params: {
|
|
153
153
|
meetOps: {
|
|
154
|
-
dtmfPin: '
|
|
154
|
+
dtmfPin: '798 365 010 1210#'.replace(/ /g, ''),
|
|
155
155
|
durationMs: 10 * 60 * 1000,
|
|
156
156
|
idleTimeoutMs: 60 * 1000,
|
|
157
157
|
},
|
|
@@ -176,7 +176,11 @@ class MeetOps extends voice_1.default {
|
|
|
176
176
|
// tts,
|
|
177
177
|
from: botNumber, endUserNumber: dianInNumber, sipHost, sipUser, sipPassword, timeout, headers, enableSpoofCallerId, spoofCallerId,
|
|
178
178
|
// isAMD,
|
|
179
|
-
otherCallRef, otherCallRefThread, meetOps
|
|
179
|
+
otherCallRef, otherCallRefThread, meetOps = {
|
|
180
|
+
dtmfPin: '798 365 010 1210#'.replace(/ /g, ''),
|
|
181
|
+
durationMs: 10 * 60 * 1000,
|
|
182
|
+
idleTimeoutMs: 60 * 1000,
|
|
183
|
+
},
|
|
180
184
|
// handleCancel
|
|
181
185
|
} = this.data;
|
|
182
186
|
const customHeadersEntities = headers?.map(({ name, value }) => [name, `${value}`]) || [];
|
package/dst/Send DTMF.js
CHANGED