@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.
- package/LICENSE.md +19 -0
- package/README.md +130 -0
- package/dist/credentials/UazapiApi.credentials.d.ts +10 -0
- package/dist/credentials/UazapiApi.credentials.js +56 -0
- package/dist/credentials/UazapiApi.credentials.js.map +1 -0
- package/dist/icons/uazapi.svg +4 -0
- package/dist/nodes/Uazapi/Uazapi.node.d.ts +4 -0
- package/dist/nodes/Uazapi/Uazapi.node.js +85 -0
- package/dist/nodes/Uazapi/Uazapi.node.js.map +1 -0
- package/dist/nodes/Uazapi/Uazapi.node.json +18 -0
- package/dist/nodes/Uazapi/descriptions/AdminDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/AdminDescription.js +206 -0
- package/dist/nodes/Uazapi/descriptions/AdminDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/BusinessDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/BusinessDescription.js +274 -0
- package/dist/nodes/Uazapi/descriptions/BusinessDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/ChatDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/ChatDescription.js +776 -0
- package/dist/nodes/Uazapi/descriptions/ChatDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/ChatbotDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/ChatbotDescription.js +546 -0
- package/dist/nodes/Uazapi/descriptions/ChatbotDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/ContactDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/ContactDescription.js +198 -0
- package/dist/nodes/Uazapi/descriptions/ContactDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/CrmDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/CrmDescription.js +499 -0
- package/dist/nodes/Uazapi/descriptions/CrmDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/GroupDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/GroupDescription.js +705 -0
- package/dist/nodes/Uazapi/descriptions/GroupDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/InstanceDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/InstanceDescription.js +396 -0
- package/dist/nodes/Uazapi/descriptions/InstanceDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/LabelDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/LabelDescription.js +120 -0
- package/dist/nodes/Uazapi/descriptions/LabelDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/MessageDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/MessageDescription.js +1034 -0
- package/dist/nodes/Uazapi/descriptions/MessageDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/ProfileDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/ProfileDescription.js +84 -0
- package/dist/nodes/Uazapi/descriptions/ProfileDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/SenderDescription.d.ts +2 -0
- package/dist/nodes/Uazapi/descriptions/SenderDescription.js +627 -0
- package/dist/nodes/Uazapi/descriptions/SenderDescription.js.map +1 -0
- package/dist/nodes/Uazapi/descriptions/shared.d.ts +5 -0
- package/dist/nodes/Uazapi/descriptions/shared.js +95 -0
- package/dist/nodes/Uazapi/descriptions/shared.js.map +1 -0
- package/dist/nodes/UazapiTrigger/UazapiTrigger.node.d.ts +13 -0
- package/dist/nodes/UazapiTrigger/UazapiTrigger.node.js +362 -0
- package/dist/nodes/UazapiTrigger/UazapiTrigger.node.js.map +1 -0
- package/dist/nodes/UazapiTrigger/UazapiTrigger.node.json +18 -0
- package/dist/package.json +50 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +49 -0
|
@@ -0,0 +1,627 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.senderDescription = void 0;
|
|
4
|
+
exports.senderDescription = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['sender'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Advanced Send',
|
|
18
|
+
value: 'advanced',
|
|
19
|
+
action: 'Send an advanced campaign',
|
|
20
|
+
description: 'Dispatch a campaign with a custom array of message objects',
|
|
21
|
+
routing: {
|
|
22
|
+
request: {
|
|
23
|
+
method: 'POST',
|
|
24
|
+
url: '/sender/advanced',
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Clear All',
|
|
30
|
+
value: 'clearAll',
|
|
31
|
+
action: 'Clear all campaign folders',
|
|
32
|
+
description: 'Delete all campaign folders and their messages',
|
|
33
|
+
routing: {
|
|
34
|
+
request: {
|
|
35
|
+
method: 'DELETE',
|
|
36
|
+
url: '/sender/clearall',
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Clear Done',
|
|
42
|
+
value: 'clearDone',
|
|
43
|
+
action: 'Clear finished campaigns',
|
|
44
|
+
description: 'Remove finished campaign folders older than the given hours',
|
|
45
|
+
routing: {
|
|
46
|
+
request: {
|
|
47
|
+
method: 'POST',
|
|
48
|
+
url: '/sender/cleardone',
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'Control Folder',
|
|
54
|
+
value: 'control',
|
|
55
|
+
action: 'Control a campaign folder',
|
|
56
|
+
description: 'Stop, continue, or delete a campaign folder',
|
|
57
|
+
routing: {
|
|
58
|
+
request: {
|
|
59
|
+
method: 'POST',
|
|
60
|
+
url: '/sender/edit',
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: 'List Folders',
|
|
66
|
+
value: 'listFolders',
|
|
67
|
+
action: 'List campaign folders',
|
|
68
|
+
description: 'List existing campaign folders filtered by status',
|
|
69
|
+
routing: {
|
|
70
|
+
request: {
|
|
71
|
+
method: 'GET',
|
|
72
|
+
url: '/sender/listfolders',
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: 'List Messages',
|
|
78
|
+
value: 'listMessages',
|
|
79
|
+
action: 'List messages in a campaign',
|
|
80
|
+
description: 'List the messages contained in a campaign folder',
|
|
81
|
+
routing: {
|
|
82
|
+
request: {
|
|
83
|
+
method: 'POST',
|
|
84
|
+
url: '/sender/listmessages',
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: 'Simple Send',
|
|
90
|
+
value: 'simple',
|
|
91
|
+
action: 'Send a simple campaign',
|
|
92
|
+
description: 'Dispatch the same message to multiple recipients',
|
|
93
|
+
routing: {
|
|
94
|
+
request: {
|
|
95
|
+
method: 'POST',
|
|
96
|
+
url: '/sender/simple',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
],
|
|
101
|
+
default: 'simple',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
displayName: 'Numbers',
|
|
105
|
+
name: 'numbers',
|
|
106
|
+
type: 'string',
|
|
107
|
+
typeOptions: {
|
|
108
|
+
multipleValues: true,
|
|
109
|
+
},
|
|
110
|
+
required: true,
|
|
111
|
+
default: [],
|
|
112
|
+
description: 'Recipient phone numbers or JIDs',
|
|
113
|
+
displayOptions: {
|
|
114
|
+
show: {
|
|
115
|
+
resource: ['sender'],
|
|
116
|
+
operation: ['simple'],
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
routing: {
|
|
120
|
+
send: {
|
|
121
|
+
type: 'body',
|
|
122
|
+
property: 'numbers',
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
displayName: 'Type',
|
|
128
|
+
name: 'type',
|
|
129
|
+
type: 'options',
|
|
130
|
+
required: true,
|
|
131
|
+
default: 'text',
|
|
132
|
+
description: 'Type of message to send',
|
|
133
|
+
displayOptions: {
|
|
134
|
+
show: {
|
|
135
|
+
resource: ['sender'],
|
|
136
|
+
operation: ['simple'],
|
|
137
|
+
},
|
|
138
|
+
},
|
|
139
|
+
options: [
|
|
140
|
+
{ name: 'Audio', value: 'audio' },
|
|
141
|
+
{ name: 'Document', value: 'document' },
|
|
142
|
+
{ name: 'Image', value: 'image' },
|
|
143
|
+
{ name: 'My Audio', value: 'myaudio' },
|
|
144
|
+
{ name: 'PTT', value: 'ptt' },
|
|
145
|
+
{ name: 'PTV', value: 'ptv' },
|
|
146
|
+
{ name: 'Sticker', value: 'sticker' },
|
|
147
|
+
{ name: 'Text', value: 'text' },
|
|
148
|
+
{ name: 'Video', value: 'video' },
|
|
149
|
+
],
|
|
150
|
+
routing: {
|
|
151
|
+
send: {
|
|
152
|
+
type: 'body',
|
|
153
|
+
property: 'type',
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
displayName: 'Delay Min',
|
|
159
|
+
name: 'delayMin',
|
|
160
|
+
type: 'number',
|
|
161
|
+
default: 3,
|
|
162
|
+
description: 'Minimum delay in seconds between messages',
|
|
163
|
+
displayOptions: {
|
|
164
|
+
show: {
|
|
165
|
+
resource: ['sender'],
|
|
166
|
+
operation: ['simple'],
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
routing: {
|
|
170
|
+
send: {
|
|
171
|
+
type: 'body',
|
|
172
|
+
property: 'delayMin',
|
|
173
|
+
},
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
displayName: 'Delay Max',
|
|
178
|
+
name: 'delayMax',
|
|
179
|
+
type: 'number',
|
|
180
|
+
default: 7,
|
|
181
|
+
description: 'Maximum delay in seconds between messages',
|
|
182
|
+
displayOptions: {
|
|
183
|
+
show: {
|
|
184
|
+
resource: ['sender'],
|
|
185
|
+
operation: ['simple'],
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
routing: {
|
|
189
|
+
send: {
|
|
190
|
+
type: 'body',
|
|
191
|
+
property: 'delayMax',
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
displayName: 'Scheduled For',
|
|
197
|
+
name: 'scheduled_for',
|
|
198
|
+
type: 'number',
|
|
199
|
+
default: 0,
|
|
200
|
+
description: 'Unix timestamp at which the campaign should start. Use 0 to start immediately.',
|
|
201
|
+
displayOptions: {
|
|
202
|
+
show: {
|
|
203
|
+
resource: ['sender'],
|
|
204
|
+
operation: ['simple'],
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
routing: {
|
|
208
|
+
send: {
|
|
209
|
+
type: 'body',
|
|
210
|
+
property: 'scheduled_for',
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
displayName: 'Message Fields',
|
|
216
|
+
name: 'messageFields',
|
|
217
|
+
type: 'collection',
|
|
218
|
+
placeholder: 'Add Field',
|
|
219
|
+
default: {},
|
|
220
|
+
description: 'Optional message payload fields',
|
|
221
|
+
displayOptions: {
|
|
222
|
+
show: {
|
|
223
|
+
resource: ['sender'],
|
|
224
|
+
operation: ['simple'],
|
|
225
|
+
},
|
|
226
|
+
},
|
|
227
|
+
options: [
|
|
228
|
+
{
|
|
229
|
+
displayName: 'Document Name',
|
|
230
|
+
name: 'docName',
|
|
231
|
+
type: 'string',
|
|
232
|
+
default: '',
|
|
233
|
+
description: 'File name to display for document messages',
|
|
234
|
+
routing: {
|
|
235
|
+
send: {
|
|
236
|
+
type: 'body',
|
|
237
|
+
property: 'docName',
|
|
238
|
+
},
|
|
239
|
+
},
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
displayName: 'File',
|
|
243
|
+
name: 'file',
|
|
244
|
+
type: 'string',
|
|
245
|
+
default: '',
|
|
246
|
+
description: 'URL or base64 of the media file to send',
|
|
247
|
+
routing: {
|
|
248
|
+
send: {
|
|
249
|
+
type: 'body',
|
|
250
|
+
property: 'file',
|
|
251
|
+
},
|
|
252
|
+
},
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
displayName: 'Forward',
|
|
256
|
+
name: 'forward',
|
|
257
|
+
type: 'boolean',
|
|
258
|
+
default: false,
|
|
259
|
+
description: 'Whether to mark the message as forwarded',
|
|
260
|
+
routing: {
|
|
261
|
+
send: {
|
|
262
|
+
type: 'body',
|
|
263
|
+
property: 'forward',
|
|
264
|
+
},
|
|
265
|
+
},
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
displayName: 'Info',
|
|
269
|
+
name: 'info',
|
|
270
|
+
type: 'string',
|
|
271
|
+
default: '',
|
|
272
|
+
description: 'Folder or campaign name used to group the messages',
|
|
273
|
+
routing: {
|
|
274
|
+
send: {
|
|
275
|
+
type: 'body',
|
|
276
|
+
property: 'info',
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
displayName: 'Link Preview',
|
|
282
|
+
name: 'link_preview',
|
|
283
|
+
type: 'boolean',
|
|
284
|
+
default: false,
|
|
285
|
+
description: 'Whether to render link previews in text messages',
|
|
286
|
+
routing: {
|
|
287
|
+
send: {
|
|
288
|
+
type: 'body',
|
|
289
|
+
property: 'link_preview',
|
|
290
|
+
},
|
|
291
|
+
},
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
displayName: 'Mimetype',
|
|
295
|
+
name: 'mimetype',
|
|
296
|
+
type: 'string',
|
|
297
|
+
default: '',
|
|
298
|
+
description: 'MIME type of the attached file',
|
|
299
|
+
routing: {
|
|
300
|
+
send: {
|
|
301
|
+
type: 'body',
|
|
302
|
+
property: 'mimetype',
|
|
303
|
+
},
|
|
304
|
+
},
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
displayName: 'Read Chat',
|
|
308
|
+
name: 'readchat',
|
|
309
|
+
type: 'boolean',
|
|
310
|
+
default: false,
|
|
311
|
+
description: 'Whether to mark the chat as read after sending',
|
|
312
|
+
routing: {
|
|
313
|
+
send: {
|
|
314
|
+
type: 'body',
|
|
315
|
+
property: 'readchat',
|
|
316
|
+
},
|
|
317
|
+
},
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
displayName: 'Text',
|
|
321
|
+
name: 'text',
|
|
322
|
+
type: 'string',
|
|
323
|
+
typeOptions: {
|
|
324
|
+
rows: 4,
|
|
325
|
+
},
|
|
326
|
+
default: '',
|
|
327
|
+
description: 'Text content of the message or caption',
|
|
328
|
+
routing: {
|
|
329
|
+
send: {
|
|
330
|
+
type: 'body',
|
|
331
|
+
property: 'text',
|
|
332
|
+
},
|
|
333
|
+
},
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
displayName: 'Track ID',
|
|
337
|
+
name: 'track_id',
|
|
338
|
+
type: 'string',
|
|
339
|
+
default: '',
|
|
340
|
+
description: 'External tracking identifier for the campaign',
|
|
341
|
+
routing: {
|
|
342
|
+
send: {
|
|
343
|
+
type: 'body',
|
|
344
|
+
property: 'track_id',
|
|
345
|
+
},
|
|
346
|
+
},
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
displayName: 'Track Source',
|
|
350
|
+
name: 'track_source',
|
|
351
|
+
type: 'string',
|
|
352
|
+
default: '',
|
|
353
|
+
description: 'Origin or source label used for tracking',
|
|
354
|
+
routing: {
|
|
355
|
+
send: {
|
|
356
|
+
type: 'body',
|
|
357
|
+
property: 'track_source',
|
|
358
|
+
},
|
|
359
|
+
},
|
|
360
|
+
},
|
|
361
|
+
],
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
displayName: 'Messages',
|
|
365
|
+
name: 'messages',
|
|
366
|
+
type: 'json',
|
|
367
|
+
required: true,
|
|
368
|
+
default: '[]',
|
|
369
|
+
typeOptions: {
|
|
370
|
+
rows: 4,
|
|
371
|
+
},
|
|
372
|
+
description: 'JSON array of message objects to dispatch',
|
|
373
|
+
displayOptions: {
|
|
374
|
+
show: {
|
|
375
|
+
resource: ['sender'],
|
|
376
|
+
operation: ['advanced'],
|
|
377
|
+
},
|
|
378
|
+
},
|
|
379
|
+
routing: {
|
|
380
|
+
send: {
|
|
381
|
+
type: 'body',
|
|
382
|
+
property: 'messages',
|
|
383
|
+
},
|
|
384
|
+
},
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
displayName: 'Campaign Options',
|
|
388
|
+
name: 'campaignOptions',
|
|
389
|
+
type: 'collection',
|
|
390
|
+
placeholder: 'Add Option',
|
|
391
|
+
default: {},
|
|
392
|
+
description: 'Optional campaign-level settings',
|
|
393
|
+
displayOptions: {
|
|
394
|
+
show: {
|
|
395
|
+
resource: ['sender'],
|
|
396
|
+
operation: ['advanced'],
|
|
397
|
+
},
|
|
398
|
+
},
|
|
399
|
+
options: [
|
|
400
|
+
{
|
|
401
|
+
displayName: 'Delay Max',
|
|
402
|
+
name: 'delayMax',
|
|
403
|
+
type: 'number',
|
|
404
|
+
default: 7,
|
|
405
|
+
description: 'Maximum delay in seconds between messages',
|
|
406
|
+
routing: {
|
|
407
|
+
send: {
|
|
408
|
+
type: 'body',
|
|
409
|
+
property: 'delayMax',
|
|
410
|
+
},
|
|
411
|
+
},
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
displayName: 'Delay Min',
|
|
415
|
+
name: 'delayMin',
|
|
416
|
+
type: 'number',
|
|
417
|
+
default: 3,
|
|
418
|
+
description: 'Minimum delay in seconds between messages',
|
|
419
|
+
routing: {
|
|
420
|
+
send: {
|
|
421
|
+
type: 'body',
|
|
422
|
+
property: 'delayMin',
|
|
423
|
+
},
|
|
424
|
+
},
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
displayName: 'Info',
|
|
428
|
+
name: 'info',
|
|
429
|
+
type: 'string',
|
|
430
|
+
default: '',
|
|
431
|
+
description: 'Folder or campaign name used to group the messages',
|
|
432
|
+
routing: {
|
|
433
|
+
send: {
|
|
434
|
+
type: 'body',
|
|
435
|
+
property: 'info',
|
|
436
|
+
},
|
|
437
|
+
},
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
displayName: 'Scheduled For',
|
|
441
|
+
name: 'scheduled_for',
|
|
442
|
+
type: 'number',
|
|
443
|
+
default: 0,
|
|
444
|
+
description: 'Unix timestamp at which the campaign should start',
|
|
445
|
+
routing: {
|
|
446
|
+
send: {
|
|
447
|
+
type: 'body',
|
|
448
|
+
property: 'scheduled_for',
|
|
449
|
+
},
|
|
450
|
+
},
|
|
451
|
+
},
|
|
452
|
+
],
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
displayName: 'Folder ID',
|
|
456
|
+
name: 'folder_id',
|
|
457
|
+
type: 'string',
|
|
458
|
+
required: true,
|
|
459
|
+
default: '',
|
|
460
|
+
description: 'Identifier of the campaign folder',
|
|
461
|
+
displayOptions: {
|
|
462
|
+
show: {
|
|
463
|
+
resource: ['sender'],
|
|
464
|
+
operation: ['control'],
|
|
465
|
+
},
|
|
466
|
+
},
|
|
467
|
+
routing: {
|
|
468
|
+
send: {
|
|
469
|
+
type: 'body',
|
|
470
|
+
property: 'folder_id',
|
|
471
|
+
},
|
|
472
|
+
},
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
displayName: 'Action',
|
|
476
|
+
name: 'action',
|
|
477
|
+
type: 'options',
|
|
478
|
+
required: true,
|
|
479
|
+
default: 'stop',
|
|
480
|
+
description: 'Action to apply to the campaign folder',
|
|
481
|
+
displayOptions: {
|
|
482
|
+
show: {
|
|
483
|
+
resource: ['sender'],
|
|
484
|
+
operation: ['control'],
|
|
485
|
+
},
|
|
486
|
+
},
|
|
487
|
+
options: [
|
|
488
|
+
{ name: 'Continue', value: 'continue', action: 'Continue a sender campaign' },
|
|
489
|
+
{ name: 'Delete', value: 'delete', action: 'Delete a sender campaign' },
|
|
490
|
+
{ name: 'Stop', value: 'stop', action: 'Stop a sender campaign' },
|
|
491
|
+
],
|
|
492
|
+
routing: {
|
|
493
|
+
send: {
|
|
494
|
+
type: 'body',
|
|
495
|
+
property: 'action',
|
|
496
|
+
},
|
|
497
|
+
},
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
displayName: 'Hours',
|
|
501
|
+
name: 'hours',
|
|
502
|
+
type: 'number',
|
|
503
|
+
default: 24,
|
|
504
|
+
description: 'Age in hours above which finished campaigns are cleared',
|
|
505
|
+
displayOptions: {
|
|
506
|
+
show: {
|
|
507
|
+
resource: ['sender'],
|
|
508
|
+
operation: ['clearDone'],
|
|
509
|
+
},
|
|
510
|
+
},
|
|
511
|
+
routing: {
|
|
512
|
+
send: {
|
|
513
|
+
type: 'body',
|
|
514
|
+
property: 'hours',
|
|
515
|
+
},
|
|
516
|
+
},
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
displayName: 'Status',
|
|
520
|
+
name: 'status',
|
|
521
|
+
type: 'options',
|
|
522
|
+
default: 'all',
|
|
523
|
+
description: 'Filter folders by status',
|
|
524
|
+
displayOptions: {
|
|
525
|
+
show: {
|
|
526
|
+
resource: ['sender'],
|
|
527
|
+
operation: ['listFolders'],
|
|
528
|
+
},
|
|
529
|
+
},
|
|
530
|
+
options: [
|
|
531
|
+
{ name: 'All', value: 'all' },
|
|
532
|
+
{ name: 'Done', value: 'done' },
|
|
533
|
+
{ name: 'Paused', value: 'paused' },
|
|
534
|
+
{ name: 'Running', value: 'running' },
|
|
535
|
+
{ name: 'Scheduled', value: 'scheduled' },
|
|
536
|
+
],
|
|
537
|
+
routing: {
|
|
538
|
+
send: {
|
|
539
|
+
type: 'query',
|
|
540
|
+
property: 'status',
|
|
541
|
+
},
|
|
542
|
+
},
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
displayName: 'Folder ID',
|
|
546
|
+
name: 'folder_id',
|
|
547
|
+
type: 'string',
|
|
548
|
+
required: true,
|
|
549
|
+
default: '',
|
|
550
|
+
description: 'Identifier of the campaign folder',
|
|
551
|
+
displayOptions: {
|
|
552
|
+
show: {
|
|
553
|
+
resource: ['sender'],
|
|
554
|
+
operation: ['listMessages'],
|
|
555
|
+
},
|
|
556
|
+
},
|
|
557
|
+
routing: {
|
|
558
|
+
send: {
|
|
559
|
+
type: 'body',
|
|
560
|
+
property: 'folder_id',
|
|
561
|
+
},
|
|
562
|
+
},
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
displayName: 'Pagination',
|
|
566
|
+
name: 'pagination',
|
|
567
|
+
type: 'collection',
|
|
568
|
+
placeholder: 'Add Field',
|
|
569
|
+
default: {},
|
|
570
|
+
description: 'Pagination and filter options',
|
|
571
|
+
displayOptions: {
|
|
572
|
+
show: {
|
|
573
|
+
resource: ['sender'],
|
|
574
|
+
operation: ['listMessages'],
|
|
575
|
+
},
|
|
576
|
+
},
|
|
577
|
+
options: [
|
|
578
|
+
{
|
|
579
|
+
displayName: 'Message Status',
|
|
580
|
+
name: 'messageStatus',
|
|
581
|
+
type: 'options',
|
|
582
|
+
default: 'all',
|
|
583
|
+
description: 'Filter messages by delivery status',
|
|
584
|
+
options: [
|
|
585
|
+
{ name: 'All', value: 'all' },
|
|
586
|
+
{ name: 'Error', value: 'error' },
|
|
587
|
+
{ name: 'Pending', value: 'pending' },
|
|
588
|
+
{ name: 'Read', value: 'read' },
|
|
589
|
+
{ name: 'Sent', value: 'sent' },
|
|
590
|
+
],
|
|
591
|
+
routing: {
|
|
592
|
+
send: {
|
|
593
|
+
type: 'body',
|
|
594
|
+
property: 'messageStatus',
|
|
595
|
+
},
|
|
596
|
+
},
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
displayName: 'Page',
|
|
600
|
+
name: 'page',
|
|
601
|
+
type: 'number',
|
|
602
|
+
default: 1,
|
|
603
|
+
description: 'Page number to retrieve',
|
|
604
|
+
routing: {
|
|
605
|
+
send: {
|
|
606
|
+
type: 'body',
|
|
607
|
+
property: 'page',
|
|
608
|
+
},
|
|
609
|
+
},
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
displayName: 'Page Size',
|
|
613
|
+
name: 'pageSize',
|
|
614
|
+
type: 'number',
|
|
615
|
+
default: 50,
|
|
616
|
+
description: 'Number of items per page',
|
|
617
|
+
routing: {
|
|
618
|
+
send: {
|
|
619
|
+
type: 'body',
|
|
620
|
+
property: 'pageSize',
|
|
621
|
+
},
|
|
622
|
+
},
|
|
623
|
+
},
|
|
624
|
+
],
|
|
625
|
+
},
|
|
626
|
+
];
|
|
627
|
+
//# sourceMappingURL=SenderDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SenderDescription.js","sourceRoot":"","sources":["../../../../nodes/Uazapi/descriptions/SenderDescription.ts"],"names":[],"mappings":"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"}
|