@bubblelab/bubble-core 0.1.25 → 0.1.26

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.
Files changed (47) hide show
  1. package/dist/bubble-bundle.d.ts +82 -66
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
  4. package/dist/bubbles/service-bubble/airtable.d.ts +116 -116
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +6 -6
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +30 -30
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
  9. package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
  10. package/dist/bubbles/service-bubble/firecrawl.d.ts +64 -64
  11. package/dist/bubbles/service-bubble/followupboss.d.ts +176 -176
  12. package/dist/bubbles/service-bubble/github.d.ts +80 -80
  13. package/dist/bubbles/service-bubble/gmail.d.ts +172 -172
  14. package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
  15. package/dist/bubbles/service-bubble/google-drive.d.ts +56 -56
  16. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +22 -22
  17. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  18. package/dist/bubbles/service-bubble/notion/notion.d.ts +874 -874
  19. package/dist/bubbles/service-bubble/resend.d.ts +16 -16
  20. package/dist/bubbles/service-bubble/slack/slack.d.ts +144 -144
  21. package/dist/bubbles/service-bubble/storage.d.ts +30 -30
  22. package/dist/bubbles/service-bubble/telegram.d.ts +208 -208
  23. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
  24. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  25. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
  26. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
  27. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +8 -8
  28. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +38 -38
  29. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  30. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +173 -173
  31. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  32. package/dist/bubbles/tool-bubble/people-search-tool.js +22 -6
  33. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  34. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
  35. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
  36. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +22 -22
  37. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
  39. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
  40. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  41. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +52 -52
  42. package/dist/bubbles.json +52054 -6
  43. package/dist/types/available-tools.d.ts +1 -1
  44. package/dist/types/available-tools.d.ts.map +1 -1
  45. package/dist/types/available-tools.js +1 -0
  46. package/dist/types/available-tools.js.map +1 -1
  47. package/package.json +3 -3
