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.
Files changed (34) hide show
  1. package/LICENSE.md +64 -0
  2. package/dist/credentials/ExactOnline.credentials.d.ts +8 -0
  3. package/dist/credentials/ExactOnline.credentials.js +95 -0
  4. package/dist/credentials/ExactOnline.credentials.js.map +1 -0
  5. package/dist/credentials/ExactOnlineApiOAuth2Api.credentials.d.ts +8 -0
  6. package/dist/credentials/ExactOnlineApiOAuth2Api.credentials.js +95 -0
  7. package/dist/credentials/ExactOnlineApiOAuth2Api.credentials.js.map +1 -0
  8. package/dist/credentials/ExactOnlineDE.credentials.d.ts +8 -0
  9. package/dist/credentials/ExactOnlineDE.credentials.js +53 -0
  10. package/dist/credentials/ExactOnlineDE.credentials.js.map +1 -0
  11. package/dist/credentials/exactOnline.svg +1080 -0
  12. package/dist/nodes/ExactOnline/ExactOnline.node.d.ts +38 -0
  13. package/dist/nodes/ExactOnline/ExactOnline.node.js +524 -0
  14. package/dist/nodes/ExactOnline/ExactOnline.node.js.map +1 -0
  15. package/dist/nodes/ExactOnline/FieldDescription.d.ts +15 -0
  16. package/dist/nodes/ExactOnline/FieldDescription.js +1182 -0
  17. package/dist/nodes/ExactOnline/FieldDescription.js.map +1 -0
  18. package/dist/nodes/ExactOnline/GenericFunctions.d.ts +84 -0
  19. package/dist/nodes/ExactOnline/GenericFunctions.js +120 -0
  20. package/dist/nodes/ExactOnline/GenericFunctions.js.map +1 -0
  21. package/dist/nodes/ExactOnline/endpointDescription.d.ts +16 -0
  22. package/dist/nodes/ExactOnline/endpointDescription.js +188 -0
  23. package/dist/nodes/ExactOnline/endpointDescription.js.map +1 -0
  24. package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.d.ts +14 -0
  25. package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.js +1181 -0
  26. package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.js.map +1 -0
  27. package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.d.ts +9 -0
  28. package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.js +70 -0
  29. package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.js.map +1 -0
  30. package/dist/nodes/ExactOnline/exactOnline.svg +1080 -0
  31. package/dist/nodes/ExactOnline/fieldConfigArray.json +65123 -0
  32. package/dist/package.json +52 -0
  33. package/index.js +0 -0
  34. 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
+ }