@bigbinary/neeto-integrations-frontend 2.7.0 → 2.7.1
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/dist/Daily.cjs.js.map +1 -1
- package/dist/Daily.js.map +1 -1
- package/dist/Twilio.cjs.js.map +1 -1
- package/dist/Twilio.js.map +1 -1
- package/dist/Zoom.cjs.js +6 -1
- package/dist/Zoom.cjs.js.map +1 -1
- package/dist/Zoom.js +6 -1
- package/dist/Zoom.js.map +1 -1
- package/dist/index.cjs.js +6 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -64,6 +64,7 @@ var INTEGRATIONS_ENGINE_BASE_URL = "/neeto_integrations";
|
|
|
64
64
|
var TWILIO_CONFIGURATION_BASE_URL = "".concat(INTEGRATIONS_ENGINE_BASE_URL, "/twilio/sms_configurations");
|
|
65
65
|
var INTEGRATIONS_ENGINE_DAILY_URL = "".concat(INTEGRATIONS_ENGINE_BASE_URL, "/daily");
|
|
66
66
|
var INTEGRATIONS_ENGINE_ZOOM_URL = "".concat(INTEGRATIONS_ENGINE_BASE_URL, "/zoom");
|
|
67
|
+
var INTEGRATION_DETAILS_URL = "".concat(INTEGRATIONS_ENGINE_BASE_URL, "/status");
|
|
67
68
|
|
|
68
69
|
var create = function create(payload) {
|
|
69
70
|
return axios.post(INTEGRATIONS_ENGINE_DAILY_URL, {
|
|
@@ -747,7 +748,11 @@ var Twilio = function Twilio(_ref) {
|
|
|
747
748
|
};
|
|
748
749
|
|
|
749
750
|
var show = function show() {
|
|
750
|
-
return axios.get(
|
|
751
|
+
return axios.get(INTEGRATION_DETAILS_URL, {
|
|
752
|
+
params: {
|
|
753
|
+
serviceName: "Zoom"
|
|
754
|
+
}
|
|
755
|
+
});
|
|
751
756
|
};
|
|
752
757
|
var destroy = function destroy() {
|
|
753
758
|
return axios["delete"]("".concat(INTEGRATIONS_ENGINE_ZOOM_URL, "/oauth"));
|