@onereach/step-voice 7.0.14 → 7.0.16
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 +1 -3
- package/dst/Transfer.js +1 -3
- package/package.json +1 -1
package/dst/Initiate Call.js
CHANGED
|
@@ -205,9 +205,7 @@ class InitiateCall extends voice_1.default {
|
|
|
205
205
|
};
|
|
206
206
|
break;
|
|
207
207
|
case "profile" /* GATEWAY_SETTINGS_MODE.PROFILE */:
|
|
208
|
-
gateway = {
|
|
209
|
-
profile
|
|
210
|
-
};
|
|
208
|
+
gateway = gateway = profile != null ? { profile } : undefined;
|
|
211
209
|
break;
|
|
212
210
|
}
|
|
213
211
|
const params = {
|
package/dst/Transfer.js
CHANGED