@bubblelab/bubble-core 0.1.45 → 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 +63 -63
- package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
- package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +21 -20
- 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/crustdata/crustdata.d.ts +16 -16
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +428 -428
- package/dist/bubbles/service-bubble/followupboss.d.ts +256 -256
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +236 -236
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +10 -10
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +248 -248
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +348 -348
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +42 -42
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- 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
|
@@ -14,9 +14,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
14
14
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
operation: "getUploadUrl";
|
|
17
|
-
region: string;
|
|
18
17
|
bucketName: string;
|
|
19
18
|
fileName: string;
|
|
19
|
+
region: string;
|
|
20
20
|
expirationMinutes: number;
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
accountId?: string | undefined;
|
|
@@ -27,8 +27,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
27
27
|
bucketName: string;
|
|
28
28
|
fileName: string;
|
|
29
29
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
30
|
-
region?: string | undefined;
|
|
31
30
|
accountId?: string | undefined;
|
|
31
|
+
region?: string | undefined;
|
|
32
32
|
expirationMinutes?: number | undefined;
|
|
33
33
|
contentType?: string | undefined;
|
|
34
34
|
userId?: string | undefined;
|
|
@@ -43,9 +43,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
43
43
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
45
|
operation: "getFile";
|
|
46
|
-
region: string;
|
|
47
46
|
bucketName: string;
|
|
48
47
|
fileName: string;
|
|
48
|
+
region: string;
|
|
49
49
|
expirationMinutes: number;
|
|
50
50
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
51
51
|
accountId?: string | undefined;
|
|
@@ -55,8 +55,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
55
55
|
bucketName: string;
|
|
56
56
|
fileName: string;
|
|
57
57
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
58
|
-
region?: string | undefined;
|
|
59
58
|
accountId?: string | undefined;
|
|
59
|
+
region?: string | undefined;
|
|
60
60
|
expirationMinutes?: number | undefined;
|
|
61
61
|
userId?: string | undefined;
|
|
62
62
|
}>, z.ZodObject<{
|
|
@@ -68,9 +68,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
68
68
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
69
69
|
}, "strip", z.ZodTypeAny, {
|
|
70
70
|
operation: "deleteFile";
|
|
71
|
-
region: string;
|
|
72
71
|
bucketName: string;
|
|
73
72
|
fileName: string;
|
|
73
|
+
region: string;
|
|
74
74
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
75
75
|
accountId?: string | undefined;
|
|
76
76
|
}, {
|
|
@@ -78,8 +78,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
78
78
|
bucketName: string;
|
|
79
79
|
fileName: string;
|
|
80
80
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
81
|
-
region?: string | undefined;
|
|
82
81
|
accountId?: string | undefined;
|
|
82
|
+
region?: string | undefined;
|
|
83
83
|
}>, z.ZodObject<{
|
|
84
84
|
operation: z.ZodLiteral<"updateFile">;
|
|
85
85
|
bucketName: z.ZodDefault<z.ZodString>;
|
|
@@ -91,9 +91,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
91
91
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
92
92
|
}, "strip", z.ZodTypeAny, {
|
|
93
93
|
operation: "updateFile";
|
|
94
|
-
region: string;
|
|
95
94
|
bucketName: string;
|
|
96
95
|
fileName: string;
|
|
96
|
+
region: string;
|
|
97
97
|
fileContent: string;
|
|
98
98
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
99
|
accountId?: string | undefined;
|
|
@@ -103,9 +103,9 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
103
103
|
fileName: string;
|
|
104
104
|
fileContent: string;
|
|
105
105
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
106
|
-
region?: string | undefined;
|
|
107
106
|
bucketName?: string | undefined;
|
|
108
107
|
accountId?: string | undefined;
|
|
108
|
+
region?: string | undefined;
|
|
109
109
|
contentType?: string | undefined;
|
|
110
110
|
}>, z.ZodObject<{
|
|
111
111
|
operation: z.ZodLiteral<"getMultipleUploadUrls">;
|
|
@@ -119,8 +119,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
119
119
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
121
|
operation: "getMultipleUploadUrls";
|
|
122
|
-
region: string;
|
|
123
122
|
bucketName: string;
|
|
123
|
+
region: string;
|
|
124
124
|
expirationMinutes: number;
|
|
125
125
|
pdfFileName: string;
|
|
126
126
|
pageCount: number;
|
|
@@ -133,8 +133,8 @@ declare const StorageParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodOb
|
|
|
133
133
|
pdfFileName: string;
|
|
134
134
|
pageCount: number;
|
|
135
135
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
136
|
-
region?: string | undefined;
|
|
137
136
|
accountId?: string | undefined;
|
|
137
|
+
region?: string | undefined;
|
|
138
138
|
expirationMinutes?: number | undefined;
|
|
139
139
|
userId?: string | undefined;
|
|
140
140
|
}>]>;
|
|
@@ -294,9 +294,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
294
294
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
295
295
|
}, "strip", z.ZodTypeAny, {
|
|
296
296
|
operation: "getUploadUrl";
|
|
297
|
-
region: string;
|
|
298
297
|
bucketName: string;
|
|
299
298
|
fileName: string;
|
|
299
|
+
region: string;
|
|
300
300
|
expirationMinutes: number;
|
|
301
301
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
302
302
|
accountId?: string | undefined;
|
|
@@ -307,8 +307,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
307
307
|
bucketName: string;
|
|
308
308
|
fileName: string;
|
|
309
309
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
310
|
-
region?: string | undefined;
|
|
311
310
|
accountId?: string | undefined;
|
|
311
|
+
region?: string | undefined;
|
|
312
312
|
expirationMinutes?: number | undefined;
|
|
313
313
|
contentType?: string | undefined;
|
|
314
314
|
userId?: string | undefined;
|
|
@@ -323,9 +323,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
323
323
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
324
324
|
}, "strip", z.ZodTypeAny, {
|
|
325
325
|
operation: "getFile";
|
|
326
|
-
region: string;
|
|
327
326
|
bucketName: string;
|
|
328
327
|
fileName: string;
|
|
328
|
+
region: string;
|
|
329
329
|
expirationMinutes: number;
|
|
330
330
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
331
331
|
accountId?: string | undefined;
|
|
@@ -335,8 +335,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
335
335
|
bucketName: string;
|
|
336
336
|
fileName: string;
|
|
337
337
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
338
|
-
region?: string | undefined;
|
|
339
338
|
accountId?: string | undefined;
|
|
339
|
+
region?: string | undefined;
|
|
340
340
|
expirationMinutes?: number | undefined;
|
|
341
341
|
userId?: string | undefined;
|
|
342
342
|
}>, z.ZodObject<{
|
|
@@ -348,9 +348,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
348
348
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
349
349
|
}, "strip", z.ZodTypeAny, {
|
|
350
350
|
operation: "deleteFile";
|
|
351
|
-
region: string;
|
|
352
351
|
bucketName: string;
|
|
353
352
|
fileName: string;
|
|
353
|
+
region: string;
|
|
354
354
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
355
355
|
accountId?: string | undefined;
|
|
356
356
|
}, {
|
|
@@ -358,8 +358,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
358
358
|
bucketName: string;
|
|
359
359
|
fileName: string;
|
|
360
360
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
361
|
-
region?: string | undefined;
|
|
362
361
|
accountId?: string | undefined;
|
|
362
|
+
region?: string | undefined;
|
|
363
363
|
}>, z.ZodObject<{
|
|
364
364
|
operation: z.ZodLiteral<"updateFile">;
|
|
365
365
|
bucketName: z.ZodDefault<z.ZodString>;
|
|
@@ -371,9 +371,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
371
371
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
372
372
|
}, "strip", z.ZodTypeAny, {
|
|
373
373
|
operation: "updateFile";
|
|
374
|
-
region: string;
|
|
375
374
|
bucketName: string;
|
|
376
375
|
fileName: string;
|
|
376
|
+
region: string;
|
|
377
377
|
fileContent: string;
|
|
378
378
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
379
379
|
accountId?: string | undefined;
|
|
@@ -383,9 +383,9 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
383
383
|
fileName: string;
|
|
384
384
|
fileContent: string;
|
|
385
385
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
386
|
-
region?: string | undefined;
|
|
387
386
|
bucketName?: string | undefined;
|
|
388
387
|
accountId?: string | undefined;
|
|
388
|
+
region?: string | undefined;
|
|
389
389
|
contentType?: string | undefined;
|
|
390
390
|
}>, z.ZodObject<{
|
|
391
391
|
operation: z.ZodLiteral<"getMultipleUploadUrls">;
|
|
@@ -399,8 +399,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
399
399
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
400
400
|
}, "strip", z.ZodTypeAny, {
|
|
401
401
|
operation: "getMultipleUploadUrls";
|
|
402
|
-
region: string;
|
|
403
402
|
bucketName: string;
|
|
403
|
+
region: string;
|
|
404
404
|
expirationMinutes: number;
|
|
405
405
|
pdfFileName: string;
|
|
406
406
|
pageCount: number;
|
|
@@ -413,8 +413,8 @@ export declare class StorageBubble<T extends StorageParams = StorageParams> exte
|
|
|
413
413
|
pdfFileName: string;
|
|
414
414
|
pageCount: number;
|
|
415
415
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
416
|
-
region?: string | undefined;
|
|
417
416
|
accountId?: string | undefined;
|
|
417
|
+
region?: string | undefined;
|
|
418
418
|
expirationMinutes?: number | undefined;
|
|
419
419
|
userId?: string | undefined;
|
|
420
420
|
}>]>;
|
|
@@ -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">;
|
|
@@ -37,8 +37,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
37
37
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
38
38
|
}, "strip", import("zod").ZodTypeAny, {
|
|
39
39
|
operation: "add_to_cart";
|
|
40
|
-
quantity: number;
|
|
41
40
|
product_url: string;
|
|
41
|
+
quantity: number;
|
|
42
42
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
43
43
|
}, {
|
|
44
44
|
operation: "add_to_cart";
|
|
@@ -137,15 +137,15 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
137
137
|
}, "strip", import("zod").ZodTypeAny, {
|
|
138
138
|
title: string;
|
|
139
139
|
price: string;
|
|
140
|
-
asin: string;
|
|
141
140
|
quantity: number;
|
|
141
|
+
asin: string;
|
|
142
142
|
url?: string | undefined;
|
|
143
143
|
image?: string | undefined;
|
|
144
144
|
}, {
|
|
145
145
|
title: string;
|
|
146
146
|
price: string;
|
|
147
|
-
asin: string;
|
|
148
147
|
quantity: number;
|
|
148
|
+
asin: string;
|
|
149
149
|
url?: string | undefined;
|
|
150
150
|
image?: string | undefined;
|
|
151
151
|
}>, "many">>;
|
|
@@ -160,8 +160,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
160
160
|
items?: {
|
|
161
161
|
title: string;
|
|
162
162
|
price: string;
|
|
163
|
-
asin: string;
|
|
164
163
|
quantity: number;
|
|
164
|
+
asin: string;
|
|
165
165
|
url?: string | undefined;
|
|
166
166
|
image?: string | undefined;
|
|
167
167
|
}[] | undefined;
|
|
@@ -175,8 +175,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
175
175
|
items?: {
|
|
176
176
|
title: string;
|
|
177
177
|
price: string;
|
|
178
|
-
asin: string;
|
|
179
178
|
quantity: number;
|
|
179
|
+
asin: string;
|
|
180
180
|
url?: string | undefined;
|
|
181
181
|
image?: string | undefined;
|
|
182
182
|
}[] | undefined;
|
|
@@ -66,11 +66,11 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
title: string | null;
|
|
68
68
|
name: string | null;
|
|
69
|
-
emails: string[] | null;
|
|
70
|
-
headline: string | null;
|
|
71
|
-
location: string | null;
|
|
72
69
|
summary: string | null;
|
|
73
70
|
role: "founder" | "cxo" | "decision_maker";
|
|
71
|
+
location: string | null;
|
|
72
|
+
headline: string | null;
|
|
73
|
+
emails: string[] | null;
|
|
74
74
|
languages: string[] | null;
|
|
75
75
|
skills: string[] | null;
|
|
76
76
|
education: {
|
|
@@ -97,11 +97,11 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
97
97
|
}, {
|
|
98
98
|
title: string | null;
|
|
99
99
|
name: string | null;
|
|
100
|
-
emails: string[] | null;
|
|
101
|
-
headline: string | null;
|
|
102
|
-
location: string | null;
|
|
103
100
|
summary: string | null;
|
|
104
101
|
role: "founder" | "cxo" | "decision_maker";
|
|
102
|
+
location: string | null;
|
|
103
|
+
headline: string | null;
|
|
104
|
+
emails: string[] | null;
|
|
105
105
|
languages: string[] | null;
|
|
106
106
|
skills: string[] | null;
|
|
107
107
|
education: {
|
|
@@ -204,11 +204,11 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
title: string | null;
|
|
206
206
|
name: string | null;
|
|
207
|
-
emails: string[] | null;
|
|
208
|
-
headline: string | null;
|
|
209
|
-
location: string | null;
|
|
210
207
|
summary: string | null;
|
|
211
208
|
role: "founder" | "cxo" | "decision_maker";
|
|
209
|
+
location: string | null;
|
|
210
|
+
headline: string | null;
|
|
211
|
+
emails: string[] | null;
|
|
212
212
|
languages: string[] | null;
|
|
213
213
|
skills: string[] | null;
|
|
214
214
|
education: {
|
|
@@ -235,11 +235,11 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
235
235
|
}, {
|
|
236
236
|
title: string | null;
|
|
237
237
|
name: string | null;
|
|
238
|
-
emails: string[] | null;
|
|
239
|
-
headline: string | null;
|
|
240
|
-
location: string | null;
|
|
241
238
|
summary: string | null;
|
|
242
239
|
role: "founder" | "cxo" | "decision_maker";
|
|
240
|
+
location: string | null;
|
|
241
|
+
headline: string | null;
|
|
242
|
+
emails: string[] | null;
|
|
243
243
|
languages: string[] | null;
|
|
244
244
|
skills: string[] | null;
|
|
245
245
|
education: {
|
|
@@ -279,8 +279,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
280
|
description: string | null;
|
|
281
281
|
name: string | null;
|
|
282
|
-
industry: string | null;
|
|
283
282
|
website: string | null;
|
|
283
|
+
industry: string | null;
|
|
284
284
|
headcount: number | null;
|
|
285
285
|
linkedinUrl: string | null;
|
|
286
286
|
hqCity: string | null;
|
|
@@ -291,8 +291,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
291
291
|
}, {
|
|
292
292
|
description: string | null;
|
|
293
293
|
name: string | null;
|
|
294
|
-
industry: string | null;
|
|
295
294
|
website: string | null;
|
|
295
|
+
industry: string | null;
|
|
296
296
|
headcount: number | null;
|
|
297
297
|
linkedinUrl: string | null;
|
|
298
298
|
hqCity: string | null;
|
|
@@ -305,14 +305,29 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
305
305
|
success: z.ZodBoolean;
|
|
306
306
|
error: z.ZodString;
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
|
+
success: boolean;
|
|
309
|
+
error: string;
|
|
310
|
+
company: {
|
|
311
|
+
description: string | null;
|
|
312
|
+
name: string | null;
|
|
313
|
+
website: string | null;
|
|
314
|
+
industry: string | null;
|
|
315
|
+
headcount: number | null;
|
|
316
|
+
linkedinUrl: string | null;
|
|
317
|
+
hqCity: string | null;
|
|
318
|
+
hqCountry: string | null;
|
|
319
|
+
yearFounded: number | null;
|
|
320
|
+
fundingStage: string | null;
|
|
321
|
+
totalFunding: string | null;
|
|
322
|
+
} | null;
|
|
308
323
|
contacts: {
|
|
309
324
|
title: string | null;
|
|
310
325
|
name: string | null;
|
|
311
|
-
emails: string[] | null;
|
|
312
|
-
headline: string | null;
|
|
313
|
-
location: string | null;
|
|
314
326
|
summary: string | null;
|
|
315
327
|
role: "founder" | "cxo" | "decision_maker";
|
|
328
|
+
location: string | null;
|
|
329
|
+
headline: string | null;
|
|
330
|
+
emails: string[] | null;
|
|
316
331
|
languages: string[] | null;
|
|
317
332
|
skills: string[] | null;
|
|
318
333
|
education: {
|
|
@@ -337,13 +352,15 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
337
352
|
endDate: string | number | null;
|
|
338
353
|
}[] | null;
|
|
339
354
|
}[];
|
|
355
|
+
totalContacts: number;
|
|
356
|
+
}, {
|
|
340
357
|
success: boolean;
|
|
341
358
|
error: string;
|
|
342
359
|
company: {
|
|
343
360
|
description: string | null;
|
|
344
361
|
name: string | null;
|
|
345
|
-
industry: string | null;
|
|
346
362
|
website: string | null;
|
|
363
|
+
industry: string | null;
|
|
347
364
|
headcount: number | null;
|
|
348
365
|
linkedinUrl: string | null;
|
|
349
366
|
hqCity: string | null;
|
|
@@ -352,16 +369,14 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
352
369
|
fundingStage: string | null;
|
|
353
370
|
totalFunding: string | null;
|
|
354
371
|
} | null;
|
|
355
|
-
totalContacts: number;
|
|
356
|
-
}, {
|
|
357
372
|
contacts: {
|
|
358
373
|
title: string | null;
|
|
359
374
|
name: string | null;
|
|
360
|
-
emails: string[] | null;
|
|
361
|
-
headline: string | null;
|
|
362
|
-
location: string | null;
|
|
363
375
|
summary: string | null;
|
|
364
376
|
role: "founder" | "cxo" | "decision_maker";
|
|
377
|
+
location: string | null;
|
|
378
|
+
headline: string | null;
|
|
379
|
+
emails: string[] | null;
|
|
365
380
|
languages: string[] | null;
|
|
366
381
|
skills: string[] | null;
|
|
367
382
|
education: {
|
|
@@ -386,21 +401,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
386
401
|
endDate: string | number | null;
|
|
387
402
|
}[] | null;
|
|
388
403
|
}[];
|
|
389
|
-
success: boolean;
|
|
390
|
-
error: string;
|
|
391
|
-
company: {
|
|
392
|
-
description: string | null;
|
|
393
|
-
name: string | null;
|
|
394
|
-
industry: string | null;
|
|
395
|
-
website: string | null;
|
|
396
|
-
headcount: number | null;
|
|
397
|
-
linkedinUrl: string | null;
|
|
398
|
-
hqCity: string | null;
|
|
399
|
-
hqCountry: string | null;
|
|
400
|
-
yearFounded: number | null;
|
|
401
|
-
fundingStage: string | null;
|
|
402
|
-
totalFunding: string | null;
|
|
403
|
-
} | null;
|
|
404
404
|
totalContacts: number;
|
|
405
405
|
}>;
|
|
406
406
|
type CompanyEnrichmentToolParams = z.output<typeof CompanyEnrichmentToolParamsSchema>;
|
|
@@ -505,11 +505,11 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
506
|
title: string | null;
|
|
507
507
|
name: string | null;
|
|
508
|
-
emails: string[] | null;
|
|
509
|
-
headline: string | null;
|
|
510
|
-
location: string | null;
|
|
511
508
|
summary: string | null;
|
|
512
509
|
role: "founder" | "cxo" | "decision_maker";
|
|
510
|
+
location: string | null;
|
|
511
|
+
headline: string | null;
|
|
512
|
+
emails: string[] | null;
|
|
513
513
|
languages: string[] | null;
|
|
514
514
|
skills: string[] | null;
|
|
515
515
|
education: {
|
|
@@ -536,11 +536,11 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
536
536
|
}, {
|
|
537
537
|
title: string | null;
|
|
538
538
|
name: string | null;
|
|
539
|
-
emails: string[] | null;
|
|
540
|
-
headline: string | null;
|
|
541
|
-
location: string | null;
|
|
542
539
|
summary: string | null;
|
|
543
540
|
role: "founder" | "cxo" | "decision_maker";
|
|
541
|
+
location: string | null;
|
|
542
|
+
headline: string | null;
|
|
543
|
+
emails: string[] | null;
|
|
544
544
|
languages: string[] | null;
|
|
545
545
|
skills: string[] | null;
|
|
546
546
|
education: {
|
|
@@ -580,8 +580,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
580
580
|
}, "strip", z.ZodTypeAny, {
|
|
581
581
|
description: string | null;
|
|
582
582
|
name: string | null;
|
|
583
|
-
industry: string | null;
|
|
584
583
|
website: string | null;
|
|
584
|
+
industry: string | null;
|
|
585
585
|
headcount: number | null;
|
|
586
586
|
linkedinUrl: string | null;
|
|
587
587
|
hqCity: string | null;
|
|
@@ -592,8 +592,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
592
592
|
}, {
|
|
593
593
|
description: string | null;
|
|
594
594
|
name: string | null;
|
|
595
|
-
industry: string | null;
|
|
596
595
|
website: string | null;
|
|
596
|
+
industry: string | null;
|
|
597
597
|
headcount: number | null;
|
|
598
598
|
linkedinUrl: string | null;
|
|
599
599
|
hqCity: string | null;
|
|
@@ -606,14 +606,29 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
606
606
|
success: z.ZodBoolean;
|
|
607
607
|
error: z.ZodString;
|
|
608
608
|
}, "strip", z.ZodTypeAny, {
|
|
609
|
+
success: boolean;
|
|
610
|
+
error: string;
|
|
611
|
+
company: {
|
|
612
|
+
description: string | null;
|
|
613
|
+
name: string | null;
|
|
614
|
+
website: string | null;
|
|
615
|
+
industry: string | null;
|
|
616
|
+
headcount: number | null;
|
|
617
|
+
linkedinUrl: string | null;
|
|
618
|
+
hqCity: string | null;
|
|
619
|
+
hqCountry: string | null;
|
|
620
|
+
yearFounded: number | null;
|
|
621
|
+
fundingStage: string | null;
|
|
622
|
+
totalFunding: string | null;
|
|
623
|
+
} | null;
|
|
609
624
|
contacts: {
|
|
610
625
|
title: string | null;
|
|
611
626
|
name: string | null;
|
|
612
|
-
emails: string[] | null;
|
|
613
|
-
headline: string | null;
|
|
614
|
-
location: string | null;
|
|
615
627
|
summary: string | null;
|
|
616
628
|
role: "founder" | "cxo" | "decision_maker";
|
|
629
|
+
location: string | null;
|
|
630
|
+
headline: string | null;
|
|
631
|
+
emails: string[] | null;
|
|
617
632
|
languages: string[] | null;
|
|
618
633
|
skills: string[] | null;
|
|
619
634
|
education: {
|
|
@@ -638,13 +653,15 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
638
653
|
endDate: string | number | null;
|
|
639
654
|
}[] | null;
|
|
640
655
|
}[];
|
|
656
|
+
totalContacts: number;
|
|
657
|
+
}, {
|
|
641
658
|
success: boolean;
|
|
642
659
|
error: string;
|
|
643
660
|
company: {
|
|
644
661
|
description: string | null;
|
|
645
662
|
name: string | null;
|
|
646
|
-
industry: string | null;
|
|
647
663
|
website: string | null;
|
|
664
|
+
industry: string | null;
|
|
648
665
|
headcount: number | null;
|
|
649
666
|
linkedinUrl: string | null;
|
|
650
667
|
hqCity: string | null;
|
|
@@ -653,16 +670,14 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
653
670
|
fundingStage: string | null;
|
|
654
671
|
totalFunding: string | null;
|
|
655
672
|
} | null;
|
|
656
|
-
totalContacts: number;
|
|
657
|
-
}, {
|
|
658
673
|
contacts: {
|
|
659
674
|
title: string | null;
|
|
660
675
|
name: string | null;
|
|
661
|
-
emails: string[] | null;
|
|
662
|
-
headline: string | null;
|
|
663
|
-
location: string | null;
|
|
664
676
|
summary: string | null;
|
|
665
677
|
role: "founder" | "cxo" | "decision_maker";
|
|
678
|
+
location: string | null;
|
|
679
|
+
headline: string | null;
|
|
680
|
+
emails: string[] | null;
|
|
666
681
|
languages: string[] | null;
|
|
667
682
|
skills: string[] | null;
|
|
668
683
|
education: {
|
|
@@ -687,21 +702,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
687
702
|
endDate: string | number | null;
|
|
688
703
|
}[] | null;
|
|
689
704
|
}[];
|
|
690
|
-
success: boolean;
|
|
691
|
-
error: string;
|
|
692
|
-
company: {
|
|
693
|
-
description: string | null;
|
|
694
|
-
name: string | null;
|
|
695
|
-
industry: string | null;
|
|
696
|
-
website: string | null;
|
|
697
|
-
headcount: number | null;
|
|
698
|
-
linkedinUrl: string | null;
|
|
699
|
-
hqCity: string | null;
|
|
700
|
-
hqCountry: string | null;
|
|
701
|
-
yearFounded: number | null;
|
|
702
|
-
fundingStage: string | null;
|
|
703
|
-
totalFunding: string | null;
|
|
704
|
-
} | null;
|
|
705
705
|
totalContacts: number;
|
|
706
706
|
}>;
|
|
707
707
|
static readonly shortDescription = "Get key contacts (executives, decision makers) from any company for lead generation";
|
|
@@ -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<{
|
|
@@ -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<{
|
|
@@ -53,13 +53,13 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
53
53
|
}, "strip", import("zod").ZodTypeAny, {
|
|
54
54
|
name: string;
|
|
55
55
|
profile_url: string;
|
|
56
|
-
headline?: string | undefined;
|
|
57
56
|
location?: string | undefined;
|
|
57
|
+
headline?: string | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
name: string;
|
|
60
60
|
profile_url: string;
|
|
61
|
-
headline?: string | undefined;
|
|
62
61
|
location?: string | undefined;
|
|
62
|
+
headline?: string | undefined;
|
|
63
63
|
}>>;
|
|
64
64
|
error: import("zod").ZodString;
|
|
65
65
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -70,8 +70,8 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
70
70
|
profile?: {
|
|
71
71
|
name: string;
|
|
72
72
|
profile_url: string;
|
|
73
|
-
headline?: string | undefined;
|
|
74
73
|
location?: string | undefined;
|
|
74
|
+
headline?: string | undefined;
|
|
75
75
|
} | undefined;
|
|
76
76
|
}, {
|
|
77
77
|
operation: "send_connection";
|
|
@@ -81,8 +81,8 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
81
81
|
profile?: {
|
|
82
82
|
name: string;
|
|
83
83
|
profile_url: string;
|
|
84
|
-
headline?: string | undefined;
|
|
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";
|