n8n-nodes-couchbase 1.1.1 → 1.2.0

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.
Files changed (29) hide show
  1. package/README.md +2 -1
  2. package/dist/nodes/Couchbase/Couchbase.node.js +1 -1
  3. package/dist/nodes/Couchbase/Couchbase.node.js.map +1 -1
  4. package/dist/nodes/Couchbase/Couchbase.node.json +1 -1
  5. package/dist/nodes/memory/MemoryCouchbaseChat/CouchbaseChatMessageHistory.d.ts +18 -0
  6. package/dist/nodes/memory/MemoryCouchbaseChat/CouchbaseChatMessageHistory.js +64 -0
  7. package/dist/nodes/memory/MemoryCouchbaseChat/CouchbaseChatMessageHistory.js.map +1 -0
  8. package/dist/nodes/memory/MemoryCouchbaseChat/MemoryCouchbaseChat.node.d.ts +13 -0
  9. package/dist/nodes/memory/MemoryCouchbaseChat/MemoryCouchbaseChat.node.js +146 -0
  10. package/dist/nodes/memory/MemoryCouchbaseChat/MemoryCouchbaseChat.node.js.map +1 -0
  11. package/dist/nodes/memory/MemoryCouchbaseChat/MemoryCouchbaseProperties.d.ts +4 -0
  12. package/dist/nodes/memory/MemoryCouchbaseChat/MemoryCouchbaseProperties.js +79 -0
  13. package/dist/nodes/memory/MemoryCouchbaseChat/MemoryCouchbaseProperties.js.map +1 -0
  14. package/dist/nodes/memory/MemoryCouchbaseChat/descriptions.d.ts +5 -0
  15. package/dist/nodes/memory/MemoryCouchbaseChat/descriptions.js +59 -0
  16. package/dist/nodes/memory/MemoryCouchbaseChat/descriptions.js.map +1 -0
  17. package/dist/nodes/memory/MemoryCouchbaseChat/sessionHelpers.d.ts +2 -0
  18. package/dist/nodes/memory/MemoryCouchbaseChat/sessionHelpers.js +24 -0
  19. package/dist/nodes/memory/MemoryCouchbaseChat/sessionHelpers.js.map +1 -0
  20. package/dist/nodes/vector_store/shared/createVectorStoreNode/createVectorStoreNode.js +2 -2
  21. package/dist/nodes/vector_store/shared/createVectorStoreNode/createVectorStoreNode.js.map +1 -1
  22. package/dist/nodes/vector_store/shared/createVectorStoreNode/operations/insertOperation.js +1 -1
  23. package/dist/nodes/vector_store/shared/createVectorStoreNode/operations/insertOperation.js.map +1 -1
  24. package/dist/package.json +10 -9
  25. package/dist/tsconfig.tsbuildinfo +1 -1
  26. package/dist/utils/logWrapper.d.ts +1 -1
  27. package/package.json +10 -9
  28. package/dist/nodes/Couchbase/couchbase.dark.svg +0 -14
  29. package/dist/nodes/Couchbase/couchbase.svg +0 -14
@@ -17,4 +17,4 @@ export declare function callMethodAsync<T>(this: T, parameters: {
17
17
  method: (...args: any[]) => Promise<unknown>;
18
18
  arguments: unknown[];
19
19
  }): Promise<unknown>;
20
- export declare function logWrapper(originalInstance: Tool | BaseChatMemory | BaseChatMessageHistory | BaseRetriever | Embeddings | Document[] | Document | BaseDocumentLoader | TextSplitter | VectorStore | N8nBinaryLoader | N8nJsonLoader, executeFunctions: IExecuteFunctions | ISupplyDataFunctions): BaseChatMemory | BaseChatMessageHistory | Tool | VectorStore | Embeddings | N8nBinaryLoader | TextSplitter | Document<Record<string, any>> | Document<Record<string, any>>[] | BaseDocumentLoader | N8nJsonLoader | BaseRetriever<Record<string, any>>;
20
+ export declare function logWrapper(originalInstance: Tool | BaseChatMemory | BaseChatMessageHistory | BaseRetriever | Embeddings | Document[] | Document | BaseDocumentLoader | TextSplitter | VectorStore | N8nBinaryLoader | N8nJsonLoader, executeFunctions: IExecuteFunctions | ISupplyDataFunctions): BaseChatMemory | BaseChatMessageHistory | Tool | N8nBinaryLoader | TextSplitter | Document<Record<string, any>> | Document<Record<string, any>>[] | BaseDocumentLoader | N8nJsonLoader | BaseRetriever<Record<string, any>> | Embeddings | VectorStore;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "n8n-nodes-couchbase",
3
- "version": "1.1.1",
4
- "description": "Community node for using Couchbase Key-Value, Query, and Full-Text Search with n8n.",
3
+ "version": "1.2.0",
4
+ "description": "Community nodes for using Couchbase Key-Value, Query, Full-Text Search, and Couchbase Search Vector Store with n8n.",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"
7
7
  ],
