@saraivadev/n8n-nodes-uazapi 0.1.0

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.
Files changed (56) hide show
  1. package/LICENSE.md +19 -0
  2. package/README.md +130 -0
  3. package/dist/credentials/UazapiApi.credentials.d.ts +10 -0
  4. package/dist/credentials/UazapiApi.credentials.js +56 -0
  5. package/dist/credentials/UazapiApi.credentials.js.map +1 -0
  6. package/dist/icons/uazapi.svg +4 -0
  7. package/dist/nodes/Uazapi/Uazapi.node.d.ts +4 -0
  8. package/dist/nodes/Uazapi/Uazapi.node.js +85 -0
  9. package/dist/nodes/Uazapi/Uazapi.node.js.map +1 -0
  10. package/dist/nodes/Uazapi/Uazapi.node.json +18 -0
  11. package/dist/nodes/Uazapi/descriptions/AdminDescription.d.ts +2 -0
  12. package/dist/nodes/Uazapi/descriptions/AdminDescription.js +206 -0
  13. package/dist/nodes/Uazapi/descriptions/AdminDescription.js.map +1 -0
  14. package/dist/nodes/Uazapi/descriptions/BusinessDescription.d.ts +2 -0
  15. package/dist/nodes/Uazapi/descriptions/BusinessDescription.js +274 -0
  16. package/dist/nodes/Uazapi/descriptions/BusinessDescription.js.map +1 -0
  17. package/dist/nodes/Uazapi/descriptions/ChatDescription.d.ts +2 -0
  18. package/dist/nodes/Uazapi/descriptions/ChatDescription.js +776 -0
  19. package/dist/nodes/Uazapi/descriptions/ChatDescription.js.map +1 -0
  20. package/dist/nodes/Uazapi/descriptions/ChatbotDescription.d.ts +2 -0
  21. package/dist/nodes/Uazapi/descriptions/ChatbotDescription.js +546 -0
  22. package/dist/nodes/Uazapi/descriptions/ChatbotDescription.js.map +1 -0
  23. package/dist/nodes/Uazapi/descriptions/ContactDescription.d.ts +2 -0
  24. package/dist/nodes/Uazapi/descriptions/ContactDescription.js +198 -0
  25. package/dist/nodes/Uazapi/descriptions/ContactDescription.js.map +1 -0
  26. package/dist/nodes/Uazapi/descriptions/CrmDescription.d.ts +2 -0
  27. package/dist/nodes/Uazapi/descriptions/CrmDescription.js +499 -0
  28. package/dist/nodes/Uazapi/descriptions/CrmDescription.js.map +1 -0
  29. package/dist/nodes/Uazapi/descriptions/GroupDescription.d.ts +2 -0
  30. package/dist/nodes/Uazapi/descriptions/GroupDescription.js +705 -0
  31. package/dist/nodes/Uazapi/descriptions/GroupDescription.js.map +1 -0
  32. package/dist/nodes/Uazapi/descriptions/InstanceDescription.d.ts +2 -0
  33. package/dist/nodes/Uazapi/descriptions/InstanceDescription.js +396 -0
  34. package/dist/nodes/Uazapi/descriptions/InstanceDescription.js.map +1 -0
  35. package/dist/nodes/Uazapi/descriptions/LabelDescription.d.ts +2 -0
  36. package/dist/nodes/Uazapi/descriptions/LabelDescription.js +120 -0
  37. package/dist/nodes/Uazapi/descriptions/LabelDescription.js.map +1 -0
  38. package/dist/nodes/Uazapi/descriptions/MessageDescription.d.ts +2 -0
  39. package/dist/nodes/Uazapi/descriptions/MessageDescription.js +1034 -0
  40. package/dist/nodes/Uazapi/descriptions/MessageDescription.js.map +1 -0
  41. package/dist/nodes/Uazapi/descriptions/ProfileDescription.d.ts +2 -0
  42. package/dist/nodes/Uazapi/descriptions/ProfileDescription.js +84 -0
  43. package/dist/nodes/Uazapi/descriptions/ProfileDescription.js.map +1 -0
  44. package/dist/nodes/Uazapi/descriptions/SenderDescription.d.ts +2 -0
  45. package/dist/nodes/Uazapi/descriptions/SenderDescription.js +627 -0
  46. package/dist/nodes/Uazapi/descriptions/SenderDescription.js.map +1 -0
  47. package/dist/nodes/Uazapi/descriptions/shared.d.ts +5 -0
  48. package/dist/nodes/Uazapi/descriptions/shared.js +95 -0
  49. package/dist/nodes/Uazapi/descriptions/shared.js.map +1 -0
  50. package/dist/nodes/UazapiTrigger/UazapiTrigger.node.d.ts +13 -0
  51. package/dist/nodes/UazapiTrigger/UazapiTrigger.node.js +362 -0
  52. package/dist/nodes/UazapiTrigger/UazapiTrigger.node.js.map +1 -0
  53. package/dist/nodes/UazapiTrigger/UazapiTrigger.node.json +18 -0
  54. package/dist/package.json +50 -0
  55. package/dist/tsconfig.tsbuildinfo +1 -0
  56. package/package.json +49 -0
