@rizkifirmansyah/n8n-nodes-threads-api 1.0.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 +21 -0
- package/README.md +165 -0
- package/dist/credentials/ThreadsApi.credentials.d.ts +10 -0
- package/dist/credentials/ThreadsApi.credentials.js +43 -0
- package/dist/credentials/ThreadsApi.credentials.js.map +1 -0
- package/dist/credentials/ThreadsOAuth2Api.credentials.d.ts +11 -0
- package/dist/credentials/ThreadsOAuth2Api.credentials.js +69 -0
- package/dist/credentials/ThreadsOAuth2Api.credentials.js.map +1 -0
- package/dist/credentials/threads.dark.svg +4 -0
- package/dist/credentials/threads.svg +4 -0
- package/dist/nodes/Threads/GenericFunctions.d.ts +6 -0
- package/dist/nodes/Threads/GenericFunctions.js +94 -0
- package/dist/nodes/Threads/GenericFunctions.js.map +1 -0
- package/dist/nodes/Threads/InsightDescription.d.ts +3 -0
- package/dist/nodes/Threads/InsightDescription.js +171 -0
- package/dist/nodes/Threads/InsightDescription.js.map +1 -0
- package/dist/nodes/Threads/PostDescription.d.ts +3 -0
- package/dist/nodes/Threads/PostDescription.js +417 -0
- package/dist/nodes/Threads/PostDescription.js.map +1 -0
- package/dist/nodes/Threads/ReplyDescription.d.ts +3 -0
- package/dist/nodes/Threads/ReplyDescription.js +308 -0
- package/dist/nodes/Threads/ReplyDescription.js.map +1 -0
- package/dist/nodes/Threads/SearchDescription.d.ts +3 -0
- package/dist/nodes/Threads/SearchDescription.js +95 -0
- package/dist/nodes/Threads/SearchDescription.js.map +1 -0
- package/dist/nodes/Threads/Threads.node.d.ts +5 -0
- package/dist/nodes/Threads/Threads.node.js +512 -0
- package/dist/nodes/Threads/Threads.node.js.map +1 -0
- package/dist/nodes/Threads/ThreadsTrigger.node.d.ts +5 -0
- package/dist/nodes/Threads/ThreadsTrigger.node.js +139 -0
- package/dist/nodes/Threads/ThreadsTrigger.node.js.map +1 -0
- package/dist/nodes/Threads/UserDescription.d.ts +3 -0
- package/dist/nodes/Threads/UserDescription.js +94 -0
- package/dist/nodes/Threads/UserDescription.js.map +1 -0
- package/dist/nodes/Threads/threads.dark.svg +3 -0
- package/dist/nodes/Threads/threads.svg +3 -0
- package/dist/package.json +60 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +60 -0
|
@@ -0,0 +1,417 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.postFields = exports.postOperations = void 0;
|
|
4
|
+
exports.postOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['post'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Create and Publish',
|
|
18
|
+
value: 'create',
|
|
19
|
+
description: 'Create and immediately publish a post (text, image, video, or carousel)',
|
|
20
|
+
action: 'Create and publish a post',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: 'Create Media Container',
|
|
24
|
+
value: 'createContainer',
|
|
25
|
+
description: 'Create a media container without publishing',
|
|
26
|
+
action: 'Create a media container',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Delete',
|
|
30
|
+
value: 'delete',
|
|
31
|
+
description: 'Delete a post',
|
|
32
|
+
action: 'Delete a post',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Get',
|
|
36
|
+
value: 'get',
|
|
37
|
+
description: 'Get a specific post by ID',
|
|
38
|
+
action: 'Get a post',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Get Many',
|
|
42
|
+
value: 'getAll',
|
|
43
|
+
description: 'Get posts published by a user',
|
|
44
|
+
action: 'Get many posts',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Publish Container',
|
|
48
|
+
value: 'publish',
|
|
49
|
+
description: 'Publish an existing media container',
|
|
50
|
+
action: 'Publish a media container',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
default: 'create',
|
|
54
|
+
},
|
|
55
|
+
];
|
|
56
|
+
exports.postFields = [
|
|
57
|
+
{
|
|
58
|
+
displayName: 'User ID',
|
|
59
|
+
name: 'userId',
|
|
60
|
+
type: 'string',
|
|
61
|
+
default: 'me',
|
|
62
|
+
required: true,
|
|
63
|
+
displayOptions: {
|
|
64
|
+
show: {
|
|
65
|
+
resource: ['post'],
|
|
66
|
+
operation: ['create', 'createContainer', 'getAll', 'publish'],
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
description: 'The Threads User ID or "me" for authenticated user',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
displayName: 'Media Type',
|
|
73
|
+
name: 'mediaType',
|
|
74
|
+
type: 'options',
|
|
75
|
+
options: [
|
|
76
|
+
{
|
|
77
|
+
name: 'Text',
|
|
78
|
+
value: 'TEXT',
|
|
79
|
+
description: 'Post text content with optional link attachment',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
name: 'Image',
|
|
83
|
+
value: 'IMAGE',
|
|
84
|
+
description: 'Post a single image with caption',
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
name: 'Video',
|
|
88
|
+
value: 'VIDEO',
|
|
89
|
+
description: 'Post a single video with caption',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
name: 'Carousel',
|
|
93
|
+
value: 'CAROUSEL',
|
|
94
|
+
description: 'Post multiple images or videos in a carousel',
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
default: 'TEXT',
|
|
98
|
+
required: true,
|
|
99
|
+
displayOptions: {
|
|
100
|
+
show: {
|
|
101
|
+
resource: ['post'],
|
|
102
|
+
operation: ['create', 'createContainer'],
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
description: 'The type of media to post',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
displayName: 'Text',
|
|
109
|
+
name: 'text',
|
|
110
|
+
type: 'string',
|
|
111
|
+
typeOptions: {
|
|
112
|
+
rows: 4,
|
|
113
|
+
},
|
|
114
|
+
default: '',
|
|
115
|
+
required: true,
|
|
116
|
+
displayOptions: {
|
|
117
|
+
show: {
|
|
118
|
+
resource: ['post'],
|
|
119
|
+
operation: ['create', 'createContainer'],
|
|
120
|
+
mediaType: ['TEXT'],
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
description: 'The text content of the post (up to 500 characters)',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
displayName: 'Text',
|
|
127
|
+
name: 'text',
|
|
128
|
+
type: 'string',
|
|
129
|
+
typeOptions: {
|
|
130
|
+
rows: 4,
|
|
131
|
+
},
|
|
132
|
+
default: '',
|
|
133
|
+
displayOptions: {
|
|
134
|
+
show: {
|
|
135
|
+
resource: ['post'],
|
|
136
|
+
operation: ['create', 'createContainer'],
|
|
137
|
+
mediaType: ['IMAGE', 'VIDEO', 'CAROUSEL'],
|
|
138
|
+
},
|
|
139
|
+
},
|
|
140
|
+
description: 'The caption text for the media (up to 500 characters)',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
displayName: 'Image URL',
|
|
144
|
+
name: 'imageUrl',
|
|
145
|
+
type: 'string',
|
|
146
|
+
default: '',
|
|
147
|
+
required: true,
|
|
148
|
+
displayOptions: {
|
|
149
|
+
show: {
|
|
150
|
+
resource: ['post'],
|
|
151
|
+
operation: ['create', 'createContainer'],
|
|
152
|
+
mediaType: ['IMAGE'],
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
description: 'The publicly accessible URL of the image (JPEG or PNG)',
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
displayName: 'Video URL',
|
|
159
|
+
name: 'videoUrl',
|
|
160
|
+
type: 'string',
|
|
161
|
+
default: '',
|
|
162
|
+
required: true,
|
|
163
|
+
displayOptions: {
|
|
164
|
+
show: {
|
|
165
|
+
resource: ['post'],
|
|
166
|
+
operation: ['create', 'createContainer'],
|
|
167
|
+
mediaType: ['VIDEO'],
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
description: 'The publicly accessible URL of the video (MP4 or MOV)',
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
displayName: 'Carousel Items',
|
|
174
|
+
name: 'carouselItems',
|
|
175
|
+
type: 'fixedCollection',
|
|
176
|
+
typeOptions: {
|
|
177
|
+
multipleValues: true,
|
|
178
|
+
},
|
|
179
|
+
default: {},
|
|
180
|
+
required: true,
|
|
181
|
+
displayOptions: {
|
|
182
|
+
show: {
|
|
183
|
+
resource: ['post'],
|
|
184
|
+
operation: ['create', 'createContainer'],
|
|
185
|
+
mediaType: ['CAROUSEL'],
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
options: [
|
|
189
|
+
{
|
|
190
|
+
name: 'items',
|
|
191
|
+
displayName: 'Item',
|
|
192
|
+
values: [
|
|
193
|
+
{
|
|
194
|
+
displayName: 'Media Type',
|
|
195
|
+
name: 'mediaType',
|
|
196
|
+
type: 'options',
|
|
197
|
+
options: [
|
|
198
|
+
{
|
|
199
|
+
name: 'Image',
|
|
200
|
+
value: 'IMAGE',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
name: 'Video',
|
|
204
|
+
value: 'VIDEO',
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
default: 'IMAGE',
|
|
208
|
+
description: 'The type of this carousel item',
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
displayName: 'Media URL',
|
|
212
|
+
name: 'url',
|
|
213
|
+
type: 'string',
|
|
214
|
+
default: '',
|
|
215
|
+
required: true,
|
|
216
|
+
description: 'The publicly accessible URL of the image or video',
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
displayName: 'Alt Text',
|
|
220
|
+
name: 'altText',
|
|
221
|
+
type: 'string',
|
|
222
|
+
default: '',
|
|
223
|
+
description: 'Accessibility description for this media item',
|
|
224
|
+
},
|
|
225
|
+
],
|
|
226
|
+
},
|
|
227
|
+
],
|
|
228
|
+
description: 'Images and videos (between 2 and 10 items) to include in the carousel',
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
displayName: 'Additional Fields',
|
|
232
|
+
name: 'additionalFields',
|
|
233
|
+
type: 'collection',
|
|
234
|
+
placeholder: 'Add Field',
|
|
235
|
+
default: {},
|
|
236
|
+
displayOptions: {
|
|
237
|
+
show: {
|
|
238
|
+
resource: ['post'],
|
|
239
|
+
operation: ['create', 'createContainer'],
|
|
240
|
+
},
|
|
241
|
+
},
|
|
242
|
+
options: [
|
|
243
|
+
{
|
|
244
|
+
displayName: 'Alt Text',
|
|
245
|
+
name: 'altText',
|
|
246
|
+
type: 'string',
|
|
247
|
+
default: '',
|
|
248
|
+
description: 'Accessibility description for single image or video',
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
displayName: 'Link Attachment',
|
|
252
|
+
name: 'linkAttachment',
|
|
253
|
+
type: 'string',
|
|
254
|
+
default: '',
|
|
255
|
+
description: 'URL to attach to a text post (creates a rich link preview)',
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
displayName: 'Reply Control',
|
|
259
|
+
name: 'replyControl',
|
|
260
|
+
type: 'options',
|
|
261
|
+
options: [
|
|
262
|
+
{
|
|
263
|
+
name: 'Everyone',
|
|
264
|
+
value: 'everyone',
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
name: 'Accounts You Follow',
|
|
268
|
+
value: 'accounts_you_follow',
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
name: 'Mentioned Only',
|
|
272
|
+
value: 'mentioned_only',
|
|
273
|
+
},
|
|
274
|
+
],
|
|
275
|
+
default: 'everyone',
|
|
276
|
+
description: 'Determines who can reply to this post',
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
displayName: 'Reply To ID',
|
|
280
|
+
name: 'replyToId',
|
|
281
|
+
type: 'string',
|
|
282
|
+
default: '',
|
|
283
|
+
description: 'ID of the post or reply to respond to',
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
displayName: 'Topic Tag',
|
|
287
|
+
name: 'topicTag',
|
|
288
|
+
type: 'string',
|
|
289
|
+
default: '',
|
|
290
|
+
description: 'A tag/topic for the post (without the # symbol)',
|
|
291
|
+
},
|
|
292
|
+
],
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
displayName: 'Creation ID',
|
|
296
|
+
name: 'creationId',
|
|
297
|
+
type: 'string',
|
|
298
|
+
default: '',
|
|
299
|
+
required: true,
|
|
300
|
+
displayOptions: {
|
|
301
|
+
show: {
|
|
302
|
+
resource: ['post'],
|
|
303
|
+
operation: ['publish'],
|
|
304
|
+
},
|
|
305
|
+
},
|
|
306
|
+
description: 'The ID of the media container to publish',
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
displayName: 'Media ID',
|
|
310
|
+
name: 'mediaId',
|
|
311
|
+
type: 'string',
|
|
312
|
+
default: '',
|
|
313
|
+
required: true,
|
|
314
|
+
displayOptions: {
|
|
315
|
+
show: {
|
|
316
|
+
resource: ['post'],
|
|
317
|
+
operation: ['get', 'delete'],
|
|
318
|
+
},
|
|
319
|
+
},
|
|
320
|
+
description: 'The ID of the post/media to retrieve or delete',
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
displayName: 'Fields',
|
|
324
|
+
name: 'fields',
|
|
325
|
+
type: 'string',
|
|
326
|
+
default: 'id,media_product_type,media_type,media_url,permalink,owner,username,text,timestamp,shortcode,thumbnail_url,children,is_quote_post,has_replies,root_post,replied_to,is_reply',
|
|
327
|
+
displayOptions: {
|
|
328
|
+
show: {
|
|
329
|
+
resource: ['post'],
|
|
330
|
+
operation: ['get'],
|
|
331
|
+
},
|
|
332
|
+
},
|
|
333
|
+
description: 'Comma-separated list of fields to return',
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
displayName: 'Return All',
|
|
337
|
+
name: 'returnAll',
|
|
338
|
+
type: 'boolean',
|
|
339
|
+
displayOptions: {
|
|
340
|
+
show: {
|
|
341
|
+
resource: ['post'],
|
|
342
|
+
operation: ['getAll'],
|
|
343
|
+
},
|
|
344
|
+
},
|
|
345
|
+
default: false,
|
|
346
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
displayName: 'Limit',
|
|
350
|
+
name: 'limit',
|
|
351
|
+
type: 'number',
|
|
352
|
+
displayOptions: {
|
|
353
|
+
show: {
|
|
354
|
+
resource: ['post'],
|
|
355
|
+
operation: ['getAll'],
|
|
356
|
+
returnAll: [false],
|
|
357
|
+
},
|
|
358
|
+
},
|
|
359
|
+
typeOptions: {
|
|
360
|
+
minValue: 1,
|
|
361
|
+
maxValue: 100,
|
|
362
|
+
},
|
|
363
|
+
default: 50,
|
|
364
|
+
description: 'Max number of results to return',
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
displayName: 'Options',
|
|
368
|
+
name: 'options',
|
|
369
|
+
type: 'collection',
|
|
370
|
+
placeholder: 'Add Option',
|
|
371
|
+
default: {},
|
|
372
|
+
displayOptions: {
|
|
373
|
+
show: {
|
|
374
|
+
resource: ['post'],
|
|
375
|
+
operation: ['getAll'],
|
|
376
|
+
},
|
|
377
|
+
},
|
|
378
|
+
options: [
|
|
379
|
+
{
|
|
380
|
+
displayName: 'After',
|
|
381
|
+
name: 'after',
|
|
382
|
+
type: 'string',
|
|
383
|
+
default: '',
|
|
384
|
+
description: 'Cursor pointing to end of page for forward pagination',
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
displayName: 'Before',
|
|
388
|
+
name: 'before',
|
|
389
|
+
type: 'string',
|
|
390
|
+
default: '',
|
|
391
|
+
description: 'Cursor pointing to start of page for backward pagination',
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
displayName: 'Fields',
|
|
395
|
+
name: 'fields',
|
|
396
|
+
type: 'string',
|
|
397
|
+
default: 'id,media_product_type,media_type,media_url,permalink,owner,username,text,timestamp,shortcode,thumbnail_url,children,is_quote_post',
|
|
398
|
+
description: 'Comma-separated list of fields to return',
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
displayName: 'Since',
|
|
402
|
+
name: 'since',
|
|
403
|
+
type: 'dateTime',
|
|
404
|
+
default: '',
|
|
405
|
+
description: 'Only return posts created after this timestamp',
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
displayName: 'Until',
|
|
409
|
+
name: 'until',
|
|
410
|
+
type: 'dateTime',
|
|
411
|
+
default: '',
|
|
412
|
+
description: 'Only return posts created before this timestamp',
|
|
413
|
+
},
|
|
414
|
+
],
|
|
415
|
+
},
|
|
416
|
+
];
|
|
417
|
+
//# sourceMappingURL=PostDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PostDescription.js","sourceRoot":"","sources":["../../../nodes/Threads/PostDescription.ts"],"names":[],"mappings":"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"}
|