@bubblelab/bubble-core 0.1.44 → 0.1.45

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 (43) hide show
  1. package/dist/bubble-bundle.d.ts +67 -67
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
  6. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +6 -6
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
  11. package/dist/bubbles/service-bubble/firecrawl.d.ts +268 -268
  12. package/dist/bubbles/service-bubble/followupboss.d.ts +172 -172
  13. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
  14. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
  17. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
  18. package/dist/bubbles/service-bubble/github.d.ts +28 -28
  19. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  20. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  21. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  22. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +88 -88
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
  30. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +50 -50
  31. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
  34. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +330 -330
  35. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
  36. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
  38. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
  39. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
  40. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  41. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
  42. package/dist/bubbles.json +1 -1
  43. package/package.json +2 -2
@@ -14,9 +14,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
14
14
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  operation: "getUploadUrl";
17
+ region: string;
17
18
  bucketName: string;
18
19
  fileName: string;
19
- region: string;
20
20
  expirationMinutes: number;
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  accountId?: string | undefined;
@@ -27,8 +27,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
27
27
  bucketName: string;
28
28
  fileName: string;
29
29
  credentials?: Partial<Record<CredentialType, string>> | undefined;
30
- accountId?: string | undefined;
31
30
  region?: string | undefined;
31
+ accountId?: string | undefined;
32
32
  expirationMinutes?: number | undefined;
33
33
  contentType?: string | undefined;
34
34
  userId?: string | undefined;
@@ -43,9 +43,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
43
43
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
44
44
  }, "strip", z.ZodTypeAny, {
45
45
  operation: "getFile";
46
+ region: string;
46
47
  bucketName: string;
47
48
  fileName: string;
48
- region: string;
49
49
  expirationMinutes: number;
50
50
  credentials?: Partial<Record<CredentialType, string>> | undefined;
51
51
  accountId?: string | undefined;
@@ -55,8 +55,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
55
55
  bucketName: string;
56
56
  fileName: string;
57
57
  credentials?: Partial<Record<CredentialType, string>> | undefined;
58
- accountId?: string | undefined;
59
58
  region?: string | undefined;
59
+ accountId?: string | undefined;
60
60
  expirationMinutes?: number | undefined;
61
61
  userId?: string | undefined;
62
62
  }>, z.ZodObject<{
@@ -68,9 +68,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
68
68
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
69
69
  }, "strip", z.ZodTypeAny, {
70
70
  operation: "deleteFile";
71
+ region: string;
71
72
  bucketName: string;
72
73
  fileName: string;
73
- region: string;
74
74
  credentials?: Partial<Record<CredentialType, string>> | undefined;
75
75
  accountId?: string | undefined;
76
76
  }, {
@@ -78,8 +78,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
78
78
  bucketName: string;
79
79
  fileName: string;
80
80
  credentials?: Partial<Record<CredentialType, string>> | undefined;
81
- accountId?: string | undefined;
82
81
  region?: string | undefined;
82
+ accountId?: string | undefined;
83
83
  }>, z.ZodObject<{
84
84
  operation: z.ZodLiteral<"updateFile">;
85
85
  bucketName: z.ZodDefault<z.ZodString>;
@@ -91,9 +91,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
91
91
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
92
92
  }, "strip", z.ZodTypeAny, {
93
93
  operation: "updateFile";
94
+ region: string;
94
95
  bucketName: string;
95
96
  fileName: string;
96
- region: string;
97
97
  fileContent: string;
98
98
  credentials?: Partial<Record<CredentialType, string>> | undefined;
99
99
  accountId?: string | undefined;
@@ -103,9 +103,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
103
103
  fileName: string;
104
104
  fileContent: string;
105
105
  credentials?: Partial<Record<CredentialType, string>> | undefined;
106
+ region?: string | undefined;
106
107
  bucketName?: string | undefined;
107
108
  accountId?: string | undefined;
108
- region?: string | undefined;
109
109
  contentType?: string | undefined;
110
110
  }>, z.ZodObject<{
111
111
  operation: z.ZodLiteral<"getMultipleUploadUrls">;
@@ -119,8 +119,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
119
119
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
120
120
  }, "strip", z.ZodTypeAny, {
121
121
  operation: "getMultipleUploadUrls";
122
- bucketName: string;
123
122
  region: string;
123
+ bucketName: string;
124
124
  expirationMinutes: number;
125
125
  pdfFileName: string;
126
126
  pageCount: number;
@@ -133,8 +133,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
133
133
  pdfFileName: string;
134
134
  pageCount: number;
135
135
  credentials?: Partial<Record<CredentialType, string>> | undefined;
136
- accountId?: string | undefined;
137
136
  region?: string | undefined;
137
+ accountId?: string | undefined;
138
138
  expirationMinutes?: number | undefined;
139
139
  userId?: string | undefined;
140
140
  }>]>;
