@disruptive-learning/n8n-nodes-gigstack 1.0.2 → 1.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/README.md CHANGED
@@ -9,8 +9,7 @@ This is a community node for [n8n](https://n8n.io/) that integrates with the [Gi
9
9
  [Credentials](#credentials)
10
10
  [Compatibility](#compatibility)
11
11
  [Resources](#resources)
12
- [Version history](#version-history)
13
- [Security](#security)
12
+ [Version history](#version-history)
14
13
 
15
14
  ## Installation
16
15
 
@@ -59,16 +58,8 @@ This node has been tested with n8n version 0.214.0 and Gigstack API v1.
59
58
  - [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
60
59
  - [Gigstack API documentation](https://docs.gigstack.com)
61
60
 
62
- ## Security
63
-
64
- > **Note**: This package has some vulnerabilities in its development dependencies. These vulnerabilities are only present during development and do not affect the published package that users install. The production dependencies are kept up-to-date and secure.
65
-
66
61
  ## Version history
67
62
 
68
- ### 1.1.1
69
-
70
- - [Add description of changes in this version]
71
-
72
63
  ### 1.1.0
73
64
 
74
65
  - Added Invoice resource with Create operation
@@ -54,6 +54,12 @@ class Gigstack {
54
54
  },
55
55
  },
56
56
  options: [
57
+ {
58
+ name: "Create",
59
+ value: "create",
60
+ description: "Create a new payment",
61
+ action: "Create a payment",
62
+ },
57
63
  {
58
64
  name: "Get",
59
65
  value: "get",
@@ -61,7 +67,7 @@ class Gigstack {
61
67
  action: "Get a payment",
62
68
  },
63
69
  {
64
- name: "Register or request",
70
+ name: "Register",
65
71
  value: "register",
66
72
  description: "Register a new payment",
67
73
  action: "Register a payment",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@disruptive-learning/n8n-nodes-gigstack",
3
- "version": "1.0.2",
3
+ "version": "1.1.0",
4
4
  "description": "n8n node for Gigstack API integration to manage payments and invoices",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -27,10 +27,7 @@
27
27
  "format": "prettier nodes credentials --write",
28
28
  "lint": "echo 'Linting skipped'",
29
29
  "lintfix": "echo 'Linting skipped'",
30
- "prepublishOnly": "npm run build",
31
- "test": "jest",
32
- "test:watch": "jest --watch",
33
- "test:coverage": "jest --coverage"
30
+ "prepublishOnly": "npm run build"
34
31
  },
35
32
  "files": [
36
33
  "dist"
@@ -46,28 +43,17 @@
46
43
  },
47
44
  "devDependencies": {
48
45
  "@types/express": "^4.17.17",
49
- "@types/jest": "^29.5.14",
50
46
  "@types/request-promise-native": "^1.0.18",
51
47
  "@typescript-eslint/parser": "^5.0.1",
52
48
  "eslint": "^8.57.1",
53
49
  "eslint-plugin-n8n-nodes-base": "^1.0.0",
54
50
  "gulp": "^4.0.2",
55
- "jest": "^29.7.0",
56
51
  "n8n-core": "^0.125.0",
57
52
  "n8n-workflow": "^0.107.0",
58
53
  "prettier": "^2.3.2",
59
- "ts-jest": "^29.2.6",
60
54
  "typescript": "~4.8.4"
61
55
  },
62
56
  "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"
57
+ "axios": "^1.3.4"
72
58
  }
73
59
  }