n8n-nodes-cala 0.4.13 → 0.4.15
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.
|
@@ -11,7 +11,7 @@ class Cala {
|
|
|
11
11
|
icon: 'file:cala.svg',
|
|
12
12
|
group: ['transform'],
|
|
13
13
|
version: 1,
|
|
14
|
-
subtitle: '={{$parameter["operation"]}}',
|
|
14
|
+
subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
|
|
15
15
|
description: 'Search trusted knowledge with Cala AI.',
|
|
16
16
|
defaults: {
|
|
17
17
|
name: 'Cala',
|
|
@@ -53,7 +53,7 @@ class Cala {
|
|
|
53
53
|
{
|
|
54
54
|
name: 'Get Entity',
|
|
55
55
|
value: 'getEntity',
|
|
56
|
-
action: 'Get
|
|
56
|
+
action: 'Get knowledge entity',
|
|
57
57
|
description: 'Get the full profile of an entity by its numeric ID.',
|
|
58
58
|
},
|
|
59
59
|
{
|
|
@@ -71,7 +71,7 @@ class Cala {
|
|
|
71
71
|
{
|
|
72
72
|
name: 'Search Entities',
|
|
73
73
|
value: 'searchEntities',
|
|
74
|
-
action: 'Search entities',
|
|
74
|
+
action: 'Search knowledge entities',
|
|
75
75
|
description: 'Find entities by name with fuzzy matching.',
|
|
76
76
|
},
|
|
77
77
|
],
|
|
@@ -202,7 +202,7 @@ class Cala {
|
|
|
202
202
|
catch (error) {
|
|
203
203
|
if (this.continueOnFail()) {
|
|
204
204
|
returnData.push({
|
|
205
|
-
json: { error: error.message },
|
|
205
|
+
json: { error: new n8n_workflow_1.NodeApiError(this.getNode(), error).message },
|
|
206
206
|
pairedItem: { item: i },
|
|
207
207
|
});
|
|
208
208
|
continue;
|