n8n-nodes-hamkar 3.0.2 → 3.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.
@@ -131,8 +131,7 @@ class Hamkar {
131
131
  },
132
132
  },
133
133
  default: '',
134
- required: true,
135
- description: 'Contact name',
134
+ description: 'Contact name (required)',
136
135
  },
137
136
  {
138
137
  displayName: 'Phone Number',
@@ -146,8 +145,7 @@ class Hamkar {
146
145
  },
147
146
  default: '',
148
147
  placeholder: '09123456789',
149
- required: true,
150
- description: 'Contact mobile phone number',
148
+ description: 'Contact mobile phone number (required)',
151
149
  },
152
150
  {
153
151
  displayName: 'Telephone Number',
@@ -207,7 +205,6 @@ class Hamkar {
207
205
  displayName: 'Contact ID',
208
206
  name: 'contactId',
209
207
  type: 'string',
210
- required: true,
211
208
  displayOptions: {
212
209
  show: {
213
210
  resource: ['contact'],
@@ -215,7 +212,7 @@ class Hamkar {
215
212
  },
216
213
  },
217
214
  default: '',
218
- description: 'ID of the contact to update or delete',
215
+ description: 'ID of the contact to update or delete (required)',
219
216
  },
220
217
  // Fields for Contact Get Many operation
221
218
  {
@@ -253,7 +250,6 @@ class Hamkar {
253
250
  displayName: 'Tag',
254
251
  name: 'tag',
255
252
  type: 'string',
256
- required: true,
257
253
  displayOptions: {
258
254
  show: {
259
255
  resource: ['record'],
@@ -261,13 +257,12 @@ class Hamkar {
261
257
  },
262
258
  },
263
259
  default: '',
264
- description: 'Status title/tag for the record',
260
+ description: 'Status title/tag for the record (required)',
265
261
  },
266
262
  {
267
263
  displayName: 'Topic',
268
264
  name: 'topic',
269
265
  type: 'string',
270
- required: true,
271
266
  displayOptions: {
272
267
  show: {
273
268
  resource: ['record'],
@@ -275,13 +270,12 @@ class Hamkar {
275
270
  },
276
271
  },
277
272
  default: '',
278
- description: 'Topic title for the record',
273
+ description: 'Topic title for the record (required)',
279
274
  },
280
275
  {
281
276
  displayName: 'Due Date',
282
277
  name: 'dueDate',
283
278
  type: 'string',
284
- required: true,
285
279
  displayOptions: {
286
280
  show: {
287
281
  resource: ['record'],
@@ -290,13 +284,12 @@ class Hamkar {
290
284
  },
291
285
  default: '',
292
286
  placeholder: '2025-03-10',
293
- description: 'Due date in YYYY-MM-DD format',
287
+ description: 'Due date in YYYY-MM-DD format (required)',
294
288
  },
295
289
  {
296
290
  displayName: 'Contact',
297
291
  name: 'contact',
298
292
  type: 'collection',
299
- required: true,
300
293
  placeholder: 'Add Contact Field',
301
294
  displayOptions: {
302
295
  show: {
@@ -305,22 +298,21 @@ class Hamkar {
305
298
  },
306
299
  },
307
300
  default: {},
301
+ description: 'Contact information (required)',
308
302
  options: [
309
303
  {
310
304
  displayName: 'Name',
311
305
  name: 'name',
312
306
  type: 'string',
313
307
  default: '',
314
- required: true,
315
- description: 'Contact name',
308
+ description: 'Contact name (required)',
316
309
  },
317
310
  {
318
311
  displayName: 'Phone Number',
319
312
  name: 'phone_number',
320
313
  type: 'string',
321
314
  default: '',
322
- required: true,
323
- description: 'Contact phone number',
315
+ description: 'Contact phone number (required)',
324
316
  },
325
317
  {
326
318
  displayName: 'Telephone Number',
@@ -365,7 +357,6 @@ class Hamkar {
365
357
  typeOptions: {
366
358
  multipleValues: true,
367
359
  },
368
- required: true,
369
360
  displayOptions: {
370
361
  show: {
371
362
  resource: ['record'],
@@ -374,6 +365,7 @@ class Hamkar {
374
365
  },
375
366
  default: {},
376
367
  placeholder: 'Add Product',
368
+ description: 'List of products (required)',
377
369
  options: [
378
370
  {
379
371
  name: 'product',
@@ -384,24 +376,21 @@ class Hamkar {
384
376
  name: 'product',
385
377
  type: 'number',
386
378
  default: 0,
387
- required: true,
388
- description: 'Product identifier',
379
+ description: 'Product identifier (required)',
389
380
  },
390
381
  {
391
382
  displayName: 'Number',
392
383
  name: 'number',
393
384
  type: 'number',
394
385
  default: 0,
395
- required: true,
396
- description: 'Quantity of product',
386
+ description: 'Quantity of product (required)',
397
387
  },
398
388
  {
399
389
  displayName: 'Purchased Price',
400
390
  name: 'purchased_price',
401
391
  type: 'number',
402
392
  default: 0,
403
- required: true,
404
- description: 'Purchase price of the product',
393
+ description: 'Purchase price of the product (required)',
405
394
  },
406
395
  ],
407
396
  },
@@ -414,7 +403,6 @@ class Hamkar {
414
403
  typeOptions: {
415
404
  multipleValues: true,
416
405
  },
417
- required: true,
418
406
  displayOptions: {
419
407
  show: {
420
408
  resource: ['record'],
@@ -423,6 +411,7 @@ class Hamkar {
423
411
  },
424
412
  default: {},
425
413
  placeholder: 'Add Answer',
414
+ description: 'Custom field answers (required)',
426
415
  options: [
427
416
  {
428
417
  name: 'answer',
@@ -433,16 +422,14 @@ class Hamkar {
433
422
  name: 'field',
434
423
  type: 'number',
435
424
  default: 0,
436
- required: true,
437
- description: 'Field identifier',
425
+ description: 'Field identifier (required)',
438
426
  },
439
427
  {
440
428
  displayName: 'Answer',
441
429
  name: 'answer',
442
430
  type: 'string',
443
431
  default: '',
444
- required: true,
445
- description: 'Answer for the field',
432
+ description: 'Answer for the field (required)',
446
433
  },
447
434
  ],
448
435
  },
@@ -453,7 +440,6 @@ class Hamkar {
453
440
  displayName: 'Record ID',
454
441
  name: 'recordId',
455
442
  type: 'string',
456
- required: true,
457
443
  displayOptions: {
458
444
  show: {
459
445
  resource: ['record'],
@@ -461,7 +447,7 @@ class Hamkar {
461
447
  },
462
448
  },
463
449
  default: '',
464
- description: 'ID of the record to update or delete',
450
+ description: 'ID of the record to update or delete (required)',
465
451
  },
466
452
  // Fields for Get Many operation
467
453
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-hamkar",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
4
4
  "description": "n8n node for Hamkar.co API - Contact and Record management operations",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",