n8n-nodes-cala 0.4.4 → 0.4.5
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.
|
@@ -16,6 +16,20 @@ class Cala {
|
|
|
16
16
|
defaults: {
|
|
17
17
|
name: 'Cala',
|
|
18
18
|
},
|
|
19
|
+
codex: {
|
|
20
|
+
categories: ['AI'],
|
|
21
|
+
subcategories: {
|
|
22
|
+
AI: ['Tools'],
|
|
23
|
+
},
|
|
24
|
+
alias: ['cala', 'knowledge', 'search', 'ai', 'rag'],
|
|
25
|
+
resources: {
|
|
26
|
+
primaryDocumentation: [
|
|
27
|
+
{
|
|
28
|
+
url: 'https://cala.ai',
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
},
|
|
32
|
+
},
|
|
19
33
|
inputs: ['main'],
|
|
20
34
|
outputs: ['main'],
|
|
21
35
|
credentials: [
|
|
@@ -132,7 +146,7 @@ class Cala {
|
|
|
132
146
|
name: 'entityId',
|
|
133
147
|
type: 'number',
|
|
134
148
|
required: true,
|
|
135
|
-
default:
|
|
149
|
+
default: null,
|
|
136
150
|
description: 'The numeric ID of the entity to retrieve',
|
|
137
151
|
displayOptions: {
|
|
138
152
|
show: { resource: ['knowledge'], operation: ['getEntity'] },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-cala",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "n8n nodes for Cala AI knowledge search",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -23,13 +23,6 @@
|
|
|
23
23
|
"bugs": {
|
|
24
24
|
"url": "https://github.com/cala-ai/cala-n8n-node/issues"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "tsc && gulp build:icons",
|
|
28
|
-
"dev": "tsc --watch",
|
|
29
|
-
"test": "jest",
|
|
30
|
-
"lint": "eslint nodes credentials",
|
|
31
|
-
"prepublishOnly": "npm run build"
|
|
32
|
-
},
|
|
33
26
|
"files": [
|
|
34
27
|
"dist",
|
|
35
28
|
"LICENSE",
|
|
@@ -65,5 +58,10 @@
|
|
|
65
58
|
"volta": {
|
|
66
59
|
"node": "22.13.1"
|
|
67
60
|
},
|
|
68
|
-
"
|
|
69
|
-
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsc && gulp build:icons",
|
|
63
|
+
"dev": "tsc --watch",
|
|
64
|
+
"test": "jest",
|
|
65
|
+
"lint": "eslint nodes credentials"
|
|
66
|
+
}
|
|
67
|
+
}
|