@@ -32,9 +32,9 @@ declare const PersonResultSchema: z.ZodObject<{
32
32
  companyHeadcount: z.ZodNullable<z.ZodNumber>;
33
33
  companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
34
34
  }, "strip", z.ZodTypeAny, {
35
- title: string | null;
36
35
  companyName: string | null;
37
36
  companyLinkedinUrl: string | null;
37
+ title: string | null;
38
38
  companyIndustries: string[] | null;
39
39
  seniorityLevel: string | null;
40
40
  functionCategory: string | null;
@@ -42,9 +42,9 @@ declare const PersonResultSchema: z.ZodObject<{
42
42
  yearsAtCompany: number | null;
43
43
  companyHeadcount: number | null;
44
44
  }, {
45
- title: string | null;
46
45
  companyName: string | null;
47
46
  companyLinkedinUrl: string | null;
47
+ title: string | null;
48
48
  companyIndustries: string[] | null;
49
49
  seniorityLevel: string | null;
50
50
  functionCategory: string | null;
@@ -58,13 +58,13 @@ declare const PersonResultSchema: z.ZodObject<{
58
58
  startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
59
59
  endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
60
60
  }, "strip", z.ZodTypeAny, {
61
- title: string | null;
62
61
  companyName: string | null;
62
+ title: string | null;
63
63
  startDate: string | number | null;
64
64
  endDate: string | number | null;
65
65
  }, {
66
- title: string | null;
67
66
  companyName: string | null;
67
+ title: string | null;
68
68
  startDate: string | number | null;
69
69
  endDate: string | number | null;
70
70
  }>, "many">>;
@@ -82,33 +82,28 @@ declare const PersonResultSchema: z.ZodObject<{
82
82
  fieldOfStudy: string | null;
83
83
  }>, "many">>;
84
84
  }, "strip", z.ZodTypeAny, {
85
- name: string | null;
86
- headline: string | null;
87
- location: string | null;
88
85
  title: string | null;
89
- emails: string[] | null;
86
+ location: string | null;
90
87
  skills: string[] | null;
91
88
  languages: string[] | null;
92
- summary: string | null;
93
- education: {
94
- instituteName: string | null;
95
- degreeName: string | null;
96
- fieldOfStudy: string | null;
97
- }[] | null;
98
- websites: string[] | null;
99
89
  recentlyChangedJobs: boolean | null;
90
+ name: string | null;
91
+ headline: string | null;
100
92
  linkedinUrl: string | null;
101
93
  profilePictureUrl: string | null;
94
+ emails: string[] | null;
102
95
  twitterHandle: string | null;
96
+ websites: string[] | null;
103
97
  seniorityLevel: string | null;
104
98
  yearsOfExperience: number | null;
105
99
  locationCity: string | null;
106
100
  locationCountry: string | null;
101
+ summary: string | null;
107
102
  numConnections: number | null;
108
103
  currentEmployers: {
109
- title: string | null;
110
104
  companyName: string | null;
111
105
  companyLinkedinUrl: string | null;
106
+ title: string | null;
112
107
  companyIndustries: string[] | null;
113
108
  seniorityLevel: string | null;
114
109
  functionCategory: string | null;
@@ -117,39 +112,39 @@ declare const PersonResultSchema: z.ZodObject<{
117
112
  companyHeadcount: number | null;
118
113
  }[] | null;
119
114
  pastEmployers: {
120
- title: string | null;
121
115
  companyName: string | null;
116
+ title: string | null;
122
117
  startDate: string | number | null;
123
118
  endDate: string | number | null;
124
119
  }[] | null;
125
- }, {
126
- name: string | null;
127
- headline: string | null;
128
- location: string | null;
129
- title: string | null;
130
- emails: string[] | null;
131
- skills: string[] | null;
132
- languages: string[] | null;
133
- summary: string | null;
134
120
  education: {
135
121
  instituteName: string | null;
136
122
  degreeName: string | null;
137
123
  fieldOfStudy: string | null;
138
124
  }[] | null;
139
- websites: string[] | null;
125
+ }, {
126
+ title: string | null;
127
+ location: string | null;
128
+ skills: string[] | null;
129
+ languages: string[] | null;
140
130
  recentlyChangedJobs: boolean | null;
131
+ name: string | null;
132
+ headline: string | null;
141
133
  linkedinUrl: string | null;
142
134
  profilePictureUrl: string | null;
135
+ emails: string[] | null;
143
136
  twitterHandle: string | null;
137
+ websites: string[] | null;
144
138
  seniorityLevel: string | null;
145
139
  yearsOfExperience: number | null;
146
140
  locationCity: string | null;
147
141
  locationCountry: string | null;
142
+ summary: string | null;
148
143
  numConnections: number | null;
149
144
  currentEmployers: {
150
- title: string | null;
151
145
  companyName: string | null;
152
146
  companyLinkedinUrl: string | null;
147
+ title: string | null;
153
148
  companyIndustries: string[] | null;
154
149
  seniorityLevel: string | null;
155
150
  functionCategory: string | null;
@@ -158,11 +153,16 @@ declare const PersonResultSchema: z.ZodObject<{
158
153
  companyHeadcount: number | null;
159
154
  }[] | null;
160
155
  pastEmployers: {
161
- title: string | null;
162
156
  companyName: string | null;
157
+ title: string | null;
163
158
  startDate: string | number | null;
164
159
  endDate: string | number | null;
165
160
  }[] | null;
161
+ education: {
162
+ instituteName: string | null;
163
+ degreeName: string | null;
164
+ fieldOfStudy: string | null;
165
+ }[] | null;
166
166
  }>;
167
167
  declare const PeopleSearchToolParamsSchema: z.ZodObject<{
168
168
  companyName: z.ZodOptional<z.ZodString>;
@@ -202,21 +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
- credentials?: Partial<Record<CredentialType, string>> | undefined;
211
- limit?: number | undefined;
212
205
  companyName?: string | undefined;
213
206
  companyLinkedinUrl?: string | undefined;
214
207
  jobTitle?: string | undefined;
215
208
  jobTitles?: string[] | undefined;
209
+ location?: string | undefined;
216
210
  locationRadius?: {
217
211
  location: string;
218
212
  radiusMiles: number;
219
213
  } | undefined;
214
+ skills?: string[] | undefined;
215
+ languages?: string[] | undefined;
220
216
  minYearsExperience?: number | undefined;
221
217
  maxYearsExperience?: number | undefined;
222
218
  seniorityLevels?: string[] | undefined;
@@ -228,26 +224,26 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
228
224
  pastCompanyName?: string | undefined;
229
225
  pastJobTitle?: string | undefined;
230
226
  schoolName?: string | undefined;
227
+ country?: string | undefined;
228
+ city?: string | undefined;
231
229
  recentlyChangedJobs?: boolean | undefined;
232
230
  minConnections?: number | undefined;
233
231
  excludeCompanies?: string[] | undefined;
234
232
  excludeProfiles?: string[] | undefined;
235
- }, {
236
- location?: string | undefined;
237
- skills?: string[] | undefined;
238
- languages?: string[] | undefined;
239
- city?: string | undefined;
240
- country?: string | undefined;
241
- credentials?: Partial<Record<CredentialType, string>> | undefined;
242
233
  limit?: number | undefined;
234
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
235
+ }, {
243
236
  companyName?: string | undefined;
244
237
  companyLinkedinUrl?: string | undefined;
245
238
  jobTitle?: string | undefined;
246
239
  jobTitles?: string[] | undefined;
240
+ location?: string | undefined;
247
241
  locationRadius?: {
248
242
  location: string;
249
243
  radiusMiles: number;
250
244
  } | undefined;
245
+ skills?: string[] | undefined;
246
+ languages?: string[] | undefined;
251
247
  minYearsExperience?: number | undefined;
252
248
  maxYearsExperience?: number | undefined;
253
249
  seniorityLevels?: string[] | undefined;
@@ -259,10 +255,14 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
259
255
  pastCompanyName?: string | undefined;
260
256
  pastJobTitle?: string | undefined;
261
257
  schoolName?: string | undefined;
258
+ country?: string | undefined;
259
+ city?: string | undefined;
262
260
  recentlyChangedJobs?: boolean | undefined;
263
261
  minConnections?: number | undefined;
264
262
  excludeCompanies?: string[] | undefined;
265
263
  excludeProfiles?: string[] | undefined;
264
+ limit?: number | undefined;
265
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
266
266
  }>;
267
267
  declare const PeopleSearchToolResultSchema: z.ZodObject<{
268
268
  people: z.ZodArray<z.ZodObject<{
@@ -295,9 +295,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
295
295
  companyHeadcount: z.ZodNullable<z.ZodNumber>;
296
296
  companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
297
297
  }, "strip", z.ZodTypeAny, {
298
- title: string | null;
299
298
  companyName: string | null;
300
299
  companyLinkedinUrl: string | null;
300
+ title: string | null;
301
301
  companyIndustries: string[] | null;
302
302
  seniorityLevel: string | null;
303
303
  functionCategory: string | null;
@@ -305,9 +305,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
305
305
  yearsAtCompany: number | null;
306
306
  companyHeadcount: number | null;
307
307
  }, {
308
- title: string | null;
309
308
  companyName: string | null;
310
309
  companyLinkedinUrl: string | null;
310
+ title: string | null;
311
311
  companyIndustries: string[] | null;
312
312
  seniorityLevel: string | null;
313
313
  functionCategory: string | null;
@@ -321,13 +321,13 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
321
321
  startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
322
322
  endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
323
323
  }, "strip", z.ZodTypeAny, {
324
- title: string | null;
325
324
  companyName: string | null;
325
+ title: string | null;
326
326
  startDate: string | number | null;
327
327
  endDate: string | number | null;
328
328
  }, {
329
- title: string | null;
330
329
  companyName: string | null;
330
+ title: string | null;
331
331
  startDate: string | number | null;
332
332
  endDate: string | number | null;
333
333
  }>, "many">>;
@@ -345,33 +345,28 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
345
345
  fieldOfStudy: string | null;
346
346
  }>, "many">>;
347
347
  }, "strip", z.ZodTypeAny, {
348
- name: string | null;
349
- headline: string | null;
350
- location: string | null;
351
348
  title: string | null;
352
- emails: string[] | null;
349
+ location: string | null;
353
350
  skills: string[] | null;
354
351
  languages: string[] | null;
355
- summary: string | null;
356
- education: {
357
- instituteName: string | null;
358
- degreeName: string | null;
359
- fieldOfStudy: string | null;
360
- }[] | null;
361
- websites: string[] | null;
362
352
  recentlyChangedJobs: boolean | null;
353
+ name: string | null;
354
+ headline: string | null;
363
355
  linkedinUrl: string | null;
364
356
  profilePictureUrl: string | null;
357
+ emails: string[] | null;
365
358
  twitterHandle: string | null;
359
+ websites: string[] | null;
366
360
  seniorityLevel: string | null;
367
361
  yearsOfExperience: number | null;
368
362
  locationCity: string | null;
369
363
  locationCountry: string | null;
364
+ summary: string | null;
370
365
  numConnections: number | null;
371
366
  currentEmployers: {
372
- title: string | null;
373
367
  companyName: string | null;
374
368
  companyLinkedinUrl: string | null;
369
+ title: string | null;
375
370
  companyIndustries: string[] | null;
376
371
  seniorityLevel: string | null;
377
372
  functionCategory: string | null;
@@ -380,39 +375,39 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
380
375
  companyHeadcount: number | null;
381
376
  }[] | null;
382
377
  pastEmployers: {
383
- title: string | null;
384
378
  companyName: string | null;
379
+ title: string | null;
385
380
  startDate: string | number | null;
386
381
  endDate: string | number | null;
387
382
  }[] | null;
388
- }, {
389
- name: string | null;
390
- headline: string | null;
391
- location: string | null;
392
- title: string | null;
393
- emails: string[] | null;
394
- skills: string[] | null;
395
- languages: string[] | null;
396
- summary: string | null;
397
383
  education: {
398
384
  instituteName: string | null;
399
385
  degreeName: string | null;
400
386
  fieldOfStudy: string | null;
401
387
  }[] | null;
402
- websites: string[] | null;
388
+ }, {
389
+ title: string | null;
390
+ location: string | null;
391
+ skills: string[] | null;
392
+ languages: string[] | null;
403
393
  recentlyChangedJobs: boolean | null;
394
+ name: string | null;
395
+ headline: string | null;
404
396
  linkedinUrl: string | null;
405
397
  profilePictureUrl: string | null;
398
+ emails: string[] | null;
406
399
  twitterHandle: string | null;
400
+ websites: string[] | null;
407
401
  seniorityLevel: string | null;
408
402
  yearsOfExperience: number | null;
409
403
  locationCity: string | null;
410
404
  locationCountry: string | null;
405
+ summary: string | null;
411
406
  numConnections: number | null;
412
407
  currentEmployers: {
413
- title: string | null;
414
408
  companyName: string | null;
415
409
  companyLinkedinUrl: string | null;
410
+ title: string | null;
416
411
  companyIndustries: string[] | null;
417
412
  seniorityLevel: string | null;
418
413
  functionCategory: string | null;
@@ -421,46 +416,44 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
421
416
  companyHeadcount: number | null;
422
417
  }[] | null;
423
418
  pastEmployers: {
424
- title: string | null;
425
419
  companyName: string | null;
420
+ title: string | null;
426
421
  startDate: string | number | null;
427
422
  endDate: string | number | null;
428
423
  }[] | null;
424
+ education: {
425
+ instituteName: string | null;
426
+ degreeName: string | null;
427
+ fieldOfStudy: string | null;
428
+ }[] | null;
429
429
  }>, "many">;
430
430
  totalCount: z.ZodNumber;
431
431
  success: z.ZodBoolean;
432
432
  error: z.ZodString;
433
433
  }, "strip", z.ZodTypeAny, {
434
- success: boolean;
435
- error: string;
436
434
  people: {
437
- name: string | null;
438
- headline: string | null;
439
- location: string | null;
440
435
  title: string | null;
441
- emails: string[] | null;
436
+ location: string | null;
442
437
  skills: string[] | null;
443
438
  languages: string[] | null;
444
- summary: string | null;
445
- education: {
446
- instituteName: string | null;
447
- degreeName: string | null;
448
- fieldOfStudy: string | null;
449
- }[] | null;
450
- websites: string[] | null;
451
439
  recentlyChangedJobs: boolean | null;
440
+ name: string | null;
441
+ headline: string | null;
452
442
  linkedinUrl: string | null;
453
443
  profilePictureUrl: string | null;
444
+ emails: string[] | null;
454
445
  twitterHandle: string | null;
446
+ websites: string[] | null;
455
447
  seniorityLevel: string | null;
456
448
  yearsOfExperience: number | null;
457
449
  locationCity: string | null;
458
450
  locationCountry: string | null;
451
+ summary: string | null;
459
452
  numConnections: number | null;
460
453
  currentEmployers: {
461
- title: string | null;
462
454
  companyName: string | null;
463
455
  companyLinkedinUrl: string | null;
456
+ title: string | null;
464
457
  companyIndustries: string[] | null;
465
458
  seniorityLevel: string | null;
466
459
  functionCategory: string | null;
@@ -469,44 +462,44 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
469
462
  companyHeadcount: number | null;
470
463
  }[] | null;
471
464
  pastEmployers: {
472
- title: string | null;
473
465
  companyName: string | null;
466
+ title: string | null;
474
467
  startDate: string | number | null;
475
468
  endDate: string | number | null;
476
469
  }[] | null;
470
+ education: {
471
+ instituteName: string | null;
472
+ degreeName: string | null;
473
+ fieldOfStudy: string | null;
474
+ }[] | null;
477
475
  }[];
478
476
  totalCount: number;
479
- }, {
480
477
  success: boolean;
481
478
  error: string;
479
+ }, {
482
480
  people: {
483
- name: string | null;
484
- headline: string | null;
485
- location: string | null;
486
481
  title: string | null;
487
- emails: string[] | null;
482
+ location: string | null;
488
483
  skills: string[] | null;
489
484
  languages: string[] | null;
490
- summary: string | null;
491
- education: {
492
- instituteName: string | null;
493
- degreeName: string | null;
494
- fieldOfStudy: string | null;
495
- }[] | null;
496
- websites: string[] | null;
497
485
  recentlyChangedJobs: boolean | null;
486
+ name: string | null;
487
+ headline: string | null;
498
488
  linkedinUrl: string | null;
499
489
  profilePictureUrl: string | null;
490
+ emails: string[] | null;
500
491
  twitterHandle: string | null;
492
+ websites: string[] | null;
501
493
  seniorityLevel: string | null;
502
494
  yearsOfExperience: number | null;
503
495
  locationCity: string | null;
504
496
  locationCountry: string | null;
497
+ summary: string | null;
505
498
  numConnections: number | null;
506
499
  currentEmployers: {
507
- title: string | null;
508
500
  companyName: string | null;
509
501
  companyLinkedinUrl: string | null;
502
+ title: string | null;
510
503
  companyIndustries: string[] | null;
511
504
  seniorityLevel: string | null;
512
505
  functionCategory: string | null;
@@ -515,13 +508,20 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
515
508
  companyHeadcount: number | null;
516
509
  }[] | null;
517
510
  pastEmployers: {
518
- title: string | null;
519
511
  companyName: string | null;
512
+ title: string | null;
520
513
  startDate: string | number | null;
521
514
  endDate: string | number | null;
522
515
  }[] | null;
516
+ education: {
517
+ instituteName: string | null;
518
+ degreeName: string | null;
519
+ fieldOfStudy: string | null;
520
+ }[] | null;
523
521
  }[];
524
522
  totalCount: number;
523
+ success: boolean;
524
+ error: string;
525
525
  }>;
526
526
  type PeopleSearchToolParams = z.output<typeof PeopleSearchToolParamsSchema>;
527
527
  type PeopleSearchToolResult = z.output<typeof PeopleSearchToolResultSchema>;
@@ -590,21 +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
- credentials?: Partial<Record<CredentialType, string>> | undefined;
599
- limit?: number | undefined;
600
593
  companyName?: string | undefined;
601
594
  companyLinkedinUrl?: string | undefined;
602
595
  jobTitle?: string | undefined;
603
596
  jobTitles?: string[] | undefined;
597
+ location?: string | undefined;
604
598
  locationRadius?: {
605
599
  location: string;
606
600
  radiusMiles: number;
607
601
  } | undefined;
602
+ skills?: string[] | undefined;
603
+ languages?: string[] | undefined;
608
604
  minYearsExperience?: number | undefined;
609
605
  maxYearsExperience?: number | undefined;
610
606
  seniorityLevels?: string[] | undefined;
@@ -616,26 +612,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
616
612
  pastCompanyName?: string | undefined;
617
613
  pastJobTitle?: string | undefined;
618
614
  schoolName?: string | undefined;
615
+ country?: string | undefined;
616
+ city?: string | undefined;
619
617
  recentlyChangedJobs?: boolean | undefined;
620
618
  minConnections?: number | undefined;
621
619
  excludeCompanies?: string[] | undefined;
622
620
  excludeProfiles?: string[] | undefined;
623
- }, {
624
- location?: string | undefined;
625
- skills?: string[] | undefined;
626
- languages?: string[] | undefined;
627
- city?: string | undefined;
628
- country?: string | undefined;
629
- credentials?: Partial<Record<CredentialType, string>> | undefined;
630
621
  limit?: number | undefined;
622
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
623
+ }, {
631
624
  companyName?: string | undefined;
632
625
  companyLinkedinUrl?: string | undefined;
633
626
  jobTitle?: string | undefined;
634
627
  jobTitles?: string[] | undefined;
628
+ location?: string | undefined;
635
629
  locationRadius?: {
636
630
  location: string;
637
631
  radiusMiles: number;
638
632
  } | undefined;
633
+ skills?: string[] | undefined;
634
+ languages?: string[] | undefined;
639
635
  minYearsExperience?: number | undefined;
640
636
  maxYearsExperience?: number | undefined;
641
637
  seniorityLevels?: string[] | undefined;
@@ -647,10 +643,14 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
647
643
  pastCompanyName?: string | undefined;
648
644
  pastJobTitle?: string | undefined;
649
645
  schoolName?: string | undefined;
646
+ country?: string | undefined;
647
+ city?: string | undefined;
650
648
  recentlyChangedJobs?: boolean | undefined;
651
649
  minConnections?: number | undefined;
652
650
  excludeCompanies?: string[] | undefined;
653
651
  excludeProfiles?: string[] | undefined;
652
+ limit?: number | undefined;
653
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
654
654
  }>;
