@ctera/n8n-nodes-ctera-ai 0.1.1 → 0.1.2
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.
|
@@ -150,7 +150,6 @@ class CteraAi {
|
|
|
150
150
|
if (operation === 'listExperts') {
|
|
151
151
|
toolName = 'ctera_list_experts';
|
|
152
152
|
serverUrl = `${mcpServerUrl}/mcp-bearer`;
|
|
153
|
-
// No parameters needed
|
|
154
153
|
}
|
|
155
154
|
else if (operation === 'search') {
|
|
156
155
|
toolName = 'expert_semantic_search';
|
|
@@ -233,10 +232,10 @@ class CteraAi {
|
|
|
233
232
|
}
|
|
234
233
|
returnData.push({
|
|
235
234
|
json: {
|
|
235
|
+
...items[i].json,
|
|
236
236
|
operation,
|
|
237
237
|
toolName,
|
|
238
238
|
result,
|
|
239
|
-
...items[i].json,
|
|
240
239
|
},
|
|
241
240
|
pairedItem: { item: i },
|
|
242
241
|
});
|
|
@@ -245,8 +244,8 @@ class CteraAi {
|
|
|
245
244
|
if (this.continueOnFail()) {
|
|
246
245
|
returnData.push({
|
|
247
246
|
json: {
|
|
248
|
-
error: error.message,
|
|
249
247
|
...items[i].json,
|
|
248
|
+
error: error.message,
|
|
250
249
|
},
|
|
251
250
|
pairedItem: { item: i },
|
|
252
251
|
});
|
package/package.json
CHANGED