n8n-nodes-couchbase 1.3.0 → 1.3.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.
- package/dist/credentials/CouchbaseApi.credentials.js +2 -2
- package/dist/credentials/CouchbaseApi.credentials.js.map +1 -1
- package/dist/package.json +11 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/fromAIToolFactory.d.ts +1 -3
- package/dist/utils/fromAIToolFactory.js +38 -10
- package/dist/utils/fromAIToolFactory.js.map +1 -1
- package/package.json +22 -15
|
@@ -7,8 +7,8 @@ class CouchbaseApi {
|
|
|
7
7
|
this.displayName = 'Couchbase Credentials API';
|
|
8
8
|
this.documentationUrl = 'https://github.com/Couchbase-Ecosystem/n8n-nodes-couchbase?tab=readme-ov-file#credentials';
|
|
9
9
|
this.icon = {
|
|
10
|
-
light: 'file:../nodes/
|
|
11
|
-
dark: 'file:../nodes/
|
|
10
|
+
light: 'file:../nodes/icons/couchbase.svg',
|
|
11
|
+
dark: 'file:../nodes/icons/couchbase.dark.svg',
|
|
12
12
|
};
|
|
13
13
|
this.properties = [
|
|
14
14
|
{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CouchbaseApi.credentials.js","sourceRoot":"","sources":["../../credentials/CouchbaseApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,YAAY;IAAzB;QACC,SAAI,GAAG,cAAc,CAAC;QACtB,gBAAW,GAAG,2BAA2B,CAAC;QAC1C,qBAAgB,GACf,2FAA2F,CAAC;QAC7F,SAAI,GAAS;YACZ,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"CouchbaseApi.credentials.js","sourceRoot":"","sources":["../../credentials/CouchbaseApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,YAAY;IAAzB;QACC,SAAI,GAAG,cAAc,CAAC;QACtB,gBAAW,GAAG,2BAA2B,CAAC;QAC1C,qBAAgB,GACf,2FAA2F,CAAC;QAC7F,SAAI,GAAS;YACZ,KAAK,EAAE,mCAAmC;YAC1C,IAAI,EAAE,wCAAwC;SAC9C,CAAC;QACF,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,mBAAmB;gBAChC,IAAI,EAAE,2BAA2B;gBACjC,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,mBAAmB;gBACzB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,mBAAmB;gBACzB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,OAAO,EAAE,EAAE;aACX;SACD,CAAC;IACH,CAAC;CAAA;AAhCD,oCAgCC"}
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-couchbase",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Community nodes for using Couchbase Key-Value, Query, Full-Text Search, Couchbase Search Vector Store, Couchbase Query Vector Store, and Couchbase as Chat Memory with n8n.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
@@ -62,14 +62,19 @@
|
|
|
62
62
|
"n8n-workflow": "^1.120.1"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@langchain/classic": "^1.0.
|
|
66
|
-
"@langchain/community": "^1.1.
|
|
67
|
-
"@langchain/core": "^1.1.
|
|
65
|
+
"@langchain/classic": "^1.0.19",
|
|
66
|
+
"@langchain/community": "^1.1.18",
|
|
67
|
+
"@langchain/core": "^1.1.27",
|
|
68
68
|
"@langchain/textsplitters": "^1.0.1",
|
|
69
|
-
"couchbase": "^4.6.
|
|
70
|
-
"langchain": "^1.2.
|
|
69
|
+
"couchbase": "^4.6.1",
|
|
70
|
+
"langchain": "^1.2.26",
|
|
71
71
|
"tmp-promise": "^3.0.3",
|
|
72
72
|
"uuid": "^11.1.0",
|
|
73
73
|
"zod": "^3.24.2"
|
|
74
|
+
},
|
|
75
|
+
"pnpm": {
|
|
76
|
+
"overrides": {
|
|
77
|
+
"@langchain/langgraph-sdk": "1.3.1"
|
|
78
|
+
}
|
|
74
79
|
}
|
|
75
80
|
}
|