@bubblelab/bubble-core 0.1.73 → 0.1.75
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 +109 -109
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +210 -210
- package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/airtable.js +3 -1
- package/dist/bubbles/service-bubble/airtable.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +134 -134
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +53 -53
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +90 -90
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +250 -250
- package/dist/bubbles/service-bubble/followupboss.d.ts +236 -236
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/github.d.ts +104 -104
- package/dist/bubbles/service-bubble/gmail.d.ts +176 -176
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +130 -130
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +512 -512
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +535 -535
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +29 -20
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +80 -80
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +71 -71
- package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +24 -24
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +302 -302
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +94 -94
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- 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 +14 -14
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +78 -78
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +76 -76
- package/dist/bubbles.json +3 -2
- package/package.json +2 -2
|
@@ -303,17 +303,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
303
303
|
thumbnail: string | null;
|
|
304
304
|
}>>;
|
|
305
305
|
}, "strip", z.ZodTypeAny, {
|
|
306
|
-
text: string | null;
|
|
307
306
|
url: string | null;
|
|
308
|
-
urn: string | null;
|
|
309
|
-
author: {
|
|
310
|
-
username: string | null;
|
|
311
|
-
headline: string | null;
|
|
312
|
-
profileUrl: string | null;
|
|
313
|
-
profilePicture: string | null;
|
|
314
|
-
firstName: string | null;
|
|
315
|
-
lastName: string | null;
|
|
316
|
-
} | null;
|
|
317
307
|
stats: {
|
|
318
308
|
like: number | null;
|
|
319
309
|
support: number | null;
|
|
@@ -325,6 +315,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
325
315
|
reposts: number | null;
|
|
326
316
|
totalReactions: number | null;
|
|
327
317
|
} | 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,17 +342,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
342
342
|
} | null;
|
|
343
343
|
postType: string | null;
|
|
344
344
|
}, {
|
|
345
|
-
text: string | null;
|
|
346
345
|
url: string | null;
|
|
347
|
-
urn: string | null;
|
|
348
|
-
author: {
|
|
349
|
-
username: string | null;
|
|
350
|
-
headline: string | null;
|
|
351
|
-
profileUrl: string | null;
|
|
352
|
-
profilePicture: string | null;
|
|
353
|
-
firstName: string | null;
|
|
354
|
-
lastName: string | null;
|
|
355
|
-
} | null;
|
|
356
346
|
stats: {
|
|
357
347
|
like: number | null;
|
|
358
348
|
support: number | null;
|
|
@@ -364,6 +354,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
364
354
|
reposts: number | null;
|
|
365
355
|
totalReactions: number | null;
|
|
366
356
|
} | 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,8 +382,19 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
382
382
|
postType: string | null;
|
|
383
383
|
}>>;
|
|
384
384
|
}, "strip", z.ZodTypeAny, {
|
|
385
|
-
text: string | null;
|
|
386
385
|
url: string | null;
|
|
386
|
+
stats: {
|
|
387
|
+
like: number | null;
|
|
388
|
+
support: number | null;
|
|
389
|
+
love: number | null;
|
|
390
|
+
insight: number | null;
|
|
391
|
+
celebrate: number | null;
|
|
392
|
+
funny: number | null;
|
|
393
|
+
comments: number | null;
|
|
394
|
+
reposts: number | null;
|
|
395
|
+
totalReactions: number | null;
|
|
396
|
+
} | null;
|
|
397
|
+
text: string | null;
|
|
387
398
|
document: {
|
|
388
399
|
title: string | null;
|
|
389
400
|
url: string | null;
|
|
@@ -399,17 +410,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
399
410
|
firstName: string | null;
|
|
400
411
|
lastName: string | null;
|
|
401
412
|
} | null;
|
|
402
|
-
stats: {
|
|
403
|
-
like: number | null;
|
|
404
|
-
support: number | null;
|
|
405
|
-
love: number | null;
|
|
406
|
-
insight: number | null;
|
|
407
|
-
celebrate: number | null;
|
|
408
|
-
funny: number | null;
|
|
409
|
-
comments: number | null;
|
|
410
|
-
reposts: number | null;
|
|
411
|
-
totalReactions: number | null;
|
|
412
|
-
} | null;
|
|
413
413
|
media: {
|
|
414
414
|
type: string | null;
|
|
415
415
|
url: string | null;
|
|
@@ -434,17 +434,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
434
434
|
fullUrn: string | null;
|
|
435
435
|
postType: string | null;
|
|
436
436
|
resharedPost: {
|
|
437
|
-
text: string | null;
|
|
438
437
|
url: string | null;
|
|
439
|
-
urn: string | null;
|
|
440
|
-
author: {
|
|
441
|
-
username: string | null;
|
|
442
|
-
headline: string | null;
|
|
443
|
-
profileUrl: string | null;
|
|
444
|
-
profilePicture: string | null;
|
|
445
|
-
firstName: string | null;
|
|
446
|
-
lastName: string | null;
|
|
447
|
-
} | null;
|
|
448
438
|
stats: {
|
|
449
439
|
like: number | null;
|
|
450
440
|
support: number | null;
|
|
@@ -456,6 +446,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
456
446
|
reposts: number | null;
|
|
457
447
|
totalReactions: number | null;
|
|
458
448
|
} | 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,8 +474,19 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
474
474
|
postType: string | null;
|
|
475
475
|
} | null;
|
|
476
476
|
}, {
|
|
477
|
-
text: string | null;
|
|
478
477
|
url: string | null;
|
|
478
|
+
stats: {
|
|
479
|
+
like: number | null;
|
|
480
|
+
support: number | null;
|
|
481
|
+
love: number | null;
|
|
482
|
+
insight: number | null;
|
|
483
|
+
celebrate: number | null;
|
|
484
|
+
funny: number | null;
|
|
485
|
+
comments: number | null;
|
|
486
|
+
reposts: number | null;
|
|
487
|
+
totalReactions: number | null;
|
|
488
|
+
} | null;
|
|
489
|
+
text: string | null;
|
|
479
490
|
document: {
|
|
480
491
|
title: string | null;
|
|
481
492
|
url: string | null;
|
|
@@ -491,17 +502,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
491
502
|
firstName: string | null;
|
|
492
503
|
lastName: string | null;
|
|
493
504
|
} | null;
|
|
494
|
-
stats: {
|
|
495
|
-
like: number | null;
|
|
496
|
-
support: number | null;
|
|
497
|
-
love: number | null;
|
|
498
|
-
insight: number | null;
|
|
499
|
-
celebrate: number | null;
|
|
500
|
-
funny: number | null;
|
|
501
|
-
comments: number | null;
|
|
502
|
-
reposts: number | null;
|
|
503
|
-
totalReactions: number | null;
|
|
504
|
-
} | null;
|
|
505
505
|
media: {
|
|
506
506
|
type: string | null;
|
|
507
507
|
url: string | null;
|
|
@@ -526,17 +526,7 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
526
526
|
fullUrn: string | null;
|
|
527
527
|
postType: string | null;
|
|
528
528
|
resharedPost: {
|
|
529
|
-
text: string | null;
|
|
530
529
|
url: string | null;
|
|
531
|
-
urn: string | null;
|
|
532
|
-
author: {
|
|
533
|
-
username: string | null;
|
|
534
|
-
headline: string | null;
|
|
535
|
-
profileUrl: string | null;
|
|
536
|
-
profilePicture: string | null;
|
|
537
|
-
firstName: string | null;
|
|
538
|
-
lastName: string | null;
|
|
539
|
-
} | null;
|
|
540
530
|
stats: {
|
|
541
531
|
like: number | null;
|
|
542
532
|
support: number | null;
|
|
@@ -548,6 +538,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
548
538
|
reposts: number | null;
|
|
549
539
|
totalReactions: number | null;
|
|
550
540
|
} | 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,14 +595,14 @@ 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
|
+
currency: string | null;
|
|
598
599
|
from: number | null;
|
|
599
600
|
to: number | null;
|
|
600
|
-
currency: string | null;
|
|
601
601
|
period: string | null;
|
|
602
602
|
}, {
|
|
603
|
+
currency: string | null;
|
|
603
604
|
from: number | null;
|
|
604
605
|
to: number | null;
|
|
605
|
-
currency: string | null;
|
|
606
606
|
period: string | null;
|
|
607
607
|
}>>;
|
|
608
608
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -615,9 +615,9 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
615
615
|
postedAt: string | null;
|
|
616
616
|
applyUrl: string | null;
|
|
617
617
|
salary: {
|
|
618
|
+
currency: string | null;
|
|
618
619
|
from: number | null;
|
|
619
620
|
to: number | null;
|
|
620
|
-
currency: string | null;
|
|
621
621
|
period: string | null;
|
|
622
622
|
} | null;
|
|
623
623
|
seniorityLevel: string | null;
|
|
@@ -637,9 +637,9 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
637
637
|
postedAt: string | null;
|
|
638
638
|
applyUrl: string | null;
|
|
639
639
|
salary: {
|
|
640
|
+
currency: string | null;
|
|
640
641
|
from: number | null;
|
|
641
642
|
to: number | null;
|
|
642
|
-
currency: string | null;
|
|
643
643
|
period: string | null;
|
|
644
644
|
} | null;
|
|
645
645
|
seniorityLevel: string | null;
|
|
@@ -722,14 +722,14 @@ 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
|
+
currency: string | null;
|
|
725
726
|
from: number | null;
|
|
726
727
|
to: number | null;
|
|
727
|
-
currency: string | null;
|
|
728
728
|
period: string | null;
|
|
729
729
|
}, {
|
|
730
|
+
currency: string | null;
|
|
730
731
|
from: number | null;
|
|
731
732
|
to: number | null;
|
|
732
|
-
currency: string | null;
|
|
733
733
|
period: string | null;
|
|
734
734
|
}>>;
|
|
735
735
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -742,9 +742,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
742
742
|
postedAt: string | null;
|
|
743
743
|
applyUrl: string | null;
|
|
744
744
|
salary: {
|
|
745
|
+
currency: string | null;
|
|
745
746
|
from: number | null;
|
|
746
747
|
to: number | null;
|
|
747
|
-
currency: string | null;
|
|
748
748
|
period: string | null;
|
|
749
749
|
} | null;
|
|
750
750
|
seniorityLevel: string | null;
|
|
@@ -764,9 +764,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
764
764
|
postedAt: string | null;
|
|
765
765
|
applyUrl: string | null;
|
|
766
766
|
salary: {
|
|
767
|
+
currency: string | null;
|
|
767
768
|
from: number | null;
|
|
768
769
|
to: number | null;
|
|
769
|
-
currency: string | null;
|
|
770
770
|
period: string | null;
|
|
771
771
|
} | null;
|
|
772
772
|
seniorityLevel: string | null;
|
|
@@ -1026,17 +1026,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1026
1026
|
thumbnail: string | null;
|
|
1027
1027
|
}>>;
|
|
1028
1028
|
}, "strip", z.ZodTypeAny, {
|
|
1029
|
-
text: string | null;
|
|
1030
1029
|
url: string | null;
|
|
1031
|
-
urn: string | null;
|
|
1032
|
-
author: {
|
|
1033
|
-
username: string | null;
|
|
1034
|
-
headline: string | null;
|
|
1035
|
-
profileUrl: string | null;
|
|
1036
|
-
profilePicture: string | null;
|
|
1037
|
-
firstName: string | null;
|
|
1038
|
-
lastName: string | null;
|
|
1039
|
-
} | null;
|
|
1040
1030
|
stats: {
|
|
1041
1031
|
like: number | null;
|
|
1042
1032
|
support: number | null;
|
|
@@ -1048,6 +1038,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1048
1038
|
reposts: number | null;
|
|
1049
1039
|
totalReactions: number | null;
|
|
1050
1040
|
} | 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,17 +1065,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1065
1065
|
} | null;
|
|
1066
1066
|
postType: string | null;
|
|
1067
1067
|
}, {
|
|
1068
|
-
text: string | null;
|
|
1069
1068
|
url: string | null;
|
|
1070
|
-
urn: string | null;
|
|
1071
|
-
author: {
|
|
1072
|
-
username: string | null;
|
|
1073
|
-
headline: string | null;
|
|
1074
|
-
profileUrl: string | null;
|
|
1075
|
-
profilePicture: string | null;
|
|
1076
|
-
firstName: string | null;
|
|
1077
|
-
lastName: string | null;
|
|
1078
|
-
} | null;
|
|
1079
1069
|
stats: {
|
|
1080
1070
|
like: number | null;
|
|
1081
1071
|
support: number | null;
|
|
@@ -1087,6 +1077,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1087
1077
|
reposts: number | null;
|
|
1088
1078
|
totalReactions: number | null;
|
|
1089
1079
|
} | 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,8 +1105,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1105
1105
|
postType: string | null;
|
|
1106
1106
|
}>>;
|
|
1107
1107
|
}, "strip", z.ZodTypeAny, {
|
|
1108
|
-
text: string | null;
|
|
1109
1108
|
url: string | null;
|
|
1109
|
+
stats: {
|
|
1110
|
+
like: number | null;
|
|
1111
|
+
support: number | null;
|
|
1112
|
+
love: number | null;
|
|
1113
|
+
insight: number | null;
|
|
1114
|
+
celebrate: number | null;
|
|
1115
|
+
funny: number | null;
|
|
1116
|
+
comments: number | null;
|
|
1117
|
+
reposts: number | null;
|
|
1118
|
+
totalReactions: number | null;
|
|
1119
|
+
} | null;
|
|
1120
|
+
text: string | null;
|
|
1110
1121
|
document: {
|
|
1111
1122
|
title: string | null;
|
|
1112
1123
|
url: string | null;
|
|
@@ -1122,17 +1133,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1122
1133
|
firstName: string | null;
|
|
1123
1134
|
lastName: string | null;
|
|
1124
1135
|
} | null;
|
|
1125
|
-
stats: {
|
|
1126
|
-
like: number | null;
|
|
1127
|
-
support: number | null;
|
|
1128
|
-
love: number | null;
|
|
1129
|
-
insight: number | null;
|
|
1130
|
-
celebrate: number | null;
|
|
1131
|
-
funny: number | null;
|
|
1132
|
-
comments: number | null;
|
|
1133
|
-
reposts: number | null;
|
|
1134
|
-
totalReactions: number | null;
|
|
1135
|
-
} | null;
|
|
1136
1136
|
media: {
|
|
1137
1137
|
type: string | null;
|
|
1138
1138
|
url: string | null;
|
|
@@ -1157,17 +1157,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1157
1157
|
fullUrn: string | null;
|
|
1158
1158
|
postType: string | null;
|
|
1159
1159
|
resharedPost: {
|
|
1160
|
-
text: string | null;
|
|
1161
1160
|
url: string | null;
|
|
1162
|
-
urn: string | null;
|
|
1163
|
-
author: {
|
|
1164
|
-
username: string | null;
|
|
1165
|
-
headline: string | null;
|
|
1166
|
-
profileUrl: string | null;
|
|
1167
|
-
profilePicture: string | null;
|
|
1168
|
-
firstName: string | null;
|
|
1169
|
-
lastName: string | null;
|
|
1170
|
-
} | null;
|
|
1171
1161
|
stats: {
|
|
1172
1162
|
like: number | null;
|
|
1173
1163
|
support: number | null;
|
|
@@ -1179,6 +1169,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1179
1169
|
reposts: number | null;
|
|
1180
1170
|
totalReactions: number | null;
|
|
1181
1171
|
} | 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,8 +1197,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1197
1197
|
postType: string | null;
|
|
1198
1198
|
} | null;
|
|
1199
1199
|
}, {
|
|
1200
|
-
text: string | null;
|
|
1201
1200
|
url: string | null;
|
|
1201
|
+
stats: {
|
|
1202
|
+
like: number | null;
|
|
1203
|
+
support: number | null;
|
|
1204
|
+
love: number | null;
|
|
1205
|
+
insight: number | null;
|
|
1206
|
+
celebrate: number | null;
|
|
1207
|
+
funny: number | null;
|
|
1208
|
+
comments: number | null;
|
|
1209
|
+
reposts: number | null;
|
|
1210
|
+
totalReactions: number | null;
|
|
1211
|
+
} | null;
|
|
1212
|
+
text: string | null;
|
|
1202
1213
|
document: {
|
|
1203
1214
|
title: string | null;
|
|
1204
1215
|
url: string | null;
|
|
@@ -1214,17 +1225,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1214
1225
|
firstName: string | null;
|
|
1215
1226
|
lastName: string | null;
|
|
1216
1227
|
} | null;
|
|
1217
|
-
stats: {
|
|
1218
|
-
like: number | null;
|
|
1219
|
-
support: number | null;
|
|
1220
|
-
love: number | null;
|
|
1221
|
-
insight: number | null;
|
|
1222
|
-
celebrate: number | null;
|
|
1223
|
-
funny: number | null;
|
|
1224
|
-
comments: number | null;
|
|
1225
|
-
reposts: number | null;
|
|
1226
|
-
totalReactions: number | null;
|
|
1227
|
-
} | null;
|
|
1228
1228
|
media: {
|
|
1229
1229
|
type: string | null;
|
|
1230
1230
|
url: string | null;
|
|
@@ -1249,17 +1249,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1249
1249
|
fullUrn: string | null;
|
|
1250
1250
|
postType: string | null;
|
|
1251
1251
|
resharedPost: {
|
|
1252
|
-
text: string | null;
|
|
1253
1252
|
url: string | null;
|
|
1254
|
-
urn: string | null;
|
|
1255
|
-
author: {
|
|
1256
|
-
username: string | null;
|
|
1257
|
-
headline: string | null;
|
|
1258
|
-
profileUrl: string | null;
|
|
1259
|
-
profilePicture: string | null;
|
|
1260
|
-
firstName: string | null;
|
|
1261
|
-
lastName: string | null;
|
|
1262
|
-
} | null;
|
|
1263
1253
|
stats: {
|
|
1264
1254
|
like: number | null;
|
|
1265
1255
|
support: number | null;
|
|
@@ -1271,6 +1261,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1271
1261
|
reposts: number | null;
|
|
1272
1262
|
totalReactions: number | null;
|
|
1273
1263
|
} | 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,12 +1298,23 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1298
1298
|
success: z.ZodBoolean;
|
|
1299
1299
|
error: z.ZodString;
|
|
1300
1300
|
}, "strip", z.ZodTypeAny, {
|
|
1301
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1301
1302
|
error: string;
|
|
1302
1303
|
success: boolean;
|
|
1303
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1304
1304
|
posts: {
|
|
1305
|
-
text: string | null;
|
|
1306
1305
|
url: string | null;
|
|
1306
|
+
stats: {
|
|
1307
|
+
like: number | null;
|
|
1308
|
+
support: number | null;
|
|
1309
|
+
love: number | null;
|
|
1310
|
+
insight: number | null;
|
|
1311
|
+
celebrate: number | null;
|
|
1312
|
+
funny: number | null;
|
|
1313
|
+
comments: number | null;
|
|
1314
|
+
reposts: number | null;
|
|
1315
|
+
totalReactions: number | null;
|
|
1316
|
+
} | null;
|
|
1317
|
+
text: string | null;
|
|
1307
1318
|
document: {
|
|
1308
1319
|
title: string | null;
|
|
1309
1320
|
url: string | null;
|
|
@@ -1319,17 +1330,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1319
1330
|
firstName: string | null;
|
|
1320
1331
|
lastName: string | null;
|
|
1321
1332
|
} | null;
|
|
1322
|
-
stats: {
|
|
1323
|
-
like: number | null;
|
|
1324
|
-
support: number | null;
|
|
1325
|
-
love: number | null;
|
|
1326
|
-
insight: number | null;
|
|
1327
|
-
celebrate: number | null;
|
|
1328
|
-
funny: number | null;
|
|
1329
|
-
comments: number | null;
|
|
1330
|
-
reposts: number | null;
|
|
1331
|
-
totalReactions: number | null;
|
|
1332
|
-
} | null;
|
|
1333
1333
|
media: {
|
|
1334
1334
|
type: string | null;
|
|
1335
1335
|
url: string | null;
|
|
@@ -1354,17 +1354,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1354
1354
|
fullUrn: string | null;
|
|
1355
1355
|
postType: string | null;
|
|
1356
1356
|
resharedPost: {
|
|
1357
|
-
text: string | null;
|
|
1358
1357
|
url: string | null;
|
|
1359
|
-
urn: string | null;
|
|
1360
|
-
author: {
|
|
1361
|
-
username: string | null;
|
|
1362
|
-
headline: string | null;
|
|
1363
|
-
profileUrl: string | null;
|
|
1364
|
-
profilePicture: string | null;
|
|
1365
|
-
firstName: string | null;
|
|
1366
|
-
lastName: string | null;
|
|
1367
|
-
} | null;
|
|
1368
1358
|
stats: {
|
|
1369
1359
|
like: number | null;
|
|
1370
1360
|
support: number | null;
|
|
@@ -1376,6 +1366,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1376
1366
|
reposts: number | null;
|
|
1377
1367
|
totalReactions: number | null;
|
|
1378
1368
|
} | 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;
|
|
@@ -1406,9 +1406,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1406
1406
|
postedAt: string | null;
|
|
1407
1407
|
applyUrl: string | null;
|
|
1408
1408
|
salary: {
|
|
1409
|
+
currency: string | null;
|
|
1409
1410
|
from: number | null;
|
|
1410
1411
|
to: number | null;
|
|
1411
|
-
currency: string | null;
|
|
1412
1412
|
period: string | null;
|
|
1413
1413
|
} | null;
|
|
1414
1414
|
seniorityLevel: string | null;
|
|
@@ -1424,12 +1424,23 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1424
1424
|
paginationToken?: string | null | undefined;
|
|
1425
1425
|
hasNextPage?: boolean | null | undefined;
|
|
1426
1426
|
}, {
|
|
1427
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1427
1428
|
error: string;
|
|
1428
1429
|
success: boolean;
|
|
1429
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1430
1430
|
posts: {
|
|
1431
|
-
text: string | null;
|
|
1432
1431
|
url: string | null;
|
|
1432
|
+
stats: {
|
|
1433
|
+
like: number | null;
|
|
1434
|
+
support: number | null;
|
|
1435
|
+
love: number | null;
|
|
1436
|
+
insight: number | null;
|
|
1437
|
+
celebrate: number | null;
|
|
1438
|
+
funny: number | null;
|
|
1439
|
+
comments: number | null;
|
|
1440
|
+
reposts: number | null;
|
|
1441
|
+
totalReactions: number | null;
|
|
1442
|
+
} | null;
|
|
1443
|
+
text: string | null;
|
|
1433
1444
|
document: {
|
|
1434
1445
|
title: string | null;
|
|
1435
1446
|
url: string | null;
|
|
@@ -1442,19 +1453,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1442
1453
|
headline: string | null;
|
|
1443
1454
|
profileUrl: string | null;
|
|
1444
1455
|
profilePicture: string | null;
|
|
1445
|
-
firstName: string | null;
|
|
1446
|
-
lastName: string | null;
|
|
1447
|
-
} | null;
|
|
1448
|
-
stats: {
|
|
1449
|
-
like: number | null;
|
|
1450
|
-
support: number | null;
|
|
1451
|
-
love: number | null;
|
|
1452
|
-
insight: number | null;
|
|
1453
|
-
celebrate: number | null;
|
|
1454
|
-
funny: number | null;
|
|
1455
|
-
comments: number | null;
|
|
1456
|
-
reposts: number | null;
|
|
1457
|
-
totalReactions: number | null;
|
|
1456
|
+
firstName: string | null;
|
|
1457
|
+
lastName: string | null;
|
|
1458
1458
|
} | null;
|
|
1459
1459
|
media: {
|
|
1460
1460
|
type: string | null;
|
|
@@ -1480,17 +1480,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1480
1480
|
fullUrn: string | null;
|
|
1481
1481
|
postType: string | null;
|
|
1482
1482
|
resharedPost: {
|
|
1483
|
-
text: string | null;
|
|
1484
1483
|
url: string | null;
|
|
1485
|
-
urn: string | null;
|
|
1486
|
-
author: {
|
|
1487
|
-
username: string | null;
|
|
1488
|
-
headline: string | null;
|
|
1489
|
-
profileUrl: string | null;
|
|
1490
|
-
profilePicture: string | null;
|
|
1491
|
-
firstName: string | null;
|
|
1492
|
-
lastName: string | null;
|
|
1493
|
-
} | null;
|
|
1494
1484
|
stats: {
|
|
1495
1485
|
like: number | null;
|
|
1496
1486
|
support: number | null;
|
|
@@ -1502,6 +1492,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1502
1492
|
reposts: number | null;
|
|
1503
1493
|
totalReactions: number | null;
|
|
1504
1494
|
} | 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;
|
|
@@ -1532,9 +1532,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1532
1532
|
postedAt: string | null;
|
|
1533
1533
|
applyUrl: string | null;
|
|
1534
1534
|
salary: {
|
|
1535
|
+
currency: string | null;
|
|
1535
1536
|
from: number | null;
|
|
1536
1537
|
to: number | null;
|
|
1537
|
-
currency: string | null;
|
|
1538
1538
|
period: string | null;
|
|
1539
1539
|
} | null;
|
|
1540
1540
|
seniorityLevel: string | null;
|
|
@@ -1645,14 +1645,14 @@ 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
|
+
currency: string | null;
|
|
1648
1649
|
from: number | null;
|
|
1649
1650
|
to: number | null;
|
|
1650
|
-
currency: string | null;
|
|
1651
1651
|
period: string | null;
|
|
1652
1652
|
}, {
|
|
1653
|
+
currency: string | null;
|
|
1653
1654
|
from: number | null;
|
|
1654
1655
|
to: number | null;
|
|
1655
|
-
currency: string | null;
|
|
1656
1656
|
period: string | null;
|
|
1657
1657
|
}>>;
|
|
1658
1658
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1665,9 +1665,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1665
1665
|
postedAt: string | null;
|
|
1666
1666
|
applyUrl: string | null;
|
|
1667
1667
|
salary: {
|
|
1668
|
+
currency: string | null;
|
|
1668
1669
|
from: number | null;
|
|
1669
1670
|
to: number | null;
|
|
1670
|
-
currency: string | null;
|
|
1671
1671
|
period: string | null;
|
|
1672
1672
|
} | null;
|
|
1673
1673
|
seniorityLevel: string | null;
|
|
@@ -1687,9 +1687,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1687
1687
|
postedAt: string | null;
|
|
1688
1688
|
applyUrl: string | null;
|
|
1689
1689
|
salary: {
|
|
1690
|
+
currency: string | null;
|
|
1690
1691
|
from: number | null;
|
|
1691
1692
|
to: number | null;
|
|
1692
|
-
currency: string | null;
|
|
1693
1693
|
period: string | null;
|
|
1694
1694
|
} | null;
|
|
1695
1695
|
seniorityLevel: string | null;
|
|
@@ -1949,17 +1949,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1949
1949
|
thumbnail: string | null;
|
|
1950
1950
|
}>>;
|
|
1951
1951
|
}, "strip", z.ZodTypeAny, {
|
|
1952
|
-
text: string | null;
|
|
1953
1952
|
url: string | null;
|
|
1954
|
-
urn: string | null;
|
|
1955
|
-
author: {
|
|
1956
|
-
username: string | null;
|
|
1957
|
-
headline: string | null;
|
|
1958
|
-
profileUrl: string | null;
|
|
1959
|
-
profilePicture: string | null;
|
|
1960
|
-
firstName: string | null;
|
|
1961
|
-
lastName: string | null;
|
|
1962
|
-
} | null;
|
|
1963
1953
|
stats: {
|
|
1964
1954
|
like: number | null;
|
|
1965
1955
|
support: number | null;
|
|
@@ -1971,6 +1961,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1971
1961
|
reposts: number | null;
|
|
1972
1962
|
totalReactions: number | null;
|
|
1973
1963
|
} | 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,17 +1988,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1988
1988
|
} | null;
|
|
1989
1989
|
postType: string | null;
|
|
1990
1990
|
}, {
|
|
1991
|
-
text: string | null;
|
|
1992
1991
|
url: string | null;
|
|
1993
|
-
urn: string | null;
|
|
1994
|
-
author: {
|
|
1995
|
-
username: string | null;
|
|
1996
|
-
headline: string | null;
|
|
1997
|
-
profileUrl: string | null;
|
|
1998
|
-
profilePicture: string | null;
|
|
1999
|
-
firstName: string | null;
|
|
2000
|
-
lastName: string | null;
|
|
2001
|
-
} | null;
|
|
2002
1992
|
stats: {
|
|
2003
1993
|
like: number | null;
|
|
2004
1994
|
support: number | null;
|
|
@@ -2010,6 +2000,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2010
2000
|
reposts: number | null;
|
|
2011
2001
|
totalReactions: number | null;
|
|
2012
2002
|
} | null;
|
|
2003
|
+
text: string | null;
|
|
2004
|
+
urn: string | null;
|
|
2005
|
+
author: {
|
|
2006
|
+
username: string | null;
|
|
2007
|
+
headline: string | null;
|
|
2008
|
+
profileUrl: string | null;
|
|
2009
|
+
profilePicture: string | null;
|
|
2010
|
+
firstName: string | null;
|
|
2011
|
+
lastName: string | null;
|
|
2012
|
+
} | null;
|
|
2013
2013
|
media: {
|
|
2014
2014
|
type: string | null;
|
|
2015
2015
|
url: string | null;
|
|
@@ -2028,8 +2028,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2028
2028
|
postType: string | null;
|
|
2029
2029
|
}>>;
|
|
2030
2030
|
}, "strip", z.ZodTypeAny, {
|
|
2031
|
-
text: string | null;
|
|
2032
2031
|
url: string | null;
|
|
2032
|
+
stats: {
|
|
2033
|
+
like: number | null;
|
|
2034
|
+
support: number | null;
|
|
2035
|
+
love: number | null;
|
|
2036
|
+
insight: number | null;
|
|
2037
|
+
celebrate: number | null;
|
|
2038
|
+
funny: number | null;
|
|
2039
|
+
comments: number | null;
|
|
2040
|
+
reposts: number | null;
|
|
2041
|
+
totalReactions: number | null;
|
|
2042
|
+
} | null;
|
|
2043
|
+
text: string | null;
|
|
2033
2044
|
document: {
|
|
2034
2045
|
title: string | null;
|
|
2035
2046
|
url: string | null;
|
|
@@ -2045,17 +2056,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2045
2056
|
firstName: string | null;
|
|
2046
2057
|
lastName: string | null;
|
|
2047
2058
|
} | null;
|
|
2048
|
-
stats: {
|
|
2049
|
-
like: number | null;
|
|
2050
|
-
support: number | null;
|
|
2051
|
-
love: number | null;
|
|
2052
|
-
insight: number | null;
|
|
2053
|
-
celebrate: number | null;
|
|
2054
|
-
funny: number | null;
|
|
2055
|
-
comments: number | null;
|
|
2056
|
-
reposts: number | null;
|
|
2057
|
-
totalReactions: number | null;
|
|
2058
|
-
} | null;
|
|
2059
2059
|
media: {
|
|
2060
2060
|
type: string | null;
|
|
2061
2061
|
url: string | null;
|
|
@@ -2080,17 +2080,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2080
2080
|
fullUrn: string | null;
|
|
2081
2081
|
postType: string | null;
|
|
2082
2082
|
resharedPost: {
|
|
2083
|
-
text: string | null;
|
|
2084
2083
|
url: string | null;
|
|
2085
|
-
urn: string | null;
|
|
2086
|
-
author: {
|
|
2087
|
-
username: string | null;
|
|
2088
|
-
headline: string | null;
|
|
2089
|
-
profileUrl: string | null;
|
|
2090
|
-
profilePicture: string | null;
|
|
2091
|
-
firstName: string | null;
|
|
2092
|
-
lastName: string | null;
|
|
2093
|
-
} | null;
|
|
2094
2084
|
stats: {
|
|
2095
2085
|
like: number | null;
|
|
2096
2086
|
support: number | null;
|
|
@@ -2102,6 +2092,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2102
2092
|
reposts: number | null;
|
|
2103
2093
|
totalReactions: number | null;
|
|
2104
2094
|
} | 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,8 +2120,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2120
2120
|
postType: string | null;
|
|
2121
2121
|
} | null;
|
|
2122
2122
|
}, {
|
|
2123
|
-
text: string | null;
|
|
2124
2123
|
url: string | null;
|
|
2124
|
+
stats: {
|
|
2125
|
+
like: number | null;
|
|
2126
|
+
support: number | null;
|
|
2127
|
+
love: number | null;
|
|
2128
|
+
insight: number | null;
|
|
2129
|
+
celebrate: number | null;
|
|
2130
|
+
funny: number | null;
|
|
2131
|
+
comments: number | null;
|
|
2132
|
+
reposts: number | null;
|
|
2133
|
+
totalReactions: number | null;
|
|
2134
|
+
} | null;
|
|
2135
|
+
text: string | null;
|
|
2125
2136
|
document: {
|
|
2126
2137
|
title: string | null;
|
|
2127
2138
|
url: string | null;
|
|
@@ -2137,17 +2148,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2137
2148
|
firstName: string | null;
|
|
2138
2149
|
lastName: string | null;
|
|
2139
2150
|
} | null;
|
|
2140
|
-
stats: {
|
|
2141
|
-
like: number | null;
|
|
2142
|
-
support: number | null;
|
|
2143
|
-
love: number | null;
|
|
2144
|
-
insight: number | null;
|
|
2145
|
-
celebrate: number | null;
|
|
2146
|
-
funny: number | null;
|
|
2147
|
-
comments: number | null;
|
|
2148
|
-
reposts: number | null;
|
|
2149
|
-
totalReactions: number | null;
|
|
2150
|
-
} | null;
|
|
2151
2151
|
media: {
|
|
2152
2152
|
type: string | null;
|
|
2153
2153
|
url: string | null;
|
|
@@ -2172,17 +2172,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2172
2172
|
fullUrn: string | null;
|
|
2173
2173
|
postType: string | null;
|
|
2174
2174
|
resharedPost: {
|
|
2175
|
-
text: string | null;
|
|
2176
2175
|
url: string | null;
|
|
2177
|
-
urn: string | null;
|
|
2178
|
-
author: {
|
|
2179
|
-
username: string | null;
|
|
2180
|
-
headline: string | null;
|
|
2181
|
-
profileUrl: string | null;
|
|
2182
|
-
profilePicture: string | null;
|
|
2183
|
-
firstName: string | null;
|
|
2184
|
-
lastName: string | null;
|
|
2185
|
-
} | null;
|
|
2186
2176
|
stats: {
|
|
2187
2177
|
like: number | null;
|
|
2188
2178
|
support: number | null;
|
|
@@ -2194,6 +2184,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2194
2184
|
reposts: number | null;
|
|
2195
2185
|
totalReactions: number | null;
|
|
2196
2186
|
} | 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,12 +2221,23 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2221
2221
|
success: z.ZodBoolean;
|
|
2222
2222
|
error: z.ZodString;
|
|
2223
2223
|
}, "strip", z.ZodTypeAny, {
|
|
2224
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2224
2225
|
error: string;
|
|
2225
2226
|
success: boolean;
|
|
2226
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2227
2227
|
posts: {
|
|
2228
|
-
text: string | null;
|
|
2229
2228
|
url: string | null;
|
|
2229
|
+
stats: {
|
|
2230
|
+
like: number | null;
|
|
2231
|
+
support: number | null;
|
|
2232
|
+
love: number | null;
|
|
2233
|
+
insight: number | null;
|
|
2234
|
+
celebrate: number | null;
|
|
2235
|
+
funny: number | null;
|
|
2236
|
+
comments: number | null;
|
|
2237
|
+
reposts: number | null;
|
|
2238
|
+
totalReactions: number | null;
|
|
2239
|
+
} | null;
|
|
2240
|
+
text: string | null;
|
|
2230
2241
|
document: {
|
|
2231
2242
|
title: string | null;
|
|
2232
2243
|
url: string | null;
|
|
@@ -2242,17 +2253,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2242
2253
|
firstName: string | null;
|
|
2243
2254
|
lastName: string | null;
|
|
2244
2255
|
} | null;
|
|
2245
|
-
stats: {
|
|
2246
|
-
like: number | null;
|
|
2247
|
-
support: number | null;
|
|
2248
|
-
love: number | null;
|
|
2249
|
-
insight: number | null;
|
|
2250
|
-
celebrate: number | null;
|
|
2251
|
-
funny: number | null;
|
|
2252
|
-
comments: number | null;
|
|
2253
|
-
reposts: number | null;
|
|
2254
|
-
totalReactions: number | null;
|
|
2255
|
-
} | null;
|
|
2256
2256
|
media: {
|
|
2257
2257
|
type: string | null;
|
|
2258
2258
|
url: string | null;
|
|
@@ -2277,17 +2277,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2277
2277
|
fullUrn: string | null;
|
|
2278
2278
|
postType: string | null;
|
|
2279
2279
|
resharedPost: {
|
|
2280
|
-
text: string | null;
|
|
2281
2280
|
url: string | null;
|
|
2282
|
-
urn: string | null;
|
|
2283
|
-
author: {
|
|
2284
|
-
username: string | null;
|
|
2285
|
-
headline: string | null;
|
|
2286
|
-
profileUrl: string | null;
|
|
2287
|
-
profilePicture: string | null;
|
|
2288
|
-
firstName: string | null;
|
|
2289
|
-
lastName: string | null;
|
|
2290
|
-
} | null;
|
|
2291
2281
|
stats: {
|
|
2292
2282
|
like: number | null;
|
|
2293
2283
|
support: number | null;
|
|
@@ -2299,6 +2289,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2299
2289
|
reposts: number | null;
|
|
2300
2290
|
totalReactions: number | null;
|
|
2301
2291
|
} | 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;
|
|
@@ -2329,9 +2329,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2329
2329
|
postedAt: string | null;
|
|
2330
2330
|
applyUrl: string | null;
|
|
2331
2331
|
salary: {
|
|
2332
|
+
currency: string | null;
|
|
2332
2333
|
from: number | null;
|
|
2333
2334
|
to: number | null;
|
|
2334
|
-
currency: string | null;
|
|
2335
2335
|
period: string | null;
|
|
2336
2336
|
} | null;
|
|
2337
2337
|
seniorityLevel: string | null;
|
|
@@ -2347,12 +2347,23 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2347
2347
|
paginationToken?: string | null | undefined;
|
|
2348
2348
|
hasNextPage?: boolean | null | undefined;
|
|
2349
2349
|
}, {
|
|
2350
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2350
2351
|
error: string;
|
|
2351
2352
|
success: boolean;
|
|
2352
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2353
2353
|
posts: {
|
|
2354
|
-
text: string | null;
|
|
2355
2354
|
url: string | null;
|
|
2355
|
+
stats: {
|
|
2356
|
+
like: number | null;
|
|
2357
|
+
support: number | null;
|
|
2358
|
+
love: number | null;
|
|
2359
|
+
insight: number | null;
|
|
2360
|
+
celebrate: number | null;
|
|
2361
|
+
funny: number | null;
|
|
2362
|
+
comments: number | null;
|
|
2363
|
+
reposts: number | null;
|
|
2364
|
+
totalReactions: number | null;
|
|
2365
|
+
} | null;
|
|
2366
|
+
text: string | null;
|
|
2356
2367
|
document: {
|
|
2357
2368
|
title: string | null;
|
|
2358
2369
|
url: string | null;
|
|
@@ -2368,17 +2379,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2368
2379
|
firstName: string | null;
|
|
2369
2380
|
lastName: string | null;
|
|
2370
2381
|
} | null;
|
|
2371
|
-
stats: {
|
|
2372
|
-
like: number | null;
|
|
2373
|
-
support: number | null;
|
|
2374
|
-
love: number | null;
|
|
2375
|
-
insight: number | null;
|
|
2376
|
-
celebrate: number | null;
|
|
2377
|
-
funny: number | null;
|
|
2378
|
-
comments: number | null;
|
|
2379
|
-
reposts: number | null;
|
|
2380
|
-
totalReactions: number | null;
|
|
2381
|
-
} | null;
|
|
2382
2382
|
media: {
|
|
2383
2383
|
type: string | null;
|
|
2384
2384
|
url: string | null;
|
|
@@ -2403,17 +2403,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2403
2403
|
fullUrn: string | null;
|
|
2404
2404
|
postType: string | null;
|
|
2405
2405
|
resharedPost: {
|
|
2406
|
-
text: string | null;
|
|
2407
2406
|
url: string | null;
|
|
2408
|
-
urn: string | null;
|
|
2409
|
-
author: {
|
|
2410
|
-
username: string | null;
|
|
2411
|
-
headline: string | null;
|
|
2412
|
-
profileUrl: string | null;
|
|
2413
|
-
profilePicture: string | null;
|
|
2414
|
-
firstName: string | null;
|
|
2415
|
-
lastName: string | null;
|
|
2416
|
-
} | null;
|
|
2417
2407
|
stats: {
|
|
2418
2408
|
like: number | null;
|
|
2419
2409
|
support: number | null;
|
|
@@ -2425,6 +2415,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2425
2415
|
reposts: number | null;
|
|
2426
2416
|
totalReactions: number | null;
|
|
2427
2417
|
} | 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;
|
|
@@ -2455,9 +2455,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2455
2455
|
postedAt: string | null;
|
|
2456
2456
|
applyUrl: string | null;
|
|
2457
2457
|
salary: {
|
|
2458
|
+
currency: string | null;
|
|
2458
2459
|
from: number | null;
|
|
2459
2460
|
to: number | null;
|
|
2460
|
-
currency: string | null;
|
|
2461
2461
|
period: string | null;
|
|
2462
2462
|
} | null;
|
|
2463
2463
|
seniorityLevel: string | null;
|