@disruptive-learning/n8n-nodes-gigstack 1.0.2 → 1.0.4
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.
- package/README.md +8 -0
- package/dist/nodes/Gigstack.node.js +2 -93
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,6 +65,14 @@ This node has been tested with n8n version 0.214.0 and Gigstack API v1.
|
|
|
65
65
|
|
|
66
66
|
## Version history
|
|
67
67
|
|
|
68
|
+
### 1.0.4
|
|
69
|
+
|
|
70
|
+
- Changed Payment Method field from dropdown to string input for direct value entry
|
|
71
|
+
|
|
72
|
+
### 1.0.3
|
|
73
|
+
|
|
74
|
+
- Enhanced Payment Method field to accept expressions, allowing dynamic values to be used
|
|
75
|
+
|
|
68
76
|
### 1.1.1
|
|
69
77
|
|
|
70
78
|
- [Add description of changes in this version]
|
|
@@ -142,8 +142,7 @@ class Gigstack {
|
|
|
142
142
|
{
|
|
143
143
|
displayName: "Payment Method",
|
|
144
144
|
name: "paymentMethod",
|
|
145
|
-
type: "
|
|
146
|
-
noDataExpression: true,
|
|
145
|
+
type: "string",
|
|
147
146
|
required: true,
|
|
148
147
|
displayOptions: {
|
|
149
148
|
show: {
|
|
@@ -151,98 +150,8 @@ class Gigstack {
|
|
|
151
150
|
resource: ["payment"],
|
|
152
151
|
},
|
|
153
152
|
},
|
|
154
|
-
options: [
|
|
155
|
-
{
|
|
156
|
-
name: "Efectivo (01)",
|
|
157
|
-
value: "01",
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
name: "Cheque nominativo (02)",
|
|
161
|
-
value: "02",
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
name: "Transferencia electrónica de fondos (03)",
|
|
165
|
-
value: "03",
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
name: "Tarjeta de crédito (04)",
|
|
169
|
-
value: "04",
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: "Monedero electrónico (05)",
|
|
173
|
-
value: "05",
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: "Dinero electrónico (06)",
|
|
177
|
-
value: "06",
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: "Vales de despensa (08)",
|
|
181
|
-
value: "08",
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
name: "Dación en pago (12)",
|
|
185
|
-
value: "12",
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
name: "Pago por subrogación (13)",
|
|
189
|
-
value: "13",
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
name: "Pago por consignación (14)",
|
|
193
|
-
value: "14",
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
name: "Condonación (15)",
|
|
197
|
-
value: "15",
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
name: "Compensación (17)",
|
|
201
|
-
value: "17",
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
name: "Novación (23)",
|
|
205
|
-
value: "23",
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
name: "Confusión (24)",
|
|
209
|
-
value: "24",
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
name: "Remisión de deuda (25)",
|
|
213
|
-
value: "25",
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
name: "Prescripción o caducidad (26)",
|
|
217
|
-
value: "26",
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
name: "A satisfacción del acreedor (27)",
|
|
221
|
-
value: "27",
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
name: "Tarjeta de débito (28)",
|
|
225
|
-
value: "28",
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
name: "Tarjeta de servicios (29)",
|
|
229
|
-
value: "29",
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
name: "Aplicación de anticipos (30)",
|
|
233
|
-
value: "30",
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
name: "Intermediario pagos (31)",
|
|
237
|
-
value: "31",
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
name: "Por definir (99)",
|
|
241
|
-
value: "99",
|
|
242
|
-
},
|
|
243
|
-
],
|
|
244
153
|
default: "01",
|
|
245
|
-
description: "Payment method code",
|
|
154
|
+
description: "Payment method code (e.g., 01 for cash, 03 for electronic transfer, etc.)",
|
|
246
155
|
},
|
|
247
156
|
{
|
|
248
157
|
displayName: "Automate Invoice On Complete",
|