@bubblelab/bubble-core 0.1.101 → 0.1.102

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 (62) hide show
  1. package/dist/bubble-bundle.d.ts +80 -80
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
  9. package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
  10. package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
  11. package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
  12. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
  13. package/dist/bubbles/service-bubble/github.d.ts +240 -240
  14. package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
  15. package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  18. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  22. package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
  23. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  24. package/dist/bubbles/service-bubble/resend.d.ts +24 -24
  25. package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
  26. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
  27. package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
  28. package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
  29. package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
  30. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
  31. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
  32. package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
  34. package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
  36. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
  37. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
  38. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
  40. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  41. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
  42. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  43. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
  44. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
  45. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
  46. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
  47. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
  48. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
  49. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  50. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
  51. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  52. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
  53. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  54. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
  55. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  56. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
  57. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  58. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
  59. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
  60. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
  61. package/dist/bubbles.json +109 -2
  62. package/package.json +2 -2
@@ -13,24 +13,24 @@ declare const InstagramPostSchema: z.ZodObject<{
13
13
  displayUrl: z.ZodNullable<z.ZodString>;
14
14
  hashtags: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
15
15
  }, "strip", z.ZodTypeAny, {
16
- url: string | null;
17
16
  type: "image" | "video" | "carousel" | null;
17
+ url: string | null;
18
+ timestamp: string | null;
18
19
  caption: string | null;
19
20
  hashtags: string[] | null;
20
21
  commentsCount: number | null;
21
22
  displayUrl: string | null;
22
23
  likesCount: number | null;
23
- timestamp: string | null;
24
24
  ownerUsername: string | null;
25
25
  }, {
26
- url: string | null;
27
26
  type: "image" | "video" | "carousel" | null;
27
+ url: string | null;
28
+ timestamp: string | null;
28
29
  caption: string | null;
29
30
  hashtags: string[] | null;
30
31
  commentsCount: number | null;
31
32
  displayUrl: string | null;
32
33
  likesCount: number | null;
33
- timestamp: string | null;
34
34
  ownerUsername: string | null;
35
35
  }>;
