@bubblelab/bubble-core 0.1.204 → 0.1.205
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 +172 -172
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.d.ts +11 -0
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.d.ts.map +1 -0
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.js +61 -0
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.js.map +1 -0
- package/dist/bubbles/service-bubble/ai-agent.d.ts +13 -13
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +12 -2
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +100 -100
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +212 -212
- package/dist/bubbles/service-bubble/github.d.ts +72 -72
- package/dist/bubbles/service-bubble/gmail.d.ts +148 -148
- package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
- package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/slack/slack.d.ts +210 -210
- package/dist/bubbles/service-bubble/slack/slack.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.js +17 -6
- package/dist/bubbles/service-bubble/slack/slack.js.map +1 -1
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +266 -266
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +1 -1
- package/dist/types/base-bubble-class.d.ts +6 -0
- package/dist/types/base-bubble-class.d.ts.map +1 -1
- package/dist/types/base-bubble-class.js +11 -0
- package/dist/types/base-bubble-class.js.map +1 -1
- package/package.json +2 -2
|
@@ -100,6 +100,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
101
|
id: string | null;
|
|
102
102
|
text: string | null;
|
|
103
|
+
stats: {
|
|
104
|
+
collectCount: number | null;
|
|
105
|
+
commentCount: number | null;
|
|
106
|
+
diggCount: number | null;
|
|
107
|
+
playCount: number | null;
|
|
108
|
+
shareCount: number | null;
|
|
109
|
+
} | null;
|
|
103
110
|
hashtags: {
|
|
104
111
|
name: string | null;
|
|
105
112
|
}[] | null;
|
|
@@ -116,13 +123,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
116
123
|
videoCount: number | null;
|
|
117
124
|
heartCount: number | null;
|
|
118
125
|
} | null;
|
|
119
|
-
stats: {
|
|
120
|
-
collectCount: number | null;
|
|
121
|
-
commentCount: number | null;
|
|
122
|
-
diggCount: number | null;
|
|
123
|
-
playCount: number | null;
|
|
124
|
-
shareCount: number | null;
|
|
125
|
-
} | null;
|
|
126
126
|
createTime: number | null;
|
|
127
127
|
createTimeISO: string | null;
|
|
128
128
|
webVideoUrl: string | null;
|
|
@@ -130,6 +130,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
130
130
|
}, {
|
|
131
131
|
id: string | null;
|
|
132
132
|
text: string | null;
|
|
133
|
+
stats: {
|
|
134
|
+
collectCount: number | null;
|
|
135
|
+
commentCount: number | null;
|
|
136
|
+
diggCount: number | null;
|
|
137
|
+
playCount: number | null;
|
|
138
|
+
shareCount: number | null;
|
|
139
|
+
} | null;
|
|
133
140
|
hashtags: {
|
|
134
141
|
name: string | null;
|
|
135
142
|
}[] | null;
|
|
@@ -146,13 +153,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
146
153
|
videoCount: number | null;
|
|
147
154
|
heartCount: number | null;
|
|
148
155
|
} | 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;
|
|
@@ -168,6 +168,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
168
168
|
videos: {
|
|
169
169
|
id: string | null;
|
|
170
170
|
text: string | null;
|
|
171
|
+
stats: {
|
|
172
|
+
collectCount: number | null;
|
|
173
|
+
commentCount: number | null;
|
|
174
|
+
diggCount: number | null;
|
|
175
|
+
playCount: number | null;
|
|
176
|
+
shareCount: number | null;
|
|
177
|
+
} | null;
|
|
171
178
|
hashtags: {
|
|
172
179
|
name: string | null;
|
|
173
180
|
}[] | null;
|
|
@@ -184,13 +191,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
184
191
|
videoCount: number | null;
|
|
185
192
|
heartCount: number | null;
|
|
186
193
|
} | 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;
|
|
@@ -204,6 +204,13 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
204
204
|
videos: {
|
|
205
205
|
id: string | null;
|
|
206
206
|
text: string | null;
|
|
207
|
+
stats: {
|
|
208
|
+
collectCount: number | null;
|
|
209
|
+
commentCount: number | null;
|
|
210
|
+
diggCount: number | null;
|
|
211
|
+
playCount: number | null;
|
|
212
|
+
shareCount: number | null;
|
|
213
|
+
} | null;
|
|
207
214
|
hashtags: {
|
|
208
215
|
name: string | null;
|
|
209
216
|
}[] | null;
|
|
@@ -220,13 +227,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
220
227
|
videoCount: number | null;
|
|
221
228
|
heartCount: number | null;
|
|
222
229
|
} | 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;
|
|
@@ -337,6 +337,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
337
337
|
}, "strip", z.ZodTypeAny, {
|
|
338
338
|
id: string | null;
|
|
339
339
|
text: string | null;
|
|
340
|
+
stats: {
|
|
341
|
+
collectCount: number | null;
|
|
342
|
+
commentCount: number | null;
|
|
343
|
+
diggCount: number | null;
|
|
344
|
+
playCount: number | null;
|
|
345
|
+
shareCount: number | null;
|
|
346
|
+
} | null;
|
|
340
347
|
hashtags: {
|
|
341
348
|
name: string | null;
|
|
342
349
|
}[] | null;
|
|
@@ -353,13 +360,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
353
360
|
videoCount: number | null;
|
|
354
361
|
heartCount: number | null;
|
|
355
362
|
} | null;
|
|
356
|
-
stats: {
|
|
357
|
-
collectCount: number | null;
|
|
358
|
-
commentCount: number | null;
|
|
359
|
-
diggCount: number | null;
|
|
360
|
-
playCount: number | null;
|
|
361
|
-
shareCount: number | null;
|
|
362
|
-
} | null;
|
|
363
363
|
createTime: number | null;
|
|
364
364
|
createTimeISO: string | null;
|
|
365
365
|
webVideoUrl: string | null;
|
|
@@ -367,6 +367,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
367
367
|
}, {
|
|
368
368
|
id: string | null;
|
|
369
369
|
text: string | null;
|
|
370
|
+
stats: {
|
|
371
|
+
collectCount: number | null;
|
|
372
|
+
commentCount: number | null;
|
|
373
|
+
diggCount: number | null;
|
|
374
|
+
playCount: number | null;
|
|
375
|
+
shareCount: number | null;
|
|
376
|
+
} | null;
|
|
370
377
|
hashtags: {
|
|
371
378
|
name: string | null;
|
|
372
379
|
}[] | null;
|
|
@@ -383,13 +390,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
383
390
|
videoCount: number | null;
|
|
384
391
|
heartCount: number | null;
|
|
385
392
|
} | 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;
|
|
@@ -405,6 +405,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
405
405
|
videos: {
|
|
406
406
|
id: string | null;
|
|
407
407
|
text: string | null;
|
|
408
|
+
stats: {
|
|
409
|
+
collectCount: number | null;
|
|
410
|
+
commentCount: number | null;
|
|
411
|
+
diggCount: number | null;
|
|
412
|
+
playCount: number | null;
|
|
413
|
+
shareCount: number | null;
|
|
414
|
+
} | null;
|
|
408
415
|
hashtags: {
|
|
409
416
|
name: string | null;
|
|
410
417
|
}[] | null;
|
|
@@ -421,13 +428,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
421
428
|
videoCount: number | null;
|
|
422
429
|
heartCount: number | null;
|
|
423
430
|
} | 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;
|
|
@@ -441,6 +441,13 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
441
441
|
videos: {
|
|
442
442
|
id: string | null;
|
|
443
443
|
text: string | null;
|
|
444
|
+
stats: {
|
|
445
|
+
collectCount: number | null;
|
|
446
|
+
commentCount: number | null;
|
|
447
|
+
diggCount: number | null;
|
|
448
|
+
playCount: number | null;
|
|
449
|
+
shareCount: number | null;
|
|
450
|
+
} | null;
|
|
444
451
|
hashtags: {
|
|
445
452
|
name: string | null;
|
|
446
453
|
}[] | null;
|
|
@@ -457,13 +464,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
457
464
|
videoCount: number | null;
|
|
458
465
|
heartCount: number | null;
|
|
459
466
|
} | 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;
|
|
@@ -149,6 +149,14 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
149
149
|
url: string | null;
|
|
150
150
|
id: string | null;
|
|
151
151
|
text: string | null;
|
|
152
|
+
stats: {
|
|
153
|
+
viewCount: number | null;
|
|
154
|
+
retweetCount: number | null;
|
|
155
|
+
replyCount: number | null;
|
|
156
|
+
likeCount: number | null;
|
|
157
|
+
quoteCount: number | null;
|
|
158
|
+
bookmarkCount: number | null;
|
|
159
|
+
} | null;
|
|
152
160
|
entities: {
|
|
153
161
|
hashtags: string[] | null;
|
|
154
162
|
mentions: string[] | null;
|
|
@@ -168,14 +176,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
168
176
|
tweetsCount: number | null;
|
|
169
177
|
createdAt: string | null;
|
|
170
178
|
} | null;
|
|
171
|
-
stats: {
|
|
172
|
-
viewCount: number | null;
|
|
173
|
-
retweetCount: number | null;
|
|
174
|
-
replyCount: number | null;
|
|
175
|
-
likeCount: number | null;
|
|
176
|
-
quoteCount: number | null;
|
|
177
|
-
bookmarkCount: number | null;
|
|
178
|
-
} | null;
|
|
179
179
|
media: {
|
|
180
180
|
type: string | null;
|
|
181
181
|
url: string | null;
|
|
@@ -192,6 +192,14 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
192
192
|
url: string | null;
|
|
193
193
|
id: string | null;
|
|
194
194
|
text: string | null;
|
|
195
|
+
stats: {
|
|
196
|
+
viewCount: number | null;
|
|
197
|
+
retweetCount: number | null;
|
|
198
|
+
replyCount: number | null;
|
|
199
|
+
likeCount: number | null;
|
|
200
|
+
quoteCount: number | null;
|
|
201
|
+
bookmarkCount: number | null;
|
|
202
|
+
} | null;
|
|
195
203
|
entities: {
|
|
196
204
|
hashtags: string[] | null;
|
|
197
205
|
mentions: string[] | null;
|
|
@@ -211,14 +219,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
211
219
|
tweetsCount: number | null;
|
|
212
220
|
createdAt: string | null;
|
|
213
221
|
} | null;
|
|
214
|
-
stats: {
|
|
215
|
-
viewCount: number | null;
|
|
216
|
-
retweetCount: number | null;
|
|
217
|
-
replyCount: number | null;
|
|
218
|
-
likeCount: number | null;
|
|
219
|
-
quoteCount: number | null;
|
|
220
|
-
bookmarkCount: number | null;
|
|
221
|
-
} | null;
|
|
222
222
|
media: {
|
|
223
223
|
type: string | null;
|
|
224
224
|
url: string | null;
|
|
@@ -369,6 +369,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
369
369
|
url: string | null;
|
|
370
370
|
id: string | null;
|
|
371
371
|
text: string | null;
|
|
372
|
+
stats: {
|
|
373
|
+
viewCount: number | null;
|
|
374
|
+
retweetCount: number | null;
|
|
375
|
+
replyCount: number | null;
|
|
376
|
+
likeCount: number | null;
|
|
377
|
+
quoteCount: number | null;
|
|
378
|
+
bookmarkCount: number | null;
|
|
379
|
+
} | null;
|
|
372
380
|
entities: {
|
|
373
381
|
hashtags: string[] | null;
|
|
374
382
|
mentions: string[] | null;
|
|
@@ -388,14 +396,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
388
396
|
tweetsCount: number | null;
|
|
389
397
|
createdAt: string | null;
|
|
390
398
|
} | null;
|
|
391
|
-
stats: {
|
|
392
|
-
viewCount: number | null;
|
|
393
|
-
retweetCount: number | null;
|
|
394
|
-
replyCount: number | null;
|
|
395
|
-
likeCount: number | null;
|
|
396
|
-
quoteCount: number | null;
|
|
397
|
-
bookmarkCount: number | null;
|
|
398
|
-
} | null;
|
|
399
399
|
media: {
|
|
400
400
|
type: string | null;
|
|
401
401
|
url: string | null;
|
|
@@ -412,6 +412,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
412
412
|
url: string | null;
|
|
413
413
|
id: string | null;
|
|
414
414
|
text: string | null;
|
|
415
|
+
stats: {
|
|
416
|
+
viewCount: number | null;
|
|
417
|
+
retweetCount: number | null;
|
|
418
|
+
replyCount: number | null;
|
|
419
|
+
likeCount: number | null;
|
|
420
|
+
quoteCount: number | null;
|
|
421
|
+
bookmarkCount: number | null;
|
|
422
|
+
} | null;
|
|
415
423
|
entities: {
|
|
416
424
|
hashtags: string[] | null;
|
|
417
425
|
mentions: string[] | null;
|
|
@@ -431,14 +439,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
431
439
|
tweetsCount: number | null;
|
|
432
440
|
createdAt: string | null;
|
|
433
441
|
} | null;
|
|
434
|
-
stats: {
|
|
435
|
-
viewCount: number | null;
|
|
436
|
-
retweetCount: number | null;
|
|
437
|
-
replyCount: number | null;
|
|
438
|
-
likeCount: number | null;
|
|
439
|
-
quoteCount: number | null;
|
|
440
|
-
bookmarkCount: number | null;
|
|
441
|
-
} | null;
|
|
442
442
|
media: {
|
|
443
443
|
type: string | null;
|
|
444
444
|
url: string | null;
|
|
@@ -463,6 +463,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
463
463
|
url: string | null;
|
|
464
464
|
id: string | null;
|
|
465
465
|
text: string | null;
|
|
466
|
+
stats: {
|
|
467
|
+
viewCount: number | null;
|
|
468
|
+
retweetCount: number | null;
|
|
469
|
+
replyCount: number | null;
|
|
470
|
+
likeCount: number | null;
|
|
471
|
+
quoteCount: number | null;
|
|
472
|
+
bookmarkCount: number | null;
|
|
473
|
+
} | null;
|
|
466
474
|
entities: {
|
|
467
475
|
hashtags: string[] | null;
|
|
468
476
|
mentions: string[] | null;
|
|
@@ -482,14 +490,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
482
490
|
tweetsCount: number | null;
|
|
483
491
|
createdAt: string | null;
|
|
484
492
|
} | null;
|
|
485
|
-
stats: {
|
|
486
|
-
viewCount: number | null;
|
|
487
|
-
retweetCount: number | null;
|
|
488
|
-
replyCount: number | null;
|
|
489
|
-
likeCount: number | null;
|
|
490
|
-
quoteCount: number | null;
|
|
491
|
-
bookmarkCount: number | null;
|
|
492
|
-
} | null;
|
|
493
493
|
media: {
|
|
494
494
|
type: string | null;
|
|
495
495
|
url: string | null;
|
|
@@ -512,6 +512,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
512
512
|
url: string | null;
|
|
513
513
|
id: string | null;
|
|
514
514
|
text: string | null;
|
|
515
|
+
stats: {
|
|
516
|
+
viewCount: number | null;
|
|
517
|
+
retweetCount: number | null;
|
|
518
|
+
replyCount: number | null;
|
|
519
|
+
likeCount: number | null;
|
|
520
|
+
quoteCount: number | null;
|
|
521
|
+
bookmarkCount: number | null;
|
|
522
|
+
} | null;
|
|
515
523
|
entities: {
|
|
516
524
|
hashtags: string[] | null;
|
|
517
525
|
mentions: string[] | null;
|
|
@@ -531,14 +539,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
531
539
|
tweetsCount: number | null;
|
|
532
540
|
createdAt: string | null;
|
|
533
541
|
} | null;
|
|
534
|
-
stats: {
|
|
535
|
-
viewCount: number | null;
|
|
536
|
-
retweetCount: number | null;
|
|
537
|
-
replyCount: number | null;
|
|
538
|
-
likeCount: number | null;
|
|
539
|
-
quoteCount: number | null;
|
|
540
|
-
bookmarkCount: number | null;
|
|
541
|
-
} | null;
|
|
542
542
|
media: {
|
|
543
543
|
type: string | null;
|
|
544
544
|
url: string | null;
|
|
@@ -715,6 +715,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
715
715
|
url: string | null;
|
|
716
716
|
id: string | null;
|
|
717
717
|
text: string | null;
|
|
718
|
+
stats: {
|
|
719
|
+
viewCount: number | null;
|
|
720
|
+
retweetCount: number | null;
|
|
721
|
+
replyCount: number | null;
|
|
722
|
+
likeCount: number | null;
|
|
723
|
+
quoteCount: number | null;
|
|
724
|
+
bookmarkCount: number | null;
|
|
725
|
+
} | null;
|
|
718
726
|
entities: {
|
|
719
727
|
hashtags: string[] | null;
|
|
720
728
|
mentions: string[] | null;
|
|
@@ -734,14 +742,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
734
742
|
tweetsCount: number | null;
|
|
735
743
|
createdAt: string | null;
|
|
736
744
|
} | null;
|
|
737
|
-
stats: {
|
|
738
|
-
viewCount: number | null;
|
|
739
|
-
retweetCount: number | null;
|
|
740
|
-
replyCount: number | null;
|
|
741
|
-
likeCount: number | null;
|
|
742
|
-
quoteCount: number | null;
|
|
743
|
-
bookmarkCount: number | null;
|
|
744
|
-
} | null;
|
|
745
745
|
media: {
|
|
746
746
|
type: string | null;
|
|
747
747
|
url: string | null;
|
|
@@ -758,6 +758,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
758
758
|
url: string | null;
|
|
759
759
|
id: string | null;
|
|
760
760
|
text: string | null;
|
|
761
|
+
stats: {
|
|
762
|
+
viewCount: number | null;
|
|
763
|
+
retweetCount: number | null;
|
|
764
|
+
replyCount: number | null;
|
|
765
|
+
likeCount: number | null;
|
|
766
|
+
quoteCount: number | null;
|
|
767
|
+
bookmarkCount: number | null;
|
|
768
|
+
} | null;
|
|
761
769
|
entities: {
|
|
762
770
|
hashtags: string[] | null;
|
|
763
771
|
mentions: string[] | null;
|
|
@@ -777,14 +785,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
777
785
|
tweetsCount: number | null;
|
|
778
786
|
createdAt: string | null;
|
|
779
787
|
} | null;
|
|
780
|
-
stats: {
|
|
781
|
-
viewCount: number | null;
|
|
782
|
-
retweetCount: number | null;
|
|
783
|
-
replyCount: number | null;
|
|
784
|
-
likeCount: number | null;
|
|
785
|
-
quoteCount: number | null;
|
|
786
|
-
bookmarkCount: number | null;
|
|
787
|
-
} | null;
|
|
788
788
|
media: {
|
|
789
789
|
type: string | null;
|
|
790
790
|
url: string | null;
|
|
@@ -809,6 +809,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
809
809
|
url: string | null;
|
|
810
810
|
id: string | null;
|
|
811
811
|
text: string | null;
|
|
812
|
+
stats: {
|
|
813
|
+
viewCount: number | null;
|
|
814
|
+
retweetCount: number | null;
|
|
815
|
+
replyCount: number | null;
|
|
816
|
+
likeCount: number | null;
|
|
817
|
+
quoteCount: number | null;
|
|
818
|
+
bookmarkCount: number | null;
|
|
819
|
+
} | null;
|
|
812
820
|
entities: {
|
|
813
821
|
hashtags: string[] | null;
|
|
814
822
|
mentions: string[] | null;
|
|
@@ -828,14 +836,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
828
836
|
tweetsCount: number | null;
|
|
829
837
|
createdAt: string | null;
|
|
830
838
|
} | null;
|
|
831
|
-
stats: {
|
|
832
|
-
viewCount: number | null;
|
|
833
|
-
retweetCount: number | null;
|
|
834
|
-
replyCount: number | null;
|
|
835
|
-
likeCount: number | null;
|
|
836
|
-
quoteCount: number | null;
|
|
837
|
-
bookmarkCount: number | null;
|
|
838
|
-
} | null;
|
|
839
839
|
media: {
|
|
840
840
|
type: string | null;
|
|
841
841
|
url: string | null;
|
|
@@ -858,6 +858,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
858
858
|
url: string | null;
|
|
859
859
|
id: string | null;
|
|
860
860
|
text: string | null;
|
|
861
|
+
stats: {
|
|
862
|
+
viewCount: number | null;
|
|
863
|
+
retweetCount: number | null;
|
|
864
|
+
replyCount: number | null;
|
|
865
|
+
likeCount: number | null;
|
|
866
|
+
quoteCount: number | null;
|
|
867
|
+
bookmarkCount: number | null;
|
|
868
|
+
} | null;
|
|
861
869
|
entities: {
|
|
862
870
|
hashtags: string[] | null;
|
|
863
871
|
mentions: string[] | null;
|
|
@@ -877,14 +885,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
877
885
|
tweetsCount: number | null;
|
|
878
886
|
createdAt: string | null;
|
|
879
887
|
} | null;
|
|
880
|
-
stats: {
|
|
881
|
-
viewCount: number | null;
|
|
882
|
-
retweetCount: number | null;
|
|
883
|
-
replyCount: number | null;
|
|
884
|
-
likeCount: number | null;
|
|
885
|
-
quoteCount: number | null;
|
|
886
|
-
bookmarkCount: number | null;
|
|
887
|
-
} | null;
|
|
888
888
|
media: {
|
|
889
889
|
type: string | null;
|
|
890
890
|
url: string | null;
|
|
@@ -69,9 +69,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
69
69
|
maxPagesReached?: boolean | undefined;
|
|
70
70
|
}>>;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
|
+
url: string;
|
|
72
73
|
error: string;
|
|
73
74
|
success: boolean;
|
|
74
|
-
url: string;
|
|
75
75
|
pages: {
|
|
76
76
|
content: string;
|
|
77
77
|
url: string;
|
|
@@ -86,9 +86,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
86
86
|
maxPagesReached?: boolean | undefined;
|
|
87
87
|
} | undefined;
|
|
88
88
|
}, {
|
|
89
|
+
url: string;
|
|
89
90
|
error: string;
|
|
90
91
|
success: boolean;
|
|
91
|
-
url: string;
|
|
92
92
|
pages: {
|
|
93
93
|
content: string;
|
|
94
94
|
url: string;
|
|
@@ -175,9 +175,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
175
175
|
maxPagesReached?: boolean | undefined;
|
|
176
176
|
}>>;
|
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
url: string;
|
|
178
179
|
error: string;
|
|
179
180
|
success: boolean;
|
|
180
|
-
url: string;
|
|
181
181
|
pages: {
|
|
182
182
|
content: string;
|
|
183
183
|
url: string;
|
|
@@ -192,9 +192,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
192
192
|
maxPagesReached?: boolean | undefined;
|
|
193
193
|
} | undefined;
|
|
194
194
|
}, {
|
|
195
|
+
url: string;
|
|
195
196
|
error: string;
|
|
196
197
|
success: boolean;
|
|
197
|
-
url: string;
|
|
198
198
|
pages: {
|
|
199
199
|
content: string;
|
|
200
200
|
url: string;
|
|
@@ -40,9 +40,9 @@ declare const WebExtractToolResultSchema: z.ZodObject<{
|
|
|
40
40
|
pageTitle?: string | undefined;
|
|
41
41
|
}>>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
+
url: string;
|
|
43
44
|
error: string;
|
|
44
45
|
success: boolean;
|
|
45
|
-
url: string;
|
|
46
46
|
metadata?: {
|
|
47
47
|
statusCode?: number | undefined;
|
|
48
48
|
extractionTime?: number | undefined;
|
|
@@ -50,9 +50,9 @@ declare const WebExtractToolResultSchema: z.ZodObject<{
|
|
|
50
50
|
} | undefined;
|
|
51
51
|
extractedData?: any;
|
|
52
52
|
}, {
|
|
53
|
+
url: string;
|
|
53
54
|
error: string;
|
|
54
55
|
success: boolean;
|
|
55
|
-
url: string;
|
|
56
56
|
metadata?: {
|
|
57
57
|
statusCode?: number | undefined;
|
|
58
58
|
extractionTime?: number | undefined;
|
|
@@ -103,9 +103,9 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
103
103
|
pageTitle?: string | undefined;
|
|
104
104
|
}>>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
+
url: string;
|
|
106
107
|
error: string;
|
|
107
108
|
success: boolean;
|
|
108
|
-
url: string;
|
|
109
109
|
metadata?: {
|
|
110
110
|
statusCode?: number | undefined;
|
|
111
111
|
extractionTime?: number | undefined;
|
|
@@ -113,9 +113,9 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
113
113
|
} | undefined;
|
|
114
114
|
extractedData?: any;
|
|
115
115
|
}, {
|
|
116
|
+
url: string;
|
|
116
117
|
error: string;
|
|
117
118
|
success: boolean;
|
|
118
|
-
url: string;
|
|
119
119
|
metadata?: {
|
|
120
120
|
statusCode?: number | undefined;
|
|
121
121
|
extractionTime?: number | undefined;
|
|
@@ -39,10 +39,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
format: string;
|
|
41
41
|
title: string;
|
|
42
|
-
error: string;
|
|
43
|
-
success: boolean;
|
|
44
42
|
content: string;
|
|
45
43
|
url: string;
|
|
44
|
+
error: string;
|
|
45
|
+
success: boolean;
|
|
46
46
|
creditsUsed: number;
|
|
47
47
|
metadata?: {
|
|
48
48
|
statusCode?: number | undefined;
|
|
@@ -51,10 +51,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
51
51
|
}, {
|
|
52
52
|
format: string;
|
|
53
53
|
title: string;
|
|
54
|
-
error: string;
|
|
55
|
-
success: boolean;
|
|
56
54
|
content: string;
|
|
57
55
|
url: string;
|
|
56
|
+
error: string;
|
|
57
|
+
success: boolean;
|
|
58
58
|
creditsUsed: number;
|
|
59
59
|
metadata?: {
|
|
60
60
|
statusCode?: number | undefined;
|
|
@@ -103,10 +103,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
104
|
format: string;
|
|
105
105
|
title: string;
|
|
106
|
-
error: string;
|
|
107
|
-
success: boolean;
|
|
108
106
|
content: string;
|
|
109
107
|
url: string;
|
|
108
|
+
error: string;
|
|
109
|
+
success: boolean;
|
|
110
110
|
creditsUsed: number;
|
|
111
111
|
metadata?: {
|
|
112
112
|
statusCode?: number | undefined;
|
|
@@ -115,10 +115,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
115
115
|
}, {
|
|
116
116
|
format: string;
|
|
117
117
|
title: string;
|
|
118
|
-
error: string;
|
|
119
|
-
success: boolean;
|
|
120
118
|
content: string;
|
|
121
119
|
url: string;
|
|
120
|
+
error: string;
|
|
121
|
+
success: boolean;
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
metadata?: {
|
|
124
124
|
statusCode?: number | undefined;
|
|
@@ -222,9 +222,9 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
|
|
|
222
222
|
success: z.ZodBoolean;
|
|
223
223
|
error: z.ZodString;
|
|
224
224
|
}, "strip", z.ZodTypeAny, {
|
|
225
|
+
url: string | null;
|
|
225
226
|
error: string;
|
|
226
227
|
success: boolean;
|
|
227
|
-
url: string | null;
|
|
228
228
|
batch: string | null;
|
|
229
229
|
people: {
|
|
230
230
|
title: string | null;
|
|
@@ -254,9 +254,9 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
|
|
|
254
254
|
totalPeople: number;
|
|
255
255
|
totalCompanies: number;
|
|
256
256
|
}, {
|
|
257
|
+
url: string | null;
|
|
257
258
|
error: string;
|
|
258
259
|
success: boolean;
|
|
259
|
-
url: string | null;
|
|
260
260
|
batch: string | null;
|
|
261
261
|
people: {
|
|
262
262
|
title: string | null;
|
|
@@ -420,9 +420,9 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
420
420
|
success: z.ZodBoolean;
|
|
421
421
|
error: z.ZodString;
|
|
422
422
|
}, "strip", z.ZodTypeAny, {
|
|
423
|
+
url: string | null;
|
|
423
424
|
error: string;
|
|
424
425
|
success: boolean;
|
|
425
|
-
url: string | null;
|
|
426
426
|
batch: string | null;
|
|
427
427
|
people: {
|
|
428
428
|
title: string | null;
|
|
@@ -452,9 +452,9 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
452
452
|
totalPeople: number;
|
|
453
453
|
totalCompanies: number;
|
|
454
454
|
}, {
|
|
455
|
+
url: string | null;
|
|
455
456
|
error: string;
|
|
456
457
|
success: boolean;
|
|
457
|
-
url: string | null;
|
|
458
458
|
batch: string | null;
|
|
459
459
|
people: {
|
|
460
460
|
title: string | null;
|