@bubblelab/bubble-core 0.1.26 → 0.1.28

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 (49) hide show
  1. package/dist/bubble-bundle.d.ts +60 -60
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
  3. package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
  7. package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
  10. package/dist/bubbles/service-bubble/github.d.ts +64 -64
  11. package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
  12. package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
  14. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
  15. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
  16. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
  18. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
  19. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  20. package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
  21. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  23. package/dist/bubbles/service-bubble/slack/slack.d.ts +202 -202
  24. package/dist/bubbles/service-bubble/storage.d.ts +40 -40
  25. package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
  26. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
  27. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +148 -148
  28. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
  29. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
  30. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
  31. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
  32. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
  33. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  34. package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
  35. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  36. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
  37. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  39. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  40. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
  42. package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
  43. package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
  44. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
  45. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
  46. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
  47. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
  48. package/dist/bubbles.json +19 -19
  49. package/package.json +2 -2
@@ -32,25 +32,25 @@ 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;
35
36
  companyName: string | null;
36
37
  companyLinkedinUrl: string | null;
37
- title: 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
+ title: string | null;
45
46
  companyName: string | null;
46
47
  companyLinkedinUrl: string | null;
47
- title: 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>;
@@ -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
- companyName: string | null;
62
61
  title: string | null;
62
+ companyName: string | null;
63
63
  startDate: string | number | null;
64
64
  endDate: string | number | null;
65
65
  }, {
66
- companyName: string | null;
67
66
  title: string | null;
67
+ companyName: string | null;
68
68
  startDate: string | number | null;
69
69
  endDate: string | number | null;
70
70
  }>, "many">>;
@@ -83,86 +83,86 @@ declare const PersonResultSchema: z.ZodObject<{
83
83
  }>, "many">>;
