@bubblelab/bubble-core 0.1.35 → 0.1.36
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 +116 -116
- package/dist/bubbles/service-bubble/ai-agent.d.ts +36 -36
- package/dist/bubbles/service-bubble/airtable.d.ts +232 -232
- package/dist/bubbles/service-bubble/apify/apify.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +50 -50
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +56 -56
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +326 -326
- package/dist/bubbles/service-bubble/followupboss.d.ts +332 -332
- package/dist/bubbles/service-bubble/github.d.ts +172 -172
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +232 -232
- package/dist/bubbles/service-bubble/google-drive.d.ts +128 -128
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +54 -54
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +18 -18
- package/dist/bubbles/service-bubble/jira/jira.d.ts +5762 -2108
- package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.js +32 -7
- package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +7993 -3124
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.js +14 -2
- package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.d.ts +204 -204
- package/dist/bubbles/service-bubble/postgresql.d.ts +18 -18
- package/dist/bubbles/service-bubble/resend.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack/slack.d.ts +418 -418
- package/dist/bubbles/service-bubble/storage.d.ts +60 -60
- package/dist/bubbles/service-bubble/telegram.d.ts +122 -122
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +33 -33
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +426 -426
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +192 -192
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +68 -68
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +60 -60
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +47 -49
- package/package.json +2 -2
|
@@ -17,9 +17,9 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
17
17
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
19
|
description: string | null;
|
|
20
|
+
id: string | null;
|
|
20
21
|
name: string | null;
|
|
21
22
|
url: string | null;
|
|
22
|
-
id: string | null;
|
|
23
23
|
following: number | null;
|
|
24
24
|
userName: string | null;
|
|
25
25
|
isVerified: boolean | null;
|
|
@@ -30,9 +30,9 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
30
30
|
createdAt: string | null;
|
|
31
31
|
}, {
|
|
32
32
|
description: string | null;
|
|
33
|
+
id: string | null;
|
|
33
34
|
name: string | null;
|
|
34
35
|
url: string | null;
|
|
35
|
-
id: string | null;
|
|
36
36
|
following: number | null;
|
|
37
37
|
userName: string | null;
|
|
38
38
|
isVerified: boolean | null;
|
|
@@ -61,9 +61,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
61
61
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
62
62
|
}, "strip", z.ZodTypeAny, {
|
|
63
63
|
description: string | null;
|
|
64
|
+
id: string | null;
|
|
64
65
|
name: string | null;
|
|
65
66
|
url: string | null;
|
|
66
|
-
id: string | null;
|
|
67
67
|
following: number | null;
|
|
68
68
|
userName: string | null;
|
|
69
69
|
isVerified: boolean | null;
|
|
@@ -74,9 +74,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
74
74
|
createdAt: string | null;
|
|
75
75
|
}, {
|
|
76
76
|
description: string | null;
|
|
77
|
+
id: string | null;
|
|
77
78
|
name: string | null;
|
|
78
79
|
url: string | null;
|
|
79
|
-
id: string | null;
|
|
80
80
|
following: number | null;
|
|
81
81
|
userName: string | null;
|
|
82
82
|
isVerified: boolean | 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,27 +146,12 @@ 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
|
-
stats: {
|
|
150
|
-
viewCount: number | null;
|
|
151
|
-
retweetCount: number | null;
|
|
152
|
-
replyCount: number | null;
|
|
153
|
-
likeCount: number | null;
|
|
154
|
-
quoteCount: number | null;
|
|
155
|
-
bookmarkCount: number | null;
|
|
156
|
-
} | null;
|
|
157
|
-
url: string | null;
|
|
158
149
|
id: string | null;
|
|
159
|
-
text: string | null;
|
|
160
|
-
entities: {
|
|
161
|
-
hashtags: string[] | null;
|
|
162
|
-
mentions: string[] | null;
|
|
163
|
-
urls: string[] | null;
|
|
164
|
-
} | null;
|
|
165
150
|
author: {
|
|
166
151
|
description: string | null;
|
|
152
|
+
id: string | null;
|
|
167
153
|
name: string | null;
|
|
168
154
|
url: string | null;
|
|
169
|
-
id: string | null;
|
|
170
155
|
following: number | null;
|
|
171
156
|
userName: string | null;
|
|
172
157
|
isVerified: boolean | null;
|
|
@@ -176,10 +161,25 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
176
161
|
tweetsCount: number | null;
|
|
177
162
|
createdAt: string | null;
|
|
178
163
|
} | null;
|
|
164
|
+
url: string | null;
|
|
165
|
+
text: string | null;
|
|
166
|
+
entities: {
|
|
167
|
+
hashtags: string[] | null;
|
|
168
|
+
mentions: string[] | null;
|
|
169
|
+
urls: string[] | null;
|
|
170
|
+
} | 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
|
-
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,27 +189,12 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
189
189
|
isQuote: boolean | null;
|
|
190
190
|
isReply: boolean | null;
|
|
191
191
|
}, {
|
|
192
|
-
stats: {
|
|
193
|
-
viewCount: number | null;
|
|
194
|
-
retweetCount: number | null;
|
|
195
|
-
replyCount: number | null;
|
|
196
|
-
likeCount: number | null;
|
|
197
|
-
quoteCount: number | null;
|
|
198
|
-
bookmarkCount: number | null;
|
|
199
|
-
} | null;
|
|
200
|
-
url: string | null;
|
|
201
192
|
id: string | null;
|
|
202
|
-
text: string | null;
|
|
203
|
-
entities: {
|
|
204
|
-
hashtags: string[] | null;
|
|
205
|
-
mentions: string[] | null;
|
|
206
|
-
urls: string[] | null;
|
|
207
|
-
} | null;
|
|
208
193
|
author: {
|
|
209
194
|
description: string | null;
|
|
195
|
+
id: string | null;
|
|
210
196
|
name: string | null;
|
|
211
197
|
url: string | null;
|
|
212
|
-
id: string | null;
|
|
213
198
|
following: number | null;
|
|
214
199
|
userName: string | null;
|
|
215
200
|
isVerified: boolean | null;
|
|
@@ -219,10 +204,25 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
219
204
|
tweetsCount: number | null;
|
|
220
205
|
createdAt: string | null;
|
|
221
206
|
} | null;
|
|
207
|
+
url: string | null;
|
|
208
|
+
text: string | null;
|
|
209
|
+
entities: {
|
|
210
|
+
hashtags: string[] | null;
|
|
211
|
+
mentions: string[] | null;
|
|
212
|
+
urls: string[] | null;
|
|
213
|
+
} | 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
|
-
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;
|
|
@@ -281,9 +281,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
281
281
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
|
283
283
|
description: string | null;
|
|
284
|
+
id: string | null;
|
|
284
285
|
name: string | null;
|
|
285
286
|
url: string | null;
|
|
286
|
-
id: string | null;
|
|
287
287
|
following: number | null;
|
|
288
288
|
userName: string | null;
|
|
289
289
|
isVerified: boolean | null;
|
|
@@ -294,9 +294,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
294
294
|
createdAt: string | null;
|
|
295
295
|
}, {
|
|
296
296
|
description: string | null;
|
|
297
|
+
id: string | null;
|
|
297
298
|
name: string | null;
|
|
298
299
|
url: string | null;
|
|
299
|
-
id: string | null;
|
|
300
300
|
following: number | null;
|
|
301
301
|
userName: string | null;
|
|
302
302
|
isVerified: boolean | 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,27 +366,12 @@ 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
|
-
stats: {
|
|
370
|
-
viewCount: number | null;
|
|
371
|
-
retweetCount: number | null;
|
|
372
|
-
replyCount: number | null;
|
|
373
|
-
likeCount: number | null;
|
|
374
|
-
quoteCount: number | null;
|
|
375
|
-
bookmarkCount: number | null;
|
|
376
|
-
} | null;
|
|
377
|
-
url: string | null;
|
|
378
369
|
id: string | null;
|
|
379
|
-
text: string | null;
|
|
380
|
-
entities: {
|
|
381
|
-
hashtags: string[] | null;
|
|
382
|
-
mentions: string[] | null;
|
|
383
|
-
urls: string[] | null;
|
|
384
|
-
} | null;
|
|
385
370
|
author: {
|
|
386
371
|
description: string | null;
|
|
372
|
+
id: string | null;
|
|
387
373
|
name: string | null;
|
|
388
374
|
url: string | null;
|
|
389
|
-
id: string | null;
|
|
390
375
|
following: number | null;
|
|
391
376
|
userName: string | null;
|
|
392
377
|
isVerified: boolean | null;
|
|
@@ -396,10 +381,25 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
396
381
|
tweetsCount: number | null;
|
|
397
382
|
createdAt: string | null;
|
|
398
383
|
} | null;
|
|
384
|
+
url: string | null;
|
|
385
|
+
text: string | null;
|
|
386
|
+
entities: {
|
|
387
|
+
hashtags: string[] | null;
|
|
388
|
+
mentions: string[] | null;
|
|
389
|
+
urls: string[] | null;
|
|
390
|
+
} | 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
|
-
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,27 +409,12 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
409
409
|
isQuote: boolean | null;
|
|
410
410
|
isReply: boolean | null;
|
|
411
411
|
}, {
|
|
412
|
-
stats: {
|
|
413
|
-
viewCount: number | null;
|
|
414
|
-
retweetCount: number | null;
|
|
415
|
-
replyCount: number | null;
|
|
416
|
-
likeCount: number | null;
|
|
417
|
-
quoteCount: number | null;
|
|
418
|
-
bookmarkCount: number | null;
|
|
419
|
-
} | null;
|
|
420
|
-
url: string | null;
|
|
421
412
|
id: string | null;
|
|
422
|
-
text: string | null;
|
|
423
|
-
entities: {
|
|
424
|
-
hashtags: string[] | null;
|
|
425
|
-
mentions: string[] | null;
|
|
426
|
-
urls: string[] | null;
|
|
427
|
-
} | null;
|
|
428
413
|
author: {
|
|
429
414
|
description: string | null;
|
|
415
|
+
id: string | null;
|
|
430
416
|
name: string | null;
|
|
431
417
|
url: string | null;
|
|
432
|
-
id: string | null;
|
|
433
418
|
following: number | null;
|
|
434
419
|
userName: string | null;
|
|
435
420
|
isVerified: boolean | null;
|
|
@@ -439,10 +424,25 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
439
424
|
tweetsCount: number | null;
|
|
440
425
|
createdAt: string | null;
|
|
441
426
|
} | null;
|
|
427
|
+
url: string | null;
|
|
428
|
+
text: string | null;
|
|
429
|
+
entities: {
|
|
430
|
+
hashtags: string[] | null;
|
|
431
|
+
mentions: string[] | null;
|
|
432
|
+
urls: string[] | null;
|
|
433
|
+
} | 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
|
-
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;
|
|
@@ -456,31 +456,16 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
456
456
|
success: z.ZodBoolean;
|
|
457
457
|
error: z.ZodString;
|
|
458
458
|
}, "strip", z.ZodTypeAny, {
|
|
459
|
-
error: string;
|
|
460
|
-
success: boolean;
|
|
461
459
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
460
|
+
success: boolean;
|
|
461
|
+
error: string;
|
|
462
462
|
tweets: {
|
|
463
|
-
stats: {
|
|
464
|
-
viewCount: number | null;
|
|
465
|
-
retweetCount: number | null;
|
|
466
|
-
replyCount: number | null;
|
|
467
|
-
likeCount: number | null;
|
|
468
|
-
quoteCount: number | null;
|
|
469
|
-
bookmarkCount: number | null;
|
|
470
|
-
} | null;
|
|
471
|
-
url: string | null;
|
|
472
463
|
id: string | null;
|
|
473
|
-
text: string | null;
|
|
474
|
-
entities: {
|
|
475
|
-
hashtags: string[] | null;
|
|
476
|
-
mentions: string[] | null;
|
|
477
|
-
urls: string[] | null;
|
|
478
|
-
} | null;
|
|
479
464
|
author: {
|
|
480
465
|
description: string | null;
|
|
466
|
+
id: string | null;
|
|
481
467
|
name: string | null;
|
|
482
468
|
url: string | null;
|
|
483
|
-
id: string | null;
|
|
484
469
|
following: number | null;
|
|
485
470
|
userName: string | null;
|
|
486
471
|
isVerified: boolean | null;
|
|
@@ -490,10 +475,25 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
490
475
|
tweetsCount: number | null;
|
|
491
476
|
createdAt: string | null;
|
|
492
477
|
} | null;
|
|
478
|
+
url: string | null;
|
|
479
|
+
text: string | null;
|
|
480
|
+
entities: {
|
|
481
|
+
hashtags: string[] | null;
|
|
482
|
+
mentions: string[] | null;
|
|
483
|
+
urls: string[] | null;
|
|
484
|
+
} | 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
|
-
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;
|
|
@@ -505,31 +505,16 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
505
505
|
}[];
|
|
506
506
|
totalTweets: number;
|
|
507
507
|
}, {
|
|
508
|
-
error: string;
|
|
509
|
-
success: boolean;
|
|
510
508
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
509
|
+
success: boolean;
|
|
510
|
+
error: string;
|
|
511
511
|
tweets: {
|
|
512
|
-
stats: {
|
|
513
|
-
viewCount: number | null;
|
|
514
|
-
retweetCount: number | null;
|
|
515
|
-
replyCount: number | null;
|
|
516
|
-
likeCount: number | null;
|
|
517
|
-
quoteCount: number | null;
|
|
518
|
-
bookmarkCount: number | null;
|
|
519
|
-
} | null;
|
|
520
|
-
url: string | null;
|
|
521
512
|
id: string | null;
|
|
522
|
-
text: string | null;
|
|
523
|
-
entities: {
|
|
524
|
-
hashtags: string[] | null;
|
|
525
|
-
mentions: string[] | null;
|
|
526
|
-
urls: string[] | null;
|
|
527
|
-
} | null;
|
|
528
513
|
author: {
|
|
529
514
|
description: string | null;
|
|
515
|
+
id: string | null;
|
|
530
516
|
name: string | null;
|
|
531
517
|
url: string | null;
|
|
532
|
-
id: string | null;
|
|
533
518
|
following: number | null;
|
|
534
519
|
userName: string | null;
|
|
535
520
|
isVerified: boolean | null;
|
|
@@ -539,10 +524,25 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
539
524
|
tweetsCount: number | null;
|
|
540
525
|
createdAt: string | null;
|
|
541
526
|
} | null;
|
|
527
|
+
url: string | null;
|
|
528
|
+
text: string | null;
|
|
529
|
+
entities: {
|
|
530
|
+
hashtags: string[] | null;
|
|
531
|
+
mentions: string[] | null;
|
|
532
|
+
urls: string[] | null;
|
|
533
|
+
} | 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
|
-
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;
|
|
@@ -627,9 +627,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
627
627
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
628
628
|
}, "strip", z.ZodTypeAny, {
|
|
629
629
|
description: string | null;
|
|
630
|
+
id: string | null;
|
|
630
631
|
name: string | null;
|
|
631
632
|
url: string | null;
|
|
632
|
-
id: string | null;
|
|
633
633
|
following: number | null;
|
|
634
634
|
userName: string | null;
|
|
635
635
|
isVerified: boolean | null;
|
|
@@ -640,9 +640,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
640
640
|
createdAt: string | null;
|
|
641
641
|
}, {
|
|
642
642
|
description: string | null;
|
|
643
|
+
id: string | null;
|
|
643
644
|
name: string | null;
|
|
644
645
|
url: string | null;
|
|
645
|
-
id: string | null;
|
|
646
646
|
following: number | null;
|
|
647
647
|
userName: string | null;
|
|
648
648
|
isVerified: boolean | 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,27 +712,12 @@ 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
|
-
stats: {
|
|
716
|
-
viewCount: number | null;
|
|
717
|
-
retweetCount: number | null;
|
|
718
|
-
replyCount: number | null;
|
|
719
|
-
likeCount: number | null;
|
|
720
|
-
quoteCount: number | null;
|
|
721
|
-
bookmarkCount: number | null;
|
|
722
|
-
} | null;
|
|
723
|
-
url: string | null;
|
|
724
715
|
id: string | null;
|
|
725
|
-
text: string | null;
|
|
726
|
-
entities: {
|
|
727
|
-
hashtags: string[] | null;
|
|
728
|
-
mentions: string[] | null;
|
|
729
|
-
urls: string[] | null;
|
|
730
|
-
} | null;
|
|
731
716
|
author: {
|
|
732
717
|
description: string | null;
|
|
718
|
+
id: string | null;
|
|
733
719
|
name: string | null;
|
|
734
720
|
url: string | null;
|
|
735
|
-
id: string | null;
|
|
736
721
|
following: number | null;
|
|
737
722
|
userName: string | null;
|
|
738
723
|
isVerified: boolean | null;
|
|
@@ -742,10 +727,25 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
742
727
|
tweetsCount: number | null;
|
|
743
728
|
createdAt: string | null;
|
|
744
729
|
} | null;
|
|
730
|
+
url: string | null;
|
|
731
|
+
text: string | null;
|
|
732
|
+
entities: {
|
|
733
|
+
hashtags: string[] | null;
|
|
734
|
+
mentions: string[] | null;
|
|
735
|
+
urls: string[] | null;
|
|
736
|
+
} | 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
|
-
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,27 +755,12 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
755
755
|
isQuote: boolean | null;
|
|
756
756
|
isReply: boolean | null;
|
|
757
757
|
}, {
|
|
758
|
-
stats: {
|
|
759
|
-
viewCount: number | null;
|
|
760
|
-
retweetCount: number | null;
|
|
761
|
-
replyCount: number | null;
|
|
762
|
-
likeCount: number | null;
|
|
763
|
-
quoteCount: number | null;
|
|
764
|
-
bookmarkCount: number | null;
|
|
765
|
-
} | null;
|
|
766
|
-
url: string | null;
|
|
767
758
|
id: string | null;
|
|
768
|
-
text: string | null;
|
|
769
|
-
entities: {
|
|
770
|
-
hashtags: string[] | null;
|
|
771
|
-
mentions: string[] | null;
|
|
772
|
-
urls: string[] | null;
|
|
773
|
-
} | null;
|
|
774
759
|
author: {
|
|
775
760
|
description: string | null;
|
|
761
|
+
id: string | null;
|
|
776
762
|
name: string | null;
|
|
777
763
|
url: string | null;
|
|
778
|
-
id: string | null;
|
|
779
764
|
following: number | null;
|
|
780
765
|
userName: string | null;
|
|
781
766
|
isVerified: boolean | null;
|
|
@@ -785,10 +770,25 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
785
770
|
tweetsCount: number | null;
|
|
786
771
|
createdAt: string | null;
|
|
787
772
|
} | null;
|
|
773
|
+
url: string | null;
|
|
774
|
+
text: string | null;
|
|
775
|
+
entities: {
|
|
776
|
+
hashtags: string[] | null;
|
|
777
|
+
mentions: string[] | null;
|
|
778
|
+
urls: string[] | null;
|
|
779
|
+
} | 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
|
-
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;
|
|
@@ -802,31 +802,16 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
802
802
|
success: z.ZodBoolean;
|
|
803
803
|
error: z.ZodString;
|
|
804
804
|
}, "strip", z.ZodTypeAny, {
|
|
805
|
-
error: string;
|
|
806
|
-
success: boolean;
|
|
807
805
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
806
|
+
success: boolean;
|
|
807
|
+
error: string;
|
|
808
808
|
tweets: {
|
|
809
|
-
stats: {
|
|
810
|
-
viewCount: number | null;
|
|
811
|
-
retweetCount: number | null;
|
|
812
|
-
replyCount: number | null;
|
|
813
|
-
likeCount: number | null;
|
|
814
|
-
quoteCount: number | null;
|
|
815
|
-
bookmarkCount: number | null;
|
|
816
|
-
} | null;
|
|
817
|
-
url: string | null;
|
|
818
809
|
id: string | null;
|
|
819
|
-
text: string | null;
|
|
820
|
-
entities: {
|
|
821
|
-
hashtags: string[] | null;
|
|
822
|
-
mentions: string[] | null;
|
|
823
|
-
urls: string[] | null;
|
|
824
|
-
} | null;
|
|
825
810
|
author: {
|
|
826
811
|
description: string | null;
|
|
812
|
+
id: string | null;
|
|
827
813
|
name: string | null;
|
|
828
814
|
url: string | null;
|
|
829
|
-
id: string | null;
|
|
830
815
|
following: number | null;
|
|
831
816
|
userName: string | null;
|
|
832
817
|
isVerified: boolean | null;
|
|
@@ -836,10 +821,25 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
836
821
|
tweetsCount: number | null;
|
|
837
822
|
createdAt: string | null;
|
|
838
823
|
} | null;
|
|
824
|
+
url: string | null;
|
|
825
|
+
text: string | null;
|
|
826
|
+
entities: {
|
|
827
|
+
hashtags: string[] | null;
|
|
828
|
+
mentions: string[] | null;
|
|
829
|
+
urls: string[] | null;
|
|
830
|
+
} | 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
|
-
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;
|
|
@@ -851,31 +851,16 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
851
851
|
}[];
|
|
852
852
|
totalTweets: number;
|
|
853
853
|
}, {
|
|
854
|
-
error: string;
|
|
855
|
-
success: boolean;
|
|
856
854
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
855
|
+
success: boolean;
|
|
856
|
+
error: string;
|
|
857
857
|
tweets: {
|
|
858
|
-
stats: {
|
|
859
|
-
viewCount: number | null;
|
|
860
|
-
retweetCount: number | null;
|
|
861
|
-
replyCount: number | null;
|
|
862
|
-
likeCount: number | null;
|
|
863
|
-
quoteCount: number | null;
|
|
864
|
-
bookmarkCount: number | null;
|
|
865
|
-
} | null;
|
|
866
|
-
url: string | null;
|
|
867
858
|
id: string | null;
|
|
868
|
-
text: string | null;
|
|
869
|
-
entities: {
|
|
870
|
-
hashtags: string[] | null;
|
|
871
|
-
mentions: string[] | null;
|
|
872
|
-
urls: string[] | null;
|
|
873
|
-
} | null;
|
|
874
859
|
author: {
|
|
875
860
|
description: string | null;
|
|
861
|
+
id: string | null;
|
|
876
862
|
name: string | null;
|
|
877
863
|
url: string | null;
|
|
878
|
-
id: string | null;
|
|
879
864
|
following: number | null;
|
|
880
865
|
userName: string | null;
|
|
881
866
|
isVerified: boolean | null;
|
|
@@ -885,10 +870,25 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
885
870
|
tweetsCount: number | null;
|
|
886
871
|
createdAt: string | null;
|
|
887
872
|
} | null;
|
|
873
|
+
url: string | null;
|
|
874
|
+
text: string | null;
|
|
875
|
+
entities: {
|
|
876
|
+
hashtags: string[] | null;
|
|
877
|
+
mentions: string[] | null;
|
|
878
|
+
urls: string[] | null;
|
|
879
|
+
} | 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
|
-
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;
|