@banumeow/n8n-nodes-oci-generativeai-agent 0.1.3 → 0.1.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@banumeow/n8n-nodes-oci-generativeai-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "n8n custom node using OCI SDK for Generative AI Agent Runtime",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -24,8 +24,10 @@
|
|
|
24
24
|
"LICENSE"
|
|
25
25
|
],
|
|
26
26
|
"scripts": {
|
|
27
|
-
"build": "
|
|
27
|
+
"build": "npm run build:ts && npm run copy:assets",
|
|
28
|
+
"build:ts": "node ./node_modules/typescript/bin/tsc",
|
|
28
29
|
"build:watch": "tsc --watch",
|
|
30
|
+
"copy:assets": "mkdir -p dist/nodes/OciGenAIAgent && cp src/nodes/OciGenAIAgent/oracle.svg dist/nodes/OciGenAIAgent/oracle.svg",
|
|
29
31
|
"dev": "n8n-node dev",
|
|
30
32
|
"lint": "n8n-node lint",
|
|
31
33
|
"lint:fix": "n8n-node lint --fix",
|
|
@@ -39,7 +41,8 @@
|
|
|
39
41
|
"dependencies": {
|
|
40
42
|
"n8n-nodes-oracle-cloud": "^1.1.1",
|
|
41
43
|
"oci-common": "^2.122.0",
|
|
42
|
-
"oci-generativeaiagentruntime": "^2.122.0"
|
|
44
|
+
"oci-generativeaiagentruntime": "^2.122.0",
|
|
45
|
+
"opossum": "^9.0.0"
|
|
43
46
|
},
|
|
44
47
|
"devDependencies": {
|
|
45
48
|
"@n8n/node-cli": "*",
|