n8n-nodes-exact-online 0.1.1 → 0.1.4
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/README.md +6 -6
- package/dist/package.json +2 -2
- package/package.json +2 -2
- package/dist/credentials/ExactOnline.credentials.d.ts +0 -8
- package/dist/credentials/ExactOnline.credentials.js +0 -95
- package/dist/credentials/ExactOnline.credentials.js.map +0 -1
- package/dist/credentials/ExactOnlineDE.credentials.d.ts +0 -8
- package/dist/credentials/ExactOnlineDE.credentials.js +0 -53
- package/dist/credentials/ExactOnlineDE.credentials.js.map +0 -1
- package/dist/nodes/ExactOnline/FieldDescription.d.ts +0 -15
- package/dist/nodes/ExactOnline/FieldDescription.js +0 -1182
- package/dist/nodes/ExactOnline/FieldDescription.js.map +0 -1
- package/dist/nodes/ExactOnline/endpointDescription.d.ts +0 -16
- package/dist/nodes/ExactOnline/endpointDescription.js +0 -188
- package/dist/nodes/ExactOnline/endpointDescription.js.map +0 -1
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.d.ts +0 -14
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.js +0 -1181
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/FinancialTransactionDescription.js.map +0 -1
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.d.ts +0 -9
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.js +0 -70
- package/dist/nodes/ExactOnline/endpointFieldsDescriptions/transactionLinesDescription.js.map +0 -1
package/README.md
CHANGED
@@ -67,12 +67,12 @@ All posible API requests were scraped from the Exact Online docs. This was used
|
|
67
67
|
|
68
68
|
## Using the scraper
|
69
69
|
|
70
|
-
You do not need an account for the scraper.
|
71
|
-
Paste the JSON into an n8n workflow.
|
72
|
-
Set the Github Authorization
|
73
|
-
The first time you might want to set the Github node to create the file.
|
74
|
-
Start
|
75
|
-
Done -> make sure to format the output file as this will improve the readability ;-)
|
70
|
+
- You do not need an account for the scraper.
|
71
|
+
- Paste the JSON into an n8n workflow.
|
72
|
+
- Set the Github Authorization
|
73
|
+
- The first time you might want to set the Github node to create the file.
|
74
|
+
- Start
|
75
|
+
- Done -> make sure to format the output file as this will improve the readability ;-)
|
76
76
|
|
77
77
|
## License
|
78
78
|
|
package/dist/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "n8n-nodes-exact-online",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.4",
|
4
4
|
"description": "Exact Online Community node for n8n",
|
5
5
|
"keywords": [
|
6
6
|
"n8n-community-node-package",
|
@@ -31,7 +31,7 @@
|
|
31
31
|
"n8n": {
|
32
32
|
"n8nNodesApiVersion": 1,
|
33
33
|
"credentials": [
|
34
|
-
"dist/credentials/
|
34
|
+
"dist/credentials/ExactOnlineApiOAuth2Api.credentials.js"
|
35
35
|
],
|
36
36
|
"nodes": [
|
37
37
|
"dist/nodes/ExactOnline/ExactOnline.node.js"
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "n8n-nodes-exact-online",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.4",
|
4
4
|
"description": "Exact Online Community node for n8n",
|
5
5
|
"keywords": [
|
6
6
|
"n8n-community-node-package",
|
@@ -31,7 +31,7 @@
|
|
31
31
|
"n8n": {
|
32
32
|
"n8nNodesApiVersion": 1,
|
33
33
|
"credentials": [
|
34
|
-
"dist/credentials/
|
34
|
+
"dist/credentials/ExactOnlineApiOAuth2Api.credentials.js"
|
35
35
|
],
|
36
36
|
"nodes": [
|
37
37
|
"dist/nodes/ExactOnline/ExactOnline.node.js"
|
@@ -1,95 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.ExactOnlineApi = void 0;
|
4
|
-
class ExactOnlineApi {
|
5
|
-
constructor() {
|
6
|
-
this.name = 'exactOnlineApi';
|
7
|
-
this.extends = ['oAuth2Api'];
|
8
|
-
this.icon = 'file:exactOnline.svg';
|
9
|
-
this.displayName = 'Exact Online API';
|
10
|
-
this.properties = [
|
11
|
-
{
|
12
|
-
displayName: 'Grant Type',
|
13
|
-
name: 'grantType',
|
14
|
-
type: 'hidden',
|
15
|
-
default: 'authorizationCode',
|
16
|
-
},
|
17
|
-
{
|
18
|
-
displayName: 'Authorization URL',
|
19
|
-
name: 'authUrl',
|
20
|
-
type: 'hidden',
|
21
|
-
default: '={{$self["url"]}}/api/oauth2/auth',
|
22
|
-
required: true,
|
23
|
-
},
|
24
|
-
{
|
25
|
-
displayName: 'Access Token URL',
|
26
|
-
name: 'accessTokenUrl',
|
27
|
-
type: 'hidden',
|
28
|
-
default: '={{$self["url"]}}/api/oauth2/token',
|
29
|
-
required: true,
|
30
|
-
},
|
31
|
-
{
|
32
|
-
displayName: 'Scope',
|
33
|
-
name: 'scope',
|
34
|
-
type: 'hidden',
|
35
|
-
default: '',
|
36
|
-
},
|
37
|
-
{
|
38
|
-
displayName: 'Auth URI Query Parameters',
|
39
|
-
name: 'authQueryParameters',
|
40
|
-
type: 'hidden',
|
41
|
-
default: '',
|
42
|
-
},
|
43
|
-
{
|
44
|
-
displayName: 'Authentication',
|
45
|
-
name: 'authentication',
|
46
|
-
type: 'hidden',
|
47
|
-
default: 'body',
|
48
|
-
},
|
49
|
-
{
|
50
|
-
displayName: 'Country',
|
51
|
-
name: 'country',
|
52
|
-
type: 'options',
|
53
|
-
default: 'com',
|
54
|
-
options: [
|
55
|
-
{
|
56
|
-
name: 'Belguim',
|
57
|
-
value: 'be',
|
58
|
-
},
|
59
|
-
{
|
60
|
-
name: 'France',
|
61
|
-
value: 'fr',
|
62
|
-
},
|
63
|
-
{
|
64
|
-
name: 'Germany',
|
65
|
-
value: 'de',
|
66
|
-
},
|
67
|
-
{
|
68
|
-
name: 'Spain',
|
69
|
-
value: 'es',
|
70
|
-
},
|
71
|
-
{
|
72
|
-
name: 'The Netherlands',
|
73
|
-
value: 'nl',
|
74
|
-
},
|
75
|
-
{
|
76
|
-
name: 'United Kingdom',
|
77
|
-
value: 'co.uk',
|
78
|
-
},
|
79
|
-
{
|
80
|
-
name: 'United States of America',
|
81
|
-
value: 'com',
|
82
|
-
},
|
83
|
-
],
|
84
|
-
},
|
85
|
-
{
|
86
|
-
displayName: 'URL',
|
87
|
-
name: 'url',
|
88
|
-
type: 'hidden',
|
89
|
-
default: '=https://start.exactonline.{{$self["country"]}}',
|
90
|
-
},
|
91
|
-
];
|
92
|
-
}
|
93
|
-
}
|
94
|
-
exports.ExactOnlineApi = ExactOnlineApi;
|
95
|
-
//# sourceMappingURL=ExactOnline.credentials.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"ExactOnline.credentials.js","sourceRoot":"","sources":["../../credentials/ExactOnline.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,cAAc;IAA3B;QACC,SAAI,GAAG,gBAAgB,CAAC;QACxB,YAAO,GAAG,CAAC,WAAW,CAAC,CAAC;QACxB,SAAI,GAAG,sBAAsB,CAAC;QAC9B,gBAAW,GAAG,kBAAkB,CAAC;QACjC,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,mBAAmB;aAC5B;YACD;gBACC,WAAW,EAAE,mBAAmB;gBAChC,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,mCAAmC;gBAC5C,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,kBAAkB;gBAC/B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,oCAAoC;gBAC7C,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,2BAA2B;gBACxC,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,gBAAgB;gBAC7B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,MAAM;aACf;YACD;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,SAAS;wBACf,KAAK,EAAE,IAAI;qBACZ;oBACD;wBACE,IAAI,EAAE,QAAQ;wBACd,KAAK,EAAE,IAAI;qBACZ;oBACD;wBACE,IAAI,EAAE,SAAS;wBACf,KAAK,EAAE,IAAI;qBACZ;oBACD;wBACE,IAAI,EAAE,OAAO;wBACb,KAAK,EAAE,IAAI;qBACZ;oBACD;wBACE,IAAI,EAAE,iBAAiB;wBACvB,KAAK,EAAE,IAAI;qBACZ;oBACD;wBACE,IAAI,EAAE,gBAAgB;wBACtB,KAAK,EAAE,OAAO;qBACf;oBACD;wBACE,IAAI,EAAE,0BAA0B;wBAChC,KAAK,EAAE,KAAK;qBACb;iBACF;aACF;YACD;gBACE,WAAW,EAAE,KAAK;gBAClB,IAAI,EAAE,KAAK;gBACX,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,iDAAiD;aAC3D;SACA,CAAC;IAEH,CAAC;CAAA;AAxFD,wCAwFC"}
|
@@ -1,53 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.ExactOnlineDE = void 0;
|
4
|
-
class ExactOnlineDE {
|
5
|
-
constructor() {
|
6
|
-
this.name = 'exactOnlineDE';
|
7
|
-
this.extends = ['oAuth2Api'];
|
8
|
-
this.icon = 'file:exactOnline.svg';
|
9
|
-
this.displayName = 'Exact Online API';
|
10
|
-
this.properties = [
|
11
|
-
{
|
12
|
-
displayName: 'Grant Type',
|
13
|
-
name: 'grantType',
|
14
|
-
type: 'hidden',
|
15
|
-
default: 'authorizationCode',
|
16
|
-
},
|
17
|
-
{
|
18
|
-
displayName: 'Authorization URL',
|
19
|
-
name: 'authUrl',
|
20
|
-
type: 'hidden',
|
21
|
-
default: 'https://start.exactonline.de/api/oauth2/auth',
|
22
|
-
required: true,
|
23
|
-
},
|
24
|
-
{
|
25
|
-
displayName: 'Access Token URL',
|
26
|
-
name: 'accessTokenUrl',
|
27
|
-
type: 'hidden',
|
28
|
-
default: 'https://start.exactonline.de/api/oauth2/token',
|
29
|
-
required: true,
|
30
|
-
},
|
31
|
-
{
|
32
|
-
displayName: 'Scope',
|
33
|
-
name: 'scope',
|
34
|
-
type: 'hidden',
|
35
|
-
default: '',
|
36
|
-
},
|
37
|
-
{
|
38
|
-
displayName: 'Auth URI Query Parameters',
|
39
|
-
name: 'authQueryParameters',
|
40
|
-
type: 'hidden',
|
41
|
-
default: '',
|
42
|
-
},
|
43
|
-
{
|
44
|
-
displayName: 'Authentication',
|
45
|
-
name: 'authentication',
|
46
|
-
type: 'hidden',
|
47
|
-
default: 'body',
|
48
|
-
},
|
49
|
-
];
|
50
|
-
}
|
51
|
-
}
|
52
|
-
exports.ExactOnlineDE = ExactOnlineDE;
|
53
|
-
//# sourceMappingURL=ExactOnlineDE.credentials.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"ExactOnlineDE.credentials.js","sourceRoot":"","sources":["../../credentials/ExactOnlineDE.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,aAAa;IAA1B;QACC,SAAI,GAAG,eAAe,CAAC;QACvB,YAAO,GAAG,CAAC,WAAW,CAAC,CAAC;QACxB,SAAI,GAAG,sBAAsB,CAAC;QAC9B,gBAAW,GAAG,kBAAkB,CAAC;QACjC,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,mBAAmB;aAC5B;YACD;gBACC,WAAW,EAAE,mBAAmB;gBAChC,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,8CAA8C;gBACvD,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,kBAAkB;gBAC/B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,+CAA+C;gBACxD,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,2BAA2B;gBACxC,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,gBAAgB;gBAC7B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,MAAM;aACf;SACD,CAAC;IAEH,CAAC;CAAA;AA9CD,sCA8CC"}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
export declare const fieldsFinancialTransaction: {
|
2
|
-
endpoint: string;
|
3
|
-
fields: ({
|
4
|
-
displayName: string;
|
5
|
-
name: string;
|
6
|
-
type: string;
|
7
|
-
description: string;
|
8
|
-
} | {
|
9
|
-
displayName: string;
|
10
|
-
name: string;
|
11
|
-
description: string;
|
12
|
-
type?: undefined;
|
13
|
-
})[];
|
14
|
-
}[];
|
15
|
-
export declare const fieldsCRM: never[];
|