@@ -30,37 +30,38 @@
30
30
  ],
31
31
  "nodes": [
32
32
  "dist/nodes/Couchbase/Couchbase.node.js",
33
- "dist/nodes/Couchbase/vector_store/VectorStoreCouchbaseSearch.node.js"
33
+ "dist/nodes/vector_store/VectorStoreCouchbaseSearch/VectorStoreCouchbaseSearch.node.js",
34
+ "dist/nodes/memory/MemoryCouchbaseChat/MemoryCouchbaseChat.node.js"
34
35
  ]
35
36
  },
36
37
  "devDependencies": {
37
38
  "@types/node": "^22.13.5",
38
39
  "@typescript-eslint/parser": "^7.15.0",
39
- "eslint": "^8.56.0",
40
- "eslint-plugin-n8n-nodes-base": "^1.16.1",
40
+ "eslint": "^8.57.0",
41
+ "eslint-plugin-n8n-nodes-base": "^1.16.4",
41
42
  "gulp": "^4.0.2",
42
43
  "nodemon": "^3.1.9",
43
44
  "prettier": "^3.3.2",
44
45
  "sqlite3": "^5.1.7",
45
- "tsc-alias": "^1.8.13",
46
+ "tsc-alias": "^1.8.15",
46
47
  "typescript": "^5.5.3"
47
48
  },
48
49
  "peerDependencies": {
49
- "n8n-workflow": "*"
50
+ "n8n-workflow": "^1.120.1"
50
51
  },
51
52
  "dependencies": {
52
53
  "@langchain/community": "^0.3.38",
53
54
  "@langchain/core": "^0.3.43",
54
55
  "@langchain/textsplitters": "^0.1.0",
55
- "langchain": "^0.3.19",
56
56
  "couchbase": "^4.4.5",
57
+ "langchain": "^0.3.19",
57
58
  "tmp-promise": "^3.0.3",
58
59
  "uuid": "^11.1.0",
59
60
  "zod": "^3.24.2"
60
61
  },
61
62
  "scripts": {
62
63
  "preinstall": "npx only-allow pnpm",
63
- "build": "tsc && gulp build:icons",
64
+ "build": "tsc && tsc-alias && gulp build:icons",
64
65
  "dev": "tsc --watch",
65
66
  "dev:ui": "nodemon -w nodes -w credentials -w utils --ext ts --exec 'tsc && tsc-alias && cd $HOME/.n8n/custom && COREPACK_ENABLE_STRICT=0 pnpm install && cd - && n8n'",
66
67
  "format": "prettier nodes credentials --write",
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 27.9.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 250 250" style="enable-background:new 0 0 250 250;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:#FFFFFF;}
7
- </style>
8
- <g>
9
- <path id="Logo-Icon_00000058558043654136794640000002980853754803412653_" class="st0" d="M209.6,146.8c0,7.4-4.4,14.1-12.9,15.6
10
- c-14.7,2.6-45.6,4-71.7,4s-57-1.8-71.7-4c-8.4-1.5-12.9-8.1-12.9-15.6V98c0-7.4,5.9-14.5,12.9-15.6c4.4-0.7,14.4-1.5,22.4-1.5
11
- c2.9,0,5.5,2.2,5.5,5.9v34.1c15.1,0,28.3-0.7,43.7-0.7s28.6,0.7,43.7,0.7v-34c0-3.7,2.6-5.9,5.5-5.9c8.1,0,18,0.7,22.4,1.5
12
- c7,1.1,12.9,8.1,12.9,15.6L209.6,146.8z M125,0C55.9,0,0,55.9,0,125s55.9,125,125,125s125-55.9,125-125S194.1,0,125,0L125,0z"/>
13
- </g>
14
- </svg>
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 27.9.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 250 250" style="enable-background:new 0 0 250 250;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:#EC1218;}
7
- </style>
8
- <g>
9
- <path id="Logo-Icon_00000058558043654136794640000002980853754803412653_" class="st0" d="M209.6,146.8c0,7.4-4.4,14.1-12.9,15.6
10
- c-14.7,2.6-45.6,4-71.7,4s-57-1.8-71.7-4c-8.4-1.5-12.9-8.1-12.9-15.6V98c0-7.4,5.9-14.5,12.9-15.6c4.4-0.7,14.4-1.5,22.4-1.5
11
- c2.9,0,5.5,2.2,5.5,5.9v34.1c15.1,0,28.3-0.7,43.7-0.7s28.6,0.7,43.7,0.7v-34c0-3.7,2.6-5.9,5.5-5.9c8.1,0,18,0.7,22.4,1.5
12
- c7,1.1,12.9,8.1,12.9,15.6L209.6,146.8z M125,0C55.9,0,0,55.9,0,125s55.9,125,125,125s125-55.9,125-125S194.1,0,125,0L125,0z"/>
13
- </g>
14
- </svg>