@@ -294,9 +294,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
294
294
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
295
295
  }, "strip", z.ZodTypeAny, {
296
296
  operation: "getUploadUrl";
297
+ region: string;
297
298
  bucketName: string;
298
299
  fileName: string;
299
- region: string;
300
300
  expirationMinutes: number;
301
301
  credentials?: Partial<Record<CredentialType, string>> | undefined;
302
302
  accountId?: string | undefined;
@@ -307,8 +307,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
307
307
  bucketName: string;
308
308
  fileName: string;
309
309
  credentials?: Partial<Record<CredentialType, string>> | undefined;
310
- accountId?: string | undefined;
311
310
  region?: string | undefined;
311
+ accountId?: string | undefined;
312
312
  expirationMinutes?: number | undefined;
313
313
  contentType?: string | undefined;
314
314
  userId?: string | undefined;
@@ -323,9 +323,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
323
323
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
324
324
  }, "strip", z.ZodTypeAny, {
325
325
  operation: "getFile";
326
+ region: string;
326
327
  bucketName: string;
327
328
  fileName: string;
328
- region: string;
329
329
  expirationMinutes: number;
330
330
  credentials?: Partial<Record<CredentialType, string>> | undefined;
331
331
  accountId?: string | undefined;
@@ -335,8 +335,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
335
335
  bucketName: string;
336
336
  fileName: string;
337
337
  credentials?: Partial<Record<CredentialType, string>> | undefined;
338
- accountId?: string | undefined;
339
338
  region?: string | undefined;
339
+ accountId?: string | undefined;
340
340
  expirationMinutes?: number | undefined;
341
341
  userId?: string | undefined;
342
342
  }>, z.ZodObject<{
@@ -348,9 +348,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
348
348
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
349
349
  }, "strip", z.ZodTypeAny, {
350
350
  operation: "deleteFile";
351
+ region: string;
351
352
  bucketName: string;
352
353
  fileName: string;
353
- region: string;
354
354
  credentials?: Partial<Record<CredentialType, string>> | undefined;
355
355
  accountId?: string | undefined;
356
356
  }, {
@@ -358,8 +358,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
358
358
  bucketName: string;
359
359
  fileName: string;
360
360
  credentials?: Partial<Record<CredentialType, string>> | undefined;
361
- accountId?: string | undefined;
362
361
  region?: string | undefined;
362
+ accountId?: string | undefined;
363
363
  }>, z.ZodObject<{
364
364
  operation: z.ZodLiteral<"updateFile">;
365
365
  bucketName: z.ZodDefault<z.ZodString>;
@@ -371,9 +371,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
371
371
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
372
372
  }, "strip", z.ZodTypeAny, {
373
373
  operation: "updateFile";
374
+ region: string;
374
375
  bucketName: string;
375
376
  fileName: string;
376
- region: string;
377
377
  fileContent: string;
378
378
  credentials?: Partial<Record<CredentialType, string>> | undefined;
379
379
  accountId?: string | undefined;
@@ -383,9 +383,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
383
383
  fileName: string;
384
384
  fileContent: string;
385
385
  credentials?: Partial<Record<CredentialType, string>> | undefined;
386
+ region?: string | undefined;
386
387
  bucketName?: string | undefined;
387
388
  accountId?: string | undefined;
388
- region?: string | undefined;
389
389
  contentType?: string | undefined;
390
390
  }>, z.ZodObject<{
391
391
  operation: z.ZodLiteral<"getMultipleUploadUrls">;
@@ -399,8 +399,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
399
399
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
400
400
  }, "strip", z.ZodTypeAny, {
401
401
  operation: "getMultipleUploadUrls";
402
- bucketName: string;
403
402
  region: string;
403
+ bucketName: string;
404
404
  expirationMinutes: number;
405
405
  pdfFileName: string;
406
406
  pageCount: number;
@@ -413,8 +413,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
413
413
  pdfFileName: string;
414
414
  pageCount: number;
415
415
  credentials?: Partial<Record<CredentialType, string>> | undefined;
416
- accountId?: string | undefined;
417
416
  region?: string | undefined;
417
+ accountId?: string | undefined;
418
418
  expirationMinutes?: number | undefined;
419
419
  userId?: string | undefined;
420
420
  }>]>;
