n8n-nodes-exact-online 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.md +64 -0
- package/dist/credentials/ExactOnline.credentials.d.ts +8 -0
- package/dist/credentials/ExactOnline.credentials.js +95 -0
- package/dist/credentials/ExactOnline.credentials.js.map +1 -0
- package/dist/credentials/ExactOnlineApiOAuth2Api.credentials.d.ts +8 -0
- package/dist/credentials/ExactOnlineApiOAuth2Api.credentials.js +95 -0
- package/dist/credentials/ExactOnlineApiOAuth2Api.credentials.js.map +1 -0
- package/dist/credentials/ExactOnlineDE.credentials.d.ts +8 -0
- package/dist/credentials/ExactOnlineDE.credentials.js +53 -0
- package/dist/credentials/ExactOnlineDE.credentials.js.map +1 -0
- package/dist/credentials/exactOnline.svg +1080 -0
- package/dist/nodes/ExactOnline/ExactOnline.node.d.ts +38 -0
- package/dist/nodes/ExactOnline/ExactOnline.node.js +524 -0
- package/dist/nodes/ExactOnline/ExactOnline.node.js.map +1 -0
- package/dist/nodes/ExactOnline/FieldDescription.d.ts +15 -0
- package/dist/nodes/ExactOnline/FieldDescription.js +1182 -0
- package/dist/nodes/ExactOnline/FieldDescription.js.map +1 -0
- package/dist/nodes/ExactOnline/GenericFunctions.d.ts +84 -0
- package/dist/nodes/ExactOnline/GenericFunctions.js +120 -0
- package/dist/nodes/ExactOnline/GenericFunctions.js.map +1 -0
- package/dist/nodes/ExactOnline/endpointDescription.d.ts +16 -0
- package/dist/nodes/ExactOnline/endpointDescription.js +188 -0
- package/dist/nodes/ExactOnline/endpointDescription.js.map +1 -0
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.d.ts +14 -0
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.js +1181 -0
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.js.map +1 -0
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.d.ts +9 -0
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.js +70 -0
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.js.map +1 -0
- package/dist/nodes/ExactOnline/exactOnline.svg +1080 -0
- package/dist/nodes/ExactOnline/fieldConfigArray.json +65123 -0
- package/dist/package.json +52 -0
- package/index.js +0 -0
- package/package.json +52 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
{
|
2
|
+
"name": "n8n-nodes-exact-online",
|
3
|
+
"version": "0.1.0",
|
4
|
+
"description": "Exact Online Community node for n8n",
|
5
|
+
"keywords": [
|
6
|
+
"n8n-community-node-package",
|
7
|
+
"n8n-node-athon"
|
8
|
+
],
|
9
|
+
"license": "MIT",
|
10
|
+
"homepage": "https://github.com/bramkn/ExactOnline",
|
11
|
+
"author": {
|
12
|
+
"name": "Bram Knuever",
|
13
|
+
"email": "bram@knitco.nl"
|
14
|
+
},
|
15
|
+
"repository": {
|
16
|
+
"type": "git",
|
17
|
+
"url": "https://github.com/bramkn/ExactOnline.git"
|
18
|
+
},
|
19
|
+
"main": "index.js",
|
20
|
+
"scripts": {
|
21
|
+
"build": "tsc && gulp build:icons",
|
22
|
+
"dev": "tsc --watch",
|
23
|
+
"format": "prettier nodes credentials --write",
|
24
|
+
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes credentials package.json",
|
25
|
+
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes credentials package.json --fix",
|
26
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
27
|
+
},
|
28
|
+
"files": [
|
29
|
+
"dist"
|
30
|
+
],
|
31
|
+
"n8n": {
|
32
|
+
"n8nNodesApiVersion": 1,
|
33
|
+
"credentials": [
|
34
|
+
"dist/credentials/ExactOnline.credentials.js"
|
35
|
+
],
|
36
|
+
"nodes": [
|
37
|
+
"dist/nodes/ExactOnline/ExactOnline.node.js"
|
38
|
+
]
|
39
|
+
},
|
40
|
+
"devDependencies": {
|
41
|
+
"@types/express": "^4.17.6",
|
42
|
+
"@types/request-promise-native": "~1.0.15",
|
43
|
+
"@typescript-eslint/parser": "^5.29.0",
|
44
|
+
"eslint-plugin-n8n-nodes-base": "^1.5.4",
|
45
|
+
"gulp": "^4.0.2",
|
46
|
+
"n8n-core": "^0.125.0",
|
47
|
+
"n8n-workflow": "^0.107.0",
|
48
|
+
"prettier": "^2.7.1",
|
49
|
+
"tslint": "^6.1.2",
|
50
|
+
"typescript": "~4.6.0"
|
51
|
+
}
|
52
|
+
}
|
package/index.js
ADDED
File without changes
|
package/package.json
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
{
|
2
|
+
"name": "n8n-nodes-exact-online",
|
3
|
+
"version": "0.1.0",
|
4
|
+
"description": "Exact Online Community node for n8n",
|
5
|
+
"keywords": [
|
6
|
+
"n8n-community-node-package",
|
7
|
+
"n8n-node-athon"
|
8
|
+
],
|
9
|
+
"license": "MIT",
|
10
|
+
"homepage": "https://github.com/bramkn/ExactOnline",
|
11
|
+
"author": {
|
12
|
+
"name": "Bram Knuever",
|
13
|
+
"email": "bram@knitco.nl"
|
14
|
+
},
|
15
|
+
"repository": {
|
16
|
+
"type": "git",
|
17
|
+
"url": "https://github.com/bramkn/ExactOnline.git"
|
18
|
+
},
|
19
|
+
"main": "index.js",
|
20
|
+
"scripts": {
|
21
|
+
"build": "tsc && gulp build:icons",
|
22
|
+
"dev": "tsc --watch",
|
23
|
+
"format": "prettier nodes credentials --write",
|
24
|
+
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes credentials package.json",
|
25
|
+
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes credentials package.json --fix",
|
26
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
27
|
+
},
|
28
|
+
"files": [
|
29
|
+
"dist"
|
30
|
+
],
|
31
|
+
"n8n": {
|
32
|
+
"n8nNodesApiVersion": 1,
|
33
|
+
"credentials": [
|
34
|
+
"dist/credentials/ExactOnline.credentials.js"
|
35
|
+
],
|
36
|
+
"nodes": [
|
37
|
+
"dist/nodes/ExactOnline/ExactOnline.node.js"
|
38
|
+
]
|
39
|
+
},
|
40
|
+
"devDependencies": {
|
41
|
+
"@types/express": "^4.17.6",
|
42
|
+
"@types/request-promise-native": "~1.0.15",
|
43
|
+
"@typescript-eslint/parser": "^5.29.0",
|
44
|
+
"eslint-plugin-n8n-nodes-base": "^1.5.4",
|
45
|
+
"gulp": "^4.0.2",
|
46
|
+
"n8n-core": "^0.125.0",
|
47
|
+
"n8n-workflow": "^0.107.0",
|
48
|
+
"prettier": "^2.7.1",
|
49
|
+
"tslint": "^6.1.2",
|
50
|
+
"typescript": "~4.6.0"
|
51
|
+
}
|
52
|
+
}
|