n8n-nodes-digitalsac 0.5.7 → 0.5.9

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.
@@ -935,10 +935,10 @@ class Digitalsac {
935
935
  break;
936
936
  case 'listKanbans':
937
937
  const userId = this.getNodeParameter('userId', i);
938
- url = `/typebot/listar_kanbans?userId=${userId}`;
938
+ url = `/typebot/listar_kanbans_v2?userId=${userId}`;
939
939
  break;
940
940
  case 'linkKanban':
941
- url = '/typebot/vincular_kanban';
941
+ url = '/typebot/vincular_kanban_v2';
942
942
  method = 'POST';
943
943
  try {
944
944
  body = JSON.parse(this.getNodeParameter('bodyData', i));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "n8n-nodes-digitalsac",
3
- "version": "0.5.7",
4
- "description": "Izing Pro Digitalsac",
3
+ "version": "0.5.9",
4
+ "description": "Izing Pro Digitalsac - Compatible with n8n v1.x",
5
5
  "keywords": [
6
6
  "n8n",
7
7
  "n8n-community-node-package"
@@ -28,7 +28,8 @@
28
28
  "files": [
29
29
  "dist",
30
30
  "index.ts",
31
- "nodes"
31
+ "nodes",
32
+ "credentials"
32
33
  ],
33
34
  "n8n": {
34
35
  "n8nNodesApiVersion": 1,
@@ -39,13 +40,16 @@
39
40
  "dist/nodes/Digitalsac/Digitalsac.node.js"
40
41
  ]
41
42
  },
43
+ "peerDependencies": {
44
+ "n8n-core": "^1.0.0",
45
+ "n8n-workflow": "^1.0.0"
46
+ },
42
47
  "devDependencies": {
43
48
  "@types/express": "^4.17.21",
44
49
  "@types/node": "^18.0.0",
45
50
  "@types/request-promise-native": "~1.0.15",
46
51
  "@typescript-eslint/parser": "~5.45",
47
52
  "eslint-plugin-n8n-nodes-base": "^1.16.3",
48
- "gulp": "^4.0.2",
49
53
  "n8n-core": "^1.0.0",
50
54
  "n8n-workflow": "^1.0.0",
51
55
  "prettier": "^2.8.8",
@@ -53,5 +57,8 @@
53
57
  },
54
58
  "dependencies": {
55
59
  "axios": "^1.9.0"
60
+ },
61
+ "engines": {
62
+ "n8n": "^1.0.0"
56
63
  }
57
64
  }