n8n-nodes-idb2b 3.1.8 → 3.1.9
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.
|
@@ -209,6 +209,10 @@ class IDB2B {
|
|
|
209
209
|
endpoint = `${constants_1.ENDPOINTS.COMPANIES}/${(0, common_1.sanitizeId)(companyId)}`;
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
|
+
// DEBUG: remove after fix confirmed
|
|
213
|
+
if (operation === "create" && resource === "contact") {
|
|
214
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), new Error(`DEBUG body sent: ${JSON.stringify(body)}`), { itemIndex: i });
|
|
215
|
+
}
|
|
212
216
|
const response = await httpClient.makeRequest({
|
|
213
217
|
method,
|
|
214
218
|
url: `${credentials.baseUrl}${endpoint}`,
|