@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.
- package/dist/bubble-bundle.d.ts +80 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
- package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
- package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
- package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
- package/dist/bubbles/service-bubble/github.d.ts +240 -240
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- 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 +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- 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 +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
- 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 +109 -2
- package/package.json +2 -2
|
@@ -18,33 +18,33 @@ declare const RedditPostSchema: z.ZodObject<{
|
|
|
18
18
|
domain: z.ZodOptional<z.ZodString>;
|
|
19
19
|
flair: z.ZodOptional<z.ZodString>;
|
|
20
20
|
}, "strip", z.ZodTypeAny, {
|
|
21
|
-
url: string;
|
|
22
21
|
title: string;
|
|
22
|
+
url: string;
|
|
23
23
|
author: string;
|
|
24
|
+
subreddit: string;
|
|
24
25
|
score: number;
|
|
25
26
|
numComments: number;
|
|
26
27
|
createdUtc: number;
|
|
27
28
|
postUrl: string;
|
|
28
29
|
selftext: string;
|
|
29
|
-
subreddit: string;
|
|
30
30
|
isSelf: boolean;
|
|
31
|
-
thumbnail?: string | undefined;
|
|
32
31
|
domain?: string | undefined;
|
|
32
|
+
thumbnail?: string | undefined;
|
|
33
33
|
postHint?: string | null | undefined;
|
|
34
34
|
flair?: string | undefined;
|
|
35
35
|
}, {
|
|
36
|
-
url: string;
|
|
37
36
|
title: string;
|
|
37
|
+
url: string;
|
|
38
38
|
author: string;
|
|
39
|
+
subreddit: string;
|
|
39
40
|
score: number;
|
|
40
41
|
numComments: number;
|
|
41
42
|
createdUtc: number;
|
|
42
43
|
postUrl: string;
|
|
43
44
|
selftext: string;
|
|
44
|
-
subreddit: string;
|
|
45
45
|
isSelf: boolean;
|
|
46
|
-
thumbnail?: string | undefined;
|
|
47
46
|
domain?: string | undefined;
|
|
47
|
+
thumbnail?: string | undefined;
|
|
48
48
|
postHint?: string | null | undefined;
|
|
49
49
|
flair?: string | undefined;
|
|
50
50
|
}>;
|
|
@@ -64,14 +64,14 @@ declare const RedditScrapeToolParamsSchema: z.ZodObject<{
|
|
|
64
64
|
filterToday: boolean;
|
|
65
65
|
includeStickied: boolean;
|
|
66
66
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
67
|
-
timeFilter?: "hour" | "week" | "month" | "year" | "day" |
|
|
67
|
+
timeFilter?: "all" | "hour" | "week" | "month" | "year" | "day" | undefined;
|
|
68
68
|
minScore?: number | undefined;
|
|
69
69
|
}, {
|
|
70
70
|
subreddit: string;
|
|
71
71
|
sort?: "hot" | "new" | "top" | "rising" | undefined;
|
|
72
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
73
|
limit?: number | undefined;
|
|
74
|
-
timeFilter?: "hour" | "week" | "month" | "year" | "day" |
|
|
74
|
+
timeFilter?: "all" | "hour" | "week" | "month" | "year" | "day" | undefined;
|
|
75
75
|
filterToday?: boolean | undefined;
|
|
76
76
|
includeStickied?: boolean | undefined;
|
|
77
77
|
minScore?: number | undefined;
|
|
@@ -93,33 +93,33 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
93
93
|
domain: z.ZodOptional<z.ZodString>;
|
|
94
94
|
flair: z.ZodOptional<z.ZodString>;
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
|
-
url: string;
|
|
97
96
|
title: string;
|
|
97
|
+
url: string;
|
|
98
98
|
author: string;
|
|
99
|
+
subreddit: string;
|
|
99
100
|
score: number;
|
|
100
101
|
numComments: number;
|
|
101
102
|
createdUtc: number;
|
|
102
103
|
postUrl: string;
|
|
103
104
|
selftext: string;
|
|
104
|
-
subreddit: string;
|
|
105
105
|
isSelf: boolean;
|
|
106
|
-
thumbnail?: string | undefined;
|
|
107
106
|
domain?: string | undefined;
|
|
107
|
+
thumbnail?: string | undefined;
|
|
108
108
|
postHint?: string | null | undefined;
|
|
109
109
|
flair?: string | undefined;
|
|
110
110
|
}, {
|
|
111
|
-
url: string;
|
|
112
111
|
title: string;
|
|
112
|
+
url: string;
|
|
113
113
|
author: string;
|
|
114
|
+
subreddit: string;
|
|
114
115
|
score: number;
|
|
115
116
|
numComments: number;
|
|
116
117
|
createdUtc: number;
|
|
117
118
|
postUrl: string;
|
|
118
119
|
selftext: string;
|
|
119
|
-
subreddit: string;
|
|
120
120
|
isSelf: boolean;
|
|
121
|
-
thumbnail?: string | undefined;
|
|
122
121
|
domain?: string | undefined;
|
|
122
|
+
thumbnail?: string | undefined;
|
|
123
123
|
postHint?: string | null | undefined;
|
|
124
124
|
flair?: string | undefined;
|
|
125
125
|
}>, "many">;
|
|
@@ -156,22 +156,35 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
157
|
success: boolean;
|
|
158
158
|
error: string;
|
|
159
|
+
metadata: {
|
|
160
|
+
sort: string;
|
|
161
|
+
scrapedAt: string;
|
|
162
|
+
subreddit: string;
|
|
163
|
+
requestedLimit: number;
|
|
164
|
+
actualCount: number;
|
|
165
|
+
filteredCount: number;
|
|
166
|
+
apiEndpoint: string;
|
|
167
|
+
timeFilter?: string | undefined;
|
|
168
|
+
};
|
|
159
169
|
posts: {
|
|
160
|
-
url: string;
|
|
161
170
|
title: string;
|
|
171
|
+
url: string;
|
|
162
172
|
author: string;
|
|
173
|
+
subreddit: string;
|
|
163
174
|
score: number;
|
|
164
175
|
numComments: number;
|
|
165
176
|
createdUtc: number;
|
|
166
177
|
postUrl: string;
|
|
167
178
|
selftext: string;
|
|
168
|
-
subreddit: string;
|
|
169
179
|
isSelf: boolean;
|
|
170
|
-
thumbnail?: string | undefined;
|
|
171
180
|
domain?: string | undefined;
|
|
181
|
+
thumbnail?: string | undefined;
|
|
172
182
|
postHint?: string | null | undefined;
|
|
173
183
|
flair?: string | undefined;
|
|
174
184
|
}[];
|
|
185
|
+
}, {
|
|
186
|
+
success: boolean;
|
|
187
|
+
error: string;
|
|
175
188
|
metadata: {
|
|
176
189
|
sort: string;
|
|
177
190
|
scrapedAt: string;
|
|
@@ -182,35 +195,22 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
182
195
|
apiEndpoint: string;
|
|
183
196
|
timeFilter?: string | undefined;
|
|
184
197
|
};
|
|
185
|
-
}, {
|
|
186
|
-
success: boolean;
|
|
187
|
-
error: string;
|
|
188
198
|
posts: {
|
|
189
|
-
url: string;
|
|
190
199
|
title: string;
|
|
200
|
+
url: string;
|
|
191
201
|
author: string;
|
|
202
|
+
subreddit: string;
|
|
192
203
|
score: number;
|
|
193
204
|
numComments: number;
|
|
194
205
|
createdUtc: number;
|
|
195
206
|
postUrl: string;
|
|
196
207
|
selftext: string;
|
|
197
|
-
subreddit: string;
|
|
198
208
|
isSelf: boolean;
|
|
199
|
-
thumbnail?: string | undefined;
|
|
200
209
|
domain?: string | undefined;
|
|
210
|
+
thumbnail?: string | undefined;
|
|
201
211
|
postHint?: string | null | undefined;
|
|
202
212
|
flair?: string | undefined;
|
|
203
213
|
}[];
|
|
204
|
-
metadata: {
|
|
205
|
-
sort: string;
|
|
206
|
-
scrapedAt: string;
|
|
207
|
-
subreddit: string;
|
|
208
|
-
requestedLimit: number;
|
|
209
|
-
actualCount: number;
|
|
210
|
-
filteredCount: number;
|
|
211
|
-
apiEndpoint: string;
|
|
212
|
-
timeFilter?: string | undefined;
|
|
213
|
-
};
|
|
214
214
|
}>;
|
|
215
215
|
type RedditScrapeToolParams = z.output<typeof RedditScrapeToolParamsSchema>;
|
|
216
216
|
type RedditScrapeToolResult = z.output<typeof RedditScrapeToolResultSchema>;
|
|
@@ -234,14 +234,14 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
234
234
|
filterToday: boolean;
|
|
235
235
|
includeStickied: boolean;
|
|
236
236
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
237
|
-
timeFilter?: "hour" | "week" | "month" | "year" | "day" |
|
|
237
|
+
timeFilter?: "all" | "hour" | "week" | "month" | "year" | "day" | undefined;
|
|
238
238
|
minScore?: number | undefined;
|
|
239
239
|
}, {
|
|
240
240
|
subreddit: string;
|
|
241
241
|
sort?: "hot" | "new" | "top" | "rising" | undefined;
|
|
242
242
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
243
243
|
limit?: number | undefined;
|
|
244
|
-
timeFilter?: "hour" | "week" | "month" | "year" | "day" |
|
|
244
|
+
timeFilter?: "all" | "hour" | "week" | "month" | "year" | "day" | undefined;
|
|
245
245
|
filterToday?: boolean | undefined;
|
|
246
246
|
includeStickied?: boolean | undefined;
|
|
247
247
|
minScore?: number | undefined;
|
|
@@ -263,33 +263,33 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
263
263
|
domain: z.ZodOptional<z.ZodString>;
|
|
264
264
|
flair: z.ZodOptional<z.ZodString>;
|
|
265
265
|
}, "strip", z.ZodTypeAny, {
|
|
266
|
-
url: string;
|
|
267
266
|
title: string;
|
|
267
|
+
url: string;
|
|
268
268
|
author: string;
|
|
269
|
+
subreddit: string;
|
|
269
270
|
score: number;
|
|
270
271
|
numComments: number;
|
|
271
272
|
createdUtc: number;
|
|
272
273
|
postUrl: string;
|
|
273
274
|
selftext: string;
|
|
274
|
-
subreddit: string;
|
|
275
275
|
isSelf: boolean;
|
|
276
|
-
thumbnail?: string | undefined;
|
|
277
276
|
domain?: string | undefined;
|
|
277
|
+
thumbnail?: string | undefined;
|
|
278
278
|
postHint?: string | null | undefined;
|
|
279
279
|
flair?: string | undefined;
|
|
280
280
|
}, {
|
|
281
|
-
url: string;
|
|
282
281
|
title: string;
|
|
282
|
+
url: string;
|
|
283
283
|
author: string;
|
|
284
|
+
subreddit: string;
|
|
284
285
|
score: number;
|
|
285
286
|
numComments: number;
|
|
286
287
|
createdUtc: number;
|
|
287
288
|
postUrl: string;
|
|
288
289
|
selftext: string;
|
|
289
|
-
subreddit: string;
|
|
290
290
|
isSelf: boolean;
|
|
291
|
-
thumbnail?: string | undefined;
|
|
292
291
|
domain?: string | undefined;
|
|
292
|
+
thumbnail?: string | undefined;
|
|
293
293
|
postHint?: string | null | undefined;
|
|
294
294
|
flair?: string | undefined;
|
|
295
295
|
}>, "many">;
|
|
@@ -326,22 +326,35 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
326
326
|
}, "strip", z.ZodTypeAny, {
|
|
327
327
|
success: boolean;
|
|
328
328
|
error: string;
|
|
329
|
+
metadata: {
|
|
330
|
+
sort: string;
|
|
331
|
+
scrapedAt: string;
|
|
332
|
+
subreddit: string;
|
|
333
|
+
requestedLimit: number;
|
|
334
|
+
actualCount: number;
|
|
335
|
+
filteredCount: number;
|
|
336
|
+
apiEndpoint: string;
|
|
337
|
+
timeFilter?: string | undefined;
|
|
338
|
+
};
|
|
329
339
|
posts: {
|
|
330
|
-
url: string;
|
|
331
340
|
title: string;
|
|
341
|
+
url: string;
|
|
332
342
|
author: string;
|
|
343
|
+
subreddit: string;
|
|
333
344
|
score: number;
|
|
334
345
|
numComments: number;
|
|
335
346
|
createdUtc: number;
|
|
336
347
|
postUrl: string;
|
|
337
348
|
selftext: string;
|
|
338
|
-
subreddit: string;
|
|
339
349
|
isSelf: boolean;
|
|
340
|
-
thumbnail?: string | undefined;
|
|
341
350
|
domain?: string | undefined;
|
|
351
|
+
thumbnail?: string | undefined;
|
|
342
352
|
postHint?: string | null | undefined;
|
|
343
353
|
flair?: string | undefined;
|
|
344
354
|
}[];
|
|
355
|
+
}, {
|
|
356
|
+
success: boolean;
|
|
357
|
+
error: string;
|
|
345
358
|
metadata: {
|
|
346
359
|
sort: string;
|
|
347
360
|
scrapedAt: string;
|
|
@@ -352,35 +365,22 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
352
365
|
apiEndpoint: string;
|
|
353
366
|
timeFilter?: string | undefined;
|
|
354
367
|
};
|
|
355
|
-
}, {
|
|
356
|
-
success: boolean;
|
|
357
|
-
error: string;
|
|
358
368
|
posts: {
|
|
359
|
-
url: string;
|
|
360
369
|
title: string;
|
|
370
|
+
url: string;
|
|
361
371
|
author: string;
|
|
372
|
+
subreddit: string;
|
|
362
373
|
score: number;
|
|
363
374
|
numComments: number;
|
|
364
375
|
createdUtc: number;
|
|
365
376
|
postUrl: string;
|
|
366
377
|
selftext: string;
|
|
367
|
-
subreddit: string;
|
|
368
378
|
isSelf: boolean;
|
|
369
|
-
thumbnail?: string | undefined;
|
|
370
379
|
domain?: string | undefined;
|
|
380
|
+
thumbnail?: string | undefined;
|
|
371
381
|
postHint?: string | null | undefined;
|
|
372
382
|
flair?: string | undefined;
|
|
373
383
|
}[];
|
|
374
|
-
metadata: {
|
|
375
|
-
sort: string;
|
|
376
|
-
scrapedAt: string;
|
|
377
|
-
subreddit: string;
|
|
378
|
-
requestedLimit: number;
|
|
379
|
-
actualCount: number;
|
|
380
|
-
filteredCount: number;
|
|
381
|
-
apiEndpoint: string;
|
|
382
|
-
timeFilter?: string | undefined;
|
|
383
|
-
};
|
|
384
384
|
}>;
|
|
385
385
|
static readonly shortDescription = "Scrapes posts from any Reddit subreddit with flexible filtering and sorting options";
|
|
386
386
|
static readonly longDescription = "\n A specialized tool for scraping Reddit posts from any subreddit with comprehensive filtering and sorting capabilities.\n \n \uD83D\uDD25 Core Features:\n - Scrape posts from any public subreddit\n - Multiple sorting options (hot, new, top, rising)\n - Flexible post limits (1-1000 posts with pagination)\n - Time-based filtering for top posts\n - Today-only filtering option\n - Score-based filtering\n - Stickied post inclusion/exclusion\n \n \uD83D\uDCCA Post Data Extracted:\n - Title, author, and content\n - Upvote scores and comment counts\n - Creation timestamps and permalinks\n - Post types (text vs link posts)\n - External URLs and domains\n - Thumbnails and flairs\n - Comprehensive metadata\n \n \uD83C\uDFAF Use Cases:\n - Monitor specific subreddits for trends\n - Gather posts for content analysis\n - Track community engagement metrics\n - Feed Reddit data into other workflows\n - Research subreddit activity patterns\n - Content aggregation and curation\n \n \u26A1 Technical Features:\n - Uses Reddit's official JSON API\n - No authentication required for public posts\n - Respects Reddit's rate limiting\n - Handles large subreddits efficiently\n - Robust error handling and validation\n - Clean, structured data output\n \n Perfect for integration with AI agents, data analysis workflows, and content monitoring systems.\n ";
|
|
@@ -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
|
}>>;
|
|
@@ -98,21 +98,21 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
98
98
|
name: string | null;
|
|
99
99
|
}>, "many">>;
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
|
+
text: string | null;
|
|
101
102
|
id: string | null;
|
|
102
103
|
hashtags: {
|
|
103
104
|
name: string | null;
|
|
104
105
|
}[] | null;
|
|
105
106
|
videoUrl: string | null;
|
|
106
|
-
text: string | null;
|
|
107
107
|
author: {
|
|
108
108
|
id: string | null;
|
|
109
109
|
verified: boolean | null;
|
|
110
110
|
signature: string | null;
|
|
111
|
+
followingCount: number | null;
|
|
111
112
|
uniqueId: string | null;
|
|
112
113
|
nickname: string | null;
|
|
113
114
|
avatarThumb: string | null;
|
|
114
115
|
followerCount: number | null;
|
|
115
|
-
followingCount: number | null;
|
|
116
116
|
videoCount: number | null;
|
|
117
117
|
heartCount: number | null;
|
|
118
118
|
} | null;
|
|
@@ -128,21 +128,21 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
128
128
|
webVideoUrl: string | null;
|
|
129
129
|
covers: string[] | null;
|
|
130
130
|
}, {
|
|
131
|
+
text: string | null;
|
|
131
132
|
id: string | null;
|
|
132
133
|
hashtags: {
|
|
133
134
|
name: string | null;
|
|
134
135
|
}[] | null;
|
|
135
136
|
videoUrl: string | null;
|
|
136
|
-
text: string | null;
|
|
137
137
|
author: {
|
|
138
138
|
id: string | null;
|
|
139
139
|
verified: boolean | null;
|
|
140
140
|
signature: string | null;
|
|
141
|
+
followingCount: number | null;
|
|
141
142
|
uniqueId: string | null;
|
|
142
143
|
nickname: string | null;
|
|
143
144
|
avatarThumb: string | null;
|
|
144
145
|
followerCount: number | null;
|
|
145
|
-
followingCount: number | null;
|
|
146
146
|
videoCount: number | null;
|
|
147
147
|
heartCount: number | null;
|
|
148
148
|
} | null;
|
|
@@ -164,22 +164,23 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
164
164
|
}, "strip", z.ZodTypeAny, {
|
|
165
165
|
success: boolean;
|
|
166
166
|
error: string;
|
|
167
|
+
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
167
168
|
videos: {
|
|
169
|
+
text: string | null;
|
|
168
170
|
id: string | null;
|
|
169
171
|
hashtags: {
|
|
170
172
|
name: string | null;
|
|
171
173
|
}[] | null;
|
|
172
174
|
videoUrl: string | null;
|
|
173
|
-
text: string | null;
|
|
174
175
|
author: {
|
|
175
176
|
id: string | null;
|
|
176
177
|
verified: boolean | null;
|
|
177
178
|
signature: string | null;
|
|
179
|
+
followingCount: number | null;
|
|
178
180
|
uniqueId: string | null;
|
|
179
181
|
nickname: string | null;
|
|
180
182
|
avatarThumb: string | null;
|
|
181
183
|
followerCount: number | null;
|
|
182
|
-
followingCount: number | null;
|
|
183
184
|
videoCount: number | null;
|
|
184
185
|
heartCount: number | null;
|
|
185
186
|
} | null;
|
|
@@ -195,27 +196,27 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
195
196
|
webVideoUrl: string | null;
|
|
196
197
|
covers: string[] | null;
|
|
197
198
|
}[];
|
|
198
|
-
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
199
199
|
totalVideos: number;
|
|
200
200
|
}, {
|
|
201
201
|
success: boolean;
|
|
202
202
|
error: string;
|
|
203
|
+
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
203
204
|
videos: {
|
|
205
|
+
text: string | null;
|
|
204
206
|
id: string | null;
|
|
205
207
|
hashtags: {
|
|
206
208
|
name: string | null;
|
|
207
209
|
}[] | null;
|
|
208
210
|
videoUrl: string | null;
|
|
209
|
-
text: string | null;
|
|
210
211
|
author: {
|
|
211
212
|
id: string | null;
|
|
212
213
|
verified: boolean | null;
|
|
213
214
|
signature: string | null;
|
|
215
|
+
followingCount: number | null;
|
|
214
216
|
uniqueId: string | null;
|
|
215
217
|
nickname: string | null;
|
|
216
218
|
avatarThumb: string | null;
|
|
217
219
|
followerCount: number | null;
|
|
218
|
-
followingCount: number | null;
|
|
219
220
|
videoCount: number | null;
|
|
220
221
|
heartCount: number | null;
|
|
221
222
|
} | null;
|
|
@@ -231,7 +232,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
231
232
|
webVideoUrl: string | null;
|
|
232
233
|
covers: string[] | null;
|
|
233
234
|
}[];
|
|
234
|
-
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
235
235
|
totalVideos: number;
|
|
236
236
|
}>;
|
|
237
237
|
type TikTokToolParams = z.output<typeof TikTokToolParamsSchema>;
|
|
@@ -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
|
}>>;
|
|
@@ -335,21 +335,21 @@ 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;
|
|
338
339
|
id: string | null;
|
|
339
340
|
hashtags: {
|
|
340
341
|
name: string | null;
|
|
341
342
|
}[] | null;
|
|
342
343
|
videoUrl: string | null;
|
|
343
|
-
text: string | null;
|
|
344
344
|
author: {
|
|
345
345
|
id: string | null;
|
|
346
346
|
verified: boolean | null;
|
|
347
347
|
signature: string | null;
|
|
348
|
+
followingCount: number | null;
|
|
348
349
|
uniqueId: string | null;
|
|
349
350
|
nickname: string | null;
|
|
350
351
|
avatarThumb: string | null;
|
|
351
352
|
followerCount: number | null;
|
|
352
|
-
followingCount: number | null;
|
|
353
353
|
videoCount: number | null;
|
|
354
354
|
heartCount: number | null;
|
|
355
355
|
} | null;
|
|
@@ -365,21 +365,21 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
365
365
|
webVideoUrl: string | null;
|
|
366
366
|
covers: string[] | null;
|
|
367
367
|
}, {
|
|
368
|
+
text: string | null;
|
|
368
369
|
id: string | null;
|
|
369
370
|
hashtags: {
|
|
370
371
|
name: string | null;
|
|
371
372
|
}[] | null;
|
|
372
373
|
videoUrl: string | null;
|
|
373
|
-
text: string | null;
|
|
374
374
|
author: {
|
|
375
375
|
id: string | null;
|
|
376
376
|
verified: boolean | null;
|
|
377
377
|
signature: string | null;
|
|
378
|
+
followingCount: number | null;
|
|
378
379
|
uniqueId: string | null;
|
|
379
380
|
nickname: string | null;
|
|
380
381
|
avatarThumb: string | null;
|
|
381
382
|
followerCount: number | null;
|
|
382
|
-
followingCount: number | null;
|
|
383
383
|
videoCount: number | null;
|
|
384
384
|
heartCount: number | null;
|
|
385
385
|
} | null;
|
|
@@ -401,22 +401,23 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
402
|
success: boolean;
|
|
403
403
|
error: string;
|
|
404
|
+
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
404
405
|
videos: {
|
|
406
|
+
text: string | null;
|
|
405
407
|
id: string | null;
|
|
406
408
|
hashtags: {
|
|
407
409
|
name: string | null;
|
|
408
410
|
}[] | null;
|
|
409
411
|
videoUrl: string | null;
|
|
410
|
-
text: string | null;
|
|
411
412
|
author: {
|
|
412
413
|
id: string | null;
|
|
413
414
|
verified: boolean | null;
|
|
414
415
|
signature: string | null;
|
|
416
|
+
followingCount: number | null;
|
|
415
417
|
uniqueId: string | null;
|
|
416
418
|
nickname: string | null;
|
|
417
419
|
avatarThumb: string | null;
|
|
418
420
|
followerCount: number | null;
|
|
419
|
-
followingCount: number | null;
|
|
420
421
|
videoCount: number | null;
|
|
421
422
|
heartCount: number | null;
|
|
422
423
|
} | null;
|
|
@@ -432,27 +433,27 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
432
433
|
webVideoUrl: string | null;
|
|
433
434
|
covers: string[] | null;
|
|
434
435
|
}[];
|
|
435
|
-
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
436
436
|
totalVideos: number;
|
|
437
437
|
}, {
|
|
438
438
|
success: boolean;
|
|
439
439
|
error: string;
|
|
440
|
+
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
440
441
|
videos: {
|
|
442
|
+
text: string | null;
|
|
441
443
|
id: string | null;
|
|
442
444
|
hashtags: {
|
|
443
445
|
name: string | null;
|
|
444
446
|
}[] | null;
|
|
445
447
|
videoUrl: string | null;
|
|
446
|
-
text: string | null;
|
|
447
448
|
author: {
|
|
448
449
|
id: string | null;
|
|
449
450
|
verified: boolean | null;
|
|
450
451
|
signature: string | null;
|
|
452
|
+
followingCount: number | null;
|
|
451
453
|
uniqueId: string | null;
|
|
452
454
|
nickname: string | null;
|
|
453
455
|
avatarThumb: string | null;
|
|
454
456
|
followerCount: number | null;
|
|
455
|
-
followingCount: number | null;
|
|
456
457
|
videoCount: number | null;
|
|
457
458
|
heartCount: number | null;
|
|
458
459
|
} | null;
|
|
@@ -468,7 +469,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
468
469
|
webVideoUrl: string | null;
|
|
469
470
|
covers: string[] | null;
|
|
470
471
|
}[];
|
|
471
|
-
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
472
472
|
totalVideos: number;
|
|
473
473
|
}>;
|
|
474
474
|
static readonly shortDescription = "Scrape TikTok profiles, videos, and hashtags.";
|