655
655
  static readonly resultSchema: z.ZodObject<{
656
656
  people: z.ZodArray<z.ZodObject<{
@@ -683,9 +683,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
683
683
  companyHeadcount: z.ZodNullable<z.ZodNumber>;
684
684
  companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
685
685
  }, "strip", z.ZodTypeAny, {
686
- title: string | null;
687
686
  companyName: string | null;
688
687
  companyLinkedinUrl: string | null;
688
+ title: string | null;
689
689
  companyIndustries: string[] | null;
690
690
  seniorityLevel: string | null;
691
691
  functionCategory: string | null;
@@ -693,9 +693,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
693
693
  yearsAtCompany: number | null;
694
694
  companyHeadcount: number | null;
695
695
  }, {
696
- title: string | null;
697
696
  companyName: string | null;
698
697
  companyLinkedinUrl: string | null;
698
+ title: string | null;
699
699
  companyIndustries: string[] | null;
700
700
  seniorityLevel: string | null;
701
701
  functionCategory: string | null;
@@ -709,13 +709,13 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
709
709
  startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
710
710
  endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
711
711
  }, "strip", z.ZodTypeAny, {
712
- title: string | null;
713
712
  companyName: string | null;
713
+ title: string | null;
714
714
  startDate: string | number | null;
715
715
  endDate: string | number | null;
716
716
  }, {
717
- title: string | null;
718
717
  companyName: string | null;
718
+ title: string | null;
719
719
  startDate: string | number | null;
720
720
  endDate: string | number | null;
721
721
  }>, "many">>;
@@ -733,33 +733,28 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
733
733
  fieldOfStudy: string | null;
734
734
  }>, "many">>;
