@bubblelab/bubble-core 0.1.35 → 0.1.36
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/bubble-bundle.d.ts +80 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +116 -116
- package/dist/bubbles/service-bubble/ai-agent.d.ts +36 -36
- package/dist/bubbles/service-bubble/airtable.d.ts +232 -232
- package/dist/bubbles/service-bubble/apify/apify.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +50 -50
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +56 -56
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +326 -326
- package/dist/bubbles/service-bubble/followupboss.d.ts +332 -332
- package/dist/bubbles/service-bubble/github.d.ts +172 -172
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +232 -232
- package/dist/bubbles/service-bubble/google-drive.d.ts +128 -128
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +54 -54
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +18 -18
- package/dist/bubbles/service-bubble/jira/jira.d.ts +5762 -2108
- package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.js +32 -7
- package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +7993 -3124
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.js +14 -2
- package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.d.ts +204 -204
- package/dist/bubbles/service-bubble/postgresql.d.ts +18 -18
- package/dist/bubbles/service-bubble/resend.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack/slack.d.ts +418 -418
- package/dist/bubbles/service-bubble/storage.d.ts +60 -60
- package/dist/bubbles/service-bubble/telegram.d.ts +122 -122
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +33 -33
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +426 -426
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +192 -192
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +68 -68
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +60 -60
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +47 -49
- package/package.json +2 -2
|
@@ -35,23 +35,23 @@ declare const LinkedInStatsSchema: z.ZodObject<{
|
|
|
35
35
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
36
36
|
reposts: z.ZodNullable<z.ZodNumber>;
|
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
|
38
|
+
comments: number | null;
|
|
38
39
|
like: number | null;
|
|
39
40
|
support: number | null;
|
|
40
41
|
love: number | null;
|
|
41
42
|
insight: number | null;
|
|
42
43
|
celebrate: number | null;
|
|
43
44
|
funny: number | null;
|
|
44
|
-
comments: number | null;
|
|
45
45
|
reposts: number | null;
|
|
46
46
|
totalReactions: number | null;
|
|
47
47
|
}, {
|
|
48
|
+
comments: number | null;
|
|
48
49
|
like: number | null;
|
|
49
50
|
support: number | null;
|
|
50
51
|
love: number | null;
|
|
51
52
|
insight: number | null;
|
|
52
53
|
celebrate: number | null;
|
|
53
54
|
funny: number | null;
|
|
54
|
-
comments: number | null;
|
|
55
55
|
reposts: number | null;
|
|
56
56
|
totalReactions: number | null;
|
|
57
57
|
}>;
|
|
@@ -107,23 +107,23 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
107
107
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
108
108
|
reposts: z.ZodNullable<z.ZodNumber>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
|
+
comments: number | null;
|
|
110
111
|
like: number | null;
|
|
111
112
|
support: number | null;
|
|
112
113
|
love: number | null;
|
|
113
114
|
insight: number | null;
|
|
114
115
|
celebrate: number | null;
|
|
115
116
|
funny: number | null;
|
|
116
|
-
comments: number | null;
|
|
117
117
|
reposts: number | null;
|
|
118
118
|
totalReactions: number | null;
|
|
119
119
|
}, {
|
|
120
|
+
comments: number | null;
|
|
120
121
|
like: number | null;
|
|
121
122
|
support: number | null;
|
|
122
123
|
love: number | null;
|
|
123
124
|
insight: number | null;
|
|
124
125
|
celebrate: number | null;
|
|
125
126
|
funny: number | null;
|
|
126
|
-
comments: number | null;
|
|
127
127
|
reposts: number | null;
|
|
128
128
|
totalReactions: number | null;
|
|
129
129
|
}>>;
|
|
@@ -246,23 +246,23 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
246
246
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
247
247
|
reposts: z.ZodNullable<z.ZodNumber>;
|
|
248
248
|
}, "strip", z.ZodTypeAny, {
|
|
249
|
+
comments: number | null;
|
|
249
250
|
like: number | null;
|
|
250
251
|
support: number | null;
|
|
251
252
|
love: number | null;
|
|
252
253
|
insight: number | null;
|
|
253
254
|
celebrate: number | null;
|
|
254
255
|
funny: number | null;
|
|
255
|
-
comments: number | null;
|
|
256
256
|
reposts: number | null;
|
|
257
257
|
totalReactions: number | null;
|
|
258
258
|
}, {
|
|
259
|
+
comments: number | null;
|
|
259
260
|
like: number | null;
|
|
260
261
|
support: number | null;
|
|
261
262
|
love: number | null;
|
|
262
263
|
insight: number | null;
|
|
263
264
|
celebrate: number | null;
|
|
264
265
|
funny: number | null;
|
|
265
|
-
comments: number | null;
|
|
266
266
|
reposts: number | null;
|
|
267
267
|
totalReactions: number | null;
|
|
268
268
|
}>>;
|
|
@@ -303,28 +303,28 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
303
303
|
thumbnail: string | null;
|
|
304
304
|
}>>;
|
|
305
305
|
}, "strip", z.ZodTypeAny, {
|
|
306
|
+
author: {
|
|
307
|
+
username: string | null;
|
|
308
|
+
headline: string | null;
|
|
309
|
+
profileUrl: string | null;
|
|
310
|
+
profilePicture: string | null;
|
|
311
|
+
firstName: string | null;
|
|
312
|
+
lastName: string | null;
|
|
313
|
+
} | null;
|
|
314
|
+
url: string | null;
|
|
315
|
+
text: string | null;
|
|
316
|
+
urn: string | null;
|
|
306
317
|
stats: {
|
|
318
|
+
comments: number | null;
|
|
307
319
|
like: number | null;
|
|
308
320
|
support: number | null;
|
|
309
321
|
love: number | null;
|
|
310
322
|
insight: number | null;
|
|
311
323
|
celebrate: number | null;
|
|
312
324
|
funny: number | null;
|
|
313
|
-
comments: number | null;
|
|
314
325
|
reposts: number | null;
|
|
315
326
|
totalReactions: number | null;
|
|
316
327
|
} | null;
|
|
317
|
-
url: string | null;
|
|
318
|
-
text: string | null;
|
|
319
|
-
urn: string | null;
|
|
320
|
-
author: {
|
|
321
|
-
username: string | null;
|
|
322
|
-
headline: string | null;
|
|
323
|
-
profileUrl: string | null;
|
|
324
|
-
profilePicture: string | null;
|
|
325
|
-
firstName: string | null;
|
|
326
|
-
lastName: string | null;
|
|
327
|
-
} | null;
|
|
328
328
|
media: {
|
|
329
329
|
type: string | null;
|
|
330
330
|
url: string | null;
|
|
@@ -342,28 +342,28 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
342
342
|
} | null;
|
|
343
343
|
postType: string | null;
|
|
344
344
|
}, {
|
|
345
|
+
author: {
|
|
346
|
+
username: string | null;
|
|
347
|
+
headline: string | null;
|
|
348
|
+
profileUrl: string | null;
|
|
349
|
+
profilePicture: string | null;
|
|
350
|
+
firstName: string | null;
|
|
351
|
+
lastName: string | null;
|
|
352
|
+
} | null;
|
|
353
|
+
url: string | null;
|
|
354
|
+
text: string | null;
|
|
355
|
+
urn: string | null;
|
|
345
356
|
stats: {
|
|
357
|
+
comments: number | null;
|
|
346
358
|
like: number | null;
|
|
347
359
|
support: number | null;
|
|
348
360
|
love: number | null;
|
|
349
361
|
insight: number | null;
|
|
350
362
|
celebrate: number | null;
|
|
351
363
|
funny: number | null;
|
|
352
|
-
comments: number | null;
|
|
353
364
|
reposts: number | null;
|
|
354
365
|
totalReactions: number | null;
|
|
355
366
|
} | null;
|
|
356
|
-
url: string | null;
|
|
357
|
-
text: string | null;
|
|
358
|
-
urn: string | null;
|
|
359
|
-
author: {
|
|
360
|
-
username: string | null;
|
|
361
|
-
headline: string | null;
|
|
362
|
-
profileUrl: string | null;
|
|
363
|
-
profilePicture: string | null;
|
|
364
|
-
firstName: string | null;
|
|
365
|
-
lastName: string | null;
|
|
366
|
-
} | null;
|
|
367
367
|
media: {
|
|
368
368
|
type: string | null;
|
|
369
369
|
url: string | null;
|
|
@@ -382,16 +382,13 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
382
382
|
postType: string | null;
|
|
383
383
|
}>>;
|
|
384
384
|
}, "strip", z.ZodTypeAny, {
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
comments: number | null;
|
|
393
|
-
reposts: number | null;
|
|
394
|
-
totalReactions: number | null;
|
|
385
|
+
author: {
|
|
386
|
+
username: string | null;
|
|
387
|
+
headline: string | null;
|
|
388
|
+
profileUrl: string | null;
|
|
389
|
+
profilePicture: string | null;
|
|
390
|
+
firstName: string | null;
|
|
391
|
+
lastName: string | null;
|
|
395
392
|
} | null;
|
|
396
393
|
url: string | null;
|
|
397
394
|
text: string | null;
|
|
@@ -402,13 +399,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
402
399
|
pageCount: number | null;
|
|
403
400
|
} | null;
|
|
404
401
|
urn: string | null;
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
402
|
+
stats: {
|
|
403
|
+
comments: number | null;
|
|
404
|
+
like: number | null;
|
|
405
|
+
support: number | null;
|
|
406
|
+
love: number | null;
|
|
407
|
+
insight: number | null;
|
|
408
|
+
celebrate: number | null;
|
|
409
|
+
funny: number | null;
|
|
410
|
+
reposts: number | null;
|
|
411
|
+
totalReactions: number | null;
|
|
412
412
|
} | null;
|
|
413
413
|
media: {
|
|
414
414
|
type: string | null;
|
|
@@ -434,28 +434,28 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
434
434
|
fullUrn: string | null;
|
|
435
435
|
postType: string | null;
|
|
436
436
|
resharedPost: {
|
|
437
|
+
author: {
|
|
438
|
+
username: string | null;
|
|
439
|
+
headline: string | null;
|
|
440
|
+
profileUrl: string | null;
|
|
441
|
+
profilePicture: string | null;
|
|
442
|
+
firstName: string | null;
|
|
443
|
+
lastName: string | null;
|
|
444
|
+
} | null;
|
|
445
|
+
url: string | null;
|
|
446
|
+
text: string | null;
|
|
447
|
+
urn: string | null;
|
|
437
448
|
stats: {
|
|
449
|
+
comments: number | null;
|
|
438
450
|
like: number | null;
|
|
439
451
|
support: number | null;
|
|
440
452
|
love: number | null;
|
|
441
453
|
insight: number | null;
|
|
442
454
|
celebrate: number | null;
|
|
443
455
|
funny: number | null;
|
|
444
|
-
comments: number | null;
|
|
445
456
|
reposts: number | null;
|
|
446
457
|
totalReactions: number | null;
|
|
447
458
|
} | null;
|
|
448
|
-
url: string | null;
|
|
449
|
-
text: string | null;
|
|
450
|
-
urn: string | null;
|
|
451
|
-
author: {
|
|
452
|
-
username: string | null;
|
|
453
|
-
headline: string | null;
|
|
454
|
-
profileUrl: string | null;
|
|
455
|
-
profilePicture: string | null;
|
|
456
|
-
firstName: string | null;
|
|
457
|
-
lastName: string | null;
|
|
458
|
-
} | null;
|
|
459
459
|
media: {
|
|
460
460
|
type: string | null;
|
|
461
461
|
url: string | null;
|
|
@@ -474,16 +474,13 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
474
474
|
postType: string | null;
|
|
475
475
|
} | null;
|
|
476
476
|
}, {
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
comments: number | null;
|
|
485
|
-
reposts: number | null;
|
|
486
|
-
totalReactions: number | null;
|
|
477
|
+
author: {
|
|
478
|
+
username: string | null;
|
|
479
|
+
headline: string | null;
|
|
480
|
+
profileUrl: string | null;
|
|
481
|
+
profilePicture: string | null;
|
|
482
|
+
firstName: string | null;
|
|
483
|
+
lastName: string | null;
|
|
487
484
|
} | null;
|
|
488
485
|
url: string | null;
|
|
489
486
|
text: string | null;
|
|
@@ -494,13 +491,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
494
491
|
pageCount: number | null;
|
|
495
492
|
} | null;
|
|
496
493
|
urn: string | null;
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
494
|
+
stats: {
|
|
495
|
+
comments: number | null;
|
|
496
|
+
like: number | null;
|
|
497
|
+
support: number | null;
|
|
498
|
+
love: number | null;
|
|
499
|
+
insight: number | null;
|
|
500
|
+
celebrate: number | null;
|
|
501
|
+
funny: number | null;
|
|
502
|
+
reposts: number | null;
|
|
503
|
+
totalReactions: number | null;
|
|
504
504
|
} | null;
|
|
505
505
|
media: {
|
|
506
506
|
type: string | null;
|
|
@@ -526,28 +526,28 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
526
526
|
fullUrn: string | null;
|
|
527
527
|
postType: string | null;
|
|
528
528
|
resharedPost: {
|
|
529
|
+
author: {
|
|
530
|
+
username: string | null;
|
|
531
|
+
headline: string | null;
|
|
532
|
+
profileUrl: string | null;
|
|
533
|
+
profilePicture: string | null;
|
|
534
|
+
firstName: string | null;
|
|
535
|
+
lastName: string | null;
|
|
536
|
+
} | null;
|
|
537
|
+
url: string | null;
|
|
538
|
+
text: string | null;
|
|
539
|
+
urn: string | null;
|
|
529
540
|
stats: {
|
|
541
|
+
comments: number | null;
|
|
530
542
|
like: number | null;
|
|
531
543
|
support: number | null;
|
|
532
544
|
love: number | null;
|
|
533
545
|
insight: number | null;
|
|
534
546
|
celebrate: number | null;
|
|
535
547
|
funny: number | null;
|
|
536
|
-
comments: number | null;
|
|
537
548
|
reposts: number | null;
|
|
538
549
|
totalReactions: number | null;
|
|
539
550
|
} | null;
|
|
540
|
-
url: string | null;
|
|
541
|
-
text: string | null;
|
|
542
|
-
urn: string | null;
|
|
543
|
-
author: {
|
|
544
|
-
username: string | null;
|
|
545
|
-
headline: string | null;
|
|
546
|
-
profileUrl: string | null;
|
|
547
|
-
profilePicture: string | null;
|
|
548
|
-
firstName: string | null;
|
|
549
|
-
lastName: string | null;
|
|
550
|
-
} | null;
|
|
551
551
|
media: {
|
|
552
552
|
type: string | null;
|
|
553
553
|
url: string | null;
|
|
@@ -595,13 +595,13 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
595
595
|
currency: z.ZodNullable<z.ZodString>;
|
|
596
596
|
period: z.ZodNullable<z.ZodString>;
|
|
597
597
|
}, "strip", z.ZodTypeAny, {
|
|
598
|
-
from: number | null;
|
|
599
598
|
to: number | null;
|
|
599
|
+
from: number | null;
|
|
600
600
|
currency: string | null;
|
|
601
601
|
period: string | null;
|
|
602
602
|
}, {
|
|
603
|
-
from: number | null;
|
|
604
603
|
to: number | null;
|
|
604
|
+
from: number | null;
|
|
605
605
|
currency: string | null;
|
|
606
606
|
period: string | null;
|
|
607
607
|
}>>;
|
|
@@ -609,47 +609,47 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
610
610
|
description: string | null;
|
|
611
611
|
title: string | null;
|
|
612
|
-
url: string | null;
|
|
613
612
|
id: string | null;
|
|
613
|
+
url: string | null;
|
|
614
614
|
location: string | null;
|
|
615
615
|
postedAt: string | null;
|
|
616
616
|
applyUrl: string | null;
|
|
617
617
|
salary: {
|
|
618
|
-
from: number | null;
|
|
619
618
|
to: number | null;
|
|
619
|
+
from: number | null;
|
|
620
620
|
currency: string | null;
|
|
621
621
|
period: string | null;
|
|
622
622
|
} | null;
|
|
623
623
|
seniorityLevel: string | null;
|
|
624
624
|
employmentType: string | null;
|
|
625
|
-
skills: string[] | null;
|
|
626
625
|
company: {
|
|
627
626
|
name: string | null;
|
|
628
627
|
url: string | null;
|
|
629
628
|
logo: string | null;
|
|
630
629
|
} | null;
|
|
630
|
+
skills: string[] | null;
|
|
631
631
|
}, {
|
|
632
632
|
description: string | null;
|
|
633
633
|
title: string | null;
|
|
634
|
-
url: string | null;
|
|
635
634
|
id: string | null;
|
|
635
|
+
url: string | null;
|
|
636
636
|
location: string | null;
|
|
637
637
|
postedAt: string | null;
|
|
638
638
|
applyUrl: string | null;
|
|
639
639
|
salary: {
|
|
640
|
-
from: number | null;
|
|
641
640
|
to: number | null;
|
|
641
|
+
from: number | null;
|
|
642
642
|
currency: string | null;
|
|
643
643
|
period: string | null;
|
|
644
644
|
} | null;
|
|
645
645
|
seniorityLevel: string | null;
|
|
646
646
|
employmentType: string | null;
|
|
647
|
-
skills: string[] | null;
|
|
648
647
|
company: {
|
|
649
648
|
name: string | null;
|
|
650
649
|
url: string | null;
|
|
651
650
|
logo: string | null;
|
|
652
651
|
} | null;
|
|
652
|
+
skills: string[] | null;
|
|
653
653
|
}>;
|
|
654
654
|
declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
655
655
|
operation: z.ZodEnum<["scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
@@ -666,9 +666,9 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
666
666
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
667
667
|
}, "strip", z.ZodTypeAny, {
|
|
668
668
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
669
|
+
limit?: number | undefined;
|
|
669
670
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
670
671
|
username?: string | undefined;
|
|
671
|
-
limit?: number | undefined;
|
|
672
672
|
pageNumber?: number | undefined;
|
|
673
673
|
location?: string | undefined;
|
|
674
674
|
keyword?: string | undefined;
|
|
@@ -679,9 +679,9 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
679
679
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
680
680
|
}, {
|
|
681
681
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
682
|
+
limit?: number | undefined;
|
|
682
683
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
683
684
|
username?: string | undefined;
|
|
684
|
-
limit?: number | undefined;
|
|
685
685
|
pageNumber?: number | undefined;
|
|
686
686
|
location?: string | undefined;
|
|
687
687
|
keyword?: string | undefined;
|
|
@@ -722,13 +722,13 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
722
722
|
currency: z.ZodNullable<z.ZodString>;
|
|
723
723
|
period: z.ZodNullable<z.ZodString>;
|
|
724
724
|
}, "strip", z.ZodTypeAny, {
|
|
725
|
-
from: number | null;
|
|
726
725
|
to: number | null;
|
|
726
|
+
from: number | null;
|
|
727
727
|
currency: string | null;
|
|
728
728
|
period: string | null;
|
|
729
729
|
}, {
|
|
730
|
-
from: number | null;
|
|
731
730
|
to: number | null;
|
|
731
|
+
from: number | null;
|
|
732
732
|
currency: string | null;
|
|
733
733
|
period: string | null;
|
|
734
734
|
}>>;
|
|
@@ -736,47 +736,47 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
736
736
|
}, "strip", z.ZodTypeAny, {
|
|
737
737
|
description: string | null;
|
|
738
738
|
title: string | null;
|
|
739
|
-
url: string | null;
|
|
740
739
|
id: string | null;
|
|
740
|
+
url: string | null;
|
|
741
741
|
location: string | null;
|
|
742
742
|
postedAt: string | null;
|
|
743
743
|
applyUrl: string | null;
|
|
744
744
|
salary: {
|
|
745
|
-
from: number | null;
|
|
746
745
|
to: number | null;
|
|
746
|
+
from: number | null;
|
|
747
747
|
currency: string | null;
|
|
748
748
|
period: string | null;
|
|
749
749
|
} | null;
|
|
750
750
|
seniorityLevel: string | null;
|
|
751
751
|
employmentType: string | null;
|
|
752
|
-
skills: string[] | null;
|
|
753
752
|
company: {
|
|
754
753
|
name: string | null;
|
|
755
754
|
url: string | null;
|
|
756
755
|
logo: string | null;
|
|
757
756
|
} | null;
|
|
757
|
+
skills: string[] | null;
|
|
758
758
|
}, {
|
|
759
759
|
description: string | null;
|
|
760
760
|
title: string | null;
|
|
761
|
-
url: string | null;
|
|
762
761
|
id: string | null;
|
|
762
|
+
url: string | null;
|
|
763
763
|
location: string | null;
|
|
764
764
|
postedAt: string | null;
|
|
765
765
|
applyUrl: string | null;
|
|
766
766
|
salary: {
|
|
767
|
-
from: number | null;
|
|
768
767
|
to: number | null;
|
|
768
|
+
from: number | null;
|
|
769
769
|
currency: string | null;
|
|
770
770
|
period: string | null;
|
|
771
771
|
} | null;
|
|
772
772
|
seniorityLevel: string | null;
|
|
773
773
|
employmentType: string | null;
|
|
774
|
-
skills: string[] | null;
|
|
775
774
|
company: {
|
|
776
775
|
name: string | null;
|
|
777
776
|
url: string | null;
|
|
778
777
|
logo: string | null;
|
|
779
778
|
} | null;
|
|
779
|
+
skills: string[] | null;
|
|
780
780
|
}>, "many">>;
|
|
781
781
|
posts: z.ZodArray<z.ZodObject<{
|
|
782
782
|
urn: z.ZodNullable<z.ZodString>;
|
|
@@ -830,23 +830,23 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
830
830
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
831
831
|
reposts: z.ZodNullable<z.ZodNumber>;
|
|
832
832
|
}, "strip", z.ZodTypeAny, {
|
|
833
|
+
comments: number | null;
|
|
833
834
|
like: number | null;
|
|
834
835
|
support: number | null;
|
|
835
836
|
love: number | null;
|
|
836
837
|
insight: number | null;
|
|
837
838
|
celebrate: number | null;
|
|
838
839
|
funny: number | null;
|
|
839
|
-
comments: number | null;
|
|
840
840
|
reposts: number | null;
|
|
841
841
|
totalReactions: number | null;
|
|
842
842
|
}, {
|
|
843
|
+
comments: number | null;
|
|
843
844
|
like: number | null;
|
|
844
845
|
support: number | null;
|
|
845
846
|
love: number | null;
|
|
846
847
|
insight: number | null;
|
|
847
848
|
celebrate: number | null;
|
|
848
849
|
funny: number | null;
|
|
849
|
-
comments: number | null;
|
|
850
850
|
reposts: number | null;
|
|
851
851
|
totalReactions: number | null;
|
|
852
852
|
}>>;
|
|
@@ -969,23 +969,23 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
969
969
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
970
970
|
reposts: z.ZodNullable<z.ZodNumber>;
|
|
971
971
|
}, "strip", z.ZodTypeAny, {
|
|
972
|
+
comments: number | null;
|
|
972
973
|
like: number | null;
|
|
973
974
|
support: number | null;
|
|
974
975
|
love: number | null;
|
|
975
976
|
insight: number | null;
|
|
976
977
|
celebrate: number | null;
|
|
977
978
|
funny: number | null;
|
|
978
|
-
comments: number | null;
|
|
979
979
|
reposts: number | null;
|
|
980
980
|
totalReactions: number | null;
|
|
981
981
|
}, {
|
|
982
|
+
comments: number | null;
|
|
982
983
|
like: number | null;
|
|
983
984
|
support: number | null;
|
|
984
985
|
love: number | null;
|
|
985
986
|
insight: number | null;
|
|
986
987
|
celebrate: number | null;
|
|
987
988
|
funny: number | null;
|
|
988
|
-
comments: number | null;
|
|
989
989
|
reposts: number | null;
|
|
990
990
|
totalReactions: number | null;
|
|
991
991
|
}>>;
|
|
@@ -1026,28 +1026,28 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1026
1026
|
thumbnail: string | null;
|
|
1027
1027
|
}>>;
|
|
1028
1028
|
}, "strip", z.ZodTypeAny, {
|
|
1029
|
+
author: {
|
|
1030
|
+
username: string | null;
|
|
1031
|
+
headline: string | null;
|
|
1032
|
+
profileUrl: string | null;
|
|
1033
|
+
profilePicture: string | null;
|
|
1034
|
+
firstName: string | null;
|
|
1035
|
+
lastName: string | null;
|
|
1036
|
+
} | null;
|
|
1037
|
+
url: string | null;
|
|
1038
|
+
text: string | null;
|
|
1039
|
+
urn: string | null;
|
|
1029
1040
|
stats: {
|
|
1041
|
+
comments: number | null;
|
|
1030
1042
|
like: number | null;
|
|
1031
1043
|
support: number | null;
|
|
1032
1044
|
love: number | null;
|
|
1033
1045
|
insight: number | null;
|
|
1034
1046
|
celebrate: number | null;
|
|
1035
1047
|
funny: number | null;
|
|
1036
|
-
comments: number | null;
|
|
1037
1048
|
reposts: number | null;
|
|
1038
1049
|
totalReactions: number | null;
|
|
1039
1050
|
} | null;
|
|
1040
|
-
url: string | null;
|
|
1041
|
-
text: string | null;
|
|
1042
|
-
urn: string | null;
|
|
1043
|
-
author: {
|
|
1044
|
-
username: string | null;
|
|
1045
|
-
headline: string | null;
|
|
1046
|
-
profileUrl: string | null;
|
|
1047
|
-
profilePicture: string | null;
|
|
1048
|
-
firstName: string | null;
|
|
1049
|
-
lastName: string | null;
|
|
1050
|
-
} | null;
|
|
1051
1051
|
media: {
|
|
1052
1052
|
type: string | null;
|
|
1053
1053
|
url: string | null;
|
|
@@ -1065,28 +1065,28 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1065
1065
|
} | null;
|
|
1066
1066
|
postType: string | null;
|
|
1067
1067
|
}, {
|
|
1068
|
+
author: {
|
|
1069
|
+
username: string | null;
|
|
1070
|
+
headline: string | null;
|
|
1071
|
+
profileUrl: string | null;
|
|
1072
|
+
profilePicture: string | null;
|
|
1073
|
+
firstName: string | null;
|
|
1074
|
+
lastName: string | null;
|
|
1075
|
+
} | null;
|
|
1076
|
+
url: string | null;
|
|
1077
|
+
text: string | null;
|
|
1078
|
+
urn: string | null;
|
|
1068
1079
|
stats: {
|
|
1080
|
+
comments: number | null;
|
|
1069
1081
|
like: number | null;
|
|
1070
1082
|
support: number | null;
|
|
1071
1083
|
love: number | null;
|
|
1072
1084
|
insight: number | null;
|
|
1073
1085
|
celebrate: number | null;
|
|
1074
1086
|
funny: number | null;
|
|
1075
|
-
comments: number | null;
|
|
1076
1087
|
reposts: number | null;
|
|
1077
1088
|
totalReactions: number | null;
|
|
1078
1089
|
} | null;
|
|
1079
|
-
url: string | null;
|
|
1080
|
-
text: string | null;
|
|
1081
|
-
urn: string | null;
|
|
1082
|
-
author: {
|
|
1083
|
-
username: string | null;
|
|
1084
|
-
headline: string | null;
|
|
1085
|
-
profileUrl: string | null;
|
|
1086
|
-
profilePicture: string | null;
|
|
1087
|
-
firstName: string | null;
|
|
1088
|
-
lastName: string | null;
|
|
1089
|
-
} | null;
|
|
1090
1090
|
media: {
|
|
1091
1091
|
type: string | null;
|
|
1092
1092
|
url: string | null;
|
|
@@ -1105,16 +1105,13 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1105
1105
|
postType: string | null;
|
|
1106
1106
|
}>>;
|
|
1107
1107
|
}, "strip", z.ZodTypeAny, {
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
comments: number | null;
|
|
1116
|
-
reposts: number | null;
|
|
1117
|
-
totalReactions: number | null;
|
|
1108
|
+
author: {
|
|
1109
|
+
username: string | null;
|
|
1110
|
+
headline: string | null;
|
|
1111
|
+
profileUrl: string | null;
|
|
1112
|
+
profilePicture: string | null;
|
|
1113
|
+
firstName: string | null;
|
|
1114
|
+
lastName: string | null;
|
|
1118
1115
|
} | null;
|
|
1119
1116
|
url: string | null;
|
|
1120
1117
|
text: string | null;
|
|
@@ -1125,13 +1122,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1125
1122
|
pageCount: number | null;
|
|
1126
1123
|
} | null;
|
|
1127
1124
|
urn: string | null;
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1125
|
+
stats: {
|
|
1126
|
+
comments: number | null;
|
|
1127
|
+
like: number | null;
|
|
1128
|
+
support: number | null;
|
|
1129
|
+
love: number | null;
|
|
1130
|
+
insight: number | null;
|
|
1131
|
+
celebrate: number | null;
|
|
1132
|
+
funny: number | null;
|
|
1133
|
+
reposts: number | null;
|
|
1134
|
+
totalReactions: number | null;
|
|
1135
1135
|
} | null;
|
|
1136
1136
|
media: {
|
|
1137
1137
|
type: string | null;
|
|
@@ -1157,28 +1157,28 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1157
1157
|
fullUrn: string | null;
|
|
1158
1158
|
postType: string | null;
|
|
1159
1159
|
resharedPost: {
|
|
1160
|
+
author: {
|
|
1161
|
+
username: string | null;
|
|
1162
|
+
headline: string | null;
|
|
1163
|
+
profileUrl: string | null;
|
|
1164
|
+
profilePicture: string | null;
|
|
1165
|
+
firstName: string | null;
|
|
1166
|
+
lastName: string | null;
|
|
1167
|
+
} | null;
|
|
1168
|
+
url: string | null;
|
|
1169
|
+
text: string | null;
|
|
1170
|
+
urn: string | null;
|
|
1160
1171
|
stats: {
|
|
1172
|
+
comments: number | null;
|
|
1161
1173
|
like: number | null;
|
|
1162
1174
|
support: number | null;
|
|
1163
1175
|
love: number | null;
|
|
1164
1176
|
insight: number | null;
|
|
1165
1177
|
celebrate: number | null;
|
|
1166
1178
|
funny: number | null;
|
|
1167
|
-
comments: number | null;
|
|
1168
1179
|
reposts: number | null;
|
|
1169
1180
|
totalReactions: number | null;
|
|
1170
1181
|
} | null;
|
|
1171
|
-
url: string | null;
|
|
1172
|
-
text: string | null;
|
|
1173
|
-
urn: string | null;
|
|
1174
|
-
author: {
|
|
1175
|
-
username: string | null;
|
|
1176
|
-
headline: string | null;
|
|
1177
|
-
profileUrl: string | null;
|
|
1178
|
-
profilePicture: string | null;
|
|
1179
|
-
firstName: string | null;
|
|
1180
|
-
lastName: string | null;
|
|
1181
|
-
} | null;
|
|
1182
1182
|
media: {
|
|
1183
1183
|
type: string | null;
|
|
1184
1184
|
url: string | null;
|
|
@@ -1197,16 +1197,13 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1197
1197
|
postType: string | null;
|
|
1198
1198
|
} | null;
|
|
1199
1199
|
}, {
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
comments: number | null;
|
|
1208
|
-
reposts: number | null;
|
|
1209
|
-
totalReactions: number | null;
|
|
1200
|
+
author: {
|
|
1201
|
+
username: string | null;
|
|
1202
|
+
headline: string | null;
|
|
1203
|
+
profileUrl: string | null;
|
|
1204
|
+
profilePicture: string | null;
|
|
1205
|
+
firstName: string | null;
|
|
1206
|
+
lastName: string | null;
|
|
1210
1207
|
} | null;
|
|
1211
1208
|
url: string | null;
|
|
1212
1209
|
text: string | null;
|
|
@@ -1217,13 +1214,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1217
1214
|
pageCount: number | null;
|
|
1218
1215
|
} | null;
|
|
1219
1216
|
urn: string | null;
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1217
|
+
stats: {
|
|
1218
|
+
comments: number | null;
|
|
1219
|
+
like: number | null;
|
|
1220
|
+
support: number | null;
|
|
1221
|
+
love: number | null;
|
|
1222
|
+
insight: number | null;
|
|
1223
|
+
celebrate: number | null;
|
|
1224
|
+
funny: number | null;
|
|
1225
|
+
reposts: number | null;
|
|
1226
|
+
totalReactions: number | null;
|
|
1227
1227
|
} | null;
|
|
1228
1228
|
media: {
|
|
1229
1229
|
type: string | null;
|
|
@@ -1249,28 +1249,28 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1249
1249
|
fullUrn: string | null;
|
|
1250
1250
|
postType: string | null;
|
|
1251
1251
|
resharedPost: {
|
|
1252
|
+
author: {
|
|
1253
|
+
username: string | null;
|
|
1254
|
+
headline: string | null;
|
|
1255
|
+
profileUrl: string | null;
|
|
1256
|
+
profilePicture: string | null;
|
|
1257
|
+
firstName: string | null;
|
|
1258
|
+
lastName: string | null;
|
|
1259
|
+
} | null;
|
|
1260
|
+
url: string | null;
|
|
1261
|
+
text: string | null;
|
|
1262
|
+
urn: string | null;
|
|
1252
1263
|
stats: {
|
|
1264
|
+
comments: number | null;
|
|
1253
1265
|
like: number | null;
|
|
1254
1266
|
support: number | null;
|
|
1255
1267
|
love: number | null;
|
|
1256
1268
|
insight: number | null;
|
|
1257
1269
|
celebrate: number | null;
|
|
1258
1270
|
funny: number | null;
|
|
1259
|
-
comments: number | null;
|
|
1260
1271
|
reposts: number | null;
|
|
1261
1272
|
totalReactions: number | null;
|
|
1262
1273
|
} | null;
|
|
1263
|
-
url: string | null;
|
|
1264
|
-
text: string | null;
|
|
1265
|
-
urn: string | null;
|
|
1266
|
-
author: {
|
|
1267
|
-
username: string | null;
|
|
1268
|
-
headline: string | null;
|
|
1269
|
-
profileUrl: string | null;
|
|
1270
|
-
profilePicture: string | null;
|
|
1271
|
-
firstName: string | null;
|
|
1272
|
-
lastName: string | null;
|
|
1273
|
-
} | null;
|
|
1274
1274
|
media: {
|
|
1275
1275
|
type: string | null;
|
|
1276
1276
|
url: string | null;
|
|
@@ -1298,20 +1298,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1298
1298
|
success: z.ZodBoolean;
|
|
1299
1299
|
error: z.ZodString;
|
|
1300
1300
|
}, "strip", z.ZodTypeAny, {
|
|
1301
|
-
error: string;
|
|
1302
|
-
success: boolean;
|
|
1303
1301
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1302
|
+
success: boolean;
|
|
1303
|
+
error: string;
|
|
1304
1304
|
posts: {
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
comments: number | null;
|
|
1313
|
-
reposts: number | null;
|
|
1314
|
-
totalReactions: number | null;
|
|
1305
|
+
author: {
|
|
1306
|
+
username: string | null;
|
|
1307
|
+
headline: string | null;
|
|
1308
|
+
profileUrl: string | null;
|
|
1309
|
+
profilePicture: string | null;
|
|
1310
|
+
firstName: string | null;
|
|
1311
|
+
lastName: string | null;
|
|
1315
1312
|
} | null;
|
|
1316
1313
|
url: string | null;
|
|
1317
1314
|
text: string | null;
|
|
@@ -1322,13 +1319,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1322
1319
|
pageCount: number | null;
|
|
1323
1320
|
} | null;
|
|
1324
1321
|
urn: string | null;
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1322
|
+
stats: {
|
|
1323
|
+
comments: number | null;
|
|
1324
|
+
like: number | null;
|
|
1325
|
+
support: number | null;
|
|
1326
|
+
love: number | null;
|
|
1327
|
+
insight: number | null;
|
|
1328
|
+
celebrate: number | null;
|
|
1329
|
+
funny: number | null;
|
|
1330
|
+
reposts: number | null;
|
|
1331
|
+
totalReactions: number | null;
|
|
1332
1332
|
} | null;
|
|
1333
1333
|
media: {
|
|
1334
1334
|
type: string | null;
|
|
@@ -1354,28 +1354,28 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1354
1354
|
fullUrn: string | null;
|
|
1355
1355
|
postType: string | null;
|
|
1356
1356
|
resharedPost: {
|
|
1357
|
+
author: {
|
|
1358
|
+
username: string | null;
|
|
1359
|
+
headline: string | null;
|
|
1360
|
+
profileUrl: string | null;
|
|
1361
|
+
profilePicture: string | null;
|
|
1362
|
+
firstName: string | null;
|
|
1363
|
+
lastName: string | null;
|
|
1364
|
+
} | null;
|
|
1365
|
+
url: string | null;
|
|
1366
|
+
text: string | null;
|
|
1367
|
+
urn: string | null;
|
|
1357
1368
|
stats: {
|
|
1369
|
+
comments: number | null;
|
|
1358
1370
|
like: number | null;
|
|
1359
1371
|
support: number | null;
|
|
1360
1372
|
love: number | null;
|
|
1361
1373
|
insight: number | null;
|
|
1362
1374
|
celebrate: number | null;
|
|
1363
1375
|
funny: number | null;
|
|
1364
|
-
comments: number | null;
|
|
1365
1376
|
reposts: number | null;
|
|
1366
1377
|
totalReactions: number | null;
|
|
1367
1378
|
} | null;
|
|
1368
|
-
url: string | null;
|
|
1369
|
-
text: string | null;
|
|
1370
|
-
urn: string | null;
|
|
1371
|
-
author: {
|
|
1372
|
-
username: string | null;
|
|
1373
|
-
headline: string | null;
|
|
1374
|
-
profileUrl: string | null;
|
|
1375
|
-
profilePicture: string | null;
|
|
1376
|
-
firstName: string | null;
|
|
1377
|
-
lastName: string | null;
|
|
1378
|
-
} | null;
|
|
1379
1379
|
media: {
|
|
1380
1380
|
type: string | null;
|
|
1381
1381
|
url: string | null;
|
|
@@ -1400,44 +1400,41 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1400
1400
|
jobs?: {
|
|
1401
1401
|
description: string | null;
|
|
1402
1402
|
title: string | null;
|
|
1403
|
-
url: string | null;
|
|
1404
1403
|
id: string | null;
|
|
1404
|
+
url: string | null;
|
|
1405
1405
|
location: string | null;
|
|
1406
1406
|
postedAt: string | null;
|
|
1407
1407
|
applyUrl: string | null;
|
|
1408
1408
|
salary: {
|
|
1409
|
-
from: number | null;
|
|
1410
1409
|
to: number | null;
|
|
1410
|
+
from: number | null;
|
|
1411
1411
|
currency: string | null;
|
|
1412
1412
|
period: string | null;
|
|
1413
1413
|
} | null;
|
|
1414
1414
|
seniorityLevel: string | null;
|
|
1415
1415
|
employmentType: string | null;
|
|
1416
|
-
skills: string[] | null;
|
|
1417
1416
|
company: {
|
|
1418
1417
|
name: string | null;
|
|
1419
1418
|
url: string | null;
|
|
1420
1419
|
logo: string | null;
|
|
1421
1420
|
} | null;
|
|
1421
|
+
skills: string[] | null;
|
|
1422
1422
|
}[] | undefined;
|
|
1423
1423
|
totalResults?: number | null | undefined;
|
|
1424
1424
|
paginationToken?: string | null | undefined;
|
|
1425
1425
|
hasNextPage?: boolean | null | undefined;
|
|
1426
1426
|
}, {
|
|
1427
|
-
error: string;
|
|
1428
|
-
success: boolean;
|
|
1429
1427
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1428
|
+
success: boolean;
|
|
1429
|
+
error: string;
|
|
1430
1430
|
posts: {
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
comments: number | null;
|
|
1439
|
-
reposts: number | null;
|
|
1440
|
-
totalReactions: number | null;
|
|
1431
|
+
author: {
|
|
1432
|
+
username: string | null;
|
|
1433
|
+
headline: string | null;
|
|
1434
|
+
profileUrl: string | null;
|
|
1435
|
+
profilePicture: string | null;
|
|
1436
|
+
firstName: string | null;
|
|
1437
|
+
lastName: string | null;
|
|
1441
1438
|
} | null;
|
|
1442
1439
|
url: string | null;
|
|
1443
1440
|
text: string | null;
|
|
@@ -1448,13 +1445,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1448
1445
|
pageCount: number | null;
|
|
1449
1446
|
} | null;
|
|
1450
1447
|
urn: string | null;
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1448
|
+
stats: {
|
|
1449
|
+
comments: number | null;
|
|
1450
|
+
like: number | null;
|
|
1451
|
+
support: number | null;
|
|
1452
|
+
love: number | null;
|
|
1453
|
+
insight: number | null;
|
|
1454
|
+
celebrate: number | null;
|
|
1455
|
+
funny: number | null;
|
|
1456
|
+
reposts: number | null;
|
|
1457
|
+
totalReactions: number | null;
|
|
1458
1458
|
} | null;
|
|
1459
1459
|
media: {
|
|
1460
1460
|
type: string | null;
|
|
@@ -1480,28 +1480,28 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1480
1480
|
fullUrn: string | null;
|
|
1481
1481
|
postType: string | null;
|
|
1482
1482
|
resharedPost: {
|
|
1483
|
+
author: {
|
|
1484
|
+
username: string | null;
|
|
1485
|
+
headline: string | null;
|
|
1486
|
+
profileUrl: string | null;
|
|
1487
|
+
profilePicture: string | null;
|
|
1488
|
+
firstName: string | null;
|
|
1489
|
+
lastName: string | null;
|
|
1490
|
+
} | null;
|
|
1491
|
+
url: string | null;
|
|
1492
|
+
text: string | null;
|
|
1493
|
+
urn: string | null;
|
|
1483
1494
|
stats: {
|
|
1495
|
+
comments: number | null;
|
|
1484
1496
|
like: number | null;
|
|
1485
1497
|
support: number | null;
|
|
1486
1498
|
love: number | null;
|
|
1487
1499
|
insight: number | null;
|
|
1488
1500
|
celebrate: number | null;
|
|
1489
1501
|
funny: number | null;
|
|
1490
|
-
comments: number | null;
|
|
1491
1502
|
reposts: number | null;
|
|
1492
1503
|
totalReactions: number | null;
|
|
1493
1504
|
} | null;
|
|
1494
|
-
url: string | null;
|
|
1495
|
-
text: string | null;
|
|
1496
|
-
urn: string | null;
|
|
1497
|
-
author: {
|
|
1498
|
-
username: string | null;
|
|
1499
|
-
headline: string | null;
|
|
1500
|
-
profileUrl: string | null;
|
|
1501
|
-
profilePicture: string | null;
|
|
1502
|
-
firstName: string | null;
|
|
1503
|
-
lastName: string | null;
|
|
1504
|
-
} | null;
|
|
1505
1505
|
media: {
|
|
1506
1506
|
type: string | null;
|
|
1507
1507
|
url: string | null;
|
|
@@ -1526,25 +1526,25 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1526
1526
|
jobs?: {
|
|
1527
1527
|
description: string | null;
|
|
1528
1528
|
title: string | null;
|
|
1529
|
-
url: string | null;
|
|
1530
1529
|
id: string | null;
|
|
1530
|
+
url: string | null;
|
|
1531
1531
|
location: string | null;
|
|
1532
1532
|
postedAt: string | null;
|
|
1533
1533
|
applyUrl: string | null;
|
|
1534
1534
|
salary: {
|
|
1535
|
-
from: number | null;
|
|
1536
1535
|
to: number | null;
|
|
1536
|
+
from: number | null;
|
|
1537
1537
|
currency: string | null;
|
|
1538
1538
|
period: string | null;
|
|
1539
1539
|
} | null;
|
|
1540
1540
|
seniorityLevel: string | null;
|
|
1541
1541
|
employmentType: string | null;
|
|
1542
|
-
skills: string[] | null;
|
|
1543
1542
|
company: {
|
|
1544
1543
|
name: string | null;
|
|
1545
1544
|
url: string | null;
|
|
1546
1545
|
logo: string | null;
|
|
1547
1546
|
} | null;
|
|
1547
|
+
skills: string[] | null;
|
|
1548
1548
|
}[] | undefined;
|
|
1549
1549
|
totalResults?: number | null | undefined;
|
|
1550
1550
|
paginationToken?: string | null | undefined;
|
|
@@ -1589,9 +1589,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1589
1589
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1590
1590
|
}, "strip", z.ZodTypeAny, {
|
|
1591
1591
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1592
|
+
limit?: number | undefined;
|
|
1592
1593
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1593
1594
|
username?: string | undefined;
|
|
1594
|
-
limit?: number | undefined;
|
|
1595
1595
|
pageNumber?: number | undefined;
|
|
1596
1596
|
location?: string | undefined;
|
|
1597
1597
|
keyword?: string | undefined;
|
|
@@ -1602,9 +1602,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1602
1602
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
1603
1603
|
}, {
|
|
1604
1604
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1605
|
+
limit?: number | undefined;
|
|
1605
1606
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1606
1607
|
username?: string | undefined;
|
|
1607
|
-
limit?: number | undefined;
|
|
1608
1608
|
pageNumber?: number | undefined;
|
|
1609
1609
|
location?: string | undefined;
|
|
1610
1610
|
keyword?: string | undefined;
|
|
@@ -1645,13 +1645,13 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1645
1645
|
currency: z.ZodNullable<z.ZodString>;
|
|
1646
1646
|
period: z.ZodNullable<z.ZodString>;
|
|
1647
1647
|
}, "strip", z.ZodTypeAny, {
|
|
1648
|
-
from: number | null;
|
|
1649
1648
|
to: number | null;
|
|
1649
|
+
from: number | null;
|
|
1650
1650
|
currency: string | null;
|
|
1651
1651
|
period: string | null;
|
|
1652
1652
|
}, {
|
|
1653
|
-
from: number | null;
|
|
1654
1653
|
to: number | null;
|
|
1654
|
+
from: number | null;
|
|
1655
1655
|
currency: string | null;
|
|
1656
1656
|
period: string | null;
|
|
1657
1657
|
}>>;
|
|
@@ -1659,47 +1659,47 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1659
1659
|
}, "strip", z.ZodTypeAny, {
|
|
1660
1660
|
description: string | null;
|
|
1661
1661
|
title: string | null;
|
|
1662
|
-
url: string | null;
|
|
1663
1662
|
id: string | null;
|
|
1663
|
+
url: string | null;
|
|
1664
1664
|
location: string | null;
|
|
1665
1665
|
postedAt: string | null;
|
|
1666
1666
|
applyUrl: string | null;
|
|
1667
1667
|
salary: {
|
|
1668
|
-
from: number | null;
|
|
1669
1668
|
to: number | null;
|
|
1669
|
+
from: number | null;
|
|
1670
1670
|
currency: string | null;
|
|
1671
1671
|
period: string | null;
|
|
1672
1672
|
} | null;
|
|
1673
1673
|
seniorityLevel: string | null;
|
|
1674
1674
|
employmentType: string | null;
|
|
1675
|
-
skills: string[] | null;
|
|
1676
1675
|
company: {
|
|
1677
1676
|
name: string | null;
|
|
1678
1677
|
url: string | null;
|
|
1679
1678
|
logo: string | null;
|
|
1680
1679
|
} | null;
|
|
1680
|
+
skills: string[] | null;
|
|
1681
1681
|
}, {
|
|
1682
1682
|
description: string | null;
|
|
1683
1683
|
title: string | null;
|
|
1684
|
-
url: string | null;
|
|
1685
1684
|
id: string | null;
|
|
1685
|
+
url: string | null;
|
|
1686
1686
|
location: string | null;
|
|
1687
1687
|
postedAt: string | null;
|
|
1688
1688
|
applyUrl: string | null;
|
|
1689
1689
|
salary: {
|
|
1690
|
-
from: number | null;
|
|
1691
1690
|
to: number | null;
|
|
1691
|
+
from: number | null;
|
|
1692
1692
|
currency: string | null;
|
|
1693
1693
|
period: string | null;
|
|
1694
1694
|
} | null;
|
|
1695
1695
|
seniorityLevel: string | null;
|
|
1696
1696
|
employmentType: string | null;
|
|
1697
|
-
skills: string[] | null;
|
|
1698
1697
|
company: {
|
|
1699
1698
|
name: string | null;
|
|
1700
1699
|
url: string | null;
|
|
1701
1700
|
logo: string | null;
|
|
1702
1701
|
} | null;
|
|
1702
|
+
skills: string[] | null;
|
|
1703
1703
|
}>, "many">>;
|
|
1704
1704
|
posts: z.ZodArray<z.ZodObject<{
|
|
1705
1705
|
urn: z.ZodNullable<z.ZodString>;
|
|
@@ -1753,23 +1753,23 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1753
1753
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
1754
1754
|
reposts: z.ZodNullable<z.ZodNumber>;
|
|
1755
1755
|
}, "strip", z.ZodTypeAny, {
|
|
1756
|
+
comments: number | null;
|
|
1756
1757
|
like: number | null;
|
|
1757
1758
|
support: number | null;
|
|
1758
1759
|
love: number | null;
|
|
1759
1760
|
insight: number | null;
|
|
1760
1761
|
celebrate: number | null;
|
|
1761
1762
|
funny: number | null;
|
|
1762
|
-
comments: number | null;
|
|
1763
1763
|
reposts: number | null;
|
|
1764
1764
|
totalReactions: number | null;
|
|
1765
1765
|
}, {
|
|
1766
|
+
comments: number | null;
|
|
1766
1767
|
like: number | null;
|
|
1767
1768
|
support: number | null;
|
|
1768
1769
|
love: number | null;
|
|
1769
1770
|
insight: number | null;
|
|
1770
1771
|
celebrate: number | null;
|
|
1771
1772
|
funny: number | null;
|
|
1772
|
-
comments: number | null;
|
|
1773
1773
|
reposts: number | null;
|
|
1774
1774
|
totalReactions: number | null;
|
|
1775
1775
|
}>>;
|
|
@@ -1892,23 +1892,23 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1892
1892
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
1893
1893
|
reposts: z.ZodNullable<z.ZodNumber>;
|
|
1894
1894
|
}, "strip", z.ZodTypeAny, {
|
|
1895
|
+
comments: number | null;
|
|
1895
1896
|
like: number | null;
|
|
1896
1897
|
support: number | null;
|
|
1897
1898
|
love: number | null;
|
|
1898
1899
|
insight: number | null;
|
|
1899
1900
|
celebrate: number | null;
|
|
1900
1901
|
funny: number | null;
|
|
1901
|
-
comments: number | null;
|
|
1902
1902
|
reposts: number | null;
|
|
1903
1903
|
totalReactions: number | null;
|
|
1904
1904
|
}, {
|
|
1905
|
+
comments: number | null;
|
|
1905
1906
|
like: number | null;
|
|
1906
1907
|
support: number | null;
|
|
1907
1908
|
love: number | null;
|
|
1908
1909
|
insight: number | null;
|
|
1909
1910
|
celebrate: number | null;
|
|
1910
1911
|
funny: number | null;
|
|
1911
|
-
comments: number | null;
|
|
1912
1912
|
reposts: number | null;
|
|
1913
1913
|
totalReactions: number | null;
|
|
1914
1914
|
}>>;
|
|
@@ -1949,28 +1949,28 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1949
1949
|
thumbnail: string | null;
|
|
1950
1950
|
}>>;
|
|
1951
1951
|
}, "strip", z.ZodTypeAny, {
|
|
1952
|
+
author: {
|
|
1953
|
+
username: string | null;
|
|
1954
|
+
headline: string | null;
|
|
1955
|
+
profileUrl: string | null;
|
|
1956
|
+
profilePicture: string | null;
|
|
1957
|
+
firstName: string | null;
|
|
1958
|
+
lastName: string | null;
|
|
1959
|
+
} | null;
|
|
1960
|
+
url: string | null;
|
|
1961
|
+
text: string | null;
|
|
1962
|
+
urn: string | null;
|
|
1952
1963
|
stats: {
|
|
1964
|
+
comments: number | null;
|
|
1953
1965
|
like: number | null;
|
|
1954
1966
|
support: number | null;
|
|
1955
1967
|
love: number | null;
|
|
1956
1968
|
insight: number | null;
|
|
1957
1969
|
celebrate: number | null;
|
|
1958
1970
|
funny: number | null;
|
|
1959
|
-
comments: number | null;
|
|
1960
1971
|
reposts: number | null;
|
|
1961
1972
|
totalReactions: number | null;
|
|
1962
1973
|
} | null;
|
|
1963
|
-
url: string | null;
|
|
1964
|
-
text: string | null;
|
|
1965
|
-
urn: string | null;
|
|
1966
|
-
author: {
|
|
1967
|
-
username: string | null;
|
|
1968
|
-
headline: string | null;
|
|
1969
|
-
profileUrl: string | null;
|
|
1970
|
-
profilePicture: string | null;
|
|
1971
|
-
firstName: string | null;
|
|
1972
|
-
lastName: string | null;
|
|
1973
|
-
} | null;
|
|
1974
1974
|
media: {
|
|
1975
1975
|
type: string | null;
|
|
1976
1976
|
url: string | null;
|
|
@@ -1988,20 +1988,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1988
1988
|
} | null;
|
|
1989
1989
|
postType: string | null;
|
|
1990
1990
|
}, {
|
|
1991
|
-
stats: {
|
|
1992
|
-
like: number | null;
|
|
1993
|
-
support: number | null;
|
|
1994
|
-
love: number | null;
|
|
1995
|
-
insight: number | null;
|
|
1996
|
-
celebrate: number | null;
|
|
1997
|
-
funny: number | null;
|
|
1998
|
-
comments: number | null;
|
|
1999
|
-
reposts: number | null;
|
|
2000
|
-
totalReactions: number | null;
|
|
2001
|
-
} | null;
|
|
2002
|
-
url: string | null;
|
|
2003
|
-
text: string | null;
|
|
2004
|
-
urn: string | null;
|
|
2005
1991
|
author: {
|
|
2006
1992
|
username: string | null;
|
|
2007
1993
|
headline: string | null;
|
|
@@ -2010,6 +1996,20 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2010
1996
|
firstName: string | null;
|
|
2011
1997
|
lastName: string | null;
|
|
2012
1998
|
} | null;
|
|
1999
|
+
url: string | null;
|
|
2000
|
+
text: string | null;
|
|
2001
|
+
urn: string | null;
|
|
2002
|
+
stats: {
|
|
2003
|
+
comments: number | null;
|
|
2004
|
+
like: number | null;
|
|
2005
|
+
support: number | null;
|
|
2006
|
+
love: number | null;
|
|
2007
|
+
insight: number | null;
|
|
2008
|
+
celebrate: number | null;
|
|
2009
|
+
funny: number | null;
|
|
2010
|
+
reposts: number | null;
|
|
2011
|
+
totalReactions: number | null;
|
|
2012
|
+
} | null;
|
|
2013
2013
|
media: {
|
|
2014
2014
|
type: string | null;
|
|
2015
2015
|
url: string | null;
|
|
@@ -2028,16 +2028,13 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2028
2028
|
postType: string | null;
|
|
2029
2029
|
}>>;
|
|
2030
2030
|
}, "strip", z.ZodTypeAny, {
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
comments: number | null;
|
|
2039
|
-
reposts: number | null;
|
|
2040
|
-
totalReactions: number | null;
|
|
2031
|
+
author: {
|
|
2032
|
+
username: string | null;
|
|
2033
|
+
headline: string | null;
|
|
2034
|
+
profileUrl: string | null;
|
|
2035
|
+
profilePicture: string | null;
|
|
2036
|
+
firstName: string | null;
|
|
2037
|
+
lastName: string | null;
|
|
2041
2038
|
} | null;
|
|
2042
2039
|
url: string | null;
|
|
2043
2040
|
text: string | null;
|
|
@@ -2048,13 +2045,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2048
2045
|
pageCount: number | null;
|
|
2049
2046
|
} | null;
|
|
2050
2047
|
urn: string | null;
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2048
|
+
stats: {
|
|
2049
|
+
comments: number | null;
|
|
2050
|
+
like: number | null;
|
|
2051
|
+
support: number | null;
|
|
2052
|
+
love: number | null;
|
|
2053
|
+
insight: number | null;
|
|
2054
|
+
celebrate: number | null;
|
|
2055
|
+
funny: number | null;
|
|
2056
|
+
reposts: number | null;
|
|
2057
|
+
totalReactions: number | null;
|
|
2058
2058
|
} | null;
|
|
2059
2059
|
media: {
|
|
2060
2060
|
type: string | null;
|
|
@@ -2080,28 +2080,28 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2080
2080
|
fullUrn: string | null;
|
|
2081
2081
|
postType: string | null;
|
|
2082
2082
|
resharedPost: {
|
|
2083
|
+
author: {
|
|
2084
|
+
username: string | null;
|
|
2085
|
+
headline: string | null;
|
|
2086
|
+
profileUrl: string | null;
|
|
2087
|
+
profilePicture: string | null;
|
|
2088
|
+
firstName: string | null;
|
|
2089
|
+
lastName: string | null;
|
|
2090
|
+
} | null;
|
|
2091
|
+
url: string | null;
|
|
2092
|
+
text: string | null;
|
|
2093
|
+
urn: string | null;
|
|
2083
2094
|
stats: {
|
|
2095
|
+
comments: number | null;
|
|
2084
2096
|
like: number | null;
|
|
2085
2097
|
support: number | null;
|
|
2086
2098
|
love: number | null;
|
|
2087
2099
|
insight: number | null;
|
|
2088
2100
|
celebrate: number | null;
|
|
2089
2101
|
funny: number | null;
|
|
2090
|
-
comments: number | null;
|
|
2091
2102
|
reposts: number | null;
|
|
2092
2103
|
totalReactions: number | null;
|
|
2093
2104
|
} | null;
|
|
2094
|
-
url: string | null;
|
|
2095
|
-
text: string | null;
|
|
2096
|
-
urn: string | null;
|
|
2097
|
-
author: {
|
|
2098
|
-
username: string | null;
|
|
2099
|
-
headline: string | null;
|
|
2100
|
-
profileUrl: string | null;
|
|
2101
|
-
profilePicture: string | null;
|
|
2102
|
-
firstName: string | null;
|
|
2103
|
-
lastName: string | null;
|
|
2104
|
-
} | null;
|
|
2105
2105
|
media: {
|
|
2106
2106
|
type: string | null;
|
|
2107
2107
|
url: string | null;
|
|
@@ -2120,16 +2120,13 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2120
2120
|
postType: string | null;
|
|
2121
2121
|
} | null;
|
|
2122
2122
|
}, {
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
comments: number | null;
|
|
2131
|
-
reposts: number | null;
|
|
2132
|
-
totalReactions: number | null;
|
|
2123
|
+
author: {
|
|
2124
|
+
username: string | null;
|
|
2125
|
+
headline: string | null;
|
|
2126
|
+
profileUrl: string | null;
|
|
2127
|
+
profilePicture: string | null;
|
|
2128
|
+
firstName: string | null;
|
|
2129
|
+
lastName: string | null;
|
|
2133
2130
|
} | null;
|
|
2134
2131
|
url: string | null;
|
|
2135
2132
|
text: string | null;
|
|
@@ -2140,13 +2137,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2140
2137
|
pageCount: number | null;
|
|
2141
2138
|
} | null;
|
|
2142
2139
|
urn: string | null;
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2140
|
+
stats: {
|
|
2141
|
+
comments: number | null;
|
|
2142
|
+
like: number | null;
|
|
2143
|
+
support: number | null;
|
|
2144
|
+
love: number | null;
|
|
2145
|
+
insight: number | null;
|
|
2146
|
+
celebrate: number | null;
|
|
2147
|
+
funny: number | null;
|
|
2148
|
+
reposts: number | null;
|
|
2149
|
+
totalReactions: number | null;
|
|
2150
2150
|
} | null;
|
|
2151
2151
|
media: {
|
|
2152
2152
|
type: string | null;
|
|
@@ -2172,28 +2172,28 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2172
2172
|
fullUrn: string | null;
|
|
2173
2173
|
postType: string | null;
|
|
2174
2174
|
resharedPost: {
|
|
2175
|
+
author: {
|
|
2176
|
+
username: string | null;
|
|
2177
|
+
headline: string | null;
|
|
2178
|
+
profileUrl: string | null;
|
|
2179
|
+
profilePicture: string | null;
|
|
2180
|
+
firstName: string | null;
|
|
2181
|
+
lastName: string | null;
|
|
2182
|
+
} | null;
|
|
2183
|
+
url: string | null;
|
|
2184
|
+
text: string | null;
|
|
2185
|
+
urn: string | null;
|
|
2175
2186
|
stats: {
|
|
2187
|
+
comments: number | null;
|
|
2176
2188
|
like: number | null;
|
|
2177
2189
|
support: number | null;
|
|
2178
2190
|
love: number | null;
|
|
2179
2191
|
insight: number | null;
|
|
2180
2192
|
celebrate: number | null;
|
|
2181
2193
|
funny: number | null;
|
|
2182
|
-
comments: number | null;
|
|
2183
2194
|
reposts: number | null;
|
|
2184
2195
|
totalReactions: number | null;
|
|
2185
2196
|
} | null;
|
|
2186
|
-
url: string | null;
|
|
2187
|
-
text: string | null;
|
|
2188
|
-
urn: string | null;
|
|
2189
|
-
author: {
|
|
2190
|
-
username: string | null;
|
|
2191
|
-
headline: string | null;
|
|
2192
|
-
profileUrl: string | null;
|
|
2193
|
-
profilePicture: string | null;
|
|
2194
|
-
firstName: string | null;
|
|
2195
|
-
lastName: string | null;
|
|
2196
|
-
} | null;
|
|
2197
2197
|
media: {
|
|
2198
2198
|
type: string | null;
|
|
2199
2199
|
url: string | null;
|
|
@@ -2221,20 +2221,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2221
2221
|
success: z.ZodBoolean;
|
|
2222
2222
|
error: z.ZodString;
|
|
2223
2223
|
}, "strip", z.ZodTypeAny, {
|
|
2224
|
-
error: string;
|
|
2225
|
-
success: boolean;
|
|
2226
2224
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2225
|
+
success: boolean;
|
|
2226
|
+
error: string;
|
|
2227
2227
|
posts: {
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
comments: number | null;
|
|
2236
|
-
reposts: number | null;
|
|
2237
|
-
totalReactions: number | null;
|
|
2228
|
+
author: {
|
|
2229
|
+
username: string | null;
|
|
2230
|
+
headline: string | null;
|
|
2231
|
+
profileUrl: string | null;
|
|
2232
|
+
profilePicture: string | null;
|
|
2233
|
+
firstName: string | null;
|
|
2234
|
+
lastName: string | null;
|
|
2238
2235
|
} | null;
|
|
2239
2236
|
url: string | null;
|
|
2240
2237
|
text: string | null;
|
|
@@ -2245,13 +2242,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2245
2242
|
pageCount: number | null;
|
|
2246
2243
|
} | null;
|
|
2247
2244
|
urn: string | null;
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2245
|
+
stats: {
|
|
2246
|
+
comments: number | null;
|
|
2247
|
+
like: number | null;
|
|
2248
|
+
support: number | null;
|
|
2249
|
+
love: number | null;
|
|
2250
|
+
insight: number | null;
|
|
2251
|
+
celebrate: number | null;
|
|
2252
|
+
funny: number | null;
|
|
2253
|
+
reposts: number | null;
|
|
2254
|
+
totalReactions: number | null;
|
|
2255
2255
|
} | null;
|
|
2256
2256
|
media: {
|
|
2257
2257
|
type: string | null;
|
|
@@ -2277,28 +2277,28 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2277
2277
|
fullUrn: string | null;
|
|
2278
2278
|
postType: string | null;
|
|
2279
2279
|
resharedPost: {
|
|
2280
|
+
author: {
|
|
2281
|
+
username: string | null;
|
|
2282
|
+
headline: string | null;
|
|
2283
|
+
profileUrl: string | null;
|
|
2284
|
+
profilePicture: string | null;
|
|
2285
|
+
firstName: string | null;
|
|
2286
|
+
lastName: string | null;
|
|
2287
|
+
} | null;
|
|
2288
|
+
url: string | null;
|
|
2289
|
+
text: string | null;
|
|
2290
|
+
urn: string | null;
|
|
2280
2291
|
stats: {
|
|
2292
|
+
comments: number | null;
|
|
2281
2293
|
like: number | null;
|
|
2282
2294
|
support: number | null;
|
|
2283
2295
|
love: number | null;
|
|
2284
2296
|
insight: number | null;
|
|
2285
2297
|
celebrate: number | null;
|
|
2286
2298
|
funny: number | null;
|
|
2287
|
-
comments: number | null;
|
|
2288
2299
|
reposts: number | null;
|
|
2289
2300
|
totalReactions: number | null;
|
|
2290
2301
|
} | null;
|
|
2291
|
-
url: string | null;
|
|
2292
|
-
text: string | null;
|
|
2293
|
-
urn: string | null;
|
|
2294
|
-
author: {
|
|
2295
|
-
username: string | null;
|
|
2296
|
-
headline: string | null;
|
|
2297
|
-
profileUrl: string | null;
|
|
2298
|
-
profilePicture: string | null;
|
|
2299
|
-
firstName: string | null;
|
|
2300
|
-
lastName: string | null;
|
|
2301
|
-
} | null;
|
|
2302
2302
|
media: {
|
|
2303
2303
|
type: string | null;
|
|
2304
2304
|
url: string | null;
|
|
@@ -2323,44 +2323,41 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2323
2323
|
jobs?: {
|
|
2324
2324
|
description: string | null;
|
|
2325
2325
|
title: string | null;
|
|
2326
|
-
url: string | null;
|
|
2327
2326
|
id: string | null;
|
|
2327
|
+
url: string | null;
|
|
2328
2328
|
location: string | null;
|
|
2329
2329
|
postedAt: string | null;
|
|
2330
2330
|
applyUrl: string | null;
|
|
2331
2331
|
salary: {
|
|
2332
|
-
from: number | null;
|
|
2333
2332
|
to: number | null;
|
|
2333
|
+
from: number | null;
|
|
2334
2334
|
currency: string | null;
|
|
2335
2335
|
period: string | null;
|
|
2336
2336
|
} | null;
|
|
2337
2337
|
seniorityLevel: string | null;
|
|
2338
2338
|
employmentType: string | null;
|
|
2339
|
-
skills: string[] | null;
|
|
2340
2339
|
company: {
|
|
2341
2340
|
name: string | null;
|
|
2342
2341
|
url: string | null;
|
|
2343
2342
|
logo: string | null;
|
|
2344
2343
|
} | null;
|
|
2344
|
+
skills: string[] | null;
|
|
2345
2345
|
}[] | undefined;
|
|
2346
2346
|
totalResults?: number | null | undefined;
|
|
2347
2347
|
paginationToken?: string | null | undefined;
|
|
2348
2348
|
hasNextPage?: boolean | null | undefined;
|
|
2349
2349
|
}, {
|
|
2350
|
-
error: string;
|
|
2351
|
-
success: boolean;
|
|
2352
2350
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2351
|
+
success: boolean;
|
|
2352
|
+
error: string;
|
|
2353
2353
|
posts: {
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
comments: number | null;
|
|
2362
|
-
reposts: number | null;
|
|
2363
|
-
totalReactions: number | null;
|
|
2354
|
+
author: {
|
|
2355
|
+
username: string | null;
|
|
2356
|
+
headline: string | null;
|
|
2357
|
+
profileUrl: string | null;
|
|
2358
|
+
profilePicture: string | null;
|
|
2359
|
+
firstName: string | null;
|
|
2360
|
+
lastName: string | null;
|
|
2364
2361
|
} | null;
|
|
2365
2362
|
url: string | null;
|
|
2366
2363
|
text: string | null;
|
|
@@ -2371,13 +2368,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2371
2368
|
pageCount: number | null;
|
|
2372
2369
|
} | null;
|
|
2373
2370
|
urn: string | null;
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2371
|
+
stats: {
|
|
2372
|
+
comments: number | null;
|
|
2373
|
+
like: number | null;
|
|
2374
|
+
support: number | null;
|
|
2375
|
+
love: number | null;
|
|
2376
|
+
insight: number | null;
|
|
2377
|
+
celebrate: number | null;
|
|
2378
|
+
funny: number | null;
|
|
2379
|
+
reposts: number | null;
|
|
2380
|
+
totalReactions: number | null;
|
|
2381
2381
|
} | null;
|
|
2382
2382
|
media: {
|
|
2383
2383
|
type: string | null;
|
|
@@ -2403,28 +2403,28 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2403
2403
|
fullUrn: string | null;
|
|
2404
2404
|
postType: string | null;
|
|
2405
2405
|
resharedPost: {
|
|
2406
|
+
author: {
|
|
2407
|
+
username: string | null;
|
|
2408
|
+
headline: string | null;
|
|
2409
|
+
profileUrl: string | null;
|
|
2410
|
+
profilePicture: string | null;
|
|
2411
|
+
firstName: string | null;
|
|
2412
|
+
lastName: string | null;
|
|
2413
|
+
} | null;
|
|
2414
|
+
url: string | null;
|
|
2415
|
+
text: string | null;
|
|
2416
|
+
urn: string | null;
|
|
2406
2417
|
stats: {
|
|
2418
|
+
comments: number | null;
|
|
2407
2419
|
like: number | null;
|
|
2408
2420
|
support: number | null;
|
|
2409
2421
|
love: number | null;
|
|
2410
2422
|
insight: number | null;
|
|
2411
2423
|
celebrate: number | null;
|
|
2412
2424
|
funny: number | null;
|
|
2413
|
-
comments: number | null;
|
|
2414
2425
|
reposts: number | null;
|
|
2415
2426
|
totalReactions: number | null;
|
|
2416
2427
|
} | null;
|
|
2417
|
-
url: string | null;
|
|
2418
|
-
text: string | null;
|
|
2419
|
-
urn: string | null;
|
|
2420
|
-
author: {
|
|
2421
|
-
username: string | null;
|
|
2422
|
-
headline: string | null;
|
|
2423
|
-
profileUrl: string | null;
|
|
2424
|
-
profilePicture: string | null;
|
|
2425
|
-
firstName: string | null;
|
|
2426
|
-
lastName: string | null;
|
|
2427
|
-
} | null;
|
|
2428
2428
|
media: {
|
|
2429
2429
|
type: string | null;
|
|
2430
2430
|
url: string | null;
|
|
@@ -2449,25 +2449,25 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2449
2449
|
jobs?: {
|
|
2450
2450
|
description: string | null;
|
|
2451
2451
|
title: string | null;
|
|
2452
|
-
url: string | null;
|
|
2453
2452
|
id: string | null;
|
|
2453
|
+
url: string | null;
|
|
2454
2454
|
location: string | null;
|
|
2455
2455
|
postedAt: string | null;
|
|
2456
2456
|
applyUrl: string | null;
|
|
2457
2457
|
salary: {
|
|
2458
|
-
from: number | null;
|
|
2459
2458
|
to: number | null;
|
|
2459
|
+
from: number | null;
|
|
2460
2460
|
currency: string | null;
|
|
2461
2461
|
period: string | null;
|
|
2462
2462
|
} | null;
|
|
2463
2463
|
seniorityLevel: string | null;
|
|
2464
2464
|
employmentType: string | null;
|
|
2465
|
-
skills: string[] | null;
|
|
2466
2465
|
company: {
|
|
2467
2466
|
name: string | null;
|
|
2468
2467
|
url: string | null;
|
|
2469
2468
|
logo: string | null;
|
|
2470
2469
|
} | null;
|
|
2470
|
+
skills: string[] | null;
|
|
2471
2471
|
}[] | undefined;
|
|
2472
2472
|
totalResults?: number | null | undefined;
|
|
2473
2473
|
paginationToken?: string | null | undefined;
|