n8n-nodes-digitalsac 0.5.8 → 0.6.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
@@ -2,6 +2,17 @@
2
2
 
3
3
  Este pacote adiciona um nó personalizado ao n8n para interagir com a API do Digitalsac Izing Pro.
4
4
 
5
+ ## ✅ Versão para n8n v1.x
6
+
7
+ **Esta é a versão 0.6.0, compatível com n8n v1.x**
8
+
9
+ Se você usa **n8n v2.x**, instale a versão correta:
10
+ ```bash
11
+ npm install n8n-nodes-digitalsac@next
12
+ ```
13
+
14
+ ---
15
+
5
16
  ## Funcionalidades
6
17
 
7
18
  - Validar número de WhatsApp
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "n8n-nodes-digitalsac",
3
- "version": "0.5.8",
4
- "description": "Izing Pro Digitalsac",
3
+ "version": "0.6.0",
4
+ "description": "Izing Pro Digitalsac - Compatible with n8n v1.x",
5
5
  "keywords": [
6
6
  "n8n",
7
7
  "n8n-community-node-package"
@@ -27,8 +27,7 @@
27
27
  },
28
28
  "files": [
29
29
  "dist",
30
- "index.ts",
31
- "nodes"
30
+ "README.md"
32
31
  ],
33
32
  "n8n": {
34
33
  "n8nNodesApiVersion": 1,
@@ -39,13 +38,16 @@
39
38
  "dist/nodes/Digitalsac/Digitalsac.node.js"
40
39
  ]
41
40
  },
41
+ "peerDependencies": {
42
+ "n8n-core": "^1.0.0",
43
+ "n8n-workflow": "^1.0.0"
44
+ },
42
45
  "devDependencies": {
43
46
  "@types/express": "^4.17.21",
44
47
  "@types/node": "^18.0.0",
45
48
  "@types/request-promise-native": "~1.0.15",
46
49
  "@typescript-eslint/parser": "~5.45",
47
50
  "eslint-plugin-n8n-nodes-base": "^1.16.3",
48
- "gulp": "^4.0.2",
49
51
  "n8n-core": "^1.0.0",
50
52
  "n8n-workflow": "^1.0.0",
51
53
  "prettier": "^2.8.8",
@@ -53,5 +55,8 @@
53
55
  },
54
56
  "dependencies": {
55
57
  "axios": "^1.9.0"
58
+ },
59
+ "engines": {
60
+ "n8n": "^1.0.0"
56
61
  }
57
62
  }