735
735
  }, "strip", z.ZodTypeAny, {
736
- name: string | null;
737
- headline: string | null;
738
- location: string | null;
739
736
  title: string | null;
740
- emails: string[] | null;
737
+ location: string | null;
741
738
  skills: string[] | null;
742
739
  languages: string[] | null;
743
- summary: string | null;
744
- education: {
745
- instituteName: string | null;
746
- degreeName: string | null;
747
- fieldOfStudy: string | null;
748
- }[] | null;
749
- websites: string[] | null;
750
740
  recentlyChangedJobs: boolean | null;
741
+ name: string | null;
742
+ headline: string | null;
751
743
  linkedinUrl: string | null;
752
744
  profilePictureUrl: string | null;
745
+ emails: string[] | null;
753
746
  twitterHandle: string | null;
747
+ websites: string[] | null;
754
748
  seniorityLevel: string | null;
755
749
  yearsOfExperience: number | null;
756
750
  locationCity: string | null;
757
751
  locationCountry: string | null;
752
+ summary: string | null;
758
753
  numConnections: number | null;
759
754
  currentEmployers: {
760
- title: string | null;
761
755
  companyName: string | null;
762
756
  companyLinkedinUrl: string | null;
757
+ title: string | null;
763
758
  companyIndustries: string[] | null;
764
759
  seniorityLevel: string | null;
765
760
  functionCategory: string | null;
@@ -768,39 +763,39 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
768
763
  companyHeadcount: number | null;
769
764
  }[] | null;
770
765
  pastEmployers: {
771
- title: string | null;
772
766
  companyName: string | null;
767
+ title: string | null;
773
768
  startDate: string | number | null;
774
769
  endDate: string | number | null;
775
770
  }[] | null;
776
- }, {
777
- name: string | null;
778
- headline: string | null;
779
- location: string | null;
780
- title: string | null;
781
- emails: string[] | null;
782
- skills: string[] | null;
783
- languages: string[] | null;
784
- summary: string | null;
785
771
  education: {
786
772
  instituteName: string | null;
787
773
  degreeName: string | null;
788
774
  fieldOfStudy: string | null;
789
775
  }[] | null;
790
- websites: string[] | null;
776
+ }, {
777
+ title: string | null;
778
+ location: string | null;
779
+ skills: string[] | null;
780
+ languages: string[] | null;
791
781
  recentlyChangedJobs: boolean | null;
782
+ name: string | null;
783
+ headline: string | null;
792
784
  linkedinUrl: string | null;
793
785
  profilePictureUrl: string | null;
786
+ emails: string[] | null;
794
787
  twitterHandle: string | null;
788
+ websites: string[] | null;
795
789
  seniorityLevel: string | null;
796
790
  yearsOfExperience: number | null;
797
791
  locationCity: string | null;
798
792
  locationCountry: string | null;
793
+ summary: string | null;
799
794
  numConnections: number | null;
800
795
  currentEmployers: {
801
- title: string | null;
802
796
  companyName: string | null;
803
797
  companyLinkedinUrl: string | null;
798
+ title: string | null;
804
799
  companyIndustries: string[] | null;
805
800
  seniorityLevel: string | null;
806
801
  functionCategory: string | null;
@@ -809,46 +804,44 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
809
804
  companyHeadcount: number | null;
810
805
  }[] | null;
811
806
  pastEmployers: {
812
- title: string | null;
813
807
  companyName: string | null;
808
+ title: string | null;
814
809
  startDate: string | number | null;
815
810
  endDate: string | number | null;
816
811
  }[] | null;
812
+ education: {
813
+ instituteName: string | null;
814
+ degreeName: string | null;
815
+ fieldOfStudy: string | null;
816
+ }[] | null;
817
817
  }>, "many">;