@@ -0,0 +1,776 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.chatDescription = void 0;
4
+ exports.chatDescription = [
5
+ {
6
+ displayName: 'Operation',
7
+ name: 'operation',
8
+ type: 'options',
9
+ noDataExpression: true,
10
+ displayOptions: {
11
+ show: {
12
+ resource: ['chat'],
13
+ },
14
+ },
15
+ options: [
16
+ {
17
+ name: 'Archive',
18
+ value: 'archive',
19
+ action: 'Archive a chat',
20
+ description: 'Archive or unarchive a chat',
21
+ routing: {
22
+ request: {
23
+ method: 'POST',
24
+ url: '/chat/archive',
25
+ },
26
+ },
27
+ },
28
+ {
29
+ name: 'Block',
30
+ value: 'block',
31
+ action: 'Block a chat',
32
+ description: 'Block or unblock a contact chat',
33
+ routing: {
34
+ request: {
35
+ method: 'POST',
36
+ url: '/chat/block',
37
+ },
38
+ },
39
+ },
40
+ {
41
+ name: 'Check on WhatsApp',
42
+ value: 'checkOnWhatsApp',
43
+ action: 'Check numbers on whats app',
44
+ description: 'Check whether numbers are registered on WhatsApp',
45
+ routing: {
46
+ request: {
47
+ method: 'POST',
48
+ url: '/chat/check',
49
+ },
50
+ },
51
+ },
52
+ {
53
+ name: 'Delete',
54
+ value: 'delete',
55
+ action: 'Delete a chat',
56
+ description: 'Delete a chat and optionally its messages',
57
+ routing: {
58
+ request: {
59
+ method: 'POST',
60
+ url: '/chat/delete',
61
+ },
62
+ },
63
+ },
64
+ {
65
+ name: 'Get Details',
66
+ value: 'details',
67
+ action: 'Get chat details',
68
+ description: 'Retrieve detailed information about a chat',
69
+ routing: {
70
+ request: {
71
+ method: 'POST',
72
+ url: '/chat/details',
73
+ },
74
+ },
75
+ },
76
+ {
77
+ name: 'List Blocked',
78
+ value: 'listBlocked',
79
+ action: 'List blocked chats',
80
+ description: 'Retrieve the list of blocked contacts',
81
+ routing: {
82
+ request: {
83
+ method: 'GET',
84
+ url: '/chat/blocklist',
85
+ },
86
+ },
87
+ },
88
+ {
89
+ name: 'Manage Labels',
90
+ value: 'manageLabels',
91
+ action: 'Manage chat labels',
92
+ description: 'Set, add or remove labels on a chat',
93
+ routing: {
94
+ request: {
95
+ method: 'POST',
96
+ url: '/chat/labels',
97
+ },
98
+ },
99
+ },
100
+ {
101
+ name: 'Mute',
102
+ value: 'mute',
103
+ action: 'Mute a chat',
104
+ description: 'Mute a chat until a given timestamp',
105
+ routing: {
106
+ request: {
107
+ method: 'POST',
108
+ url: '/chat/mute',
109
+ },
110
+ },
111
+ },
112
+ {
113
+ name: 'Pin',
114
+ value: 'pin',
115
+ action: 'Pin a chat',
116
+ description: 'Pin or unpin a chat',
117
+ routing: {
118
+ request: {
119
+ method: 'POST',
120
+ url: '/chat/pin',
121
+ },
122
+ },
123
+ },
124
+ {
125
+ name: 'Read',
126
+ value: 'read',
127
+ action: 'Mark a chat as read',
128
+ description: 'Mark a chat as read or unread',
129
+ routing: {
130
+ request: {
131
+ method: 'POST',
132
+ url: '/chat/read',
133
+ },
134
+ },
135
+ },
136
+ {
137
+ name: 'Search',
138
+ value: 'find',
139
+ action: 'Find chats',
140
+ description: 'Search chats with optional filters and pagination',
141
+ routing: {
142
+ request: {
143
+ method: 'POST',
144
+ url: '/chat/find',
145
+ },
146
+ },
147
+ },
148
+ ],
149
+ default: 'find',
150
+ },
151
+ {
152
+ displayName: 'Search Options',
153
+ name: 'searchOptions',
154
+ type: 'collection',
155
+ placeholder: 'Add Option',
156
+ default: {},
157
+ displayOptions: {
158
+ show: {
159
+ resource: ['chat'],
160
+ operation: ['find'],
161
+ },
162
+ },
163
+ options: [
164
+ {
165
+ displayName: 'Limit',
166
+ name: 'limit',
167
+ type: 'number',
168
+ typeOptions: {
169
+ minValue: 1,
170
+ },
171
+ default: 50,
172
+ description: 'Max number of results to return',
173
+ routing: {
174
+ send: {
175
+ type: 'body',
176
+ property: 'limit',
177
+ },
178
+ },
179
+ },
180
+ {
181
+ displayName: 'Offset',
182
+ name: 'offset',
183
+ type: 'number',
184
+ default: 0,
185
+ description: 'Number of results to skip',
186
+ routing: {
187
+ send: {
188
+ type: 'body',
189
+ property: 'offset',
190
+ },
191
+ },
192
+ },
193
+ {
194
+ displayName: 'Operator',
195
+ name: 'operator',
196
+ type: 'options',
197
+ default: 'AND',
198
+ description: 'Logical operator to combine filters',
199
+ options: [
200
+ { name: 'AND', value: 'AND' },
201
+ { name: 'OR', value: 'OR' },
202
+ ],
203
+ routing: {
204
+ send: {
205
+ type: 'body',
206
+ property: 'operator',
207
+ },
208
+ },
209
+ },
210
+ {
211
+ displayName: 'Sort',
212
+ name: 'sort',
213
+ type: 'string',
214
+ default: '',
215
+ description: 'Sort expression, e.g. "-wa_lastMsgTimestamp"',
216
+ routing: {
217
+ send: {
218
+ type: 'body',
219
+ property: 'sort',
220
+ },
221
+ },
222
+ },
223
+ ],
224
+ },
225
+ {
226
+ displayName: 'Filters',
227
+ name: 'filters',
228
+ type: 'collection',
229
+ placeholder: 'Add Filter',
230
+ default: {},
231
+ displayOptions: {
232
+ show: {
233
+ resource: ['chat'],
234
+ operation: ['find'],
235
+ },
236
+ },
237
+ options: [
238
+ {
239
+ displayName: 'Lead Status',
240
+ name: 'lead_status',
241
+ type: 'string',
242
+ default: '',
243
+ description: 'Filter by lead status',
244
+ routing: {
245
+ send: {
246
+ type: 'body',
247
+ property: 'lead_status',
248
+ },
249
+ },
250
+ },
251
+ {
252
+ displayName: 'WA Archived',
253
+ name: 'wa_archived',
254
+ type: 'boolean',
255
+ default: false,
256
+ description: 'Whether the chat is archived',
257
+ routing: {
258
+ send: {
259
+ type: 'body',
260
+ property: 'wa_archived',
261
+ },
262
+ },
263
+ },
264
+ {
265
+ displayName: 'WA Is Group',
266
+ name: 'wa_isGroup',
267
+ type: 'boolean',
268
+ default: false,
269
+ description: 'Whether the chat is a group',
270
+ routing: {
271
+ send: {
272
+ type: 'body',
273
+ property: 'wa_isGroup',
274
+ },
275
+ },
276
+ },
277
+ {
278
+ displayName: 'WA Is Pinned',
279
+ name: 'wa_isPinned',
280
+ type: 'boolean',
281
+ default: false,
282
+ description: 'Whether the chat is pinned',
283
+ routing: {
284
+ send: {
285
+ type: 'body',
286
+ property: 'wa_isPinned',
287
+ },
288
+ },
289
+ },
290
+ {
291
+ displayName: 'WA Label',
292
+ name: 'wa_label',
293
+ type: 'string',
294
+ default: '',
295
+ description: 'Filter by chat label',
296
+ routing: {
297
+ send: {
298
+ type: 'body',
299
+ property: 'wa_label',
300
+ },
301
+ },
302
+ },
303
+ {
304
+ displayName: 'WA Name',
305
+ name: 'wa_name',
306
+ type: 'string',
307
+ default: '',
308
+ description: 'Filter by chat name',
309
+ routing: {
310
+ send: {
311
+ type: 'body',
312
+ property: 'wa_name',
313
+ },
314
+ },
315
+ },
316
+ {
317
+ displayName: 'WA Unread Count',
318
+ name: 'wa_unreadCount',
319
+ type: 'number',
320
+ default: 0,
321
+ description: 'Filter by unread message count',
322
+ routing: {
323
+ send: {
324
+ type: 'body',
325
+ property: 'wa_unreadCount',
326
+ },
327
+ },
328
+ },
329
+ ],
330
+ },
331
+ {
332
+ displayName: 'Number',
333
+ name: 'number',
334
+ type: 'string',
335
+ required: true,
336
+ default: '',
337
+ description: 'Chat number or JID',
338
+ displayOptions: {
339
+ show: {
340
+ resource: ['chat'],
341
+ operation: ['details'],
342
+ },
343
+ },
344
+ routing: {
345
+ send: {
346
+ type: 'body',
347
+ property: 'number',
348
+ },
349
+ },
350
+ },
351
+ {
352
+ displayName: 'Preview',
353
+ name: 'preview',
354
+ type: 'boolean',
355
+ default: false,
356
+ description: 'Whether to include a preview of the latest messages',
357
+ displayOptions: {
358
+ show: {
359
+ resource: ['chat'],
360
+ operation: ['details'],
361
+ },
362
+ },
363
+ routing: {
364
+ send: {
365
+ type: 'body',
366
+ property: 'preview',
367
+ },
368
+ },
369
+ },
370
+ {
371
+ displayName: 'Number',
372
+ name: 'number',
373
+ type: 'string',
374
+ required: true,
375
+ default: '',
376
+ description: 'Chat number or JID',
377
+ displayOptions: {
378
+ show: {
379
+ resource: ['chat'],
380
+ operation: ['archive'],
381
+ },
382
+ },
383
+ routing: {
384
+ send: {
385
+ type: 'body',
386
+ property: 'number',
387
+ },
388
+ },
389
+ },
390
+ {
391
+ displayName: 'Archive',
392
+ name: 'archive',
393
+ type: 'boolean',
394
+ required: true,
395
+ default: false,
396
+ description: 'Whether to archive (true) or unarchive (false) the chat',
397
+ displayOptions: {
398
+ show: {
399
+ resource: ['chat'],
400
+ operation: ['archive'],
401
+ },
402
+ },
403
+ routing: {
404
+ send: {
405
+ type: 'body',
406
+ property: 'archive',
407
+ },
408
+ },
409
+ },
410
+ {
411
+ displayName: 'Number',
412
+ name: 'number',
413
+ type: 'string',
414
+ required: true,
415
+ default: '',
416
+ description: 'Chat number or JID',
417
+ displayOptions: {
418
+ show: {
419
+ resource: ['chat'],
420
+ operation: ['read'],
421
+ },
422
+ },
423
+ routing: {
424
+ send: {
425
+ type: 'body',
426
+ property: 'number',
427
+ },
428
+ },
429
+ },
430
+ {
431
+ displayName: 'Read',
432
+ name: 'read',
433
+ type: 'boolean',
434
+ required: true,
435
+ default: false,
436
+ description: 'Whether to mark as read (true) or unread (false)',
437
+ displayOptions: {
438
+ show: {
439
+ resource: ['chat'],
440
+ operation: ['read'],
441
+ },
442
+ },
443
+ routing: {
444
+ send: {
445
+ type: 'body',
446
+ property: 'read',
447
+ },
448
+ },
449
+ },
450
+ {
451
+ displayName: 'Number',
452
+ name: 'number',
453
+ type: 'string',
454
+ required: true,
455
+ default: '',
456
+ description: 'Chat number or JID',
457
+ displayOptions: {
458
+ show: {
459
+ resource: ['chat'],
460
+ operation: ['mute'],
461
+ },
462
+ },
463
+ routing: {
464
+ send: {
465
+ type: 'body',
466
+ property: 'number',
467
+ },
468
+ },
469
+ },
470
+ {
471
+ displayName: 'Mute End Time',
472
+ name: 'muteEndTime',
473
+ type: 'number',
474
+ required: true,
475
+ default: 0,
476
+ description: 'Unix timestamp when the mute should end',
477
+ displayOptions: {
478
+ show: {
479
+ resource: ['chat'],
480
+ operation: ['mute'],
481
+ },
482
+ },
483
+ routing: {
484
+ send: {
485
+ type: 'body',
486
+ property: 'muteEndTime',
487
+ },
488
+ },
489
+ },
490
+ {
491
+ displayName: 'Number',
492
+ name: 'number',
493
+ type: 'string',
494
+ required: true,
495
+ default: '',
496
+ description: 'Chat number or JID',
497
+ displayOptions: {
498
+ show: {
499
+ resource: ['chat'],
500
+ operation: ['pin'],
501
+ },
502
+ },
503
+ routing: {
504
+ send: {
505
+ type: 'body',
506
+ property: 'number',
507
+ },
508
+ },
509
+ },
510
+ {
511
+ displayName: 'Pin',
512
+ name: 'pin',
513
+ type: 'boolean',
514
+ required: true,
515
+ default: false,
516
+ description: 'Whether to pin (true) or unpin (false) the chat',
517
+ displayOptions: {
518
+ show: {
519
+ resource: ['chat'],
520
+ operation: ['pin'],
521
+ },
522
+ },
523
+ routing: {
524
+ send: {
525
+ type: 'body',
526
+ property: 'pin',
527
+ },
528
+ },
529
+ },
530
+ {
531
+ displayName: 'Number',
532
+ name: 'number',
533
+ type: 'string',
534
+ required: true,
535
+ default: '',
536
+ description: 'Chat number or JID',
537
+ displayOptions: {
538
+ show: {
539
+ resource: ['chat'],
540
+ operation: ['delete'],
541
+ },
542
+ },
543
+ routing: {
544
+ send: {
545
+ type: 'body',
546
+ property: 'number',
547
+ },
548
+ },
549
+ },
550
+ {
551
+ displayName: 'Delete Chat DB',
552
+ name: 'deleteChatDB',
553
+ type: 'boolean',
554
+ default: false,
555
+ description: 'Whether to delete the chat record from the local database',
556
+ displayOptions: {
557
+ show: {
558
+ resource: ['chat'],
559
+ operation: ['delete'],
560
+ },
561
+ },
562
+ routing: {
563
+ send: {
564
+ type: 'body',
565
+ property: 'deleteChatDB',
566
+ },
567
+ },
568
+ },
569
+ {
570
+ displayName: 'Delete Messages DB',
571
+ name: 'deleteMessagesDB',
572
+ type: 'boolean',
573
+ default: false,
574
+ description: 'Whether to delete the messages from the local database',
575
+ displayOptions: {
576
+ show: {
577
+ resource: ['chat'],
578
+ operation: ['delete'],
579
+ },
580
+ },
581
+ routing: {
582
+ send: {
583
+ type: 'body',
584
+ property: 'deleteMessagesDB',
585
+ },
586
+ },
587
+ },
588
+ {
589
+ displayName: 'Delete Chat on WhatsApp',
590
+ name: 'deleteChatWhatsApp',
591
+ type: 'boolean',
592
+ default: false,
593
+ description: 'Whether to delete the chat on WhatsApp servers',
594
+ displayOptions: {
595
+ show: {
596
+ resource: ['chat'],
597
+ operation: ['delete'],
598
+ },
599
+ },
600
+ routing: {
601
+ send: {
602
+ type: 'body',
603
+ property: 'deleteChatWhatsApp',
604
+ },
605
+ },
606
+ },
607
+ {
608
+ displayName: 'Number',
609
+ name: 'number',
610
+ type: 'string',
611
+ required: true,
612
+ default: '',
613
+ description: 'Chat number or JID',
614
+ displayOptions: {
615
+ show: {
616
+ resource: ['chat'],
617
+ operation: ['block'],
618
+ },
619
+ },
620
+ routing: {
621
+ send: {
622
+ type: 'body',
623
+ property: 'number',
624
+ },
625
+ },
626
+ },
627
+ {
628
+ displayName: 'Block',
629
+ name: 'block',
630
+ type: 'boolean',
631
+ required: true,
632
+ default: false,
633
+ description: 'Whether to block (true) or unblock (false) the contact',
634
+ displayOptions: {
635
+ show: {
636
+ resource: ['chat'],
637
+ operation: ['block'],
638
+ },
639
+ },
640
+ routing: {
641
+ send: {
642
+ type: 'body',
643
+ property: 'block',
644
+ },
645
+ },
646
+ },
647
+ {
648
+ displayName: 'Numbers',
649
+ name: 'numbers',
650
+ type: 'string',
651
+ typeOptions: {
652
+ multipleValues: true,
653
+ },
654
+ required: true,
655
+ default: [],
656
+ description: 'List of phone numbers to check',
657
+ displayOptions: {
658
+ show: {
659
+ resource: ['chat'],
660
+ operation: ['checkOnWhatsApp'],
661
+ },
662
+ },
663
+ routing: {
664
+ send: {
665
+ type: 'body',
666
+ property: 'numbers',
667
+ },
668
+ },
669
+ },
670
+ {
671
+ displayName: 'Number',
672
+ name: 'number',
673
+ type: 'string',
674
+ required: true,
675
+ default: '',
676
+ description: 'Chat number or JID',
677
+ displayOptions: {
678
+ show: {
679
+ resource: ['chat'],
680
+ operation: ['manageLabels'],
681
+ },
682
+ },
683
+ routing: {
684
+ send: {
685
+ type: 'body',
686
+ property: 'number',
687
+ },
688
+ },
689
+ },
690
+ {
691
+ displayName: 'Mode',
692
+ name: 'mode',
693
+ type: 'options',
694
+ required: true,
695
+ default: 'set',
696
+ description: 'How to apply the labels',
697
+ displayOptions: {
698
+ show: {
699
+ resource: ['chat'],
700
+ operation: ['manageLabels'],
701
+ },
702
+ },
703
+ options: [
704
+ { name: 'Add', value: 'add' },
705
+ { name: 'Remove', value: 'remove' },
706
+ { name: 'Set', value: 'set' },
707
+ ],
708
+ routing: {
709
+ send: {
710
+ type: 'body',
711
+ property: 'mode',
712
+ },
713
+ },
714
+ },
715
+ {
716
+ displayName: 'Label IDs',
717
+ name: 'labelids',
718
+ type: 'string',
719
+ typeOptions: {
720
+ multipleValues: true,
721
+ },
722
+ default: [],
723
+ description: 'Full set of label IDs (used with Set mode)',
724
+ displayOptions: {
725
+ show: {
726
+ resource: ['chat'],
727
+ operation: ['manageLabels'],
728
+ },
729
+ },
730
+ routing: {
731
+ send: {
732
+ type: 'body',
733
+ property: 'labelids',
734
+ },
735
+ },
736
+ },
737
+ {
738
+ displayName: 'Add Label ID',
739
+ name: 'add_labelid',
740
+ type: 'string',
741
+ default: '',
742
+ description: 'Single label ID to add (used with Add mode)',
743
+ displayOptions: {
744
+ show: {
745
+ resource: ['chat'],
746
+ operation: ['manageLabels'],
747
+ },
748
+ },
749
+ routing: {
750
+ send: {
751
+ type: 'body',
752
+ property: 'add_labelid',
753
+ },
754
+ },
755
+ },
756
+ {
757
+ displayName: 'Remove Label ID',
758
+ name: 'remove_labelid',
759
+ type: 'string',
760
+ default: '',
761
+ description: 'Single label ID to remove (used with Remove mode)',
762
+ displayOptions: {
763
+ show: {
764
+ resource: ['chat'],
765
+ operation: ['manageLabels'],
766
+ },
767
+ },
768
+ routing: {
769
+ send: {
770
+ type: 'body',
771
+ property: 'remove_labelid',
772
+ },
773
+ },
774
+ },
775
+ ];
776
+ //# sourceMappingURL=ChatDescription.js.map