@bubblelab/bubble-core 0.1.209 → 0.1.210
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 +55 -55
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +53 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/capability-pipeline.js +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
- package/dist/bubbles/service-bubble/firecrawl.d.ts +176 -176
- package/dist/bubbles/service-bubble/github.d.ts +72 -72
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +98 -98
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -305,8 +305,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
305
305
|
operation: "create_invoice_item";
|
|
306
306
|
currency: string;
|
|
307
307
|
unit_amount: number;
|
|
308
|
-
customer: string;
|
|
309
308
|
quantity: number;
|
|
309
|
+
customer: string;
|
|
310
310
|
description?: string | undefined;
|
|
311
311
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
312
312
|
metadata?: Record<string, string> | undefined;
|
|
@@ -319,8 +319,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
319
319
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
320
320
|
metadata?: Record<string, string> | undefined;
|
|
321
321
|
currency?: string | undefined;
|
|
322
|
-
invoice?: string | undefined;
|
|
323
322
|
quantity?: number | undefined;
|
|
323
|
+
invoice?: string | undefined;
|
|
324
324
|
}>, import("zod").ZodObject<{
|
|
325
325
|
operation: import("zod").ZodLiteral<"send_invoice">;
|
|
326
326
|
invoice_id: import("zod").ZodString;
|
|
@@ -382,8 +382,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
382
382
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
383
383
|
}, "strip", import("zod").ZodTypeAny, {
|
|
384
384
|
operation: "cancel_subscription";
|
|
385
|
-
cancel_at_period_end: boolean;
|
|
386
385
|
subscription_id: string;
|
|
386
|
+
cancel_at_period_end: boolean;
|
|
387
387
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
388
388
|
}, {
|
|
389
389
|
operation: "cancel_subscription";
|
|
@@ -687,7 +687,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
687
687
|
created: import("zod").ZodNumber;
|
|
688
688
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
689
689
|
}, "strip", import("zod").ZodTypeAny, {
|
|
690
|
-
type: "
|
|
690
|
+
type: "recurring" | "one_time";
|
|
691
691
|
id: string;
|
|
692
692
|
created: number;
|
|
693
693
|
currency: string;
|
|
@@ -696,7 +696,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
696
696
|
unit_amount: number | null;
|
|
697
697
|
metadata?: Record<string, string> | undefined;
|
|
698
698
|
}, {
|
|
699
|
-
type: "
|
|
699
|
+
type: "recurring" | "one_time";
|
|
700
700
|
id: string;
|
|
701
701
|
created: number;
|
|
702
702
|
currency: string;
|
|
@@ -711,7 +711,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
711
711
|
success: boolean;
|
|
712
712
|
operation: "create_price";
|
|
713
713
|
price?: {
|
|
714
|
-
type: "
|
|
714
|
+
type: "recurring" | "one_time";
|
|
715
715
|
id: string;
|
|
716
716
|
created: number;
|
|
717
717
|
currency: string;
|
|
@@ -725,7 +725,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
725
725
|
success: boolean;
|
|
726
726
|
operation: "create_price";
|
|
727
727
|
price?: {
|
|
728
|
-
type: "
|
|
728
|
+
type: "recurring" | "one_time";
|
|
729
729
|
id: string;
|
|
730
730
|
created: number;
|
|
731
731
|
currency: string;
|
|
@@ -747,7 +747,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
747
747
|
created: import("zod").ZodNumber;
|
|
748
748
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
749
749
|
}, "strip", import("zod").ZodTypeAny, {
|
|
750
|
-
type: "
|
|
750
|
+
type: "recurring" | "one_time";
|
|
751
751
|
id: string;
|
|
752
752
|
created: number;
|
|
753
753
|
currency: string;
|
|
@@ -756,7 +756,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
756
756
|
unit_amount: number | null;
|
|
757
757
|
metadata?: Record<string, string> | undefined;
|
|
758
758
|
}, {
|
|
759
|
-
type: "
|
|
759
|
+
type: "recurring" | "one_time";
|
|
760
760
|
id: string;
|
|
761
761
|
created: number;
|
|
762
762
|
currency: string;
|
|
@@ -771,7 +771,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
771
771
|
success: boolean;
|
|
772
772
|
operation: "list_prices";
|
|
773
773
|
prices?: {
|
|
774
|
-
type: "
|
|
774
|
+
type: "recurring" | "one_time";
|
|
775
775
|
id: string;
|
|
776
776
|
created: number;
|
|
777
777
|
currency: string;
|
|
@@ -785,7 +785,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
785
785
|
success: boolean;
|
|
786
786
|
operation: "list_prices";
|
|
787
787
|
prices?: {
|
|
788
|
-
type: "
|
|
788
|
+
type: "recurring" | "one_time";
|
|
789
789
|
id: string;
|
|
790
790
|
created: number;
|
|
791
791
|
currency: string;
|
|
@@ -1148,8 +1148,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1148
1148
|
date?: number | undefined;
|
|
1149
1149
|
metadata?: Record<string, string> | undefined;
|
|
1150
1150
|
unit_amount?: number | null | undefined;
|
|
1151
|
-
invoice?: string | null | undefined;
|
|
1152
1151
|
quantity?: number | undefined;
|
|
1152
|
+
invoice?: string | null | undefined;
|
|
1153
1153
|
}, {
|
|
1154
1154
|
id: string;
|
|
1155
1155
|
currency: string;
|
|
@@ -1159,8 +1159,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1159
1159
|
date?: number | undefined;
|
|
1160
1160
|
metadata?: Record<string, string> | undefined;
|
|
1161
1161
|
unit_amount?: number | null | undefined;
|
|
1162
|
-
invoice?: string | null | undefined;
|
|
1163
1162
|
quantity?: number | undefined;
|
|
1163
|
+
invoice?: string | null | undefined;
|
|
1164
1164
|
}>>;
|
|
1165
1165
|
error: import("zod").ZodString;
|
|
1166
1166
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -1176,8 +1176,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1176
1176
|
date?: number | undefined;
|
|
1177
1177
|
metadata?: Record<string, string> | undefined;
|
|
1178
1178
|
unit_amount?: number | null | undefined;
|
|
1179
|
-
invoice?: string | null | undefined;
|
|
1180
1179
|
quantity?: number | undefined;
|
|
1180
|
+
invoice?: string | null | undefined;
|
|
1181
1181
|
} | undefined;
|
|
1182
1182
|
}, {
|
|
1183
1183
|
error: string;
|
|
@@ -1192,8 +1192,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
|
|
|
1192
1192
|
date?: number | undefined;
|
|
1193
1193
|
metadata?: Record<string, string> | undefined;
|
|
1194
1194
|
unit_amount?: number | null | undefined;
|
|
1195
|
-
invoice?: string | null | undefined;
|
|
1196
1195
|
quantity?: number | undefined;
|
|
1196
|
+
invoice?: string | null | undefined;
|
|
1197
1197
|
} | undefined;
|
|
1198
1198
|
}>, import("zod").ZodObject<{
|
|
1199
1199
|
operation: import("zod").ZodLiteral<"send_invoice">;
|
|
@@ -135,13 +135,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
135
135
|
hasActionCall: boolean;
|
|
136
136
|
parameterCount: number;
|
|
137
137
|
}[] | undefined;
|
|
138
|
-
bubbleCount?: number | undefined;
|
|
139
138
|
variableTypes?: {
|
|
140
139
|
type: string;
|
|
141
140
|
name: string;
|
|
142
141
|
column: number;
|
|
143
142
|
line: number;
|
|
144
143
|
}[] | undefined;
|
|
144
|
+
bubbleCount?: number | undefined;
|
|
145
145
|
}, {
|
|
146
146
|
valid: boolean;
|
|
147
147
|
error: string;
|
|
@@ -160,13 +160,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
160
160
|
hasActionCall: boolean;
|
|
161
161
|
parameterCount: number;
|
|
162
162
|
}[] | undefined;
|
|
163
|
-
bubbleCount?: number | undefined;
|
|
164
163
|
variableTypes?: {
|
|
165
164
|
type: string;
|
|
166
165
|
name: string;
|
|
167
166
|
column: number;
|
|
168
167
|
line: number;
|
|
169
168
|
}[] | undefined;
|
|
169
|
+
bubbleCount?: number | undefined;
|
|
170
170
|
}>;
|
|
171
171
|
/**
|
|
172
172
|
* BubbleFlow Validation Tool
|
|
@@ -284,13 +284,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
284
284
|
hasActionCall: boolean;
|
|
285
285
|
parameterCount: number;
|
|
286
286
|
}[] | undefined;
|
|
287
|
-
bubbleCount?: number | undefined;
|
|
288
287
|
variableTypes?: {
|
|
289
288
|
type: string;
|
|
290
289
|
name: string;
|
|
291
290
|
column: number;
|
|
292
291
|
line: number;
|
|
293
292
|
}[] | undefined;
|
|
293
|
+
bubbleCount?: number | undefined;
|
|
294
294
|
}, {
|
|
295
295
|
valid: boolean;
|
|
296
296
|
error: string;
|
|
@@ -309,13 +309,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
309
309
|
hasActionCall: boolean;
|
|
310
310
|
parameterCount: number;
|
|
311
311
|
}[] | undefined;
|
|
312
|
-
bubbleCount?: number | undefined;
|
|
313
312
|
variableTypes?: {
|
|
314
313
|
type: string;
|
|
315
314
|
name: string;
|
|
316
315
|
column: number;
|
|
317
316
|
line: number;
|
|
318
317
|
}[] | undefined;
|
|
318
|
+
bubbleCount?: number | undefined;
|
|
319
319
|
}>;
|
|
320
320
|
static readonly shortDescription = "Validates BubbleFlow TypeScript code for syntax and structure";
|
|
321
321
|
static readonly longDescription = "\n A comprehensive validation tool for BubbleFlow TypeScript code.\n \n What it does:\n - Validates TypeScript syntax and compilation\n - Checks BubbleFlow class structure and requirements\n - Parses and analyzes bubble instantiations\n - Provides detailed error reporting with line numbers\n - Returns metadata about detected bubbles\n \n How it works:\n - Uses TypeScript compiler API for syntax validation\n - Validates that code extends BubbleFlow and has handle method\n - Parses bubble instantiations using AST analysis\n - Maps bubble class names to registered bubble types\n \n Use cases:\n - When an AI agent needs to validate user-provided BubbleFlow code\n - When checking code before execution or deployment\n - When providing feedback on BubbleFlow implementation\n - When analyzing bubble usage patterns in code\n ";
|
|
@@ -67,7 +67,7 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
67
67
|
title: string | null;
|
|
68
68
|
name: string | null;
|
|
69
69
|
summary: string | null;
|
|
70
|
-
role: "
|
|
70
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
71
71
|
location: string | null;
|
|
72
72
|
headline: string | null;
|
|
73
73
|
linkedinUrl: string | null;
|
|
@@ -98,7 +98,7 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
98
98
|
title: string | null;
|
|
99
99
|
name: string | null;
|
|
100
100
|
summary: string | null;
|
|
101
|
-
role: "
|
|
101
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
102
102
|
location: string | null;
|
|
103
103
|
headline: string | null;
|
|
104
104
|
linkedinUrl: string | null;
|
|
@@ -205,7 +205,7 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
205
205
|
title: string | null;
|
|
206
206
|
name: string | null;
|
|
207
207
|
summary: string | null;
|
|
208
|
-
role: "
|
|
208
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
209
209
|
location: string | null;
|
|
210
210
|
headline: string | null;
|
|
211
211
|
linkedinUrl: string | null;
|
|
@@ -236,7 +236,7 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
236
236
|
title: string | null;
|
|
237
237
|
name: string | null;
|
|
238
238
|
summary: string | null;
|
|
239
|
-
role: "
|
|
239
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
240
240
|
location: string | null;
|
|
241
241
|
headline: string | null;
|
|
242
242
|
linkedinUrl: string | null;
|
|
@@ -311,7 +311,7 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
311
311
|
title: string | null;
|
|
312
312
|
name: string | null;
|
|
313
313
|
summary: string | null;
|
|
314
|
-
role: "
|
|
314
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
315
315
|
location: string | null;
|
|
316
316
|
headline: string | null;
|
|
317
317
|
linkedinUrl: string | null;
|
|
@@ -360,7 +360,7 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
360
360
|
title: string | null;
|
|
361
361
|
name: string | null;
|
|
362
362
|
summary: string | null;
|
|
363
|
-
role: "
|
|
363
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
364
364
|
location: string | null;
|
|
365
365
|
headline: string | null;
|
|
366
366
|
linkedinUrl: string | null;
|
|
@@ -506,7 +506,7 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
506
506
|
title: string | null;
|
|
507
507
|
name: string | null;
|
|
508
508
|
summary: string | null;
|
|
509
|
-
role: "
|
|
509
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
510
510
|
location: string | null;
|
|
511
511
|
headline: string | null;
|
|
512
512
|
linkedinUrl: string | null;
|
|
@@ -537,7 +537,7 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
537
537
|
title: string | null;
|
|
538
538
|
name: string | null;
|
|
539
539
|
summary: string | null;
|
|
540
|
-
role: "
|
|
540
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
541
541
|
location: string | null;
|
|
542
542
|
headline: string | null;
|
|
543
543
|
linkedinUrl: string | null;
|
|
@@ -612,7 +612,7 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
612
612
|
title: string | null;
|
|
613
613
|
name: string | null;
|
|
614
614
|
summary: string | null;
|
|
615
|
-
role: "
|
|
615
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
616
616
|
location: string | null;
|
|
617
617
|
headline: string | null;
|
|
618
618
|
linkedinUrl: string | null;
|
|
@@ -661,7 +661,7 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
661
661
|
title: string | null;
|
|
662
662
|
name: string | null;
|
|
663
663
|
summary: string | null;
|
|
664
|
-
role: "
|
|
664
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
665
665
|
location: string | null;
|
|
666
666
|
headline: string | null;
|
|
667
667
|
linkedinUrl: string | null;
|
|
@@ -1043,11 +1043,11 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
1043
1043
|
pageNumber?: number | undefined;
|
|
1044
1044
|
location?: string | undefined;
|
|
1045
1045
|
keyword?: string | undefined;
|
|
1046
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1047
1046
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
1047
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1048
1048
|
profileUrl?: string | undefined;
|
|
1049
1049
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
1050
|
-
experienceLevel?: ("
|
|
1050
|
+
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
1051
1051
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
1052
1052
|
}, {
|
|
1053
1053
|
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
@@ -1057,11 +1057,11 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
1057
1057
|
pageNumber?: number | undefined;
|
|
1058
1058
|
location?: string | undefined;
|
|
1059
1059
|
keyword?: string | undefined;
|
|
1060
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1061
1060
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
1061
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1062
1062
|
profileUrl?: string | undefined;
|
|
1063
1063
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
1064
|
-
experienceLevel?: ("
|
|
1064
|
+
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
1065
1065
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
1066
1066
|
}>;
|
|
1067
1067
|
declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
@@ -2496,11 +2496,11 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2496
2496
|
pageNumber?: number | undefined;
|
|
2497
2497
|
location?: string | undefined;
|
|
2498
2498
|
keyword?: string | undefined;
|
|
2499
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
2500
2499
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
2500
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
2501
2501
|
profileUrl?: string | undefined;
|
|
2502
2502
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
2503
|
-
experienceLevel?: ("
|
|
2503
|
+
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
2504
2504
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
2505
2505
|
}, {
|
|
2506
2506
|
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
@@ -2510,11 +2510,11 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2510
2510
|
pageNumber?: number | undefined;
|
|
2511
2511
|
location?: string | undefined;
|
|
2512
2512
|
keyword?: string | undefined;
|
|
2513
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
2514
2513
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
2514
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
2515
2515
|
profileUrl?: string | undefined;
|
|
2516
2516
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
2517
|
-
experienceLevel?: ("
|
|
2517
|
+
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
2518
2518
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
2519
2519
|
}>;
|
|
2520
2520
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -71,8 +71,6 @@ declare const ListCapabilitiesToolResultSchema: z.ZodObject<{
|
|
|
71
71
|
success: z.ZodBoolean;
|
|
72
72
|
error: z.ZodString;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
|
-
error: string;
|
|
75
|
-
success: boolean;
|
|
76
74
|
capabilities: {
|
|
77
75
|
description: string;
|
|
78
76
|
name: string;
|
|
@@ -90,10 +88,10 @@ declare const ListCapabilitiesToolResultSchema: z.ZodObject<{
|
|
|
90
88
|
optionalCredentials?: string[] | undefined;
|
|
91
89
|
delegationHint?: string | undefined;
|
|
92
90
|
}[];
|
|
93
|
-
totalCount: number;
|
|
94
|
-
}, {
|
|
95
91
|
error: string;
|
|
96
92
|
success: boolean;
|
|
93
|
+
totalCount: number;
|
|
94
|
+
}, {
|
|
97
95
|
capabilities: {
|
|
98
96
|
description: string;
|
|
99
97
|
name: string;
|
|
@@ -111,6 +109,8 @@ declare const ListCapabilitiesToolResultSchema: z.ZodObject<{
|
|
|
111
109
|
optionalCredentials?: string[] | undefined;
|
|
112
110
|
delegationHint?: string | undefined;
|
|
113
111
|
}[];
|
|
112
|
+
error: string;
|
|
113
|
+
success: boolean;
|
|
114
114
|
totalCount: number;
|
|
115
115
|
}>;
|
|
116
116
|
export declare class ListCapabilitiesTool extends ToolBubble<ListCapabilitiesToolParams, ListCapabilitiesToolResult> {
|
|
@@ -182,8 +182,6 @@ export declare class ListCapabilitiesTool extends ToolBubble<ListCapabilitiesToo
|
|
|
182
182
|
success: z.ZodBoolean;
|
|
183
183
|
error: z.ZodString;
|
|
184
184
|
}, "strip", z.ZodTypeAny, {
|
|
185
|
-
error: string;
|
|
186
|
-
success: boolean;
|
|
187
185
|
capabilities: {
|
|
188
186
|
description: string;
|
|
189
187
|
name: string;
|
|
@@ -201,10 +199,10 @@ export declare class ListCapabilitiesTool extends ToolBubble<ListCapabilitiesToo
|
|
|
201
199
|
optionalCredentials?: string[] | undefined;
|
|
202
200
|
delegationHint?: string | undefined;
|
|
203
201
|
}[];
|
|
204
|
-
totalCount: number;
|
|
205
|
-
}, {
|
|
206
202
|
error: string;
|
|
207
203
|
success: boolean;
|
|
204
|
+
totalCount: number;
|
|
205
|
+
}, {
|
|
208
206
|
capabilities: {
|
|
209
207
|
description: string;
|
|
210
208
|
name: string;
|
|
@@ -222,6 +220,8 @@ export declare class ListCapabilitiesTool extends ToolBubble<ListCapabilitiesToo
|
|
|
222
220
|
optionalCredentials?: string[] | undefined;
|
|
223
221
|
delegationHint?: string | undefined;
|
|
224
222
|
}[];
|
|
223
|
+
error: string;
|
|
224
|
+
success: boolean;
|
|
225
225
|
totalCount: number;
|
|
226
226
|
}>;
|
|
227
227
|
static readonly shortDescription = "Lists all available capabilities that can be attached to AI agents";
|