818
818
  totalCount: z.ZodNumber;
819
819
  success: z.ZodBoolean;
820
820
  error: z.ZodString;
821
821
  }, "strip", z.ZodTypeAny, {
822
- success: boolean;
823
- error: string;
824
822
  people: {
825
- name: string | null;
826
- headline: string | null;
827
- location: string | null;
828
823
  title: string | null;
829
- emails: string[] | null;
824
+ location: string | null;
830
825
  skills: string[] | null;
831
826
  languages: string[] | null;
832
- summary: string | null;
833
- education: {
834
- instituteName: string | null;
835
- degreeName: string | null;
836
- fieldOfStudy: string | null;
837
- }[] | null;
838
- websites: string[] | null;
839
827
  recentlyChangedJobs: boolean | null;
828
+ name: string | null;
829
+ headline: string | null;
840
830
  linkedinUrl: string | null;
841
831
  profilePictureUrl: string | null;
832
+ emails: string[] | null;
842
833
  twitterHandle: string | null;
834
+ websites: string[] | null;
843
835
  seniorityLevel: string | null;
844
836
  yearsOfExperience: number | null;
845
837
  locationCity: string | null;
846
838
  locationCountry: string | null;
839
+ summary: string | null;
847
840
  numConnections: number | null;
848
841
  currentEmployers: {
849
- title: string | null;
850
842
  companyName: string | null;
851
843
  companyLinkedinUrl: string | null;
844
+ title: string | null;
852
845
  companyIndustries: string[] | null;
853
846
  seniorityLevel: string | null;
854
847
  functionCategory: string | null;
@@ -857,44 +850,44 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
857
850
  companyHeadcount: number | null;
858
851
  }[] | null;
859
852
  pastEmployers: {
860
- title: string | null;
861
853
  companyName: string | null;
854
+ title: string | null;
862
855
  startDate: string | number | null;
863
856
  endDate: string | number | null;
864
857
  }[] | null;
858
+ education: {
859
+ instituteName: string | null;
860
+ degreeName: string | null;
861
+ fieldOfStudy: string | null;
862
+ }[] | null;
865
863
  }[];
866
864
  totalCount: number;
867
- }, {
868
865
  success: boolean;
869
866
  error: string;
867
+ }, {
870
868
  people: {
871
- name: string | null;
872
- headline: string | null;
873
- location: string | null;
874
869
  title: string | null;
875
- emails: string[] | null;
870
+ location: string | null;
876
871
  skills: string[] | null;
877
872
  languages: string[] | null;
878
- summary: string | null;
879
- education: {
880
- instituteName: string | null;
881
- degreeName: string | null;
882
- fieldOfStudy: string | null;
883
- }[] | null;
884
- websites: string[] | null;
885
873
  recentlyChangedJobs: boolean | null;
874
+ name: string | null;
875
+ headline: string | null;
886
876
  linkedinUrl: string | null;
887
877
  profilePictureUrl: string | null;
878
+ emails: string[] | null;
888
879
  twitterHandle: string | null;
880
+ websites: string[] | null;
889
881
  seniorityLevel: string | null;
890
882
  yearsOfExperience: number | null;
891
883
  locationCity: string | null;
892
884
  locationCountry: string | null;
885
+ summary: string | null;
893
886
  numConnections: number | null;
894
887
  currentEmployers: {
895
- title: string | null;
896
888
  companyName: string | null;
897
889
  companyLinkedinUrl: string | null;
890
+ title: string | null;
898
891
  companyIndustries: string[] | null;
899
892
  seniorityLevel: string | null;
900
893
  functionCategory: string | null;
@@ -903,13 +896,20 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
903
896
  companyHeadcount: number | null;
904
897
  }[] | null;
905
898
  pastEmployers: {
906
- title: string | null;
907
899
  companyName: string | null;
900
+ title: string | null;
908
901
  startDate: string | number | null;
909
902
  endDate: string | number | null;
910
903
  }[] | null;
904
+ education: {
905
+ instituteName: string | null;
906
+ degreeName: string | null;
907
+ fieldOfStudy: string | null;
908
+ }[] | null;
911
909
  }[];
912
910
  totalCount: number;
911
+ success: boolean;
912
+ error: string;
913
913
  }>;