84
84
  }, "strip", z.ZodTypeAny, {
85
85
  title: string | null;
86
- location: string | null;
87
- skills: string[] | null;
88
- languages: string[] | null;
89
- recentlyChangedJobs: boolean | null;
90
86
  name: string | null;
87
+ summary: string | null;
88
+ location: string | null;
91
89
  headline: string | null;
90
+ seniorityLevel: string | null;
91
+ emails: string[] | null;
92
+ languages: string[] | null;
93
+ skills: string[] | null;
94
+ education: {
95
+ instituteName: string | null;
96
+ degreeName: string | null;
97
+ fieldOfStudy: string | null;
98
+ }[] | null;
99
+ websites: string[] | null;
92
100
  linkedinUrl: string | null;
93
101
  profilePictureUrl: string | null;
94
- emails: string[] | null;
95
102
  twitterHandle: string | null;
96
- websites: string[] | null;
97
- seniorityLevel: string | null;
98
103
  yearsOfExperience: number | null;
104
+ recentlyChangedJobs: boolean | null;
99
105
  locationCity: string | null;
100
106
  locationCountry: string | null;
101
- summary: string | null;
102
107
  numConnections: number | null;
103
108
  currentEmployers: {
109
+ title: string | null;
104
110
  companyName: string | null;
105
111
  companyLinkedinUrl: string | null;
106
- title: string | null;
107
- companyIndustries: string[] | null;
108
112
  seniorityLevel: string | null;
109
113
  functionCategory: string | null;
110
114
  startDate: string | number | null;
111
115
  yearsAtCompany: number | null;
112
116
  companyHeadcount: number | null;
117
+ companyIndustries: string[] | null;
113
118
  }[] | null;
114
119
  pastEmployers: {
115
- companyName: string | null;
116
120
  title: string | null;
121
+ companyName: string | null;
117
122
  startDate: string | number | null;
118
123
  endDate: string | number | null;
119
124
  }[] | null;
125
+ }, {
126
+ title: string | null;
127
+ name: string | null;
128
+ summary: string | null;
129
+ location: string | null;
130
+ headline: string | null;
131
+ seniorityLevel: string | null;
132
+ emails: string[] | null;
133
+ languages: string[] | null;
134
+ skills: string[] | null;
120
135
  education: {
121
136
  instituteName: string | null;
122
137
  degreeName: string | null;
123
138
  fieldOfStudy: string | null;
124
139
  }[] | null;
125
- }, {
126
- title: string | null;
127
- location: string | null;
128
- skills: string[] | null;
129
- languages: string[] | null;
130
- recentlyChangedJobs: boolean | null;
131
- name: string | null;
132
- headline: string | null;
140
+ websites: string[] | null;
133
141
  linkedinUrl: string | null;
134
142
  profilePictureUrl: string | null;
135
- emails: string[] | null;
136
143
  twitterHandle: string | null;
137
- websites: string[] | null;
138
- seniorityLevel: string | null;
139
144
  yearsOfExperience: number | null;
145
+ recentlyChangedJobs: boolean | null;
140
146
  locationCity: string | null;
141
147
  locationCountry: string | null;
142
- summary: string | null;
143
148
  numConnections: number | null;
144
149
  currentEmployers: {
150
+ title: string | null;
145
151
  companyName: string | null;
146
152
  companyLinkedinUrl: string | null;
147
- title: string | null;
148
- companyIndustries: string[] | null;
149
153
  seniorityLevel: string | null;
150
154
  functionCategory: string | null;
151
155
  startDate: string | number | null;
152
156
  yearsAtCompany: number | null;
153
157
  companyHeadcount: number | null;
158
+ companyIndustries: string[] | null;
154
159
  }[] | null;
155
160
  pastEmployers: {
156
- companyName: string | null;
157
161
  title: string | null;
162
+ companyName: string | null;
158
163
  startDate: string | number | null;
159
164
  endDate: string | number | null;
160
165
  }[] | 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,67 +202,67 @@ 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
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
206
+ limit?: number | undefined;
207
+ location?: string | undefined;
205
208
  companyName?: string | undefined;
206
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;
207
216
  jobTitle?: string | undefined;
208
217
  jobTitles?: string[] | undefined;
209
- location?: string | undefined;
210
218
  locationRadius?: {
211
219
  location: string;
212
220
  radiusMiles: number;
213
221
  } | undefined;
214
- skills?: string[] | undefined;
215
- languages?: string[] | undefined;
216
222
  minYearsExperience?: number | undefined;
217
223
  maxYearsExperience?: number | undefined;
218
224
  seniorityLevels?: string[] | undefined;
219
225
  functionCategories?: string[] | undefined;
220
- companyIndustries?: string[] | undefined;
221
226
  minCompanyHeadcount?: number | undefined;
222
227
  maxCompanyHeadcount?: number | undefined;
223
228
  minYearsAtCompany?: number | undefined;
224
229
  pastCompanyName?: string | undefined;
225
230
  pastJobTitle?: string | undefined;
226
231
  schoolName?: string | undefined;
227
- country?: string | undefined;
228
- city?: string | undefined;
229
- recentlyChangedJobs?: boolean | undefined;
230
232
  minConnections?: number | undefined;
231
233
  excludeCompanies?: string[] | undefined;
232
234
  excludeProfiles?: string[] | undefined;
233
- limit?: number | undefined;
234
- credentials?: Partial<Record<CredentialType, string>> | undefined;
235
235
  }, {
236
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
237
+ limit?: number | undefined;
238
+ location?: string | undefined;
236
239
  companyName?: string | undefined;
237
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;
238
247
  jobTitle?: string | undefined;
239
248
  jobTitles?: string[] | undefined;
240
- location?: string | undefined;
241
249
  locationRadius?: {
242
250
  location: string;
243
251
  radiusMiles: number;
244
252
  } | undefined;
245
- skills?: string[] | undefined;
246
- languages?: string[] | undefined;
247
253
  minYearsExperience?: number | undefined;
248
254
  maxYearsExperience?: number | undefined;
249
255
  seniorityLevels?: string[] | undefined;
250
256
  functionCategories?: string[] | undefined;
251
- companyIndustries?: string[] | undefined;
252
257
  minCompanyHeadcount?: number | undefined;
253
258
  maxCompanyHeadcount?: number | undefined;
254
259
  minYearsAtCompany?: number | undefined;
255
260
  pastCompanyName?: string | undefined;
256
261
  pastJobTitle?: string | undefined;
257
262
  schoolName?: string | undefined;
258
- country?: string | undefined;
259
- city?: string | undefined;
260
- recentlyChangedJobs?: boolean | undefined;
261
263
  minConnections?: number | undefined;
262
264
  excludeCompanies?: string[] | undefined;
263
265
  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,25 +295,25 @@ 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;
298
299
  companyName: string | null;
299
300
  companyLinkedinUrl: string | null;
300
- title: 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
+ title: string | null;
308
309
  companyName: string | null;
309
310
  companyLinkedinUrl: string | null;
310
- title: 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>;
@@ -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
- companyName: string | null;
325
324
  title: string | null;
325
+ companyName: string | null;
326
326
  startDate: string | number | null;
327
327
  endDate: string | number | null;
328
328
  }, {
329
- companyName: string | null;
330
329
  title: string | null;
330
+ companyName: string | null;
331
331
  startDate: string | number | null;
332
332
  endDate: string | number | null;
333
333
  }>, "many">>;
