@bubblelab/bubble-core 0.1.209 → 0.1.210
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 +55 -55
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +53 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/capability-pipeline.js +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
- package/dist/bubbles/service-bubble/firecrawl.d.ts +176 -176
- package/dist/bubbles/service-bubble/github.d.ts +72 -72
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +98 -98
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- 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/yc-scraper-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -60,22 +60,22 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
60
60
|
companyLinkedinUrl: string | null;
|
|
61
61
|
seniorityLevel: string | null;
|
|
62
62
|
startDate: string | number | null;
|
|
63
|
-
companyIndustries: string[] | null;
|
|
64
63
|
companyDomainUrl: string | null;
|
|
65
64
|
functionCategory: string | null;
|
|
66
65
|
yearsAtCompany: number | null;
|
|
67
66
|
companyHeadcount: number | null;
|
|
67
|
+
companyIndustries: string[] | null;
|
|
68
68
|
}, {
|
|
69
69
|
title: string | null;
|
|
70
70
|
companyName: string | null;
|
|
71
71
|
companyLinkedinUrl: string | null;
|
|
72
72
|
seniorityLevel: string | null;
|
|
73
73
|
startDate: string | number | null;
|
|
74
|
-
companyIndustries: string[] | null;
|
|
75
74
|
companyDomainUrl: string | null;
|
|
76
75
|
functionCategory: string | null;
|
|
77
76
|
yearsAtCompany: number | null;
|
|
78
77
|
companyHeadcount: number | null;
|
|
78
|
+
companyIndustries: string[] | null;
|
|
79
79
|
}>, "many">>;
|
|
80
80
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
81
81
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -123,10 +123,10 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
123
123
|
languages: string[] | null;
|
|
124
124
|
emails: string[] | null;
|
|
125
125
|
websites: string[] | null;
|
|
126
|
-
recentlyChangedJobs: boolean | null;
|
|
127
126
|
profilePictureUrl: string | null;
|
|
128
127
|
twitterHandle: string | null;
|
|
129
128
|
yearsOfExperience: number | null;
|
|
129
|
+
recentlyChangedJobs: boolean | null;
|
|
130
130
|
locationCity: string | null;
|
|
131
131
|
locationCountry: string | null;
|
|
132
132
|
numConnections: number | null;
|
|
@@ -136,11 +136,11 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
136
136
|
companyLinkedinUrl: string | null;
|
|
137
137
|
seniorityLevel: string | null;
|
|
138
138
|
startDate: string | number | null;
|
|
139
|
-
companyIndustries: string[] | null;
|
|
140
139
|
companyDomainUrl: string | null;
|
|
141
140
|
functionCategory: string | null;
|
|
142
141
|
yearsAtCompany: number | null;
|
|
143
142
|
companyHeadcount: number | null;
|
|
143
|
+
companyIndustries: string[] | null;
|
|
144
144
|
}[] | null;
|
|
145
145
|
pastEmployers: {
|
|
146
146
|
title: string | null;
|
|
@@ -175,10 +175,10 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
175
175
|
languages: string[] | null;
|
|
176
176
|
emails: string[] | null;
|
|
177
177
|
websites: string[] | null;
|
|
178
|
-
recentlyChangedJobs: boolean | null;
|
|
179
178
|
profilePictureUrl: string | null;
|
|
180
179
|
twitterHandle: string | null;
|
|
181
180
|
yearsOfExperience: number | null;
|
|
181
|
+
recentlyChangedJobs: boolean | null;
|
|
182
182
|
locationCity: string | null;
|
|
183
183
|
locationCountry: string | null;
|
|
184
184
|
numConnections: number | null;
|
|
@@ -188,11 +188,11 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
188
188
|
companyLinkedinUrl: string | null;
|
|
189
189
|
seniorityLevel: string | null;
|
|
190
190
|
startDate: string | number | null;
|
|
191
|
-
companyIndustries: string[] | null;
|
|
192
191
|
companyDomainUrl: string | null;
|
|
193
192
|
functionCategory: string | null;
|
|
194
193
|
yearsAtCompany: number | null;
|
|
195
194
|
companyHeadcount: number | null;
|
|
195
|
+
companyIndustries: string[] | null;
|
|
196
196
|
}[] | null;
|
|
197
197
|
pastEmployers: {
|
|
198
198
|
title: string | null;
|
|
@@ -265,6 +265,8 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
265
265
|
skills?: string[] | undefined;
|
|
266
266
|
schoolName?: string | undefined;
|
|
267
267
|
languages?: string[] | undefined;
|
|
268
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
269
|
+
companyIndustries?: string[] | undefined;
|
|
268
270
|
jobTitle?: string | undefined;
|
|
269
271
|
jobTitles?: string[] | undefined;
|
|
270
272
|
locationRadius?: {
|
|
@@ -275,13 +277,11 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
275
277
|
maxYearsExperience?: number | undefined;
|
|
276
278
|
seniorityLevels?: string[] | undefined;
|
|
277
279
|
functionCategories?: string[] | undefined;
|
|
278
|
-
companyIndustries?: string[] | undefined;
|
|
279
280
|
minCompanyHeadcount?: number | undefined;
|
|
280
281
|
maxCompanyHeadcount?: number | undefined;
|
|
281
282
|
minYearsAtCompany?: number | undefined;
|
|
282
283
|
pastCompanyName?: string | undefined;
|
|
283
284
|
pastJobTitle?: string | undefined;
|
|
284
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
285
285
|
minConnections?: number | undefined;
|
|
286
286
|
excludeCompanies?: string[] | undefined;
|
|
287
287
|
excludeProfiles?: string[] | undefined;
|
|
@@ -297,6 +297,8 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
297
297
|
skills?: string[] | undefined;
|
|
298
298
|
schoolName?: string | undefined;
|
|
299
299
|
languages?: string[] | undefined;
|
|
300
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
301
|
+
companyIndustries?: string[] | undefined;
|
|
300
302
|
jobTitle?: string | undefined;
|
|
301
303
|
jobTitles?: string[] | undefined;
|
|
302
304
|
locationRadius?: {
|
|
@@ -307,13 +309,11 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
307
309
|
maxYearsExperience?: number | undefined;
|
|
308
310
|
seniorityLevels?: string[] | undefined;
|
|
309
311
|
functionCategories?: string[] | undefined;
|
|
310
|
-
companyIndustries?: string[] | undefined;
|
|
311
312
|
minCompanyHeadcount?: number | undefined;
|
|
312
313
|
maxCompanyHeadcount?: number | undefined;
|
|
313
314
|
minYearsAtCompany?: number | undefined;
|
|
314
315
|
pastCompanyName?: string | undefined;
|
|
315
316
|
pastJobTitle?: string | undefined;
|
|
316
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
317
317
|
minConnections?: number | undefined;
|
|
318
318
|
excludeCompanies?: string[] | undefined;
|
|
319
319
|
excludeProfiles?: string[] | undefined;
|
|
@@ -379,22 +379,22 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
379
379
|
companyLinkedinUrl: string | null;
|
|
380
380
|
seniorityLevel: string | null;
|
|
381
381
|
startDate: string | number | null;
|
|
382
|
-
companyIndustries: string[] | null;
|
|
383
382
|
companyDomainUrl: string | null;
|
|
384
383
|
functionCategory: string | null;
|
|
385
384
|
yearsAtCompany: number | null;
|
|
386
385
|
companyHeadcount: number | null;
|
|
386
|
+
companyIndustries: string[] | null;
|
|
387
387
|
}, {
|
|
388
388
|
title: string | null;
|
|
389
389
|
companyName: string | null;
|
|
390
390
|
companyLinkedinUrl: string | null;
|
|
391
391
|
seniorityLevel: string | null;
|
|
392
392
|
startDate: string | number | null;
|
|
393
|
-
companyIndustries: string[] | null;
|
|
394
393
|
companyDomainUrl: string | null;
|
|
395
394
|
functionCategory: string | null;
|
|
396
395
|
yearsAtCompany: number | null;
|
|
397
396
|
companyHeadcount: number | null;
|
|
397
|
+
companyIndustries: string[] | null;
|
|
398
398
|
}>, "many">>;
|
|
399
399
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
400
400
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -442,10 +442,10 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
442
442
|
languages: string[] | null;
|
|
443
443
|
emails: string[] | null;
|
|
444
444
|
websites: string[] | null;
|
|
445
|
-
recentlyChangedJobs: boolean | null;
|
|
446
445
|
profilePictureUrl: string | null;
|
|
447
446
|
twitterHandle: string | null;
|
|
448
447
|
yearsOfExperience: number | null;
|
|
448
|
+
recentlyChangedJobs: boolean | null;
|
|
449
449
|
locationCity: string | null;
|
|
450
450
|
locationCountry: string | null;
|
|
451
451
|
numConnections: number | null;
|
|
@@ -455,11 +455,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
455
455
|
companyLinkedinUrl: string | null;
|
|
456
456
|
seniorityLevel: string | null;
|
|
457
457
|
startDate: string | number | null;
|
|
458
|
-
companyIndustries: string[] | null;
|
|
459
458
|
companyDomainUrl: string | null;
|
|
460
459
|
functionCategory: string | null;
|
|
461
460
|
yearsAtCompany: number | null;
|
|
462
461
|
companyHeadcount: number | null;
|
|
462
|
+
companyIndustries: string[] | null;
|
|
463
463
|
}[] | null;
|
|
464
464
|
pastEmployers: {
|
|
465
465
|
title: string | null;
|
|
@@ -494,10 +494,10 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
494
494
|
languages: string[] | null;
|
|
495
495
|
emails: string[] | null;
|
|
496
496
|
websites: string[] | null;
|
|
497
|
-
recentlyChangedJobs: boolean | null;
|
|
498
497
|
profilePictureUrl: string | null;
|
|
499
498
|
twitterHandle: string | null;
|
|
500
499
|
yearsOfExperience: number | null;
|
|
500
|
+
recentlyChangedJobs: boolean | null;
|
|
501
501
|
locationCity: string | null;
|
|
502
502
|
locationCountry: string | null;
|
|
503
503
|
numConnections: number | null;
|
|
@@ -507,11 +507,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
507
507
|
companyLinkedinUrl: string | null;
|
|
508
508
|
seniorityLevel: string | null;
|
|
509
509
|
startDate: string | number | null;
|
|
510
|
-
companyIndustries: string[] | null;
|
|
511
510
|
companyDomainUrl: string | null;
|
|
512
511
|
functionCategory: string | null;
|
|
513
512
|
yearsAtCompany: number | null;
|
|
514
513
|
companyHeadcount: number | null;
|
|
514
|
+
companyIndustries: string[] | null;
|
|
515
515
|
}[] | null;
|
|
516
516
|
pastEmployers: {
|
|
517
517
|
title: string | null;
|
|
@@ -554,10 +554,10 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
554
554
|
languages: string[] | null;
|
|
555
555
|
emails: string[] | null;
|
|
556
556
|
websites: string[] | null;
|
|
557
|
-
recentlyChangedJobs: boolean | null;
|
|
558
557
|
profilePictureUrl: string | null;
|
|
559
558
|
twitterHandle: string | null;
|
|
560
559
|
yearsOfExperience: number | null;
|
|
560
|
+
recentlyChangedJobs: boolean | null;
|
|
561
561
|
locationCity: string | null;
|
|
562
562
|
locationCountry: string | null;
|
|
563
563
|
numConnections: number | null;
|
|
@@ -567,11 +567,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
567
567
|
companyLinkedinUrl: string | null;
|
|
568
568
|
seniorityLevel: string | null;
|
|
569
569
|
startDate: string | number | null;
|
|
570
|
-
companyIndustries: string[] | null;
|
|
571
570
|
companyDomainUrl: string | null;
|
|
572
571
|
functionCategory: string | null;
|
|
573
572
|
yearsAtCompany: number | null;
|
|
574
573
|
companyHeadcount: number | null;
|
|
574
|
+
companyIndustries: string[] | null;
|
|
575
575
|
}[] | null;
|
|
576
576
|
pastEmployers: {
|
|
577
577
|
title: string | null;
|
|
@@ -612,10 +612,10 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
612
612
|
languages: string[] | null;
|
|
613
613
|
emails: string[] | null;
|
|
614
614
|
websites: string[] | null;
|
|
615
|
-
recentlyChangedJobs: boolean | null;
|
|
616
615
|
profilePictureUrl: string | null;
|
|
617
616
|
twitterHandle: string | null;
|
|
618
617
|
yearsOfExperience: number | null;
|
|
618
|
+
recentlyChangedJobs: boolean | null;
|
|
619
619
|
locationCity: string | null;
|
|
620
620
|
locationCountry: string | null;
|
|
621
621
|
numConnections: number | null;
|
|
@@ -625,11 +625,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
625
625
|
companyLinkedinUrl: string | null;
|
|
626
626
|
seniorityLevel: string | null;
|
|
627
627
|
startDate: string | number | null;
|
|
628
|
-
companyIndustries: string[] | null;
|
|
629
628
|
companyDomainUrl: string | null;
|
|
630
629
|
functionCategory: string | null;
|
|
631
630
|
yearsAtCompany: number | null;
|
|
632
631
|
companyHeadcount: number | null;
|
|
632
|
+
companyIndustries: string[] | null;
|
|
633
633
|
}[] | null;
|
|
634
634
|
pastEmployers: {
|
|
635
635
|
title: string | null;
|
|
@@ -734,6 +734,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
734
734
|
skills?: string[] | undefined;
|
|
735
735
|
schoolName?: string | undefined;
|
|
736
736
|
languages?: string[] | undefined;
|
|
737
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
738
|
+
companyIndustries?: string[] | undefined;
|
|
737
739
|
jobTitle?: string | undefined;
|
|
738
740
|
jobTitles?: string[] | undefined;
|
|
739
741
|
locationRadius?: {
|
|
@@ -744,13 +746,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
744
746
|
maxYearsExperience?: number | undefined;
|
|
745
747
|
seniorityLevels?: string[] | undefined;
|
|
746
748
|
functionCategories?: string[] | undefined;
|
|
747
|
-
companyIndustries?: string[] | undefined;
|
|
748
749
|
minCompanyHeadcount?: number | undefined;
|
|
749
750
|
maxCompanyHeadcount?: number | undefined;
|
|
750
751
|
minYearsAtCompany?: number | undefined;
|
|
751
752
|
pastCompanyName?: string | undefined;
|
|
752
753
|
pastJobTitle?: string | undefined;
|
|
753
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
754
754
|
minConnections?: number | undefined;
|
|
755
755
|
excludeCompanies?: string[] | undefined;
|
|
756
756
|
excludeProfiles?: string[] | undefined;
|
|
@@ -766,6 +766,8 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
766
766
|
skills?: string[] | undefined;
|
|
767
767
|
schoolName?: string | undefined;
|
|
768
768
|
languages?: string[] | undefined;
|
|
769
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
770
|
+
companyIndustries?: string[] | undefined;
|
|
769
771
|
jobTitle?: string | undefined;
|
|
770
772
|
jobTitles?: string[] | undefined;
|
|
771
773
|
locationRadius?: {
|
|
@@ -776,13 +778,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
776
778
|
maxYearsExperience?: number | undefined;
|
|
777
779
|
seniorityLevels?: string[] | undefined;
|
|
778
780
|
functionCategories?: string[] | undefined;
|
|
779
|
-
companyIndustries?: string[] | undefined;
|
|
780
781
|
minCompanyHeadcount?: number | undefined;
|
|
781
782
|
maxCompanyHeadcount?: number | undefined;
|
|
782
783
|
minYearsAtCompany?: number | undefined;
|
|
783
784
|
pastCompanyName?: string | undefined;
|
|
784
785
|
pastJobTitle?: string | undefined;
|
|
785
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
786
786
|
minConnections?: number | undefined;
|
|
787
787
|
excludeCompanies?: string[] | undefined;
|
|
788
788
|
excludeProfiles?: string[] | undefined;
|
|
@@ -848,22 +848,22 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
848
848
|
companyLinkedinUrl: string | null;
|
|
849
849
|
seniorityLevel: string | null;
|
|
850
850
|
startDate: string | number | null;
|
|
851
|
-
companyIndustries: string[] | null;
|
|
852
851
|
companyDomainUrl: string | null;
|
|
853
852
|
functionCategory: string | null;
|
|
854
853
|
yearsAtCompany: number | null;
|
|
855
854
|
companyHeadcount: number | null;
|
|
855
|
+
companyIndustries: string[] | null;
|
|
856
856
|
}, {
|
|
857
857
|
title: string | null;
|
|
858
858
|
companyName: string | null;
|
|
859
859
|
companyLinkedinUrl: string | null;
|
|
860
860
|
seniorityLevel: string | null;
|
|
861
861
|
startDate: string | number | null;
|
|
862
|
-
companyIndustries: string[] | null;
|
|
863
862
|
companyDomainUrl: string | null;
|
|
864
863
|
functionCategory: string | null;
|
|
865
864
|
yearsAtCompany: number | null;
|
|
866
865
|
companyHeadcount: number | null;
|
|
866
|
+
companyIndustries: string[] | null;
|
|
867
867
|
}>, "many">>;
|
|
868
868
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
869
869
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -911,10 +911,10 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
911
911
|
languages: string[] | null;
|
|
912
912
|
emails: string[] | null;
|
|
913
913
|
websites: string[] | null;
|
|
914
|
-
recentlyChangedJobs: boolean | null;
|
|
915
914
|
profilePictureUrl: string | null;
|
|
916
915
|
twitterHandle: string | null;
|
|
917
916
|
yearsOfExperience: number | null;
|
|
917
|
+
recentlyChangedJobs: boolean | null;
|
|
918
918
|
locationCity: string | null;
|
|
919
919
|
locationCountry: string | null;
|
|
920
920
|
numConnections: number | null;
|
|
@@ -924,11 +924,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
924
924
|
companyLinkedinUrl: string | null;
|
|
925
925
|
seniorityLevel: string | null;
|
|
926
926
|
startDate: string | number | null;
|
|
927
|
-
companyIndustries: string[] | null;
|
|
928
927
|
companyDomainUrl: string | null;
|
|
929
928
|
functionCategory: string | null;
|
|
930
929
|
yearsAtCompany: number | null;
|
|
931
930
|
companyHeadcount: number | null;
|
|
931
|
+
companyIndustries: string[] | null;
|
|
932
932
|
}[] | null;
|
|
933
933
|
pastEmployers: {
|
|
934
934
|
title: string | null;
|
|
@@ -963,10 +963,10 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
963
963
|
languages: string[] | null;
|
|
964
964
|
emails: string[] | null;
|
|
965
965
|
websites: string[] | null;
|
|
966
|
-
recentlyChangedJobs: boolean | null;
|
|
967
966
|
profilePictureUrl: string | null;
|
|
968
967
|
twitterHandle: string | null;
|
|
969
968
|
yearsOfExperience: number | null;
|
|
969
|
+
recentlyChangedJobs: boolean | null;
|
|
970
970
|
locationCity: string | null;
|
|
971
971
|
locationCountry: string | null;
|
|
972
972
|
numConnections: number | null;
|
|
@@ -976,11 +976,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
976
976
|
companyLinkedinUrl: string | null;
|
|
977
977
|
seniorityLevel: string | null;
|
|
978
978
|
startDate: string | number | null;
|
|
979
|
-
companyIndustries: string[] | null;
|
|
980
979
|
companyDomainUrl: string | null;
|
|
981
980
|
functionCategory: string | null;
|
|
982
981
|
yearsAtCompany: number | null;
|
|
983
982
|
companyHeadcount: number | null;
|
|
983
|
+
companyIndustries: string[] | null;
|
|
984
984
|
}[] | null;
|
|
985
985
|
pastEmployers: {
|
|
986
986
|
title: string | null;
|
|
@@ -1023,10 +1023,10 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1023
1023
|
languages: string[] | null;
|
|
1024
1024
|
emails: string[] | null;
|
|
1025
1025
|
websites: string[] | null;
|
|
1026
|
-
recentlyChangedJobs: boolean | null;
|
|
1027
1026
|
profilePictureUrl: string | null;
|
|
1028
1027
|
twitterHandle: string | null;
|
|
1029
1028
|
yearsOfExperience: number | null;
|
|
1029
|
+
recentlyChangedJobs: boolean | null;
|
|
1030
1030
|
locationCity: string | null;
|
|
1031
1031
|
locationCountry: string | null;
|
|
1032
1032
|
numConnections: number | null;
|
|
@@ -1036,11 +1036,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1036
1036
|
companyLinkedinUrl: string | null;
|
|
1037
1037
|
seniorityLevel: string | null;
|
|
1038
1038
|
startDate: string | number | null;
|
|
1039
|
-
companyIndustries: string[] | null;
|
|
1040
1039
|
companyDomainUrl: string | null;
|
|
1041
1040
|
functionCategory: string | null;
|
|
1042
1041
|
yearsAtCompany: number | null;
|
|
1043
1042
|
companyHeadcount: number | null;
|
|
1043
|
+
companyIndustries: string[] | null;
|
|
1044
1044
|
}[] | null;
|
|
1045
1045
|
pastEmployers: {
|
|
1046
1046
|
title: string | null;
|
|
@@ -1081,10 +1081,10 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1081
1081
|
languages: string[] | null;
|
|
1082
1082
|
emails: string[] | null;
|
|
1083
1083
|
websites: string[] | null;
|
|
1084
|
-
recentlyChangedJobs: boolean | null;
|
|
1085
1084
|
profilePictureUrl: string | null;
|
|
1086
1085
|
twitterHandle: string | null;
|
|
1087
1086
|
yearsOfExperience: number | null;
|
|
1087
|
+
recentlyChangedJobs: boolean | null;
|
|
1088
1088
|
locationCity: string | null;
|
|
1089
1089
|
locationCountry: string | null;
|
|
1090
1090
|
numConnections: number | null;
|
|
@@ -1094,11 +1094,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1094
1094
|
companyLinkedinUrl: string | null;
|
|
1095
1095
|
seniorityLevel: string | null;
|
|
1096
1096
|
startDate: string | number | null;
|
|
1097
|
-
companyIndustries: string[] | null;
|
|
1098
1097
|
companyDomainUrl: string | null;
|
|
1099
1098
|
functionCategory: string | null;
|
|
1100
1099
|
yearsAtCompany: number | null;
|
|
1101
1100
|
companyHeadcount: number | null;
|
|
1101
|
+
companyIndustries: string[] | null;
|
|
1102
1102
|
}[] | null;
|
|
1103
1103
|
pastEmployers: {
|
|
1104
1104
|
title: string | null;
|
|
@@ -22,11 +22,11 @@ declare const RedditPostSchema: z.ZodObject<{
|
|
|
22
22
|
url: string;
|
|
23
23
|
author: string;
|
|
24
24
|
score: number;
|
|
25
|
-
subreddit: string;
|
|
26
25
|
numComments: number;
|
|
27
26
|
createdUtc: number;
|
|
28
27
|
postUrl: string;
|
|
29
28
|
selftext: string;
|
|
29
|
+
subreddit: string;
|
|
30
30
|
isSelf: boolean;
|
|
31
31
|
thumbnail?: string | undefined;
|
|
32
32
|
domain?: string | undefined;
|
|
@@ -37,11 +37,11 @@ declare const RedditPostSchema: z.ZodObject<{
|
|
|
37
37
|
url: string;
|
|
38
38
|
author: string;
|
|
39
39
|
score: number;
|
|
40
|
-
subreddit: string;
|
|
41
40
|
numComments: number;
|
|
42
41
|
createdUtc: number;
|
|
43
42
|
postUrl: string;
|
|
44
43
|
selftext: string;
|
|
44
|
+
subreddit: string;
|
|
45
45
|
isSelf: boolean;
|
|
46
46
|
thumbnail?: string | undefined;
|
|
47
47
|
domain?: string | undefined;
|
|
@@ -97,11 +97,11 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
97
97
|
url: string;
|
|
98
98
|
author: string;
|
|
99
99
|
score: number;
|
|
100
|
-
subreddit: string;
|
|
101
100
|
numComments: number;
|
|
102
101
|
createdUtc: number;
|
|
103
102
|
postUrl: string;
|
|
104
103
|
selftext: string;
|
|
104
|
+
subreddit: string;
|
|
105
105
|
isSelf: boolean;
|
|
106
106
|
thumbnail?: string | undefined;
|
|
107
107
|
domain?: string | undefined;
|
|
@@ -112,11 +112,11 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
112
112
|
url: string;
|
|
113
113
|
author: string;
|
|
114
114
|
score: number;
|
|
115
|
-
subreddit: string;
|
|
116
115
|
numComments: number;
|
|
117
116
|
createdUtc: number;
|
|
118
117
|
postUrl: string;
|
|
119
118
|
selftext: string;
|
|
119
|
+
subreddit: string;
|
|
120
120
|
isSelf: boolean;
|
|
121
121
|
thumbnail?: string | undefined;
|
|
122
122
|
domain?: string | undefined;
|
|
@@ -171,11 +171,11 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
171
171
|
url: string;
|
|
172
172
|
author: string;
|
|
173
173
|
score: number;
|
|
174
|
-
subreddit: string;
|
|
175
174
|
numComments: number;
|
|
176
175
|
createdUtc: number;
|
|
177
176
|
postUrl: string;
|
|
178
177
|
selftext: string;
|
|
178
|
+
subreddit: string;
|
|
179
179
|
isSelf: boolean;
|
|
180
180
|
thumbnail?: string | undefined;
|
|
181
181
|
domain?: string | undefined;
|
|
@@ -200,11 +200,11 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
200
200
|
url: string;
|
|
201
201
|
author: string;
|
|
202
202
|
score: number;
|
|
203
|
-
subreddit: string;
|
|
204
203
|
numComments: number;
|
|
205
204
|
createdUtc: number;
|
|
206
205
|
postUrl: string;
|
|
207
206
|
selftext: string;
|
|
207
|
+
subreddit: string;
|
|
208
208
|
isSelf: boolean;
|
|
209
209
|
thumbnail?: string | undefined;
|
|
210
210
|
domain?: string | undefined;
|
|
@@ -267,11 +267,11 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
267
267
|
url: string;
|
|
268
268
|
author: string;
|
|
269
269
|
score: number;
|
|
270
|
-
subreddit: string;
|
|
271
270
|
numComments: number;
|
|
272
271
|
createdUtc: number;
|
|
273
272
|
postUrl: string;
|
|
274
273
|
selftext: string;
|
|
274
|
+
subreddit: string;
|
|
275
275
|
isSelf: boolean;
|
|
276
276
|
thumbnail?: string | undefined;
|
|
277
277
|
domain?: string | undefined;
|
|
@@ -282,11 +282,11 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
282
282
|
url: string;
|
|
283
283
|
author: string;
|
|
284
284
|
score: number;
|
|
285
|
-
subreddit: string;
|
|
286
285
|
numComments: number;
|
|
287
286
|
createdUtc: number;
|
|
288
287
|
postUrl: string;
|
|
289
288
|
selftext: string;
|
|
289
|
+
subreddit: string;
|
|
290
290
|
isSelf: boolean;
|
|
291
291
|
thumbnail?: string | undefined;
|
|
292
292
|
domain?: string | undefined;
|
|
@@ -341,11 +341,11 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
341
341
|
url: string;
|
|
342
342
|
author: string;
|
|
343
343
|
score: number;
|
|
344
|
-
subreddit: string;
|
|
345
344
|
numComments: number;
|
|
346
345
|
createdUtc: number;
|
|
347
346
|
postUrl: string;
|
|
348
347
|
selftext: string;
|
|
348
|
+
subreddit: string;
|
|
349
349
|
isSelf: boolean;
|
|
350
350
|
thumbnail?: string | undefined;
|
|
351
351
|
domain?: string | undefined;
|
|
@@ -370,11 +370,11 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
370
370
|
url: string;
|
|
371
371
|
author: string;
|
|
372
372
|
score: number;
|
|
373
|
-
subreddit: string;
|
|
374
373
|
numComments: number;
|
|
375
374
|
createdUtc: number;
|
|
376
375
|
postUrl: string;
|
|
377
376
|
selftext: string;
|
|
377
|
+
subreddit: string;
|
|
378
378
|
isSelf: boolean;
|
|
379
379
|
thumbnail?: string | undefined;
|
|
380
380
|
domain?: string | undefined;
|
|
@@ -69,9 +69,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
69
69
|
maxPagesReached?: boolean | undefined;
|
|
70
70
|
}>>;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
|
+
url: string;
|
|
72
73
|
error: string;
|
|
73
74
|
success: boolean;
|
|
74
|
-
url: string;
|
|
75
75
|
pages: {
|
|
76
76
|
content: string;
|
|
77
77
|
url: string;
|
|
@@ -86,9 +86,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
86
86
|
maxPagesReached?: boolean | undefined;
|
|
87
87
|
} | undefined;
|
|
88
88
|
}, {
|
|
89
|
+
url: string;
|
|
89
90
|
error: string;
|
|
90
91
|
success: boolean;
|
|
91
|
-
url: string;
|
|
92
92
|
pages: {
|
|
93
93
|
content: string;
|
|
94
94
|
url: string;
|
|
@@ -175,9 +175,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
175
175
|
maxPagesReached?: boolean | undefined;
|
|
176
176
|
}>>;
|
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
url: string;
|
|
178
179
|
error: string;
|
|
179
180
|
success: boolean;
|
|
180
|
-
url: string;
|
|
181
181
|
pages: {
|
|
182
182
|
content: string;
|
|
183
183
|
url: string;
|
|
@@ -192,9 +192,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
192
192
|
maxPagesReached?: boolean | undefined;
|
|
193
193
|
} | undefined;
|
|
194
194
|
}, {
|
|
195
|
+
url: string;
|
|
195
196
|
error: string;
|
|
196
197
|
success: boolean;
|
|
197
|
-
url: string;
|
|
198
198
|
pages: {
|
|
199
199
|
content: string;
|
|
200
200
|
url: string;
|
|
@@ -40,9 +40,9 @@ declare const WebExtractToolResultSchema: z.ZodObject<{
|
|
|
40
40
|
pageTitle?: string | undefined;
|
|
41
41
|
}>>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
+
url: string;
|
|
43
44
|
error: string;
|
|
44
45
|
success: boolean;
|
|
45
|
-
url: string;
|
|
46
46
|
metadata?: {
|
|
47
47
|
statusCode?: number | undefined;
|
|
48
48
|
extractionTime?: number | undefined;
|
|
@@ -50,9 +50,9 @@ declare const WebExtractToolResultSchema: z.ZodObject<{
|
|
|
50
50
|
} | undefined;
|
|
51
51
|
extractedData?: any;
|
|
52
52
|
}, {
|
|
53
|
+
url: string;
|
|
53
54
|
error: string;
|
|
54
55
|
success: boolean;
|
|
55
|
-
url: string;
|
|
56
56
|
metadata?: {
|
|
57
57
|
statusCode?: number | undefined;
|
|
58
58
|
extractionTime?: number | undefined;
|
|
@@ -103,9 +103,9 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
103
103
|
pageTitle?: string | undefined;
|
|
104
104
|
}>>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
+
url: string;
|
|
106
107
|
error: string;
|
|
107
108
|
success: boolean;
|
|
108
|
-
url: string;
|
|
109
109
|
metadata?: {
|
|
110
110
|
statusCode?: number | undefined;
|
|
111
111
|
extractionTime?: number | undefined;
|
|
@@ -113,9 +113,9 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
113
113
|
} | undefined;
|
|
114
114
|
extractedData?: any;
|
|
115
115
|
}, {
|
|
116
|
+
url: string;
|
|
116
117
|
error: string;
|
|
117
118
|
success: boolean;
|
|
118
|
-
url: string;
|
|
119
119
|
metadata?: {
|
|
120
120
|
statusCode?: number | undefined;
|
|
121
121
|
extractionTime?: number | undefined;
|
|
@@ -39,10 +39,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
format: string;
|
|
41
41
|
title: string;
|
|
42
|
-
error: string;
|
|
43
|
-
success: boolean;
|
|
44
42
|
content: string;
|
|
45
43
|
url: string;
|
|
44
|
+
error: string;
|
|
45
|
+
success: boolean;
|
|
46
46
|
creditsUsed: number;
|
|
47
47
|
metadata?: {
|
|
48
48
|
statusCode?: number | undefined;
|
|
@@ -51,10 +51,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
51
51
|
}, {
|
|
52
52
|
format: string;
|
|
53
53
|
title: string;
|
|
54
|
-
error: string;
|
|
55
|
-
success: boolean;
|
|
56
54
|
content: string;
|
|
57
55
|
url: string;
|
|
56
|
+
error: string;
|
|
57
|
+
success: boolean;
|
|
58
58
|
creditsUsed: number;
|
|
59
59
|
metadata?: {
|
|
60
60
|
statusCode?: number | undefined;
|
|
@@ -103,10 +103,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
104
|
format: string;
|
|
105
105
|
title: string;
|
|
106
|
-
error: string;
|
|
107
|
-
success: boolean;
|
|
108
106
|
content: string;
|
|
109
107
|
url: string;
|
|
108
|
+
error: string;
|
|
109
|
+
success: boolean;
|
|
110
110
|
creditsUsed: number;
|
|
111
111
|
metadata?: {
|
|
112
112
|
statusCode?: number | undefined;
|
|
@@ -115,10 +115,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
115
115
|
}, {
|
|
116
116
|
format: string;
|
|
117
117
|
title: string;
|
|
118
|
-
error: string;
|
|
119
|
-
success: boolean;
|
|
120
118
|
content: string;
|
|
121
119
|
url: string;
|
|
120
|
+
error: string;
|
|
121
|
+
success: boolean;
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
metadata?: {
|
|
124
124
|
statusCode?: number | undefined;
|