@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
|
@@ -12,16 +12,16 @@ declare const TikTokToolParamsSchema: z.ZodObject<{
|
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
14
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
15
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
16
15
|
limit?: number | undefined;
|
|
16
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
17
17
|
hashtags?: string[] | undefined;
|
|
18
18
|
profiles?: string[] | undefined;
|
|
19
19
|
shouldDownloadVideos?: boolean | undefined;
|
|
20
20
|
videoUrls?: string[] | undefined;
|
|
21
21
|
}, {
|
|
22
22
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
23
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
24
23
|
limit?: number | undefined;
|
|
24
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
25
25
|
hashtags?: string[] | undefined;
|
|
26
26
|
profiles?: string[] | undefined;
|
|
27
27
|
shouldDownloadVideos?: boolean | undefined;
|
|
@@ -98,19 +98,7 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
98
98
|
name: string | null;
|
|
99
99
|
}>, "many">>;
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
|
-
stats: {
|
|
102
|
-
collectCount: number | null;
|
|
103
|
-
commentCount: number | null;
|
|
104
|
-
diggCount: number | null;
|
|
105
|
-
playCount: number | null;
|
|
106
|
-
shareCount: number | null;
|
|
107
|
-
} | null;
|
|
108
101
|
id: string | null;
|
|
109
|
-
text: string | null;
|
|
110
|
-
hashtags: {
|
|
111
|
-
name: string | null;
|
|
112
|
-
}[] | null;
|
|
113
|
-
videoUrl: string | null;
|
|
114
102
|
author: {
|
|
115
103
|
id: string | null;
|
|
116
104
|
verified: boolean | null;
|
|
@@ -123,11 +111,11 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
123
111
|
videoCount: number | null;
|
|
124
112
|
heartCount: number | null;
|
|
125
113
|
} | null;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
114
|
+
text: string | null;
|
|
115
|
+
hashtags: {
|
|
116
|
+
name: string | null;
|
|
117
|
+
}[] | null;
|
|
118
|
+
videoUrl: string | null;
|
|
131
119
|
stats: {
|
|
132
120
|
collectCount: number | null;
|
|
133
121
|
commentCount: number | null;
|
|
@@ -135,12 +123,12 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
135
123
|
playCount: number | null;
|
|
136
124
|
shareCount: number | null;
|
|
137
125
|
} | null;
|
|
126
|
+
createTime: number | null;
|
|
127
|
+
createTimeISO: string | null;
|
|
128
|
+
webVideoUrl: string | null;
|
|
129
|
+
covers: string[] | null;
|
|
130
|
+
}, {
|
|
138
131
|
id: string | null;
|
|
139
|
-
text: string | null;
|
|
140
|
-
hashtags: {
|
|
141
|
-
name: string | null;
|
|
142
|
-
}[] | null;
|
|
143
|
-
videoUrl: string | null;
|
|
144
132
|
author: {
|
|
145
133
|
id: string | null;
|
|
146
134
|
verified: boolean | null;
|
|
@@ -153,6 +141,18 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
153
141
|
videoCount: number | null;
|
|
154
142
|
heartCount: number | null;
|
|
155
143
|
} | null;
|
|
144
|
+
text: string | null;
|
|
145
|
+
hashtags: {
|
|
146
|
+
name: string | null;
|
|
147
|
+
}[] | null;
|
|
148
|
+
videoUrl: string | null;
|
|
149
|
+
stats: {
|
|
150
|
+
collectCount: number | null;
|
|
151
|
+
commentCount: number | null;
|
|
152
|
+
diggCount: number | null;
|
|
153
|
+
playCount: number | null;
|
|
154
|
+
shareCount: number | null;
|
|
155
|
+
} | null;
|
|
156
156
|
createTime: number | null;
|
|
157
157
|
createTimeISO: string | null;
|
|
158
158
|
webVideoUrl: string | null;
|
|
@@ -162,23 +162,11 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
162
162
|
success: z.ZodBoolean;
|
|
163
163
|
error: z.ZodString;
|
|
164
164
|
}, "strip", z.ZodTypeAny, {
|
|
165
|
-
error: string;
|
|
166
|
-
success: boolean;
|
|
167
165
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
166
|
+
success: boolean;
|
|
167
|
+
error: string;
|
|
168
168
|
videos: {
|
|
169
|
-
stats: {
|
|
170
|
-
collectCount: number | null;
|
|
171
|
-
commentCount: number | null;
|
|
172
|
-
diggCount: number | null;
|
|
173
|
-
playCount: number | null;
|
|
174
|
-
shareCount: number | null;
|
|
175
|
-
} | null;
|
|
176
169
|
id: string | null;
|
|
177
|
-
text: string | null;
|
|
178
|
-
hashtags: {
|
|
179
|
-
name: string | null;
|
|
180
|
-
}[] | null;
|
|
181
|
-
videoUrl: string | null;
|
|
182
170
|
author: {
|
|
183
171
|
id: string | null;
|
|
184
172
|
verified: boolean | null;
|
|
@@ -191,6 +179,18 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
191
179
|
videoCount: number | null;
|
|
192
180
|
heartCount: number | null;
|
|
193
181
|
} | null;
|
|
182
|
+
text: string | null;
|
|
183
|
+
hashtags: {
|
|
184
|
+
name: string | null;
|
|
185
|
+
}[] | null;
|
|
186
|
+
videoUrl: string | null;
|
|
187
|
+
stats: {
|
|
188
|
+
collectCount: number | null;
|
|
189
|
+
commentCount: number | null;
|
|
190
|
+
diggCount: number | null;
|
|
191
|
+
playCount: number | null;
|
|
192
|
+
shareCount: number | null;
|
|
193
|
+
} | null;
|
|
194
194
|
createTime: number | null;
|
|
195
195
|
createTimeISO: string | null;
|
|
196
196
|
webVideoUrl: string | null;
|
|
@@ -198,23 +198,11 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
198
198
|
}[];
|
|
199
199
|
totalVideos: number;
|
|
200
200
|
}, {
|
|
201
|
-
error: string;
|
|
202
|
-
success: boolean;
|
|
203
201
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
202
|
+
success: boolean;
|
|
203
|
+
error: string;
|
|
204
204
|
videos: {
|
|
205
|
-
stats: {
|
|
206
|
-
collectCount: number | null;
|
|
207
|
-
commentCount: number | null;
|
|
208
|
-
diggCount: number | null;
|
|
209
|
-
playCount: number | null;
|
|
210
|
-
shareCount: number | null;
|
|
211
|
-
} | null;
|
|
212
205
|
id: string | null;
|
|
213
|
-
text: string | null;
|
|
214
|
-
hashtags: {
|
|
215
|
-
name: string | null;
|
|
216
|
-
}[] | null;
|
|
217
|
-
videoUrl: string | null;
|
|
218
206
|
author: {
|
|
219
207
|
id: string | null;
|
|
220
208
|
verified: boolean | null;
|
|
@@ -227,6 +215,18 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
227
215
|
videoCount: number | null;
|
|
228
216
|
heartCount: number | null;
|
|
229
217
|
} | null;
|
|
218
|
+
text: string | null;
|
|
219
|
+
hashtags: {
|
|
220
|
+
name: string | null;
|
|
221
|
+
}[] | null;
|
|
222
|
+
videoUrl: string | 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;
|
|
@@ -249,16 +249,16 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
249
249
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
251
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
252
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
253
252
|
limit?: number | undefined;
|
|
253
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
254
254
|
hashtags?: string[] | undefined;
|
|
255
255
|
profiles?: string[] | undefined;
|
|
256
256
|
shouldDownloadVideos?: boolean | undefined;
|
|
257
257
|
videoUrls?: string[] | undefined;
|
|
258
258
|
}, {
|
|
259
259
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
260
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
261
260
|
limit?: number | undefined;
|
|
261
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
262
262
|
hashtags?: string[] | undefined;
|
|
263
263
|
profiles?: string[] | undefined;
|
|
264
264
|
shouldDownloadVideos?: boolean | undefined;
|
|
@@ -335,19 +335,7 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
335
335
|
name: string | null;
|
|
336
336
|
}>, "many">>;
|
|
337
337
|
}, "strip", z.ZodTypeAny, {
|
|
338
|
-
stats: {
|
|
339
|
-
collectCount: number | null;
|
|
340
|
-
commentCount: number | null;
|
|
341
|
-
diggCount: number | null;
|
|
342
|
-
playCount: number | null;
|
|
343
|
-
shareCount: number | null;
|
|
344
|
-
} | null;
|
|
345
338
|
id: string | null;
|
|
346
|
-
text: string | null;
|
|
347
|
-
hashtags: {
|
|
348
|
-
name: string | null;
|
|
349
|
-
}[] | null;
|
|
350
|
-
videoUrl: string | null;
|
|
351
339
|
author: {
|
|
352
340
|
id: string | null;
|
|
353
341
|
verified: boolean | null;
|
|
@@ -360,11 +348,11 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
360
348
|
videoCount: number | null;
|
|
361
349
|
heartCount: number | null;
|
|
362
350
|
} | null;
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
351
|
+
text: string | null;
|
|
352
|
+
hashtags: {
|
|
353
|
+
name: string | null;
|
|
354
|
+
}[] | null;
|
|
355
|
+
videoUrl: string | null;
|
|
368
356
|
stats: {
|
|
369
357
|
collectCount: number | null;
|
|
370
358
|
commentCount: number | null;
|
|
@@ -372,12 +360,12 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
372
360
|
playCount: number | null;
|
|
373
361
|
shareCount: number | null;
|
|
374
362
|
} | null;
|
|
363
|
+
createTime: number | null;
|
|
364
|
+
createTimeISO: string | null;
|
|
365
|
+
webVideoUrl: string | null;
|
|
366
|
+
covers: string[] | null;
|
|
367
|
+
}, {
|
|
375
368
|
id: string | null;
|
|
376
|
-
text: string | null;
|
|
377
|
-
hashtags: {
|
|
378
|
-
name: string | null;
|
|
379
|
-
}[] | null;
|
|
380
|
-
videoUrl: string | null;
|
|
381
369
|
author: {
|
|
382
370
|
id: string | null;
|
|
383
371
|
verified: boolean | null;
|
|
@@ -390,6 +378,18 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
390
378
|
videoCount: number | null;
|
|
391
379
|
heartCount: number | null;
|
|
392
380
|
} | null;
|
|
381
|
+
text: string | null;
|
|
382
|
+
hashtags: {
|
|
383
|
+
name: string | null;
|
|
384
|
+
}[] | null;
|
|
385
|
+
videoUrl: string | null;
|
|
386
|
+
stats: {
|
|
387
|
+
collectCount: number | null;
|
|
388
|
+
commentCount: number | null;
|
|
389
|
+
diggCount: number | null;
|
|
390
|
+
playCount: number | null;
|
|
391
|
+
shareCount: number | null;
|
|
392
|
+
} | null;
|
|
393
393
|
createTime: number | null;
|
|
394
394
|
createTimeISO: string | null;
|
|
395
395
|
webVideoUrl: string | null;
|
|
@@ -399,23 +399,11 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
399
399
|
success: z.ZodBoolean;
|
|
400
400
|
error: z.ZodString;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
error: string;
|
|
403
|
-
success: boolean;
|
|
404
402
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
403
|
+
success: boolean;
|
|
404
|
+
error: string;
|
|
405
405
|
videos: {
|
|
406
|
-
stats: {
|
|
407
|
-
collectCount: number | null;
|
|
408
|
-
commentCount: number | null;
|
|
409
|
-
diggCount: number | null;
|
|
410
|
-
playCount: number | null;
|
|
411
|
-
shareCount: number | null;
|
|
412
|
-
} | null;
|
|
413
406
|
id: string | null;
|
|
414
|
-
text: string | null;
|
|
415
|
-
hashtags: {
|
|
416
|
-
name: string | null;
|
|
417
|
-
}[] | null;
|
|
418
|
-
videoUrl: string | null;
|
|
419
407
|
author: {
|
|
420
408
|
id: string | null;
|
|
421
409
|
verified: boolean | null;
|
|
@@ -428,6 +416,18 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
428
416
|
videoCount: number | null;
|
|
429
417
|
heartCount: number | null;
|
|
430
418
|
} | null;
|
|
419
|
+
text: string | null;
|
|
420
|
+
hashtags: {
|
|
421
|
+
name: string | null;
|
|
422
|
+
}[] | null;
|
|
423
|
+
videoUrl: string | null;
|
|
424
|
+
stats: {
|
|
425
|
+
collectCount: number | null;
|
|
426
|
+
commentCount: number | null;
|
|
427
|
+
diggCount: number | null;
|
|
428
|
+
playCount: number | null;
|
|
429
|
+
shareCount: number | null;
|
|
430
|
+
} | null;
|
|
431
431
|
createTime: number | null;
|
|
432
432
|
createTimeISO: string | null;
|
|
433
433
|
webVideoUrl: string | null;
|
|
@@ -435,23 +435,11 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
435
435
|
}[];
|
|
436
436
|
totalVideos: number;
|
|
437
437
|
}, {
|
|
438
|
-
error: string;
|
|
439
|
-
success: boolean;
|
|
440
438
|
operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
|
|
439
|
+
success: boolean;
|
|
440
|
+
error: string;
|
|
441
441
|
videos: {
|
|
442
|
-
stats: {
|
|
443
|
-
collectCount: number | null;
|
|
444
|
-
commentCount: number | null;
|
|
445
|
-
diggCount: number | null;
|
|
446
|
-
playCount: number | null;
|
|
447
|
-
shareCount: number | null;
|
|
448
|
-
} | null;
|
|
449
442
|
id: string | null;
|
|
450
|
-
text: string | null;
|
|
451
|
-
hashtags: {
|
|
452
|
-
name: string | null;
|
|
453
|
-
}[] | null;
|
|
454
|
-
videoUrl: string | null;
|
|
455
443
|
author: {
|
|
456
444
|
id: string | null;
|
|
457
445
|
verified: boolean | null;
|
|
@@ -464,6 +452,18 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
464
452
|
videoCount: number | null;
|
|
465
453
|
heartCount: number | null;
|
|
466
454
|
} | null;
|
|
455
|
+
text: string | null;
|
|
456
|
+
hashtags: {
|
|
457
|
+
name: string | null;
|
|
458
|
+
}[] | null;
|
|
459
|
+
videoUrl: string | 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;
|
|
@@ -99,16 +99,16 @@ declare const MyCustomToolResultSchema: z.ZodObject<{
|
|
|
99
99
|
success: z.ZodBoolean;
|
|
100
100
|
error: z.ZodString;
|
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
|
102
|
-
error: string;
|
|
103
102
|
success: boolean;
|
|
103
|
+
error: string;
|
|
104
104
|
metadata: {
|
|
105
105
|
processedAt: string;
|
|
106
106
|
itemsProcessed: number;
|
|
107
107
|
};
|
|
108
108
|
processedData: string;
|
|
109
109
|
}, {
|
|
110
|
-
error: string;
|
|
111
110
|
success: boolean;
|
|
111
|
+
error: string;
|
|
112
112
|
metadata: {
|
|
113
113
|
processedAt: string;
|
|
114
114
|
itemsProcessed: number;
|
|
@@ -172,16 +172,16 @@ export declare class MyCustomTool extends ToolBubble<MyCustomToolParams, MyCusto
|
|
|
172
172
|
success: z.ZodBoolean;
|
|
173
173
|
error: z.ZodString;
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
175
|
-
error: string;
|
|
176
175
|
success: boolean;
|
|
176
|
+
error: string;
|
|
177
177
|
metadata: {
|
|
178
178
|
processedAt: string;
|
|
179
179
|
itemsProcessed: number;
|
|
180
180
|
};
|
|
181
181
|
processedData: string;
|
|
182
182
|
}, {
|
|
183
|
-
error: string;
|
|
184
183
|
success: boolean;
|
|
184
|
+
error: string;
|
|
185
185
|
metadata: {
|
|
186
186
|
processedAt: string;
|
|
187
187
|
itemsProcessed: number;
|