n8n-nodes-hamkar 3.0.0 → 3.0.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.
|
@@ -220,47 +220,30 @@ class Hamkar {
|
|
|
220
220
|
// Fields for Contact Get Many operation
|
|
221
221
|
{
|
|
222
222
|
displayName: 'Return All',
|
|
223
|
-
name: '
|
|
223
|
+
name: 'contactReturnAll',
|
|
224
224
|
type: 'boolean',
|
|
225
225
|
displayOptions: {
|
|
226
|
-
show: {
|
|
227
|
-
resource: ['contact'],
|
|
228
|
-
operation: ['getMany'],
|
|
229
|
-
},
|
|
226
|
+
show: { resource: ['contact'], operation: ['getMany'] },
|
|
230
227
|
},
|
|
231
228
|
default: false,
|
|
232
|
-
description: 'Whether to return all results or only up to a given limit',
|
|
233
229
|
},
|
|
234
230
|
{
|
|
235
231
|
displayName: 'Limit',
|
|
236
|
-
name: '
|
|
232
|
+
name: 'contactLimit',
|
|
237
233
|
type: 'number',
|
|
238
234
|
displayOptions: {
|
|
239
|
-
show: {
|
|
240
|
-
resource: ['contact'],
|
|
241
|
-
operation: ['getMany'],
|
|
242
|
-
returnAll: [false],
|
|
243
|
-
},
|
|
244
|
-
},
|
|
245
|
-
typeOptions: {
|
|
246
|
-
minValue: 1,
|
|
247
|
-
maxValue: 100,
|
|
235
|
+
show: { resource: ['contact'], operation: ['getMany'], contactReturnAll: [false] },
|
|
248
236
|
},
|
|
249
237
|
default: 50,
|
|
250
|
-
description: 'Max number of results to return',
|
|
251
238
|
},
|
|
252
239
|
{
|
|
253
240
|
displayName: 'Search Query',
|
|
254
|
-
name: '
|
|
241
|
+
name: 'contactSearch',
|
|
255
242
|
type: 'string',
|
|
256
243
|
displayOptions: {
|
|
257
|
-
show: {
|
|
258
|
-
resource: ['contact'],
|
|
259
|
-
operation: ['getMany'],
|
|
260
|
-
},
|
|
244
|
+
show: { resource: ['contact'], operation: ['getMany'] },
|
|
261
245
|
},
|
|
262
246
|
default: '',
|
|
263
|
-
description: 'Search query to filter contacts (name, phone_number, telephone_number)',
|
|
264
247
|
},
|
|
265
248
|
// =============================================
|
|
266
249
|
// Record Fields
|