n8n-nodes-tiendanube 0.1.0 → 0.1.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.
@@ -32,7 +32,7 @@ class TiendanubeApi {
32
32
  type: 'generic',
33
33
  properties: {
34
34
  headers: {
35
- 'Authentication': '=Bearer {{$credentials.accessToken}}',
35
+ 'Authentication': '=bearer {{$credentials.accessToken}}',
36
36
  'User-Agent': 'n8n-tiendanube-node',
37
37
  'Content-Type': 'application/json',
38
38
  },
@@ -564,7 +564,7 @@ class Tiendanube {
564
564
  method,
565
565
  url: `${baseUrl}${endpoint}`,
566
566
  headers: {
567
- 'Authentication': `Bearer ${accessToken}`,
567
+ 'Authentication': `bearer ${accessToken}`,
568
568
  'User-Agent': 'n8n-tiendanube-node',
569
569
  'Content-Type': 'application/json',
570
570
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-tiendanube",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "n8n node for Tiendanube/Nuvemshop API integration",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -43,7 +43,7 @@
43
43
  "@types/node": "^18.16.0",
44
44
  "gulp": "^4.0.2",
45
45
  "n8n-workflow": "^1.0.0",
46
- "typescript": "^5.0.0"
46
+ "typescript": "^5.9.3"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "n8n-workflow": "*"