@bubblelab/bubble-core 0.1.34 → 0.1.35
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 +85 -85
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +36 -36
- package/dist/bubbles/service-bubble/airtable.d.ts +196 -196
- package/dist/bubbles/service-bubble/apify/apify.d.ts +30 -30
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +51 -51
- 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 +282 -282
- package/dist/bubbles/service-bubble/github.d.ts +174 -174
- package/dist/bubbles/service-bubble/gmail.d.ts +613 -613
- package/dist/bubbles/service-bubble/google-calendar.d.ts +148 -148
- package/dist/bubbles/service-bubble/google-drive.d.ts +94 -94
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +62 -62
- 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 +2124 -5778
- package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.js +7 -32
- package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +3139 -8008
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.js +2 -14
- package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.d.ts +216 -216
- package/dist/bubbles/service-bubble/postgresql.d.ts +18 -18
- package/dist/bubbles/service-bubble/resend.d.ts +18 -18
- package/dist/bubbles/service-bubble/slack/slack.d.ts +376 -376
- package/dist/bubbles/service-bubble/storage.d.ts +42 -42
- 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 +427 -427
- 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 +6 -6
- 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 +164 -164
- 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 +28 -28
- 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 +58 -58
- 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 +49 -47
- 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;
|
|
39
38
|
like: number | null;
|
|
40
39
|
support: number | null;
|
|
41
40
|
love: number | null;
|
|
42
41
|
insight: number | null;
|
|
43
42
|
celebrate: number | null;
|
|
44
43
|
funny: number | null;
|
|
44
|
+
comments: number | null;
|
|
45
45
|
reposts: number | null;
|
|
46
46
|
totalReactions: number | null;
|
|
47
47
|
}, {
|
|
48
|
-
comments: number | null;
|
|
49
48
|
like: number | null;
|
|
50
49
|
support: number | null;
|
|
51
50
|
love: number | null;
|
|
52
51
|
insight: number | null;
|
|
53
52
|
celebrate: number | null;
|
|
54
53
|
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;
|
|
111
110
|
like: number | null;
|
|
112
111
|
support: number | null;
|
|
113
112
|
love: number | null;
|
|
114
113
|
insight: number | null;
|
|
115
114
|
celebrate: number | null;
|
|
116
115
|
funny: number | null;
|
|
116
|
+
comments: number | null;
|
|
117
117
|
reposts: number | null;
|
|
118
118
|
totalReactions: number | null;
|
|
119
119
|
}, {
|
|
120
|
-
comments: number | null;
|
|
121
120
|
like: number | null;
|
|
122
121
|
support: number | null;
|
|
123
122
|
love: number | null;
|
|
124
123
|
insight: number | null;
|
|
125
124
|
celebrate: number | null;
|
|
126
125
|
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;
|
|
250
249
|
like: number | null;
|
|
251
250
|
support: number | null;
|
|
252
251
|
love: number | null;
|
|
253
252
|
insight: number | null;
|
|
254
253
|
celebrate: number | null;
|
|
255
254
|
funny: number | null;
|
|
255
|
+
comments: number | null;
|
|
256
256
|
reposts: number | null;
|
|
257
257
|
totalReactions: number | null;
|
|
258
258
|
}, {
|
|
259
|
-
comments: number | null;
|
|
260
259
|
like: number | null;
|
|
261
260
|
support: number | null;
|
|
262
261
|
love: number | null;
|
|
263
262
|
insight: number | null;
|
|
264
263
|
celebrate: number | null;
|
|
265
264
|
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
|
-
url: string | null;
|
|
307
|
-
author: {
|
|
308
|
-
username: string | null;
|
|
309
|
-
headline: string | null;
|
|
310
|
-
profileUrl: string | null;
|
|
311
|
-
profilePicture: string | null;
|
|
312
|
-
firstName: string | null;
|
|
313
|
-
lastName: string | null;
|
|
314
|
-
} | null;
|
|
315
|
-
text: string | null;
|
|
316
|
-
urn: string | null;
|
|
317
306
|
stats: {
|
|
318
|
-
comments: number | null;
|
|
319
307
|
like: number | null;
|
|
320
308
|
support: number | null;
|
|
321
309
|
love: number | null;
|
|
322
310
|
insight: number | null;
|
|
323
311
|
celebrate: number | null;
|
|
324
312
|
funny: number | null;
|
|
313
|
+
comments: number | null;
|
|
325
314
|
reposts: number | null;
|
|
326
315
|
totalReactions: number | null;
|
|
327
316
|
} | 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
|
-
url: string | null;
|
|
346
|
-
author: {
|
|
347
|
-
username: string | null;
|
|
348
|
-
headline: string | null;
|
|
349
|
-
profileUrl: string | null;
|
|
350
|
-
profilePicture: string | null;
|
|
351
|
-
firstName: string | null;
|
|
352
|
-
lastName: string | null;
|
|
353
|
-
} | null;
|
|
354
|
-
text: string | null;
|
|
355
|
-
urn: string | null;
|
|
356
345
|
stats: {
|
|
357
|
-
comments: number | null;
|
|
358
346
|
like: number | null;
|
|
359
347
|
support: number | null;
|
|
360
348
|
love: number | null;
|
|
361
349
|
insight: number | null;
|
|
362
350
|
celebrate: number | null;
|
|
363
351
|
funny: number | null;
|
|
352
|
+
comments: number | null;
|
|
364
353
|
reposts: number | null;
|
|
365
354
|
totalReactions: number | null;
|
|
366
355
|
} | 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,34 +382,34 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
382
382
|
postType: string | null;
|
|
383
383
|
}>>;
|
|
384
384
|
}, "strip", z.ZodTypeAny, {
|
|
385
|
-
url: string | null;
|
|
386
|
-
author: {
|
|
387
|
-
username: string | null;
|
|
388
|
-
headline: string | null;
|
|
389
|
-
profileUrl: string | null;
|
|
390
|
-
profilePicture: string | null;
|
|
391
|
-
firstName: string | null;
|
|
392
|
-
lastName: string | null;
|
|
393
|
-
} | null;
|
|
394
|
-
text: string | null;
|
|
395
|
-
document: {
|
|
396
|
-
title: string | null;
|
|
397
|
-
url: string | null;
|
|
398
|
-
thumbnail: string | null;
|
|
399
|
-
pageCount: number | null;
|
|
400
|
-
} | null;
|
|
401
|
-
urn: string | null;
|
|
402
385
|
stats: {
|
|
403
|
-
comments: number | null;
|
|
404
386
|
like: number | null;
|
|
405
387
|
support: number | null;
|
|
406
388
|
love: number | null;
|
|
407
389
|
insight: number | null;
|
|
408
390
|
celebrate: number | null;
|
|
409
391
|
funny: number | null;
|
|
392
|
+
comments: number | null;
|
|
410
393
|
reposts: number | null;
|
|
411
394
|
totalReactions: number | null;
|
|
412
395
|
} | null;
|
|
396
|
+
url: string | null;
|
|
397
|
+
text: string | null;
|
|
398
|
+
document: {
|
|
399
|
+
title: string | null;
|
|
400
|
+
url: string | null;
|
|
401
|
+
thumbnail: string | null;
|
|
402
|
+
pageCount: number | null;
|
|
403
|
+
} | null;
|
|
404
|
+
urn: string | null;
|
|
405
|
+
author: {
|
|
406
|
+
username: string | null;
|
|
407
|
+
headline: string | null;
|
|
408
|
+
profileUrl: string | null;
|
|
409
|
+
profilePicture: string | null;
|
|
410
|
+
firstName: string | null;
|
|
411
|
+
lastName: string | null;
|
|
412
|
+
} | null;
|
|
413
413
|
media: {
|
|
414
414
|
type: string | null;
|
|
415
415
|
url: 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
|
-
url: string | null;
|
|
438
|
-
author: {
|
|
439
|
-
username: string | null;
|
|
440
|
-
headline: string | null;
|
|
441
|
-
profileUrl: string | null;
|
|
442
|
-
profilePicture: string | null;
|
|
443
|
-
firstName: string | null;
|
|
444
|
-
lastName: string | null;
|
|
445
|
-
} | null;
|
|
446
|
-
text: string | null;
|
|
447
|
-
urn: string | null;
|
|
448
437
|
stats: {
|
|
449
|
-
comments: number | null;
|
|
450
438
|
like: number | null;
|
|
451
439
|
support: number | null;
|
|
452
440
|
love: number | null;
|
|
453
441
|
insight: number | null;
|
|
454
442
|
celebrate: number | null;
|
|
455
443
|
funny: number | null;
|
|
444
|
+
comments: number | null;
|
|
456
445
|
reposts: number | null;
|
|
457
446
|
totalReactions: number | null;
|
|
458
447
|
} | 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,34 +474,34 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
474
474
|
postType: string | null;
|
|
475
475
|
} | null;
|
|
476
476
|
}, {
|
|
477
|
-
url: string | null;
|
|
478
|
-
author: {
|
|
479
|
-
username: string | null;
|
|
480
|
-
headline: string | null;
|
|
481
|
-
profileUrl: string | null;
|
|
482
|
-
profilePicture: string | null;
|
|
483
|
-
firstName: string | null;
|
|
484
|
-
lastName: string | null;
|
|
485
|
-
} | null;
|
|
486
|
-
text: string | null;
|
|
487
|
-
document: {
|
|
488
|
-
title: string | null;
|
|
489
|
-
url: string | null;
|
|
490
|
-
thumbnail: string | null;
|
|
491
|
-
pageCount: number | null;
|
|
492
|
-
} | null;
|
|
493
|
-
urn: string | null;
|
|
494
477
|
stats: {
|
|
495
|
-
comments: number | null;
|
|
496
478
|
like: number | null;
|
|
497
479
|
support: number | null;
|
|
498
480
|
love: number | null;
|
|
499
481
|
insight: number | null;
|
|
500
482
|
celebrate: number | null;
|
|
501
483
|
funny: number | null;
|
|
484
|
+
comments: number | null;
|
|
502
485
|
reposts: number | null;
|
|
503
486
|
totalReactions: number | null;
|
|
504
487
|
} | null;
|
|
488
|
+
url: string | null;
|
|
489
|
+
text: string | null;
|
|
490
|
+
document: {
|
|
491
|
+
title: string | null;
|
|
492
|
+
url: string | null;
|
|
493
|
+
thumbnail: string | null;
|
|
494
|
+
pageCount: number | null;
|
|
495
|
+
} | null;
|
|
496
|
+
urn: string | null;
|
|
497
|
+
author: {
|
|
498
|
+
username: string | null;
|
|
499
|
+
headline: string | null;
|
|
500
|
+
profileUrl: string | null;
|
|
501
|
+
profilePicture: string | null;
|
|
502
|
+
firstName: string | null;
|
|
503
|
+
lastName: string | null;
|
|
504
|
+
} | null;
|
|
505
505
|
media: {
|
|
506
506
|
type: string | null;
|
|
507
507
|
url: 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
|
-
url: string | null;
|
|
530
|
-
author: {
|
|
531
|
-
username: string | null;
|
|
532
|
-
headline: string | null;
|
|
533
|
-
profileUrl: string | null;
|
|
534
|
-
profilePicture: string | null;
|
|
535
|
-
firstName: string | null;
|
|
536
|
-
lastName: string | null;
|
|
537
|
-
} | null;
|
|
538
|
-
text: string | null;
|
|
539
|
-
urn: string | null;
|
|
540
529
|
stats: {
|
|
541
|
-
comments: number | null;
|
|
542
530
|
like: number | null;
|
|
543
531
|
support: number | null;
|
|
544
532
|
love: number | null;
|
|
545
533
|
insight: number | null;
|
|
546
534
|
celebrate: number | null;
|
|
547
535
|
funny: number | null;
|
|
536
|
+
comments: number | null;
|
|
548
537
|
reposts: number | null;
|
|
549
538
|
totalReactions: number | null;
|
|
550
539
|
} | 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
|
-
to: number | null;
|
|
599
598
|
from: number | null;
|
|
599
|
+
to: number | null;
|
|
600
600
|
currency: string | null;
|
|
601
601
|
period: string | null;
|
|
602
602
|
}, {
|
|
603
|
-
to: number | null;
|
|
604
603
|
from: number | null;
|
|
604
|
+
to: number | null;
|
|
605
605
|
currency: string | null;
|
|
606
606
|
period: string | null;
|
|
607
607
|
}>>;
|
|
@@ -615,19 +615,19 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
615
615
|
postedAt: string | null;
|
|
616
616
|
applyUrl: string | null;
|
|
617
617
|
salary: {
|
|
618
|
-
to: number | null;
|
|
619
618
|
from: number | null;
|
|
619
|
+
to: 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;
|
|
625
626
|
company: {
|
|
626
627
|
name: string | null;
|
|
627
628
|
url: string | null;
|
|
628
629
|
logo: string | null;
|
|
629
630
|
} | null;
|
|
630
|
-
skills: string[] | null;
|
|
631
631
|
}, {
|
|
632
632
|
description: string | null;
|
|
633
633
|
title: string | null;
|
|
@@ -637,19 +637,19 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
637
637
|
postedAt: string | null;
|
|
638
638
|
applyUrl: string | null;
|
|
639
639
|
salary: {
|
|
640
|
-
to: number | null;
|
|
641
640
|
from: number | null;
|
|
641
|
+
to: 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;
|
|
647
648
|
company: {
|
|
648
649
|
name: string | null;
|
|
649
650
|
url: string | null;
|
|
650
651
|
logo: string | null;
|
|
651
652
|
} | 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;
|
|
670
669
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
671
670
|
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;
|
|
683
682
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
684
683
|
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
|
-
to: number | null;
|
|
726
725
|
from: number | null;
|
|
726
|
+
to: number | null;
|
|
727
727
|
currency: string | null;
|
|
728
728
|
period: string | null;
|
|
729
729
|
}, {
|
|
730
|
-
to: number | null;
|
|
731
730
|
from: number | null;
|
|
731
|
+
to: number | null;
|
|
732
732
|
currency: string | null;
|
|
733
733
|
period: string | null;
|
|
734
734
|
}>>;
|
|
@@ -742,19 +742,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
742
742
|
postedAt: string | null;
|
|
743
743
|
applyUrl: string | null;
|
|
744
744
|
salary: {
|
|
745
|
-
to: number | null;
|
|
746
745
|
from: number | null;
|
|
746
|
+
to: 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;
|
|
752
753
|
company: {
|
|
753
754
|
name: string | null;
|
|
754
755
|
url: string | null;
|
|
755
756
|
logo: string | null;
|
|
756
757
|
} | null;
|
|
757
|
-
skills: string[] | null;
|
|
758
758
|
}, {
|
|
759
759
|
description: string | null;
|
|
760
760
|
title: string | null;
|
|
@@ -764,19 +764,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
764
764
|
postedAt: string | null;
|
|
765
765
|
applyUrl: string | null;
|
|
766
766
|
salary: {
|
|
767
|
-
to: number | null;
|
|
768
767
|
from: number | null;
|
|
768
|
+
to: 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;
|
|
774
775
|
company: {
|
|
775
776
|
name: string | null;
|
|
776
777
|
url: string | null;
|
|
777
778
|
logo: string | null;
|
|
778
779
|
} | 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;
|
|
834
833
|
like: number | null;
|
|
835
834
|
support: number | null;
|
|
836
835
|
love: number | null;
|
|
837
836
|
insight: number | null;
|
|
838
837
|
celebrate: number | null;
|
|
839
838
|
funny: number | null;
|
|
839
|
+
comments: number | null;
|
|
840
840
|
reposts: number | null;
|
|
841
841
|
totalReactions: number | null;
|
|
842
842
|
}, {
|
|
843
|
-
comments: number | null;
|
|
844
843
|
like: number | null;
|
|
845
844
|
support: number | null;
|
|
846
845
|
love: number | null;
|
|
847
846
|
insight: number | null;
|
|
848
847
|
celebrate: number | null;
|
|
849
848
|
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;
|
|
973
972
|
like: number | null;
|
|
974
973
|
support: number | null;
|
|
975
974
|
love: number | null;
|
|
976
975
|
insight: number | null;
|
|
977
976
|
celebrate: number | null;
|
|
978
977
|
funny: number | null;
|
|
978
|
+
comments: number | null;
|
|
979
979
|
reposts: number | null;
|
|
980
980
|
totalReactions: number | null;
|
|
981
981
|
}, {
|
|
982
|
-
comments: number | null;
|
|
983
982
|
like: number | null;
|
|
984
983
|
support: number | null;
|
|
985
984
|
love: number | null;
|
|
986
985
|
insight: number | null;
|
|
987
986
|
celebrate: number | null;
|
|
988
987
|
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
|
-
url: string | null;
|
|
1030
|
-
author: {
|
|
1031
|
-
username: string | null;
|
|
1032
|
-
headline: string | null;
|
|
1033
|
-
profileUrl: string | null;
|
|
1034
|
-
profilePicture: string | null;
|
|
1035
|
-
firstName: string | null;
|
|
1036
|
-
lastName: string | null;
|
|
1037
|
-
} | null;
|
|
1038
|
-
text: string | null;
|
|
1039
|
-
urn: string | null;
|
|
1040
1029
|
stats: {
|
|
1041
|
-
comments: number | null;
|
|
1042
1030
|
like: number | null;
|
|
1043
1031
|
support: number | null;
|
|
1044
1032
|
love: number | null;
|
|
1045
1033
|
insight: number | null;
|
|
1046
1034
|
celebrate: number | null;
|
|
1047
1035
|
funny: number | null;
|
|
1036
|
+
comments: number | null;
|
|
1048
1037
|
reposts: number | null;
|
|
1049
1038
|
totalReactions: number | null;
|
|
1050
1039
|
} | 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,31 +1065,31 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1065
1065
|
} | null;
|
|
1066
1066
|
postType: string | null;
|
|
1067
1067
|
}, {
|
|
1068
|
-
url: string | null;
|
|
1069
|
-
author: {
|
|
1070
|
-
username: string | null;
|
|
1071
|
-
headline: string | null;
|
|
1072
|
-
profileUrl: string | null;
|
|
1073
|
-
profilePicture: string | null;
|
|
1074
|
-
firstName: string | null;
|
|
1075
|
-
lastName: string | null;
|
|
1076
|
-
} | null;
|
|
1077
|
-
text: string | null;
|
|
1078
|
-
urn: string | null;
|
|
1079
1068
|
stats: {
|
|
1080
|
-
comments: number | null;
|
|
1081
1069
|
like: number | null;
|
|
1082
1070
|
support: number | null;
|
|
1083
1071
|
love: number | null;
|
|
1084
1072
|
insight: number | null;
|
|
1085
1073
|
celebrate: number | null;
|
|
1086
1074
|
funny: number | null;
|
|
1075
|
+
comments: number | null;
|
|
1087
1076
|
reposts: number | null;
|
|
1088
1077
|
totalReactions: number | null;
|
|
1089
1078
|
} | null;
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
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
|
+
media: {
|
|
1091
|
+
type: string | null;
|
|
1092
|
+
url: string | null;
|
|
1093
1093
|
images: {
|
|
1094
1094
|
url: string | null;
|
|
1095
1095
|
width: number | null;
|
|
@@ -1105,34 +1105,34 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1105
1105
|
postType: string | null;
|
|
1106
1106
|
}>>;
|
|
1107
1107
|
}, "strip", z.ZodTypeAny, {
|
|
1108
|
-
url: string | null;
|
|
1109
|
-
author: {
|
|
1110
|
-
username: string | null;
|
|
1111
|
-
headline: string | null;
|
|
1112
|
-
profileUrl: string | null;
|
|
1113
|
-
profilePicture: string | null;
|
|
1114
|
-
firstName: string | null;
|
|
1115
|
-
lastName: string | null;
|
|
1116
|
-
} | null;
|
|
1117
|
-
text: string | null;
|
|
1118
|
-
document: {
|
|
1119
|
-
title: string | null;
|
|
1120
|
-
url: string | null;
|
|
1121
|
-
thumbnail: string | null;
|
|
1122
|
-
pageCount: number | null;
|
|
1123
|
-
} | null;
|
|
1124
|
-
urn: string | null;
|
|
1125
1108
|
stats: {
|
|
1126
|
-
comments: number | null;
|
|
1127
1109
|
like: number | null;
|
|
1128
1110
|
support: number | null;
|
|
1129
1111
|
love: number | null;
|
|
1130
1112
|
insight: number | null;
|
|
1131
1113
|
celebrate: number | null;
|
|
1132
1114
|
funny: number | null;
|
|
1115
|
+
comments: number | null;
|
|
1133
1116
|
reposts: number | null;
|
|
1134
1117
|
totalReactions: number | null;
|
|
1135
1118
|
} | null;
|
|
1119
|
+
url: string | null;
|
|
1120
|
+
text: string | null;
|
|
1121
|
+
document: {
|
|
1122
|
+
title: string | null;
|
|
1123
|
+
url: string | null;
|
|
1124
|
+
thumbnail: string | null;
|
|
1125
|
+
pageCount: number | null;
|
|
1126
|
+
} | null;
|
|
1127
|
+
urn: string | null;
|
|
1128
|
+
author: {
|
|
1129
|
+
username: string | null;
|
|
1130
|
+
headline: string | null;
|
|
1131
|
+
profileUrl: string | null;
|
|
1132
|
+
profilePicture: string | null;
|
|
1133
|
+
firstName: string | null;
|
|
1134
|
+
lastName: string | null;
|
|
1135
|
+
} | null;
|
|
1136
1136
|
media: {
|
|
1137
1137
|
type: string | null;
|
|
1138
1138
|
url: 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
|
-
url: string | null;
|
|
1161
|
-
author: {
|
|
1162
|
-
username: string | null;
|
|
1163
|
-
headline: string | null;
|
|
1164
|
-
profileUrl: string | null;
|
|
1165
|
-
profilePicture: string | null;
|
|
1166
|
-
firstName: string | null;
|
|
1167
|
-
lastName: string | null;
|
|
1168
|
-
} | null;
|
|
1169
|
-
text: string | null;
|
|
1170
|
-
urn: string | null;
|
|
1171
1160
|
stats: {
|
|
1172
|
-
comments: number | null;
|
|
1173
1161
|
like: number | null;
|
|
1174
1162
|
support: number | null;
|
|
1175
1163
|
love: number | null;
|
|
1176
1164
|
insight: number | null;
|
|
1177
1165
|
celebrate: number | null;
|
|
1178
1166
|
funny: number | null;
|
|
1167
|
+
comments: number | null;
|
|
1179
1168
|
reposts: number | null;
|
|
1180
1169
|
totalReactions: number | null;
|
|
1181
1170
|
} | 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,34 +1197,34 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1197
1197
|
postType: string | null;
|
|
1198
1198
|
} | null;
|
|
1199
1199
|
}, {
|
|
1200
|
-
url: string | null;
|
|
1201
|
-
author: {
|
|
1202
|
-
username: string | null;
|
|
1203
|
-
headline: string | null;
|
|
1204
|
-
profileUrl: string | null;
|
|
1205
|
-
profilePicture: string | null;
|
|
1206
|
-
firstName: string | null;
|
|
1207
|
-
lastName: string | null;
|
|
1208
|
-
} | null;
|
|
1209
|
-
text: string | null;
|
|
1210
|
-
document: {
|
|
1211
|
-
title: string | null;
|
|
1212
|
-
url: string | null;
|
|
1213
|
-
thumbnail: string | null;
|
|
1214
|
-
pageCount: number | null;
|
|
1215
|
-
} | null;
|
|
1216
|
-
urn: string | null;
|
|
1217
1200
|
stats: {
|
|
1218
|
-
comments: number | null;
|
|
1219
1201
|
like: number | null;
|
|
1220
1202
|
support: number | null;
|
|
1221
1203
|
love: number | null;
|
|
1222
1204
|
insight: number | null;
|
|
1223
1205
|
celebrate: number | null;
|
|
1224
1206
|
funny: number | null;
|
|
1207
|
+
comments: number | null;
|
|
1225
1208
|
reposts: number | null;
|
|
1226
1209
|
totalReactions: number | null;
|
|
1227
1210
|
} | null;
|
|
1211
|
+
url: string | null;
|
|
1212
|
+
text: string | null;
|
|
1213
|
+
document: {
|
|
1214
|
+
title: string | null;
|
|
1215
|
+
url: string | null;
|
|
1216
|
+
thumbnail: string | null;
|
|
1217
|
+
pageCount: number | null;
|
|
1218
|
+
} | null;
|
|
1219
|
+
urn: string | null;
|
|
1220
|
+
author: {
|
|
1221
|
+
username: string | null;
|
|
1222
|
+
headline: string | null;
|
|
1223
|
+
profileUrl: string | null;
|
|
1224
|
+
profilePicture: string | null;
|
|
1225
|
+
firstName: string | null;
|
|
1226
|
+
lastName: string | null;
|
|
1227
|
+
} | null;
|
|
1228
1228
|
media: {
|
|
1229
1229
|
type: string | null;
|
|
1230
1230
|
url: 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
|
-
url: string | null;
|
|
1253
|
-
author: {
|
|
1254
|
-
username: string | null;
|
|
1255
|
-
headline: string | null;
|
|
1256
|
-
profileUrl: string | null;
|
|
1257
|
-
profilePicture: string | null;
|
|
1258
|
-
firstName: string | null;
|
|
1259
|
-
lastName: string | null;
|
|
1260
|
-
} | null;
|
|
1261
|
-
text: string | null;
|
|
1262
|
-
urn: string | null;
|
|
1263
1252
|
stats: {
|
|
1264
|
-
comments: number | null;
|
|
1265
1253
|
like: number | null;
|
|
1266
1254
|
support: number | null;
|
|
1267
1255
|
love: number | null;
|
|
1268
1256
|
insight: number | null;
|
|
1269
1257
|
celebrate: number | null;
|
|
1270
1258
|
funny: number | null;
|
|
1259
|
+
comments: number | null;
|
|
1271
1260
|
reposts: number | null;
|
|
1272
1261
|
totalReactions: number | null;
|
|
1273
1262
|
} | 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,38 +1298,38 @@ 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";
|
|
1302
|
-
success: boolean;
|
|
1303
1301
|
error: string;
|
|
1302
|
+
success: boolean;
|
|
1303
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1304
1304
|
posts: {
|
|
1305
|
-
url: string | null;
|
|
1306
|
-
author: {
|
|
1307
|
-
username: string | null;
|
|
1308
|
-
headline: string | null;
|
|
1309
|
-
profileUrl: string | null;
|
|
1310
|
-
profilePicture: string | null;
|
|
1311
|
-
firstName: string | null;
|
|
1312
|
-
lastName: string | null;
|
|
1313
|
-
} | null;
|
|
1314
|
-
text: string | null;
|
|
1315
|
-
document: {
|
|
1316
|
-
title: string | null;
|
|
1317
|
-
url: string | null;
|
|
1318
|
-
thumbnail: string | null;
|
|
1319
|
-
pageCount: number | null;
|
|
1320
|
-
} | null;
|
|
1321
|
-
urn: string | null;
|
|
1322
1305
|
stats: {
|
|
1323
|
-
comments: number | null;
|
|
1324
1306
|
like: number | null;
|
|
1325
1307
|
support: number | null;
|
|
1326
1308
|
love: number | null;
|
|
1327
1309
|
insight: number | null;
|
|
1328
1310
|
celebrate: number | null;
|
|
1329
1311
|
funny: number | null;
|
|
1312
|
+
comments: number | null;
|
|
1330
1313
|
reposts: number | null;
|
|
1331
1314
|
totalReactions: number | null;
|
|
1332
1315
|
} | null;
|
|
1316
|
+
url: string | null;
|
|
1317
|
+
text: string | null;
|
|
1318
|
+
document: {
|
|
1319
|
+
title: string | null;
|
|
1320
|
+
url: string | null;
|
|
1321
|
+
thumbnail: string | null;
|
|
1322
|
+
pageCount: number | null;
|
|
1323
|
+
} | null;
|
|
1324
|
+
urn: string | null;
|
|
1325
|
+
author: {
|
|
1326
|
+
username: string | null;
|
|
1327
|
+
headline: string | null;
|
|
1328
|
+
profileUrl: string | null;
|
|
1329
|
+
profilePicture: string | null;
|
|
1330
|
+
firstName: string | null;
|
|
1331
|
+
lastName: string | null;
|
|
1332
|
+
} | null;
|
|
1333
1333
|
media: {
|
|
1334
1334
|
type: string | null;
|
|
1335
1335
|
url: 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
|
-
url: string | null;
|
|
1358
|
-
author: {
|
|
1359
|
-
username: string | null;
|
|
1360
|
-
headline: string | null;
|
|
1361
|
-
profileUrl: string | null;
|
|
1362
|
-
profilePicture: string | null;
|
|
1363
|
-
firstName: string | null;
|
|
1364
|
-
lastName: string | null;
|
|
1365
|
-
} | null;
|
|
1366
|
-
text: string | null;
|
|
1367
|
-
urn: string | null;
|
|
1368
1357
|
stats: {
|
|
1369
|
-
comments: number | null;
|
|
1370
1358
|
like: number | null;
|
|
1371
1359
|
support: number | null;
|
|
1372
1360
|
love: number | null;
|
|
1373
1361
|
insight: number | null;
|
|
1374
1362
|
celebrate: number | null;
|
|
1375
1363
|
funny: number | null;
|
|
1364
|
+
comments: number | null;
|
|
1376
1365
|
reposts: number | null;
|
|
1377
1366
|
totalReactions: number | null;
|
|
1378
1367
|
} | 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;
|
|
@@ -1406,56 +1406,56 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1406
1406
|
postedAt: string | null;
|
|
1407
1407
|
applyUrl: string | null;
|
|
1408
1408
|
salary: {
|
|
1409
|
-
to: number | null;
|
|
1410
1409
|
from: number | null;
|
|
1410
|
+
to: 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;
|
|
1416
1417
|
company: {
|
|
1417
1418
|
name: string | null;
|
|
1418
1419
|
url: string | null;
|
|
1419
1420
|
logo: string | null;
|
|
1420
1421
|
} | 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
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1428
|
-
success: boolean;
|
|
1429
1427
|
error: string;
|
|
1428
|
+
success: boolean;
|
|
1429
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1430
1430
|
posts: {
|
|
1431
|
-
url: string | null;
|
|
1432
|
-
author: {
|
|
1433
|
-
username: string | null;
|
|
1434
|
-
headline: string | null;
|
|
1435
|
-
profileUrl: string | null;
|
|
1436
|
-
profilePicture: string | null;
|
|
1437
|
-
firstName: string | null;
|
|
1438
|
-
lastName: string | null;
|
|
1439
|
-
} | null;
|
|
1440
|
-
text: string | null;
|
|
1441
|
-
document: {
|
|
1442
|
-
title: string | null;
|
|
1443
|
-
url: string | null;
|
|
1444
|
-
thumbnail: string | null;
|
|
1445
|
-
pageCount: number | null;
|
|
1446
|
-
} | null;
|
|
1447
|
-
urn: string | null;
|
|
1448
1431
|
stats: {
|
|
1449
|
-
comments: number | null;
|
|
1450
1432
|
like: number | null;
|
|
1451
1433
|
support: number | null;
|
|
1452
1434
|
love: number | null;
|
|
1453
1435
|
insight: number | null;
|
|
1454
1436
|
celebrate: number | null;
|
|
1455
1437
|
funny: number | null;
|
|
1438
|
+
comments: number | null;
|
|
1456
1439
|
reposts: number | null;
|
|
1457
1440
|
totalReactions: number | null;
|
|
1458
1441
|
} | null;
|
|
1442
|
+
url: string | null;
|
|
1443
|
+
text: string | null;
|
|
1444
|
+
document: {
|
|
1445
|
+
title: string | null;
|
|
1446
|
+
url: string | null;
|
|
1447
|
+
thumbnail: string | null;
|
|
1448
|
+
pageCount: number | null;
|
|
1449
|
+
} | null;
|
|
1450
|
+
urn: string | null;
|
|
1451
|
+
author: {
|
|
1452
|
+
username: string | null;
|
|
1453
|
+
headline: string | null;
|
|
1454
|
+
profileUrl: string | null;
|
|
1455
|
+
profilePicture: string | null;
|
|
1456
|
+
firstName: string | null;
|
|
1457
|
+
lastName: string | null;
|
|
1458
|
+
} | null;
|
|
1459
1459
|
media: {
|
|
1460
1460
|
type: string | null;
|
|
1461
1461
|
url: 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
|
-
url: string | null;
|
|
1484
|
-
author: {
|
|
1485
|
-
username: string | null;
|
|
1486
|
-
headline: string | null;
|
|
1487
|
-
profileUrl: string | null;
|
|
1488
|
-
profilePicture: string | null;
|
|
1489
|
-
firstName: string | null;
|
|
1490
|
-
lastName: string | null;
|
|
1491
|
-
} | null;
|
|
1492
|
-
text: string | null;
|
|
1493
|
-
urn: string | null;
|
|
1494
1483
|
stats: {
|
|
1495
|
-
comments: number | null;
|
|
1496
1484
|
like: number | null;
|
|
1497
1485
|
support: number | null;
|
|
1498
1486
|
love: number | null;
|
|
1499
1487
|
insight: number | null;
|
|
1500
1488
|
celebrate: number | null;
|
|
1501
1489
|
funny: number | null;
|
|
1490
|
+
comments: number | null;
|
|
1502
1491
|
reposts: number | null;
|
|
1503
1492
|
totalReactions: number | null;
|
|
1504
1493
|
} | 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;
|
|
@@ -1532,19 +1532,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1532
1532
|
postedAt: string | null;
|
|
1533
1533
|
applyUrl: string | null;
|
|
1534
1534
|
salary: {
|
|
1535
|
-
to: number | null;
|
|
1536
1535
|
from: number | null;
|
|
1536
|
+
to: 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;
|
|
1542
1543
|
company: {
|
|
1543
1544
|
name: string | null;
|
|
1544
1545
|
url: string | null;
|
|
1545
1546
|
logo: string | null;
|
|
1546
1547
|
} | 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;
|
|
1593
1592
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1594
1593
|
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;
|
|
1606
1605
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1607
1606
|
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
|
-
to: number | null;
|
|
1649
1648
|
from: number | null;
|
|
1649
|
+
to: number | null;
|
|
1650
1650
|
currency: string | null;
|
|
1651
1651
|
period: string | null;
|
|
1652
1652
|
}, {
|
|
1653
|
-
to: number | null;
|
|
1654
1653
|
from: number | null;
|
|
1654
|
+
to: number | null;
|
|
1655
1655
|
currency: string | null;
|
|
1656
1656
|
period: string | null;
|
|
1657
1657
|
}>>;
|
|
@@ -1665,19 +1665,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1665
1665
|
postedAt: string | null;
|
|
1666
1666
|
applyUrl: string | null;
|
|
1667
1667
|
salary: {
|
|
1668
|
-
to: number | null;
|
|
1669
1668
|
from: number | null;
|
|
1669
|
+
to: 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;
|
|
1675
1676
|
company: {
|
|
1676
1677
|
name: string | null;
|
|
1677
1678
|
url: string | null;
|
|
1678
1679
|
logo: string | null;
|
|
1679
1680
|
} | null;
|
|
1680
|
-
skills: string[] | null;
|
|
1681
1681
|
}, {
|
|
1682
1682
|
description: string | null;
|
|
1683
1683
|
title: string | null;
|
|
@@ -1687,19 +1687,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1687
1687
|
postedAt: string | null;
|
|
1688
1688
|
applyUrl: string | null;
|
|
1689
1689
|
salary: {
|
|
1690
|
-
to: number | null;
|
|
1691
1690
|
from: number | null;
|
|
1691
|
+
to: 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;
|
|
1697
1698
|
company: {
|
|
1698
1699
|
name: string | null;
|
|
1699
1700
|
url: string | null;
|
|
1700
1701
|
logo: string | null;
|
|
1701
1702
|
} | 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;
|
|
1757
1756
|
like: number | null;
|
|
1758
1757
|
support: number | null;
|
|
1759
1758
|
love: number | null;
|
|
1760
1759
|
insight: number | null;
|
|
1761
1760
|
celebrate: number | null;
|
|
1762
1761
|
funny: number | null;
|
|
1762
|
+
comments: number | null;
|
|
1763
1763
|
reposts: number | null;
|
|
1764
1764
|
totalReactions: number | null;
|
|
1765
1765
|
}, {
|
|
1766
|
-
comments: number | null;
|
|
1767
1766
|
like: number | null;
|
|
1768
1767
|
support: number | null;
|
|
1769
1768
|
love: number | null;
|
|
1770
1769
|
insight: number | null;
|
|
1771
1770
|
celebrate: number | null;
|
|
1772
1771
|
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;
|
|
1896
1895
|
like: number | null;
|
|
1897
1896
|
support: number | null;
|
|
1898
1897
|
love: number | null;
|
|
1899
1898
|
insight: number | null;
|
|
1900
1899
|
celebrate: number | null;
|
|
1901
1900
|
funny: number | null;
|
|
1901
|
+
comments: number | null;
|
|
1902
1902
|
reposts: number | null;
|
|
1903
1903
|
totalReactions: number | null;
|
|
1904
1904
|
}, {
|
|
1905
|
-
comments: number | null;
|
|
1906
1905
|
like: number | null;
|
|
1907
1906
|
support: number | null;
|
|
1908
1907
|
love: number | null;
|
|
1909
1908
|
insight: number | null;
|
|
1910
1909
|
celebrate: number | null;
|
|
1911
1910
|
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
|
-
url: string | null;
|
|
1953
|
-
author: {
|
|
1954
|
-
username: string | null;
|
|
1955
|
-
headline: string | null;
|
|
1956
|
-
profileUrl: string | null;
|
|
1957
|
-
profilePicture: string | null;
|
|
1958
|
-
firstName: string | null;
|
|
1959
|
-
lastName: string | null;
|
|
1960
|
-
} | null;
|
|
1961
|
-
text: string | null;
|
|
1962
|
-
urn: string | null;
|
|
1963
1952
|
stats: {
|
|
1964
|
-
comments: number | null;
|
|
1965
1953
|
like: number | null;
|
|
1966
1954
|
support: number | null;
|
|
1967
1955
|
love: number | null;
|
|
1968
1956
|
insight: number | null;
|
|
1969
1957
|
celebrate: number | null;
|
|
1970
1958
|
funny: number | null;
|
|
1959
|
+
comments: number | null;
|
|
1971
1960
|
reposts: number | null;
|
|
1972
1961
|
totalReactions: number | null;
|
|
1973
1962
|
} | 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,28 +1988,28 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1988
1988
|
} | null;
|
|
1989
1989
|
postType: string | null;
|
|
1990
1990
|
}, {
|
|
1991
|
-
url: string | null;
|
|
1992
|
-
author: {
|
|
1993
|
-
username: string | null;
|
|
1994
|
-
headline: string | null;
|
|
1995
|
-
profileUrl: string | null;
|
|
1996
|
-
profilePicture: string | null;
|
|
1997
|
-
firstName: string | null;
|
|
1998
|
-
lastName: string | null;
|
|
1999
|
-
} | null;
|
|
2000
|
-
text: string | null;
|
|
2001
|
-
urn: string | null;
|
|
2002
1991
|
stats: {
|
|
2003
|
-
comments: number | null;
|
|
2004
1992
|
like: number | null;
|
|
2005
1993
|
support: number | null;
|
|
2006
1994
|
love: number | null;
|
|
2007
1995
|
insight: number | null;
|
|
2008
1996
|
celebrate: number | null;
|
|
2009
1997
|
funny: number | null;
|
|
1998
|
+
comments: number | null;
|
|
2010
1999
|
reposts: number | null;
|
|
2011
2000
|
totalReactions: number | null;
|
|
2012
2001
|
} | null;
|
|
2002
|
+
url: string | 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,34 +2028,34 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2028
2028
|
postType: string | null;
|
|
2029
2029
|
}>>;
|
|
2030
2030
|
}, "strip", z.ZodTypeAny, {
|
|
2031
|
-
url: string | null;
|
|
2032
|
-
author: {
|
|
2033
|
-
username: string | null;
|
|
2034
|
-
headline: string | null;
|
|
2035
|
-
profileUrl: string | null;
|
|
2036
|
-
profilePicture: string | null;
|
|
2037
|
-
firstName: string | null;
|
|
2038
|
-
lastName: string | null;
|
|
2039
|
-
} | null;
|
|
2040
|
-
text: string | null;
|
|
2041
|
-
document: {
|
|
2042
|
-
title: string | null;
|
|
2043
|
-
url: string | null;
|
|
2044
|
-
thumbnail: string | null;
|
|
2045
|
-
pageCount: number | null;
|
|
2046
|
-
} | null;
|
|
2047
|
-
urn: string | null;
|
|
2048
2031
|
stats: {
|
|
2049
|
-
comments: number | null;
|
|
2050
2032
|
like: number | null;
|
|
2051
2033
|
support: number | null;
|
|
2052
2034
|
love: number | null;
|
|
2053
2035
|
insight: number | null;
|
|
2054
2036
|
celebrate: number | null;
|
|
2055
2037
|
funny: number | null;
|
|
2038
|
+
comments: number | null;
|
|
2056
2039
|
reposts: number | null;
|
|
2057
2040
|
totalReactions: number | null;
|
|
2058
2041
|
} | null;
|
|
2042
|
+
url: string | null;
|
|
2043
|
+
text: string | null;
|
|
2044
|
+
document: {
|
|
2045
|
+
title: string | null;
|
|
2046
|
+
url: string | null;
|
|
2047
|
+
thumbnail: string | null;
|
|
2048
|
+
pageCount: number | null;
|
|
2049
|
+
} | null;
|
|
2050
|
+
urn: string | null;
|
|
2051
|
+
author: {
|
|
2052
|
+
username: string | null;
|
|
2053
|
+
headline: string | null;
|
|
2054
|
+
profileUrl: string | null;
|
|
2055
|
+
profilePicture: string | null;
|
|
2056
|
+
firstName: string | null;
|
|
2057
|
+
lastName: string | null;
|
|
2058
|
+
} | null;
|
|
2059
2059
|
media: {
|
|
2060
2060
|
type: string | null;
|
|
2061
2061
|
url: 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
|
-
url: string | null;
|
|
2084
|
-
author: {
|
|
2085
|
-
username: string | null;
|
|
2086
|
-
headline: string | null;
|
|
2087
|
-
profileUrl: string | null;
|
|
2088
|
-
profilePicture: string | null;
|
|
2089
|
-
firstName: string | null;
|
|
2090
|
-
lastName: string | null;
|
|
2091
|
-
} | null;
|
|
2092
|
-
text: string | null;
|
|
2093
|
-
urn: string | null;
|
|
2094
2083
|
stats: {
|
|
2095
|
-
comments: number | null;
|
|
2096
2084
|
like: number | null;
|
|
2097
2085
|
support: number | null;
|
|
2098
2086
|
love: number | null;
|
|
2099
2087
|
insight: number | null;
|
|
2100
2088
|
celebrate: number | null;
|
|
2101
2089
|
funny: number | null;
|
|
2090
|
+
comments: number | null;
|
|
2102
2091
|
reposts: number | null;
|
|
2103
2092
|
totalReactions: number | null;
|
|
2104
2093
|
} | 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,34 +2120,34 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2120
2120
|
postType: string | null;
|
|
2121
2121
|
} | null;
|
|
2122
2122
|
}, {
|
|
2123
|
-
url: string | null;
|
|
2124
|
-
author: {
|
|
2125
|
-
username: string | null;
|
|
2126
|
-
headline: string | null;
|
|
2127
|
-
profileUrl: string | null;
|
|
2128
|
-
profilePicture: string | null;
|
|
2129
|
-
firstName: string | null;
|
|
2130
|
-
lastName: string | null;
|
|
2131
|
-
} | null;
|
|
2132
|
-
text: string | null;
|
|
2133
|
-
document: {
|
|
2134
|
-
title: string | null;
|
|
2135
|
-
url: string | null;
|
|
2136
|
-
thumbnail: string | null;
|
|
2137
|
-
pageCount: number | null;
|
|
2138
|
-
} | null;
|
|
2139
|
-
urn: string | null;
|
|
2140
2123
|
stats: {
|
|
2141
|
-
comments: number | null;
|
|
2142
2124
|
like: number | null;
|
|
2143
2125
|
support: number | null;
|
|
2144
2126
|
love: number | null;
|
|
2145
2127
|
insight: number | null;
|
|
2146
2128
|
celebrate: number | null;
|
|
2147
2129
|
funny: number | null;
|
|
2130
|
+
comments: number | null;
|
|
2148
2131
|
reposts: number | null;
|
|
2149
2132
|
totalReactions: number | null;
|
|
2150
2133
|
} | null;
|
|
2134
|
+
url: string | null;
|
|
2135
|
+
text: string | null;
|
|
2136
|
+
document: {
|
|
2137
|
+
title: string | null;
|
|
2138
|
+
url: string | null;
|
|
2139
|
+
thumbnail: string | null;
|
|
2140
|
+
pageCount: number | null;
|
|
2141
|
+
} | null;
|
|
2142
|
+
urn: string | null;
|
|
2143
|
+
author: {
|
|
2144
|
+
username: string | null;
|
|
2145
|
+
headline: string | null;
|
|
2146
|
+
profileUrl: string | null;
|
|
2147
|
+
profilePicture: string | null;
|
|
2148
|
+
firstName: string | null;
|
|
2149
|
+
lastName: string | null;
|
|
2150
|
+
} | null;
|
|
2151
2151
|
media: {
|
|
2152
2152
|
type: string | null;
|
|
2153
2153
|
url: 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
|
-
url: string | null;
|
|
2176
|
-
author: {
|
|
2177
|
-
username: string | null;
|
|
2178
|
-
headline: string | null;
|
|
2179
|
-
profileUrl: string | null;
|
|
2180
|
-
profilePicture: string | null;
|
|
2181
|
-
firstName: string | null;
|
|
2182
|
-
lastName: string | null;
|
|
2183
|
-
} | null;
|
|
2184
|
-
text: string | null;
|
|
2185
|
-
urn: string | null;
|
|
2186
2175
|
stats: {
|
|
2187
|
-
comments: number | null;
|
|
2188
2176
|
like: number | null;
|
|
2189
2177
|
support: number | null;
|
|
2190
2178
|
love: number | null;
|
|
2191
2179
|
insight: number | null;
|
|
2192
2180
|
celebrate: number | null;
|
|
2193
2181
|
funny: number | null;
|
|
2182
|
+
comments: number | null;
|
|
2194
2183
|
reposts: number | null;
|
|
2195
2184
|
totalReactions: number | null;
|
|
2196
2185
|
} | 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,38 +2221,38 @@ 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";
|
|
2225
|
-
success: boolean;
|
|
2226
2224
|
error: string;
|
|
2225
|
+
success: boolean;
|
|
2226
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2227
2227
|
posts: {
|
|
2228
|
-
url: string | null;
|
|
2229
|
-
author: {
|
|
2230
|
-
username: string | null;
|
|
2231
|
-
headline: string | null;
|
|
2232
|
-
profileUrl: string | null;
|
|
2233
|
-
profilePicture: string | null;
|
|
2234
|
-
firstName: string | null;
|
|
2235
|
-
lastName: string | null;
|
|
2236
|
-
} | null;
|
|
2237
|
-
text: string | null;
|
|
2238
|
-
document: {
|
|
2239
|
-
title: string | null;
|
|
2240
|
-
url: string | null;
|
|
2241
|
-
thumbnail: string | null;
|
|
2242
|
-
pageCount: number | null;
|
|
2243
|
-
} | null;
|
|
2244
|
-
urn: string | null;
|
|
2245
2228
|
stats: {
|
|
2246
|
-
comments: number | null;
|
|
2247
2229
|
like: number | null;
|
|
2248
2230
|
support: number | null;
|
|
2249
2231
|
love: number | null;
|
|
2250
2232
|
insight: number | null;
|
|
2251
2233
|
celebrate: number | null;
|
|
2252
2234
|
funny: number | null;
|
|
2235
|
+
comments: number | null;
|
|
2253
2236
|
reposts: number | null;
|
|
2254
2237
|
totalReactions: number | null;
|
|
2255
2238
|
} | null;
|
|
2239
|
+
url: string | null;
|
|
2240
|
+
text: string | null;
|
|
2241
|
+
document: {
|
|
2242
|
+
title: string | null;
|
|
2243
|
+
url: string | null;
|
|
2244
|
+
thumbnail: string | null;
|
|
2245
|
+
pageCount: number | null;
|
|
2246
|
+
} | null;
|
|
2247
|
+
urn: string | null;
|
|
2248
|
+
author: {
|
|
2249
|
+
username: string | null;
|
|
2250
|
+
headline: string | null;
|
|
2251
|
+
profileUrl: string | null;
|
|
2252
|
+
profilePicture: string | null;
|
|
2253
|
+
firstName: string | null;
|
|
2254
|
+
lastName: string | null;
|
|
2255
|
+
} | null;
|
|
2256
2256
|
media: {
|
|
2257
2257
|
type: string | null;
|
|
2258
2258
|
url: 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
|
-
url: string | null;
|
|
2281
|
-
author: {
|
|
2282
|
-
username: string | null;
|
|
2283
|
-
headline: string | null;
|
|
2284
|
-
profileUrl: string | null;
|
|
2285
|
-
profilePicture: string | null;
|
|
2286
|
-
firstName: string | null;
|
|
2287
|
-
lastName: string | null;
|
|
2288
|
-
} | null;
|
|
2289
|
-
text: string | null;
|
|
2290
|
-
urn: string | null;
|
|
2291
2280
|
stats: {
|
|
2292
|
-
comments: number | null;
|
|
2293
2281
|
like: number | null;
|
|
2294
2282
|
support: number | null;
|
|
2295
2283
|
love: number | null;
|
|
2296
2284
|
insight: number | null;
|
|
2297
2285
|
celebrate: number | null;
|
|
2298
2286
|
funny: number | null;
|
|
2287
|
+
comments: number | null;
|
|
2299
2288
|
reposts: number | null;
|
|
2300
2289
|
totalReactions: number | null;
|
|
2301
2290
|
} | 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;
|
|
@@ -2329,56 +2329,56 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2329
2329
|
postedAt: string | null;
|
|
2330
2330
|
applyUrl: string | null;
|
|
2331
2331
|
salary: {
|
|
2332
|
-
to: number | null;
|
|
2333
2332
|
from: number | null;
|
|
2333
|
+
to: 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;
|
|
2339
2340
|
company: {
|
|
2340
2341
|
name: string | null;
|
|
2341
2342
|
url: string | null;
|
|
2342
2343
|
logo: string | null;
|
|
2343
2344
|
} | 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
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2351
|
-
success: boolean;
|
|
2352
2350
|
error: string;
|
|
2351
|
+
success: boolean;
|
|
2352
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2353
2353
|
posts: {
|
|
2354
|
-
url: string | null;
|
|
2355
|
-
author: {
|
|
2356
|
-
username: string | null;
|
|
2357
|
-
headline: string | null;
|
|
2358
|
-
profileUrl: string | null;
|
|
2359
|
-
profilePicture: string | null;
|
|
2360
|
-
firstName: string | null;
|
|
2361
|
-
lastName: string | null;
|
|
2362
|
-
} | null;
|
|
2363
|
-
text: string | null;
|
|
2364
|
-
document: {
|
|
2365
|
-
title: string | null;
|
|
2366
|
-
url: string | null;
|
|
2367
|
-
thumbnail: string | null;
|
|
2368
|
-
pageCount: number | null;
|
|
2369
|
-
} | null;
|
|
2370
|
-
urn: string | null;
|
|
2371
2354
|
stats: {
|
|
2372
|
-
comments: number | null;
|
|
2373
2355
|
like: number | null;
|
|
2374
2356
|
support: number | null;
|
|
2375
2357
|
love: number | null;
|
|
2376
2358
|
insight: number | null;
|
|
2377
2359
|
celebrate: number | null;
|
|
2378
2360
|
funny: number | null;
|
|
2361
|
+
comments: number | null;
|
|
2379
2362
|
reposts: number | null;
|
|
2380
2363
|
totalReactions: number | null;
|
|
2381
2364
|
} | null;
|
|
2365
|
+
url: string | null;
|
|
2366
|
+
text: string | null;
|
|
2367
|
+
document: {
|
|
2368
|
+
title: string | null;
|
|
2369
|
+
url: string | null;
|
|
2370
|
+
thumbnail: string | null;
|
|
2371
|
+
pageCount: number | null;
|
|
2372
|
+
} | null;
|
|
2373
|
+
urn: string | null;
|
|
2374
|
+
author: {
|
|
2375
|
+
username: string | null;
|
|
2376
|
+
headline: string | null;
|
|
2377
|
+
profileUrl: string | null;
|
|
2378
|
+
profilePicture: string | null;
|
|
2379
|
+
firstName: string | null;
|
|
2380
|
+
lastName: string | null;
|
|
2381
|
+
} | null;
|
|
2382
2382
|
media: {
|
|
2383
2383
|
type: string | null;
|
|
2384
2384
|
url: 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
|
-
url: string | null;
|
|
2407
|
-
author: {
|
|
2408
|
-
username: string | null;
|
|
2409
|
-
headline: string | null;
|
|
2410
|
-
profileUrl: string | null;
|
|
2411
|
-
profilePicture: string | null;
|
|
2412
|
-
firstName: string | null;
|
|
2413
|
-
lastName: string | null;
|
|
2414
|
-
} | null;
|
|
2415
|
-
text: string | null;
|
|
2416
|
-
urn: string | null;
|
|
2417
2406
|
stats: {
|
|
2418
|
-
comments: number | null;
|
|
2419
2407
|
like: number | null;
|
|
2420
2408
|
support: number | null;
|
|
2421
2409
|
love: number | null;
|
|
2422
2410
|
insight: number | null;
|
|
2423
2411
|
celebrate: number | null;
|
|
2424
2412
|
funny: number | null;
|
|
2413
|
+
comments: number | null;
|
|
2425
2414
|
reposts: number | null;
|
|
2426
2415
|
totalReactions: number | null;
|
|
2427
2416
|
} | 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;
|
|
@@ -2455,19 +2455,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2455
2455
|
postedAt: string | null;
|
|
2456
2456
|
applyUrl: string | null;
|
|
2457
2457
|
salary: {
|
|
2458
|
-
to: number | null;
|
|
2459
2458
|
from: number | null;
|
|
2459
|
+
to: 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;
|
|
2465
2466
|
company: {
|
|
2466
2467
|
name: string | null;
|
|
2467
2468
|
url: string | null;
|
|
2468
2469
|
logo: string | null;
|
|
2469
2470
|
} | null;
|
|
2470
|
-
skills: string[] | null;
|
|
2471
2471
|
}[] | undefined;
|
|
2472
2472
|
totalResults?: number | null | undefined;
|
|
2473
2473
|
paginationToken?: string | null | undefined;
|