@bubblelab/bubble-core 0.1.64 → 0.1.66
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 +79 -79
- package/dist/bubbles/service-bubble/ai-agent.d.ts +113 -104
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +129 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
- package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +95 -74
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +96 -0
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +108 -102
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +10 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- 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 +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +40 -40
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +68 -68
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +32 -32
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/research-agent-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 +16 -16
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
- 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/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
- package/dist/bubbles.json +50 -21
- package/package.json +2 -2
|
@@ -38,9 +38,9 @@ declare const SQLQueryToolResultSchema: z.ZodObject<{
|
|
|
38
38
|
success: z.ZodBoolean;
|
|
39
39
|
error: z.ZodString;
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
|
-
executionTime: number;
|
|
42
41
|
error: string;
|
|
43
42
|
success: boolean;
|
|
43
|
+
executionTime: number;
|
|
44
44
|
rowCount: number;
|
|
45
45
|
rows?: Record<string, unknown>[] | undefined;
|
|
46
46
|
fields?: {
|
|
@@ -48,9 +48,9 @@ declare const SQLQueryToolResultSchema: z.ZodObject<{
|
|
|
48
48
|
dataTypeID?: number | undefined;
|
|
49
49
|
}[] | undefined;
|
|
50
50
|
}, {
|
|
51
|
-
executionTime: number;
|
|
52
51
|
error: string;
|
|
53
52
|
success: boolean;
|
|
53
|
+
executionTime: number;
|
|
54
54
|
rowCount: number;
|
|
55
55
|
rows?: Record<string, unknown>[] | undefined;
|
|
56
56
|
fields?: {
|
|
@@ -101,9 +101,9 @@ export declare class SQLQueryTool extends ToolBubble<SQLQueryToolParams, SQLQuer
|
|
|
101
101
|
success: z.ZodBoolean;
|
|
102
102
|
error: z.ZodString;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
executionTime: number;
|
|
105
104
|
error: string;
|
|
106
105
|
success: boolean;
|
|
106
|
+
executionTime: number;
|
|
107
107
|
rowCount: number;
|
|
108
108
|
rows?: Record<string, unknown>[] | undefined;
|
|
109
109
|
fields?: {
|
|
@@ -111,9 +111,9 @@ export declare class SQLQueryTool extends ToolBubble<SQLQueryToolParams, SQLQuer
|
|
|
111
111
|
dataTypeID?: number | undefined;
|
|
112
112
|
}[] | undefined;
|
|
113
113
|
}, {
|
|
114
|
-
executionTime: number;
|
|
115
114
|
error: string;
|
|
116
115
|
success: boolean;
|
|
116
|
+
executionTime: number;
|
|
117
117
|
rowCount: number;
|
|
118
118
|
rows?: Record<string, unknown>[] | undefined;
|
|
119
119
|
fields?: {
|
|
@@ -98,6 +98,8 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
98
98
|
name: string | null;
|
|
99
99
|
}>, "many">>;
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
|
+
text: string | null;
|
|
102
|
+
id: string | null;
|
|
101
103
|
stats: {
|
|
102
104
|
collectCount: number | null;
|
|
103
105
|
commentCount: number | null;
|
|
@@ -105,8 +107,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
105
107
|
playCount: number | null;
|
|
106
108
|
shareCount: number | null;
|
|
107
109
|
} | null;
|
|
108
|
-
id: string | null;
|
|
109
|
-
text: string | null;
|
|
110
110
|
hashtags: {
|
|
111
111
|
name: string | null;
|
|
112
112
|
}[] | null;
|
|
@@ -128,6 +128,8 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
128
128
|
webVideoUrl: string | null;
|
|
129
129
|
covers: string[] | null;
|
|
130
130
|
}, {
|
|
131
|
+
text: string | null;
|
|
132
|
+
id: string | null;
|
|
131
133
|
stats: {
|
|
132
134
|
collectCount: number | null;
|
|
133
135
|
commentCount: number | null;
|
|
@@ -135,8 +137,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
135
137
|
playCount: number | null;
|
|
136
138
|
shareCount: number | null;
|
|
137
139
|
} | null;
|
|
138
|
-
id: string | null;
|
|
139
|
-
text: string | null;
|
|
140
140
|
hashtags: {
|
|
141
141
|
name: string | null;
|
|
142
142
|
}[] | null;
|
|
@@ -166,6 +166,8 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
166
166
|
success: boolean;
|
|
167
167
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
168
168
|
videos: {
|
|
169
|
+
text: string | null;
|
|
170
|
+
id: string | null;
|
|
169
171
|
stats: {
|
|
170
172
|
collectCount: number | null;
|
|
171
173
|
commentCount: number | null;
|
|
@@ -173,8 +175,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
173
175
|
playCount: number | null;
|
|
174
176
|
shareCount: number | null;
|
|
175
177
|
} | null;
|
|
176
|
-
id: string | null;
|
|
177
|
-
text: string | null;
|
|
178
178
|
hashtags: {
|
|
179
179
|
name: string | null;
|
|
180
180
|
}[] | null;
|
|
@@ -202,6 +202,8 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
202
202
|
success: boolean;
|
|
203
203
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
204
204
|
videos: {
|
|
205
|
+
text: string | null;
|
|
206
|
+
id: string | null;
|
|
205
207
|
stats: {
|
|
206
208
|
collectCount: number | null;
|
|
207
209
|
commentCount: number | null;
|
|
@@ -209,8 +211,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
209
211
|
playCount: number | null;
|
|
210
212
|
shareCount: number | null;
|
|
211
213
|
} | null;
|
|
212
|
-
id: string | null;
|
|
213
|
-
text: string | null;
|
|
214
214
|
hashtags: {
|
|
215
215
|
name: string | null;
|
|
216
216
|
}[] | null;
|
|
@@ -335,6 +335,8 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
335
335
|
name: string | null;
|
|
336
336
|
}>, "many">>;
|
|
337
337
|
}, "strip", z.ZodTypeAny, {
|
|
338
|
+
text: string | null;
|
|
339
|
+
id: string | null;
|
|
338
340
|
stats: {
|
|
339
341
|
collectCount: number | null;
|
|
340
342
|
commentCount: number | null;
|
|
@@ -342,8 +344,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
342
344
|
playCount: number | null;
|
|
343
345
|
shareCount: number | null;
|
|
344
346
|
} | null;
|
|
345
|
-
id: string | null;
|
|
346
|
-
text: string | null;
|
|
347
347
|
hashtags: {
|
|
348
348
|
name: string | null;
|
|
349
349
|
}[] | null;
|
|
@@ -365,6 +365,8 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
365
365
|
webVideoUrl: string | null;
|
|
366
366
|
covers: string[] | null;
|
|
367
367
|
}, {
|
|
368
|
+
text: string | null;
|
|
369
|
+
id: string | null;
|
|
368
370
|
stats: {
|
|
369
371
|
collectCount: number | null;
|
|
370
372
|
commentCount: number | null;
|
|
@@ -372,8 +374,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
372
374
|
playCount: number | null;
|
|
373
375
|
shareCount: number | null;
|
|
374
376
|
} | null;
|
|
375
|
-
id: string | null;
|
|
376
|
-
text: string | null;
|
|
377
377
|
hashtags: {
|
|
378
378
|
name: string | null;
|
|
379
379
|
}[] | null;
|
|
@@ -403,6 +403,8 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
403
403
|
success: boolean;
|
|
404
404
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
405
405
|
videos: {
|
|
406
|
+
text: string | null;
|
|
407
|
+
id: string | null;
|
|
406
408
|
stats: {
|
|
407
409
|
collectCount: number | null;
|
|
408
410
|
commentCount: number | null;
|
|
@@ -410,8 +412,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
410
412
|
playCount: number | null;
|
|
411
413
|
shareCount: number | null;
|
|
412
414
|
} | null;
|
|
413
|
-
id: string | null;
|
|
414
|
-
text: string | null;
|
|
415
415
|
hashtags: {
|
|
416
416
|
name: string | null;
|
|
417
417
|
}[] | null;
|
|
@@ -439,6 +439,8 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
439
439
|
success: boolean;
|
|
440
440
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
441
441
|
videos: {
|
|
442
|
+
text: string | null;
|
|
443
|
+
id: string | null;
|
|
442
444
|
stats: {
|
|
443
445
|
collectCount: number | null;
|
|
444
446
|
commentCount: number | null;
|
|
@@ -446,8 +448,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
446
448
|
playCount: number | null;
|
|
447
449
|
shareCount: number | null;
|
|
448
450
|
} | null;
|
|
449
|
-
id: string | null;
|
|
450
|
-
text: string | null;
|
|
451
451
|
hashtags: {
|
|
452
452
|
name: string | null;
|
|
453
453
|
}[] | null;
|
|
@@ -117,15 +117,15 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
117
117
|
height: z.ZodNullable<z.ZodNumber>;
|
|
118
118
|
duration: z.ZodNullable<z.ZodNumber>;
|
|
119
119
|
}, "strip", z.ZodTypeAny, {
|
|
120
|
-
duration: number | null;
|
|
121
120
|
type: string | null;
|
|
122
121
|
url: string | null;
|
|
122
|
+
duration: number | null;
|
|
123
123
|
width: number | null;
|
|
124
124
|
height: number | null;
|
|
125
125
|
}, {
|
|
126
|
-
duration: number | null;
|
|
127
126
|
type: string | null;
|
|
128
127
|
url: string | null;
|
|
128
|
+
duration: number | null;
|
|
129
129
|
width: number | null;
|
|
130
130
|
height: number | null;
|
|
131
131
|
}>, "many">>;
|
|
@@ -146,6 +146,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
146
146
|
isQuote: z.ZodNullable<z.ZodBoolean>;
|
|
147
147
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
url: string | null;
|
|
150
|
+
text: string | null;
|
|
151
|
+
id: string | null;
|
|
149
152
|
stats: {
|
|
150
153
|
viewCount: number | null;
|
|
151
154
|
retweetCount: number | null;
|
|
@@ -154,9 +157,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
154
157
|
quoteCount: number | null;
|
|
155
158
|
bookmarkCount: number | null;
|
|
156
159
|
} | null;
|
|
157
|
-
url: string | null;
|
|
158
|
-
id: string | null;
|
|
159
|
-
text: string | null;
|
|
160
160
|
entities: {
|
|
161
161
|
hashtags: string[] | null;
|
|
162
162
|
mentions: string[] | null;
|
|
@@ -177,9 +177,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
177
177
|
createdAt: string | null;
|
|
178
178
|
} | null;
|
|
179
179
|
media: {
|
|
180
|
-
duration: number | null;
|
|
181
180
|
type: string | null;
|
|
182
181
|
url: string | null;
|
|
182
|
+
duration: number | null;
|
|
183
183
|
width: number | null;
|
|
184
184
|
height: number | null;
|
|
185
185
|
}[] | null;
|
|
@@ -189,6 +189,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
189
189
|
isQuote: boolean | null;
|
|
190
190
|
isReply: boolean | null;
|
|
191
191
|
}, {
|
|
192
|
+
url: string | null;
|
|
193
|
+
text: string | null;
|
|
194
|
+
id: string | null;
|
|
192
195
|
stats: {
|
|
193
196
|
viewCount: number | null;
|
|
194
197
|
retweetCount: number | null;
|
|
@@ -197,9 +200,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
197
200
|
quoteCount: number | null;
|
|
198
201
|
bookmarkCount: number | null;
|
|
199
202
|
} | null;
|
|
200
|
-
url: string | null;
|
|
201
|
-
id: string | null;
|
|
202
|
-
text: string | null;
|
|
203
203
|
entities: {
|
|
204
204
|
hashtags: string[] | null;
|
|
205
205
|
mentions: string[] | null;
|
|
@@ -220,9 +220,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
220
220
|
createdAt: string | null;
|
|
221
221
|
} | null;
|
|
222
222
|
media: {
|
|
223
|
-
duration: number | null;
|
|
224
223
|
type: string | null;
|
|
225
224
|
url: string | null;
|
|
225
|
+
duration: number | null;
|
|
226
226
|
width: number | null;
|
|
227
227
|
height: number | null;
|
|
228
228
|
}[] | null;
|
|
@@ -337,15 +337,15 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
337
337
|
height: z.ZodNullable<z.ZodNumber>;
|
|
338
338
|
duration: z.ZodNullable<z.ZodNumber>;
|
|
339
339
|
}, "strip", z.ZodTypeAny, {
|
|
340
|
-
duration: number | null;
|
|
341
340
|
type: string | null;
|
|
342
341
|
url: string | null;
|
|
342
|
+
duration: number | null;
|
|
343
343
|
width: number | null;
|
|
344
344
|
height: number | null;
|
|
345
345
|
}, {
|
|
346
|
-
duration: number | null;
|
|
347
346
|
type: string | null;
|
|
348
347
|
url: string | null;
|
|
348
|
+
duration: number | null;
|
|
349
349
|
width: number | null;
|
|
350
350
|
height: number | null;
|
|
351
351
|
}>, "many">>;
|
|
@@ -366,6 +366,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
366
366
|
isQuote: z.ZodNullable<z.ZodBoolean>;
|
|
367
367
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
368
368
|
}, "strip", z.ZodTypeAny, {
|
|
369
|
+
url: string | null;
|
|
370
|
+
text: string | null;
|
|
371
|
+
id: string | null;
|
|
369
372
|
stats: {
|
|
370
373
|
viewCount: number | null;
|
|
371
374
|
retweetCount: number | null;
|
|
@@ -374,9 +377,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
374
377
|
quoteCount: number | null;
|
|
375
378
|
bookmarkCount: number | null;
|
|
376
379
|
} | null;
|
|
377
|
-
url: string | null;
|
|
378
|
-
id: string | null;
|
|
379
|
-
text: string | null;
|
|
380
380
|
entities: {
|
|
381
381
|
hashtags: string[] | null;
|
|
382
382
|
mentions: string[] | null;
|
|
@@ -397,9 +397,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
397
397
|
createdAt: string | null;
|
|
398
398
|
} | null;
|
|
399
399
|
media: {
|
|
400
|
-
duration: number | null;
|
|
401
400
|
type: string | null;
|
|
402
401
|
url: string | null;
|
|
402
|
+
duration: number | null;
|
|
403
403
|
width: number | null;
|
|
404
404
|
height: number | null;
|
|
405
405
|
}[] | null;
|
|
@@ -409,6 +409,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
409
409
|
isQuote: boolean | null;
|
|
410
410
|
isReply: boolean | null;
|
|
411
411
|
}, {
|
|
412
|
+
url: string | null;
|
|
413
|
+
text: string | null;
|
|
414
|
+
id: string | null;
|
|
412
415
|
stats: {
|
|
413
416
|
viewCount: number | null;
|
|
414
417
|
retweetCount: number | null;
|
|
@@ -417,9 +420,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
417
420
|
quoteCount: number | null;
|
|
418
421
|
bookmarkCount: number | null;
|
|
419
422
|
} | null;
|
|
420
|
-
url: string | null;
|
|
421
|
-
id: string | null;
|
|
422
|
-
text: string | null;
|
|
423
423
|
entities: {
|
|
424
424
|
hashtags: string[] | null;
|
|
425
425
|
mentions: string[] | null;
|
|
@@ -440,9 +440,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
440
440
|
createdAt: string | null;
|
|
441
441
|
} | null;
|
|
442
442
|
media: {
|
|
443
|
-
duration: number | null;
|
|
444
443
|
type: string | null;
|
|
445
444
|
url: string | null;
|
|
445
|
+
duration: number | null;
|
|
446
446
|
width: number | null;
|
|
447
447
|
height: number | null;
|
|
448
448
|
}[] | null;
|
|
@@ -460,6 +460,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
460
460
|
success: boolean;
|
|
461
461
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
462
462
|
tweets: {
|
|
463
|
+
url: string | null;
|
|
464
|
+
text: string | null;
|
|
465
|
+
id: string | null;
|
|
463
466
|
stats: {
|
|
464
467
|
viewCount: number | null;
|
|
465
468
|
retweetCount: number | null;
|
|
@@ -468,9 +471,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
468
471
|
quoteCount: number | null;
|
|
469
472
|
bookmarkCount: number | null;
|
|
470
473
|
} | null;
|
|
471
|
-
url: string | null;
|
|
472
|
-
id: string | null;
|
|
473
|
-
text: string | null;
|
|
474
474
|
entities: {
|
|
475
475
|
hashtags: string[] | null;
|
|
476
476
|
mentions: string[] | null;
|
|
@@ -491,9 +491,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
491
491
|
createdAt: string | null;
|
|
492
492
|
} | null;
|
|
493
493
|
media: {
|
|
494
|
-
duration: number | null;
|
|
495
494
|
type: string | null;
|
|
496
495
|
url: string | null;
|
|
496
|
+
duration: number | null;
|
|
497
497
|
width: number | null;
|
|
498
498
|
height: number | null;
|
|
499
499
|
}[] | null;
|
|
@@ -509,6 +509,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
509
509
|
success: boolean;
|
|
510
510
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
511
511
|
tweets: {
|
|
512
|
+
url: string | null;
|
|
513
|
+
text: string | null;
|
|
514
|
+
id: string | null;
|
|
512
515
|
stats: {
|
|
513
516
|
viewCount: number | null;
|
|
514
517
|
retweetCount: number | null;
|
|
@@ -517,9 +520,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
517
520
|
quoteCount: number | null;
|
|
518
521
|
bookmarkCount: number | null;
|
|
519
522
|
} | null;
|
|
520
|
-
url: string | null;
|
|
521
|
-
id: string | null;
|
|
522
|
-
text: string | null;
|
|
523
523
|
entities: {
|
|
524
524
|
hashtags: string[] | null;
|
|
525
525
|
mentions: string[] | null;
|
|
@@ -540,9 +540,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
540
540
|
createdAt: string | null;
|
|
541
541
|
} | null;
|
|
542
542
|
media: {
|
|
543
|
-
duration: number | null;
|
|
544
543
|
type: string | null;
|
|
545
544
|
url: string | null;
|
|
545
|
+
duration: number | null;
|
|
546
546
|
width: number | null;
|
|
547
547
|
height: number | null;
|
|
548
548
|
}[] | null;
|
|
@@ -683,15 +683,15 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
683
683
|
height: z.ZodNullable<z.ZodNumber>;
|
|
684
684
|
duration: z.ZodNullable<z.ZodNumber>;
|
|
685
685
|
}, "strip", z.ZodTypeAny, {
|
|
686
|
-
duration: number | null;
|
|
687
686
|
type: string | null;
|
|
688
687
|
url: string | null;
|
|
688
|
+
duration: number | null;
|
|
689
689
|
width: number | null;
|
|
690
690
|
height: number | null;
|
|
691
691
|
}, {
|
|
692
|
-
duration: number | null;
|
|
693
692
|
type: string | null;
|
|
694
693
|
url: string | null;
|
|
694
|
+
duration: number | null;
|
|
695
695
|
width: number | null;
|
|
696
696
|
height: number | null;
|
|
697
697
|
}>, "many">>;
|
|
@@ -712,6 +712,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
712
712
|
isQuote: z.ZodNullable<z.ZodBoolean>;
|
|
713
713
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
|
+
url: string | null;
|
|
716
|
+
text: string | null;
|
|
717
|
+
id: string | null;
|
|
715
718
|
stats: {
|
|
716
719
|
viewCount: number | null;
|
|
717
720
|
retweetCount: number | null;
|
|
@@ -720,9 +723,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
720
723
|
quoteCount: number | null;
|
|
721
724
|
bookmarkCount: number | null;
|
|
722
725
|
} | null;
|
|
723
|
-
url: string | null;
|
|
724
|
-
id: string | null;
|
|
725
|
-
text: string | null;
|
|
726
726
|
entities: {
|
|
727
727
|
hashtags: string[] | null;
|
|
728
728
|
mentions: string[] | null;
|
|
@@ -743,9 +743,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
743
743
|
createdAt: string | null;
|
|
744
744
|
} | null;
|
|
745
745
|
media: {
|
|
746
|
-
duration: number | null;
|
|
747
746
|
type: string | null;
|
|
748
747
|
url: string | null;
|
|
748
|
+
duration: number | null;
|
|
749
749
|
width: number | null;
|
|
750
750
|
height: number | null;
|
|
751
751
|
}[] | null;
|
|
@@ -755,6 +755,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
755
755
|
isQuote: boolean | null;
|
|
756
756
|
isReply: boolean | null;
|
|
757
757
|
}, {
|
|
758
|
+
url: string | null;
|
|
759
|
+
text: string | null;
|
|
760
|
+
id: string | null;
|
|
758
761
|
stats: {
|
|
759
762
|
viewCount: number | null;
|
|
760
763
|
retweetCount: number | null;
|
|
@@ -763,9 +766,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
763
766
|
quoteCount: number | null;
|
|
764
767
|
bookmarkCount: number | null;
|
|
765
768
|
} | null;
|
|
766
|
-
url: string | null;
|
|
767
|
-
id: string | null;
|
|
768
|
-
text: string | null;
|
|
769
769
|
entities: {
|
|
770
770
|
hashtags: string[] | null;
|
|
771
771
|
mentions: string[] | null;
|
|
@@ -786,9 +786,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
786
786
|
createdAt: string | null;
|
|
787
787
|
} | null;
|
|
788
788
|
media: {
|
|
789
|
-
duration: number | null;
|
|
790
789
|
type: string | null;
|
|
791
790
|
url: string | null;
|
|
791
|
+
duration: number | null;
|
|
792
792
|
width: number | null;
|
|
793
793
|
height: number | null;
|
|
794
794
|
}[] | null;
|
|
@@ -806,6 +806,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
806
806
|
success: boolean;
|
|
807
807
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
808
808
|
tweets: {
|
|
809
|
+
url: string | null;
|
|
810
|
+
text: string | null;
|
|
811
|
+
id: string | null;
|
|
809
812
|
stats: {
|
|
810
813
|
viewCount: number | null;
|
|
811
814
|
retweetCount: number | null;
|
|
@@ -814,9 +817,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
814
817
|
quoteCount: number | null;
|
|
815
818
|
bookmarkCount: number | null;
|
|
816
819
|
} | null;
|
|
817
|
-
url: string | null;
|
|
818
|
-
id: string | null;
|
|
819
|
-
text: string | null;
|
|
820
820
|
entities: {
|
|
821
821
|
hashtags: string[] | null;
|
|
822
822
|
mentions: string[] | null;
|
|
@@ -837,9 +837,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
837
837
|
createdAt: string | null;
|
|
838
838
|
} | null;
|
|
839
839
|
media: {
|
|
840
|
-
duration: number | null;
|
|
841
840
|
type: string | null;
|
|
842
841
|
url: string | null;
|
|
842
|
+
duration: number | null;
|
|
843
843
|
width: number | null;
|
|
844
844
|
height: number | null;
|
|
845
845
|
}[] | null;
|
|
@@ -855,6 +855,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
855
855
|
success: boolean;
|
|
856
856
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
857
857
|
tweets: {
|
|
858
|
+
url: string | null;
|
|
859
|
+
text: string | null;
|
|
860
|
+
id: string | null;
|
|
858
861
|
stats: {
|
|
859
862
|
viewCount: number | null;
|
|
860
863
|
retweetCount: number | null;
|
|
@@ -863,9 +866,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
863
866
|
quoteCount: number | null;
|
|
864
867
|
bookmarkCount: number | null;
|
|
865
868
|
} | null;
|
|
866
|
-
url: string | null;
|
|
867
|
-
id: string | null;
|
|
868
|
-
text: string | null;
|
|
869
869
|
entities: {
|
|
870
870
|
hashtags: string[] | null;
|
|
871
871
|
mentions: string[] | null;
|
|
@@ -886,9 +886,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
886
886
|
createdAt: string | null;
|
|
887
887
|
} | null;
|
|
888
888
|
media: {
|
|
889
|
-
duration: number | null;
|
|
890
889
|
type: string | null;
|
|
891
890
|
url: string | null;
|
|
891
|
+
duration: number | null;
|
|
892
892
|
width: number | null;
|
|
893
893
|
height: number | null;
|
|
894
894
|
}[] | 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;
|