@capillarytech/creatives-library 8.0.87-alpha.15 → 8.0.87-alpha.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/package.json
CHANGED
package/services/api.js
CHANGED
|
@@ -570,8 +570,7 @@ export const getLiquidTags = (content) => {
|
|
|
570
570
|
};
|
|
571
571
|
|
|
572
572
|
export const createCentralCommsMetaId = (payload) => {
|
|
573
|
-
|
|
574
|
-
const url = `${API_ENDPOINT}/common/createCentralCommsMetaId/TRANSACTION`;
|
|
573
|
+
const url = `${API_ENDPOINT}/common/central-comms/meta-id/TRANSACTION`;
|
|
575
574
|
return request(url, getAPICallObject('POST', payload));
|
|
576
575
|
};
|
|
577
576
|
|
|
@@ -87,7 +87,6 @@ export const getLiquidTags = (data,callback) => {
|
|
|
87
87
|
};
|
|
88
88
|
|
|
89
89
|
export const createCentralCommsMetaId = (data, callback) => {
|
|
90
|
-
console.log("createCentralCommsMetaId action", data, callback);
|
|
91
90
|
return {
|
|
92
91
|
type: types.CREATE_CENTRAL_COMMS_META_ID_REQUEST,
|
|
93
92
|
data,
|
|
@@ -188,9 +188,7 @@ const getTopbarData = (parentModule) => {
|
|
|
188
188
|
|
|
189
189
|
export function* createCentralCommsMetaId(action) {
|
|
190
190
|
try {
|
|
191
|
-
console.log("createCentralCommsMetaId saga", action);
|
|
192
191
|
const result = yield call(Api.createCentralCommsMetaId, action?.data);
|
|
193
|
-
console.log("createCentralCommsMetaId saga result", result);
|
|
194
192
|
if (result) {
|
|
195
193
|
if (action?.callback) {
|
|
196
194
|
yield call(action?.callback, result);
|