@bubblelab/bubble-core 0.1.44 → 0.1.46
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 +65 -65
- package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +5 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.js +29 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +10 -10
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +168 -168
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +32 -32
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +36 -36
- package/dist/bubbles/service-bubble/gmail.d.ts +384 -384
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +10 -10
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +160 -160
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -820,8 +820,8 @@ declare const TelegramParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
820
820
|
operation: "get_updates";
|
|
821
821
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
822
822
|
timeout?: number | undefined;
|
|
823
|
-
limit?: number | undefined;
|
|
824
823
|
offset?: number | undefined;
|
|
824
|
+
limit?: number | undefined;
|
|
825
825
|
allowed_updates?: string[] | undefined;
|
|
826
826
|
}>, z.ZodObject<{
|
|
827
827
|
operation: z.ZodLiteral<"send_chat_action">;
|
|
@@ -4681,8 +4681,8 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
4681
4681
|
operation: "get_updates";
|
|
4682
4682
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4683
4683
|
timeout?: number | undefined;
|
|
4684
|
-
limit?: number | undefined;
|
|
4685
4684
|
offset?: number | undefined;
|
|
4685
|
+
limit?: number | undefined;
|
|
4686
4686
|
allowed_updates?: string[] | undefined;
|
|
4687
4687
|
}>, z.ZodObject<{
|
|
4688
4688
|
operation: z.ZodLiteral<"send_chat_action">;
|
|
@@ -66,10 +66,10 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
title: string | null;
|
|
68
68
|
name: string | null;
|
|
69
|
-
headline: string | null;
|
|
70
|
-
location: string | null;
|
|
71
69
|
summary: string | null;
|
|
72
70
|
role: "founder" | "cxo" | "decision_maker";
|
|
71
|
+
location: string | null;
|
|
72
|
+
headline: string | null;
|
|
73
73
|
emails: string[] | null;
|
|
74
74
|
languages: string[] | null;
|
|
75
75
|
skills: string[] | null;
|
|
@@ -97,10 +97,10 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
97
97
|
}, {
|
|
98
98
|
title: string | null;
|
|
99
99
|
name: string | null;
|
|
100
|
-
headline: string | null;
|
|
101
|
-
location: string | null;
|
|
102
100
|
summary: string | null;
|
|
103
101
|
role: "founder" | "cxo" | "decision_maker";
|
|
102
|
+
location: string | null;
|
|
103
|
+
headline: string | null;
|
|
104
104
|
emails: string[] | null;
|
|
105
105
|
languages: string[] | null;
|
|
106
106
|
skills: string[] | null;
|
|
@@ -204,10 +204,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
title: string | null;
|
|
206
206
|
name: string | null;
|
|
207
|
-
headline: string | null;
|
|
208
|
-
location: string | null;
|
|
209
207
|
summary: string | null;
|
|
210
208
|
role: "founder" | "cxo" | "decision_maker";
|
|
209
|
+
location: string | null;
|
|
210
|
+
headline: string | null;
|
|
211
211
|
emails: string[] | null;
|
|
212
212
|
languages: string[] | null;
|
|
213
213
|
skills: string[] | null;
|
|
@@ -235,10 +235,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
235
235
|
}, {
|
|
236
236
|
title: string | null;
|
|
237
237
|
name: string | null;
|
|
238
|
-
headline: string | null;
|
|
239
|
-
location: string | null;
|
|
240
238
|
summary: string | null;
|
|
241
239
|
role: "founder" | "cxo" | "decision_maker";
|
|
240
|
+
location: string | null;
|
|
241
|
+
headline: string | null;
|
|
242
242
|
emails: string[] | null;
|
|
243
243
|
languages: string[] | null;
|
|
244
244
|
skills: string[] | null;
|
|
@@ -323,10 +323,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
323
323
|
contacts: {
|
|
324
324
|
title: string | null;
|
|
325
325
|
name: string | null;
|
|
326
|
-
headline: string | null;
|
|
327
|
-
location: string | null;
|
|
328
326
|
summary: string | null;
|
|
329
327
|
role: "founder" | "cxo" | "decision_maker";
|
|
328
|
+
location: string | null;
|
|
329
|
+
headline: string | null;
|
|
330
330
|
emails: string[] | null;
|
|
331
331
|
languages: string[] | null;
|
|
332
332
|
skills: string[] | null;
|
|
@@ -372,10 +372,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
372
372
|
contacts: {
|
|
373
373
|
title: string | null;
|
|
374
374
|
name: string | null;
|
|
375
|
-
headline: string | null;
|
|
376
|
-
location: string | null;
|
|
377
375
|
summary: string | null;
|
|
378
376
|
role: "founder" | "cxo" | "decision_maker";
|
|
377
|
+
location: string | null;
|
|
378
|
+
headline: string | null;
|
|
379
379
|
emails: string[] | null;
|
|
380
380
|
languages: string[] | null;
|
|
381
381
|
skills: string[] | null;
|
|
@@ -505,10 +505,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
506
|
title: string | null;
|
|
507
507
|
name: string | null;
|
|
508
|
-
headline: string | null;
|
|
509
|
-
location: string | null;
|
|
510
508
|
summary: string | null;
|
|
511
509
|
role: "founder" | "cxo" | "decision_maker";
|
|
510
|
+
location: string | null;
|
|
511
|
+
headline: string | null;
|
|
512
512
|
emails: string[] | null;
|
|
513
513
|
languages: string[] | null;
|
|
514
514
|
skills: string[] | null;
|
|
@@ -536,10 +536,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
536
536
|
}, {
|
|
537
537
|
title: string | null;
|
|
538
538
|
name: string | null;
|
|
539
|
-
headline: string | null;
|
|
540
|
-
location: string | null;
|
|
541
539
|
summary: string | null;
|
|
542
540
|
role: "founder" | "cxo" | "decision_maker";
|
|
541
|
+
location: string | null;
|
|
542
|
+
headline: string | null;
|
|
543
543
|
emails: string[] | null;
|
|
544
544
|
languages: string[] | null;
|
|
545
545
|
skills: string[] | null;
|
|
@@ -624,10 +624,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
624
624
|
contacts: {
|
|
625
625
|
title: string | null;
|
|
626
626
|
name: string | null;
|
|
627
|
-
headline: string | null;
|
|
628
|
-
location: string | null;
|
|
629
627
|
summary: string | null;
|
|
630
628
|
role: "founder" | "cxo" | "decision_maker";
|
|
629
|
+
location: string | null;
|
|
630
|
+
headline: string | null;
|
|
631
631
|
emails: string[] | null;
|
|
632
632
|
languages: string[] | null;
|
|
633
633
|
skills: string[] | null;
|
|
@@ -673,10 +673,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
673
673
|
contacts: {
|
|
674
674
|
title: string | null;
|
|
675
675
|
name: string | null;
|
|
676
|
-
headline: string | null;
|
|
677
|
-
location: string | null;
|
|
678
676
|
summary: string | null;
|
|
679
677
|
role: "founder" | "cxo" | "decision_maker";
|
|
678
|
+
location: string | null;
|
|
679
|
+
headline: string | null;
|
|
680
680
|
emails: string[] | null;
|
|
681
681
|
languages: string[] | null;
|
|
682
682
|
skills: string[] | null;
|
|
@@ -13,15 +13,15 @@ declare const GoogleMapsToolParamsSchema: z.ZodObject<{
|
|
|
13
13
|
operation: "search";
|
|
14
14
|
queries: string[];
|
|
15
15
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
16
|
-
location?: string | undefined;
|
|
17
16
|
limit?: number | undefined;
|
|
17
|
+
location?: string | undefined;
|
|
18
18
|
language?: string | undefined;
|
|
19
19
|
}, {
|
|
20
20
|
operation: "search";
|
|
21
21
|
queries: string[];
|
|
22
22
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
23
|
-
location?: string | undefined;
|
|
24
23
|
limit?: number | undefined;
|
|
24
|
+
location?: string | undefined;
|
|
25
25
|
language?: string | undefined;
|
|
26
26
|
}>;
|
|
27
27
|
declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
@@ -85,11 +85,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
title: string | null;
|
|
87
87
|
url: string | null;
|
|
88
|
+
phone: string | null;
|
|
88
89
|
location: {
|
|
89
90
|
lat: number | null;
|
|
90
91
|
lng: number | null;
|
|
91
92
|
} | null;
|
|
92
|
-
phone: string | null;
|
|
93
93
|
rating: number | null;
|
|
94
94
|
category: string | null;
|
|
95
95
|
address: string | null;
|
|
@@ -115,11 +115,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
115
115
|
}, {
|
|
116
116
|
title: string | null;
|
|
117
117
|
url: string | null;
|
|
118
|
+
phone: string | null;
|
|
118
119
|
location: {
|
|
119
120
|
lat: number | null;
|
|
120
121
|
lng: number | null;
|
|
121
122
|
} | null;
|
|
122
|
-
phone: string | null;
|
|
123
123
|
rating: number | null;
|
|
124
124
|
category: string | null;
|
|
125
125
|
address: string | null;
|
|
@@ -153,11 +153,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
153
153
|
places: {
|
|
154
154
|
title: string | null;
|
|
155
155
|
url: string | null;
|
|
156
|
+
phone: string | null;
|
|
156
157
|
location: {
|
|
157
158
|
lat: number | null;
|
|
158
159
|
lng: number | null;
|
|
159
160
|
} | null;
|
|
160
|
-
phone: string | null;
|
|
161
161
|
rating: number | null;
|
|
162
162
|
category: string | null;
|
|
163
163
|
address: string | null;
|
|
@@ -189,11 +189,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
189
189
|
places: {
|
|
190
190
|
title: string | null;
|
|
191
191
|
url: string | null;
|
|
192
|
+
phone: string | null;
|
|
192
193
|
location: {
|
|
193
194
|
lat: number | null;
|
|
194
195
|
lng: number | null;
|
|
195
196
|
} | null;
|
|
196
|
-
phone: string | null;
|
|
197
197
|
rating: number | null;
|
|
198
198
|
category: string | null;
|
|
199
199
|
address: string | null;
|
|
@@ -235,15 +235,15 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
235
235
|
operation: "search";
|
|
236
236
|
queries: string[];
|
|
237
237
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
238
|
-
location?: string | undefined;
|
|
239
238
|
limit?: number | undefined;
|
|
239
|
+
location?: string | undefined;
|
|
240
240
|
language?: string | undefined;
|
|
241
241
|
}, {
|
|
242
242
|
operation: "search";
|
|
243
243
|
queries: string[];
|
|
244
244
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
245
|
-
location?: string | undefined;
|
|
246
245
|
limit?: number | undefined;
|
|
246
|
+
location?: string | undefined;
|
|
247
247
|
language?: string | undefined;
|
|
248
248
|
}>;
|
|
249
249
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -307,11 +307,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
308
|
title: string | null;
|
|
309
309
|
url: string | null;
|
|
310
|
+
phone: string | null;
|
|
310
311
|
location: {
|
|
311
312
|
lat: number | null;
|
|
312
313
|
lng: number | null;
|
|
313
314
|
} | null;
|
|
314
|
-
phone: string | null;
|
|
315
315
|
rating: number | null;
|
|
316
316
|
category: string | null;
|
|
317
317
|
address: string | null;
|
|
@@ -337,11 +337,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
337
337
|
}, {
|
|
338
338
|
title: string | null;
|
|
339
339
|
url: string | null;
|
|
340
|
+
phone: string | null;
|
|
340
341
|
location: {
|
|
341
342
|
lat: number | null;
|
|
342
343
|
lng: number | null;
|
|
343
344
|
} | null;
|
|
344
|
-
phone: string | null;
|
|
345
345
|
rating: number | null;
|
|
346
346
|
category: string | null;
|
|
347
347
|
address: string | null;
|
|
@@ -375,11 +375,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
375
375
|
places: {
|
|
376
376
|
title: string | null;
|
|
377
377
|
url: string | null;
|
|
378
|
+
phone: string | null;
|
|
378
379
|
location: {
|
|
379
380
|
lat: number | null;
|
|
380
381
|
lng: number | null;
|
|
381
382
|
} | null;
|
|
382
|
-
phone: string | null;
|
|
383
383
|
rating: number | null;
|
|
384
384
|
category: string | null;
|
|
385
385
|
address: string | null;
|
|
@@ -411,11 +411,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
411
411
|
places: {
|
|
412
412
|
title: string | null;
|
|
413
413
|
url: string | null;
|
|
414
|
+
phone: string | null;
|
|
414
415
|
location: {
|
|
415
416
|
lat: number | null;
|
|
416
417
|
lng: number | null;
|
|
417
418
|
} | null;
|
|
418
|
-
phone: string | null;
|
|
419
419
|
rating: number | null;
|
|
420
420
|
category: string | null;
|
|
421
421
|
address: string | null;
|
|
@@ -51,15 +51,15 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
51
51
|
location: import("zod").ZodOptional<import("zod").ZodString>;
|
|
52
52
|
profile_url: import("zod").ZodString;
|
|
53
53
|
}, "strip", import("zod").ZodTypeAny, {
|
|
54
|
-
profile_url: string;
|
|
55
54
|
name: string;
|
|
56
|
-
|
|
55
|
+
profile_url: string;
|
|
57
56
|
location?: string | undefined;
|
|
57
|
+
headline?: string | undefined;
|
|
58
58
|
}, {
|
|
59
|
-
profile_url: string;
|
|
60
59
|
name: string;
|
|
61
|
-
|
|
60
|
+
profile_url: string;
|
|
62
61
|
location?: string | undefined;
|
|
62
|
+
headline?: string | undefined;
|
|
63
63
|
}>>;
|
|
64
64
|
error: import("zod").ZodString;
|
|
65
65
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -68,10 +68,10 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
68
68
|
error: string;
|
|
69
69
|
message?: string | undefined;
|
|
70
70
|
profile?: {
|
|
71
|
-
profile_url: string;
|
|
72
71
|
name: string;
|
|
73
|
-
|
|
72
|
+
profile_url: string;
|
|
74
73
|
location?: string | undefined;
|
|
74
|
+
headline?: string | undefined;
|
|
75
75
|
} | undefined;
|
|
76
76
|
}, {
|
|
77
77
|
operation: "send_connection";
|
|
@@ -79,10 +79,10 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
79
79
|
error: string;
|
|
80
80
|
message?: string | undefined;
|
|
81
81
|
profile?: {
|
|
82
|
-
profile_url: string;
|
|
83
82
|
name: string;
|
|
84
|
-
|
|
83
|
+
profile_url: string;
|
|
85
84
|
location?: string | undefined;
|
|
85
|
+
headline?: string | undefined;
|
|
86
86
|
} | undefined;
|
|
87
87
|
}>;
|
|
88
88
|
static readonly shortDescription = "LinkedIn connection automation - send connection requests with optional notes";
|
package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts
CHANGED
|
@@ -9,13 +9,13 @@ export declare const ProfileInfoSchema: z.ZodObject<{
|
|
|
9
9
|
location: z.ZodOptional<z.ZodString>;
|
|
10
10
|
profile_url: z.ZodString;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
profile_url: string;
|
|
13
12
|
name: string;
|
|
13
|
+
profile_url: string;
|
|
14
14
|
headline?: string | undefined;
|
|
15
15
|
location?: string | undefined;
|
|
16
16
|
}, {
|
|
17
|
-
profile_url: string;
|
|
18
17
|
name: string;
|
|
18
|
+
profile_url: string;
|
|
19
19
|
headline?: string | undefined;
|
|
20
20
|
location?: string | undefined;
|
|
21
21
|
}>;
|
|
@@ -53,13 +53,13 @@ export declare const LinkedInConnectionToolResultSchema: z.ZodObject<{
|
|
|
53
53
|
location: z.ZodOptional<z.ZodString>;
|
|
54
54
|
profile_url: z.ZodString;
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
|
56
|
-
profile_url: string;
|
|
57
56
|
name: string;
|
|
57
|
+
profile_url: string;
|
|
58
58
|
headline?: string | undefined;
|
|
59
59
|
location?: string | undefined;
|
|
60
60
|
}, {
|
|
61
|
-
profile_url: string;
|
|
62
61
|
name: string;
|
|
62
|
+
profile_url: string;
|
|
63
63
|
headline?: string | undefined;
|
|
64
64
|
location?: string | undefined;
|
|
65
65
|
}>>;
|
|
@@ -70,8 +70,8 @@ export declare const LinkedInConnectionToolResultSchema: z.ZodObject<{
|
|
|
70
70
|
error: string;
|
|
71
71
|
message?: string | undefined;
|
|
72
72
|
profile?: {
|
|
73
|
-
profile_url: string;
|
|
74
73
|
name: string;
|
|
74
|
+
profile_url: string;
|
|
75
75
|
headline?: string | undefined;
|
|
76
76
|
location?: string | undefined;
|
|
77
77
|
} | undefined;
|
|
@@ -81,8 +81,8 @@ export declare const LinkedInConnectionToolResultSchema: z.ZodObject<{
|
|
|
81
81
|
error: string;
|
|
82
82
|
message?: string | undefined;
|
|
83
83
|
profile?: {
|
|
84
|
-
profile_url: string;
|
|
85
84
|
name: string;
|
|
85
|
+
profile_url: string;
|
|
86
86
|
headline?: string | undefined;
|
|
87
87
|
location?: string | undefined;
|
|
88
88
|
} | undefined;
|