@bubblelab/bubble-core 0.1.96 → 0.1.97
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 +66 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +68 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +108 -108
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +25 -25
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +172 -172
- package/dist/bubbles/service-bubble/followupboss.d.ts +144 -144
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +148 -148
- package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
- package/dist/bubbles/service-bubble/gmail.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/gmail.js +10 -4
- package/dist/bubbles/service-bubble/gmail.js.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-drive.d.ts +100 -100
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +10 -10
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +29 -29
- package/dist/bubbles/service-bubble/notion/notion.d.ts +72 -72
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +26 -26
- package/dist/bubbles/service-bubble/slack/slack.d.ts +218 -218
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +62 -62
- package/dist/bubbles/service-bubble/telegram.d.ts +56 -56
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +6 -6
- package/package.json +2 -2
|
@@ -119,13 +119,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
119
119
|
error: z.ZodString;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
121
|
valid: boolean;
|
|
122
|
-
success: boolean;
|
|
123
|
-
error: string;
|
|
124
122
|
metadata: {
|
|
125
123
|
strictMode: boolean;
|
|
126
124
|
validatedAt: string;
|
|
127
125
|
codeLength: number;
|
|
128
126
|
};
|
|
127
|
+
success: boolean;
|
|
128
|
+
error: string;
|
|
129
129
|
bubbles?: {
|
|
130
130
|
bubbleName: string;
|
|
131
131
|
variableName: string;
|
|
@@ -144,13 +144,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
144
144
|
}[] | undefined;
|
|
145
145
|
}, {
|
|
146
146
|
valid: boolean;
|
|
147
|
-
success: boolean;
|
|
148
|
-
error: string;
|
|
149
147
|
metadata: {
|
|
150
148
|
strictMode: boolean;
|
|
151
149
|
validatedAt: string;
|
|
152
150
|
codeLength: number;
|
|
153
151
|
};
|
|
152
|
+
success: boolean;
|
|
153
|
+
error: string;
|
|
154
154
|
bubbles?: {
|
|
155
155
|
bubbleName: string;
|
|
156
156
|
variableName: string;
|
|
@@ -268,13 +268,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
268
268
|
error: z.ZodString;
|
|
269
269
|
}, "strip", z.ZodTypeAny, {
|
|
270
270
|
valid: boolean;
|
|
271
|
-
success: boolean;
|
|
272
|
-
error: string;
|
|
273
271
|
metadata: {
|
|
274
272
|
strictMode: boolean;
|
|
275
273
|
validatedAt: string;
|
|
276
274
|
codeLength: number;
|
|
277
275
|
};
|
|
276
|
+
success: boolean;
|
|
277
|
+
error: string;
|
|
278
278
|
bubbles?: {
|
|
279
279
|
bubbleName: string;
|
|
280
280
|
variableName: string;
|
|
@@ -293,13 +293,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
293
293
|
}[] | undefined;
|
|
294
294
|
}, {
|
|
295
295
|
valid: boolean;
|
|
296
|
-
success: boolean;
|
|
297
|
-
error: string;
|
|
298
296
|
metadata: {
|
|
299
297
|
strictMode: boolean;
|
|
300
298
|
validatedAt: string;
|
|
301
299
|
codeLength: number;
|
|
302
300
|
};
|
|
301
|
+
success: boolean;
|
|
302
|
+
error: string;
|
|
303
303
|
bubbles?: {
|
|
304
304
|
bubbleName: string;
|
|
305
305
|
variableName: string;
|
|
@@ -62,8 +62,8 @@ declare const ChartJSToolParamsSchema: z.ZodObject<{
|
|
|
62
62
|
xAxisLabel?: string | undefined;
|
|
63
63
|
yAxisLabel?: string | undefined;
|
|
64
64
|
} | undefined;
|
|
65
|
-
filePath?: string | undefined;
|
|
66
65
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
66
|
+
filePath?: string | undefined;
|
|
67
67
|
config?: Record<string, unknown> | undefined;
|
|
68
68
|
fileName?: string | undefined;
|
|
69
69
|
xColumn?: string | undefined;
|
|
@@ -84,8 +84,8 @@ declare const ChartJSToolParamsSchema: z.ZodObject<{
|
|
|
84
84
|
showLegend?: boolean | undefined;
|
|
85
85
|
showTooltips?: boolean | undefined;
|
|
86
86
|
} | undefined;
|
|
87
|
-
filePath?: string | undefined;
|
|
88
87
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
88
|
+
filePath?: string | undefined;
|
|
89
89
|
config?: Record<string, unknown> | undefined;
|
|
90
90
|
fileName?: string | undefined;
|
|
91
91
|
width?: number | undefined;
|
|
@@ -139,8 +139,6 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
|
|
|
139
139
|
success: z.ZodBoolean;
|
|
140
140
|
error: z.ZodString;
|
|
141
141
|
}, "strip", z.ZodTypeAny, {
|
|
142
|
-
success: boolean;
|
|
143
|
-
error: string;
|
|
144
142
|
metadata: {
|
|
145
143
|
colorScheme: string;
|
|
146
144
|
generatedAt: string;
|
|
@@ -148,6 +146,8 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
|
|
|
148
146
|
yColumn?: string | undefined;
|
|
149
147
|
groupByColumn?: string | undefined;
|
|
150
148
|
};
|
|
149
|
+
success: boolean;
|
|
150
|
+
error: string;
|
|
151
151
|
chartType: string;
|
|
152
152
|
chartConfig: Record<string, unknown>;
|
|
153
153
|
datasetCount: number;
|
|
@@ -160,8 +160,6 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
|
|
|
160
160
|
fileSize?: number | undefined;
|
|
161
161
|
fileExists?: boolean | undefined;
|
|
162
162
|
}, {
|
|
163
|
-
success: boolean;
|
|
164
|
-
error: string;
|
|
165
163
|
metadata: {
|
|
166
164
|
colorScheme: string;
|
|
167
165
|
generatedAt: string;
|
|
@@ -169,6 +167,8 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
|
|
|
169
167
|
yColumn?: string | undefined;
|
|
170
168
|
groupByColumn?: string | undefined;
|
|
171
169
|
};
|
|
170
|
+
success: boolean;
|
|
171
|
+
error: string;
|
|
172
172
|
chartType: string;
|
|
173
173
|
chartConfig: Record<string, unknown>;
|
|
174
174
|
datasetCount: number;
|
|
@@ -250,8 +250,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
|
|
|
250
250
|
xAxisLabel?: string | undefined;
|
|
251
251
|
yAxisLabel?: string | undefined;
|
|
252
252
|
} | undefined;
|
|
253
|
-
filePath?: string | undefined;
|
|
254
253
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
254
|
+
filePath?: string | undefined;
|
|
255
255
|
config?: Record<string, unknown> | undefined;
|
|
256
256
|
fileName?: string | undefined;
|
|
257
257
|
xColumn?: string | undefined;
|
|
@@ -272,8 +272,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
|
|
|
272
272
|
showLegend?: boolean | undefined;
|
|
273
273
|
showTooltips?: boolean | undefined;
|
|
274
274
|
} | undefined;
|
|
275
|
-
filePath?: string | undefined;
|
|
276
275
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
276
|
+
filePath?: string | undefined;
|
|
277
277
|
config?: Record<string, unknown> | undefined;
|
|
278
278
|
fileName?: string | undefined;
|
|
279
279
|
width?: number | undefined;
|
|
@@ -324,8 +324,6 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
|
|
|
324
324
|
success: z.ZodBoolean;
|
|
325
325
|
error: z.ZodString;
|
|
326
326
|
}, "strip", z.ZodTypeAny, {
|
|
327
|
-
success: boolean;
|
|
328
|
-
error: string;
|
|
329
327
|
metadata: {
|
|
330
328
|
colorScheme: string;
|
|
331
329
|
generatedAt: string;
|
|
@@ -333,6 +331,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
|
|
|
333
331
|
yColumn?: string | undefined;
|
|
334
332
|
groupByColumn?: string | undefined;
|
|
335
333
|
};
|
|
334
|
+
success: boolean;
|
|
335
|
+
error: string;
|
|
336
336
|
chartType: string;
|
|
337
337
|
chartConfig: Record<string, unknown>;
|
|
338
338
|
datasetCount: number;
|
|
@@ -345,8 +345,6 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
|
|
|
345
345
|
fileSize?: number | undefined;
|
|
346
346
|
fileExists?: boolean | undefined;
|
|
347
347
|
}, {
|
|
348
|
-
success: boolean;
|
|
349
|
-
error: string;
|
|
350
348
|
metadata: {
|
|
351
349
|
colorScheme: string;
|
|
352
350
|
generatedAt: string;
|
|
@@ -354,6 +352,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
|
|
|
354
352
|
yColumn?: string | undefined;
|
|
355
353
|
groupByColumn?: string | undefined;
|
|
356
354
|
};
|
|
355
|
+
success: boolean;
|
|
356
|
+
error: string;
|
|
357
357
|
chartType: string;
|
|
358
358
|
chartConfig: Record<string, unknown>;
|
|
359
359
|
datasetCount: number;
|
|
@@ -73,26 +73,26 @@ declare const EditBubbleFlowToolResultSchema: z.ZodObject<{
|
|
|
73
73
|
success: z.ZodBoolean;
|
|
74
74
|
error: z.ZodString;
|
|
75
75
|
}, "strip", z.ZodTypeAny, {
|
|
76
|
-
success: boolean;
|
|
77
|
-
error: string;
|
|
78
76
|
metadata: {
|
|
79
77
|
originalLength: number;
|
|
80
78
|
morphModel: string;
|
|
81
79
|
editedAt: string;
|
|
82
80
|
finalLength: number;
|
|
83
81
|
};
|
|
82
|
+
success: boolean;
|
|
83
|
+
error: string;
|
|
84
84
|
mergedCode: string;
|
|
85
85
|
applied: boolean;
|
|
86
86
|
diff?: string | undefined;
|
|
87
87
|
}, {
|
|
88
|
-
success: boolean;
|
|
89
|
-
error: string;
|
|
90
88
|
metadata: {
|
|
91
89
|
originalLength: number;
|
|
92
90
|
morphModel: string;
|
|
93
91
|
editedAt: string;
|
|
94
92
|
finalLength: number;
|
|
95
93
|
};
|
|
94
|
+
success: boolean;
|
|
95
|
+
error: string;
|
|
96
96
|
mergedCode: string;
|
|
97
97
|
applied: boolean;
|
|
98
98
|
diff?: string | undefined;
|
|
@@ -152,26 +152,26 @@ export declare class EditBubbleFlowTool extends ToolBubble<EditBubbleFlowToolPar
|
|
|
152
152
|
success: z.ZodBoolean;
|
|
153
153
|
error: z.ZodString;
|
|
154
154
|
}, "strip", z.ZodTypeAny, {
|
|
155
|
-
success: boolean;
|
|
156
|
-
error: string;
|
|
157
155
|
metadata: {
|
|
158
156
|
originalLength: number;
|
|
159
157
|
morphModel: string;
|
|
160
158
|
editedAt: string;
|
|
161
159
|
finalLength: number;
|
|
162
160
|
};
|
|
161
|
+
success: boolean;
|
|
162
|
+
error: string;
|
|
163
163
|
mergedCode: string;
|
|
164
164
|
applied: boolean;
|
|
165
165
|
diff?: string | undefined;
|
|
166
166
|
}, {
|
|
167
|
-
success: boolean;
|
|
168
|
-
error: string;
|
|
169
167
|
metadata: {
|
|
170
168
|
originalLength: number;
|
|
171
169
|
morphModel: string;
|
|
172
170
|
editedAt: string;
|
|
173
171
|
finalLength: number;
|
|
174
172
|
};
|
|
173
|
+
success: boolean;
|
|
174
|
+
error: string;
|
|
175
175
|
mergedCode: string;
|
|
176
176
|
applied: boolean;
|
|
177
177
|
diff?: string | undefined;
|
|
@@ -147,9 +147,9 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
147
147
|
success: z.ZodBoolean;
|
|
148
148
|
error: z.ZodString;
|
|
149
149
|
}, "strip", z.ZodTypeAny, {
|
|
150
|
+
operation: "search";
|
|
150
151
|
success: boolean;
|
|
151
152
|
error: string;
|
|
152
|
-
operation: "search";
|
|
153
153
|
places: {
|
|
154
154
|
title: string | null;
|
|
155
155
|
url: string | null;
|
|
@@ -183,9 +183,9 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
183
183
|
}[];
|
|
184
184
|
totalPlaces: number;
|
|
185
185
|
}, {
|
|
186
|
+
operation: "search";
|
|
186
187
|
success: boolean;
|
|
187
188
|
error: string;
|
|
188
|
-
operation: "search";
|
|
189
189
|
places: {
|
|
190
190
|
title: string | null;
|
|
191
191
|
url: string | null;
|
|
@@ -369,9 +369,9 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
369
369
|
success: z.ZodBoolean;
|
|
370
370
|
error: z.ZodString;
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
+
operation: "search";
|
|
372
373
|
success: boolean;
|
|
373
374
|
error: string;
|
|
374
|
-
operation: "search";
|
|
375
375
|
places: {
|
|
376
376
|
title: string | null;
|
|
377
377
|
url: string | null;
|
|
@@ -405,9 +405,9 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
405
405
|
}[];
|
|
406
406
|
totalPlaces: number;
|
|
407
407
|
}, {
|
|
408
|
+
operation: "search";
|
|
408
409
|
success: boolean;
|
|
409
410
|
error: string;
|
|
410
|
-
operation: "search";
|
|
411
411
|
places: {
|
|
412
412
|
title: string | null;
|
|
413
413
|
url: string | null;
|
|
@@ -147,9 +147,9 @@ declare const InstagramToolResultSchema: z.ZodObject<{
|
|
|
147
147
|
success: z.ZodBoolean;
|
|
148
148
|
error: z.ZodString;
|
|
149
149
|
}, "strip", z.ZodTypeAny, {
|
|
150
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
150
151
|
success: boolean;
|
|
151
152
|
error: string;
|
|
152
|
-
operation: "scrapeProfile" | "scrapeHashtag";
|
|
153
153
|
posts: {
|
|
154
154
|
type: "image" | "video" | "carousel" | null;
|
|
155
155
|
url: string | null;
|
|
@@ -175,9 +175,9 @@ declare const InstagramToolResultSchema: z.ZodObject<{
|
|
|
175
175
|
scrapedHashtags?: string[] | undefined;
|
|
176
176
|
scrapedProfiles?: string[] | undefined;
|
|
177
177
|
}, {
|
|
178
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
178
179
|
success: boolean;
|
|
179
180
|
error: string;
|
|
180
|
-
operation: "scrapeProfile" | "scrapeHashtag";
|
|
181
181
|
posts: {
|
|
182
182
|
type: "image" | "video" | "carousel" | null;
|
|
183
183
|
url: string | null;
|
|
@@ -312,9 +312,9 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
|
|
|
312
312
|
success: z.ZodBoolean;
|
|
313
313
|
error: z.ZodString;
|
|
314
314
|
}, "strip", z.ZodTypeAny, {
|
|
315
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
315
316
|
success: boolean;
|
|
316
317
|
error: string;
|
|
317
|
-
operation: "scrapeProfile" | "scrapeHashtag";
|
|
318
318
|
posts: {
|
|
319
319
|
type: "image" | "video" | "carousel" | null;
|
|
320
320
|
url: string | null;
|
|
@@ -340,9 +340,9 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
|
|
|
340
340
|
scrapedHashtags?: string[] | undefined;
|
|
341
341
|
scrapedProfiles?: string[] | undefined;
|
|
342
342
|
}, {
|
|
343
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
343
344
|
success: boolean;
|
|
344
345
|
error: string;
|
|
345
|
-
operation: "scrapeProfile" | "scrapeHashtag";
|
|
346
346
|
posts: {
|
|
347
347
|
type: "image" | "video" | "carousel" | null;
|
|
348
348
|
url: string | null;
|
|
@@ -63,9 +63,9 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
63
63
|
}>>;
|
|
64
64
|
error: import("zod").ZodString;
|
|
65
65
|
}, "strip", import("zod").ZodTypeAny, {
|
|
66
|
+
operation: "send_connection";
|
|
66
67
|
success: boolean;
|
|
67
68
|
error: string;
|
|
68
|
-
operation: "send_connection";
|
|
69
69
|
message?: string | undefined;
|
|
70
70
|
profile?: {
|
|
71
71
|
name: string;
|
|
@@ -74,9 +74,9 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
74
74
|
headline?: string | undefined;
|
|
75
75
|
} | undefined;
|
|
76
76
|
}, {
|
|
77
|
+
operation: "send_connection";
|
|
77
78
|
success: boolean;
|
|
78
79
|
error: string;
|
|
79
|
-
operation: "send_connection";
|
|
80
80
|
message?: string | undefined;
|
|
81
81
|
profile?: {
|
|
82
82
|
name: string;
|
|
@@ -595,13 +595,13 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
595
595
|
currency: z.ZodNullable<z.ZodString>;
|
|
596
596
|
period: z.ZodNullable<z.ZodString>;
|
|
597
597
|
}, "strip", z.ZodTypeAny, {
|
|
598
|
-
from: number | null;
|
|
599
598
|
to: number | null;
|
|
599
|
+
from: number | null;
|
|
600
600
|
currency: string | null;
|
|
601
601
|
period: string | null;
|
|
602
602
|
}, {
|
|
603
|
-
from: number | null;
|
|
604
603
|
to: number | null;
|
|
604
|
+
from: number | null;
|
|
605
605
|
currency: string | null;
|
|
606
606
|
period: string | null;
|
|
607
607
|
}>>;
|
|
@@ -615,8 +615,8 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
615
615
|
postedAt: string | null;
|
|
616
616
|
applyUrl: string | null;
|
|
617
617
|
salary: {
|
|
618
|
-
from: number | null;
|
|
619
618
|
to: number | null;
|
|
619
|
+
from: number | null;
|
|
620
620
|
currency: string | null;
|
|
621
621
|
period: string | null;
|
|
622
622
|
} | null;
|
|
@@ -637,8 +637,8 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
637
637
|
postedAt: string | null;
|
|
638
638
|
applyUrl: string | null;
|
|
639
639
|
salary: {
|
|
640
|
-
from: number | null;
|
|
641
640
|
to: number | null;
|
|
641
|
+
from: number | null;
|
|
642
642
|
currency: string | null;
|
|
643
643
|
period: string | null;
|
|
644
644
|
} | null;
|
|
@@ -722,13 +722,13 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
722
722
|
currency: z.ZodNullable<z.ZodString>;
|
|
723
723
|
period: z.ZodNullable<z.ZodString>;
|
|
724
724
|
}, "strip", z.ZodTypeAny, {
|
|
725
|
-
from: number | null;
|
|
726
725
|
to: number | null;
|
|
726
|
+
from: number | null;
|
|
727
727
|
currency: string | null;
|
|
728
728
|
period: string | null;
|
|
729
729
|
}, {
|
|
730
|
-
from: number | null;
|
|
731
730
|
to: number | null;
|
|
731
|
+
from: number | null;
|
|
732
732
|
currency: string | null;
|
|
733
733
|
period: string | null;
|
|
734
734
|
}>>;
|
|
@@ -742,8 +742,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
742
742
|
postedAt: string | null;
|
|
743
743
|
applyUrl: string | null;
|
|
744
744
|
salary: {
|
|
745
|
-
from: number | null;
|
|
746
745
|
to: number | null;
|
|
746
|
+
from: number | null;
|
|
747
747
|
currency: string | null;
|
|
748
748
|
period: string | null;
|
|
749
749
|
} | null;
|
|
@@ -764,8 +764,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
764
764
|
postedAt: string | null;
|
|
765
765
|
applyUrl: string | null;
|
|
766
766
|
salary: {
|
|
767
|
-
from: number | null;
|
|
768
767
|
to: number | null;
|
|
768
|
+
from: number | null;
|
|
769
769
|
currency: string | null;
|
|
770
770
|
period: string | null;
|
|
771
771
|
} | null;
|
|
@@ -1298,9 +1298,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1298
1298
|
success: z.ZodBoolean;
|
|
1299
1299
|
error: z.ZodString;
|
|
1300
1300
|
}, "strip", z.ZodTypeAny, {
|
|
1301
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1301
1302
|
success: boolean;
|
|
1302
1303
|
error: string;
|
|
1303
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1304
1304
|
posts: {
|
|
1305
1305
|
url: string | null;
|
|
1306
1306
|
text: string | null;
|
|
@@ -1406,8 +1406,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1406
1406
|
postedAt: string | null;
|
|
1407
1407
|
applyUrl: string | null;
|
|
1408
1408
|
salary: {
|
|
1409
|
-
from: number | null;
|
|
1410
1409
|
to: number | null;
|
|
1410
|
+
from: number | null;
|
|
1411
1411
|
currency: string | null;
|
|
1412
1412
|
period: string | null;
|
|
1413
1413
|
} | null;
|
|
@@ -1424,9 +1424,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1424
1424
|
paginationToken?: string | null | undefined;
|
|
1425
1425
|
hasNextPage?: boolean | null | undefined;
|
|
1426
1426
|
}, {
|
|
1427
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1427
1428
|
success: boolean;
|
|
1428
1429
|
error: string;
|
|
1429
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1430
1430
|
posts: {
|
|
1431
1431
|
url: string | null;
|
|
1432
1432
|
text: string | null;
|
|
@@ -1532,8 +1532,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1532
1532
|
postedAt: string | null;
|
|
1533
1533
|
applyUrl: string | null;
|
|
1534
1534
|
salary: {
|
|
1535
|
-
from: number | null;
|
|
1536
1535
|
to: number | null;
|
|
1536
|
+
from: number | null;
|
|
1537
1537
|
currency: string | null;
|
|
1538
1538
|
period: string | null;
|
|
1539
1539
|
} | null;
|
|
@@ -1645,13 +1645,13 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1645
1645
|
currency: z.ZodNullable<z.ZodString>;
|
|
1646
1646
|
period: z.ZodNullable<z.ZodString>;
|
|
1647
1647
|
}, "strip", z.ZodTypeAny, {
|
|
1648
|
-
from: number | null;
|
|
1649
1648
|
to: number | null;
|
|
1649
|
+
from: number | null;
|
|
1650
1650
|
currency: string | null;
|
|
1651
1651
|
period: string | null;
|
|
1652
1652
|
}, {
|
|
1653
|
-
from: number | null;
|
|
1654
1653
|
to: number | null;
|
|
1654
|
+
from: number | null;
|
|
1655
1655
|
currency: string | null;
|
|
1656
1656
|
period: string | null;
|
|
1657
1657
|
}>>;
|
|
@@ -1665,8 +1665,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1665
1665
|
postedAt: string | null;
|
|
1666
1666
|
applyUrl: string | null;
|
|
1667
1667
|
salary: {
|
|
1668
|
-
from: number | null;
|
|
1669
1668
|
to: number | null;
|
|
1669
|
+
from: number | null;
|
|
1670
1670
|
currency: string | null;
|
|
1671
1671
|
period: string | null;
|
|
1672
1672
|
} | null;
|
|
@@ -1687,8 +1687,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1687
1687
|
postedAt: string | null;
|
|
1688
1688
|
applyUrl: string | null;
|
|
1689
1689
|
salary: {
|
|
1690
|
-
from: number | null;
|
|
1691
1690
|
to: number | null;
|
|
1691
|
+
from: number | null;
|
|
1692
1692
|
currency: string | null;
|
|
1693
1693
|
period: string | null;
|
|
1694
1694
|
} | null;
|
|
@@ -2221,9 +2221,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2221
2221
|
success: z.ZodBoolean;
|
|
2222
2222
|
error: z.ZodString;
|
|
2223
2223
|
}, "strip", z.ZodTypeAny, {
|
|
2224
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2224
2225
|
success: boolean;
|
|
2225
2226
|
error: string;
|
|
2226
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2227
2227
|
posts: {
|
|
2228
2228
|
url: string | null;
|
|
2229
2229
|
text: string | null;
|
|
@@ -2329,8 +2329,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2329
2329
|
postedAt: string | null;
|
|
2330
2330
|
applyUrl: string | null;
|
|
2331
2331
|
salary: {
|
|
2332
|
-
from: number | null;
|
|
2333
2332
|
to: number | null;
|
|
2333
|
+
from: number | null;
|
|
2334
2334
|
currency: string | null;
|
|
2335
2335
|
period: string | null;
|
|
2336
2336
|
} | null;
|
|
@@ -2347,9 +2347,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2347
2347
|
paginationToken?: string | null | undefined;
|
|
2348
2348
|
hasNextPage?: boolean | null | undefined;
|
|
2349
2349
|
}, {
|
|
2350
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2350
2351
|
success: boolean;
|
|
2351
2352
|
error: string;
|
|
2352
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2353
2353
|
posts: {
|
|
2354
2354
|
url: string | null;
|
|
2355
2355
|
text: string | null;
|
|
@@ -2455,8 +2455,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2455
2455
|
postedAt: string | null;
|
|
2456
2456
|
applyUrl: string | null;
|
|
2457
2457
|
salary: {
|
|
2458
|
-
from: number | null;
|
|
2459
2458
|
to: number | null;
|
|
2459
|
+
from: number | null;
|
|
2460
2460
|
currency: string | null;
|
|
2461
2461
|
period: string | null;
|
|
2462
2462
|
} | null;
|
|
@@ -154,8 +154,6 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
154
154
|
success: z.ZodBoolean;
|
|
155
155
|
error: z.ZodString;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
success: boolean;
|
|
158
|
-
error: string;
|
|
159
157
|
metadata: {
|
|
160
158
|
sort: string;
|
|
161
159
|
scrapedAt: string;
|
|
@@ -166,6 +164,8 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
166
164
|
apiEndpoint: string;
|
|
167
165
|
timeFilter?: string | undefined;
|
|
168
166
|
};
|
|
167
|
+
success: boolean;
|
|
168
|
+
error: string;
|
|
169
169
|
posts: {
|
|
170
170
|
title: string;
|
|
171
171
|
url: string;
|
|
@@ -183,8 +183,6 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
183
183
|
flair?: string | undefined;
|
|
184
184
|
}[];
|
|
185
185
|
}, {
|
|
186
|
-
success: boolean;
|
|
187
|
-
error: string;
|
|
188
186
|
metadata: {
|
|
189
187
|
sort: string;
|
|
190
188
|
scrapedAt: string;
|
|
@@ -195,6 +193,8 @@ declare const RedditScrapeToolResultSchema: z.ZodObject<{
|
|
|
195
193
|
apiEndpoint: string;
|
|
196
194
|
timeFilter?: string | undefined;
|
|
197
195
|
};
|
|
196
|
+
success: boolean;
|
|
197
|
+
error: string;
|
|
198
198
|
posts: {
|
|
199
199
|
title: string;
|
|
200
200
|
url: string;
|
|
@@ -324,8 +324,6 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
324
324
|
success: z.ZodBoolean;
|
|
325
325
|
error: z.ZodString;
|
|
326
326
|
}, "strip", z.ZodTypeAny, {
|
|
327
|
-
success: boolean;
|
|
328
|
-
error: string;
|
|
329
327
|
metadata: {
|
|
330
328
|
sort: string;
|
|
331
329
|
scrapedAt: string;
|
|
@@ -336,6 +334,8 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
336
334
|
apiEndpoint: string;
|
|
337
335
|
timeFilter?: string | undefined;
|
|
338
336
|
};
|
|
337
|
+
success: boolean;
|
|
338
|
+
error: string;
|
|
339
339
|
posts: {
|
|
340
340
|
title: string;
|
|
341
341
|
url: string;
|
|
@@ -353,8 +353,6 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
353
353
|
flair?: string | undefined;
|
|
354
354
|
}[];
|
|
355
355
|
}, {
|
|
356
|
-
success: boolean;
|
|
357
|
-
error: string;
|
|
358
356
|
metadata: {
|
|
359
357
|
sort: string;
|
|
360
358
|
scrapedAt: string;
|
|
@@ -365,6 +363,8 @@ export declare class RedditScrapeTool extends ToolBubble<RedditScrapeToolParams,
|
|
|
365
363
|
apiEndpoint: string;
|
|
366
364
|
timeFilter?: string | undefined;
|
|
367
365
|
};
|
|
366
|
+
success: boolean;
|
|
367
|
+
error: string;
|
|
368
368
|
posts: {
|
|
369
369
|
title: string;
|
|
370
370
|
url: string;
|
|
@@ -8,13 +8,13 @@ declare const SQLQueryToolParamsSchema: z.ZodObject<{
|
|
|
8
8
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
9
9
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
reasoning: string;
|
|
12
11
|
query: string;
|
|
12
|
+
reasoning: string;
|
|
13
13
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
14
14
|
config?: Record<string, unknown> | undefined;
|
|
15
15
|
}, {
|
|
16
|
-
reasoning: string;
|
|
17
16
|
query: string;
|
|
17
|
+
reasoning: string;
|
|
18
18
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19
19
|
config?: Record<string, unknown> | undefined;
|
|
20
20
|
}>;
|
|
@@ -74,13 +74,13 @@ export declare class SQLQueryTool extends ToolBubble<SQLQueryToolParams, SQLQuer
|
|
|
74
74
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
75
75
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
76
76
|
}, "strip", z.ZodTypeAny, {
|
|
77
|
-
reasoning: string;
|
|
78
77
|
query: string;
|
|
78
|
+
reasoning: string;
|
|
79
79
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
80
80
|
config?: Record<string, unknown> | undefined;
|
|
81
81
|
}, {
|
|
82
|
-
reasoning: string;
|
|
83
82
|
query: string;
|
|
83
|
+
reasoning: string;
|
|
84
84
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
85
|
config?: Record<string, unknown> | undefined;
|
|
86
86
|
}>;
|