n8n-nodes-clientify 0.1.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.
- package/LICENSE +21 -0
- package/README.md +378 -0
- package/dist/credentials/ClientifyMcpApi.credentials.d.ts +7 -0
- package/dist/credentials/ClientifyMcpApi.credentials.js +25 -0
- package/dist/nodes/ClientifyMcp/ClientifyMcpDynamic.node.d.ts +5 -0
- package/dist/nodes/ClientifyMcp/ClientifyMcpDynamic.node.js +211 -0
- package/dist/nodes/ClientifyMcp/ClientifyMcpFields.d.ts +15 -0
- package/dist/nodes/ClientifyMcp/ClientifyMcpFields.js +894 -0
- package/dist/nodes/ClientifyMcp/clientify.png +0 -0
- package/dist/nodes/ClientifyMcp/clientify.svg +5 -0
- package/dist/package.json +58 -0
- package/package.json +58 -0
|
Binary file
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" fill="none">
|
|
2
|
+
<rect width="60" height="60" rx="8" fill="#4A90E2"/>
|
|
3
|
+
<path d="M30 15C22.268 15 16 21.268 16 29C16 36.732 22.268 43 30 43C37.732 43 44 36.732 44 29C44 21.268 37.732 15 30 15ZM30 19C35.523 19 40 23.477 40 29C40 34.523 35.523 39 30 39C24.477 39 20 34.523 20 29C20 23.477 24.477 19 30 19Z" fill="white"/>
|
|
4
|
+
<path d="M30 23C26.686 23 24 25.686 24 29C24 32.314 26.686 35 30 35C33.314 35 36 32.314 36 29C36 25.686 33.314 23 30 23Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-clientify",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "N8N node for Clientify CRM integration",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-node",
|
|
7
|
+
"n8n-community-node-package",
|
|
8
|
+
"clientify",
|
|
9
|
+
"crm"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"homepage": "https://github.com/contacteitor/clientify_ai/tree/main/n8n/custom-nodes/n8n-nodes-clientify#readme",
|
|
13
|
+
"author": {
|
|
14
|
+
"name": "Clientify",
|
|
15
|
+
"email": "sebastianonearth@gmail.com"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/contacteitor/clientify_ai.git",
|
|
20
|
+
"directory": "n8n/custom-nodes/n8n-nodes-clientify"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.15"
|
|
24
|
+
},
|
|
25
|
+
"main": "index.js",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "rm -rf dist && tsc && cp package.json dist/ && cp nodes/ClientifyMcp/*.png dist/nodes/ClientifyMcp/ 2>/dev/null || true && cp nodes/ClientifyMcp/*.svg dist/nodes/ClientifyMcp/ 2>/dev/null || true",
|
|
28
|
+
"dev": "tsc --watch",
|
|
29
|
+
"lint": "eslint nodes credentials --ext .ts",
|
|
30
|
+
"lintfix": "eslint nodes credentials --ext .ts --fix",
|
|
31
|
+
"prepublishOnly": "npm run build && npm run lint"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist"
|
|
35
|
+
],
|
|
36
|
+
"n8n": {
|
|
37
|
+
"n8nNodesApiVersion": 1,
|
|
38
|
+
"credentials": [
|
|
39
|
+
"dist/credentials/ClientifyMcpApi.credentials.js"
|
|
40
|
+
],
|
|
41
|
+
"nodes": [
|
|
42
|
+
"dist/nodes/ClientifyMcp/ClientifyMcpDynamic.node.js"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/node": "^20.0.0",
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
48
|
+
"@typescript-eslint/parser": "^5.45.0",
|
|
49
|
+
"eslint": "^8.28.0",
|
|
50
|
+
"eslint-config-prettier": "^8.5.0",
|
|
51
|
+
"eslint-plugin-n8n-nodes-base": "^1.11.0",
|
|
52
|
+
"prettier": "^2.8.0",
|
|
53
|
+
"typescript": "^4.9.3"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"n8n-workflow": "*"
|
|
57
|
+
}
|
|
58
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-clientify",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "N8N node for Clientify CRM integration",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-node",
|
|
7
|
+
"n8n-community-node-package",
|
|
8
|
+
"clientify",
|
|
9
|
+
"crm"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"homepage": "https://github.com/contacteitor/clientify_ai/tree/main/n8n/custom-nodes/n8n-nodes-clientify#readme",
|
|
13
|
+
"author": {
|
|
14
|
+
"name": "Clientify",
|
|
15
|
+
"email": "sebastianonearth@gmail.com"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/contacteitor/clientify_ai.git",
|
|
20
|
+
"directory": "n8n/custom-nodes/n8n-nodes-clientify"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.15"
|
|
24
|
+
},
|
|
25
|
+
"main": "index.js",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "rm -rf dist && tsc && cp package.json dist/ && cp nodes/ClientifyMcp/*.png dist/nodes/ClientifyMcp/ 2>/dev/null || true && cp nodes/ClientifyMcp/*.svg dist/nodes/ClientifyMcp/ 2>/dev/null || true",
|
|
28
|
+
"dev": "tsc --watch",
|
|
29
|
+
"lint": "eslint nodes credentials --ext .ts",
|
|
30
|
+
"lintfix": "eslint nodes credentials --ext .ts --fix",
|
|
31
|
+
"prepublishOnly": "npm run build && npm run lint"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist"
|
|
35
|
+
],
|
|
36
|
+
"n8n": {
|
|
37
|
+
"n8nNodesApiVersion": 1,
|
|
38
|
+
"credentials": [
|
|
39
|
+
"dist/credentials/ClientifyMcpApi.credentials.js"
|
|
40
|
+
],
|
|
41
|
+
"nodes": [
|
|
42
|
+
"dist/nodes/ClientifyMcp/ClientifyMcpDynamic.node.js"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/node": "^20.0.0",
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
48
|
+
"@typescript-eslint/parser": "^5.45.0",
|
|
49
|
+
"eslint": "^8.28.0",
|
|
50
|
+
"eslint-config-prettier": "^8.5.0",
|
|
51
|
+
"eslint-plugin-n8n-nodes-base": "^1.11.0",
|
|
52
|
+
"prettier": "^2.8.0",
|
|
53
|
+
"typescript": "^4.9.3"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"n8n-workflow": "*"
|
|
57
|
+
}
|
|
58
|
+
}
|