impaktapps-ui-builder 0.0.285 → 0.0.286
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.
|
@@ -9797,15 +9797,11 @@ async function executeApiEventHandler(params2) {
|
|
|
9797
9797
|
"Access-Control-Allow-Origin": "*"
|
|
9798
9798
|
};
|
|
9799
9799
|
const { body: body2, headers: headers2 } = await buildApiPayload(params2.config, initialBody, initialHeaders, params2.store, params2.dynamicData, params2.userValue, params2.service);
|
|
9800
|
-
|
|
9801
|
-
|
|
9802
|
-
|
|
9803
|
-
headers:
|
|
9804
|
-
|
|
9805
|
-
},
|
|
9806
|
-
body: JSON.stringify(body2)
|
|
9807
|
-
});
|
|
9808
|
-
response2 = await dataJSON.json();
|
|
9800
|
+
const response2 = await params2.service[params2.config.method](
|
|
9801
|
+
params2.config.path,
|
|
9802
|
+
body2,
|
|
9803
|
+
headers2 && { headers: headers2 }
|
|
9804
|
+
);
|
|
9809
9805
|
return response2;
|
|
9810
9806
|
}
|
|
9811
9807
|
async function executeInBuiltFunctionHandler(params) {
|