36
36
  declare const InstagramProfileSchema: z.ZodObject<{
@@ -43,22 +43,22 @@ declare const InstagramProfileSchema: z.ZodObject<{
43
43
  isVerified: z.ZodNullable<z.ZodBoolean>;
44
44
  profilePicUrl: z.ZodNullable<z.ZodString>;
45
45
  }, "strip", z.ZodTypeAny, {
46
- bio: string | null;
47
46
  username: string;
48
47
  fullName: string | null;
49
48
  followersCount: number | null;
50
49
  postsCount: number | null;
51
50
  profilePicUrl: string | null;
52
51
  isVerified: boolean | null;
52
+ bio: string | null;
53
53
  followingCount: number | null;
54
54
  }, {
55
- bio: string | null;
56
55
  username: string;
57
56
  fullName: string | null;
58
57
  followersCount: number | null;
59
58
  postsCount: number | null;
60
59
  profilePicUrl: string | null;
61
60
  isVerified: boolean | null;
61
+ bio: string | null;
62
62
  followingCount: number | null;
63
63
  }>;
64
64
  declare const InstagramToolParamsSchema: z.ZodObject<{
@@ -93,24 +93,24 @@ declare const InstagramToolResultSchema: z.ZodObject<{
93
93
  displayUrl: z.ZodNullable<z.ZodString>;
94
94
  hashtags: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
95
95
  }, "strip", z.ZodTypeAny, {
96
- url: string | null;
97
96
  type: "image" | "video" | "carousel" | null;
97
+ url: string | null;
98
+ timestamp: string | null;
98
99
  caption: string | null;
99
100
  hashtags: string[] | null;
100
101
  commentsCount: number | null;
101
102
  displayUrl: string | null;
102
103
  likesCount: number | null;
103
- timestamp: string | null;
104
104
  ownerUsername: string | null;
105
105
  }, {
106
- url: string | null;
107
106
  type: "image" | "video" | "carousel" | null;
107
+ url: string | null;
108
+ timestamp: string | null;
108
109
  caption: string | null;
109
110
  hashtags: string[] | null;
110
111
  commentsCount: number | null;
111
112
  displayUrl: string | null;
112
113
  likesCount: number | null;
113
- timestamp: string | null;
114
114
  ownerUsername: string | null;
115
115
  }>, "many">;
116
116
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -123,22 +123,22 @@ declare const InstagramToolResultSchema: z.ZodObject<{
123
123
  isVerified: z.ZodNullable<z.ZodBoolean>;
124
124
  profilePicUrl: z.ZodNullable<z.ZodString>;
125
125
  }, "strip", z.ZodTypeAny, {
126
- bio: string | null;
127
126
  username: string;
128
127
  fullName: string | null;
129
128
  followersCount: number | null;
130
129
  postsCount: number | null;
131
130
  profilePicUrl: string | null;
132
131
  isVerified: boolean | null;
132
+ bio: string | null;
133
133
  followingCount: number | null;
134
134
  }, {
135
- bio: string | null;
136
135
  username: string;
137
136
  fullName: string | null;
138
137
  followersCount: number | null;
139
138
  postsCount: number | null;
140
139
  profilePicUrl: string | null;
141
140
  isVerified: boolean | null;
141
+ bio: string | null;
142
142
  followingCount: number | null;
143
143
  }>, "many">>;
144
144
  scrapedHashtags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -149,27 +149,27 @@ declare const InstagramToolResultSchema: z.ZodObject<{
149
149
  }, "strip", z.ZodTypeAny, {
150
150
  success: boolean;
151
151
  error: string;
152
+ operation: "scrapeProfile" | "scrapeHashtag";
152
153
  posts: {
153
- url: string | null;
154
154
  type: "image" | "video" | "carousel" | null;
155
+ url: string | null;
156
+ timestamp: string | null;
155
157
  caption: string | null;
156
158
  hashtags: string[] | null;
157
159
  commentsCount: number | null;
158
160
  displayUrl: string | null;
159
161
  likesCount: number | null;
160
- timestamp: string | null;
161
162
  ownerUsername: string | null;
162
163
  }[];
163
- operation: "scrapeProfile" | "scrapeHashtag";
164
164
  totalPosts: number;
165
165
  profiles?: {
166
- bio: string | null;
167
166
  username: string;
168
167
  fullName: string | null;
169
168
  followersCount: number | null;
170
169
  postsCount: number | null;
171
170
  profilePicUrl: string | null;
172
171
  isVerified: boolean | null;
172
+ bio: string | null;
173
173
  followingCount: number | null;
174
174
  }[] | undefined;
175
175
  scrapedHashtags?: string[] | undefined;
@@ -177,27 +177,27 @@ declare const InstagramToolResultSchema: z.ZodObject<{
177
177
  }, {
178
178
  success: boolean;
179
179
  error: string;
180
+ operation: "scrapeProfile" | "scrapeHashtag";
180
181
  posts: {
181
- url: string | null;
182
182
  type: "image" | "video" | "carousel" | null;
183
+ url: string | null;
184
+ timestamp: string | null;
183
185
  caption: string | null;
184
186
  hashtags: string[] | null;
185
187
  commentsCount: number | null;
186
188
  displayUrl: string | null;
187
189
  likesCount: number | null;
188
- timestamp: string | null;
189
190
  ownerUsername: string | null;
190
191
  }[];
191
- operation: "scrapeProfile" | "scrapeHashtag";
192
192
  totalPosts: number;
193
193
  profiles?: {
194
- bio: string | null;
195
194
  username: string;
196
195
  fullName: string | null;
197
196
  followersCount: number | null;
198
197
  postsCount: number | null;
199
198
  profilePicUrl: string | null;
200
199
  isVerified: boolean | null;
200
+ bio: string | null;
201
201
  followingCount: number | null;
202
202
  }[] | undefined;
203
203
  scrapedHashtags?: string[] | undefined;
@@ -258,24 +258,24 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
258
258
  displayUrl: z.ZodNullable<z.ZodString>;
259
259
  hashtags: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
260
260
  }, "strip", z.ZodTypeAny, {
261
- url: string | null;
262
261
  type: "image" | "video" | "carousel" | null;
262
+ url: string | null;
263
+ timestamp: string | null;
263
264
  caption: string | null;
264
265
  hashtags: string[] | null;
265
266
  commentsCount: number | null;
266
267
  displayUrl: string | null;
267
268
  likesCount: number | null;
268
- timestamp: string | null;
269
269
  ownerUsername: string | null;
270
270
  }, {
271
- url: string | null;
272
271
  type: "image" | "video" | "carousel" | null;
272
+ url: string | null;
273
+ timestamp: string | null;
273
274
  caption: string | null;
274
275
  hashtags: string[] | null;
275
276
  commentsCount: number | null;
276
277
  displayUrl: string | null;
277
278
  likesCount: number | null;
278
- timestamp: string | null;
279
279
  ownerUsername: string | null;
280
280
  }>, "many">;
281
281
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -288,22 +288,22 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
288
288
  isVerified: z.ZodNullable<z.ZodBoolean>;
289
289
  profilePicUrl: z.ZodNullable<z.ZodString>;
290
290
  }, "strip", z.ZodTypeAny, {
291
- bio: string | null;
292
291
  username: string;
293
292
  fullName: string | null;
294
293
  followersCount: number | null;
295
294
  postsCount: number | null;
296
295
  profilePicUrl: string | null;
297
296
  isVerified: boolean | null;
297
+ bio: string | null;
298
298
  followingCount: number | null;
299
299
  }, {
300
- bio: string | null;
301
300
  username: string;
302
301
  fullName: string | null;
303
302
  followersCount: number | null;
304
303
  postsCount: number | null;
305
304
  profilePicUrl: string | null;
306
305
  isVerified: boolean | null;
306
+ bio: string | null;
307
307
  followingCount: number | null;
308
308
  }>, "many">>;
309
309
  scrapedHashtags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -314,27 +314,27 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
314
314
  }, "strip", z.ZodTypeAny, {
315
315
  success: boolean;
316
316
  error: string;
317
+ operation: "scrapeProfile" | "scrapeHashtag";
317
318
  posts: {
318
- url: string | null;
319
319
  type: "image" | "video" | "carousel" | null;
320
+ url: string | null;
321
+ timestamp: string | null;
320
322
  caption: string | null;
321
323
  hashtags: string[] | null;
322
324
  commentsCount: number | null;
323
325
  displayUrl: string | null;
324
326
  likesCount: number | null;
325
- timestamp: string | null;
326
327
  ownerUsername: string | null;
327
328
  }[];
328
- operation: "scrapeProfile" | "scrapeHashtag";
329
329
  totalPosts: number;
330
330
  profiles?: {
331
- bio: string | null;
332
331
  username: string;
333
332
  fullName: string | null;
334
333
  followersCount: number | null;
335
334
  postsCount: number | null;
336
335
  profilePicUrl: string | null;
337
336
  isVerified: boolean | null;
337
+ bio: string | null;
338
338
  followingCount: number | null;
339
339
  }[] | undefined;
340
340
  scrapedHashtags?: string[] | undefined;
@@ -342,27 +342,27 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
342
342
  }, {
343
343
  success: boolean;
344
344
  error: string;
345
+ operation: "scrapeProfile" | "scrapeHashtag";
345
346
  posts: {
346
- url: string | null;
347
347
  type: "image" | "video" | "carousel" | null;
348
+ url: string | null;
349
+ timestamp: string | null;
348
350
  caption: string | null;
349
351
  hashtags: string[] | null;
350
352
  commentsCount: number | null;
351
353
  displayUrl: string | null;
352
354
  likesCount: number | null;
353
- timestamp: string | null;
354
355
  ownerUsername: string | null;
355
356
  }[];
356
- operation: "scrapeProfile" | "scrapeHashtag";
357
357
  totalPosts: number;
358
358
  profiles?: {
359
- bio: string | null;
360
359
  username: string;
361
360
  fullName: string | null;
362
361
  followersCount: number | null;
363
362
  postsCount: number | null;
364
363
  profilePicUrl: string | null;
365
364
  isVerified: boolean | null;
365
+ bio: string | null;
366
366
  followingCount: number | null;
367
367
  }[] | undefined;
368
368
  scrapedHashtags?: string[] | undefined;
@@ -31,13 +31,13 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
31
31
  message: import("zod").ZodOptional<import("zod").ZodString>;
32
32
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
33
33
  }, "strip", import("zod").ZodTypeAny, {
34
- profile_url: string;
35
34
  operation: "send_connection";
35
+ profile_url: string;
36
36
  message?: string | undefined;
37
37
  credentials?: Partial<Record<CredentialType, string>> | undefined;
38
38
  }, {
39
- profile_url: string;
40
39
  operation: "send_connection";
40
+ profile_url: string;
41
41
  message?: string | undefined;
42
42
  credentials?: Partial<Record<CredentialType, string>> | undefined;
43
43
  }>]>;