@bubblelab/bubble-core 0.1.23 → 0.1.25

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