@@ -37,8 +37,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
37
37
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
38
38
  }, "strip", import("zod").ZodTypeAny, {
39
39
  operation: "add_to_cart";
40
- product_url: string;
41
40
  quantity: number;
41
+ product_url: string;
42
42
  credentials?: Partial<Record<CredentialType, string>> | undefined;
43
43
  }, {
44
44
  operation: "add_to_cart";
@@ -137,15 +137,15 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
137
137
  }, "strip", import("zod").ZodTypeAny, {
138
138
  title: string;
139
139
  price: string;
140
- quantity: number;
141
140
  asin: string;
141
+ quantity: number;
142
142
  url?: string | undefined;
143
143
  image?: string | undefined;
144
144
  }, {
145
145
  title: string;
146
146
  price: string;
147
- quantity: number;
148
147
  asin: string;
148
+ quantity: number;
149
149
  url?: string | undefined;
150
150
  image?: string | undefined;
151
151
  }>, "many">>;
@@ -160,8 +160,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
160
160
  items?: {
161
161
  title: string;
162
162
  price: string;
163
- quantity: number;
164
163
  asin: string;
164
+ quantity: number;
165
165
  url?: string | undefined;
166
166
  image?: string | undefined;
167
167
  }[] | undefined;
@@ -175,8 +175,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
175
175
  items?: {
176
176
  title: string;
177
177
  price: string;
178
- quantity: number;
179
178
  asin: string;
179
+ quantity: number;
180
180
  url?: string | undefined;
181
181
  image?: string | undefined;
182
182
  }[] | undefined;
