@bubblelab/bubble-core 0.1.26 → 0.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/bubble-bundle.d.ts +60 -60
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
  3. package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
  7. package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
  10. package/dist/bubbles/service-bubble/github.d.ts +64 -64
  11. package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
  12. package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
  14. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
  15. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
  16. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
  18. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
  19. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  20. package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
  21. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  23. package/dist/bubbles/service-bubble/slack/slack.d.ts +202 -202
  24. package/dist/bubbles/service-bubble/storage.d.ts +40 -40
  25. package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
  26. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
  27. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +148 -148
  28. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
  29. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
  30. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
  31. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
  32. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
  33. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  34. package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
  35. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  36. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
  37. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  39. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  40. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
  42. package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
  43. package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
  44. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
  45. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
  46. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
  47. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
  48. package/dist/bubbles.json +19 -19
  49. package/package.json +2 -2
@@ -12,16 +12,16 @@ declare const GoogleMapsToolParamsSchema: z.ZodObject<{
12
12
  }, "strip", z.ZodTypeAny, {
13
13
  operation: "search";
14
14
  queries: string[];
15
- location?: string | undefined;
16
- limit?: number | undefined;
17
15
  credentials?: Partial<Record<CredentialType, string>> | undefined;
16
+ limit?: number | undefined;
17
+ location?: string | undefined;
18
18
  language?: string | undefined;
19
19
  }, {
20
20
  operation: "search";
21
21
  queries: string[];
22
- location?: string | undefined;
23
- limit?: number | undefined;
24
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
+ limit?: number | undefined;
24
+ location?: string | undefined;
25
25
  language?: string | undefined;
26
26
  }>;
