@bubblelab/bubble-core 0.1.41 → 0.1.42
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.
- package/dist/bubble-bundle.d.ts +75 -75
- package/dist/bubbles/service-bubble/agi-inc.d.ts +100 -100
- package/dist/bubbles/service-bubble/ai-agent.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +136 -136
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +70 -70
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +39 -39
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +126 -126
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +592 -592
- package/dist/bubbles/service-bubble/followupboss.d.ts +156 -156
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
- package/dist/bubbles/service-bubble/github.d.ts +188 -188
- package/dist/bubbles/service-bubble/gmail.d.ts +248 -248
- package/dist/bubbles/service-bubble/google-calendar.d.ts +134 -134
- package/dist/bubbles/service-bubble/google-drive.d.ts +92 -92
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +40 -40
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +44 -44
- package/dist/bubbles/service-bubble/notion/notion.d.ts +2077 -2077
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +32 -32
- package/dist/bubbles/service-bubble/slack/slack.d.ts +430 -430
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +1549 -1549
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +19 -19
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.js +1 -1
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +332 -332
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +144 -132
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +11 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +134 -134
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +74 -74
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +11 -3
- package/package.json +2 -2
|
@@ -49,22 +49,22 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
49
49
|
id: string | null;
|
|
50
50
|
verified: boolean | null;
|
|
51
51
|
signature: string | null;
|
|
52
|
+
followingCount: number | null;
|
|
52
53
|
uniqueId: string | null;
|
|
53
54
|
nickname: string | null;
|
|
54
55
|
avatarThumb: string | null;
|
|
55
56
|
followerCount: number | null;
|
|
56
|
-
followingCount: number | null;
|
|
57
57
|
videoCount: number | null;
|
|
58
58
|
heartCount: number | null;
|
|
59
59
|
}, {
|
|
60
60
|
id: string | null;
|
|
61
61
|
verified: boolean | null;
|
|
62
62
|
signature: string | null;
|
|
63
|
+
followingCount: number | null;
|
|
63
64
|
uniqueId: string | null;
|
|
64
65
|
nickname: string | null;
|
|
65
66
|
avatarThumb: string | null;
|
|
66
67
|
followerCount: number | null;
|
|
67
|
-
followingCount: number | null;
|
|
68
68
|
videoCount: number | null;
|
|
69
69
|
heartCount: number | null;
|
|
70
70
|
}>>;
|
|
@@ -99,13 +99,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
99
99
|
}>, "many">>;
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
101
|
text: string | null;
|
|
102
|
-
stats: {
|
|
103
|
-
collectCount: number | null;
|
|
104
|
-
commentCount: number | null;
|
|
105
|
-
diggCount: number | null;
|
|
106
|
-
playCount: number | null;
|
|
107
|
-
shareCount: number | null;
|
|
108
|
-
} | null;
|
|
109
102
|
id: string | null;
|
|
110
103
|
hashtags: {
|
|
111
104
|
name: string | null;
|
|
@@ -115,20 +108,14 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
115
108
|
id: string | null;
|
|
116
109
|
verified: boolean | null;
|
|
117
110
|
signature: string | null;
|
|
111
|
+
followingCount: number | null;
|
|
118
112
|
uniqueId: string | null;
|
|
119
113
|
nickname: string | null;
|
|
120
114
|
avatarThumb: string | null;
|
|
121
115
|
followerCount: number | null;
|
|
122
|
-
followingCount: number | null;
|
|
123
116
|
videoCount: number | null;
|
|
124
117
|
heartCount: number | null;
|
|
125
118
|
} | null;
|
|
126
|
-
createTime: number | null;
|
|
127
|
-
createTimeISO: string | null;
|
|
128
|
-
webVideoUrl: string | null;
|
|
129
|
-
covers: string[] | null;
|
|
130
|
-
}, {
|
|
131
|
-
text: string | null;
|
|
132
119
|
stats: {
|
|
133
120
|
collectCount: number | null;
|
|
134
121
|
commentCount: number | null;
|
|
@@ -136,6 +123,12 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
136
123
|
playCount: number | null;
|
|
137
124
|
shareCount: number | null;
|
|
138
125
|
} | null;
|
|
126
|
+
createTime: number | null;
|
|
127
|
+
createTimeISO: string | null;
|
|
128
|
+
webVideoUrl: string | null;
|
|
129
|
+
covers: string[] | null;
|
|
130
|
+
}, {
|
|
131
|
+
text: string | null;
|
|
139
132
|
id: string | null;
|
|
140
133
|
hashtags: {
|
|
141
134
|
name: string | null;
|
|
@@ -145,14 +138,21 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
145
138
|
id: string | null;
|
|
146
139
|
verified: boolean | null;
|
|
147
140
|
signature: string | null;
|
|
141
|
+
followingCount: number | null;
|
|
148
142
|
uniqueId: string | null;
|
|
149
143
|
nickname: string | null;
|
|
150
144
|
avatarThumb: string | null;
|
|
151
145
|
followerCount: number | null;
|
|
152
|
-
followingCount: number | null;
|
|
153
146
|
videoCount: number | null;
|
|
154
147
|
heartCount: number | null;
|
|
155
148
|
} | null;
|
|
149
|
+
stats: {
|
|
150
|
+
collectCount: number | null;
|
|
151
|
+
commentCount: number | null;
|
|
152
|
+
diggCount: number | null;
|
|
153
|
+
playCount: number | null;
|
|
154
|
+
shareCount: number | null;
|
|
155
|
+
} | null;
|
|
156
156
|
createTime: number | null;
|
|
157
157
|
createTimeISO: string | null;
|
|
158
158
|
webVideoUrl: string | null;
|
|
@@ -162,18 +162,11 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
162
162
|
success: z.ZodBoolean;
|
|
163
163
|
error: z.ZodString;
|
|
164
164
|
}, "strip", z.ZodTypeAny, {
|
|
165
|
-
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
166
165
|
success: boolean;
|
|
167
166
|
error: string;
|
|
167
|
+
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
168
168
|
videos: {
|
|
169
169
|
text: string | null;
|
|
170
|
-
stats: {
|
|
171
|
-
collectCount: number | null;
|
|
172
|
-
commentCount: number | null;
|
|
173
|
-
diggCount: number | null;
|
|
174
|
-
playCount: number | null;
|
|
175
|
-
shareCount: number | null;
|
|
176
|
-
} | null;
|
|
177
170
|
id: string | null;
|
|
178
171
|
hashtags: {
|
|
179
172
|
name: string | null;
|
|
@@ -183,14 +176,21 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
183
176
|
id: string | null;
|
|
184
177
|
verified: boolean | null;
|
|
185
178
|
signature: string | null;
|
|
179
|
+
followingCount: number | null;
|
|
186
180
|
uniqueId: string | null;
|
|
187
181
|
nickname: string | null;
|
|
188
182
|
avatarThumb: string | null;
|
|
189
183
|
followerCount: number | null;
|
|
190
|
-
followingCount: number | null;
|
|
191
184
|
videoCount: number | null;
|
|
192
185
|
heartCount: number | null;
|
|
193
186
|
} | null;
|
|
187
|
+
stats: {
|
|
188
|
+
collectCount: number | null;
|
|
189
|
+
commentCount: number | null;
|
|
190
|
+
diggCount: number | null;
|
|
191
|
+
playCount: number | null;
|
|
192
|
+
shareCount: number | null;
|
|
193
|
+
} | null;
|
|
194
194
|
createTime: number | null;
|
|
195
195
|
createTimeISO: string | null;
|
|
196
196
|
webVideoUrl: string | null;
|
|
@@ -198,18 +198,11 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
198
198
|
}[];
|
|
199
199
|
totalVideos: number;
|
|
200
200
|
}, {
|
|
201
|
-
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
202
201
|
success: boolean;
|
|
203
202
|
error: string;
|
|
203
|
+
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
204
204
|
videos: {
|
|
205
205
|
text: string | null;
|
|
206
|
-
stats: {
|
|
207
|
-
collectCount: number | null;
|
|
208
|
-
commentCount: number | null;
|
|
209
|
-
diggCount: number | null;
|
|
210
|
-
playCount: number | null;
|
|
211
|
-
shareCount: number | null;
|
|
212
|
-
} | null;
|
|
213
206
|
id: string | null;
|
|
214
207
|
hashtags: {
|
|
215
208
|
name: string | null;
|
|
@@ -219,14 +212,21 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
219
212
|
id: string | null;
|
|
220
213
|
verified: boolean | null;
|
|
221
214
|
signature: string | null;
|
|
215
|
+
followingCount: number | null;
|
|
222
216
|
uniqueId: string | null;
|
|
223
217
|
nickname: string | null;
|
|
224
218
|
avatarThumb: string | null;
|
|
225
219
|
followerCount: number | null;
|
|
226
|
-
followingCount: number | null;
|
|
227
220
|
videoCount: number | null;
|
|
228
221
|
heartCount: number | null;
|
|
229
222
|
} | null;
|
|
223
|
+
stats: {
|
|
224
|
+
collectCount: number | null;
|
|
225
|
+
commentCount: number | null;
|
|
226
|
+
diggCount: number | null;
|
|
227
|
+
playCount: number | null;
|
|
228
|
+
shareCount: number | null;
|
|
229
|
+
} | null;
|
|
230
230
|
createTime: number | null;
|
|
231
231
|
createTimeISO: string | null;
|
|
232
232
|
webVideoUrl: string | null;
|
|
@@ -286,22 +286,22 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
286
286
|
id: string | null;
|
|
287
287
|
verified: boolean | null;
|
|
288
288
|
signature: string | null;
|
|
289
|
+
followingCount: number | null;
|
|
289
290
|
uniqueId: string | null;
|
|
290
291
|
nickname: string | null;
|
|
291
292
|
avatarThumb: string | null;
|
|
292
293
|
followerCount: number | null;
|
|
293
|
-
followingCount: number | null;
|
|
294
294
|
videoCount: number | null;
|
|
295
295
|
heartCount: number | null;
|
|
296
296
|
}, {
|
|
297
297
|
id: string | null;
|
|
298
298
|
verified: boolean | null;
|
|
299
299
|
signature: string | null;
|
|
300
|
+
followingCount: number | null;
|
|
300
301
|
uniqueId: string | null;
|
|
301
302
|
nickname: string | null;
|
|
302
303
|
avatarThumb: string | null;
|
|
303
304
|
followerCount: number | null;
|
|
304
|
-
followingCount: number | null;
|
|
305
305
|
videoCount: number | null;
|
|
306
306
|
heartCount: number | null;
|
|
307
307
|
}>>;
|
|
@@ -336,13 +336,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
336
336
|
}>, "many">>;
|
|
337
337
|
}, "strip", z.ZodTypeAny, {
|
|
338
338
|
text: string | null;
|
|
339
|
-
stats: {
|
|
340
|
-
collectCount: number | null;
|
|
341
|
-
commentCount: number | null;
|
|
342
|
-
diggCount: number | null;
|
|
343
|
-
playCount: number | null;
|
|
344
|
-
shareCount: number | null;
|
|
345
|
-
} | null;
|
|
346
339
|
id: string | null;
|
|
347
340
|
hashtags: {
|
|
348
341
|
name: string | null;
|
|
@@ -352,20 +345,14 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
352
345
|
id: string | null;
|
|
353
346
|
verified: boolean | null;
|
|
354
347
|
signature: string | null;
|
|
348
|
+
followingCount: number | null;
|
|
355
349
|
uniqueId: string | null;
|
|
356
350
|
nickname: string | null;
|
|
357
351
|
avatarThumb: string | null;
|
|
358
352
|
followerCount: number | null;
|
|
359
|
-
followingCount: number | null;
|
|
360
353
|
videoCount: number | null;
|
|
361
354
|
heartCount: number | null;
|
|
362
355
|
} | null;
|
|
363
|
-
createTime: number | null;
|
|
364
|
-
createTimeISO: string | null;
|
|
365
|
-
webVideoUrl: string | null;
|
|
366
|
-
covers: string[] | null;
|
|
367
|
-
}, {
|
|
368
|
-
text: string | null;
|
|
369
356
|
stats: {
|
|
370
357
|
collectCount: number | null;
|
|
371
358
|
commentCount: number | null;
|
|
@@ -373,6 +360,12 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
373
360
|
playCount: number | null;
|
|
374
361
|
shareCount: number | null;
|
|
375
362
|
} | null;
|
|
363
|
+
createTime: number | null;
|
|
364
|
+
createTimeISO: string | null;
|
|
365
|
+
webVideoUrl: string | null;
|
|
366
|
+
covers: string[] | null;
|
|
367
|
+
}, {
|
|
368
|
+
text: string | null;
|
|
376
369
|
id: string | null;
|
|
377
370
|
hashtags: {
|
|
378
371
|
name: string | null;
|
|
@@ -382,14 +375,21 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
382
375
|
id: string | null;
|
|
383
376
|
verified: boolean | null;
|
|
384
377
|
signature: string | null;
|
|
378
|
+
followingCount: number | null;
|
|
385
379
|
uniqueId: string | null;
|
|
386
380
|
nickname: string | null;
|
|
387
381
|
avatarThumb: string | null;
|
|
388
382
|
followerCount: number | null;
|
|
389
|
-
followingCount: number | null;
|
|
390
383
|
videoCount: number | null;
|
|
391
384
|
heartCount: number | null;
|
|
392
385
|
} | null;
|
|
386
|
+
stats: {
|
|
387
|
+
collectCount: number | null;
|
|
388
|
+
commentCount: number | null;
|
|
389
|
+
diggCount: number | null;
|
|
390
|
+
playCount: number | null;
|
|
391
|
+
shareCount: number | null;
|
|
392
|
+
} | null;
|
|
393
393
|
createTime: number | null;
|
|
394
394
|
createTimeISO: string | null;
|
|
395
395
|
webVideoUrl: string | null;
|
|
@@ -399,18 +399,11 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
399
399
|
success: z.ZodBoolean;
|
|
400
400
|
error: z.ZodString;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
403
402
|
success: boolean;
|
|
404
403
|
error: string;
|
|
404
|
+
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
405
405
|
videos: {
|
|
406
406
|
text: string | null;
|
|
407
|
-
stats: {
|
|
408
|
-
collectCount: number | null;
|
|
409
|
-
commentCount: number | null;
|
|
410
|
-
diggCount: number | null;
|
|
411
|
-
playCount: number | null;
|
|
412
|
-
shareCount: number | null;
|
|
413
|
-
} | null;
|
|
414
407
|
id: string | null;
|
|
415
408
|
hashtags: {
|
|
416
409
|
name: string | null;
|
|
@@ -420,14 +413,21 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
420
413
|
id: string | null;
|
|
421
414
|
verified: boolean | null;
|
|
422
415
|
signature: string | null;
|
|
416
|
+
followingCount: number | null;
|
|
423
417
|
uniqueId: string | null;
|
|
424
418
|
nickname: string | null;
|
|
425
419
|
avatarThumb: string | null;
|
|
426
420
|
followerCount: number | null;
|
|
427
|
-
followingCount: number | null;
|
|
428
421
|
videoCount: number | null;
|
|
429
422
|
heartCount: number | null;
|
|
430
423
|
} | null;
|
|
424
|
+
stats: {
|
|
425
|
+
collectCount: number | null;
|
|
426
|
+
commentCount: number | null;
|
|
427
|
+
diggCount: number | null;
|
|
428
|
+
playCount: number | null;
|
|
429
|
+
shareCount: number | null;
|
|
430
|
+
} | null;
|
|
431
431
|
createTime: number | null;
|
|
432
432
|
createTimeISO: string | null;
|
|
433
433
|
webVideoUrl: string | null;
|
|
@@ -435,18 +435,11 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
435
435
|
}[];
|
|
436
436
|
totalVideos: number;
|
|
437
437
|
}, {
|
|
438
|
-
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
439
438
|
success: boolean;
|
|
440
439
|
error: string;
|
|
440
|
+
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
441
441
|
videos: {
|
|
442
442
|
text: string | null;
|
|
443
|
-
stats: {
|
|
444
|
-
collectCount: number | null;
|
|
445
|
-
commentCount: number | null;
|
|
446
|
-
diggCount: number | null;
|
|
447
|
-
playCount: number | null;
|
|
448
|
-
shareCount: number | null;
|
|
449
|
-
} | null;
|
|
450
443
|
id: string | null;
|
|
451
444
|
hashtags: {
|
|
452
445
|
name: string | null;
|
|
@@ -456,14 +449,21 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
456
449
|
id: string | null;
|
|
457
450
|
verified: boolean | null;
|
|
458
451
|
signature: string | null;
|
|
452
|
+
followingCount: number | null;
|
|
459
453
|
uniqueId: string | null;
|
|
460
454
|
nickname: string | null;
|
|
461
455
|
avatarThumb: string | null;
|
|
462
456
|
followerCount: number | null;
|
|
463
|
-
followingCount: number | null;
|
|
464
457
|
videoCount: number | null;
|
|
465
458
|
heartCount: number | null;
|
|
466
459
|
} | null;
|
|
460
|
+
stats: {
|
|
461
|
+
collectCount: number | null;
|
|
462
|
+
commentCount: number | null;
|
|
463
|
+
diggCount: number | null;
|
|
464
|
+
playCount: number | null;
|
|
465
|
+
shareCount: number | null;
|
|
466
|
+
} | null;
|
|
467
467
|
createTime: number | null;
|
|
468
468
|
createTimeISO: string | null;
|
|
469
469
|
webVideoUrl: string | null;
|