primary_care_admin_binder 0.1.193 → 0.1.194
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/index.cjs.js +2 -3
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2394,7 +2394,6 @@ var _tenantId = "";
|
|
|
2394
2394
|
* Builds all Binder URLs dynamically from runtime env
|
|
2395
2395
|
*/
|
|
2396
2396
|
function getBinderUrls() {
|
|
2397
|
-
var arangoApi = getBinderEnv("REACT_APP_ARANGO_API");
|
|
2398
2397
|
var commonApi = getBinderEnv("REACT_APP_AIQOE_COMMON_API_URL");
|
|
2399
2398
|
var keyClockApi = getBinderEnv("REACT_APP_KEY_CLOCK_API");
|
|
2400
2399
|
var nifiApi = getBinderEnv("REACT_APP_NIFI_API");
|
|
@@ -2423,10 +2422,10 @@ function getBinderUrls() {
|
|
|
2423
2422
|
return "".concat(commonApi, "/api/upsert_document");
|
|
2424
2423
|
},
|
|
2425
2424
|
updateUrl: function updateUrl() {
|
|
2426
|
-
return "".concat(
|
|
2425
|
+
return "".concat(commonApi, "/api/updatedocument");
|
|
2427
2426
|
},
|
|
2428
2427
|
softDeleteUrl: function softDeleteUrl() {
|
|
2429
|
-
return "".concat(
|
|
2428
|
+
return "".concat(commonApi, "/api/soft_delete");
|
|
2430
2429
|
},
|
|
2431
2430
|
// KeyClock / Appointment APIs
|
|
2432
2431
|
createSlotUrl: function createSlotUrl() {
|