n8n-nodes-aivencerealtycrm 1.8.0 → 1.8.1

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.
@@ -1839,7 +1839,8 @@ class AivenceRealty {
1839
1839
  // Amenidades
1840
1840
  const amenidades = this.getNodeParameter('searchAmenidades', i, '');
1841
1841
  if (amenidades && amenidades !== '' && amenidades !== 'NULL') {
1842
- qs.amenidades = amenidades;
1842
+ // Convertir string "pileta,balcon,cochera" a array ["pileta", "balcon", "cochera"]
1843
+ qs.amenities = amenidades.split(',').map(a => a.trim()).filter(a => a);
1843
1844
  }
1844
1845
  responseData = await this.helpers.httpRequest({
1845
1846
  method: 'GET',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-aivencerealtycrm",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "Nodo n8n para integrar el CRM inmobiliario AivenceRealty",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",