@bubblelab/bubble-core 0.1.25 → 0.1.26
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 +82 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
- package/dist/bubbles/service-bubble/airtable.d.ts +116 -116
- package/dist/bubbles/service-bubble/apify/apify.d.ts +6 -6
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +30 -30
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +64 -64
- package/dist/bubbles/service-bubble/followupboss.d.ts +176 -176
- package/dist/bubbles/service-bubble/github.d.ts +80 -80
- package/dist/bubbles/service-bubble/gmail.d.ts +172 -172
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +56 -56
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +22 -22
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/notion/notion.d.ts +874 -874
- package/dist/bubbles/service-bubble/resend.d.ts +16 -16
- package/dist/bubbles/service-bubble/slack/slack.d.ts +144 -144
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +208 -208
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +38 -38
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +173 -173
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +22 -6
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +22 -22
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +52 -52
- package/dist/bubbles.json +52054 -6
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -13,15 +13,15 @@ declare const GoogleMapsToolParamsSchema: z.ZodObject<{
|
|
|
13
13
|
operation: "search";
|
|
14
14
|
queries: string[];
|
|
15
15
|
location?: string | undefined;
|
|
16
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
17
16
|
limit?: number | undefined;
|
|
17
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18
18
|
language?: string | undefined;
|
|
19
19
|
}, {
|
|
20
20
|
operation: "search";
|
|
21
21
|
queries: string[];
|
|
22
22
|
location?: string | undefined;
|
|
23
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
24
23
|
limit?: number | undefined;
|
|
24
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
25
25
|
language?: string | undefined;
|
|
26
26
|
}>;
|
|
27
27
|
declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
@@ -83,17 +83,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
83
83
|
imageUrls: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
84
84
|
additionalInfo: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
|
+
title: string | null;
|
|
86
87
|
location: {
|
|
87
88
|
lat: number | null;
|
|
88
89
|
lng: number | null;
|
|
89
90
|
} | null;
|
|
90
|
-
title: string | null;
|
|
91
91
|
url: string | null;
|
|
92
|
-
website: string | null;
|
|
93
92
|
phone: string | null;
|
|
94
93
|
rating: number | null;
|
|
95
94
|
category: string | null;
|
|
96
95
|
address: string | null;
|
|
96
|
+
website: string | null;
|
|
97
97
|
placeId: string | null;
|
|
98
98
|
reviewsCount: number | null;
|
|
99
99
|
openingHours: {
|
|
@@ -113,17 +113,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
113
113
|
}[] | null;
|
|
114
114
|
imageUrls: string[] | null;
|
|
115
115
|
}, {
|
|
116
|
+
title: string | null;
|
|
116
117
|
location: {
|
|
117
118
|
lat: number | null;
|
|
118
119
|
lng: number | null;
|
|
119
120
|
} | null;
|
|
120
|
-
title: string | null;
|
|
121
121
|
url: string | null;
|
|
122
|
-
website: string | null;
|
|
123
122
|
phone: string | null;
|
|
124
123
|
rating: number | null;
|
|
125
124
|
category: string | null;
|
|
126
125
|
address: string | null;
|
|
126
|
+
website: string | null;
|
|
127
127
|
placeId: string | null;
|
|
128
128
|
reviewsCount: number | null;
|
|
129
129
|
openingHours: {
|
|
@@ -147,21 +147,21 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
147
147
|
success: z.ZodBoolean;
|
|
148
148
|
error: z.ZodString;
|
|
149
149
|
}, "strip", z.ZodTypeAny, {
|
|
150
|
-
operation: "search";
|
|
151
150
|
success: boolean;
|
|
152
151
|
error: string;
|
|
152
|
+
operation: "search";
|
|
153
153
|
places: {
|
|
154
|
+
title: string | null;
|
|
154
155
|
location: {
|
|
155
156
|
lat: number | null;
|
|
156
157
|
lng: number | null;
|
|
157
158
|
} | null;
|
|
158
|
-
title: string | null;
|
|
159
159
|
url: string | null;
|
|
160
|
-
website: string | null;
|
|
161
160
|
phone: string | null;
|
|
162
161
|
rating: number | null;
|
|
163
162
|
category: string | null;
|
|
164
163
|
address: string | null;
|
|
164
|
+
website: string | null;
|
|
165
165
|
placeId: string | null;
|
|
166
166
|
reviewsCount: number | null;
|
|
167
167
|
openingHours: {
|
|
@@ -183,21 +183,21 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
183
183
|
}[];
|
|
184
184
|
totalPlaces: number;
|
|
185
185
|
}, {
|
|
186
|
-
operation: "search";
|
|
187
186
|
success: boolean;
|
|
188
187
|
error: string;
|
|
188
|
+
operation: "search";
|
|
189
189
|
places: {
|
|
190
|
+
title: string | null;
|
|
190
191
|
location: {
|
|
191
192
|
lat: number | null;
|
|
192
193
|
lng: number | null;
|
|
193
194
|
} | null;
|
|
194
|
-
title: string | null;
|
|
195
195
|
url: string | null;
|
|
196
|
-
website: string | null;
|
|
197
196
|
phone: string | null;
|
|
198
197
|
rating: number | null;
|
|
199
198
|
category: string | null;
|
|
200
199
|
address: string | null;
|
|
200
|
+
website: string | null;
|
|
201
201
|
placeId: string | null;
|
|
202
202
|
reviewsCount: number | null;
|
|
203
203
|
openingHours: {
|
|
@@ -235,15 +235,15 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
235
235
|
operation: "search";
|
|
236
236
|
queries: string[];
|
|
237
237
|
location?: string | undefined;
|
|
238
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
239
238
|
limit?: number | undefined;
|
|
239
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
240
240
|
language?: string | undefined;
|
|
241
241
|
}, {
|
|
242
242
|
operation: "search";
|
|
243
243
|
queries: string[];
|
|
244
244
|
location?: string | undefined;
|
|
245
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
246
245
|
limit?: number | undefined;
|
|
246
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
247
247
|
language?: string | undefined;
|
|
248
248
|
}>;
|
|
249
249
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -305,17 +305,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
305
305
|
imageUrls: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
306
306
|
additionalInfo: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
|
+
title: string | null;
|
|
308
309
|
location: {
|
|
309
310
|
lat: number | null;
|
|
310
311
|
lng: number | null;
|
|
311
312
|
} | null;
|
|
312
|
-
title: string | null;
|
|
313
313
|
url: string | null;
|
|
314
|
-
website: string | null;
|
|
315
314
|
phone: string | null;
|
|
316
315
|
rating: number | null;
|
|
317
316
|
category: string | null;
|
|
318
317
|
address: string | null;
|
|
318
|
+
website: string | null;
|
|
319
319
|
placeId: string | null;
|
|
320
320
|
reviewsCount: number | null;
|
|
321
321
|
openingHours: {
|
|
@@ -335,17 +335,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
335
335
|
}[] | null;
|
|
336
336
|
imageUrls: string[] | null;
|
|
337
337
|
}, {
|
|
338
|
+
title: string | null;
|
|
338
339
|
location: {
|
|
339
340
|
lat: number | null;
|
|
340
341
|
lng: number | null;
|
|
341
342
|
} | null;
|
|
342
|
-
title: string | null;
|
|
343
343
|
url: string | null;
|
|
344
|
-
website: string | null;
|
|
345
344
|
phone: string | null;
|
|
346
345
|
rating: number | null;
|
|
347
346
|
category: string | null;
|
|
348
347
|
address: string | null;
|
|
348
|
+
website: string | null;
|
|
349
349
|
placeId: string | null;
|
|
350
350
|
reviewsCount: number | null;
|
|
351
351
|
openingHours: {
|
|
@@ -369,21 +369,21 @@ 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";
|
|
373
372
|
success: boolean;
|
|
374
373
|
error: string;
|
|
374
|
+
operation: "search";
|
|
375
375
|
places: {
|
|
376
|
+
title: string | null;
|
|
376
377
|
location: {
|
|
377
378
|
lat: number | null;
|
|
378
379
|
lng: number | null;
|
|
379
380
|
} | null;
|
|
380
|
-
title: string | null;
|
|
381
381
|
url: string | null;
|
|
382
|
-
website: string | null;
|
|
383
382
|
phone: string | null;
|
|
384
383
|
rating: number | null;
|
|
385
384
|
category: string | null;
|
|
386
385
|
address: string | null;
|
|
386
|
+
website: string | null;
|
|
387
387
|
placeId: string | null;
|
|
388
388
|
reviewsCount: number | null;
|
|
389
389
|
openingHours: {
|
|
@@ -405,21 +405,21 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
405
405
|
}[];
|
|
406
406
|
totalPlaces: number;
|
|
407
407
|
}, {
|
|
408
|
-
operation: "search";
|
|
409
408
|
success: boolean;
|
|
410
409
|
error: string;
|
|
410
|
+
operation: "search";
|
|
411
411
|
places: {
|
|
412
|
+
title: string | null;
|
|
412
413
|
location: {
|
|
413
414
|
lat: number | null;
|
|
414
415
|
lng: number | null;
|
|
415
416
|
} | null;
|
|
416
|
-
title: string | null;
|
|
417
417
|
url: string | null;
|
|
418
|
-
website: string | null;
|
|
419
418
|
phone: string | null;
|
|
420
419
|
rating: number | null;
|
|
421
420
|
category: string | null;
|
|
422
421
|
address: string | null;
|
|
422
|
+
website: string | null;
|
|
423
423
|
placeId: string | null;
|
|
424
424
|
reviewsCount: number | null;
|
|
425
425
|
openingHours: {
|
|
@@ -69,14 +69,14 @@ declare const InstagramToolParamsSchema: z.ZodObject<{
|
|
|
69
69
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
70
70
|
}, "strip", z.ZodTypeAny, {
|
|
71
71
|
operation: "scrapeProfile" | "scrapeHashtag";
|
|
72
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
72
|
limit?: number | undefined;
|
|
73
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
74
74
|
profiles?: string[] | undefined;
|
|
75
75
|
hashtags?: string[] | undefined;
|
|
76
76
|
}, {
|
|
77
77
|
operation: "scrapeProfile" | "scrapeHashtag";
|
|
78
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
79
78
|
limit?: number | undefined;
|
|
79
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
80
80
|
profiles?: string[] | undefined;
|
|
81
81
|
hashtags?: string[] | undefined;
|
|
82
82
|
}>;
|
|
@@ -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";
|
|
151
150
|
success: boolean;
|
|
152
151
|
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";
|
|
179
178
|
success: boolean;
|
|
180
179
|
error: string;
|
|
180
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
181
181
|
posts: {
|
|
182
182
|
type: "image" | "video" | "carousel" | null;
|
|
183
183
|
url: string | null;
|
|
@@ -234,14 +234,14 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
|
|
|
234
234
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
235
235
|
}, "strip", z.ZodTypeAny, {
|
|
236
236
|
operation: "scrapeProfile" | "scrapeHashtag";
|
|
237
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
238
237
|
limit?: number | undefined;
|
|
238
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
239
239
|
profiles?: string[] | undefined;
|
|
240
240
|
hashtags?: string[] | undefined;
|
|
241
241
|
}, {
|
|
242
242
|
operation: "scrapeProfile" | "scrapeHashtag";
|
|
243
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
244
243
|
limit?: number | undefined;
|
|
244
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
245
245
|
profiles?: string[] | undefined;
|
|
246
246
|
hashtags?: string[] | undefined;
|
|
247
247
|
}>;
|
|
@@ -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";
|
|
316
315
|
success: boolean;
|
|
317
316
|
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";
|
|
344
343
|
success: boolean;
|
|
345
344
|
error: string;
|
|
345
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
346
346
|
posts: {
|
|
347
347
|
type: "image" | "video" | "carousel" | null;
|
|
348
348
|
url: string | null;
|
|
@@ -607,17 +607,17 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
607
607
|
}>>;
|
|
608
608
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
610
|
-
location: string | null;
|
|
611
|
-
title: string | null;
|
|
612
610
|
description: string | null;
|
|
611
|
+
title: string | null;
|
|
612
|
+
location: string | null;
|
|
613
613
|
skills: string[] | null;
|
|
614
614
|
url: string | null;
|
|
615
|
+
seniorityLevel: string | null;
|
|
615
616
|
company: {
|
|
616
617
|
name: string | null;
|
|
617
618
|
url: string | null;
|
|
618
619
|
logo: string | null;
|
|
619
620
|
} | null;
|
|
620
|
-
seniorityLevel: string | null;
|
|
621
621
|
id: string | null;
|
|
622
622
|
postedAt: string | null;
|
|
623
623
|
applyUrl: string | null;
|
|
@@ -629,17 +629,17 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
629
629
|
} | null;
|
|
630
630
|
employmentType: string | null;
|
|
631
631
|
}, {
|
|
632
|
-
location: string | null;
|
|
633
|
-
title: string | null;
|
|
634
632
|
description: string | null;
|
|
633
|
+
title: string | null;
|
|
634
|
+
location: string | null;
|
|
635
635
|
skills: string[] | null;
|
|
636
636
|
url: string | null;
|
|
637
|
+
seniorityLevel: string | null;
|
|
637
638
|
company: {
|
|
638
639
|
name: string | null;
|
|
639
640
|
url: string | null;
|
|
640
641
|
logo: string | null;
|
|
641
642
|
} | null;
|
|
642
|
-
seniorityLevel: string | null;
|
|
643
643
|
id: string | null;
|
|
644
644
|
postedAt: string | null;
|
|
645
645
|
applyUrl: string | null;
|
|
@@ -667,8 +667,8 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
667
667
|
}, "strip", z.ZodTypeAny, {
|
|
668
668
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
669
669
|
location?: string | undefined;
|
|
670
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
671
670
|
limit?: number | undefined;
|
|
671
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
672
672
|
username?: string | undefined;
|
|
673
673
|
pageNumber?: number | undefined;
|
|
674
674
|
keyword?: string | undefined;
|
|
@@ -680,8 +680,8 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
680
680
|
}, {
|
|
681
681
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
682
682
|
location?: string | undefined;
|
|
683
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
684
683
|
limit?: number | undefined;
|
|
684
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
685
685
|
username?: string | undefined;
|
|
686
686
|
pageNumber?: number | undefined;
|
|
687
687
|
keyword?: string | undefined;
|
|
@@ -734,17 +734,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
734
734
|
}>>;
|
|
735
735
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
736
736
|
}, "strip", z.ZodTypeAny, {
|
|
737
|
-
location: string | null;
|
|
738
|
-
title: string | null;
|
|
739
737
|
description: string | null;
|
|
738
|
+
title: string | null;
|
|
739
|
+
location: string | null;
|
|
740
740
|
skills: string[] | null;
|
|
741
741
|
url: string | null;
|
|
742
|
+
seniorityLevel: string | null;
|
|
742
743
|
company: {
|
|
743
744
|
name: string | null;
|
|
744
745
|
url: string | null;
|
|
745
746
|
logo: string | null;
|
|
746
747
|
} | null;
|
|
747
|
-
seniorityLevel: string | null;
|
|
748
748
|
id: string | null;
|
|
749
749
|
postedAt: string | null;
|
|
750
750
|
applyUrl: string | null;
|
|
@@ -756,17 +756,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
756
756
|
} | null;
|
|
757
757
|
employmentType: string | null;
|
|
758
758
|
}, {
|
|
759
|
-
location: string | null;
|
|
760
|
-
title: string | null;
|
|
761
759
|
description: string | null;
|
|
760
|
+
title: string | null;
|
|
761
|
+
location: string | null;
|
|
762
762
|
skills: string[] | null;
|
|
763
763
|
url: string | null;
|
|
764
|
+
seniorityLevel: string | null;
|
|
764
765
|
company: {
|
|
765
766
|
name: string | null;
|
|
766
767
|
url: string | null;
|
|
767
768
|
logo: string | null;
|
|
768
769
|
} | null;
|
|
769
|
-
seniorityLevel: string | null;
|
|
770
770
|
id: string | null;
|
|
771
771
|
postedAt: string | null;
|
|
772
772
|
applyUrl: string | 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";
|
|
1302
1301
|
success: boolean;
|
|
1303
1302
|
error: string;
|
|
1303
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1304
1304
|
posts: {
|
|
1305
1305
|
url: string | null;
|
|
1306
1306
|
text: string | null;
|
|
@@ -1398,17 +1398,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1398
1398
|
username?: string | undefined;
|
|
1399
1399
|
keyword?: string | undefined;
|
|
1400
1400
|
jobs?: {
|
|
1401
|
-
location: string | null;
|
|
1402
|
-
title: string | null;
|
|
1403
1401
|
description: string | null;
|
|
1402
|
+
title: string | null;
|
|
1403
|
+
location: string | null;
|
|
1404
1404
|
skills: string[] | null;
|
|
1405
1405
|
url: string | null;
|
|
1406
|
+
seniorityLevel: string | null;
|
|
1406
1407
|
company: {
|
|
1407
1408
|
name: string | null;
|
|
1408
1409
|
url: string | null;
|
|
1409
1410
|
logo: string | null;
|
|
1410
1411
|
} | null;
|
|
1411
|
-
seniorityLevel: string | null;
|
|
1412
1412
|
id: string | null;
|
|
1413
1413
|
postedAt: string | null;
|
|
1414
1414
|
applyUrl: string | 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";
|
|
1428
1427
|
success: boolean;
|
|
1429
1428
|
error: string;
|
|
1429
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1430
1430
|
posts: {
|
|
1431
1431
|
url: string | null;
|
|
1432
1432
|
text: string | null;
|
|
@@ -1524,17 +1524,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1524
1524
|
username?: string | undefined;
|
|
1525
1525
|
keyword?: string | undefined;
|
|
1526
1526
|
jobs?: {
|
|
1527
|
-
location: string | null;
|
|
1528
|
-
title: string | null;
|
|
1529
1527
|
description: string | null;
|
|
1528
|
+
title: string | null;
|
|
1529
|
+
location: string | null;
|
|
1530
1530
|
skills: string[] | null;
|
|
1531
1531
|
url: string | null;
|
|
1532
|
+
seniorityLevel: string | null;
|
|
1532
1533
|
company: {
|
|
1533
1534
|
name: string | null;
|
|
1534
1535
|
url: string | null;
|
|
1535
1536
|
logo: string | null;
|
|
1536
1537
|
} | null;
|
|
1537
|
-
seniorityLevel: string | null;
|
|
1538
1538
|
id: string | null;
|
|
1539
1539
|
postedAt: string | null;
|
|
1540
1540
|
applyUrl: string | null;
|
|
@@ -1590,8 +1590,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1590
1590
|
}, "strip", z.ZodTypeAny, {
|
|
1591
1591
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1592
1592
|
location?: string | undefined;
|
|
1593
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1594
1593
|
limit?: number | undefined;
|
|
1594
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1595
1595
|
username?: string | undefined;
|
|
1596
1596
|
pageNumber?: number | undefined;
|
|
1597
1597
|
keyword?: string | undefined;
|
|
@@ -1603,8 +1603,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1603
1603
|
}, {
|
|
1604
1604
|
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1605
1605
|
location?: string | undefined;
|
|
1606
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1607
1606
|
limit?: number | undefined;
|
|
1607
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1608
1608
|
username?: string | undefined;
|
|
1609
1609
|
pageNumber?: number | undefined;
|
|
1610
1610
|
keyword?: string | undefined;
|
|
@@ -1657,17 +1657,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1657
1657
|
}>>;
|
|
1658
1658
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1659
1659
|
}, "strip", z.ZodTypeAny, {
|
|
1660
|
-
location: string | null;
|
|
1661
|
-
title: string | null;
|
|
1662
1660
|
description: string | null;
|
|
1661
|
+
title: string | null;
|
|
1662
|
+
location: string | null;
|
|
1663
1663
|
skills: string[] | null;
|
|
1664
1664
|
url: string | null;
|
|
1665
|
+
seniorityLevel: string | null;
|
|
1665
1666
|
company: {
|
|
1666
1667
|
name: string | null;
|
|
1667
1668
|
url: string | null;
|
|
1668
1669
|
logo: string | null;
|
|
1669
1670
|
} | null;
|
|
1670
|
-
seniorityLevel: string | null;
|
|
1671
1671
|
id: string | null;
|
|
1672
1672
|
postedAt: string | null;
|
|
1673
1673
|
applyUrl: string | null;
|
|
@@ -1679,17 +1679,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1679
1679
|
} | null;
|
|
1680
1680
|
employmentType: string | null;
|
|
1681
1681
|
}, {
|
|
1682
|
-
location: string | null;
|
|
1683
|
-
title: string | null;
|
|
1684
1682
|
description: string | null;
|
|
1683
|
+
title: string | null;
|
|
1684
|
+
location: string | null;
|
|
1685
1685
|
skills: string[] | null;
|
|
1686
1686
|
url: string | null;
|
|
1687
|
+
seniorityLevel: string | null;
|
|
1687
1688
|
company: {
|
|
1688
1689
|
name: string | null;
|
|
1689
1690
|
url: string | null;
|
|
1690
1691
|
logo: string | null;
|
|
1691
1692
|
} | null;
|
|
1692
|
-
seniorityLevel: string | null;
|
|
1693
1693
|
id: string | null;
|
|
1694
1694
|
postedAt: string | null;
|
|
1695
1695
|
applyUrl: string | 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";
|
|
2225
2224
|
success: boolean;
|
|
2226
2225
|
error: string;
|
|
2226
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2227
2227
|
posts: {
|
|
2228
2228
|
url: string | null;
|
|
2229
2229
|
text: string | null;
|
|
@@ -2321,17 +2321,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2321
2321
|
username?: string | undefined;
|
|
2322
2322
|
keyword?: string | undefined;
|
|
2323
2323
|
jobs?: {
|
|
2324
|
-
location: string | null;
|
|
2325
|
-
title: string | null;
|
|
2326
2324
|
description: string | null;
|
|
2325
|
+
title: string | null;
|
|
2326
|
+
location: string | null;
|
|
2327
2327
|
skills: string[] | null;
|
|
2328
2328
|
url: string | null;
|
|
2329
|
+
seniorityLevel: string | null;
|
|
2329
2330
|
company: {
|
|
2330
2331
|
name: string | null;
|
|
2331
2332
|
url: string | null;
|
|
2332
2333
|
logo: string | null;
|
|
2333
2334
|
} | null;
|
|
2334
|
-
seniorityLevel: string | null;
|
|
2335
2335
|
id: string | null;
|
|
2336
2336
|
postedAt: string | null;
|
|
2337
2337
|
applyUrl: string | 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";
|
|
2351
2350
|
success: boolean;
|
|
2352
2351
|
error: string;
|
|
2352
|
+
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2353
2353
|
posts: {
|
|
2354
2354
|
url: string | null;
|
|
2355
2355
|
text: string | null;
|
|
@@ -2447,17 +2447,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2447
2447
|
username?: string | undefined;
|
|
2448
2448
|
keyword?: string | undefined;
|
|
2449
2449
|
jobs?: {
|
|
2450
|
-
location: string | null;
|
|
2451
|
-
title: string | null;
|
|
2452
2450
|
description: string | null;
|
|
2451
|
+
title: string | null;
|
|
2452
|
+
location: string | null;
|
|
2453
2453
|
skills: string[] | null;
|
|
2454
2454
|
url: string | null;
|
|
2455
|
+
seniorityLevel: string | null;
|
|
2455
2456
|
company: {
|
|
2456
2457
|
name: string | null;
|
|
2457
2458
|
url: string | null;
|
|
2458
2459
|
logo: string | null;
|
|
2459
2460
|
} | null;
|
|
2460
|
-
seniorityLevel: string | null;
|
|
2461
2461
|
id: string | null;
|
|
2462
2462
|
postedAt: string | null;
|
|
2463
2463
|
applyUrl: string | null;
|
|
@@ -13,14 +13,14 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
|
|
|
13
13
|
useCase: z.ZodString;
|
|
14
14
|
type: z.ZodString;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
|
-
name: string;
|
|
17
16
|
type: string;
|
|
17
|
+
name: string;
|
|
18
18
|
shortDescription: string;
|
|
19
19
|
useCase: string;
|
|
20
20
|
alias?: string | undefined;
|
|
21
21
|
}, {
|
|
22
|
-
name: string;
|
|
23
22
|
type: string;
|
|
23
|
+
name: string;
|
|
24
24
|
shortDescription: string;
|
|
25
25
|
useCase: string;
|
|
26
26
|
alias?: string | undefined;
|
|
@@ -29,23 +29,23 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
|
|
|
29
29
|
success: z.ZodBoolean;
|
|
30
30
|
error: z.ZodString;
|
|
31
31
|
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
totalCount: number;
|
|
32
33
|
success: boolean;
|
|
33
34
|
error: string;
|
|
34
|
-
totalCount: number;
|
|
35
35
|
bubbles: {
|
|
36
|
-
name: string;
|
|
37
36
|
type: string;
|
|
37
|
+
name: string;
|
|
38
38
|
shortDescription: string;
|
|
39
39
|
useCase: string;
|
|
40
40
|
alias?: string | undefined;
|
|
41
41
|
}[];
|
|
42
42
|
}, {
|
|
43
|
+
totalCount: number;
|
|
43
44
|
success: boolean;
|
|
44
45
|
error: string;
|
|
45
|
-
totalCount: number;
|
|
46
46
|
bubbles: {
|
|
47
|
-
name: string;
|
|
48
47
|
type: string;
|
|
48
|
+
name: string;
|
|
49
49
|
shortDescription: string;
|
|
50
50
|
useCase: string;
|
|
51
51
|
alias?: string | undefined;
|
|
@@ -62,14 +62,14 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
|
|
|
62
62
|
useCase: z.ZodString;
|
|
63
63
|
type: z.ZodString;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
|
-
name: string;
|
|
66
65
|
type: string;
|
|
66
|
+
name: string;
|
|
67
67
|
shortDescription: string;
|
|
68
68
|
useCase: string;
|
|
69
69
|
alias?: string | undefined;
|
|
70
70
|
}, {
|
|
71
|
-
name: string;
|
|
72
71
|
type: string;
|
|
72
|
+
name: string;
|
|
73
73
|
shortDescription: string;
|
|
74
74
|
useCase: string;
|
|
75
75
|
alias?: string | undefined;
|
|
@@ -78,23 +78,23 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
|
|
|
78
78
|
success: z.ZodBoolean;
|
|
79
79
|
error: z.ZodString;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
+
totalCount: number;
|
|
81
82
|
success: boolean;
|
|
82
83
|
error: string;
|
|
83
|
-
totalCount: number;
|
|
84
84
|
bubbles: {
|
|
85
|
-
name: string;
|
|
86
85
|
type: string;
|
|
86
|
+
name: string;
|
|
87
87
|
shortDescription: string;
|
|
88
88
|
useCase: string;
|
|
89
89
|
alias?: string | undefined;
|
|
90
90
|
}[];
|
|
91
91
|
}, {
|
|
92
|
+
totalCount: number;
|
|
92
93
|
success: boolean;
|
|
93
94
|
error: string;
|
|
94
|
-
totalCount: number;
|
|
95
95
|
bubbles: {
|
|
96
|
-
name: string;
|
|
97
96
|
type: string;
|
|
97
|
+
name: string;
|
|
98
98
|
shortDescription: string;
|
|
99
99
|
useCase: string;
|
|
100
100
|
alias?: string | undefined;
|