27
27
  declare const GoogleMapsToolResultSchema: z.ZodObject<{
@@ -84,12 +84,12 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
84
84
  additionalInfo: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
85
85
  }, "strip", z.ZodTypeAny, {
86
86
  title: string | null;
87
+ url: string | null;
88
+ phone: string | null;
87
89
  location: {
88
90
  lat: number | null;
89
91
  lng: number | null;
90
92
  } | null;
91
- url: string | null;
92
- phone: string | null;
93
93
  rating: number | null;
94
94
  category: string | null;
95
95
  address: string | null;
@@ -114,12 +114,12 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
114
114
  imageUrls: string[] | null;
115
115
  }, {
116
116
  title: string | null;
117
+ url: string | null;
118
+ phone: string | null;
117
119
  location: {
118
120
  lat: number | null;
119
121
  lng: number | null;
120
122
  } | null;
121
- url: string | null;
122
- phone: string | null;
123
123
  rating: number | null;
124
124
  category: string | null;
125
125
  address: string | null;
@@ -147,17 +147,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
147
147
  success: z.ZodBoolean;
148
148
  error: z.ZodString;
149
149
  }, "strip", z.ZodTypeAny, {
150
+ operation: "search";
150
151
  success: boolean;
151
152
  error: string;
152
- operation: "search";
153
153
  places: {
154
154
  title: string | null;
155
+ url: string | null;
156
+ phone: string | null;
155
157
  location: {
156
158
  lat: number | null;
157
159
  lng: number | null;
158
160
  } | null;
159
- url: string | null;
160
- phone: string | null;
161
161
  rating: number | null;
162
162
  category: string | null;
163
163
  address: string | null;
@@ -183,17 +183,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
183
183
  }[];
184
184
  totalPlaces: number;
185
185
  }, {
186
+ operation: "search";
186
187
  success: boolean;
187
188
  error: string;
188
- operation: "search";
189
189
  places: {
190
190
  title: string | null;
191
+ url: string | null;
192
+ phone: string | null;
191
193
  location: {
192
194
  lat: number | null;
193
195
  lng: number | null;
194
196
  } | null;
195
- url: string | null;
196
- phone: string | null;
197
197
  rating: number | null;
198
198
  category: string | null;
199
199
  address: string | null;
@@ -234,16 +234,16 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
234
234
  }, "strip", z.ZodTypeAny, {
235
235
  operation: "search";
236
236
  queries: string[];
237
- location?: string | undefined;
238
- limit?: number | undefined;
239
237
  credentials?: Partial<Record<CredentialType, string>> | undefined;
238
+ limit?: number | undefined;
239
+ location?: string | undefined;
240
240
  language?: string | undefined;
241
241
  }, {
242
242
  operation: "search";
243
243
  queries: string[];
244
- location?: string | undefined;
245
- limit?: number | undefined;
246
244
  credentials?: Partial<Record<CredentialType, string>> | undefined;
245
+ limit?: number | undefined;
246
+ location?: string | undefined;
247
247
  language?: string | undefined;
248
248
  }>;
249
249
  static readonly resultSchema: z.ZodObject<{
@@ -306,12 +306,12 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
306
306
  additionalInfo: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
307
307
  }, "strip", z.ZodTypeAny, {
308
308
  title: string | null;
309
+ url: string | null;
310
+ phone: string | null;
309
311
  location: {
310
312
  lat: number | null;
311
313
  lng: number | null;
312
314
  } | null;
313
- url: string | null;
314
- phone: string | null;
315
315
  rating: number | null;
316
316
  category: string | null;
317
317
  address: string | null;
@@ -336,12 +336,12 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
336
336
  imageUrls: string[] | null;
337
337
  }, {
338
338
  title: string | null;
339
+ url: string | null;
340
+ phone: string | null;
339
341
  location: {
340
342
  lat: number | null;
341
343
  lng: number | null;
342
344
  } | null;
343
- url: string | null;
344
- phone: string | null;
345
345
  rating: number | null;
346
346
  category: string | null;
347
347
  address: string | null;
@@ -369,17 +369,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
369
369
  success: z.ZodBoolean;
370
370
  error: z.ZodString;
371
371
  }, "strip", z.ZodTypeAny, {
372
+ operation: "search";
372
373
  success: boolean;
373
374
  error: string;
374
- operation: "search";
375
375
  places: {
376
376
  title: string | null;
377
+ url: string | null;
378
+ phone: string | null;
377
379
  location: {
378
380
  lat: number | null;
379
381
  lng: number | null;
380
382
  } | null;
381
- url: string | null;
382
- phone: string | null;
383
383
  rating: number | null;
384
384
  category: string | null;
385
385
  address: string | null;
@@ -405,17 +405,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
405
405
  }[];
406
406
  totalPlaces: number;
407
407
  }, {
408
+ operation: "search";
408
409
  success: boolean;
409
410
  error: string;
410
- operation: "search";
411
411
  places: {
412
412
  title: string | null;
413
+ url: string | null;
414
+ phone: string | null;
413
415
  location: {
414
416
  lat: number | null;
415
417
  lng: number | null;
416
418
  } | null;
417
- url: string | null;
418
- phone: string | null;
419
419
  rating: number | null;
420
420
  category: string | null;
421
421
  address: string | null;
@@ -69,16 +69,16 @@ declare const InstagramToolParamsSchema: z.ZodObject<{
69
69
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
70
70
  }, "strip", z.ZodTypeAny, {
71
71
  operation: "scrapeProfile" | "scrapeHashtag";
72
- limit?: number | undefined;
73
72
  credentials?: Partial<Record<CredentialType, string>> | undefined;
74
- profiles?: string[] | undefined;
73
+ limit?: number | undefined;
75
74
  hashtags?: string[] | undefined;
75
+ profiles?: string[] | undefined;
76
76
  }, {
77
77
  operation: "scrapeProfile" | "scrapeHashtag";
78
- limit?: number | undefined;
79
78
  credentials?: Partial<Record<CredentialType, string>> | undefined;
80
- profiles?: string[] | undefined;
79
+ limit?: number | undefined;
81
80
  hashtags?: string[] | undefined;
81
+ profiles?: string[] | undefined;
82
82
  }>;
83
83
  declare const InstagramToolResultSchema: z.ZodObject<{
84
84
  operation: z.ZodEnum<["scrapeProfile", "scrapeHashtag"]>;
@@ -147,9 +147,9 @@ declare const InstagramToolResultSchema: z.ZodObject<{
147
147
  success: z.ZodBoolean;
148
148
  error: z.ZodString;
149
149
  }, "strip", z.ZodTypeAny, {
150
+ operation: "scrapeProfile" | "scrapeHashtag";
150
151
  success: boolean;
151
152
  error: string;
152
- operation: "scrapeProfile" | "scrapeHashtag";
153
153
  posts: {
154
154
  type: "image" | "video" | "carousel" | null;
155
155
  url: string | null;
@@ -175,9 +175,9 @@ declare const InstagramToolResultSchema: z.ZodObject<{
175
175
  scrapedHashtags?: string[] | undefined;
176
176
  scrapedProfiles?: string[] | undefined;
177
177
  }, {
178
+ operation: "scrapeProfile" | "scrapeHashtag";
178
179
  success: boolean;
179
180
  error: string;
180
- operation: "scrapeProfile" | "scrapeHashtag";
181
181
  posts: {
182
182
  type: "image" | "video" | "carousel" | null;
183
183
  url: string | null;
@@ -234,16 +234,16 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
234
234
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
235
235
  }, "strip", z.ZodTypeAny, {
236
236
  operation: "scrapeProfile" | "scrapeHashtag";
237
- limit?: number | undefined;
238
237
  credentials?: Partial<Record<CredentialType, string>> | undefined;
239
- profiles?: string[] | undefined;
238
+ limit?: number | undefined;
240
239
  hashtags?: string[] | undefined;
240
+ profiles?: string[] | undefined;
241
241
  }, {
242
242
  operation: "scrapeProfile" | "scrapeHashtag";
243
- limit?: number | undefined;
244
243
  credentials?: Partial<Record<CredentialType, string>> | undefined;
245
- profiles?: string[] | undefined;
244
+ limit?: number | undefined;
246
245
  hashtags?: string[] | undefined;
246
+ profiles?: string[] | undefined;
247
247
  }>;
248
248
  static readonly resultSchema: z.ZodObject<{
249
249
  operation: z.ZodEnum<["scrapeProfile", "scrapeHashtag"]>;
@@ -312,9 +312,9 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
312
312
  success: z.ZodBoolean;
313
313
  error: z.ZodString;
314
314
  }, "strip", z.ZodTypeAny, {
315
+ operation: "scrapeProfile" | "scrapeHashtag";
315
316
  success: boolean;
316
317
  error: string;
317
- operation: "scrapeProfile" | "scrapeHashtag";
318
318
  posts: {
319
319
  type: "image" | "video" | "carousel" | null;
320
320
  url: string | null;
@@ -340,9 +340,9 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
340
340
  scrapedHashtags?: string[] | undefined;
341
341
  scrapedProfiles?: string[] | undefined;
342
342
  }, {
343
+ operation: "scrapeProfile" | "scrapeHashtag";
343
344
  success: boolean;
344
345
  error: string;
345
- operation: "scrapeProfile" | "scrapeHashtag";
346
346
  posts: {
347
347
  type: "image" | "video" | "carousel" | null;
348
348
  url: string | null;