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.
@@ -17,7 +17,7 @@ class CalaApi {
17
17
  },
18
18
  default: '',
19
19
  required: true,
20
- description: 'Your Cala API key',
20
+ description: 'Your Cala API key.',
21
21
  },
22
22
  ];
23
23
  this.authenticate = {
@@ -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 an entity',
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;
@@ -7,7 +7,7 @@
7
7
  "resources": {
8
8
  "primaryDocumentation": [
9
9
  {
10
- "url": "https://cala.ai"
10
+ "url": "https://docs.cala.ai"
11
11
  }
12
12
  ]
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-cala",
3
- "version": "0.4.13",
3
+ "version": "0.4.15",
4
4
  "description": "n8n nodes for Cala AI knowledge search",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",