@@ -66,11 +66,11 @@ declare const ContactSchema: z.ZodObject<{
66
66
  }, "strip", z.ZodTypeAny, {
67
67
  title: string | null;
68
68
  name: string | null;
69
+ emails: string[] | null;
69
70
  headline: string | null;
70
71
  location: string | null;
71
72
  summary: string | null;
72
73
  role: "founder" | "cxo" | "decision_maker";
73
- emails: string[] | null;
74
74
  languages: string[] | null;
75
75
  skills: string[] | null;
76
76
  education: {
@@ -97,11 +97,11 @@ declare const ContactSchema: z.ZodObject<{
97
97
  }, {
98
98
  title: string | null;
99
99
  name: string | null;
100
+ emails: string[] | null;
100
101
  headline: string | null;
101
102
  location: string | null;
102
103
  summary: string | null;
103
104
  role: "founder" | "cxo" | "decision_maker";
104
- emails: string[] | null;
105
105
  languages: string[] | null;
106
106
  skills: string[] | null;
107
107
  education: {
@@ -204,11 +204,11 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
204
204
  }, "strip", z.ZodTypeAny, {
205
205
  title: string | null;
206
206
  name: string | null;
207
+ emails: string[] | null;
207
208
  headline: string | null;
208
209
  location: string | null;
209
210
  summary: string | null;
210
211
  role: "founder" | "cxo" | "decision_maker";
211
- emails: string[] | null;
212
212
  languages: string[] | null;
213
213
  skills: string[] | null;
214
214
  education: {
@@ -235,11 +235,11 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
235
235
  }, {
236
236
  title: string | null;
237
237
  name: string | null;
238
+ emails: string[] | null;
238
239
  headline: string | null;
239
240
  location: string | null;
240
241
  summary: string | null;
241
242
  role: "founder" | "cxo" | "decision_maker";
242
- emails: string[] | null;
243
243
  languages: string[] | null;
244
244
  skills: string[] | null;
245
245
  education: {
@@ -279,8 +279,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
279
279
  }, "strip", z.ZodTypeAny, {
280
280
  description: string | null;
281
281
  name: string | null;
282
- website: string | null;
283
282
  industry: string | null;
283
+ website: string | null;
284
284
  headcount: number | null;
285
285
  linkedinUrl: string | null;
286
286
  hqCity: string | null;
@@ -291,8 +291,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
291
291
  }, {
292
292
  description: string | null;
293
293
  name: string | null;
294
- website: string | null;
295
294
  industry: string | null;
295
+ website: string | null;
296
296
  headcount: number | null;
297
297
  linkedinUrl: string | null;
298
298
  hqCity: string | null;
@@ -305,29 +305,14 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
305
305
  success: z.ZodBoolean;
306
306
  error: z.ZodString;
307
307
  }, "strip", z.ZodTypeAny, {
308
- success: boolean;
309
- error: string;
310
- company: {
311
- description: string | null;
312
- name: string | null;
313
- website: string | null;
314
- industry: string | null;
315
- headcount: number | null;
316
- linkedinUrl: string | null;
317
- hqCity: string | null;
318
- hqCountry: string | null;
319
- yearFounded: number | null;
320
- fundingStage: string | null;
321
- totalFunding: string | null;
322
- } | null;
323
308
  contacts: {
324
309
  title: string | null;
325
310
  name: string | null;
311
+ emails: string[] | null;
326
312
  headline: string | null;
327
313
  location: string | null;
328
314
  summary: string | null;
329
315
  role: "founder" | "cxo" | "decision_maker";
330
- emails: string[] | null;
331
316
  languages: string[] | null;
332
317
  skills: string[] | null;
333
318
  education: {
@@ -352,15 +337,13 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
352
337
  endDate: string | number | null;
353
338
  }[] | null;
354
339
  }[];
355
- totalContacts: number;
356
- }, {
357
340
  success: boolean;
358
341
  error: string;
359
342
  company: {
360
343
  description: string | null;
361
344
  name: string | null;
362
- website: string | null;
363
345
  industry: string | null;
346
+ website: string | null;
364
347
  headcount: number | null;
365
348
  linkedinUrl: string | null;
366
349
  hqCity: string | null;
@@ -369,14 +352,16 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
369
352
  fundingStage: string | null;
370
353
  totalFunding: string | null;
371
354
  } | null;
355
+ totalContacts: number;
356
+ }, {
372
357
  contacts: {
373
358
  title: string | null;
374
359
  name: string | null;
360
+ emails: string[] | null;
375
361
  headline: string | null;
376
362
  location: string | null;
377
363
  summary: string | null;
378
364
  role: "founder" | "cxo" | "decision_maker";
379
- emails: string[] | null;
380
365
  languages: string[] | null;
381
366
  skills: string[] | null;
382
367
  education: {
@@ -401,6 +386,21 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
401
386
  endDate: string | number | null;
402
387
  }[] | null;
403
388
  }[];
389
+ success: boolean;
390
+ error: string;
391
+ company: {
392
+ description: string | null;
393
+ name: string | null;
394
+ industry: string | null;
395
+ website: string | null;
396
+ headcount: number | null;
397
+ linkedinUrl: string | null;
398
+ hqCity: string | null;
399
+ hqCountry: string | null;
400
+ yearFounded: number | null;
401
+ fundingStage: string | null;
402
+ totalFunding: string | null;
403
+ } | null;
404
404
  totalContacts: number;
405
405
  }>;
406
406
  type CompanyEnrichmentToolParams = z.output<typeof CompanyEnrichmentToolParamsSchema>;
@@ -505,11 +505,11 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
505
505
  }, "strip", z.ZodTypeAny, {
506
506
  title: string | null;
507
507
  name: string | null;
508
+ emails: string[] | null;
508
509
  headline: string | null;
509
510
  location: string | null;
510
511
  summary: string | null;
511
512
  role: "founder" | "cxo" | "decision_maker";
512
- emails: string[] | null;
513
513
  languages: string[] | null;
514
514
  skills: string[] | null;
515
515
  education: {
@@ -536,11 +536,11 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
536
536
  }, {
537
537
  title: string | null;
538
538
  name: string | null;
539
+ emails: string[] | null;
539
540
  headline: string | null;
540
541
  location: string | null;
541
542
  summary: string | null;
542
543
  role: "founder" | "cxo" | "decision_maker";
543
- emails: string[] | null;
544
544
  languages: string[] | null;
545
545
  skills: string[] | null;
546
546
  education: {
@@ -580,8 +580,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
580
580
  }, "strip", z.ZodTypeAny, {
581
581
  description: string | null;
582
582
  name: string | null;
583
- website: string | null;
584
583
  industry: string | null;
584
+ website: string | null;
585
585
  headcount: number | null;
586
586
  linkedinUrl: string | null;
587
587
  hqCity: string | null;
@@ -592,8 +592,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
592
592
  }, {
593
593
  description: string | null;
594
594
  name: string | null;
595
- website: string | null;
596
595
  industry: string | null;
596
+ website: string | null;
597
597
  headcount: number | null;
598
598
  linkedinUrl: string | null;
599
599
  hqCity: string | null;
@@ -606,29 +606,14 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
606
606
  success: z.ZodBoolean;
607
607
  error: z.ZodString;
608
608
  }, "strip", z.ZodTypeAny, {
609
- success: boolean;
610
- error: string;
611
- company: {
612
- description: string | null;
613
- name: string | null;
614
- website: string | null;
615
- industry: string | null;
616
- headcount: number | null;
617
- linkedinUrl: string | null;
618
- hqCity: string | null;
619
- hqCountry: string | null;
620
- yearFounded: number | null;
621
- fundingStage: string | null;
622
- totalFunding: string | null;
623
- } | null;
624
609
  contacts: {
625
610
  title: string | null;
626
611
  name: string | null;
612
+ emails: string[] | null;
627
613
  headline: string | null;
628
614
  location: string | null;
629
615
  summary: string | null;
630
616
  role: "founder" | "cxo" | "decision_maker";
631
- emails: string[] | null;
632
617
  languages: string[] | null;
633
618
  skills: string[] | null;
634
619
  education: {
@@ -653,15 +638,13 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
653
638
  endDate: string | number | null;
654
639
  }[] | null;
655
640
  }[];
656
- totalContacts: number;
657
- }, {
658
641
  success: boolean;
659
642
  error: string;
660
643
  company: {
661
644
  description: string | null;
662
645
  name: string | null;
663
- website: string | null;
664
646
  industry: string | null;
647
+ website: string | null;
665
648
  headcount: number | null;
666
649
  linkedinUrl: string | null;
667
650
  hqCity: string | null;
@@ -670,14 +653,16 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
670
653
  fundingStage: string | null;
671
654
  totalFunding: string | null;
672
655
  } | null;
656
+ totalContacts: number;
657
+ }, {
673
658
  contacts: {
674
659
  title: string | null;
675
660
  name: string | null;
661
+ emails: string[] | null;
676
662
  headline: string | null;
677
663
  location: string | null;
678
664
  summary: string | null;
679
665
  role: "founder" | "cxo" | "decision_maker";
680
- emails: string[] | null;
681
666
  languages: string[] | null;
682
667
  skills: string[] | null;
683
668
  education: {
@@ -702,6 +687,21 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
702
687
  endDate: string | number | null;
703
688
  }[] | null;
704
689
  }[];
690
+ success: boolean;
691
+ error: string;
692
+ company: {
693
+ description: string | null;
694
+ name: string | null;
695
+ industry: string | null;
696
+ website: string | null;
697
+ headcount: number | null;
698
+ linkedinUrl: string | null;
699
+ hqCity: string | null;
700
+ hqCountry: string | null;
701
+ yearFounded: number | null;
702
+ fundingStage: string | null;
703
+ totalFunding: string | null;
704
+ } | null;
705
705
  totalContacts: number;
706
706
  }>;
707
707
  static readonly shortDescription = "Get key contacts (executives, decision makers) from any company for lead generation";
@@ -85,11 +85,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
85
85
  }, "strip", z.ZodTypeAny, {
86
86
  title: string | null;
87
87
  url: string | null;
88
+ phone: string | null;
88
89
  location: {
89
90
  lat: number | null;
90
91
  lng: number | null;
91
92
  } | null;
92
- phone: string | null;
93
93
  rating: number | null;
94
94
  category: string | null;
95
95
  address: string | null;
@@ -115,11 +115,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
115
115
  }, {
116
116
  title: string | null;
117
117
  url: string | null;
118
+ phone: string | null;
118
119
  location: {
119
120
  lat: number | null;
120
121
  lng: number | null;
121
122
  } | null;
122
- phone: string | null;
123
123
  rating: number | null;
124
124
  category: string | null;
125
125
  address: string | null;
@@ -153,11 +153,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
153
153
  places: {
154
154
  title: string | null;
155
155
  url: string | null;
156
+ phone: string | null;
156
157
  location: {
157
158
  lat: number | null;
158
159
  lng: number | null;
159
160
  } | null;
160
- phone: string | null;
161
161
  rating: number | null;
162
162
  category: string | null;
163
163
  address: string | null;
@@ -189,11 +189,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
189
189
  places: {
190
190
  title: string | null;
191
191
  url: string | null;
192
+ phone: string | null;
192
193
  location: {
193
194
  lat: number | null;
194
195
  lng: number | null;
195
196
  } | null;
196
- phone: string | null;
197
197
  rating: number | null;
198
198
  category: string | null;
199
199
  address: string | null;
@@ -307,11 +307,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
307
307
  }, "strip", z.ZodTypeAny, {
308
308
  title: string | null;
309
309
  url: string | null;
310
+ phone: string | null;
310
311
  location: {
311
312
  lat: number | null;
312
313
  lng: number | null;
313
314
  } | null;
314
- phone: string | null;
315
315
  rating: number | null;
316
316
  category: string | null;
317
317
  address: string | null;
@@ -337,11 +337,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
337
337
  }, {
338
338
  title: string | null;
339
339
  url: string | null;
340
+ phone: string | null;
340
341
  location: {
341
342
  lat: number | null;
342
343
  lng: number | null;
343
344
  } | null;
344
- phone: string | null;
345
345
  rating: number | null;
346
346
  category: string | null;
347
347
  address: string | null;
@@ -375,11 +375,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
375
375
  places: {
376
376
  title: string | null;
377
377
  url: string | null;
378
+ phone: string | null;
378
379
  location: {
379
380
  lat: number | null;
380
381
  lng: number | null;
381
382
  } | null;
382
- phone: string | null;
383
383
  rating: number | null;
384
384
  category: string | null;
385
385
  address: string | null;
@@ -411,11 +411,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
411
411
  places: {
412
412
  title: string | null;
413
413
  url: string | null;
414
+ phone: string | null;
414
415
  location: {
415
416
  lat: number | null;
416
417
  lng: number | null;
417
418
  } | null;
418
- phone: string | null;
419
419
  rating: number | null;
420
420
  category: string | null;
421
421
  address: string | null;
@@ -51,13 +51,13 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
51
51
  location: import("zod").ZodOptional<import("zod").ZodString>;
52
52
  profile_url: import("zod").ZodString;
53
53
  }, "strip", import("zod").ZodTypeAny, {
54
- profile_url: string;
55
54
  name: string;
55
+ profile_url: string;
56
56
  headline?: string | undefined;
57
57
  location?: string | undefined;
58
58
  }, {
59
- profile_url: string;
60
59
  name: string;
60
+ profile_url: string;
61
61
  headline?: string | undefined;
62
62
  location?: string | undefined;
63
63
  }>>;
@@ -68,8 +68,8 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
68
68
  error: string;
69
69
  message?: string | undefined;
70
70
  profile?: {
71
- profile_url: string;
72
71
  name: string;
72
+ profile_url: string;
73
73
  headline?: string | undefined;
74
74
  location?: string | undefined;
75
75
  } | undefined;
@@ -79,8 +79,8 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
79
79
  error: string;
80
80
  message?: string | undefined;
81
81
  profile?: {
82
- profile_url: string;
83
82
  name: string;
83
+ profile_url: string;
84
84
  headline?: string | undefined;
85
85
  location?: string | undefined;
86
86
  } | undefined;