@@ -346,182 +346,182 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
346
346
  }>, "many">>;
347
347
  }, "strip", z.ZodTypeAny, {
348
348
  title: string | null;
349
- location: string | null;
350
- skills: string[] | null;
351
- languages: string[] | null;
352
- recentlyChangedJobs: boolean | null;
353
349
  name: string | null;
350
+ summary: string | null;
351
+ location: string | null;
354
352
  headline: string | null;
353
+ seniorityLevel: string | null;
354
+ emails: string[] | null;
355
+ languages: string[] | null;
356
+ skills: string[] | null;
357
+ education: {
358
+ instituteName: string | null;
359
+ degreeName: string | null;
360
+ fieldOfStudy: string | null;
361
+ }[] | null;
362
+ websites: string[] | null;
355
363
  linkedinUrl: string | null;
356
364
  profilePictureUrl: string | null;
357
- emails: string[] | null;
358
365
  twitterHandle: string | null;
359
- websites: string[] | null;
360
- seniorityLevel: string | null;
361
366
  yearsOfExperience: number | null;
367
+ recentlyChangedJobs: boolean | null;
362
368
  locationCity: string | null;
363
369
  locationCountry: string | null;
364
- summary: string | null;
365
370
  numConnections: number | null;
366
371
  currentEmployers: {
372
+ title: string | null;
367
373
  companyName: string | null;
368
374
  companyLinkedinUrl: string | null;
369
- title: string | null;
370
- companyIndustries: string[] | null;
371
375
  seniorityLevel: string | null;
372
376
  functionCategory: string | null;
373
377
  startDate: string | number | null;
374
378
  yearsAtCompany: number | null;
375
379
  companyHeadcount: number | null;
380
+ companyIndustries: string[] | null;
376
381
  }[] | null;
377
382
  pastEmployers: {
378
- companyName: string | null;
379
383
  title: string | null;
384
+ companyName: string | null;
380
385
  startDate: string | number | null;
381
386
  endDate: string | number | null;
382
387
  }[] | null;
388
+ }, {
389
+ title: string | null;
390
+ name: string | null;
391
+ summary: string | null;
392
+ location: string | null;
393
+ headline: string | null;
394
+ seniorityLevel: string | null;
395
+ emails: string[] | null;
396
+ languages: string[] | null;
397
+ skills: string[] | null;
383
398
  education: {
384
399
  instituteName: string | null;
385
400
  degreeName: string | null;
386
401
  fieldOfStudy: string | null;
387
402
  }[] | null;
388
- }, {
389
- title: string | null;
390
- location: string | null;
391
- skills: string[] | null;
392
- languages: string[] | null;
393
- recentlyChangedJobs: boolean | null;
394
- name: string | null;
395
- headline: string | null;
403
+ websites: string[] | null;
396
404
  linkedinUrl: string | null;
397
405
  profilePictureUrl: string | null;
398
- emails: string[] | null;
399
406
  twitterHandle: string | null;
400
- websites: string[] | null;
401
- seniorityLevel: string | null;
402
407
  yearsOfExperience: number | null;
408
+ recentlyChangedJobs: boolean | null;
403
409
  locationCity: string | null;
404
410
  locationCountry: string | null;
405
- summary: string | null;
406
411
  numConnections: number | null;
407
412
  currentEmployers: {
413
+ title: string | null;
408
414
  companyName: string | null;
409
415
  companyLinkedinUrl: string | null;
410
- title: string | null;
411
- companyIndustries: string[] | null;
412
416
  seniorityLevel: string | null;
413
417
  functionCategory: string | null;
414
418
  startDate: string | number | null;
415
419
  yearsAtCompany: number | null;
416
420
  companyHeadcount: number | null;
421
+ companyIndustries: string[] | null;
417
422
  }[] | null;
418
423
  pastEmployers: {
419
- companyName: string | null;
420
424
  title: string | null;
425
+ companyName: string | null;
421
426
  startDate: string | number | null;
422
427
  endDate: string | number | null;
423
428
  }[] | 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;
434
436
  people: {
435
437
  title: string | null;
436
- location: string | null;
437
- skills: string[] | null;
438
- languages: string[] | null;
439
- recentlyChangedJobs: boolean | null;
440
438
  name: string | null;
439
+ summary: string | null;
440
+ location: string | null;
441
441
  headline: string | null;
442
+ seniorityLevel: string | null;
443
+ emails: string[] | null;
444
+ languages: string[] | null;
445
+ skills: string[] | null;
446
+ education: {
447
+ instituteName: string | null;
448
+ degreeName: string | null;
449
+ fieldOfStudy: string | null;
450
+ }[] | null;
451
+ websites: string[] | null;
442
452
  linkedinUrl: string | null;
443
453
  profilePictureUrl: string | null;
444
- emails: string[] | null;
445
454
  twitterHandle: string | null;
446
- websites: string[] | null;
447
- seniorityLevel: string | null;
448
455
  yearsOfExperience: number | null;
456
+ recentlyChangedJobs: boolean | null;
449
457
  locationCity: string | null;
450
458
  locationCountry: string | null;
451
- summary: string | null;
452
459
  numConnections: number | null;
453
460
  currentEmployers: {
461
+ title: string | null;
454
462
  companyName: string | null;
455
463
  companyLinkedinUrl: string | null;
456
- title: string | null;
457
- companyIndustries: string[] | null;
458
464
  seniorityLevel: string | null;
459
465
  functionCategory: string | null;
460
466
  startDate: string | number | null;
461
467
  yearsAtCompany: number | null;
462
468
  companyHeadcount: number | null;
469
+ companyIndustries: string[] | null;
463
470
  }[] | null;
464
471
  pastEmployers: {
465
- companyName: string | null;
466
472
  title: string | null;
473
+ companyName: string | null;
467
474
  startDate: string | number | null;
468
475
  endDate: string | number | null;
469
476
  }[] | null;
470
- education: {
471
- instituteName: string | null;
472
- degreeName: string | null;
473
- fieldOfStudy: string | null;
474
- }[] | null;
475
477
  }[];
476
478
  totalCount: number;
479
+ }, {
477
480
  success: boolean;
478
481
  error: string;
479
- }, {
480
482
  people: {
481
483
  title: string | null;
482
- location: string | null;
483
- skills: string[] | null;
484
- languages: string[] | null;
485
- recentlyChangedJobs: boolean | null;
486
484
  name: string | null;
485
+ summary: string | null;
486
+ location: string | null;
487
487
  headline: string | null;
488
+ seniorityLevel: string | null;
489
+ emails: string[] | null;
490
+ languages: string[] | null;
491
+ skills: string[] | null;
492
+ education: {
493
+ instituteName: string | null;
494
+ degreeName: string | null;
495
+ fieldOfStudy: string | null;
496
+ }[] | null;
497
+ websites: string[] | null;
488
498
  linkedinUrl: string | null;
489
499
  profilePictureUrl: string | null;
490
- emails: string[] | null;
491
500
  twitterHandle: string | null;
492
- websites: string[] | null;
493
- seniorityLevel: string | null;
494
501
  yearsOfExperience: number | null;
502
+ recentlyChangedJobs: boolean | null;
495
503
  locationCity: string | null;
496
504
  locationCountry: string | null;
497
- summary: string | null;
498
505
  numConnections: number | null;
499
506
  currentEmployers: {
507
+ title: string | null;
500
508
  companyName: string | null;
501
509
  companyLinkedinUrl: string | null;
502
- title: string | null;
503
- companyIndustries: string[] | null;
504
510
  seniorityLevel: string | null;
505
511
  functionCategory: string | null;
506
512
  startDate: string | number | null;
507
513
  yearsAtCompany: number | null;
508
514
  companyHeadcount: number | null;
515
+ companyIndustries: string[] | null;
509
516
  }[] | null;
510
517
  pastEmployers: {
511
- companyName: string | null;
512
518
  title: string | null;
519
+ companyName: string | null;
513
520
  startDate: string | number | null;
514
521
  endDate: string | number | null;
515
522
  }[] | null;
516
- education: {
517
- instituteName: string | null;
518
- degreeName: string | null;
519
- fieldOfStudy: string | null;
520
- }[] | null;
521
523
  }[];
522
524
  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,67 +590,67 @@ 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
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
594
+ limit?: number | undefined;
595
+ location?: string | undefined;
593
596
  companyName?: string | undefined;
594
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;
595
604
  jobTitle?: string | undefined;
596
605
  jobTitles?: string[] | undefined;
597
- location?: string | undefined;
598
606
  locationRadius?: {
599
607
  location: string;
600
608
  radiusMiles: number;
601
609
  } | undefined;
602
- skills?: string[] | undefined;
603
- languages?: string[] | undefined;
604
610
  minYearsExperience?: number | undefined;
605
611
  maxYearsExperience?: number | undefined;
606
612
  seniorityLevels?: string[] | undefined;
607
613
  functionCategories?: string[] | undefined;
608
- companyIndustries?: string[] | undefined;
609
614
  minCompanyHeadcount?: number | undefined;
610
615
  maxCompanyHeadcount?: number | undefined;
611
616
  minYearsAtCompany?: number | undefined;
612
617
  pastCompanyName?: string | undefined;
613
618
  pastJobTitle?: string | undefined;
614
619
  schoolName?: string | undefined;
615
- country?: string | undefined;
616
- city?: string | undefined;
617
- recentlyChangedJobs?: boolean | undefined;
618
620
  minConnections?: number | undefined;
619
621
  excludeCompanies?: string[] | undefined;
620
622
  excludeProfiles?: string[] | undefined;
621
- limit?: number | undefined;
622
- credentials?: Partial<Record<CredentialType, string>> | undefined;
623
623
  }, {
624
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
625
+ limit?: number | undefined;
626
+ location?: string | undefined;
624
627
  companyName?: string | undefined;
625
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;
626
635
  jobTitle?: string | undefined;
627
636
  jobTitles?: string[] | undefined;
628
- location?: string | undefined;
629
637
  locationRadius?: {
630
638
  location: string;
631
639
  radiusMiles: number;
632
640
  } | undefined;
633
- skills?: string[] | undefined;
634
- languages?: string[] | undefined;
635
641
  minYearsExperience?: number | undefined;
636
642
  maxYearsExperience?: number | undefined;
637
643
  seniorityLevels?: string[] | undefined;
638
644
  functionCategories?: string[] | undefined;
639
- companyIndustries?: string[] | undefined;
640
645
  minCompanyHeadcount?: number | undefined;
641
646
  maxCompanyHeadcount?: number | undefined;
642
647
  minYearsAtCompany?: number | undefined;
643
648
  pastCompanyName?: string | undefined;
644
649
  pastJobTitle?: string | undefined;
645
650
  schoolName?: string | undefined;
646
- country?: string | undefined;
647
- city?: string | undefined;
648
- recentlyChangedJobs?: boolean | undefined;
649
651
  minConnections?: number | undefined;
650
652
  excludeCompanies?: string[] | undefined;
651
653
  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,25 +683,25 @@ 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;
686
687
  companyName: string | null;
687
688
  companyLinkedinUrl: string | null;
688
- title: 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
+ title: string | null;
696
697
  companyName: string | null;
697
698
  companyLinkedinUrl: string | null;
698
- title: 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>;
@@ -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
- companyName: string | null;
713
712
  title: string | null;
713
+ companyName: string | null;
714
714
  startDate: string | number | null;
715
715
  endDate: string | number | null;
716
716
  }, {
717
- companyName: string | null;
718
717
  title: string | null;
718
+ companyName: string | null;
719
719
  startDate: string | number | null;
720
720
  endDate: string | number | null;
721
721
  }>, "many">>;
