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
|
-
|
|
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',
|