@bubblelab/bubble-core 0.1.24 → 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 (56) hide show
  1. package/dist/bubble-bundle.d.ts +73 -73
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +405 -405
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +332 -332
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +277 -277
  15. package/dist/bubbles/service-bubble/github.d.ts +132 -132
  16. package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
  17. package/dist/bubbles/service-bubble/google-calendar.d.ts +112 -112
  18. package/dist/bubbles/service-bubble/google-drive.d.ts +38 -38
  19. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  21. package/dist/bubbles/service-bubble/http.d.ts +16 -16
  22. package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
  23. package/dist/bubbles/service-bubble/notion/notion.d.ts +1098 -1098
  24. package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
  25. package/dist/bubbles/service-bubble/resend.d.ts +12 -12
  26. package/dist/bubbles/service-bubble/slack/slack.d.ts +184 -184
  27. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  28. package/dist/bubbles/service-bubble/telegram.d.ts +1420 -1420
  29. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  30. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +139 -139
  31. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.js +27 -6
  33. package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
  34. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  35. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +142 -142
  37. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  38. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +161 -161
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  40. package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
  41. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  42. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  43. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  46. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  49. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  50. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
  51. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +38 -38
  52. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  53. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
  54. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +64 -64
  55. package/dist/bubbles.json +7 -7
  56. 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
+ companyIndustries: string[] | null;
38
39
  seniorityLevel: string | null;
39
40
  functionCategory: string | null;
40
- startDate: 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
+ companyIndustries: string[] | null;
48
49
  seniorityLevel: string | null;
49
50
  functionCategory: string | null;
50
- startDate: 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,26 +82,26 @@ declare const PersonResultSchema: z.ZodObject<{
82
82
  fieldOfStudy: string | null;
83
83
  }>, "many">>;