@@ -734,182 +734,182 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
734
734
  }>, "many">>;
735
735
  }, "strip", z.ZodTypeAny, {
736
736
  title: string | null;
737
- location: string | null;
738
- skills: string[] | null;
739
- languages: string[] | null;
740
- recentlyChangedJobs: boolean | null;
741
737
  name: string | null;
738
+ summary: string | null;
739
+ location: string | null;
742
740
  headline: string | null;
741
+ seniorityLevel: string | null;
742
+ emails: string[] | null;
743
+ languages: string[] | null;
744
+ skills: string[] | null;
745
+ education: {
746
+ instituteName: string | null;
747
+ degreeName: string | null;
748
+ fieldOfStudy: string | null;
749
+ }[] | null;
750
+ websites: string[] | null;
743
751
  linkedinUrl: string | null;
744
752
  profilePictureUrl: string | null;
745
- emails: string[] | null;
746
753
  twitterHandle: string | null;
747
- websites: string[] | null;
748
- seniorityLevel: string | null;
749
754
  yearsOfExperience: number | null;
755
+ recentlyChangedJobs: boolean | null;
750
756
  locationCity: string | null;
751
757
  locationCountry: string | null;
752
- summary: string | null;
753
758
  numConnections: number | null;
754
759
  currentEmployers: {
760
+ title: string | null;
755
761
  companyName: string | null;
756
762
  companyLinkedinUrl: string | null;
757
- title: string | null;
758
- companyIndustries: string[] | null;
759
763
  seniorityLevel: string | null;
760
764
  functionCategory: string | null;
761
765
  startDate: string | number | null;
762
766
  yearsAtCompany: number | null;
763
767
  companyHeadcount: number | null;
768
+ companyIndustries: string[] | null;
764
769
  }[] | null;
765
770
  pastEmployers: {
766
- companyName: string | null;
767
771
  title: string | null;
772
+ companyName: string | null;
768
773
  startDate: string | number | null;
769
774
  endDate: string | number | null;
770
775
  }[] | null;
776
+ }, {
777
+ title: string | null;
778
+ name: string | null;
779
+ summary: string | null;
780
+ location: string | null;
781
+ headline: string | null;
782
+ seniorityLevel: string | null;
783
+ emails: string[] | null;
784
+ languages: string[] | null;
785
+ skills: string[] | null;
771
786
  education: {
772
787
  instituteName: string | null;
773
788
  degreeName: string | null;
774
789
  fieldOfStudy: string | null;
775
790
  }[] | null;
776
- }, {
777
- title: string | null;
778
- location: string | null;
779
- skills: string[] | null;
780
- languages: string[] | null;
781
- recentlyChangedJobs: boolean | null;
782
- name: string | null;
783
- headline: string | null;
791
+ websites: string[] | null;
784
792
  linkedinUrl: string | null;
785
793
  profilePictureUrl: string | null;
786
- emails: string[] | null;
787
794
  twitterHandle: string | null;
788
- websites: string[] | null;
789
- seniorityLevel: string | null;
790
795
  yearsOfExperience: number | null;
796
+ recentlyChangedJobs: boolean | null;
791
797
  locationCity: string | null;
792
798
  locationCountry: string | null;
793
- summary: string | null;
794
799
  numConnections: number | null;
795
800
  currentEmployers: {
801
+ title: string | null;
796
802
  companyName: string | null;
797
803
  companyLinkedinUrl: string | null;
798
- title: string | null;
799
- companyIndustries: string[] | null;
800
804
  seniorityLevel: string | null;
801
805
  functionCategory: string | null;
802
806
  startDate: string | number | null;
803
807
  yearsAtCompany: number | null;
804
808
  companyHeadcount: number | null;
809
+ companyIndustries: string[] | null;
805
810
  }[] | null;
806
811
  pastEmployers: {
807
- companyName: string | null;
808
812
  title: string | null;
813
+ companyName: string | null;
809
814
  startDate: string | number | null;
810
815
  endDate: string | number | null;
811
816
  }[] | 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;
822
824
  people: {
823
825
  title: string | null;
824
- location: string | null;
825
- skills: string[] | null;
826
- languages: string[] | null;
827
- recentlyChangedJobs: boolean | null;
828
826
  name: string | null;
827
+ summary: string | null;
828
+ location: string | null;
829
829
  headline: string | null;
830
+ seniorityLevel: string | null;
831
+ emails: string[] | null;
832
+ languages: string[] | null;
833
+ skills: string[] | null;
834
+ education: {
835
+ instituteName: string | null;
836
+ degreeName: string | null;
837
+ fieldOfStudy: string | null;
838
+ }[] | null;
839
+ websites: string[] | null;
830
840
  linkedinUrl: string | null;
831
841
  profilePictureUrl: string | null;
832
- emails: string[] | null;
833
842
  twitterHandle: string | null;
834
- websites: string[] | null;
835
- seniorityLevel: string | null;
836
843
  yearsOfExperience: number | null;
844
+ recentlyChangedJobs: boolean | null;
837
845
  locationCity: string | null;
838
846
  locationCountry: string | null;
839
- summary: string | null;
840
847
  numConnections: number | null;
841
848
  currentEmployers: {
849
+ title: string | null;
842
850
  companyName: string | null;
843
851
  companyLinkedinUrl: string | null;
844
- title: string | null;
845
- companyIndustries: string[] | null;
846
852
  seniorityLevel: string | null;
847
853
  functionCategory: string | null;
848
854
  startDate: string | number | null;
849
855
  yearsAtCompany: number | null;
850
856
  companyHeadcount: number | null;
857
+ companyIndustries: string[] | null;
851
858
  }[] | null;
852
859
  pastEmployers: {
853
- companyName: string | null;
854
860
  title: string | null;
861
+ companyName: string | null;
855
862
  startDate: string | number | null;
856
863
  endDate: string | number | null;
857
864
  }[] | null;
858
- education: {
859
- instituteName: string | null;
860
- degreeName: string | null;
861
- fieldOfStudy: string | null;
862
- }[] | null;
863
865
  }[];
864
866
  totalCount: number;
867
+ }, {
865
868
  success: boolean;
866
869
  error: string;
867
- }, {
868
870
  people: {
869
871
  title: string | null;
870
- location: string | null;
871
- skills: string[] | null;
872
- languages: string[] | null;
873
- recentlyChangedJobs: boolean | null;
874
872
  name: string | null;
873
+ summary: string | null;
874
+ location: string | null;
875
875
  headline: string | null;
876
+ seniorityLevel: string | null;
877
+ emails: string[] | null;
878
+ languages: string[] | null;
879
+ skills: string[] | null;
880
+ education: {
881
+ instituteName: string | null;
882
+ degreeName: string | null;
883
+ fieldOfStudy: string | null;
884
+ }[] | null;
885
+ websites: string[] | null;
876
886
  linkedinUrl: string | null;
877
887
  profilePictureUrl: string | null;
878
- emails: string[] | null;
879
888
  twitterHandle: string | null;
880
- websites: string[] | null;
881
- seniorityLevel: string | null;
882
889
  yearsOfExperience: number | null;
890
+ recentlyChangedJobs: boolean | null;
883
891
  locationCity: string | null;
884
892
  locationCountry: string | null;
885
- summary: string | null;
886
893
  numConnections: number | null;
887
894
  currentEmployers: {
895
+ title: string | null;
888
896
  companyName: string | null;
889
897
  companyLinkedinUrl: string | null;
890
- title: string | null;
891
- companyIndustries: string[] | null;
892
898
  seniorityLevel: string | null;
893
899
  functionCategory: string | null;
894
900
  startDate: string | number | null;
895
901
  yearsAtCompany: number | null;
896
902
  companyHeadcount: number | null;
903
+ companyIndustries: string[] | null;
897
904
  }[] | null;
898
905
  pastEmployers: {
899
- companyName: string | null;
900
906
  title: string | null;
907
+ companyName: string | null;
901
908
  startDate: string | number | null;
902
909
  endDate: string | number | null;
903
910
  }[] | null;
904
- education: {
905
- instituteName: string | null;
906
- degreeName: string | null;
907
- fieldOfStudy: string | null;
908
- }[] | null;
909
911
  }[];
910
912
  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 ";