n8n-nodes-socialfetch 0.13.5 → 0.15.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/dist/nodes/SocialFetch/descriptions/facebook.generated.js +1 -1
- package/dist/nodes/SocialFetch/descriptions/linkedin.generated.js +511 -7
- package/dist/nodes/SocialFetch/descriptions/reddit.generated.js +3 -3
- package/dist/nodes/SocialFetch/descriptions/twitter.generated.js +219 -18
- package/dist/nodes/SocialFetch/descriptions/web.generated.js +234 -26
- package/dist/nodes/SocialFetch/descriptions/youtube.generated.js +1 -1
- package/package.json +1 -1
|
@@ -1136,7 +1136,7 @@ exports.facebook = [
|
|
|
1136
1136
|
"name": "trim",
|
|
1137
1137
|
"type": "boolean",
|
|
1138
1138
|
"default": false,
|
|
1139
|
-
"description": "When true, requests a smaller
|
|
1139
|
+
"description": "When true, requests a smaller payload before normalization.",
|
|
1140
1140
|
"routing": {
|
|
1141
1141
|
"send": {
|
|
1142
1142
|
"type": "query",
|
|
@@ -17,10 +17,10 @@ exports.linkedin = [
|
|
|
17
17
|
"default": "linkedin.profile.get",
|
|
18
18
|
"options": [
|
|
19
19
|
{
|
|
20
|
-
"name": "
|
|
20
|
+
"name": "Profiles",
|
|
21
21
|
"value": "linkedin.profile.get",
|
|
22
|
-
"action": "Get LinkedIn
|
|
23
|
-
"description": "Get
|
|
22
|
+
"action": "Get LinkedIn profiles",
|
|
23
|
+
"description": "Get LinkedIn profiles by URL or handle.",
|
|
24
24
|
"routing": {
|
|
25
25
|
"request": {
|
|
26
26
|
"method": "GET",
|
|
@@ -28,6 +28,42 @@ exports.linkedin = [
|
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Profile Posts",
|
|
33
|
+
"value": "linkedin.profiles.posts.list",
|
|
34
|
+
"action": "List LinkedIn profile posts",
|
|
35
|
+
"description": "Get posts from a LinkedIn profile.",
|
|
36
|
+
"routing": {
|
|
37
|
+
"request": {
|
|
38
|
+
"method": "GET",
|
|
39
|
+
"url": "/v1/linkedin/profiles/posts"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "People Search",
|
|
45
|
+
"value": "linkedin.people.search.list",
|
|
46
|
+
"action": "Search LinkedIn people",
|
|
47
|
+
"description": "Search LinkedIn people by first and/or last name.",
|
|
48
|
+
"routing": {
|
|
49
|
+
"request": {
|
|
50
|
+
"method": "GET",
|
|
51
|
+
"url": "/v1/linkedin/people/search"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "Organization Page",
|
|
57
|
+
"value": "linkedin.organization.get",
|
|
58
|
+
"action": "Get LinkedIn organization page",
|
|
59
|
+
"description": "Look up LinkedIn company, school, and organization pages by URL.",
|
|
60
|
+
"routing": {
|
|
61
|
+
"request": {
|
|
62
|
+
"method": "GET",
|
|
63
|
+
"url": "/v1/linkedin/organizations"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
31
67
|
{
|
|
32
68
|
"name": "Company Page",
|
|
33
69
|
"value": "linkedin.company.get",
|
|
@@ -63,15 +99,66 @@ exports.linkedin = [
|
|
|
63
99
|
"url": "/v1/linkedin/posts"
|
|
64
100
|
}
|
|
65
101
|
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "Jobs",
|
|
105
|
+
"value": "linkedin.jobs.get",
|
|
106
|
+
"action": "Get LinkedIn jobs",
|
|
107
|
+
"description": "Get LinkedIn job postings by URL.",
|
|
108
|
+
"routing": {
|
|
109
|
+
"request": {
|
|
110
|
+
"method": "GET",
|
|
111
|
+
"url": "/v1/linkedin/jobs"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "Job Search",
|
|
117
|
+
"value": "linkedin.jobs.search.list",
|
|
118
|
+
"action": "Search LinkedIn jobs",
|
|
119
|
+
"description": "Search LinkedIn jobs by keyword and filters.",
|
|
120
|
+
"routing": {
|
|
121
|
+
"request": {
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"url": "/v1/linkedin/jobs/search"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
66
126
|
}
|
|
67
127
|
]
|
|
68
128
|
},
|
|
129
|
+
{
|
|
130
|
+
"displayName": "URL",
|
|
131
|
+
"name": "url",
|
|
132
|
+
"type": "string",
|
|
133
|
+
"typeOptions": {
|
|
134
|
+
"multipleValues": true
|
|
135
|
+
},
|
|
136
|
+
"default": [],
|
|
137
|
+
"description": "LinkedIn profile URL.",
|
|
138
|
+
"required": true,
|
|
139
|
+
"routing": {
|
|
140
|
+
"send": {
|
|
141
|
+
"type": "query",
|
|
142
|
+
"property": "url"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"displayOptions": {
|
|
146
|
+
"show": {
|
|
147
|
+
"resource": [
|
|
148
|
+
"linkedin"
|
|
149
|
+
],
|
|
150
|
+
"operation": [
|
|
151
|
+
"linkedin.profile.get"
|
|
152
|
+
]
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
69
156
|
{
|
|
70
157
|
"displayName": "URL",
|
|
71
158
|
"name": "url",
|
|
72
159
|
"type": "string",
|
|
73
160
|
"default": "",
|
|
74
|
-
"description": "LinkedIn
|
|
161
|
+
"description": "LinkedIn profile URL or vanity handle whose public posts should be listed.",
|
|
75
162
|
"placeholder": "e.g. https://example.com/page",
|
|
76
163
|
"required": true,
|
|
77
164
|
"routing": {
|
|
@@ -86,7 +173,137 @@ exports.linkedin = [
|
|
|
86
173
|
"linkedin"
|
|
87
174
|
],
|
|
88
175
|
"operation": [
|
|
89
|
-
"linkedin.
|
|
176
|
+
"linkedin.profiles.posts.list"
|
|
177
|
+
]
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"displayName": "Additional Fields",
|
|
183
|
+
"name": "additionalOptions",
|
|
184
|
+
"type": "collection",
|
|
185
|
+
"placeholder": "Add Field",
|
|
186
|
+
"default": {},
|
|
187
|
+
"displayOptions": {
|
|
188
|
+
"show": {
|
|
189
|
+
"resource": [
|
|
190
|
+
"linkedin"
|
|
191
|
+
],
|
|
192
|
+
"operation": [
|
|
193
|
+
"linkedin.profiles.posts.list"
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"options": [
|
|
198
|
+
{
|
|
199
|
+
"displayName": "Start Date",
|
|
200
|
+
"name": "startDate",
|
|
201
|
+
"type": "string",
|
|
202
|
+
"default": "",
|
|
203
|
+
"description": "Optional start of the date range for posts to include.",
|
|
204
|
+
"routing": {
|
|
205
|
+
"send": {
|
|
206
|
+
"type": "query",
|
|
207
|
+
"property": "startDate"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"displayName": "End Date",
|
|
213
|
+
"name": "endDate",
|
|
214
|
+
"type": "string",
|
|
215
|
+
"default": "",
|
|
216
|
+
"description": "Optional end of the date range for posts to include.",
|
|
217
|
+
"routing": {
|
|
218
|
+
"send": {
|
|
219
|
+
"type": "query",
|
|
220
|
+
"property": "endDate"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"displayName": "Only Authored Posts",
|
|
226
|
+
"name": "onlyAuthoredPosts",
|
|
227
|
+
"type": "boolean",
|
|
228
|
+
"default": false,
|
|
229
|
+
"description": "When true, return only posts created by the profile owner.",
|
|
230
|
+
"routing": {
|
|
231
|
+
"send": {
|
|
232
|
+
"type": "query",
|
|
233
|
+
"property": "onlyAuthoredPosts"
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"displayName": "Additional Fields",
|
|
241
|
+
"name": "additionalOptions",
|
|
242
|
+
"type": "collection",
|
|
243
|
+
"placeholder": "Add Field",
|
|
244
|
+
"default": {},
|
|
245
|
+
"displayOptions": {
|
|
246
|
+
"show": {
|
|
247
|
+
"resource": [
|
|
248
|
+
"linkedin"
|
|
249
|
+
],
|
|
250
|
+
"operation": [
|
|
251
|
+
"linkedin.people.search.list"
|
|
252
|
+
]
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"options": [
|
|
256
|
+
{
|
|
257
|
+
"displayName": "First Name",
|
|
258
|
+
"name": "firstName",
|
|
259
|
+
"type": "string",
|
|
260
|
+
"default": "",
|
|
261
|
+
"description": "First name filter. At least one of `firstName` or `lastName` is required.",
|
|
262
|
+
"routing": {
|
|
263
|
+
"send": {
|
|
264
|
+
"type": "query",
|
|
265
|
+
"property": "firstName"
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"displayName": "Last Name",
|
|
271
|
+
"name": "lastName",
|
|
272
|
+
"type": "string",
|
|
273
|
+
"default": "",
|
|
274
|
+
"description": "Last name filter. At least one of `firstName` or `lastName` is required.",
|
|
275
|
+
"routing": {
|
|
276
|
+
"send": {
|
|
277
|
+
"type": "query",
|
|
278
|
+
"property": "lastName"
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
]
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"displayName": "URL",
|
|
286
|
+
"name": "url",
|
|
287
|
+
"type": "string",
|
|
288
|
+
"typeOptions": {
|
|
289
|
+
"multipleValues": true
|
|
290
|
+
},
|
|
291
|
+
"default": [],
|
|
292
|
+
"description": "LinkedIn organization page URL.",
|
|
293
|
+
"required": true,
|
|
294
|
+
"routing": {
|
|
295
|
+
"send": {
|
|
296
|
+
"type": "query",
|
|
297
|
+
"property": "url"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"displayOptions": {
|
|
301
|
+
"show": {
|
|
302
|
+
"resource": [
|
|
303
|
+
"linkedin"
|
|
304
|
+
],
|
|
305
|
+
"operation": [
|
|
306
|
+
"linkedin.organization.get"
|
|
90
307
|
]
|
|
91
308
|
}
|
|
92
309
|
}
|
|
@@ -96,7 +313,7 @@ exports.linkedin = [
|
|
|
96
313
|
"name": "url",
|
|
97
314
|
"type": "string",
|
|
98
315
|
"default": "",
|
|
99
|
-
"description": "LinkedIn company page URL for this lookup.",
|
|
316
|
+
"description": "LinkedIn company page URL for this lookup. School and organization-guest pages are not supported; use `GET /v1/linkedin/organizations`.",
|
|
100
317
|
"placeholder": "e.g. https://example.com/page",
|
|
101
318
|
"required": true,
|
|
102
319
|
"routing": {
|
|
@@ -121,7 +338,7 @@ exports.linkedin = [
|
|
|
121
338
|
"name": "url",
|
|
122
339
|
"type": "string",
|
|
123
340
|
"default": "",
|
|
124
|
-
"description": "
|
|
341
|
+
"description": "LinkedIn company page URL or slug whose posts should be listed.",
|
|
125
342
|
"placeholder": "e.g. https://example.com/page",
|
|
126
343
|
"required": true,
|
|
127
344
|
"routing": {
|
|
@@ -197,5 +414,292 @@ exports.linkedin = [
|
|
|
197
414
|
]
|
|
198
415
|
}
|
|
199
416
|
}
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"displayName": "URL",
|
|
420
|
+
"name": "url",
|
|
421
|
+
"type": "string",
|
|
422
|
+
"typeOptions": {
|
|
423
|
+
"multipleValues": true
|
|
424
|
+
},
|
|
425
|
+
"default": [],
|
|
426
|
+
"description": "LinkedIn job posting URL to look up.",
|
|
427
|
+
"required": true,
|
|
428
|
+
"routing": {
|
|
429
|
+
"send": {
|
|
430
|
+
"type": "query",
|
|
431
|
+
"property": "url"
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"displayOptions": {
|
|
435
|
+
"show": {
|
|
436
|
+
"resource": [
|
|
437
|
+
"linkedin"
|
|
438
|
+
],
|
|
439
|
+
"operation": [
|
|
440
|
+
"linkedin.jobs.get"
|
|
441
|
+
]
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"displayName": "Keyword",
|
|
447
|
+
"name": "keyword",
|
|
448
|
+
"type": "string",
|
|
449
|
+
"default": "",
|
|
450
|
+
"description": "Search keyword for LinkedIn job listings.",
|
|
451
|
+
"required": true,
|
|
452
|
+
"routing": {
|
|
453
|
+
"send": {
|
|
454
|
+
"type": "query",
|
|
455
|
+
"property": "keyword"
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
"displayOptions": {
|
|
459
|
+
"show": {
|
|
460
|
+
"resource": [
|
|
461
|
+
"linkedin"
|
|
462
|
+
],
|
|
463
|
+
"operation": [
|
|
464
|
+
"linkedin.jobs.search.list"
|
|
465
|
+
]
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"displayName": "Location",
|
|
471
|
+
"name": "location",
|
|
472
|
+
"type": "string",
|
|
473
|
+
"default": "",
|
|
474
|
+
"description": "Location label for the search.",
|
|
475
|
+
"required": true,
|
|
476
|
+
"routing": {
|
|
477
|
+
"send": {
|
|
478
|
+
"type": "query",
|
|
479
|
+
"property": "location"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"displayOptions": {
|
|
483
|
+
"show": {
|
|
484
|
+
"resource": [
|
|
485
|
+
"linkedin"
|
|
486
|
+
],
|
|
487
|
+
"operation": [
|
|
488
|
+
"linkedin.jobs.search.list"
|
|
489
|
+
]
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"displayName": "Additional Fields",
|
|
495
|
+
"name": "additionalOptions",
|
|
496
|
+
"type": "collection",
|
|
497
|
+
"placeholder": "Add Field",
|
|
498
|
+
"default": {},
|
|
499
|
+
"displayOptions": {
|
|
500
|
+
"show": {
|
|
501
|
+
"resource": [
|
|
502
|
+
"linkedin"
|
|
503
|
+
],
|
|
504
|
+
"operation": [
|
|
505
|
+
"linkedin.jobs.search.list"
|
|
506
|
+
]
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"options": [
|
|
510
|
+
{
|
|
511
|
+
"displayName": "Country",
|
|
512
|
+
"name": "country",
|
|
513
|
+
"type": "string",
|
|
514
|
+
"default": "",
|
|
515
|
+
"description": "Optional two-letter country code.",
|
|
516
|
+
"routing": {
|
|
517
|
+
"send": {
|
|
518
|
+
"type": "query",
|
|
519
|
+
"property": "country"
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"displayName": "Time Range",
|
|
525
|
+
"name": "timeRange",
|
|
526
|
+
"type": "options",
|
|
527
|
+
"options": [
|
|
528
|
+
{
|
|
529
|
+
"name": "Any",
|
|
530
|
+
"value": "any"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"name": "Past Month",
|
|
534
|
+
"value": "past-month"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"name": "Past Week",
|
|
538
|
+
"value": "past-week"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"name": "Past 24 Hours",
|
|
542
|
+
"value": "past-24-hours"
|
|
543
|
+
}
|
|
544
|
+
],
|
|
545
|
+
"default": "any",
|
|
546
|
+
"description": "Optional time range filter for when jobs were posted.",
|
|
547
|
+
"routing": {
|
|
548
|
+
"send": {
|
|
549
|
+
"type": "query",
|
|
550
|
+
"property": "timeRange"
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"displayName": "Job Type",
|
|
556
|
+
"name": "jobType",
|
|
557
|
+
"type": "options",
|
|
558
|
+
"options": [
|
|
559
|
+
{
|
|
560
|
+
"name": "Full Time",
|
|
561
|
+
"value": "full-time"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"name": "Part Time",
|
|
565
|
+
"value": "part-time"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"name": "Contract",
|
|
569
|
+
"value": "contract"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "Temporary",
|
|
573
|
+
"value": "temporary"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"name": "Volunteer",
|
|
577
|
+
"value": "volunteer"
|
|
578
|
+
}
|
|
579
|
+
],
|
|
580
|
+
"default": "full-time",
|
|
581
|
+
"description": "Optional job type filter.",
|
|
582
|
+
"routing": {
|
|
583
|
+
"send": {
|
|
584
|
+
"type": "query",
|
|
585
|
+
"property": "jobType"
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"displayName": "Experience Level",
|
|
591
|
+
"name": "experienceLevel",
|
|
592
|
+
"type": "options",
|
|
593
|
+
"options": [
|
|
594
|
+
{
|
|
595
|
+
"name": "Internship",
|
|
596
|
+
"value": "internship"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"name": "Entry Level",
|
|
600
|
+
"value": "entry-level"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"name": "Associate",
|
|
604
|
+
"value": "associate"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"name": "Mid Senior Level",
|
|
608
|
+
"value": "mid-senior-level"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"name": "Director",
|
|
612
|
+
"value": "director"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "Executive",
|
|
616
|
+
"value": "executive"
|
|
617
|
+
}
|
|
618
|
+
],
|
|
619
|
+
"default": "internship",
|
|
620
|
+
"description": "Optional experience level filter.",
|
|
621
|
+
"routing": {
|
|
622
|
+
"send": {
|
|
623
|
+
"type": "query",
|
|
624
|
+
"property": "experienceLevel"
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"displayName": "Remote",
|
|
630
|
+
"name": "remote",
|
|
631
|
+
"type": "options",
|
|
632
|
+
"options": [
|
|
633
|
+
{
|
|
634
|
+
"name": "On Site",
|
|
635
|
+
"value": "on-site"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"name": "Remote",
|
|
639
|
+
"value": "remote"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"name": "Hybrid",
|
|
643
|
+
"value": "hybrid"
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"default": "on-site",
|
|
647
|
+
"description": "Optional work arrangement filter.",
|
|
648
|
+
"routing": {
|
|
649
|
+
"send": {
|
|
650
|
+
"type": "query",
|
|
651
|
+
"property": "remote"
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"displayName": "Company",
|
|
657
|
+
"name": "company",
|
|
658
|
+
"type": "string",
|
|
659
|
+
"default": "",
|
|
660
|
+
"description": "Optional company name filter.",
|
|
661
|
+
"routing": {
|
|
662
|
+
"send": {
|
|
663
|
+
"type": "query",
|
|
664
|
+
"property": "company"
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"displayName": "Location Radius",
|
|
670
|
+
"name": "locationRadius",
|
|
671
|
+
"type": "options",
|
|
672
|
+
"options": [
|
|
673
|
+
{
|
|
674
|
+
"name": "Exact Location",
|
|
675
|
+
"value": "exact-location"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "5 Miles",
|
|
679
|
+
"value": "5-miles"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"name": "10 Miles",
|
|
683
|
+
"value": "10-miles"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"name": "25 Miles",
|
|
687
|
+
"value": "25-miles"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"name": "50 Miles",
|
|
691
|
+
"value": "50-miles"
|
|
692
|
+
}
|
|
693
|
+
],
|
|
694
|
+
"default": "exact-location",
|
|
695
|
+
"description": "Optional location radius filter.",
|
|
696
|
+
"routing": {
|
|
697
|
+
"send": {
|
|
698
|
+
"type": "query",
|
|
699
|
+
"property": "locationRadius"
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
]
|
|
200
704
|
}
|
|
201
705
|
];
|
|
@@ -125,7 +125,7 @@ exports.reddit = [
|
|
|
125
125
|
"name": "subreddit",
|
|
126
126
|
"type": "string",
|
|
127
127
|
"default": "",
|
|
128
|
-
"description": "Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing
|
|
128
|
+
"description": "Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing.",
|
|
129
129
|
"routing": {
|
|
130
130
|
"send": {
|
|
131
131
|
"type": "query",
|
|
@@ -307,7 +307,7 @@ exports.reddit = [
|
|
|
307
307
|
"name": "subreddit",
|
|
308
308
|
"type": "string",
|
|
309
309
|
"default": "",
|
|
310
|
-
"description": "Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing
|
|
310
|
+
"description": "Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing. Lists posts for this subreddit.",
|
|
311
311
|
"required": true,
|
|
312
312
|
"displayOptions": {
|
|
313
313
|
"show": {
|
|
@@ -431,7 +431,7 @@ exports.reddit = [
|
|
|
431
431
|
"name": "subreddit",
|
|
432
432
|
"type": "string",
|
|
433
433
|
"default": "",
|
|
434
|
-
"description": "Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing
|
|
434
|
+
"description": "Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing. Searches posts within this subreddit.",
|
|
435
435
|
"required": true,
|
|
436
436
|
"routing": {
|
|
437
437
|
"send": {
|
|
@@ -41,6 +41,48 @@ exports.twitter = [
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
|
+
{
|
|
45
|
+
"name": "Tweet",
|
|
46
|
+
"value": "twitter.tweet.get",
|
|
47
|
+
"action": "Get Twitter tweet",
|
|
48
|
+
"description": "Get a single tweet.",
|
|
49
|
+
"routing": {
|
|
50
|
+
"request": {
|
|
51
|
+
"method": "GET",
|
|
52
|
+
"url": "/v1/twitter/tweets"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "Tweet Replies",
|
|
58
|
+
"value": "twitter.tweet.replies.list",
|
|
59
|
+
"action": "List Twitter tweet replies",
|
|
60
|
+
"description": "List replies to a tweet.",
|
|
61
|
+
"routing": {
|
|
62
|
+
"request": {
|
|
63
|
+
"method": "GET",
|
|
64
|
+
"url": "/v1/twitter/tweets/replies"
|
|
65
|
+
},
|
|
66
|
+
"send": {
|
|
67
|
+
"paginate": "={{$parameter[\"returnAll\"]}}"
|
|
68
|
+
},
|
|
69
|
+
"operations": {
|
|
70
|
+
"pagination": pagination_1.cursorPagination
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "Transcript",
|
|
76
|
+
"value": "twitter.tweet.transcript.get",
|
|
77
|
+
"action": "Get Twitter tweet transcript",
|
|
78
|
+
"description": "Get the transcript for a video tweet.",
|
|
79
|
+
"routing": {
|
|
80
|
+
"request": {
|
|
81
|
+
"method": "GET",
|
|
82
|
+
"url": "/v1/twitter/tweets/transcript"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
44
86
|
{
|
|
45
87
|
"name": "Search",
|
|
46
88
|
"value": "twitter.search.list",
|
|
@@ -60,14 +102,20 @@ exports.twitter = [
|
|
|
60
102
|
}
|
|
61
103
|
},
|
|
62
104
|
{
|
|
63
|
-
"name": "
|
|
64
|
-
"value": "twitter.
|
|
65
|
-
"action": "
|
|
66
|
-
"description": "
|
|
105
|
+
"name": "Hashtag Search",
|
|
106
|
+
"value": "twitter.hashtag.list",
|
|
107
|
+
"action": "Search Twitter by hashtag",
|
|
108
|
+
"description": "Search for posts on X by hashtag.",
|
|
67
109
|
"routing": {
|
|
68
110
|
"request": {
|
|
69
111
|
"method": "GET",
|
|
70
|
-
"url": "/v1/twitter/
|
|
112
|
+
"url": "/v1/twitter/hashtags"
|
|
113
|
+
},
|
|
114
|
+
"send": {
|
|
115
|
+
"paginate": "={{$parameter[\"returnAll\"]}}"
|
|
116
|
+
},
|
|
117
|
+
"operations": {
|
|
118
|
+
"pagination": pagination_1.cursorPagination
|
|
71
119
|
}
|
|
72
120
|
}
|
|
73
121
|
},
|
|
@@ -167,6 +215,130 @@ exports.twitter = [
|
|
|
167
215
|
}
|
|
168
216
|
]
|
|
169
217
|
},
|
|
218
|
+
{
|
|
219
|
+
"displayName": "URL",
|
|
220
|
+
"name": "url",
|
|
221
|
+
"type": "string",
|
|
222
|
+
"default": "",
|
|
223
|
+
"description": "Tweet permalink or identifier.",
|
|
224
|
+
"placeholder": "e.g. https://example.com/page",
|
|
225
|
+
"required": true,
|
|
226
|
+
"routing": {
|
|
227
|
+
"send": {
|
|
228
|
+
"type": "query",
|
|
229
|
+
"property": "url"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"displayOptions": {
|
|
233
|
+
"show": {
|
|
234
|
+
"resource": [
|
|
235
|
+
"twitter"
|
|
236
|
+
],
|
|
237
|
+
"operation": [
|
|
238
|
+
"twitter.tweet.get"
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"displayName": "Additional Fields",
|
|
245
|
+
"name": "additionalOptions",
|
|
246
|
+
"type": "collection",
|
|
247
|
+
"placeholder": "Add Field",
|
|
248
|
+
"default": {},
|
|
249
|
+
"displayOptions": {
|
|
250
|
+
"show": {
|
|
251
|
+
"resource": [
|
|
252
|
+
"twitter"
|
|
253
|
+
],
|
|
254
|
+
"operation": [
|
|
255
|
+
"twitter.tweet.get"
|
|
256
|
+
]
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"options": [
|
|
260
|
+
{
|
|
261
|
+
"displayName": "Trim",
|
|
262
|
+
"name": "trim",
|
|
263
|
+
"type": "boolean",
|
|
264
|
+
"default": false,
|
|
265
|
+
"description": "Optional: omit author profile and tweet `core` for a smaller response.",
|
|
266
|
+
"routing": {
|
|
267
|
+
"send": {
|
|
268
|
+
"type": "query",
|
|
269
|
+
"property": "trim"
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
]
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"displayName": "Return All",
|
|
277
|
+
"name": "returnAll",
|
|
278
|
+
"type": "boolean",
|
|
279
|
+
"default": false,
|
|
280
|
+
"description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
|
|
281
|
+
"displayOptions": {
|
|
282
|
+
"show": {
|
|
283
|
+
"resource": [
|
|
284
|
+
"twitter"
|
|
285
|
+
],
|
|
286
|
+
"operation": [
|
|
287
|
+
"twitter.tweet.replies.list"
|
|
288
|
+
]
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"displayName": "URL",
|
|
294
|
+
"name": "url",
|
|
295
|
+
"type": "string",
|
|
296
|
+
"default": "",
|
|
297
|
+
"description": "Tweet permalink or identifier.",
|
|
298
|
+
"placeholder": "e.g. https://example.com/page",
|
|
299
|
+
"required": true,
|
|
300
|
+
"routing": {
|
|
301
|
+
"send": {
|
|
302
|
+
"type": "query",
|
|
303
|
+
"property": "url"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"displayOptions": {
|
|
307
|
+
"show": {
|
|
308
|
+
"resource": [
|
|
309
|
+
"twitter"
|
|
310
|
+
],
|
|
311
|
+
"operation": [
|
|
312
|
+
"twitter.tweet.replies.list"
|
|
313
|
+
]
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"displayName": "URL",
|
|
319
|
+
"name": "url",
|
|
320
|
+
"type": "string",
|
|
321
|
+
"default": "",
|
|
322
|
+
"description": "Tweet permalink or identifier.",
|
|
323
|
+
"placeholder": "e.g. https://example.com/page",
|
|
324
|
+
"required": true,
|
|
325
|
+
"routing": {
|
|
326
|
+
"send": {
|
|
327
|
+
"type": "query",
|
|
328
|
+
"property": "url"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"displayOptions": {
|
|
332
|
+
"show": {
|
|
333
|
+
"resource": [
|
|
334
|
+
"twitter"
|
|
335
|
+
],
|
|
336
|
+
"operation": [
|
|
337
|
+
"twitter.tweet.transcript.get"
|
|
338
|
+
]
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
},
|
|
170
342
|
{
|
|
171
343
|
"displayName": "Return All",
|
|
172
344
|
"name": "returnAll",
|
|
@@ -497,17 +669,33 @@ exports.twitter = [
|
|
|
497
669
|
]
|
|
498
670
|
},
|
|
499
671
|
{
|
|
500
|
-
"displayName": "
|
|
501
|
-
"name": "
|
|
672
|
+
"displayName": "Return All",
|
|
673
|
+
"name": "returnAll",
|
|
674
|
+
"type": "boolean",
|
|
675
|
+
"default": false,
|
|
676
|
+
"description": "Whether to return all results by paginating through every page, or only the first page. Each page consumes API credits.",
|
|
677
|
+
"displayOptions": {
|
|
678
|
+
"show": {
|
|
679
|
+
"resource": [
|
|
680
|
+
"twitter"
|
|
681
|
+
],
|
|
682
|
+
"operation": [
|
|
683
|
+
"twitter.hashtag.list"
|
|
684
|
+
]
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"displayName": "Hashtag",
|
|
690
|
+
"name": "hashtag",
|
|
502
691
|
"type": "string",
|
|
503
692
|
"default": "",
|
|
504
|
-
"description": "
|
|
505
|
-
"placeholder": "e.g. https://example.com/page",
|
|
693
|
+
"description": "Hashtag to search for on X. A leading # is optional.",
|
|
506
694
|
"required": true,
|
|
507
695
|
"routing": {
|
|
508
696
|
"send": {
|
|
509
697
|
"type": "query",
|
|
510
|
-
"property": "
|
|
698
|
+
"property": "hashtag"
|
|
511
699
|
}
|
|
512
700
|
},
|
|
513
701
|
"displayOptions": {
|
|
@@ -516,7 +704,7 @@ exports.twitter = [
|
|
|
516
704
|
"twitter"
|
|
517
705
|
],
|
|
518
706
|
"operation": [
|
|
519
|
-
"twitter.
|
|
707
|
+
"twitter.hashtag.list"
|
|
520
708
|
]
|
|
521
709
|
}
|
|
522
710
|
}
|
|
@@ -533,21 +721,34 @@ exports.twitter = [
|
|
|
533
721
|
"twitter"
|
|
534
722
|
],
|
|
535
723
|
"operation": [
|
|
536
|
-
"twitter.
|
|
724
|
+
"twitter.hashtag.list"
|
|
537
725
|
]
|
|
538
726
|
}
|
|
539
727
|
},
|
|
540
728
|
"options": [
|
|
541
729
|
{
|
|
542
|
-
"displayName": "
|
|
543
|
-
"name": "
|
|
544
|
-
"type": "
|
|
545
|
-
"default":
|
|
546
|
-
"description": "Optional
|
|
730
|
+
"displayName": "Section",
|
|
731
|
+
"name": "section",
|
|
732
|
+
"type": "string",
|
|
733
|
+
"default": "",
|
|
734
|
+
"description": "Optional section filter for the hashtag feed.",
|
|
547
735
|
"routing": {
|
|
548
736
|
"send": {
|
|
549
737
|
"type": "query",
|
|
550
|
-
"property": "
|
|
738
|
+
"property": "section"
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"displayName": "Limit",
|
|
744
|
+
"name": "limit",
|
|
745
|
+
"type": "number",
|
|
746
|
+
"default": 0,
|
|
747
|
+
"description": "Optional page size. Maximum supported value is 20.",
|
|
748
|
+
"routing": {
|
|
749
|
+
"send": {
|
|
750
|
+
"type": "query",
|
|
751
|
+
"property": "limit"
|
|
551
752
|
}
|
|
552
753
|
}
|
|
553
754
|
}
|
|
@@ -14,8 +14,20 @@ exports.web = [
|
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"default": "web.
|
|
17
|
+
"default": "web.search.run",
|
|
18
18
|
"options": [
|
|
19
|
+
{
|
|
20
|
+
"name": "Search",
|
|
21
|
+
"value": "web.search.run",
|
|
22
|
+
"action": "Search the web",
|
|
23
|
+
"description": "Search the public web and return ranked results with snippets.",
|
|
24
|
+
"routing": {
|
|
25
|
+
"request": {
|
|
26
|
+
"method": "GET",
|
|
27
|
+
"url": "/v1/web/search"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
19
31
|
{
|
|
20
32
|
"name": "Markdown",
|
|
21
33
|
"value": "web.markdown.generate",
|
|
@@ -66,6 +78,210 @@ exports.web = [
|
|
|
66
78
|
}
|
|
67
79
|
]
|
|
68
80
|
},
|
|
81
|
+
{
|
|
82
|
+
"displayName": "Query",
|
|
83
|
+
"name": "query",
|
|
84
|
+
"type": "string",
|
|
85
|
+
"default": "",
|
|
86
|
+
"description": "Search query text to run against the public web.",
|
|
87
|
+
"placeholder": "e.g. automation",
|
|
88
|
+
"required": true,
|
|
89
|
+
"routing": {
|
|
90
|
+
"send": {
|
|
91
|
+
"type": "query",
|
|
92
|
+
"property": "query"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"displayOptions": {
|
|
96
|
+
"show": {
|
|
97
|
+
"resource": [
|
|
98
|
+
"web"
|
|
99
|
+
],
|
|
100
|
+
"operation": [
|
|
101
|
+
"web.search.run"
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"displayName": "Additional Fields",
|
|
108
|
+
"name": "additionalOptions",
|
|
109
|
+
"type": "collection",
|
|
110
|
+
"placeholder": "Add Field",
|
|
111
|
+
"default": {},
|
|
112
|
+
"displayOptions": {
|
|
113
|
+
"show": {
|
|
114
|
+
"resource": [
|
|
115
|
+
"web"
|
|
116
|
+
],
|
|
117
|
+
"operation": [
|
|
118
|
+
"web.search.run"
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"options": [
|
|
123
|
+
{
|
|
124
|
+
"displayName": "Search Depth",
|
|
125
|
+
"name": "searchDepth",
|
|
126
|
+
"type": "options",
|
|
127
|
+
"options": [
|
|
128
|
+
{
|
|
129
|
+
"name": "Basic",
|
|
130
|
+
"value": "basic"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "Fast",
|
|
134
|
+
"value": "fast"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "Ultra Fast",
|
|
138
|
+
"value": "ultra-fast"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "Advanced",
|
|
142
|
+
"value": "advanced"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"default": "basic",
|
|
146
|
+
"description": "Search depth: basic (default), fast, ultra-fast, or advanced.",
|
|
147
|
+
"routing": {
|
|
148
|
+
"send": {
|
|
149
|
+
"type": "query",
|
|
150
|
+
"property": "searchDepth"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"displayName": "Max Results",
|
|
156
|
+
"name": "maxResults",
|
|
157
|
+
"type": "number",
|
|
158
|
+
"default": 0,
|
|
159
|
+
"description": "Maximum number of search results to return (1–20).",
|
|
160
|
+
"routing": {
|
|
161
|
+
"send": {
|
|
162
|
+
"type": "query",
|
|
163
|
+
"property": "maxResults"
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"displayName": "Topic",
|
|
169
|
+
"name": "topic",
|
|
170
|
+
"type": "options",
|
|
171
|
+
"options": [
|
|
172
|
+
{
|
|
173
|
+
"name": "General",
|
|
174
|
+
"value": "general"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "News",
|
|
178
|
+
"value": "news"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "Finance",
|
|
182
|
+
"value": "finance"
|
|
183
|
+
}
|
|
184
|
+
],
|
|
185
|
+
"default": "general",
|
|
186
|
+
"description": "Search topic category. Defaults to general.",
|
|
187
|
+
"routing": {
|
|
188
|
+
"send": {
|
|
189
|
+
"type": "query",
|
|
190
|
+
"property": "topic"
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"displayName": "Time Range",
|
|
196
|
+
"name": "timeRange",
|
|
197
|
+
"type": "options",
|
|
198
|
+
"options": [
|
|
199
|
+
{
|
|
200
|
+
"name": "Day",
|
|
201
|
+
"value": "day"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"name": "Week",
|
|
205
|
+
"value": "week"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "Month",
|
|
209
|
+
"value": "month"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "Year",
|
|
213
|
+
"value": "year"
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"default": "day",
|
|
217
|
+
"description": "Optional time range filter based on publish or last-updated date.",
|
|
218
|
+
"routing": {
|
|
219
|
+
"send": {
|
|
220
|
+
"type": "query",
|
|
221
|
+
"property": "timeRange"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"displayName": "Start Date",
|
|
227
|
+
"name": "startDate",
|
|
228
|
+
"type": "string",
|
|
229
|
+
"default": "",
|
|
230
|
+
"description": "Optional start date filter in YYYY-MM-DD format.",
|
|
231
|
+
"routing": {
|
|
232
|
+
"send": {
|
|
233
|
+
"type": "query",
|
|
234
|
+
"property": "startDate"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"displayName": "End Date",
|
|
240
|
+
"name": "endDate",
|
|
241
|
+
"type": "string",
|
|
242
|
+
"default": "",
|
|
243
|
+
"description": "Optional end date filter in YYYY-MM-DD format.",
|
|
244
|
+
"routing": {
|
|
245
|
+
"send": {
|
|
246
|
+
"type": "query",
|
|
247
|
+
"property": "endDate"
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"displayName": "Include Domain",
|
|
253
|
+
"name": "includeDomain",
|
|
254
|
+
"type": "string",
|
|
255
|
+
"typeOptions": {
|
|
256
|
+
"multipleValues": true
|
|
257
|
+
},
|
|
258
|
+
"default": [],
|
|
259
|
+
"description": "Domains to include in results. Repeat includeDomain for multiple values (max 20).",
|
|
260
|
+
"routing": {
|
|
261
|
+
"send": {
|
|
262
|
+
"type": "query",
|
|
263
|
+
"property": "includeDomain"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"displayName": "Exclude Domain",
|
|
269
|
+
"name": "excludeDomain",
|
|
270
|
+
"type": "string",
|
|
271
|
+
"typeOptions": {
|
|
272
|
+
"multipleValues": true
|
|
273
|
+
},
|
|
274
|
+
"default": [],
|
|
275
|
+
"description": "Domains to exclude from results. Repeat excludeDomain for multiple values (max 20).",
|
|
276
|
+
"routing": {
|
|
277
|
+
"send": {
|
|
278
|
+
"type": "query",
|
|
279
|
+
"property": "excludeDomain"
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
]
|
|
284
|
+
},
|
|
69
285
|
{
|
|
70
286
|
"displayName": "URL",
|
|
71
287
|
"name": "url",
|
|
@@ -168,7 +384,7 @@ exports.web = [
|
|
|
168
384
|
}
|
|
169
385
|
],
|
|
170
386
|
"default": "enabled",
|
|
171
|
-
"description": "Cache behavior
|
|
387
|
+
"description": "Cache behavior. Defaults to enabled.",
|
|
172
388
|
"routing": {
|
|
173
389
|
"send": {
|
|
174
390
|
"type": "query",
|
|
@@ -254,11 +470,21 @@ exports.web = [
|
|
|
254
470
|
}
|
|
255
471
|
},
|
|
256
472
|
{
|
|
257
|
-
"displayName": "
|
|
258
|
-
"name": "
|
|
259
|
-
"type": "
|
|
260
|
-
"
|
|
261
|
-
|
|
473
|
+
"displayName": "URL",
|
|
474
|
+
"name": "url",
|
|
475
|
+
"type": "string",
|
|
476
|
+
"typeOptions": {
|
|
477
|
+
"multipleValues": true
|
|
478
|
+
},
|
|
479
|
+
"default": [],
|
|
480
|
+
"description": "URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5).",
|
|
481
|
+
"required": true,
|
|
482
|
+
"routing": {
|
|
483
|
+
"send": {
|
|
484
|
+
"type": "query",
|
|
485
|
+
"property": "url"
|
|
486
|
+
}
|
|
487
|
+
},
|
|
262
488
|
"displayOptions": {
|
|
263
489
|
"show": {
|
|
264
490
|
"resource": [
|
|
@@ -268,24 +494,6 @@ exports.web = [
|
|
|
268
494
|
"web.crawl.run"
|
|
269
495
|
]
|
|
270
496
|
}
|
|
271
|
-
}
|
|
272
|
-
"options": [
|
|
273
|
-
{
|
|
274
|
-
"displayName": "URL",
|
|
275
|
-
"name": "url",
|
|
276
|
-
"type": "string",
|
|
277
|
-
"typeOptions": {
|
|
278
|
-
"multipleValues": true
|
|
279
|
-
},
|
|
280
|
-
"default": [],
|
|
281
|
-
"description": "URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5).",
|
|
282
|
-
"routing": {
|
|
283
|
-
"send": {
|
|
284
|
-
"type": "query",
|
|
285
|
-
"property": "url"
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
]
|
|
497
|
+
}
|
|
290
498
|
}
|
|
291
499
|
];
|
|
@@ -765,7 +765,7 @@ exports.youtube = [
|
|
|
765
765
|
}
|
|
766
766
|
],
|
|
767
767
|
"default": "all",
|
|
768
|
-
"description": "Optional content filter.
|
|
768
|
+
"description": "Optional content filter.",
|
|
769
769
|
"routing": {
|
|
770
770
|
"send": {
|
|
771
771
|
"type": "query",
|