@disruptive-learning/n8n-nodes-gigstack 1.0.2
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 +81 -0
- package/dist/credentials/GigstackApi.credentials.d.ts +8 -0
- package/dist/credentials/GigstackApi.credentials.js +46 -0
- package/dist/nodes/Gigstack.node.d.ts +5 -0
- package/dist/nodes/Gigstack.node.js +1207 -0
- package/dist/nodes/gigstack.svg +4 -0
- package/package.json +73 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="303" height="303" viewBox="0 0 303 303" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="151.5" cy="151.5" r="151.5" fill="#044737"/>
|
|
3
|
+
<path d="M167.283 174.507C156.302 176.779 146.679 177.915 138.415 177.915H132.472C124.774 177.915 118.604 175.586 113.962 170.928C109.321 166.27 107 160.078 107 152.352V118.268C107 109.746 109.377 103.1 114.132 98.3282C119 93.4427 125.679 91 134.17 91H197V186.437C197 194.162 194.679 200.354 190.038 205.013C185.396 209.671 179.226 212 171.528 212C153.755 212 133.943 210.864 112.094 208.592V186.437C133.717 188.141 150.132 188.993 161.34 188.993C163.038 188.993 164.453 188.425 165.585 187.289C166.717 186.153 167.283 184.732 167.283 183.028V174.507ZM146.906 154.908C154.038 154.908 160.83 154.34 167.283 153.204V114.007H143.509C138.981 114.007 136.717 116.279 136.717 120.824V148.944C136.717 150.648 137.283 152.068 138.415 153.204C139.547 154.34 140.962 154.908 142.66 154.908H146.906Z" fill="#D0FEC8"/>
|
|
4
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@disruptive-learning/n8n-nodes-gigstack",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "n8n node for Gigstack API integration to manage payments and invoices",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"gigstack",
|
|
8
|
+
"payment",
|
|
9
|
+
"invoice",
|
|
10
|
+
"fintech"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://github.com/disruptive-learning/gigstack_n8n",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Gigstack",
|
|
16
|
+
"email": "support@gigstack.com",
|
|
17
|
+
"url": "https://gigstack.com"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/disruptive-learning/gigstack_n8n.git"
|
|
22
|
+
},
|
|
23
|
+
"main": "index.js",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc && gulp build:icons",
|
|
26
|
+
"dev": "tsc --watch",
|
|
27
|
+
"format": "prettier nodes credentials --write",
|
|
28
|
+
"lint": "echo 'Linting skipped'",
|
|
29
|
+
"lintfix": "echo 'Linting skipped'",
|
|
30
|
+
"prepublishOnly": "npm run build",
|
|
31
|
+
"test": "jest",
|
|
32
|
+
"test:watch": "jest --watch",
|
|
33
|
+
"test:coverage": "jest --coverage"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"n8n": {
|
|
39
|
+
"n8nNodesApiVersion": 1,
|
|
40
|
+
"credentials": [
|
|
41
|
+
"dist/credentials/GigstackApi.credentials.js"
|
|
42
|
+
],
|
|
43
|
+
"nodes": [
|
|
44
|
+
"dist/nodes/Gigstack.node.js"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/express": "^4.17.17",
|
|
49
|
+
"@types/jest": "^29.5.14",
|
|
50
|
+
"@types/request-promise-native": "^1.0.18",
|
|
51
|
+
"@typescript-eslint/parser": "^5.0.1",
|
|
52
|
+
"eslint": "^8.57.1",
|
|
53
|
+
"eslint-plugin-n8n-nodes-base": "^1.0.0",
|
|
54
|
+
"gulp": "^4.0.2",
|
|
55
|
+
"jest": "^29.7.0",
|
|
56
|
+
"n8n-core": "^0.125.0",
|
|
57
|
+
"n8n-workflow": "^0.107.0",
|
|
58
|
+
"prettier": "^2.3.2",
|
|
59
|
+
"ts-jest": "^29.2.6",
|
|
60
|
+
"typescript": "~4.8.4"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"axios": "^1.7.9"
|
|
64
|
+
},
|
|
65
|
+
"overrides": {
|
|
66
|
+
"crypto-js": "^4.2.0",
|
|
67
|
+
"file-type": "^18.7.0",
|
|
68
|
+
"lodash.set": "^4.3.2",
|
|
69
|
+
"xml2js": "^0.6.2",
|
|
70
|
+
"tough-cookie": "^4.1.3",
|
|
71
|
+
"request": "^2.88.2"
|
|
72
|
+
}
|
|
73
|
+
}
|