n8n-nodes-apexapi 0.1.0 → 0.1.1
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.
|
@@ -12,7 +12,7 @@ class ApexApi {
|
|
|
12
12
|
this.description = {
|
|
13
13
|
displayName: 'ApexApi',
|
|
14
14
|
name: 'apexApi',
|
|
15
|
-
icon: 'file:apexapi.
|
|
15
|
+
icon: 'file:apexapi.png',
|
|
16
16
|
group: ['transform'],
|
|
17
17
|
version: 1,
|
|
18
18
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-apexapi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "n8n community node for ApexApi — call 14 AI providers (OpenAI, Anthropic, Google, Mistral, and more) through one OpenAI-compatible API.",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"apexapi",
|
|
8
|
+
"ai",
|
|
9
|
+
"llm",
|
|
10
|
+
"openai",
|
|
11
|
+
"anthropic",
|
|
12
|
+
"gemini"
|
|
13
|
+
],
|
|
6
14
|
"license": "MIT",
|
|
7
15
|
"homepage": "https://apexapi.dev",
|
|
8
|
-
"author": {
|
|
9
|
-
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "ApexApi",
|
|
18
|
+
"email": "support@apexapi.dev"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/apexapi/apexapi.git"
|
|
23
|
+
},
|
|
10
24
|
"main": "dist/index.js",
|
|
11
25
|
"scripts": {
|
|
12
26
|
"build": "tsc && node scripts/build-icons.mjs",
|
|
@@ -14,13 +28,21 @@
|
|
|
14
28
|
"test": "vitest run",
|
|
15
29
|
"prepublishOnly": "pnpm build"
|
|
16
30
|
},
|
|
17
|
-
"files": [
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
18
34
|
"n8n": {
|
|
19
35
|
"n8nNodesApiVersion": 1,
|
|
20
|
-
"credentials": [
|
|
21
|
-
|
|
36
|
+
"credentials": [
|
|
37
|
+
"dist/credentials/ApexApiApi.credentials.js"
|
|
38
|
+
],
|
|
39
|
+
"nodes": [
|
|
40
|
+
"dist/nodes/ApexApi/ApexApi.node.js"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"n8n-workflow": "*"
|
|
22
45
|
},
|
|
23
|
-
"peerDependencies": { "n8n-workflow": "*" },
|
|
24
46
|
"devDependencies": {
|
|
25
47
|
"n8n-workflow": "^1.82.0",
|
|
26
48
|
"typescript": "^5.9.3",
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
|
|
2
|
-
<rect width="64" height="64" rx="12" fill="#0B0B0F"/>
|
|
3
|
-
<path d="M20 44 32 20 44 44" fill="none" stroke="#5B8CFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<line x1="25" y1="36" x2="39" y2="36" stroke="#5B8CFF" stroke-width="4" stroke-linecap="round"/>
|
|
5
|
-
</svg>
|