@bubblelab/bubble-core 0.1.25 → 0.1.27

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 +84 -68
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
  3. package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +8 -8
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +288 -288
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
  10. package/dist/bubbles/service-bubble/github.d.ts +64 -64
  11. package/dist/bubbles/service-bubble/gmail.d.ts +108 -108
  12. package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +20 -20
  14. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +33 -33
  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/hello-world.d.ts +2 -2
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/notion/notion.d.ts +601 -601
  22. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/slack/slack.d.ts +168 -168
  25. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  26. package/dist/bubbles/service-bubble/telegram.d.ts +602 -602
  27. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  28. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +82 -82
  29. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  30. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  31. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +132 -132
  32. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  33. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +104 -104
  34. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  35. package/dist/bubbles/tool-bubble/people-search-tool.js +55 -10
  36. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  37. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +20 -20
  38. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  40. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
  42. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
  44. package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
  45. package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
  46. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  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 +36 -36
  50. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
  51. package/dist/bubbles.json +52057 -9
  52. package/dist/types/available-tools.d.ts +1 -1
  53. package/dist/types/available-tools.d.ts.map +1 -1
  54. package/dist/types/available-tools.js +1 -0
  55. package/dist/types/available-tools.js.map +1 -1
  56. package/package.json +3 -3
@@ -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
15
  credentials?: Partial<Record<CredentialType, string>> | undefined;
17
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
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
24
23
  limit?: number | undefined;
24
+ location?: string | undefined;
25
25
  language?: string | undefined;
26
26
  }>;