84
84
  }, "strip", z.ZodTypeAny, {
85
- title: string | null;
86
85
  name: string | null;
87
- summary: string | null;
88
- location: string | null;
89
86
  headline: string | null;
90
- seniorityLevel: string | null;
87
+ location: string | null;
88
+ title: string | null;
91
89
  emails: string[] | null;
92
- languages: string[] | null;
93
90
  skills: string[] | null;
91
+ languages: string[] | null;
92
+ summary: string | null;
94
93
  education: {
95
94
  instituteName: string | null;
96
95
  degreeName: string | null;
97
96
  fieldOfStudy: string | null;
98
97
  }[] | null;
99
98
  websites: string[] | null;
99
+ recentlyChangedJobs: boolean | null;
100
100
  linkedinUrl: string | null;
101
101
  profilePictureUrl: string | null;
102
102
  twitterHandle: string | null;
103
+ seniorityLevel: string | null;
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,40 +109,40 @@ declare const PersonResultSchema: z.ZodObject<{
109
109
  title: string | null;
110
110
  companyName: string | null;
111
111
  companyLinkedinUrl: string | null;
112
+ companyIndustries: string[] | null;
112
113
  seniorityLevel: string | null;
113
114
  functionCategory: string | null;
114
- startDate: 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
- summary: string | null;
129
- location: string | null;
130
127
  headline: string | null;
131
- seniorityLevel: string | null;
128
+ location: string | null;
129
+ title: string | null;
132
130
  emails: string[] | null;
133
- languages: string[] | null;
134
131
  skills: string[] | null;
132
+ languages: string[] | null;
133
+ summary: string | null;
135
134
  education: {
136
135
  instituteName: string | null;
137
136
  degreeName: string | null;
138
137
  fieldOfStudy: string | null;
139
138
  }[] | null;
140
139
  websites: string[] | null;
140
+ recentlyChangedJobs: boolean | null;
141
141
  linkedinUrl: string | null;
142
142
  profilePictureUrl: string | null;
143
143
  twitterHandle: string | null;
144
+ seniorityLevel: string | null;
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
+ companyIndustries: string[] | null;
153
154
  seniorityLevel: string | null;
154
155
  functionCategory: string | null;
155
- startDate: 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
+ location?: string | undefined;
206
+ skills?: string[] | undefined;
207
+ languages?: string[] | undefined;
208
+ city?: string | undefined;
209
+ country?: string | undefined;
205
210
  credentials?: Partial<Record<CredentialType, string>> | undefined;
206
211
  limit?: number | undefined;
207
- location?: string | undefined;
208
212
  companyName?: string | undefined;
209
213
  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;
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
+ location?: string | undefined;
237
+ skills?: string[] | undefined;
238
+ languages?: string[] | undefined;
239
+ city?: string | undefined;
240
+ country?: string | undefined;
236
241
  credentials?: Partial<Record<CredentialType, string>> | undefined;
237
242
  limit?: number | undefined;
238
- location?: string | undefined;
239
243
  companyName?: string | undefined;
240
244
  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;
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
+ companyIndustries: string[] | null;
301
302
  seniorityLevel: string | null;
302
303
  functionCategory: string | null;
303
- startDate: 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
+ companyIndustries: string[] | null;
311
312
  seniorityLevel: string | null;
312
313
  functionCategory: string | null;
313
- startDate: 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,26 +345,26 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
345
345
  fieldOfStudy: string | null;
346
346
  }>, "many">>;
347
347
  }, "strip", z.ZodTypeAny, {
348
- title: string | null;
349
348
  name: string | null;
350
- summary: string | null;
351
- location: string | null;
352
349
  headline: string | null;
353
- seniorityLevel: string | null;
350
+ location: string | null;
351
+ title: string | null;
354
352
  emails: string[] | null;
355
- languages: string[] | null;
356
353
  skills: string[] | null;
354
+ languages: string[] | null;
355
+ summary: string | null;
357
356
  education: {
358
357
  instituteName: string | null;
359
358
  degreeName: string | null;
360
359
  fieldOfStudy: string | null;
361
360
  }[] | null;
362
361
  websites: string[] | null;
362
+ recentlyChangedJobs: boolean | null;
363
363
  linkedinUrl: string | null;
364
364
  profilePictureUrl: string | null;
365
365
  twitterHandle: string | null;
366
+ seniorityLevel: string | null;
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,40 +372,40 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
372
372
  title: string | null;
373
373
  companyName: string | null;
374
374
  companyLinkedinUrl: string | null;
375
+ companyIndustries: string[] | null;
375
376
  seniorityLevel: string | null;
376
377
  functionCategory: string | null;
377
- startDate: 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
- summary: string | null;
392
- location: string | null;
393
390
  headline: string | null;
394
- seniorityLevel: string | null;
391
+ location: string | null;
392
+ title: string | null;
395
393
  emails: string[] | null;
396
- languages: string[] | null;
397
394
  skills: string[] | null;
395
+ languages: string[] | null;
396
+ summary: string | null;
398
397
  education: {
399
398
  instituteName: string | null;
400
399
  degreeName: string | null;
401
400
  fieldOfStudy: string | null;
402
401
  }[] | null;
403
402
  websites: string[] | null;
403
+ recentlyChangedJobs: boolean | null;
404
404
  linkedinUrl: string | null;
405
405
  profilePictureUrl: string | null;
406
406
  twitterHandle: string | null;
407
+ seniorityLevel: string | null;
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
+ companyIndustries: string[] | null;
416
417
  seniorityLevel: string | null;
417
418
  functionCategory: string | null;
418
- startDate: 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,26 +434,26 @@ 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
- summary: string | null;
440
- location: string | null;
441
438
  headline: string | null;
442
- seniorityLevel: string | null;
439
+ location: string | null;
440
+ title: string | null;
443
441
  emails: string[] | null;
444
- languages: string[] | null;
445
442
  skills: string[] | null;
443
+ languages: string[] | null;
444
+ summary: string | null;
446
445
  education: {
447
446
  instituteName: string | null;
448
447
  degreeName: string | null;
449
448
  fieldOfStudy: string | null;
450
449
  }[] | null;
451
450
  websites: string[] | null;
451
+ recentlyChangedJobs: boolean | null;
452
452
  linkedinUrl: string | null;
453
453
  profilePictureUrl: string | null;
454
454
  twitterHandle: string | null;
455
+ seniorityLevel: string | null;
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
+ companyIndustries: string[] | null;
464
465
  seniorityLevel: string | null;
465
466
  functionCategory: string | null;
466
- startDate: 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,26 +480,26 @@ 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
- summary: string | null;
486
- location: string | null;
487
484
  headline: string | null;
488
- seniorityLevel: string | null;
485
+ location: string | null;
486
+ title: string | null;
489
487
  emails: string[] | null;
490
- languages: string[] | null;
491
488
  skills: string[] | null;
489
+ languages: string[] | null;
490
+ summary: string | null;
492
491
  education: {
493
492
  instituteName: string | null;
494
493
  degreeName: string | null;
495
494
  fieldOfStudy: string | null;
496
495
  }[] | null;
497
496
  websites: string[] | null;
497
+ recentlyChangedJobs: boolean | null;
498
498
  linkedinUrl: string | null;
499
499
  profilePictureUrl: string | null;
500
500
  twitterHandle: string | null;
501
+ seniorityLevel: string | null;
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
+ companyIndustries: string[] | null;
510
511
  seniorityLevel: string | null;
511
512
  functionCategory: string | null;
512
- startDate: 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
+ location?: string | undefined;
594
+ skills?: string[] | undefined;
595
+ languages?: string[] | undefined;
596
+ city?: string | undefined;
597
+ country?: string | undefined;
593
598
  credentials?: Partial<Record<CredentialType, string>> | undefined;
594
599
  limit?: number | undefined;
595
- location?: string | undefined;
596
600
  companyName?: string | undefined;
597
601
  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;
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
+ location?: string | undefined;
625
+ skills?: string[] | undefined;
626
+ languages?: string[] | undefined;
627
+ city?: string | undefined;
628
+ country?: string | undefined;
624
629
  credentials?: Partial<Record<CredentialType, string>> | undefined;
625
630
  limit?: number | undefined;
626
- location?: string | undefined;
627
631
  companyName?: string | undefined;
628
632
  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;
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
+ companyIndustries: string[] | null;
689
690
  seniorityLevel: string | null;
690
691
  functionCategory: string | null;
691
- startDate: 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
+ companyIndustries: string[] | null;
699
700
  seniorityLevel: string | null;
700
701
  functionCategory: string | null;
701
- startDate: 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,26 +733,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
733
733
  fieldOfStudy: string | null;
734
734
  }>, "many">>;
