n8n-nodes-socialfetch 0.13.5 → 0.14.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.
|
@@ -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,30 @@ 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
|
+
},
|
|
31
55
|
{
|
|
32
56
|
"name": "Company Page",
|
|
33
57
|
"value": "linkedin.company.get",
|
|
@@ -63,15 +87,66 @@ exports.linkedin = [
|
|
|
63
87
|
"url": "/v1/linkedin/posts"
|
|
64
88
|
}
|
|
65
89
|
}
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "Jobs",
|
|
93
|
+
"value": "linkedin.jobs.get",
|
|
94
|
+
"action": "Get LinkedIn jobs",
|
|
95
|
+
"description": "Get LinkedIn job postings by URL.",
|
|
96
|
+
"routing": {
|
|
97
|
+
"request": {
|
|
98
|
+
"method": "GET",
|
|
99
|
+
"url": "/v1/linkedin/jobs"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "Job Search",
|
|
105
|
+
"value": "linkedin.jobs.search.list",
|
|
106
|
+
"action": "Search LinkedIn jobs",
|
|
107
|
+
"description": "Search LinkedIn jobs by keyword and filters.",
|
|
108
|
+
"routing": {
|
|
109
|
+
"request": {
|
|
110
|
+
"method": "GET",
|
|
111
|
+
"url": "/v1/linkedin/jobs/search"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
66
114
|
}
|
|
67
115
|
]
|
|
68
116
|
},
|
|
117
|
+
{
|
|
118
|
+
"displayName": "URL",
|
|
119
|
+
"name": "url",
|
|
120
|
+
"type": "string",
|
|
121
|
+
"typeOptions": {
|
|
122
|
+
"multipleValues": true
|
|
123
|
+
},
|
|
124
|
+
"default": [],
|
|
125
|
+
"description": "LinkedIn profile URL.",
|
|
126
|
+
"required": true,
|
|
127
|
+
"routing": {
|
|
128
|
+
"send": {
|
|
129
|
+
"type": "query",
|
|
130
|
+
"property": "url"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"displayOptions": {
|
|
134
|
+
"show": {
|
|
135
|
+
"resource": [
|
|
136
|
+
"linkedin"
|
|
137
|
+
],
|
|
138
|
+
"operation": [
|
|
139
|
+
"linkedin.profile.get"
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
69
144
|
{
|
|
70
145
|
"displayName": "URL",
|
|
71
146
|
"name": "url",
|
|
72
147
|
"type": "string",
|
|
73
148
|
"default": "",
|
|
74
|
-
"description": "LinkedIn
|
|
149
|
+
"description": "LinkedIn profile URL or vanity handle whose public posts should be listed.",
|
|
75
150
|
"placeholder": "e.g. https://example.com/page",
|
|
76
151
|
"required": true,
|
|
77
152
|
"routing": {
|
|
@@ -86,11 +161,114 @@ exports.linkedin = [
|
|
|
86
161
|
"linkedin"
|
|
87
162
|
],
|
|
88
163
|
"operation": [
|
|
89
|
-
"linkedin.
|
|
164
|
+
"linkedin.profiles.posts.list"
|
|
90
165
|
]
|
|
91
166
|
}
|
|
92
167
|
}
|
|
93
168
|
},
|
|
169
|
+
{
|
|
170
|
+
"displayName": "Additional Fields",
|
|
171
|
+
"name": "additionalOptions",
|
|
172
|
+
"type": "collection",
|
|
173
|
+
"placeholder": "Add Field",
|
|
174
|
+
"default": {},
|
|
175
|
+
"displayOptions": {
|
|
176
|
+
"show": {
|
|
177
|
+
"resource": [
|
|
178
|
+
"linkedin"
|
|
179
|
+
],
|
|
180
|
+
"operation": [
|
|
181
|
+
"linkedin.profiles.posts.list"
|
|
182
|
+
]
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"options": [
|
|
186
|
+
{
|
|
187
|
+
"displayName": "Start Date",
|
|
188
|
+
"name": "startDate",
|
|
189
|
+
"type": "string",
|
|
190
|
+
"default": "",
|
|
191
|
+
"description": "Optional start of the date range for posts to include.",
|
|
192
|
+
"routing": {
|
|
193
|
+
"send": {
|
|
194
|
+
"type": "query",
|
|
195
|
+
"property": "startDate"
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"displayName": "End Date",
|
|
201
|
+
"name": "endDate",
|
|
202
|
+
"type": "string",
|
|
203
|
+
"default": "",
|
|
204
|
+
"description": "Optional end of the date range for posts to include.",
|
|
205
|
+
"routing": {
|
|
206
|
+
"send": {
|
|
207
|
+
"type": "query",
|
|
208
|
+
"property": "endDate"
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"displayName": "Only Authored Posts",
|
|
214
|
+
"name": "onlyAuthoredPosts",
|
|
215
|
+
"type": "boolean",
|
|
216
|
+
"default": false,
|
|
217
|
+
"description": "When true, return only posts created by the profile owner.",
|
|
218
|
+
"routing": {
|
|
219
|
+
"send": {
|
|
220
|
+
"type": "query",
|
|
221
|
+
"property": "onlyAuthoredPosts"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"displayName": "Additional Fields",
|
|
229
|
+
"name": "additionalOptions",
|
|
230
|
+
"type": "collection",
|
|
231
|
+
"placeholder": "Add Field",
|
|
232
|
+
"default": {},
|
|
233
|
+
"displayOptions": {
|
|
234
|
+
"show": {
|
|
235
|
+
"resource": [
|
|
236
|
+
"linkedin"
|
|
237
|
+
],
|
|
238
|
+
"operation": [
|
|
239
|
+
"linkedin.people.search.list"
|
|
240
|
+
]
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"options": [
|
|
244
|
+
{
|
|
245
|
+
"displayName": "First Name",
|
|
246
|
+
"name": "firstName",
|
|
247
|
+
"type": "string",
|
|
248
|
+
"default": "",
|
|
249
|
+
"description": "First name filter. At least one of `firstName` or `lastName` is required.",
|
|
250
|
+
"routing": {
|
|
251
|
+
"send": {
|
|
252
|
+
"type": "query",
|
|
253
|
+
"property": "firstName"
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"displayName": "Last Name",
|
|
259
|
+
"name": "lastName",
|
|
260
|
+
"type": "string",
|
|
261
|
+
"default": "",
|
|
262
|
+
"description": "Last name filter. At least one of `firstName` or `lastName` is required.",
|
|
263
|
+
"routing": {
|
|
264
|
+
"send": {
|
|
265
|
+
"type": "query",
|
|
266
|
+
"property": "lastName"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
]
|
|
271
|
+
},
|
|
94
272
|
{
|
|
95
273
|
"displayName": "URL",
|
|
96
274
|
"name": "url",
|
|
@@ -121,7 +299,7 @@ exports.linkedin = [
|
|
|
121
299
|
"name": "url",
|
|
122
300
|
"type": "string",
|
|
123
301
|
"default": "",
|
|
124
|
-
"description": "
|
|
302
|
+
"description": "LinkedIn company page URL or slug whose posts should be listed.",
|
|
125
303
|
"placeholder": "e.g. https://example.com/page",
|
|
126
304
|
"required": true,
|
|
127
305
|
"routing": {
|
|
@@ -197,5 +375,292 @@ exports.linkedin = [
|
|
|
197
375
|
]
|
|
198
376
|
}
|
|
199
377
|
}
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"displayName": "URL",
|
|
381
|
+
"name": "url",
|
|
382
|
+
"type": "string",
|
|
383
|
+
"typeOptions": {
|
|
384
|
+
"multipleValues": true
|
|
385
|
+
},
|
|
386
|
+
"default": [],
|
|
387
|
+
"description": "LinkedIn job posting URL to look up.",
|
|
388
|
+
"required": true,
|
|
389
|
+
"routing": {
|
|
390
|
+
"send": {
|
|
391
|
+
"type": "query",
|
|
392
|
+
"property": "url"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"displayOptions": {
|
|
396
|
+
"show": {
|
|
397
|
+
"resource": [
|
|
398
|
+
"linkedin"
|
|
399
|
+
],
|
|
400
|
+
"operation": [
|
|
401
|
+
"linkedin.jobs.get"
|
|
402
|
+
]
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"displayName": "Keyword",
|
|
408
|
+
"name": "keyword",
|
|
409
|
+
"type": "string",
|
|
410
|
+
"default": "",
|
|
411
|
+
"description": "Search keyword for LinkedIn job listings.",
|
|
412
|
+
"required": true,
|
|
413
|
+
"routing": {
|
|
414
|
+
"send": {
|
|
415
|
+
"type": "query",
|
|
416
|
+
"property": "keyword"
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"displayOptions": {
|
|
420
|
+
"show": {
|
|
421
|
+
"resource": [
|
|
422
|
+
"linkedin"
|
|
423
|
+
],
|
|
424
|
+
"operation": [
|
|
425
|
+
"linkedin.jobs.search.list"
|
|
426
|
+
]
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"displayName": "Location",
|
|
432
|
+
"name": "location",
|
|
433
|
+
"type": "string",
|
|
434
|
+
"default": "",
|
|
435
|
+
"description": "Location label for the search, e.g. `United States`, `Paris`, or `Remote`.",
|
|
436
|
+
"required": true,
|
|
437
|
+
"routing": {
|
|
438
|
+
"send": {
|
|
439
|
+
"type": "query",
|
|
440
|
+
"property": "location"
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"displayOptions": {
|
|
444
|
+
"show": {
|
|
445
|
+
"resource": [
|
|
446
|
+
"linkedin"
|
|
447
|
+
],
|
|
448
|
+
"operation": [
|
|
449
|
+
"linkedin.jobs.search.list"
|
|
450
|
+
]
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"displayName": "Additional Fields",
|
|
456
|
+
"name": "additionalOptions",
|
|
457
|
+
"type": "collection",
|
|
458
|
+
"placeholder": "Add Field",
|
|
459
|
+
"default": {},
|
|
460
|
+
"displayOptions": {
|
|
461
|
+
"show": {
|
|
462
|
+
"resource": [
|
|
463
|
+
"linkedin"
|
|
464
|
+
],
|
|
465
|
+
"operation": [
|
|
466
|
+
"linkedin.jobs.search.list"
|
|
467
|
+
]
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
"options": [
|
|
471
|
+
{
|
|
472
|
+
"displayName": "Country",
|
|
473
|
+
"name": "country",
|
|
474
|
+
"type": "string",
|
|
475
|
+
"default": "",
|
|
476
|
+
"description": "Optional two-letter country code, e.g. `FR` or `US`.",
|
|
477
|
+
"routing": {
|
|
478
|
+
"send": {
|
|
479
|
+
"type": "query",
|
|
480
|
+
"property": "country"
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"displayName": "Time Range",
|
|
486
|
+
"name": "timeRange",
|
|
487
|
+
"type": "options",
|
|
488
|
+
"options": [
|
|
489
|
+
{
|
|
490
|
+
"name": "Any",
|
|
491
|
+
"value": "any"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"name": "Past Month",
|
|
495
|
+
"value": "past-month"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "Past Week",
|
|
499
|
+
"value": "past-week"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"name": "Past 24 Hours",
|
|
503
|
+
"value": "past-24-hours"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"default": "any",
|
|
507
|
+
"description": "Optional time range filter for when jobs were posted.",
|
|
508
|
+
"routing": {
|
|
509
|
+
"send": {
|
|
510
|
+
"type": "query",
|
|
511
|
+
"property": "timeRange"
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"displayName": "Job Type",
|
|
517
|
+
"name": "jobType",
|
|
518
|
+
"type": "options",
|
|
519
|
+
"options": [
|
|
520
|
+
{
|
|
521
|
+
"name": "Full Time",
|
|
522
|
+
"value": "full-time"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "Part Time",
|
|
526
|
+
"value": "part-time"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "Contract",
|
|
530
|
+
"value": "contract"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"name": "Temporary",
|
|
534
|
+
"value": "temporary"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"name": "Volunteer",
|
|
538
|
+
"value": "volunteer"
|
|
539
|
+
}
|
|
540
|
+
],
|
|
541
|
+
"default": "full-time",
|
|
542
|
+
"description": "Optional job type filter.",
|
|
543
|
+
"routing": {
|
|
544
|
+
"send": {
|
|
545
|
+
"type": "query",
|
|
546
|
+
"property": "jobType"
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"displayName": "Experience Level",
|
|
552
|
+
"name": "experienceLevel",
|
|
553
|
+
"type": "options",
|
|
554
|
+
"options": [
|
|
555
|
+
{
|
|
556
|
+
"name": "Internship",
|
|
557
|
+
"value": "internship"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"name": "Entry Level",
|
|
561
|
+
"value": "entry-level"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"name": "Associate",
|
|
565
|
+
"value": "associate"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"name": "Mid Senior Level",
|
|
569
|
+
"value": "mid-senior-level"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "Director",
|
|
573
|
+
"value": "director"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"name": "Executive",
|
|
577
|
+
"value": "executive"
|
|
578
|
+
}
|
|
579
|
+
],
|
|
580
|
+
"default": "internship",
|
|
581
|
+
"description": "Optional experience level filter.",
|
|
582
|
+
"routing": {
|
|
583
|
+
"send": {
|
|
584
|
+
"type": "query",
|
|
585
|
+
"property": "experienceLevel"
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"displayName": "Remote",
|
|
591
|
+
"name": "remote",
|
|
592
|
+
"type": "options",
|
|
593
|
+
"options": [
|
|
594
|
+
{
|
|
595
|
+
"name": "On Site",
|
|
596
|
+
"value": "on-site"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"name": "Remote",
|
|
600
|
+
"value": "remote"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"name": "Hybrid",
|
|
604
|
+
"value": "hybrid"
|
|
605
|
+
}
|
|
606
|
+
],
|
|
607
|
+
"default": "on-site",
|
|
608
|
+
"description": "Optional work arrangement filter.",
|
|
609
|
+
"routing": {
|
|
610
|
+
"send": {
|
|
611
|
+
"type": "query",
|
|
612
|
+
"property": "remote"
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"displayName": "Company",
|
|
618
|
+
"name": "company",
|
|
619
|
+
"type": "string",
|
|
620
|
+
"default": "",
|
|
621
|
+
"description": "Optional company name filter.",
|
|
622
|
+
"routing": {
|
|
623
|
+
"send": {
|
|
624
|
+
"type": "query",
|
|
625
|
+
"property": "company"
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"displayName": "Location Radius",
|
|
631
|
+
"name": "locationRadius",
|
|
632
|
+
"type": "options",
|
|
633
|
+
"options": [
|
|
634
|
+
{
|
|
635
|
+
"name": "Exact Location",
|
|
636
|
+
"value": "exact-location"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"name": "5 Miles",
|
|
640
|
+
"value": "5-miles"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"name": "10 Miles",
|
|
644
|
+
"value": "10-miles"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"name": "25 Miles",
|
|
648
|
+
"value": "25-miles"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "50 Miles",
|
|
652
|
+
"value": "50-miles"
|
|
653
|
+
}
|
|
654
|
+
],
|
|
655
|
+
"default": "exact-location",
|
|
656
|
+
"description": "Optional location radius filter.",
|
|
657
|
+
"routing": {
|
|
658
|
+
"send": {
|
|
659
|
+
"type": "query",
|
|
660
|
+
"property": "locationRadius"
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
]
|
|
200
665
|
}
|
|
201
666
|
];
|
|
@@ -254,11 +254,21 @@ exports.web = [
|
|
|
254
254
|
}
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
|
-
"displayName": "
|
|
258
|
-
"name": "
|
|
259
|
-
"type": "
|
|
260
|
-
"
|
|
261
|
-
|
|
257
|
+
"displayName": "URL",
|
|
258
|
+
"name": "url",
|
|
259
|
+
"type": "string",
|
|
260
|
+
"typeOptions": {
|
|
261
|
+
"multipleValues": true
|
|
262
|
+
},
|
|
263
|
+
"default": [],
|
|
264
|
+
"description": "URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5).",
|
|
265
|
+
"required": true,
|
|
266
|
+
"routing": {
|
|
267
|
+
"send": {
|
|
268
|
+
"type": "query",
|
|
269
|
+
"property": "url"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
262
272
|
"displayOptions": {
|
|
263
273
|
"show": {
|
|
264
274
|
"resource": [
|
|
@@ -268,24 +278,6 @@ exports.web = [
|
|
|
268
278
|
"web.crawl.run"
|
|
269
279
|
]
|
|
270
280
|
}
|
|
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
|
-
]
|
|
281
|
+
}
|
|
290
282
|
}
|
|
291
283
|
];
|