27
27
  declare const GoogleMapsToolResultSchema: z.ZodObject<{
@@ -83,17 +83,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
83
83
  imageUrls: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
84
84
  additionalInfo: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
85
85
  }, "strip", z.ZodTypeAny, {
86
+ title: string | null;
87
+ url: string | null;
88
+ phone: string | null;
86
89
  location: {
87
90
  lat: number | null;
88
91
  lng: number | null;
89
92
  } | null;
90
- title: string | null;
91
- url: string | null;
92
- website: string | null;
93
- phone: string | null;
94
93
  rating: number | null;
95
94
  category: string | null;
96
95
  address: string | null;
96
+ website: string | null;
97
97
  placeId: string | null;
98
98
  reviewsCount: number | null;
99
99
  openingHours: {
@@ -113,17 +113,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
113
113
  }[] | null;
114
114
  imageUrls: string[] | null;
115
115
  }, {
116
+ title: string | null;
117
+ url: string | null;
118
+ phone: string | null;
116
119
  location: {
117
120
  lat: number | null;
118
121
  lng: number | null;
119
122
  } | null;
120
- title: string | null;
121
- url: string | null;
122
- website: string | null;
123
- phone: string | null;
124
123
  rating: number | null;
125
124
  category: string | null;
126
125
  address: string | null;
126
+ website: string | null;
127
127
  placeId: string | null;
128
128
  reviewsCount: number | null;
129
129
  openingHours: {
@@ -151,17 +151,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
151
151
  success: boolean;
152
152
  error: string;
153
153
  places: {
154
+ title: string | null;
155
+ url: string | null;
156
+ phone: string | null;
154
157
  location: {
155
158
  lat: number | null;
156
159
  lng: number | null;
157
160
  } | null;
158
- title: string | null;
159
- url: string | null;
160
- website: string | null;
161
- phone: string | null;
162
161
  rating: number | null;
163
162
  category: string | null;
164
163
  address: string | null;
164
+ website: string | null;
165
165
  placeId: string | null;
166
166
  reviewsCount: number | null;
167
167
  openingHours: {
@@ -187,17 +187,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
187
187
  success: boolean;
188
188
  error: string;
189
189
  places: {
190
+ title: string | null;
191
+ url: string | null;
192
+ phone: string | null;
190
193
  location: {
191
194
  lat: number | null;
192
195
  lng: number | null;
193
196
  } | null;
194
- title: string | null;
195
- url: string | null;
196
- website: string | null;
197
- phone: string | null;
198
197
  rating: number | null;
199
198
  category: string | null;
200
199
  address: string | null;
200
+ website: string | null;
201
201
  placeId: string | null;
202
202
  reviewsCount: number | null;
203
203
  openingHours: {
@@ -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
237
  credentials?: Partial<Record<CredentialType, string>> | undefined;
239
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
244
  credentials?: Partial<Record<CredentialType, string>> | undefined;
246
245
  limit?: number | undefined;
246
+ location?: string | undefined;
247
247
  language?: string | undefined;
248
248
  }>;
249
249
  static readonly resultSchema: z.ZodObject<{
@@ -305,17 +305,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
305
305
  imageUrls: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
306
306
  additionalInfo: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
307
307
  }, "strip", z.ZodTypeAny, {
308
+ title: string | null;
309
+ url: string | null;
310
+ phone: string | null;
308
311
  location: {
309
312
  lat: number | null;
310
313
  lng: number | null;
311
314
  } | null;
312
- title: string | null;
313
- url: string | null;
314
- website: string | null;
315
- phone: string | null;
316
315
  rating: number | null;
317
316
  category: string | null;
318
317
  address: string | null;
318
+ website: string | null;
319
319
  placeId: string | null;
320
320
  reviewsCount: number | null;
321
321
  openingHours: {
@@ -335,17 +335,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
335
335
  }[] | null;
336
336
  imageUrls: string[] | null;
337
337
  }, {
338
+ title: string | null;
339
+ url: string | null;
340
+ phone: string | null;
338
341
  location: {
339
342
  lat: number | null;
340
343
  lng: number | null;
341
344
  } | null;
342
- title: string | null;
343
- url: string | null;
344
- website: string | null;
345
- phone: string | null;
346
345
  rating: number | null;
347
346
  category: string | null;
348
347
  address: string | null;
348
+ website: string | null;
349
349
  placeId: string | null;
350
350
  reviewsCount: number | null;
351
351
  openingHours: {
@@ -373,17 +373,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
373
373
  success: boolean;
374
374
  error: string;
375
375
  places: {
376
+ title: string | null;
377
+ url: string | null;
378
+ phone: string | null;
376
379
  location: {
377
380
  lat: number | null;
378
381
  lng: number | null;
379
382
  } | null;
380
- title: string | null;
381
- url: string | null;
382
- website: string | null;
383
- phone: string | null;
384
383
  rating: number | null;
385
384
  category: string | null;
386
385
  address: string | null;
386
+ website: string | null;
387
387
  placeId: string | null;
388
388
  reviewsCount: number | null;
389
389
  openingHours: {
@@ -409,17 +409,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
409
409
  success: boolean;
410
410
  error: string;
411
411
  places: {
412
+ title: string | null;
413
+ url: string | null;
414
+ phone: string | null;
412
415
  location: {
413
416
  lat: number | null;
414
417
  lng: number | null;
415
418
  } | null;
416
- title: string | null;
417
- url: string | null;
418
- website: string | null;
419
- phone: string | null;
420
419
  rating: number | null;
421
420
  category: string | null;
422
421
  address: string | null;
422
+ website: string | null;
423
423
  placeId: string | null;
424
424
  reviewsCount: number | null;
425
425
  openingHours: {
@@ -71,14 +71,14 @@ declare const InstagramToolParamsSchema: z.ZodObject<{
71
71
  operation: "scrapeProfile" | "scrapeHashtag";
72
72
  credentials?: Partial<Record<CredentialType, string>> | undefined;
73
73
  limit?: number | undefined;
74
- profiles?: string[] | undefined;
75
74
  hashtags?: string[] | undefined;
75
+ profiles?: string[] | undefined;
76
76
  }, {
77
77
  operation: "scrapeProfile" | "scrapeHashtag";
78
78
  credentials?: Partial<Record<CredentialType, string>> | undefined;
79
79
  limit?: number | undefined;
80
- profiles?: string[] | 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"]>;
@@ -236,14 +236,14 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
236
236
  operation: "scrapeProfile" | "scrapeHashtag";
237
237
  credentials?: Partial<Record<CredentialType, string>> | undefined;
238
238
  limit?: number | undefined;
239
- profiles?: string[] | undefined;
240
239
  hashtags?: string[] | undefined;
240
+ profiles?: string[] | undefined;
241
241
  }, {
242
242
  operation: "scrapeProfile" | "scrapeHashtag";
243
243
  credentials?: Partial<Record<CredentialType, string>> | undefined;
244
244
  limit?: number | undefined;
245
- profiles?: string[] | 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"]>;