n8n-nodes-telepilot-2 0.5.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.
- package/LICENSE.md +7 -0
- package/README.md +152 -0
- package/deploy/test-n8n-imports/credentials/credential-dummy.json +20 -0
- package/deploy/test-n8n-imports/workflows/Telepilot_getMe.json +68 -0
- package/dist/credentials/TelePilotApi.credentials.d.ts +7 -0
- package/dist/credentials/TelePilotApi.credentials.js +46 -0
- package/dist/credentials/TelePilotApi.credentials.js.map +1 -0
- package/dist/nodes/TelePilot/TelePilot.node.d.ts +6 -0
- package/dist/nodes/TelePilot/TelePilot.node.js +960 -0
- package/dist/nodes/TelePilot/TelePilot.node.js.map +1 -0
- package/dist/nodes/TelePilot/TelePilot.node.json +18 -0
- package/dist/nodes/TelePilot/TelePilot.svg +16 -0
- package/dist/nodes/TelePilot/TelePilotNodeConnectionManager.d.ts +48 -0
- package/dist/nodes/TelePilot/TelePilotNodeConnectionManager.js +255 -0
- package/dist/nodes/TelePilot/TelePilotNodeConnectionManager.js.map +1 -0
- package/dist/nodes/TelePilot/TelePilotTrigger.node.d.ts +5 -0
- package/dist/nodes/TelePilot/TelePilotTrigger.node.js +127 -0
- package/dist/nodes/TelePilot/TelePilotTrigger.node.js.map +1 -0
- package/dist/nodes/TelePilot/common.descriptions.d.ts +53 -0
- package/dist/nodes/TelePilot/common.descriptions.js +1041 -0
- package/dist/nodes/TelePilot/common.descriptions.js.map +1 -0
- package/dist/nodes/TelePilot/tdlib/types.d.ts +8 -0
- package/dist/nodes/TelePilot/tdlib/types.js +3 -0
- package/dist/nodes/TelePilot/tdlib/types.js.map +1 -0
- package/dist/nodes/TelePilot/tdlib/updateEvents.d.ts +2 -0
- package/dist/nodes/TelePilot/tdlib/updateEvents.js +394 -0
- package/dist/nodes/TelePilot/tdlib/updateEvents.js.map +1 -0
- package/dist/package.json +66 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.js +0 -0
- package/package.json +66 -0
|
@@ -0,0 +1,1041 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.variable_thumbnail_width = exports.variable_video_supports_streaming = exports.variable_video_height = exports.variable_video_width = exports.variable_video_duration = exports.variable_url = exports.variable_json = exports.variable_file_caption = exports.variable_send_as_voice = exports.variable_audio_caption = exports.variable_file_path = exports.variable_audio_binary_property_name = exports.variable_audio_file_path = exports.variable_audio_path = exports.variable_chat_action = exports.variable_user_ids = exports.variable_description = exports.variable_is_channel = exports.variable_title = exports.variable_supergroup_id = exports.variable_message_thread_id = exports.variable_reply_to_msg_id = exports.variable_remote_file_id = exports.variable_file_id = exports.variable_query = exports.variable_username = exports.variable_revoke = exports.variable_photo_caption = exports.variable_video_photo_path = exports.variable_local_photo_path = exports.variable_messageText = exports.variable_message_id = exports.variable_message_force_read = exports.variable_message_ids = exports.variable_limit = exports.variable_from_message_id = exports.variable_is_marked_as_unread = exports.variable_from_chat_id = exports.variable_chat_id = exports.variable_force = exports.variable_user_id = exports.operationFile = exports.operationMessage = exports.operationChat = exports.operationGroup = exports.operationCustom = exports.operationContact = exports.operationUser = exports.operationLogin = exports.optionResources = void 0;
|
|
4
|
+
exports.variable_thumbnail_file_path = exports.variable_thumbnail_height = void 0;
|
|
5
|
+
exports.optionResources = {
|
|
6
|
+
displayName: 'Resource',
|
|
7
|
+
name: 'resource',
|
|
8
|
+
type: 'options',
|
|
9
|
+
options: [
|
|
10
|
+
{
|
|
11
|
+
name: 'Chat',
|
|
12
|
+
value: 'chat',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
name: 'Contact',
|
|
16
|
+
value: 'contact',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'Custom Request',
|
|
20
|
+
value: 'request',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: 'File',
|
|
24
|
+
value: 'file',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Group',
|
|
28
|
+
value: 'group',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Login',
|
|
32
|
+
value: 'login',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Media',
|
|
36
|
+
value: 'media',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Message',
|
|
40
|
+
value: 'message',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'User',
|
|
44
|
+
value: 'user',
|
|
45
|
+
},
|
|
46
|
+
],
|
|
47
|
+
default: 'chat',
|
|
48
|
+
noDataExpression: true,
|
|
49
|
+
required: true,
|
|
50
|
+
description: 'Get Chat History',
|
|
51
|
+
};
|
|
52
|
+
exports.operationLogin = {
|
|
53
|
+
displayName: 'Operation',
|
|
54
|
+
name: 'operation',
|
|
55
|
+
type: 'options',
|
|
56
|
+
displayOptions: {
|
|
57
|
+
show: {
|
|
58
|
+
resource: ['login'],
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
options: [
|
|
62
|
+
{
|
|
63
|
+
name: 'Login with Phone Number Using ChatTrigger',
|
|
64
|
+
value: 'login',
|
|
65
|
+
action: 'Login with phone number using n8n chat',
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
name: 'Close Session',
|
|
69
|
+
value: 'closeSession',
|
|
70
|
+
action: 'Close session',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: 'Remove Td_database',
|
|
74
|
+
value: 'removeTdDatabase',
|
|
75
|
+
action: 'Remove td database',
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
default: 'login',
|
|
79
|
+
noDataExpression: true,
|
|
80
|
+
};
|
|
81
|
+
exports.operationUser = {
|
|
82
|
+
displayName: 'Operation',
|
|
83
|
+
name: 'operation',
|
|
84
|
+
type: 'options',
|
|
85
|
+
displayOptions: {
|
|
86
|
+
show: {
|
|
87
|
+
resource: ['user'],
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
options: [
|
|
91
|
+
{
|
|
92
|
+
name: 'Create New Secret Chat',
|
|
93
|
+
value: 'createNewSecretChat',
|
|
94
|
+
action: 'Create new secret chat',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
name: 'Create Private Chat',
|
|
98
|
+
value: 'createPrivateChat',
|
|
99
|
+
action: 'Create private chat',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: 'Get Me',
|
|
103
|
+
value: 'getMe',
|
|
104
|
+
action: 'Get me',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: 'Get User',
|
|
108
|
+
value: 'getUser',
|
|
109
|
+
action: 'Get user',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: 'Get User Full Info',
|
|
113
|
+
value: 'getUserFullInfo',
|
|
114
|
+
action: 'Get user full info',
|
|
115
|
+
},
|
|
116
|
+
],
|
|
117
|
+
default: 'getMe',
|
|
118
|
+
noDataExpression: true,
|
|
119
|
+
};
|
|
120
|
+
exports.operationContact = {
|
|
121
|
+
displayName: 'Operation',
|
|
122
|
+
name: 'operation',
|
|
123
|
+
type: 'options',
|
|
124
|
+
displayOptions: {
|
|
125
|
+
show: {
|
|
126
|
+
resource: ['contact'],
|
|
127
|
+
},
|
|
128
|
+
},
|
|
129
|
+
options: [
|
|
130
|
+
{
|
|
131
|
+
name: 'Get Contacts',
|
|
132
|
+
value: 'getContacts',
|
|
133
|
+
action: 'Get all user contacts',
|
|
134
|
+
},
|
|
135
|
+
],
|
|
136
|
+
default: 'getContacts',
|
|
137
|
+
noDataExpression: true,
|
|
138
|
+
};
|
|
139
|
+
exports.operationCustom = {
|
|
140
|
+
displayName: 'Operation',
|
|
141
|
+
name: 'operation',
|
|
142
|
+
type: 'options',
|
|
143
|
+
displayOptions: {
|
|
144
|
+
show: {
|
|
145
|
+
resource: ['request'],
|
|
146
|
+
},
|
|
147
|
+
},
|
|
148
|
+
options: [
|
|
149
|
+
{
|
|
150
|
+
name: 'Custom Request',
|
|
151
|
+
value: 'customRequest',
|
|
152
|
+
action: 'Make custom request',
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
default: 'customRequest',
|
|
156
|
+
noDataExpression: true,
|
|
157
|
+
};
|
|
158
|
+
exports.operationGroup = {
|
|
159
|
+
displayName: 'Operation',
|
|
160
|
+
name: 'operation',
|
|
161
|
+
type: 'options',
|
|
162
|
+
displayOptions: {
|
|
163
|
+
show: {
|
|
164
|
+
resource: ['group'],
|
|
165
|
+
},
|
|
166
|
+
},
|
|
167
|
+
options: [
|
|
168
|
+
{
|
|
169
|
+
name: 'Get Supergroup Members',
|
|
170
|
+
value: 'getSupergroupMembers',
|
|
171
|
+
action: 'Get supergroup members',
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
name: 'Get Supergroup Info',
|
|
175
|
+
value: 'getSupergroup',
|
|
176
|
+
action: 'Get supergroup information',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
name: 'Get Supergroup Full Info',
|
|
180
|
+
value: 'getSupergroupFullInfo',
|
|
181
|
+
action: 'Get supergroup full information',
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
default: 'getSupergroup',
|
|
185
|
+
noDataExpression: true,
|
|
186
|
+
};
|
|
187
|
+
exports.operationChat = {
|
|
188
|
+
displayName: 'Operation',
|
|
189
|
+
name: 'operation',
|
|
190
|
+
type: 'options',
|
|
191
|
+
displayOptions: {
|
|
192
|
+
show: {
|
|
193
|
+
resource: ['chat'],
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
options: [
|
|
197
|
+
{
|
|
198
|
+
name: 'Add Chat Members',
|
|
199
|
+
value: 'addChatMembers',
|
|
200
|
+
action: 'Adds multiple new members to a chat',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
name: 'Close Chat',
|
|
204
|
+
value: 'closeChat',
|
|
205
|
+
action: 'Close chat',
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
name: 'Create SuperGroup or Channel',
|
|
209
|
+
value: 'createNewSupergroupChat',
|
|
210
|
+
action: 'Create supergroup or channel',
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
name: 'Delete Chat',
|
|
214
|
+
value: 'deleteChat',
|
|
215
|
+
action: 'Delete chat',
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
name: 'Get Chat',
|
|
219
|
+
value: 'getChat',
|
|
220
|
+
action: 'Get chat',
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
name: 'Get Chat History',
|
|
224
|
+
value: 'getChatHistory',
|
|
225
|
+
action: 'Get chat history',
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
name: 'Get Chats',
|
|
229
|
+
value: 'getChats',
|
|
230
|
+
action: 'Get chats',
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
name: 'Join Chat',
|
|
234
|
+
value: 'joinChat',
|
|
235
|
+
action: 'Join chat',
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
name: 'Mark Chat as Unread',
|
|
239
|
+
value: 'toggleChatIsMarkedAsUnread',
|
|
240
|
+
action: 'Mark chat as unread',
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
name: 'Open Chat',
|
|
244
|
+
value: 'openChat',
|
|
245
|
+
action: 'Open chat',
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
name: 'Search Public Chat (by Username)',
|
|
249
|
+
value: 'searchPublicChat',
|
|
250
|
+
action: 'Search public chat by username',
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
name: 'Search Public Chats (Search in Username, Title)',
|
|
254
|
+
value: 'searchPublicChats',
|
|
255
|
+
action: 'Search public chats',
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
name: 'Send Chat Action',
|
|
259
|
+
value: 'sendChatAction',
|
|
260
|
+
action: 'Sends a chat action',
|
|
261
|
+
},
|
|
262
|
+
],
|
|
263
|
+
default: 'getChatHistory',
|
|
264
|
+
noDataExpression: true,
|
|
265
|
+
};
|
|
266
|
+
exports.operationMessage = {
|
|
267
|
+
displayName: 'Operation',
|
|
268
|
+
name: 'operation',
|
|
269
|
+
type: 'options',
|
|
270
|
+
displayOptions: {
|
|
271
|
+
show: {
|
|
272
|
+
resource: ['message'],
|
|
273
|
+
},
|
|
274
|
+
},
|
|
275
|
+
options: [
|
|
276
|
+
{
|
|
277
|
+
name: 'Delete Messages',
|
|
278
|
+
value: 'deleteMessages',
|
|
279
|
+
action: 'Delete messages',
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
name: 'Edit Message Text',
|
|
283
|
+
value: 'editMessageText',
|
|
284
|
+
action: 'Edit message text',
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
name: 'Forward Messages',
|
|
288
|
+
value: 'forwardMessages',
|
|
289
|
+
action: 'Forward messages',
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
name: 'Get Message Link',
|
|
293
|
+
value: 'getMessageLink',
|
|
294
|
+
action: 'Get direct link to a specific message in a group or supergroup',
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
name: 'Get Message Link Info',
|
|
298
|
+
value: 'getMessageLinkInfo',
|
|
299
|
+
action: 'Returns information about a public or private message link',
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
name: 'Get Messages',
|
|
303
|
+
value: 'getMessage',
|
|
304
|
+
action: 'Get message',
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
name: 'Send Message with Audio',
|
|
308
|
+
value: 'sendMessageAudio',
|
|
309
|
+
action: 'Send a message with an audio file',
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
name: 'Send Message with File',
|
|
313
|
+
value: 'sendMessageFile',
|
|
314
|
+
action: 'Send a message with any file type',
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
name: 'Send Message with Photo',
|
|
318
|
+
value: 'sendMessagePhoto',
|
|
319
|
+
action: 'Send message with photo',
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
name: 'Send Message with Video',
|
|
323
|
+
value: 'sendMessageVideo',
|
|
324
|
+
action: 'Send message with video',
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
name: 'Send Text Message',
|
|
328
|
+
value: 'sendMessage',
|
|
329
|
+
action: 'Send text message',
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
name: 'View Messages',
|
|
333
|
+
value: 'viewMessages',
|
|
334
|
+
action: 'Mark messages as viewed by the user',
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
default: 'sendMessage',
|
|
338
|
+
noDataExpression: true,
|
|
339
|
+
};
|
|
340
|
+
exports.operationFile = {
|
|
341
|
+
displayName: 'Operation',
|
|
342
|
+
name: 'operation',
|
|
343
|
+
type: 'options',
|
|
344
|
+
displayOptions: {
|
|
345
|
+
show: {
|
|
346
|
+
resource: ['file'],
|
|
347
|
+
},
|
|
348
|
+
},
|
|
349
|
+
options: [
|
|
350
|
+
{
|
|
351
|
+
name: 'Get Remote File',
|
|
352
|
+
value: 'getRemoteFile',
|
|
353
|
+
action: 'Get remote file',
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
name: 'Download File',
|
|
357
|
+
value: 'downloadFile',
|
|
358
|
+
action: 'Download file',
|
|
359
|
+
},
|
|
360
|
+
],
|
|
361
|
+
default: 'downloadFile',
|
|
362
|
+
noDataExpression: true,
|
|
363
|
+
};
|
|
364
|
+
exports.variable_user_id = {
|
|
365
|
+
displayName: 'User ID',
|
|
366
|
+
name: 'user_id',
|
|
367
|
+
type: 'string',
|
|
368
|
+
required: true,
|
|
369
|
+
displayOptions: {
|
|
370
|
+
show: {
|
|
371
|
+
operation: ['getUser', 'getUserFullInfo', 'createPrivateChat', 'createNewSecretChat'],
|
|
372
|
+
resource: ['user'],
|
|
373
|
+
},
|
|
374
|
+
},
|
|
375
|
+
default: '',
|
|
376
|
+
placeholder: '122323',
|
|
377
|
+
description: 'ID of chat',
|
|
378
|
+
};
|
|
379
|
+
exports.variable_force = {
|
|
380
|
+
displayName: 'Force',
|
|
381
|
+
name: 'force',
|
|
382
|
+
type: 'boolean',
|
|
383
|
+
required: true,
|
|
384
|
+
displayOptions: {
|
|
385
|
+
show: {
|
|
386
|
+
operation: ['createPrivateChat'],
|
|
387
|
+
resource: ['user'],
|
|
388
|
+
},
|
|
389
|
+
},
|
|
390
|
+
default: false,
|
|
391
|
+
placeholder: '122323',
|
|
392
|
+
description: 'Whether creation of private chat should be forced',
|
|
393
|
+
};
|
|
394
|
+
exports.variable_chat_id = {
|
|
395
|
+
displayName: 'Chat ID',
|
|
396
|
+
name: 'chat_id',
|
|
397
|
+
type: 'string',
|
|
398
|
+
required: true,
|
|
399
|
+
displayOptions: {
|
|
400
|
+
show: {
|
|
401
|
+
operation: [
|
|
402
|
+
'getChat',
|
|
403
|
+
'getChatHistory',
|
|
404
|
+
'sendMessage',
|
|
405
|
+
'sendMessagePhoto',
|
|
406
|
+
'sendMessageVideo',
|
|
407
|
+
'sendMessageAudio',
|
|
408
|
+
'sendMessageFile',
|
|
409
|
+
'deleteMessages',
|
|
410
|
+
'forwardMessages',
|
|
411
|
+
'toggleChatIsMarkedAsUnread',
|
|
412
|
+
'getMessage',
|
|
413
|
+
'editMessageText',
|
|
414
|
+
'joinChat',
|
|
415
|
+
'openChat',
|
|
416
|
+
'closeChat',
|
|
417
|
+
'deleteChat',
|
|
418
|
+
'addChatMembers',
|
|
419
|
+
'sendChatAction',
|
|
420
|
+
'getMessageLink',
|
|
421
|
+
'viewMessages'
|
|
422
|
+
],
|
|
423
|
+
resource: ['chat', 'message'],
|
|
424
|
+
},
|
|
425
|
+
},
|
|
426
|
+
default: '',
|
|
427
|
+
placeholder: '122323',
|
|
428
|
+
description: 'ID of chat',
|
|
429
|
+
};
|
|
430
|
+
exports.variable_from_chat_id = {
|
|
431
|
+
displayName: 'From Chat ID',
|
|
432
|
+
name: 'from_chat_id',
|
|
433
|
+
type: 'string',
|
|
434
|
+
required: true,
|
|
435
|
+
displayOptions: {
|
|
436
|
+
show: {
|
|
437
|
+
operation: ['forwardMessages'],
|
|
438
|
+
resource: ['message'],
|
|
439
|
+
},
|
|
440
|
+
},
|
|
441
|
+
default: '',
|
|
442
|
+
placeholder: '122323',
|
|
443
|
+
description: 'ID of chat from which to forward messages',
|
|
444
|
+
};
|
|
445
|
+
exports.variable_is_marked_as_unread = {
|
|
446
|
+
displayName: 'Mark as Unread?',
|
|
447
|
+
name: 'is_marked_as_unread',
|
|
448
|
+
type: 'boolean',
|
|
449
|
+
required: true,
|
|
450
|
+
displayOptions: {
|
|
451
|
+
show: {
|
|
452
|
+
operation: ['toggleChatIsMarkedAsUnread'],
|
|
453
|
+
resource: ['chat'],
|
|
454
|
+
},
|
|
455
|
+
},
|
|
456
|
+
default: true,
|
|
457
|
+
placeholder: 'true',
|
|
458
|
+
description: 'Whether Chat should be marked as Unread',
|
|
459
|
+
};
|
|
460
|
+
exports.variable_from_message_id = {
|
|
461
|
+
displayName: 'From Message ID',
|
|
462
|
+
name: 'from_message_id',
|
|
463
|
+
type: 'string',
|
|
464
|
+
required: true,
|
|
465
|
+
displayOptions: {
|
|
466
|
+
show: {
|
|
467
|
+
operation: ['getChatHistory'],
|
|
468
|
+
resource: ['chat'],
|
|
469
|
+
},
|
|
470
|
+
},
|
|
471
|
+
default: '0',
|
|
472
|
+
placeholder: '133222323',
|
|
473
|
+
description: 'Identifier of the message starting from which history must be fetched; use 0 to get results from the last message',
|
|
474
|
+
};
|
|
475
|
+
exports.variable_limit = {
|
|
476
|
+
displayName: 'Limit',
|
|
477
|
+
name: 'limit',
|
|
478
|
+
type: 'string',
|
|
479
|
+
required: true,
|
|
480
|
+
displayOptions: {
|
|
481
|
+
show: {
|
|
482
|
+
operation: ['getChatHistory'],
|
|
483
|
+
resource: ['chat'],
|
|
484
|
+
},
|
|
485
|
+
},
|
|
486
|
+
default: '0',
|
|
487
|
+
placeholder: '100',
|
|
488
|
+
description: 'Maximum number of messages to be returned; up to 100 messages can be retrieved at once',
|
|
489
|
+
};
|
|
490
|
+
exports.variable_message_ids = {
|
|
491
|
+
displayName: 'Message IDs',
|
|
492
|
+
name: 'message_ids',
|
|
493
|
+
type: 'string',
|
|
494
|
+
required: true,
|
|
495
|
+
displayOptions: {
|
|
496
|
+
show: {
|
|
497
|
+
operation: ['deleteMessages', 'forwardMessages', 'viewMessages'],
|
|
498
|
+
resource: ['message'],
|
|
499
|
+
},
|
|
500
|
+
},
|
|
501
|
+
default: '',
|
|
502
|
+
placeholder: '123,234,345',
|
|
503
|
+
description: 'Comma-separated identifiers of the messages to be deleted or forwarded',
|
|
504
|
+
};
|
|
505
|
+
exports.variable_message_force_read = {
|
|
506
|
+
displayName: 'Force Read',
|
|
507
|
+
name: 'force_read',
|
|
508
|
+
type: 'boolean',
|
|
509
|
+
required: true,
|
|
510
|
+
displayOptions: {
|
|
511
|
+
show: {
|
|
512
|
+
operation: ['viewMessages'],
|
|
513
|
+
resource: ['message'],
|
|
514
|
+
},
|
|
515
|
+
},
|
|
516
|
+
default: true,
|
|
517
|
+
placeholder: '12345678',
|
|
518
|
+
description: 'Whether to mark the specified messages as read even the chat is closed',
|
|
519
|
+
};
|
|
520
|
+
exports.variable_message_id = {
|
|
521
|
+
displayName: 'Message ID',
|
|
522
|
+
name: 'message_id',
|
|
523
|
+
type: 'string',
|
|
524
|
+
required: true,
|
|
525
|
+
displayOptions: {
|
|
526
|
+
show: {
|
|
527
|
+
operation: ['getMessage', 'editMessageText', 'getMessageLink'],
|
|
528
|
+
resource: ['message'],
|
|
529
|
+
},
|
|
530
|
+
},
|
|
531
|
+
default: '',
|
|
532
|
+
placeholder: '12345678',
|
|
533
|
+
description: 'Identifier of the messages',
|
|
534
|
+
};
|
|
535
|
+
exports.variable_messageText = {
|
|
536
|
+
displayName: 'Message Text',
|
|
537
|
+
name: 'messageText',
|
|
538
|
+
type: 'string',
|
|
539
|
+
required: true,
|
|
540
|
+
displayOptions: {
|
|
541
|
+
show: {
|
|
542
|
+
operation: ['sendMessage', 'editMessageText'],
|
|
543
|
+
resource: ['message'],
|
|
544
|
+
},
|
|
545
|
+
},
|
|
546
|
+
default: '',
|
|
547
|
+
placeholder: 'Sample message text',
|
|
548
|
+
description: 'Text of the messages',
|
|
549
|
+
};
|
|
550
|
+
exports.variable_local_photo_path = {
|
|
551
|
+
displayName: 'Message Photo',
|
|
552
|
+
name: 'localFilePath',
|
|
553
|
+
type: 'string',
|
|
554
|
+
required: true,
|
|
555
|
+
displayOptions: {
|
|
556
|
+
show: {
|
|
557
|
+
operation: ['sendMessagePhoto'],
|
|
558
|
+
resource: ['message'],
|
|
559
|
+
},
|
|
560
|
+
},
|
|
561
|
+
default: '',
|
|
562
|
+
placeholder: '/tmp/my-pic.png',
|
|
563
|
+
description: 'Local path to the file',
|
|
564
|
+
};
|
|
565
|
+
exports.variable_video_photo_path = {
|
|
566
|
+
displayName: 'Message Video',
|
|
567
|
+
name: 'videoFilePath',
|
|
568
|
+
type: 'string',
|
|
569
|
+
required: true,
|
|
570
|
+
displayOptions: {
|
|
571
|
+
show: {
|
|
572
|
+
operation: ['sendMessageVideo'],
|
|
573
|
+
resource: ['message'],
|
|
574
|
+
},
|
|
575
|
+
},
|
|
576
|
+
default: '',
|
|
577
|
+
placeholder: '/tmp/my-pic.avi',
|
|
578
|
+
description: 'Local path to the video file',
|
|
579
|
+
};
|
|
580
|
+
exports.variable_photo_caption = {
|
|
581
|
+
displayName: 'Photo Caption',
|
|
582
|
+
name: 'photoCaption',
|
|
583
|
+
type: 'string',
|
|
584
|
+
displayOptions: {
|
|
585
|
+
show: {
|
|
586
|
+
operation: ['sendMessagePhoto'],
|
|
587
|
+
resource: ['message'],
|
|
588
|
+
},
|
|
589
|
+
},
|
|
590
|
+
default: '',
|
|
591
|
+
placeholder: 'My best photo',
|
|
592
|
+
};
|
|
593
|
+
exports.variable_revoke = {
|
|
594
|
+
displayName: 'Delete for All Users?',
|
|
595
|
+
name: 'revoke',
|
|
596
|
+
type: 'boolean',
|
|
597
|
+
required: true,
|
|
598
|
+
displayOptions: {
|
|
599
|
+
show: {
|
|
600
|
+
operation: ['deleteMessages'],
|
|
601
|
+
resource: ['message'],
|
|
602
|
+
},
|
|
603
|
+
},
|
|
604
|
+
default: true,
|
|
605
|
+
description: 'Whether given messages should be deleted for all users',
|
|
606
|
+
};
|
|
607
|
+
exports.variable_username = {
|
|
608
|
+
displayName: 'Chat Username',
|
|
609
|
+
name: 'username',
|
|
610
|
+
type: 'string',
|
|
611
|
+
required: true,
|
|
612
|
+
displayOptions: {
|
|
613
|
+
show: {
|
|
614
|
+
operation: ['searchPublicChat'],
|
|
615
|
+
resource: ['chat'],
|
|
616
|
+
},
|
|
617
|
+
},
|
|
618
|
+
default: '',
|
|
619
|
+
placeholder: 'Text',
|
|
620
|
+
description: 'Username to use in searchPublicChat',
|
|
621
|
+
};
|
|
622
|
+
exports.variable_query = {
|
|
623
|
+
displayName: 'Query',
|
|
624
|
+
name: 'query',
|
|
625
|
+
type: 'string',
|
|
626
|
+
required: true,
|
|
627
|
+
displayOptions: {
|
|
628
|
+
show: {
|
|
629
|
+
operation: ['searchPublicChats'],
|
|
630
|
+
resource: ['chat'],
|
|
631
|
+
},
|
|
632
|
+
},
|
|
633
|
+
default: '',
|
|
634
|
+
placeholder: 'Text',
|
|
635
|
+
description: 'Query used to search public chats by looking in their username and title',
|
|
636
|
+
};
|
|
637
|
+
exports.variable_file_id = {
|
|
638
|
+
displayName: 'File ID',
|
|
639
|
+
name: 'file_id',
|
|
640
|
+
type: 'string',
|
|
641
|
+
required: true,
|
|
642
|
+
displayOptions: {
|
|
643
|
+
show: {
|
|
644
|
+
operation: ['downloadFile'],
|
|
645
|
+
resource: ['file'],
|
|
646
|
+
},
|
|
647
|
+
},
|
|
648
|
+
default: '',
|
|
649
|
+
placeholder: 'Text',
|
|
650
|
+
description: 'Identifier of the file to download',
|
|
651
|
+
};
|
|
652
|
+
exports.variable_remote_file_id = {
|
|
653
|
+
displayName: 'File ID',
|
|
654
|
+
name: 'remote_file_id',
|
|
655
|
+
type: 'string',
|
|
656
|
+
required: true,
|
|
657
|
+
displayOptions: {
|
|
658
|
+
show: {
|
|
659
|
+
operation: ['getRemoteFile'],
|
|
660
|
+
resource: ['file'],
|
|
661
|
+
},
|
|
662
|
+
},
|
|
663
|
+
default: '',
|
|
664
|
+
placeholder: 'Text',
|
|
665
|
+
description: 'Identifier of the Remote file to download',
|
|
666
|
+
};
|
|
667
|
+
exports.variable_reply_to_msg_id = {
|
|
668
|
+
displayName: 'Reply to messageId',
|
|
669
|
+
name: 'reply_to_msg_id',
|
|
670
|
+
type: 'string',
|
|
671
|
+
displayOptions: {
|
|
672
|
+
show: {
|
|
673
|
+
operation: ['sendMessage', 'sendMessagePhoto', 'sendMessageAudio', 'sendMessageFile', 'sendMessageVideo'],
|
|
674
|
+
resource: ['message'],
|
|
675
|
+
},
|
|
676
|
+
},
|
|
677
|
+
default: '',
|
|
678
|
+
placeholder: 'Text',
|
|
679
|
+
description: 'Identifier of Message',
|
|
680
|
+
};
|
|
681
|
+
exports.variable_message_thread_id = {
|
|
682
|
+
displayName: 'Reply to threadID',
|
|
683
|
+
name: 'message_thread_id',
|
|
684
|
+
type: 'number',
|
|
685
|
+
displayOptions: {
|
|
686
|
+
show: {
|
|
687
|
+
operation: ['sendMessage', 'sendMessagePhoto', 'forwardMessages', 'sendMessageFile', 'sendMessageVideo'],
|
|
688
|
+
resource: ['message'],
|
|
689
|
+
},
|
|
690
|
+
},
|
|
691
|
+
default: '',
|
|
692
|
+
placeholder: 'Text',
|
|
693
|
+
description: 'If not 0, a message thread identifier in which the message will be sent',
|
|
694
|
+
};
|
|
695
|
+
exports.variable_supergroup_id = {
|
|
696
|
+
displayName: 'Supergroup ID',
|
|
697
|
+
name: 'supergroup_id',
|
|
698
|
+
type: 'string',
|
|
699
|
+
displayOptions: {
|
|
700
|
+
show: {
|
|
701
|
+
operation: ['getSupergroup', 'getSupergroupFullInfo'],
|
|
702
|
+
resource: ['group'],
|
|
703
|
+
},
|
|
704
|
+
},
|
|
705
|
+
default: '',
|
|
706
|
+
placeholder: 'Text',
|
|
707
|
+
description: 'Identifier of the Supergroup',
|
|
708
|
+
};
|
|
709
|
+
exports.variable_title = {
|
|
710
|
+
displayName: 'Title',
|
|
711
|
+
name: 'title',
|
|
712
|
+
type: 'string',
|
|
713
|
+
displayOptions: {
|
|
714
|
+
show: {
|
|
715
|
+
operation: ['createNewSupergroupChat'],
|
|
716
|
+
resource: ['chat'],
|
|
717
|
+
},
|
|
718
|
+
},
|
|
719
|
+
default: '',
|
|
720
|
+
placeholder: 'Text',
|
|
721
|
+
description: 'Title of the new chat or channel',
|
|
722
|
+
};
|
|
723
|
+
exports.variable_is_channel = {
|
|
724
|
+
displayName: 'Is Channel?',
|
|
725
|
+
name: 'is_channel',
|
|
726
|
+
type: 'boolean',
|
|
727
|
+
displayOptions: {
|
|
728
|
+
show: {
|
|
729
|
+
operation: ['createNewSupergroupChat'],
|
|
730
|
+
resource: ['chat'],
|
|
731
|
+
},
|
|
732
|
+
},
|
|
733
|
+
default: false,
|
|
734
|
+
placeholder: 'false',
|
|
735
|
+
description: 'Whether to create a channel',
|
|
736
|
+
};
|
|
737
|
+
exports.variable_description = {
|
|
738
|
+
displayName: 'Description',
|
|
739
|
+
name: 'description',
|
|
740
|
+
type: 'string',
|
|
741
|
+
displayOptions: {
|
|
742
|
+
show: {
|
|
743
|
+
operation: ['createNewSupergroupChat'],
|
|
744
|
+
resource: ['chat'],
|
|
745
|
+
},
|
|
746
|
+
},
|
|
747
|
+
default: '',
|
|
748
|
+
placeholder: 'Text',
|
|
749
|
+
description: 'Chat description; 0-255 characters',
|
|
750
|
+
};
|
|
751
|
+
exports.variable_user_ids = {
|
|
752
|
+
displayName: 'User IDs',
|
|
753
|
+
name: 'user_ids',
|
|
754
|
+
type: 'string',
|
|
755
|
+
required: true,
|
|
756
|
+
displayOptions: {
|
|
757
|
+
show: {
|
|
758
|
+
operation: ['addChatMembers'],
|
|
759
|
+
resource: ['chat'],
|
|
760
|
+
},
|
|
761
|
+
},
|
|
762
|
+
default: '',
|
|
763
|
+
placeholder: '122323,2322222',
|
|
764
|
+
description: 'Comma-separated list of user_ids to be added to Supergroup or Channel',
|
|
765
|
+
};
|
|
766
|
+
exports.variable_chat_action = {
|
|
767
|
+
displayName: 'Action',
|
|
768
|
+
name: 'action',
|
|
769
|
+
type: 'options',
|
|
770
|
+
required: true,
|
|
771
|
+
displayOptions: {
|
|
772
|
+
show: {
|
|
773
|
+
operation: ['sendChatAction'],
|
|
774
|
+
resource: ['chat'],
|
|
775
|
+
},
|
|
776
|
+
},
|
|
777
|
+
options: [
|
|
778
|
+
{
|
|
779
|
+
action: "Cancel",
|
|
780
|
+
name: "Cancel",
|
|
781
|
+
value: "chatActionCancel"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
action: "Recording voice note",
|
|
785
|
+
name: "Recording Voice Note",
|
|
786
|
+
value: "chatActionRecordingVoiceNote"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
action: "Typing",
|
|
790
|
+
name: "Typing",
|
|
791
|
+
value: "chatActionTyping"
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
action: "Uploading document",
|
|
795
|
+
name: "Uploading Document",
|
|
796
|
+
value: "chatActionUploadingDocument"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
action: "Uploading photo",
|
|
800
|
+
name: "Uploading Photo",
|
|
801
|
+
value: "chatActionUploadingPhoto"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
action: "Uploading video",
|
|
805
|
+
name: "Uploading Video",
|
|
806
|
+
value: "chatActionUploadingVideo"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
action: "Uploading voice note",
|
|
810
|
+
name: "Uploading Voice Note",
|
|
811
|
+
value: "chatActionUploadingVoiceNote"
|
|
812
|
+
},
|
|
813
|
+
],
|
|
814
|
+
default: 'chatActionTyping',
|
|
815
|
+
description: 'The action description',
|
|
816
|
+
};
|
|
817
|
+
exports.variable_audio_path = {
|
|
818
|
+
displayName: 'Audio Source',
|
|
819
|
+
name: 'audioSource',
|
|
820
|
+
type: 'options',
|
|
821
|
+
default: 'filePath',
|
|
822
|
+
description: 'Whether to use a local file path or binary data from previous node',
|
|
823
|
+
required: true,
|
|
824
|
+
displayOptions: {
|
|
825
|
+
show: {
|
|
826
|
+
operation: ['sendMessageAudio'],
|
|
827
|
+
resource: ['message'],
|
|
828
|
+
},
|
|
829
|
+
},
|
|
830
|
+
options: [
|
|
831
|
+
{
|
|
832
|
+
name: 'Local File Path',
|
|
833
|
+
value: 'filePath',
|
|
834
|
+
description: 'Use a local file path',
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
name: 'Binary Data',
|
|
838
|
+
value: 'binaryData',
|
|
839
|
+
description: 'Use binary data from previous node',
|
|
840
|
+
},
|
|
841
|
+
],
|
|
842
|
+
};
|
|
843
|
+
exports.variable_audio_file_path = {
|
|
844
|
+
displayName: 'Audio File Path',
|
|
845
|
+
name: 'audioFilePath',
|
|
846
|
+
type: 'string',
|
|
847
|
+
default: '',
|
|
848
|
+
description: 'Path to local audio file',
|
|
849
|
+
required: true,
|
|
850
|
+
displayOptions: {
|
|
851
|
+
show: {
|
|
852
|
+
operation: ['sendMessageAudio'],
|
|
853
|
+
resource: ['message'],
|
|
854
|
+
audioSource: ['filePath'],
|
|
855
|
+
},
|
|
856
|
+
},
|
|
857
|
+
};
|
|
858
|
+
exports.variable_audio_binary_property_name = {
|
|
859
|
+
displayName: 'Binary Property',
|
|
860
|
+
name: 'audioBinaryPropertyName',
|
|
861
|
+
type: 'string',
|
|
862
|
+
default: 'data',
|
|
863
|
+
description: 'Name of the binary property containing the audio data',
|
|
864
|
+
required: true,
|
|
865
|
+
displayOptions: {
|
|
866
|
+
show: {
|
|
867
|
+
operation: ['sendMessageAudio'],
|
|
868
|
+
resource: ['message'],
|
|
869
|
+
audioSource: ['binaryData'],
|
|
870
|
+
},
|
|
871
|
+
},
|
|
872
|
+
};
|
|
873
|
+
exports.variable_file_path = {
|
|
874
|
+
displayName: 'File Path',
|
|
875
|
+
name: 'filePath',
|
|
876
|
+
type: 'string',
|
|
877
|
+
default: '',
|
|
878
|
+
description: 'Path to local file',
|
|
879
|
+
required: true,
|
|
880
|
+
displayOptions: {
|
|
881
|
+
show: {
|
|
882
|
+
operation: ['sendMessageFile'],
|
|
883
|
+
resource: ['message'],
|
|
884
|
+
},
|
|
885
|
+
},
|
|
886
|
+
};
|
|
887
|
+
exports.variable_audio_caption = {
|
|
888
|
+
displayName: 'Audio Caption',
|
|
889
|
+
name: 'audioCaption',
|
|
890
|
+
type: 'string',
|
|
891
|
+
default: '',
|
|
892
|
+
description: 'Optional caption for the audio file',
|
|
893
|
+
displayOptions: {
|
|
894
|
+
show: {
|
|
895
|
+
operation: ['sendMessageAudio'],
|
|
896
|
+
resource: ['message'],
|
|
897
|
+
},
|
|
898
|
+
},
|
|
899
|
+
};
|
|
900
|
+
exports.variable_send_as_voice = {
|
|
901
|
+
displayName: 'Send as Voice Message',
|
|
902
|
+
name: 'sendAsVoice',
|
|
903
|
+
type: 'boolean',
|
|
904
|
+
default: false,
|
|
905
|
+
description: 'Whether to send as a voice message with waveform visualization (true) or as a regular audio file (false)',
|
|
906
|
+
displayOptions: {
|
|
907
|
+
show: {
|
|
908
|
+
operation: ['sendMessageAudio'],
|
|
909
|
+
resource: ['message'],
|
|
910
|
+
},
|
|
911
|
+
},
|
|
912
|
+
};
|
|
913
|
+
exports.variable_file_caption = {
|
|
914
|
+
displayName: 'File Caption',
|
|
915
|
+
name: 'fileCaption',
|
|
916
|
+
type: 'string',
|
|
917
|
+
default: '',
|
|
918
|
+
description: 'Optional caption for the file',
|
|
919
|
+
displayOptions: {
|
|
920
|
+
show: {
|
|
921
|
+
operation: ['sendMessageFile', 'sendMessageVideo'],
|
|
922
|
+
resource: ['message'],
|
|
923
|
+
},
|
|
924
|
+
},
|
|
925
|
+
};
|
|
926
|
+
exports.variable_json = {
|
|
927
|
+
displayName: 'Request (JSON)',
|
|
928
|
+
name: 'request_json',
|
|
929
|
+
type: 'json',
|
|
930
|
+
displayOptions: {
|
|
931
|
+
show: {
|
|
932
|
+
operation: ['customRequest'],
|
|
933
|
+
resource: ['request'],
|
|
934
|
+
},
|
|
935
|
+
},
|
|
936
|
+
default: '',
|
|
937
|
+
};
|
|
938
|
+
exports.variable_url = {
|
|
939
|
+
displayName: 'Telegram Message URL',
|
|
940
|
+
name: 'url',
|
|
941
|
+
type: 'string',
|
|
942
|
+
displayOptions: {
|
|
943
|
+
show: {
|
|
944
|
+
operation: ['getMessageLinkInfo'],
|
|
945
|
+
resource: ['message'],
|
|
946
|
+
},
|
|
947
|
+
},
|
|
948
|
+
default: '',
|
|
949
|
+
placeholder: 'https://t.me/telepilotco/42'
|
|
950
|
+
};
|
|
951
|
+
exports.variable_video_duration = {
|
|
952
|
+
displayName: 'Duration Of The Video, In Seconds',
|
|
953
|
+
name: 'videoDuration',
|
|
954
|
+
type: 'number',
|
|
955
|
+
displayOptions: {
|
|
956
|
+
show: {
|
|
957
|
+
operation: ['sendMessageVideo'],
|
|
958
|
+
resource: ['message'],
|
|
959
|
+
},
|
|
960
|
+
},
|
|
961
|
+
default: '',
|
|
962
|
+
placeholder: '30'
|
|
963
|
+
};
|
|
964
|
+
exports.variable_video_width = {
|
|
965
|
+
displayName: 'Video Width',
|
|
966
|
+
name: 'videoWidth',
|
|
967
|
+
type: 'number',
|
|
968
|
+
displayOptions: {
|
|
969
|
+
show: {
|
|
970
|
+
operation: ['sendMessageVideo'],
|
|
971
|
+
resource: ['message'],
|
|
972
|
+
},
|
|
973
|
+
},
|
|
974
|
+
default: '',
|
|
975
|
+
placeholder: '320'
|
|
976
|
+
};
|
|
977
|
+
exports.variable_video_height = {
|
|
978
|
+
displayName: 'Video Height',
|
|
979
|
+
name: 'videoHeight',
|
|
980
|
+
type: 'number',
|
|
981
|
+
displayOptions: {
|
|
982
|
+
show: {
|
|
983
|
+
operation: ['sendMessageVideo'],
|
|
984
|
+
resource: ['message'],
|
|
985
|
+
},
|
|
986
|
+
},
|
|
987
|
+
default: '',
|
|
988
|
+
placeholder: '320'
|
|
989
|
+
};
|
|
990
|
+
exports.variable_video_supports_streaming = {
|
|
991
|
+
displayName: 'On, If The Video Is Supposed To Be Streamed',
|
|
992
|
+
name: 'videoSupportsStreaming',
|
|
993
|
+
type: 'boolean',
|
|
994
|
+
displayOptions: {
|
|
995
|
+
show: {
|
|
996
|
+
operation: ['sendMessageVideo'],
|
|
997
|
+
resource: ['message'],
|
|
998
|
+
},
|
|
999
|
+
},
|
|
1000
|
+
default: 'true'
|
|
1001
|
+
};
|
|
1002
|
+
exports.variable_thumbnail_width = {
|
|
1003
|
+
displayName: 'Thumbnail Width',
|
|
1004
|
+
name: 'thumbnailWidth',
|
|
1005
|
+
type: 'number',
|
|
1006
|
+
displayOptions: {
|
|
1007
|
+
show: {
|
|
1008
|
+
operation: ['sendMessageVideo'],
|
|
1009
|
+
resource: ['message'],
|
|
1010
|
+
},
|
|
1011
|
+
},
|
|
1012
|
+
default: '',
|
|
1013
|
+
placeholder: '320'
|
|
1014
|
+
};
|
|
1015
|
+
exports.variable_thumbnail_height = {
|
|
1016
|
+
displayName: 'Thumbnail Height',
|
|
1017
|
+
name: 'thumbnailHeight',
|
|
1018
|
+
type: 'number',
|
|
1019
|
+
displayOptions: {
|
|
1020
|
+
show: {
|
|
1021
|
+
operation: ['sendMessageVideo'],
|
|
1022
|
+
resource: ['message'],
|
|
1023
|
+
},
|
|
1024
|
+
},
|
|
1025
|
+
default: '',
|
|
1026
|
+
placeholder: '320'
|
|
1027
|
+
};
|
|
1028
|
+
exports.variable_thumbnail_file_path = {
|
|
1029
|
+
displayName: 'JPEG Thumnail Of The Video (Local File Path)',
|
|
1030
|
+
name: 'thumbnailFilePath',
|
|
1031
|
+
type: 'string',
|
|
1032
|
+
displayOptions: {
|
|
1033
|
+
show: {
|
|
1034
|
+
operation: ['sendMessageVideo'],
|
|
1035
|
+
resource: ['message'],
|
|
1036
|
+
},
|
|
1037
|
+
},
|
|
1038
|
+
default: '',
|
|
1039
|
+
placeholder: '/home/telepilot/my-video-thumbnail.jpeg'
|
|
1040
|
+
};
|
|
1041
|
+
//# sourceMappingURL=common.descriptions.js.map
|