n8n-nodes-quepasa-api-yurisilva_pro 2.2.1 → 2.3.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.
@@ -41,9 +41,12 @@ class QuePasaApi {
41
41
  request: {
42
42
  baseURL: '={{$credentials.baseUrl}}',
43
43
  url: '/info',
44
+ method: 'GET',
44
45
  headers: {
45
46
  'X-QUEPASA-TOKEN': '={{$credentials.token}}',
46
47
  },
48
+ skipSslCertificateValidation: true,
49
+ timeout: 10000,
47
50
  },
48
51
  };
49
52
  }
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
2
+ <circle cx="50" cy="50" r="45" fill="#25D366"/>
3
+ <text x="50" y="65" font-size="45" text-anchor="middle" fill="white" font-family="Arial, sans-serif" font-weight="bold">Q</text>
4
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-quepasa-api-yurisilva_pro",
3
- "version": "2.2.1",
3
+ "version": "2.3.0",
4
4
  "description": "Complete n8n integration for QuePasa WhatsApp API - 48 operations, multi-account support, 100% API v4 coverage",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -26,7 +26,7 @@
26
26
  "main": "index.js",
27
27
  "scripts": {
28
28
  "build": "tsc && npm run copy:assets",
29
- "copy:assets": "copyfiles -u 1 \"nodes/**/*.{png,svg,json}\" dist/ && cp credentials/*.svg dist/credentials/ 2>/dev/null || true",
29
+ "copy:assets": "copyfiles -u 1 \"nodes/**/*.{png,svg,json}\" dist/ && copyfiles -u 1 \"credentials/*.svg\" dist/credentials/ && node -e \"const fs=require('fs');const path=require('path');if(fs.existsSync('dist/QuePasa/quepasa.svg')){fs.mkdirSync('dist/nodes/QuePasa',{recursive:true});fs.copyFileSync('dist/QuePasa/quepasa.svg','dist/nodes/QuePasa/quepasa.svg');}\"",
30
30
  "dev": "tsc --watch",
31
31
  "format": "prettier --write \"**/*.{ts,json,md}\"",
32
32
  "lint": "eslint . --ext .ts",