n8n-nodes-leadtime 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 +22 -0
- package/README.md +499 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/credentials/LeadtimeApi.credentials.d.ts +10 -0
- package/dist/credentials/LeadtimeApi.credentials.d.ts.map +1 -0
- package/dist/credentials/LeadtimeApi.credentials.js +39 -0
- package/dist/nodes/Leadtime/Leadtime.node.d.ts +22 -0
- package/dist/nodes/Leadtime/Leadtime.node.d.ts.map +1 -0
- package/dist/nodes/Leadtime/Leadtime.node.js +13475 -0
- package/dist/nodes/Leadtime/leadtime.svg +4 -0
- package/package.json +70 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M57 30.5C57 45.6878 44.6878 58 29.5 58C14.3122 58 2 45.6878 2 30.5C2 15.3122 14.3122 3 29.5 3C44.6878 3 57 15.3122 57 30.5ZM13.825 30.5C13.825 39.1571 20.8429 46.175 29.5 46.175C38.1571 46.175 45.175 39.1571 45.175 30.5C45.175 21.8429 38.1571 14.825 29.5 14.825C20.8429 14.825 13.825 21.8429 13.825 30.5Z" fill="#FCD2BF"/>
|
|
3
|
+
<path d="M57 30.5C57 36.2462 55.2 41.848 51.8529 46.5187C48.5057 51.1894 43.7796 54.6943 38.3382 56.541C32.8969 58.3878 27.0137 58.4837 21.5151 56.8152C16.0165 55.1468 11.1786 51.7978 7.68103 47.2387C4.18345 42.6795 2.20187 37.1393 2.01461 31.3962C1.82735 25.653 3.44382 19.9955 6.63698 15.2182C9.83015 10.4409 14.4396 6.78392 19.8178 4.76081C25.1961 2.7377 31.073 2.45014 36.6231 3.93853L33.5602 15.36C30.3966 14.5116 27.0468 14.6755 23.9812 15.8287C20.9156 16.9818 18.2882 19.0663 16.4681 21.7894C14.648 24.5124 13.7266 27.7372 13.8333 31.0108C13.9401 34.2844 15.0696 37.4423 17.0632 40.041C19.0568 42.6397 21.8144 44.5487 24.9486 45.4997C28.0828 46.4507 31.4362 46.3961 34.5378 45.3434C37.6393 44.2907 40.3333 42.293 42.2411 39.6307C44.149 36.9684 45.175 33.7753 45.175 30.5L57 30.5Z" fill="#F44900"/>
|
|
4
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-leadtime",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "n8n community node for the Leadtime ERP Public API - Project management, time tracking, billing, and more for digital service companies",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"n8n",
|
|
8
|
+
"leadtime",
|
|
9
|
+
"erp",
|
|
10
|
+
"project-management",
|
|
11
|
+
"time-tracking",
|
|
12
|
+
"billing",
|
|
13
|
+
"invoicing",
|
|
14
|
+
"workflow-automation",
|
|
15
|
+
"crm"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"homepage": "https://github.com/LukasEbner/n8n-nodes-leadtime#readme",
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "Lukas Ebner",
|
|
21
|
+
"email": "lukas@leadtime.de"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/LukasEbner/n8n-nodes-leadtime.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/LukasEbner/n8n-nodes-leadtime/issues"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18.0.0"
|
|
32
|
+
},
|
|
33
|
+
"packageManager": "npm@10.8.1",
|
|
34
|
+
"main": "dist/index.js",
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "tsc",
|
|
37
|
+
"dev": "tsc --watch",
|
|
38
|
+
"format": "prettier credentials nodes --write",
|
|
39
|
+
"lint": "eslint credentials/**/*.ts nodes/**/*.ts",
|
|
40
|
+
"lintfix": "eslint credentials/**/*.ts nodes/**/*.ts --fix",
|
|
41
|
+
"prepublishOnly": "npm run build"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist",
|
|
45
|
+
"README.md",
|
|
46
|
+
"LICENSE"
|
|
47
|
+
],
|
|
48
|
+
"n8n": {
|
|
49
|
+
"n8nNodesApiVersion": 1,
|
|
50
|
+
"credentials": [
|
|
51
|
+
"dist/credentials/LeadtimeApi.credentials.js"
|
|
52
|
+
],
|
|
53
|
+
"nodes": [
|
|
54
|
+
"dist/nodes/Leadtime/Leadtime.node.js"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@typescript-eslint/parser": "^7.15.0",
|
|
59
|
+
"eslint": "^8.56.0",
|
|
60
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.1",
|
|
61
|
+
"n8n-workflow": "^1.64.0",
|
|
62
|
+
"prettier": "^3.3.2",
|
|
63
|
+
"typescript": "^5.5.3"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"n8n-workflow": ">=1.0.0"
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {}
|
|
69
|
+
}
|
|
70
|
+
|