@bubblelab/bubble-core 0.1.25 → 0.1.27
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 +84 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
- package/dist/bubbles/service-bubble/firecrawl.d.ts +288 -288
- package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +108 -108
- package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-drive.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +33 -33
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +601 -601
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +168 -168
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +602 -602
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +82 -82
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +132 -132
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +55 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +52057 -9
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -35,22 +35,22 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
35
35
|
title: string | null;
|
|
36
36
|
companyName: string | null;
|
|
37
37
|
companyLinkedinUrl: string | null;
|
|
38
|
-
companyIndustries: string[] | null;
|
|
39
38
|
seniorityLevel: string | null;
|
|
40
39
|
functionCategory: string | null;
|
|
41
40
|
startDate: string | number | null;
|
|
42
41
|
yearsAtCompany: number | null;
|
|
43
42
|
companyHeadcount: number | null;
|
|
43
|
+
companyIndustries: string[] | null;
|
|
44
44
|
}, {
|
|
45
45
|
title: string | null;
|
|
46
46
|
companyName: string | null;
|
|
47
47
|
companyLinkedinUrl: string | null;
|
|
48
|
-
companyIndustries: string[] | null;
|
|
49
48
|
seniorityLevel: string | null;
|
|
50
49
|
functionCategory: string | null;
|
|
51
50
|
startDate: string | number | null;
|
|
52
51
|
yearsAtCompany: number | null;
|
|
53
52
|
companyHeadcount: number | null;
|
|
53
|
+
companyIndustries: string[] | null;
|
|
54
54
|
}>, "many">>;
|
|
55
55
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
56
56
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -82,26 +82,26 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
82
82
|
fieldOfStudy: string | null;
|
|
83
83
|
}>, "many">>;
|
|
84
84
|
}, "strip", z.ZodTypeAny, {
|
|
85
|
+
title: string | null;
|
|
85
86
|
name: string | null;
|
|
86
|
-
|
|
87
|
+
summary: string | null;
|
|
87
88
|
location: string | null;
|
|
88
|
-
|
|
89
|
+
headline: string | null;
|
|
90
|
+
seniorityLevel: string | null;
|
|
89
91
|
emails: string[] | null;
|
|
90
|
-
skills: string[] | null;
|
|
91
92
|
languages: string[] | null;
|
|
92
|
-
|
|
93
|
+
skills: string[] | null;
|
|
93
94
|
education: {
|
|
94
95
|
instituteName: string | null;
|
|
95
96
|
degreeName: string | null;
|
|
96
97
|
fieldOfStudy: string | null;
|
|
97
98
|
}[] | null;
|
|
98
99
|
websites: string[] | null;
|
|
99
|
-
recentlyChangedJobs: boolean | null;
|
|
100
100
|
linkedinUrl: string | null;
|
|
101
101
|
profilePictureUrl: string | null;
|
|
102
102
|
twitterHandle: string | null;
|
|
103
|
-
seniorityLevel: string | null;
|
|
104
103
|
yearsOfExperience: number | null;
|
|
104
|
+
recentlyChangedJobs: boolean | null;
|
|
105
105
|
locationCity: string | null;
|
|
106
106
|
locationCountry: string | null;
|
|
107
107
|
numConnections: number | null;
|
|
@@ -109,12 +109,12 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
109
109
|
title: string | null;
|
|
110
110
|
companyName: string | null;
|
|
111
111
|
companyLinkedinUrl: string | null;
|
|
112
|
-
companyIndustries: string[] | null;
|
|
113
112
|
seniorityLevel: string | null;
|
|
114
113
|
functionCategory: string | null;
|
|
115
114
|
startDate: string | number | null;
|
|
116
115
|
yearsAtCompany: number | null;
|
|
117
116
|
companyHeadcount: number | null;
|
|
117
|
+
companyIndustries: string[] | null;
|
|
118
118
|
}[] | null;
|
|
119
119
|
pastEmployers: {
|
|
120
120
|
title: string | null;
|
|
@@ -123,26 +123,26 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
123
123
|
endDate: string | number | null;
|
|
124
124
|
}[] | null;
|
|
125
125
|
}, {
|
|
126
|
+
title: string | null;
|
|
126
127
|
name: string | null;
|
|
127
|
-
|
|
128
|
+
summary: string | null;
|
|
128
129
|
location: string | null;
|
|
129
|
-
|
|
130
|
+
headline: string | null;
|
|
131
|
+
seniorityLevel: string | null;
|
|
130
132
|
emails: string[] | null;
|
|
131
|
-
skills: string[] | null;
|
|
132
133
|
languages: string[] | null;
|
|
133
|
-
|
|
134
|
+
skills: string[] | null;
|
|
134
135
|
education: {
|
|
135
136
|
instituteName: string | null;
|
|
136
137
|
degreeName: string | null;
|
|
137
138
|
fieldOfStudy: string | null;
|
|
138
139
|
}[] | null;
|
|
139
140
|
websites: string[] | null;
|
|
140
|
-
recentlyChangedJobs: boolean | null;
|
|
141
141
|
linkedinUrl: string | null;
|
|
142
142
|
profilePictureUrl: string | null;
|
|
143
143
|
twitterHandle: string | null;
|
|
144
|
-
seniorityLevel: string | null;
|
|
145
144
|
yearsOfExperience: number | null;
|
|
145
|
+
recentlyChangedJobs: boolean | null;
|
|
146
146
|
locationCity: string | null;
|
|
147
147
|
locationCountry: string | null;
|
|
148
148
|
numConnections: number | null;
|
|
@@ -150,12 +150,12 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
150
150
|
title: string | null;
|
|
151
151
|
companyName: string | null;
|
|
152
152
|
companyLinkedinUrl: string | null;
|
|
153
|
-
companyIndustries: string[] | null;
|
|
154
153
|
seniorityLevel: string | null;
|
|
155
154
|
functionCategory: string | null;
|
|
156
155
|
startDate: string | number | null;
|
|
157
156
|
yearsAtCompany: number | null;
|
|
158
157
|
companyHeadcount: number | null;
|
|
158
|
+
companyIndustries: string[] | null;
|
|
159
159
|
}[] | null;
|
|
160
160
|
pastEmployers: {
|
|
161
161
|
title: string | null;
|
|
@@ -202,15 +202,17 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
202
202
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
203
203
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
-
location?: string | undefined;
|
|
206
|
-
skills?: string[] | undefined;
|
|
207
|
-
languages?: string[] | undefined;
|
|
208
|
-
city?: string | undefined;
|
|
209
|
-
country?: string | undefined;
|
|
210
205
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
211
206
|
limit?: number | undefined;
|
|
207
|
+
location?: string | undefined;
|
|
212
208
|
companyName?: string | undefined;
|
|
213
209
|
companyLinkedinUrl?: string | undefined;
|
|
210
|
+
city?: string | undefined;
|
|
211
|
+
country?: string | undefined;
|
|
212
|
+
languages?: string[] | undefined;
|
|
213
|
+
skills?: string[] | undefined;
|
|
214
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
215
|
+
companyIndustries?: string[] | undefined;
|
|
214
216
|
jobTitle?: string | undefined;
|
|
215
217
|
jobTitles?: string[] | undefined;
|
|
216
218
|
locationRadius?: {
|
|
@@ -221,27 +223,27 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
221
223
|
maxYearsExperience?: number | undefined;
|
|
222
224
|
seniorityLevels?: string[] | undefined;
|
|
223
225
|
functionCategories?: string[] | undefined;
|
|
224
|
-
companyIndustries?: string[] | undefined;
|
|
225
226
|
minCompanyHeadcount?: number | undefined;
|
|
226
227
|
maxCompanyHeadcount?: number | undefined;
|
|
227
228
|
minYearsAtCompany?: number | undefined;
|
|
228
229
|
pastCompanyName?: string | undefined;
|
|
229
230
|
pastJobTitle?: string | undefined;
|
|
230
231
|
schoolName?: string | undefined;
|
|
231
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
232
232
|
minConnections?: number | undefined;
|
|
233
233
|
excludeCompanies?: string[] | undefined;
|
|
234
234
|
excludeProfiles?: string[] | undefined;
|
|
235
235
|
}, {
|
|
236
|
-
location?: string | undefined;
|
|
237
|
-
skills?: string[] | undefined;
|
|
238
|
-
languages?: string[] | undefined;
|
|
239
|
-
city?: string | undefined;
|
|
240
|
-
country?: string | undefined;
|
|
241
236
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
242
237
|
limit?: number | undefined;
|
|
238
|
+
location?: string | undefined;
|
|
243
239
|
companyName?: string | undefined;
|
|
244
240
|
companyLinkedinUrl?: string | undefined;
|
|
241
|
+
city?: string | undefined;
|
|
242
|
+
country?: string | undefined;
|
|
243
|
+
languages?: string[] | undefined;
|
|
244
|
+
skills?: string[] | undefined;
|
|
245
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
246
|
+
companyIndustries?: string[] | undefined;
|
|
245
247
|
jobTitle?: string | undefined;
|
|
246
248
|
jobTitles?: string[] | undefined;
|
|
247
249
|
locationRadius?: {
|
|
@@ -252,14 +254,12 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
252
254
|
maxYearsExperience?: number | undefined;
|
|
253
255
|
seniorityLevels?: string[] | undefined;
|
|
254
256
|
functionCategories?: string[] | undefined;
|
|
255
|
-
companyIndustries?: string[] | undefined;
|
|
256
257
|
minCompanyHeadcount?: number | undefined;
|
|
257
258
|
maxCompanyHeadcount?: number | undefined;
|
|
258
259
|
minYearsAtCompany?: number | undefined;
|
|
259
260
|
pastCompanyName?: string | undefined;
|
|
260
261
|
pastJobTitle?: string | undefined;
|
|
261
262
|
schoolName?: string | undefined;
|
|
262
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
263
263
|
minConnections?: number | undefined;
|
|
264
264
|
excludeCompanies?: string[] | undefined;
|
|
265
265
|
excludeProfiles?: string[] | undefined;
|
|
@@ -298,22 +298,22 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
298
298
|
title: string | null;
|
|
299
299
|
companyName: string | null;
|
|
300
300
|
companyLinkedinUrl: string | null;
|
|
301
|
-
companyIndustries: string[] | null;
|
|
302
301
|
seniorityLevel: string | null;
|
|
303
302
|
functionCategory: string | null;
|
|
304
303
|
startDate: string | number | null;
|
|
305
304
|
yearsAtCompany: number | null;
|
|
306
305
|
companyHeadcount: number | null;
|
|
306
|
+
companyIndustries: string[] | null;
|
|
307
307
|
}, {
|
|
308
308
|
title: string | null;
|
|
309
309
|
companyName: string | null;
|
|
310
310
|
companyLinkedinUrl: string | null;
|
|
311
|
-
companyIndustries: string[] | null;
|
|
312
311
|
seniorityLevel: string | null;
|
|
313
312
|
functionCategory: string | null;
|
|
314
313
|
startDate: string | number | null;
|
|
315
314
|
yearsAtCompany: number | null;
|
|
316
315
|
companyHeadcount: number | null;
|
|
316
|
+
companyIndustries: string[] | null;
|
|
317
317
|
}>, "many">>;
|
|
318
318
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
319
319
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -345,26 +345,26 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
345
345
|
fieldOfStudy: string | null;
|
|
346
346
|
}>, "many">>;
|
|
347
347
|
}, "strip", z.ZodTypeAny, {
|
|
348
|
+
title: string | null;
|
|
348
349
|
name: string | null;
|
|
349
|
-
|
|
350
|
+
summary: string | null;
|
|
350
351
|
location: string | null;
|
|
351
|
-
|
|
352
|
+
headline: string | null;
|
|
353
|
+
seniorityLevel: string | null;
|
|
352
354
|
emails: string[] | null;
|
|
353
|
-
skills: string[] | null;
|
|
354
355
|
languages: string[] | null;
|
|
355
|
-
|
|
356
|
+
skills: string[] | null;
|
|
356
357
|
education: {
|
|
357
358
|
instituteName: string | null;
|
|
358
359
|
degreeName: string | null;
|
|
359
360
|
fieldOfStudy: string | null;
|
|
360
361
|
}[] | null;
|
|
361
362
|
websites: string[] | null;
|
|
362
|
-
recentlyChangedJobs: boolean | null;
|
|
363
363
|
linkedinUrl: string | null;
|
|
364
364
|
profilePictureUrl: string | null;
|
|
365
365
|
twitterHandle: string | null;
|
|
366
|
-
seniorityLevel: string | null;
|
|
367
366
|
yearsOfExperience: number | null;
|
|
367
|
+
recentlyChangedJobs: boolean | null;
|
|
368
368
|
locationCity: string | null;
|
|
369
369
|
locationCountry: string | null;
|
|
370
370
|
numConnections: number | null;
|
|
@@ -372,12 +372,12 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
372
372
|
title: string | null;
|
|
373
373
|
companyName: string | null;
|
|
374
374
|
companyLinkedinUrl: string | null;
|
|
375
|
-
companyIndustries: string[] | null;
|
|
376
375
|
seniorityLevel: string | null;
|
|
377
376
|
functionCategory: string | null;
|
|
378
377
|
startDate: string | number | null;
|
|
379
378
|
yearsAtCompany: number | null;
|
|
380
379
|
companyHeadcount: number | null;
|
|
380
|
+
companyIndustries: string[] | null;
|
|
381
381
|
}[] | null;
|
|
382
382
|
pastEmployers: {
|
|
383
383
|
title: string | null;
|
|
@@ -386,26 +386,26 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
386
386
|
endDate: string | number | null;
|
|
387
387
|
}[] | null;
|
|
388
388
|
}, {
|
|
389
|
+
title: string | null;
|
|
389
390
|
name: string | null;
|
|
390
|
-
|
|
391
|
+
summary: string | null;
|
|
391
392
|
location: string | null;
|
|
392
|
-
|
|
393
|
+
headline: string | null;
|
|
394
|
+
seniorityLevel: string | null;
|
|
393
395
|
emails: string[] | null;
|
|
394
|
-
skills: string[] | null;
|
|
395
396
|
languages: string[] | null;
|
|
396
|
-
|
|
397
|
+
skills: string[] | null;
|
|
397
398
|
education: {
|
|
398
399
|
instituteName: string | null;
|
|
399
400
|
degreeName: string | null;
|
|
400
401
|
fieldOfStudy: string | null;
|
|
401
402
|
}[] | null;
|
|
402
403
|
websites: string[] | null;
|
|
403
|
-
recentlyChangedJobs: boolean | null;
|
|
404
404
|
linkedinUrl: string | null;
|
|
405
405
|
profilePictureUrl: string | null;
|
|
406
406
|
twitterHandle: string | null;
|
|
407
|
-
seniorityLevel: string | null;
|
|
408
407
|
yearsOfExperience: number | null;
|
|
408
|
+
recentlyChangedJobs: boolean | null;
|
|
409
409
|
locationCity: string | null;
|
|
410
410
|
locationCountry: string | null;
|
|
411
411
|
numConnections: number | null;
|
|
@@ -413,12 +413,12 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
413
413
|
title: string | null;
|
|
414
414
|
companyName: string | null;
|
|
415
415
|
companyLinkedinUrl: string | null;
|
|
416
|
-
companyIndustries: string[] | null;
|
|
417
416
|
seniorityLevel: string | null;
|
|
418
417
|
functionCategory: string | null;
|
|
419
418
|
startDate: string | number | null;
|
|
420
419
|
yearsAtCompany: number | null;
|
|
421
420
|
companyHeadcount: number | null;
|
|
421
|
+
companyIndustries: string[] | null;
|
|
422
422
|
}[] | null;
|
|
423
423
|
pastEmployers: {
|
|
424
424
|
title: string | null;
|
|
@@ -434,26 +434,26 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
434
434
|
success: boolean;
|
|
435
435
|
error: string;
|
|
436
436
|
people: {
|
|
437
|
+
title: string | null;
|
|
437
438
|
name: string | null;
|
|
438
|
-
|
|
439
|
+
summary: string | null;
|
|
439
440
|
location: string | null;
|
|
440
|
-
|
|
441
|
+
headline: string | null;
|
|
442
|
+
seniorityLevel: string | null;
|
|
441
443
|
emails: string[] | null;
|
|
442
|
-
skills: string[] | null;
|
|
443
444
|
languages: string[] | null;
|
|
444
|
-
|
|
445
|
+
skills: string[] | null;
|
|
445
446
|
education: {
|
|
446
447
|
instituteName: string | null;
|
|
447
448
|
degreeName: string | null;
|
|
448
449
|
fieldOfStudy: string | null;
|
|
449
450
|
}[] | null;
|
|
450
451
|
websites: string[] | null;
|
|
451
|
-
recentlyChangedJobs: boolean | null;
|
|
452
452
|
linkedinUrl: string | null;
|
|
453
453
|
profilePictureUrl: string | null;
|
|
454
454
|
twitterHandle: string | null;
|
|
455
|
-
seniorityLevel: string | null;
|
|
456
455
|
yearsOfExperience: number | null;
|
|
456
|
+
recentlyChangedJobs: boolean | null;
|
|
457
457
|
locationCity: string | null;
|
|
458
458
|
locationCountry: string | null;
|
|
459
459
|
numConnections: number | null;
|
|
@@ -461,12 +461,12 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
461
461
|
title: string | null;
|
|
462
462
|
companyName: string | null;
|
|
463
463
|
companyLinkedinUrl: string | null;
|
|
464
|
-
companyIndustries: string[] | null;
|
|
465
464
|
seniorityLevel: string | null;
|
|
466
465
|
functionCategory: string | null;
|
|
467
466
|
startDate: string | number | null;
|
|
468
467
|
yearsAtCompany: number | null;
|
|
469
468
|
companyHeadcount: number | null;
|
|
469
|
+
companyIndustries: string[] | null;
|
|
470
470
|
}[] | null;
|
|
471
471
|
pastEmployers: {
|
|
472
472
|
title: string | null;
|
|
@@ -480,26 +480,26 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
480
480
|
success: boolean;
|
|
481
481
|
error: string;
|
|
482
482
|
people: {
|
|
483
|
+
title: string | null;
|
|
483
484
|
name: string | null;
|
|
484
|
-
|
|
485
|
+
summary: string | null;
|
|
485
486
|
location: string | null;
|
|
486
|
-
|
|
487
|
+
headline: string | null;
|
|
488
|
+
seniorityLevel: string | null;
|
|
487
489
|
emails: string[] | null;
|
|
488
|
-
skills: string[] | null;
|
|
489
490
|
languages: string[] | null;
|
|
490
|
-
|
|
491
|
+
skills: string[] | null;
|
|
491
492
|
education: {
|
|
492
493
|
instituteName: string | null;
|
|
493
494
|
degreeName: string | null;
|
|
494
495
|
fieldOfStudy: string | null;
|
|
495
496
|
}[] | null;
|
|
496
497
|
websites: string[] | null;
|
|
497
|
-
recentlyChangedJobs: boolean | null;
|
|
498
498
|
linkedinUrl: string | null;
|
|
499
499
|
profilePictureUrl: string | null;
|
|
500
500
|
twitterHandle: string | null;
|
|
501
|
-
seniorityLevel: string | null;
|
|
502
501
|
yearsOfExperience: number | null;
|
|
502
|
+
recentlyChangedJobs: boolean | null;
|
|
503
503
|
locationCity: string | null;
|
|
504
504
|
locationCountry: string | null;
|
|
505
505
|
numConnections: number | null;
|
|
@@ -507,12 +507,12 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
507
507
|
title: string | null;
|
|
508
508
|
companyName: string | null;
|
|
509
509
|
companyLinkedinUrl: string | null;
|
|
510
|
-
companyIndustries: string[] | null;
|
|
511
510
|
seniorityLevel: string | null;
|
|
512
511
|
functionCategory: string | null;
|
|
513
512
|
startDate: string | number | null;
|
|
514
513
|
yearsAtCompany: number | null;
|
|
515
514
|
companyHeadcount: number | null;
|
|
515
|
+
companyIndustries: string[] | null;
|
|
516
516
|
}[] | null;
|
|
517
517
|
pastEmployers: {
|
|
518
518
|
title: string | null;
|
|
@@ -590,15 +590,17 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
590
590
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
591
591
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
592
592
|
}, "strip", z.ZodTypeAny, {
|
|
593
|
-
location?: string | undefined;
|
|
594
|
-
skills?: string[] | undefined;
|
|
595
|
-
languages?: string[] | undefined;
|
|
596
|
-
city?: string | undefined;
|
|
597
|
-
country?: string | undefined;
|
|
598
593
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
599
594
|
limit?: number | undefined;
|
|
595
|
+
location?: string | undefined;
|
|
600
596
|
companyName?: string | undefined;
|
|
601
597
|
companyLinkedinUrl?: string | undefined;
|
|
598
|
+
city?: string | undefined;
|
|
599
|
+
country?: string | undefined;
|
|
600
|
+
languages?: string[] | undefined;
|
|
601
|
+
skills?: string[] | undefined;
|
|
602
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
603
|
+
companyIndustries?: string[] | undefined;
|
|
602
604
|
jobTitle?: string | undefined;
|
|
603
605
|
jobTitles?: string[] | undefined;
|
|
604
606
|
locationRadius?: {
|
|
@@ -609,27 +611,27 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
609
611
|
maxYearsExperience?: number | undefined;
|
|
610
612
|
seniorityLevels?: string[] | undefined;
|
|
611
613
|
functionCategories?: string[] | undefined;
|
|
612
|
-
companyIndustries?: string[] | undefined;
|
|
613
614
|
minCompanyHeadcount?: number | undefined;
|
|
614
615
|
maxCompanyHeadcount?: number | undefined;
|
|
615
616
|
minYearsAtCompany?: number | undefined;
|
|
616
617
|
pastCompanyName?: string | undefined;
|
|
617
618
|
pastJobTitle?: string | undefined;
|
|
618
619
|
schoolName?: string | undefined;
|
|
619
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
620
620
|
minConnections?: number | undefined;
|
|
621
621
|
excludeCompanies?: string[] | undefined;
|
|
622
622
|
excludeProfiles?: string[] | undefined;
|
|
623
623
|
}, {
|
|
624
|
-
location?: string | undefined;
|
|
625
|
-
skills?: string[] | undefined;
|
|
626
|
-
languages?: string[] | undefined;
|
|
627
|
-
city?: string | undefined;
|
|
628
|
-
country?: string | undefined;
|
|
629
624
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
630
625
|
limit?: number | undefined;
|
|
626
|
+
location?: string | undefined;
|
|
631
627
|
companyName?: string | undefined;
|
|
632
628
|
companyLinkedinUrl?: string | undefined;
|
|
629
|
+
city?: string | undefined;
|
|
630
|
+
country?: string | undefined;
|
|
631
|
+
languages?: string[] | undefined;
|
|
632
|
+
skills?: string[] | undefined;
|
|
633
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
634
|
+
companyIndustries?: string[] | undefined;
|
|
633
635
|
jobTitle?: string | undefined;
|
|
634
636
|
jobTitles?: string[] | undefined;
|
|
635
637
|
locationRadius?: {
|
|
@@ -640,14 +642,12 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
640
642
|
maxYearsExperience?: number | undefined;
|
|
641
643
|
seniorityLevels?: string[] | undefined;
|
|
642
644
|
functionCategories?: string[] | undefined;
|
|
643
|
-
companyIndustries?: string[] | undefined;
|
|
644
645
|
minCompanyHeadcount?: number | undefined;
|
|
645
646
|
maxCompanyHeadcount?: number | undefined;
|
|
646
647
|
minYearsAtCompany?: number | undefined;
|
|
647
648
|
pastCompanyName?: string | undefined;
|
|
648
649
|
pastJobTitle?: string | undefined;
|
|
649
650
|
schoolName?: string | undefined;
|
|
650
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
651
651
|
minConnections?: number | undefined;
|
|
652
652
|
excludeCompanies?: string[] | undefined;
|
|
653
653
|
excludeProfiles?: string[] | undefined;
|
|
@@ -686,22 +686,22 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
686
686
|
title: string | null;
|
|
687
687
|
companyName: string | null;
|
|
688
688
|
companyLinkedinUrl: string | null;
|
|
689
|
-
companyIndustries: string[] | null;
|
|
690
689
|
seniorityLevel: string | null;
|
|
691
690
|
functionCategory: string | null;
|
|
692
691
|
startDate: string | number | null;
|
|
693
692
|
yearsAtCompany: number | null;
|
|
694
693
|
companyHeadcount: number | null;
|
|
694
|
+
companyIndustries: string[] | null;
|
|
695
695
|
}, {
|
|
696
696
|
title: string | null;
|
|
697
697
|
companyName: string | null;
|
|
698
698
|
companyLinkedinUrl: string | null;
|
|
699
|
-
companyIndustries: string[] | null;
|
|
700
699
|
seniorityLevel: string | null;
|
|
701
700
|
functionCategory: string | null;
|
|
702
701
|
startDate: string | number | null;
|
|
703
702
|
yearsAtCompany: number | null;
|
|
704
703
|
companyHeadcount: number | null;
|
|
704
|
+
companyIndustries: string[] | null;
|
|
705
705
|
}>, "many">>;
|
|
706
706
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
707
707
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -733,26 +733,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
733
733
|
fieldOfStudy: string | null;
|
|
734
734
|
}>, "many">>;
|
|
735
735
|
}, "strip", z.ZodTypeAny, {
|
|
736
|
+
title: string | null;
|
|
736
737
|
name: string | null;
|
|
737
|
-
|
|
738
|
+
summary: string | null;
|
|
738
739
|
location: string | null;
|
|
739
|
-
|
|
740
|
+
headline: string | null;
|
|
741
|
+
seniorityLevel: string | null;
|
|
740
742
|
emails: string[] | null;
|
|
741
|
-
skills: string[] | null;
|
|
742
743
|
languages: string[] | null;
|
|
743
|
-
|
|
744
|
+
skills: string[] | null;
|
|
744
745
|
education: {
|
|
745
746
|
instituteName: string | null;
|
|
746
747
|
degreeName: string | null;
|
|
747
748
|
fieldOfStudy: string | null;
|
|
748
749
|
}[] | null;
|
|
749
750
|
websites: string[] | null;
|
|
750
|
-
recentlyChangedJobs: boolean | null;
|
|
751
751
|
linkedinUrl: string | null;
|
|
752
752
|
profilePictureUrl: string | null;
|
|
753
753
|
twitterHandle: string | null;
|
|
754
|
-
seniorityLevel: string | null;
|
|
755
754
|
yearsOfExperience: number | null;
|
|
755
|
+
recentlyChangedJobs: boolean | null;
|
|
756
756
|
locationCity: string | null;
|
|
757
757
|
locationCountry: string | null;
|
|
758
758
|
numConnections: number | null;
|
|
@@ -760,12 +760,12 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
760
760
|
title: string | null;
|
|
761
761
|
companyName: string | null;
|
|
762
762
|
companyLinkedinUrl: string | null;
|
|
763
|
-
companyIndustries: string[] | null;
|
|
764
763
|
seniorityLevel: string | null;
|
|
765
764
|
functionCategory: string | null;
|
|
766
765
|
startDate: string | number | null;
|
|
767
766
|
yearsAtCompany: number | null;
|
|
768
767
|
companyHeadcount: number | null;
|
|
768
|
+
companyIndustries: string[] | null;
|
|
769
769
|
}[] | null;
|
|
770
770
|
pastEmployers: {
|
|
771
771
|
title: string | null;
|
|
@@ -774,26 +774,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
774
774
|
endDate: string | number | null;
|
|
775
775
|
}[] | null;
|
|
776
776
|
}, {
|
|
777
|
+
title: string | null;
|
|
777
778
|
name: string | null;
|
|
778
|
-
|
|
779
|
+
summary: string | null;
|
|
779
780
|
location: string | null;
|
|
780
|
-
|
|
781
|
+
headline: string | null;
|
|
782
|
+
seniorityLevel: string | null;
|
|
781
783
|
emails: string[] | null;
|
|
782
|
-
skills: string[] | null;
|
|
783
784
|
languages: string[] | null;
|
|
784
|
-
|
|
785
|
+
skills: string[] | null;
|
|
785
786
|
education: {
|
|
786
787
|
instituteName: string | null;
|
|
787
788
|
degreeName: string | null;
|
|
788
789
|
fieldOfStudy: string | null;
|
|
789
790
|
}[] | null;
|
|
790
791
|
websites: string[] | null;
|
|
791
|
-
recentlyChangedJobs: boolean | null;
|
|
792
792
|
linkedinUrl: string | null;
|
|
793
793
|
profilePictureUrl: string | null;
|
|
794
794
|
twitterHandle: string | null;
|
|
795
|
-
seniorityLevel: string | null;
|
|
796
795
|
yearsOfExperience: number | null;
|
|
796
|
+
recentlyChangedJobs: boolean | null;
|
|
797
797
|
locationCity: string | null;
|
|
798
798
|
locationCountry: string | null;
|
|
799
799
|
numConnections: number | null;
|
|
@@ -801,12 +801,12 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
801
801
|
title: string | null;
|
|
802
802
|
companyName: string | null;
|
|
803
803
|
companyLinkedinUrl: string | null;
|
|
804
|
-
companyIndustries: string[] | null;
|
|
805
804
|
seniorityLevel: string | null;
|
|
806
805
|
functionCategory: string | null;
|
|
807
806
|
startDate: string | number | null;
|
|
808
807
|
yearsAtCompany: number | null;
|
|
809
808
|
companyHeadcount: number | null;
|
|
809
|
+
companyIndustries: string[] | null;
|
|
810
810
|
}[] | null;
|
|
811
811
|
pastEmployers: {
|
|
812
812
|
title: string | null;
|
|
@@ -822,26 +822,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
822
822
|
success: boolean;
|
|
823
823
|
error: string;
|
|
824
824
|
people: {
|
|
825
|
+
title: string | null;
|
|
825
826
|
name: string | null;
|
|
826
|
-
|
|
827
|
+
summary: string | null;
|
|
827
828
|
location: string | null;
|
|
828
|
-
|
|
829
|
+
headline: string | null;
|
|
830
|
+
seniorityLevel: string | null;
|
|
829
831
|
emails: string[] | null;
|
|
830
|
-
skills: string[] | null;
|
|
831
832
|
languages: string[] | null;
|
|
832
|
-
|
|
833
|
+
skills: string[] | null;
|
|
833
834
|
education: {
|
|
834
835
|
instituteName: string | null;
|
|
835
836
|
degreeName: string | null;
|
|
836
837
|
fieldOfStudy: string | null;
|
|
837
838
|
}[] | null;
|
|
838
839
|
websites: string[] | null;
|
|
839
|
-
recentlyChangedJobs: boolean | null;
|
|
840
840
|
linkedinUrl: string | null;
|
|
841
841
|
profilePictureUrl: string | null;
|
|
842
842
|
twitterHandle: string | null;
|
|
843
|
-
seniorityLevel: string | null;
|
|
844
843
|
yearsOfExperience: number | null;
|
|
844
|
+
recentlyChangedJobs: boolean | null;
|
|
845
845
|
locationCity: string | null;
|
|
846
846
|
locationCountry: string | null;
|
|
847
847
|
numConnections: number | null;
|
|
@@ -849,12 +849,12 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
849
849
|
title: string | null;
|
|
850
850
|
companyName: string | null;
|
|
851
851
|
companyLinkedinUrl: string | null;
|
|
852
|
-
companyIndustries: string[] | null;
|
|
853
852
|
seniorityLevel: string | null;
|
|
854
853
|
functionCategory: string | null;
|
|
855
854
|
startDate: string | number | null;
|
|
856
855
|
yearsAtCompany: number | null;
|
|
857
856
|
companyHeadcount: number | null;
|
|
857
|
+
companyIndustries: string[] | null;
|
|
858
858
|
}[] | null;
|
|
859
859
|
pastEmployers: {
|
|
860
860
|
title: string | null;
|
|
@@ -868,26 +868,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
868
868
|
success: boolean;
|
|
869
869
|
error: string;
|
|
870
870
|
people: {
|
|
871
|
+
title: string | null;
|
|
871
872
|
name: string | null;
|
|
872
|
-
|
|
873
|
+
summary: string | null;
|
|
873
874
|
location: string | null;
|
|
874
|
-
|
|
875
|
+
headline: string | null;
|
|
876
|
+
seniorityLevel: string | null;
|
|
875
877
|
emails: string[] | null;
|
|
876
|
-
skills: string[] | null;
|
|
877
878
|
languages: string[] | null;
|
|
878
|
-
|
|
879
|
+
skills: string[] | null;
|
|
879
880
|
education: {
|
|
880
881
|
instituteName: string | null;
|
|
881
882
|
degreeName: string | null;
|
|
882
883
|
fieldOfStudy: string | null;
|
|
883
884
|
}[] | null;
|
|
884
885
|
websites: string[] | null;
|
|
885
|
-
recentlyChangedJobs: boolean | null;
|
|
886
886
|
linkedinUrl: string | null;
|
|
887
887
|
profilePictureUrl: string | null;
|
|
888
888
|
twitterHandle: string | null;
|
|
889
|
-
seniorityLevel: string | null;
|
|
890
889
|
yearsOfExperience: number | null;
|
|
890
|
+
recentlyChangedJobs: boolean | null;
|
|
891
891
|
locationCity: string | null;
|
|
892
892
|
locationCountry: string | null;
|
|
893
893
|
numConnections: number | null;
|
|
@@ -895,12 +895,12 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
895
895
|
title: string | null;
|
|
896
896
|
companyName: string | null;
|
|
897
897
|
companyLinkedinUrl: string | null;
|
|
898
|
-
companyIndustries: string[] | null;
|
|
899
898
|
seniorityLevel: string | null;
|
|
900
899
|
functionCategory: string | null;
|
|
901
900
|
startDate: string | number | null;
|
|
902
901
|
yearsAtCompany: number | null;
|
|
903
902
|
companyHeadcount: number | null;
|
|
903
|
+
companyIndustries: string[] | null;
|
|
904
904
|
}[] | null;
|
|
905
905
|
pastEmployers: {
|
|
906
906
|
title: string | null;
|