914
914
  static readonly shortDescription = "Comprehensive people search by company, title, location, skills, and more";
915
915
  static readonly longDescription = "\n Comprehensive people search tool for finding and discovering professionals.\n Uses the Crustdata PersonDB in-database search for fast, comprehensive results.\n\n **SEARCH CRITERIA (at least one required):**\n - Company: companyName, companyLinkedinUrl, pastCompanyName\n - Job Title: jobTitle (single), jobTitles (multiple with OR logic), pastJobTitle\n - Location: location (fuzzy), locationRadius (geo search), country, city\n - Skills & Experience: skills, languages, minYearsExperience, maxYearsExperience\n - Seniority & Function: seniorityLevels, functionCategories\n - Company Attributes: companyIndustries, minCompanyHeadcount, maxCompanyHeadcount\n - Education: schoolName\n - Status: recentlyChangedJobs, minConnections, minYearsAtCompany\n\n **GEO RADIUS SEARCH:**\n Use locationRadius to find people within X miles of a location:\n - locationRadius: { location: \"San Francisco\", radiusMiles: 75 }\n - locationRadius: { location: \"New York City\", radiusMiles: 50 }\n\n **WHAT YOU GET:**\n - Full name, current title, and headline\n - LinkedIn profile URL and email addresses\n - Complete current and past work history with company details\n - Education background with degrees and fields of study\n - Skills, languages, seniority level, and years of experience\n - Location details (city, country, region)\n\n **EXAMPLE USE CASES:**\n - companyName: \"Stripe\" \u2192 find people currently at Stripe\n - jobTitle: \"CEO\", seniorityLevels: [\"CXO\"] \u2192 find CEOs\n - jobTitles: [\"Senior Hardware Engineer\", \"Technical Product Manager\"] \u2192 find people with either role\n - locationRadius: { location: \"Austin\", radiusMiles: 75 }, jobTitle: \"Engineer\" \u2192 engineers within 75 miles of Austin\n - pastCompanyName: \"Google\", companyName: \"Startup\" \u2192 ex-Googlers at startups\n - skills: [\"Python\", \"ML\"], minYearsExperience: 5 \u2192 experienced ML engineers\n - companyIndustries: [\"Healthcare\"], functionCategories: [\"Sales\"] \u2192 healthcare sales professionals\n - schoolName: \"Stanford\", seniorityLevels: [\"CXO\", \"Vice President\"] \u2192 Stanford alum executives\n - recentlyChangedJobs: true, companyName: \"Meta\" \u2192 recent Meta hires (good for outreach)\n - minCompanyHeadcount: 1000, maxCompanyHeadcount: 5000 \u2192 mid-size company employees\n\n **CREDITS:** 3 credits per 100 results returned\n ";