735
735
  }, "strip", z.ZodTypeAny, {
736
- title: string | null;
737
736
  name: string | null;
738
- summary: string | null;
739
- location: string | null;
740
737
  headline: string | null;
741
- seniorityLevel: string | null;
738
+ location: string | null;
739
+ title: string | null;
742
740
  emails: string[] | null;
743
- languages: string[] | null;
744
741
  skills: string[] | null;
742
+ languages: string[] | null;
743
+ summary: string | null;
745
744
  education: {
746
745
  instituteName: string | null;
747
746
  degreeName: string | null;
748
747
  fieldOfStudy: string | null;
749
748
  }[] | null;
750
749
  websites: string[] | null;
750
+ recentlyChangedJobs: boolean | null;
751
751
  linkedinUrl: string | null;
752
752
  profilePictureUrl: string | null;
753
753
  twitterHandle: string | null;
754
+ seniorityLevel: string | null;
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,40 +760,40 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
760
760
  title: string | null;
761
761
  companyName: string | null;
762
762
  companyLinkedinUrl: string | null;
763
+ companyIndustries: string[] | null;
763
764
  seniorityLevel: string | null;
764
765
  functionCategory: string | null;
765
- startDate: 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
- summary: string | null;
780
- location: string | null;
781
778
  headline: string | null;
782
- seniorityLevel: string | null;
779
+ location: string | null;
780
+ title: string | null;
783
781
  emails: string[] | null;
784
- languages: string[] | null;
785
782
  skills: string[] | null;
783
+ languages: string[] | null;
784
+ summary: string | null;
786
785
  education: {
787
786
  instituteName: string | null;
788
787
  degreeName: string | null;
789
788
  fieldOfStudy: string | null;
790
789
  }[] | null;
791
790
  websites: string[] | null;
791
+ recentlyChangedJobs: boolean | null;
792
792
  linkedinUrl: string | null;
793
793
  profilePictureUrl: string | null;
794
794
  twitterHandle: string | null;
795
+ seniorityLevel: string | null;
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
+ companyIndustries: string[] | null;
804
805
  seniorityLevel: string | null;
805
806
  functionCategory: string | null;
806
- startDate: 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,26 +822,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
822
822
  success: boolean;
823
823
  error: string;
824
824
  people: {
825
- title: string | null;
826
825
  name: string | null;
827
- summary: string | null;
828
- location: string | null;
829
826
  headline: string | null;
830
- seniorityLevel: string | null;
827
+ location: string | null;
828
+ title: string | null;
831
829
  emails: string[] | null;
832
- languages: string[] | null;
833
830
  skills: string[] | null;
831
+ languages: string[] | null;
832
+ summary: string | null;
834
833
  education: {
835
834
  instituteName: string | null;
836
835
  degreeName: string | null;
837
836
  fieldOfStudy: string | null;
838
837
  }[] | null;
839
838
  websites: string[] | null;
839
+ recentlyChangedJobs: boolean | null;
840
840
  linkedinUrl: string | null;
841
841
  profilePictureUrl: string | null;
842
842
  twitterHandle: string | null;
843
+ seniorityLevel: string | null;
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
+ companyIndustries: string[] | null;
852
853
  seniorityLevel: string | null;
853
854
  functionCategory: string | null;
854
- startDate: 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,26 +868,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
868
868
  success: boolean;
869
869
  error: string;
870
870
  people: {
871
- title: string | null;
872
871
  name: string | null;
873
- summary: string | null;
874
- location: string | null;
875
872
  headline: string | null;
876
- seniorityLevel: string | null;
873
+ location: string | null;
874
+ title: string | null;
877
875
  emails: string[] | null;
878
- languages: string[] | null;
879
876
  skills: string[] | null;
877
+ languages: string[] | null;
878
+ summary: string | null;
880
879
  education: {
881
880
  instituteName: string | null;
882
881
  degreeName: string | null;
883
882
  fieldOfStudy: string | null;
884
883
  }[] | null;
885
884
  websites: string[] | null;
885
+ recentlyChangedJobs: boolean | null;
886
886
  linkedinUrl: string | null;
887
887
  profilePictureUrl: string | null;
888
888
  twitterHandle: string | null;
889
+ seniorityLevel: string | null;
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
+ companyIndustries: string[] | null;
898
899
  seniorityLevel: string | null;
899
900
  functionCategory: string | null;
900
- startDate: 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;