@bubblelab/bubble-core 0.1.39 → 0.1.40
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 +81 -81
- package/dist/bubbles/service-bubble/agi-inc.d.ts +114 -114
- package/dist/bubbles/service-bubble/ai-agent.d.ts +70 -70
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +5 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +122 -122
- package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +144 -144
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +51 -51
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +84 -84
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +56 -56
- package/dist/bubbles/service-bubble/firecrawl.d.ts +835 -835
- package/dist/bubbles/service-bubble/followupboss.d.ts +474 -474
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +275 -275
- package/dist/bubbles/service-bubble/github.d.ts +196 -196
- package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
- package/dist/bubbles/service-bubble/google-calendar.d.ts +136 -136
- package/dist/bubbles/service-bubble/google-drive.d.ts +144 -144
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +68 -68
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- 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 +59 -59
- package/dist/bubbles/service-bubble/notion/notion.d.ts +244 -244
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +16 -16
- package/dist/bubbles/service-bubble/slack/slack.d.ts +442 -442
- package/dist/bubbles/service-bubble/storage.d.ts +60 -60
- package/dist/bubbles/service-bubble/telegram.d.ts +414 -414
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +26 -26
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +66 -66
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +422 -422
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +108 -108
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +26 -26
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +113 -113
- 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 +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +90 -90
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +6 -6
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +66 -66
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -69,13 +69,13 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
69
69
|
max_results: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
70
70
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
71
71
|
}, "strip", import("zod").ZodTypeAny, {
|
|
72
|
-
operation: "search";
|
|
73
72
|
query: string;
|
|
73
|
+
operation: "search";
|
|
74
74
|
max_results: number;
|
|
75
75
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
76
76
|
}, {
|
|
77
|
-
operation: "search";
|
|
78
77
|
query: string;
|
|
78
|
+
operation: "search";
|
|
79
79
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
80
80
|
max_results?: number | undefined;
|
|
81
81
|
}>, import("zod").ZodObject<{
|
|
@@ -113,15 +113,15 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
113
113
|
cart_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
114
114
|
error: import("zod").ZodString;
|
|
115
115
|
}, "strip", import("zod").ZodTypeAny, {
|
|
116
|
-
operation: "add_to_cart";
|
|
117
|
-
success: boolean;
|
|
118
116
|
error: string;
|
|
117
|
+
success: boolean;
|
|
118
|
+
operation: "add_to_cart";
|
|
119
119
|
message?: string | undefined;
|
|
120
120
|
cart_count?: number | undefined;
|
|
121
121
|
}, {
|
|
122
|
-
operation: "add_to_cart";
|
|
123
|
-
success: boolean;
|
|
124
122
|
error: string;
|
|
123
|
+
success: boolean;
|
|
124
|
+
operation: "add_to_cart";
|
|
125
125
|
message?: string | undefined;
|
|
126
126
|
cart_count?: number | undefined;
|
|
127
127
|
}>, import("zod").ZodObject<{
|
|
@@ -154,9 +154,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
154
154
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
155
155
|
error: import("zod").ZodString;
|
|
156
156
|
}, "strip", import("zod").ZodTypeAny, {
|
|
157
|
-
operation: "get_cart";
|
|
158
|
-
success: boolean;
|
|
159
157
|
error: string;
|
|
158
|
+
success: boolean;
|
|
159
|
+
operation: "get_cart";
|
|
160
160
|
items?: {
|
|
161
161
|
title: string;
|
|
162
162
|
price: string;
|
|
@@ -169,9 +169,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
169
169
|
total_items?: number | undefined;
|
|
170
170
|
screenshot_url?: string | undefined;
|
|
171
171
|
}, {
|
|
172
|
-
operation: "get_cart";
|
|
173
|
-
success: boolean;
|
|
174
172
|
error: string;
|
|
173
|
+
success: boolean;
|
|
174
|
+
operation: "get_cart";
|
|
175
175
|
items?: {
|
|
176
176
|
title: string;
|
|
177
177
|
price: string;
|
|
@@ -210,9 +210,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
210
210
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
211
211
|
error: import("zod").ZodString;
|
|
212
212
|
}, "strip", import("zod").ZodTypeAny, {
|
|
213
|
-
operation: "checkout";
|
|
214
|
-
success: boolean;
|
|
215
213
|
error: string;
|
|
214
|
+
success: boolean;
|
|
215
|
+
operation: "checkout";
|
|
216
216
|
items?: {
|
|
217
217
|
title: string;
|
|
218
218
|
price?: string | undefined;
|
|
@@ -228,9 +228,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
228
228
|
shipping_address?: string | undefined;
|
|
229
229
|
payment_method?: string | undefined;
|
|
230
230
|
}, {
|
|
231
|
-
operation: "checkout";
|
|
232
|
-
success: boolean;
|
|
233
231
|
error: string;
|
|
232
|
+
success: boolean;
|
|
233
|
+
operation: "checkout";
|
|
234
234
|
items?: {
|
|
235
235
|
title: string;
|
|
236
236
|
price?: string | undefined;
|
|
@@ -279,9 +279,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
279
279
|
total_results: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
280
280
|
error: import("zod").ZodString;
|
|
281
281
|
}, "strip", import("zod").ZodTypeAny, {
|
|
282
|
-
operation: "search";
|
|
283
|
-
success: boolean;
|
|
284
282
|
error: string;
|
|
283
|
+
success: boolean;
|
|
284
|
+
operation: "search";
|
|
285
285
|
results?: {
|
|
286
286
|
title: string;
|
|
287
287
|
url: string;
|
|
@@ -294,9 +294,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
294
294
|
}[] | undefined;
|
|
295
295
|
total_results?: number | undefined;
|
|
296
296
|
}, {
|
|
297
|
-
operation: "search";
|
|
298
|
-
success: boolean;
|
|
299
297
|
error: string;
|
|
298
|
+
success: boolean;
|
|
299
|
+
operation: "search";
|
|
300
300
|
results?: {
|
|
301
301
|
title: string;
|
|
302
302
|
url: string;
|
|
@@ -347,9 +347,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
347
347
|
}>>;
|
|
348
348
|
error: import("zod").ZodString;
|
|
349
349
|
}, "strip", import("zod").ZodTypeAny, {
|
|
350
|
-
operation: "get_product";
|
|
351
|
-
success: boolean;
|
|
352
350
|
error: string;
|
|
351
|
+
success: boolean;
|
|
352
|
+
operation: "get_product";
|
|
353
353
|
product?: {
|
|
354
354
|
title: string;
|
|
355
355
|
url: string;
|
|
@@ -363,9 +363,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
363
363
|
availability?: string | undefined;
|
|
364
364
|
} | undefined;
|
|
365
365
|
}, {
|
|
366
|
-
operation: "get_product";
|
|
367
|
-
success: boolean;
|
|
368
366
|
error: string;
|
|
367
|
+
success: boolean;
|
|
368
|
+
operation: "get_product";
|
|
369
369
|
product?: {
|
|
370
370
|
title: string;
|
|
371
371
|
url: string;
|
|
@@ -384,14 +384,14 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
384
384
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
385
385
|
error: import("zod").ZodString;
|
|
386
386
|
}, "strip", import("zod").ZodTypeAny, {
|
|
387
|
-
operation: "screenshot";
|
|
388
|
-
success: boolean;
|
|
389
387
|
error: string;
|
|
388
|
+
success: boolean;
|
|
389
|
+
operation: "screenshot";
|
|
390
390
|
screenshot_url?: string | undefined;
|
|
391
391
|
}, {
|
|
392
|
-
operation: "screenshot";
|
|
393
|
-
success: boolean;
|
|
394
392
|
error: string;
|
|
393
|
+
success: boolean;
|
|
394
|
+
operation: "screenshot";
|
|
395
395
|
screenshot_url?: string | undefined;
|
|
396
396
|
}>]>;
|
|
397
397
|
static readonly shortDescription = "Amazon shopping automation - add to cart, view cart, checkout, search products";
|
|
@@ -119,8 +119,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
119
119
|
error: z.ZodString;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
121
|
valid: boolean;
|
|
122
|
-
success: boolean;
|
|
123
122
|
error: string;
|
|
123
|
+
success: boolean;
|
|
124
124
|
metadata: {
|
|
125
125
|
strictMode: boolean;
|
|
126
126
|
validatedAt: string;
|
|
@@ -144,8 +144,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
144
144
|
bubbleCount?: number | undefined;
|
|
145
145
|
}, {
|
|
146
146
|
valid: boolean;
|
|
147
|
-
success: boolean;
|
|
148
147
|
error: string;
|
|
148
|
+
success: boolean;
|
|
149
149
|
metadata: {
|
|
150
150
|
strictMode: boolean;
|
|
151
151
|
validatedAt: string;
|
|
@@ -268,8 +268,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
268
268
|
error: z.ZodString;
|
|
269
269
|
}, "strip", z.ZodTypeAny, {
|
|
270
270
|
valid: boolean;
|
|
271
|
-
success: boolean;
|
|
272
271
|
error: string;
|
|
272
|
+
success: boolean;
|
|
273
273
|
metadata: {
|
|
274
274
|
strictMode: boolean;
|
|
275
275
|
validatedAt: string;
|
|
@@ -293,8 +293,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
293
293
|
bubbleCount?: number | undefined;
|
|
294
294
|
}, {
|
|
295
295
|
valid: boolean;
|
|
296
|
-
success: boolean;
|
|
297
296
|
error: string;
|
|
297
|
+
success: boolean;
|
|
298
298
|
metadata: {
|
|
299
299
|
strictMode: boolean;
|
|
300
300
|
validatedAt: string;
|
|
@@ -139,8 +139,8 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
|
|
|
139
139
|
success: z.ZodBoolean;
|
|
140
140
|
error: z.ZodString;
|
|
141
141
|
}, "strip", z.ZodTypeAny, {
|
|
142
|
-
success: boolean;
|
|
143
142
|
error: string;
|
|
143
|
+
success: boolean;
|
|
144
144
|
metadata: {
|
|
145
145
|
colorScheme: string;
|
|
146
146
|
generatedAt: string;
|
|
@@ -160,8 +160,8 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
|
|
|
160
160
|
filePath?: string | undefined;
|
|
161
161
|
fileExists?: boolean | undefined;
|
|
162
162
|
}, {
|
|
163
|
-
success: boolean;
|
|
164
163
|
error: string;
|
|
164
|
+
success: boolean;
|
|
165
165
|
metadata: {
|
|
166
166
|
colorScheme: string;
|
|
167
167
|
generatedAt: string;
|
|
@@ -324,8 +324,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
|
|
|
324
324
|
success: z.ZodBoolean;
|
|
325
325
|
error: z.ZodString;
|
|
326
326
|
}, "strip", z.ZodTypeAny, {
|
|
327
|
-
success: boolean;
|
|
328
327
|
error: string;
|
|
328
|
+
success: boolean;
|
|
329
329
|
metadata: {
|
|
330
330
|
colorScheme: string;
|
|
331
331
|
generatedAt: string;
|
|
@@ -345,8 +345,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
|
|
|
345
345
|
filePath?: string | undefined;
|
|
346
346
|
fileExists?: boolean | undefined;
|
|
347
347
|
}, {
|
|
348
|
-
success: boolean;
|
|
349
348
|
error: string;
|
|
349
|
+
success: boolean;
|
|
350
350
|
metadata: {
|
|
351
351
|
colorScheme: string;
|
|
352
352
|
generatedAt: string;
|
|
@@ -73,8 +73,8 @@ declare const EditBubbleFlowToolResultSchema: z.ZodObject<{
|
|
|
73
73
|
success: z.ZodBoolean;
|
|
74
74
|
error: z.ZodString;
|
|
75
75
|
}, "strip", z.ZodTypeAny, {
|
|
76
|
-
success: boolean;
|
|
77
76
|
error: string;
|
|
77
|
+
success: boolean;
|
|
78
78
|
metadata: {
|
|
79
79
|
originalLength: number;
|
|
80
80
|
morphModel: string;
|
|
@@ -85,8 +85,8 @@ declare const EditBubbleFlowToolResultSchema: z.ZodObject<{
|
|
|
85
85
|
applied: boolean;
|
|
86
86
|
diff?: string | undefined;
|
|
87
87
|
}, {
|
|
88
|
-
success: boolean;
|
|
89
88
|
error: string;
|
|
89
|
+
success: boolean;
|
|
90
90
|
metadata: {
|
|
91
91
|
originalLength: number;
|
|
92
92
|
morphModel: string;
|
|
@@ -152,8 +152,8 @@ export declare class EditBubbleFlowTool extends ToolBubble<EditBubbleFlowToolPar
|
|
|
152
152
|
success: z.ZodBoolean;
|
|
153
153
|
error: z.ZodString;
|
|
154
154
|
}, "strip", z.ZodTypeAny, {
|
|
155
|
-
success: boolean;
|
|
156
155
|
error: string;
|
|
156
|
+
success: boolean;
|
|
157
157
|
metadata: {
|
|
158
158
|
originalLength: number;
|
|
159
159
|
morphModel: string;
|
|
@@ -164,8 +164,8 @@ export declare class EditBubbleFlowTool extends ToolBubble<EditBubbleFlowToolPar
|
|
|
164
164
|
applied: boolean;
|
|
165
165
|
diff?: string | undefined;
|
|
166
166
|
}, {
|
|
167
|
-
success: boolean;
|
|
168
167
|
error: string;
|
|
168
|
+
success: boolean;
|
|
169
169
|
metadata: {
|
|
170
170
|
originalLength: number;
|
|
171
171
|
morphModel: string;
|
|
@@ -66,12 +66,13 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
title: string | null;
|
|
68
68
|
name: string | null;
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
summary: string | null;
|
|
70
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
71
71
|
location: string | null;
|
|
72
|
-
|
|
72
|
+
headline: string | null;
|
|
73
|
+
emails: string[] | null;
|
|
73
74
|
languages: string[] | null;
|
|
74
|
-
|
|
75
|
+
skills: string[] | null;
|
|
75
76
|
education: {
|
|
76
77
|
instituteName: string | null;
|
|
77
78
|
degreeName: string | null;
|
|
@@ -80,7 +81,6 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
80
81
|
linkedinUrl: string | null;
|
|
81
82
|
profilePictureUrl: string | null;
|
|
82
83
|
twitterHandle: string | null;
|
|
83
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
84
84
|
currentEmployment: {
|
|
85
85
|
description: string | null;
|
|
86
86
|
title: string | null;
|
|
@@ -97,12 +97,13 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
97
97
|
}, {
|
|
98
98
|
title: string | null;
|
|
99
99
|
name: string | null;
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
summary: string | null;
|
|
101
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
102
102
|
location: string | null;
|
|
103
|
-
|
|
103
|
+
headline: string | null;
|
|
104
|
+
emails: string[] | null;
|
|
104
105
|
languages: string[] | null;
|
|
105
|
-
|
|
106
|
+
skills: string[] | null;
|
|
106
107
|
education: {
|
|
107
108
|
instituteName: string | null;
|
|
108
109
|
degreeName: string | null;
|
|
@@ -111,7 +112,6 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
111
112
|
linkedinUrl: string | null;
|
|
112
113
|
profilePictureUrl: string | null;
|
|
113
114
|
twitterHandle: string | null;
|
|
114
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
115
115
|
currentEmployment: {
|
|
116
116
|
description: string | null;
|
|
117
117
|
title: string | null;
|
|
@@ -132,12 +132,12 @@ declare const CompanyEnrichmentToolParamsSchema: z.ZodObject<{
|
|
|
132
132
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
133
133
|
}, "strip", z.ZodTypeAny, {
|
|
134
134
|
companyIdentifier: string;
|
|
135
|
-
limit?: number | undefined;
|
|
136
135
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
136
|
+
limit?: number | undefined;
|
|
137
137
|
}, {
|
|
138
138
|
companyIdentifier: string;
|
|
139
|
-
limit?: number | undefined;
|
|
140
139
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
140
|
+
limit?: number | undefined;
|
|
141
141
|
}>;
|
|
142
142
|
declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
143
143
|
contacts: z.ZodArray<z.ZodObject<{
|
|
@@ -204,12 +204,13 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
title: string | null;
|
|
206
206
|
name: string | null;
|
|
207
|
-
|
|
208
|
-
|
|
207
|
+
summary: string | null;
|
|
208
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
209
209
|
location: string | null;
|
|
210
|
-
|
|
210
|
+
headline: string | null;
|
|
211
|
+
emails: string[] | null;
|
|
211
212
|
languages: string[] | null;
|
|
212
|
-
|
|
213
|
+
skills: string[] | null;
|
|
213
214
|
education: {
|
|
214
215
|
instituteName: string | null;
|
|
215
216
|
degreeName: string | null;
|
|
@@ -218,7 +219,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
218
219
|
linkedinUrl: string | null;
|
|
219
220
|
profilePictureUrl: string | null;
|
|
220
221
|
twitterHandle: string | null;
|
|
221
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
222
222
|
currentEmployment: {
|
|
223
223
|
description: string | null;
|
|
224
224
|
title: string | null;
|
|
@@ -235,12 +235,13 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
235
235
|
}, {
|
|
236
236
|
title: string | null;
|
|
237
237
|
name: string | null;
|
|
238
|
-
|
|
239
|
-
|
|
238
|
+
summary: string | null;
|
|
239
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
240
240
|
location: string | null;
|
|
241
|
-
|
|
241
|
+
headline: string | null;
|
|
242
|
+
emails: string[] | null;
|
|
242
243
|
languages: string[] | null;
|
|
243
|
-
|
|
244
|
+
skills: string[] | null;
|
|
244
245
|
education: {
|
|
245
246
|
instituteName: string | null;
|
|
246
247
|
degreeName: string | null;
|
|
@@ -249,7 +250,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
249
250
|
linkedinUrl: string | null;
|
|
250
251
|
profilePictureUrl: string | null;
|
|
251
252
|
twitterHandle: string | null;
|
|
252
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
253
253
|
currentEmployment: {
|
|
254
254
|
description: string | null;
|
|
255
255
|
title: string | null;
|
|
@@ -280,8 +280,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
280
280
|
description: string | null;
|
|
281
281
|
name: string | null;
|
|
282
282
|
website: string | null;
|
|
283
|
-
headcount: number | null;
|
|
284
283
|
industry: string | null;
|
|
284
|
+
headcount: number | null;
|
|
285
285
|
linkedinUrl: string | null;
|
|
286
286
|
hqCity: string | null;
|
|
287
287
|
hqCountry: string | null;
|
|
@@ -292,8 +292,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
292
292
|
description: string | null;
|
|
293
293
|
name: string | null;
|
|
294
294
|
website: string | null;
|
|
295
|
-
headcount: number | null;
|
|
296
295
|
industry: string | null;
|
|
296
|
+
headcount: number | null;
|
|
297
297
|
linkedinUrl: string | null;
|
|
298
298
|
hqCity: string | null;
|
|
299
299
|
hqCountry: string | null;
|
|
@@ -305,13 +305,14 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
305
305
|
success: z.ZodBoolean;
|
|
306
306
|
error: z.ZodString;
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
|
+
error: string;
|
|
308
309
|
success: boolean;
|
|
309
310
|
company: {
|
|
310
311
|
description: string | null;
|
|
311
312
|
name: string | null;
|
|
312
313
|
website: string | null;
|
|
313
|
-
headcount: number | null;
|
|
314
314
|
industry: string | null;
|
|
315
|
+
headcount: number | null;
|
|
315
316
|
linkedinUrl: string | null;
|
|
316
317
|
hqCity: string | null;
|
|
317
318
|
hqCountry: string | null;
|
|
@@ -319,16 +320,16 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
319
320
|
fundingStage: string | null;
|
|
320
321
|
totalFunding: string | null;
|
|
321
322
|
} | null;
|
|
322
|
-
error: string;
|
|
323
323
|
contacts: {
|
|
324
324
|
title: string | null;
|
|
325
325
|
name: string | null;
|
|
326
|
-
|
|
327
|
-
|
|
326
|
+
summary: string | null;
|
|
327
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
328
328
|
location: string | null;
|
|
329
|
-
|
|
329
|
+
headline: string | null;
|
|
330
|
+
emails: string[] | null;
|
|
330
331
|
languages: string[] | null;
|
|
331
|
-
|
|
332
|
+
skills: string[] | null;
|
|
332
333
|
education: {
|
|
333
334
|
instituteName: string | null;
|
|
334
335
|
degreeName: string | null;
|
|
@@ -337,7 +338,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
337
338
|
linkedinUrl: string | null;
|
|
338
339
|
profilePictureUrl: string | null;
|
|
339
340
|
twitterHandle: string | null;
|
|
340
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
341
341
|
currentEmployment: {
|
|
342
342
|
description: string | null;
|
|
343
343
|
title: string | null;
|
|
@@ -354,13 +354,14 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
354
354
|
}[];
|
|
355
355
|
totalContacts: number;
|
|
356
356
|
}, {
|
|
357
|
+
error: string;
|
|
357
358
|
success: boolean;
|
|
358
359
|
company: {
|
|
359
360
|
description: string | null;
|
|
360
361
|
name: string | null;
|
|
361
362
|
website: string | null;
|
|
362
|
-
headcount: number | null;
|
|
363
363
|
industry: string | null;
|
|
364
|
+
headcount: number | null;
|
|
364
365
|
linkedinUrl: string | null;
|
|
365
366
|
hqCity: string | null;
|
|
366
367
|
hqCountry: string | null;
|
|
@@ -368,16 +369,16 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
368
369
|
fundingStage: string | null;
|
|
369
370
|
totalFunding: string | null;
|
|
370
371
|
} | null;
|
|
371
|
-
error: string;
|
|
372
372
|
contacts: {
|
|
373
373
|
title: string | null;
|
|
374
374
|
name: string | null;
|
|
375
|
-
|
|
376
|
-
|
|
375
|
+
summary: string | null;
|
|
376
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
377
377
|
location: string | null;
|
|
378
|
-
|
|
378
|
+
headline: string | null;
|
|
379
|
+
emails: string[] | null;
|
|
379
380
|
languages: string[] | null;
|
|
380
|
-
|
|
381
|
+
skills: string[] | null;
|
|
381
382
|
education: {
|
|
382
383
|
instituteName: string | null;
|
|
383
384
|
degreeName: string | null;
|
|
@@ -386,7 +387,6 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
386
387
|
linkedinUrl: string | null;
|
|
387
388
|
profilePictureUrl: string | null;
|
|
388
389
|
twitterHandle: string | null;
|
|
389
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
390
390
|
currentEmployment: {
|
|
391
391
|
description: string | null;
|
|
392
392
|
title: string | null;
|
|
@@ -433,12 +433,12 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
433
433
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
434
434
|
}, "strip", z.ZodTypeAny, {
|
|
435
435
|
companyIdentifier: string;
|
|
436
|
-
limit?: number | undefined;
|
|
437
436
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
437
|
+
limit?: number | undefined;
|
|
438
438
|
}, {
|
|
439
439
|
companyIdentifier: string;
|
|
440
|
-
limit?: number | undefined;
|
|
441
440
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
441
|
+
limit?: number | undefined;
|
|
442
442
|
}>;
|
|
443
443
|
static readonly resultSchema: z.ZodObject<{
|
|
444
444
|
contacts: z.ZodArray<z.ZodObject<{
|
|
@@ -505,12 +505,13 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
506
|
title: string | null;
|
|
507
507
|
name: string | null;
|
|
508
|
-
|
|
509
|
-
|
|
508
|
+
summary: string | null;
|
|
509
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
510
510
|
location: string | null;
|
|
511
|
-
|
|
511
|
+
headline: string | null;
|
|
512
|
+
emails: string[] | null;
|
|
512
513
|
languages: string[] | null;
|
|
513
|
-
|
|
514
|
+
skills: string[] | null;
|
|
514
515
|
education: {
|
|
515
516
|
instituteName: string | null;
|
|
516
517
|
degreeName: string | null;
|
|
@@ -519,7 +520,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
519
520
|
linkedinUrl: string | null;
|
|
520
521
|
profilePictureUrl: string | null;
|
|
521
522
|
twitterHandle: string | null;
|
|
522
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
523
523
|
currentEmployment: {
|
|
524
524
|
description: string | null;
|
|
525
525
|
title: string | null;
|
|
@@ -536,12 +536,13 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
536
536
|
}, {
|
|
537
537
|
title: string | null;
|
|
538
538
|
name: string | null;
|
|
539
|
-
|
|
540
|
-
|
|
539
|
+
summary: string | null;
|
|
540
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
541
541
|
location: string | null;
|
|
542
|
-
|
|
542
|
+
headline: string | null;
|
|
543
|
+
emails: string[] | null;
|
|
543
544
|
languages: string[] | null;
|
|
544
|
-
|
|
545
|
+
skills: string[] | null;
|
|
545
546
|
education: {
|
|
546
547
|
instituteName: string | null;
|
|
547
548
|
degreeName: string | null;
|
|
@@ -550,7 +551,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
550
551
|
linkedinUrl: string | null;
|
|
551
552
|
profilePictureUrl: string | null;
|
|
552
553
|
twitterHandle: string | null;
|
|
553
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
554
554
|
currentEmployment: {
|
|
555
555
|
description: string | null;
|
|
556
556
|
title: string | null;
|
|
@@ -581,8 +581,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
581
581
|
description: string | null;
|
|
582
582
|
name: string | null;
|
|
583
583
|
website: string | null;
|
|
584
|
-
headcount: number | null;
|
|
585
584
|
industry: string | null;
|
|
585
|
+
headcount: number | null;
|
|
586
586
|
linkedinUrl: string | null;
|
|
587
587
|
hqCity: string | null;
|
|
588
588
|
hqCountry: string | null;
|
|
@@ -593,8 +593,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
593
593
|
description: string | null;
|
|
594
594
|
name: string | null;
|
|
595
595
|
website: string | null;
|
|
596
|
-
headcount: number | null;
|
|
597
596
|
industry: string | null;
|
|
597
|
+
headcount: number | null;
|
|
598
598
|
linkedinUrl: string | null;
|
|
599
599
|
hqCity: string | null;
|
|
600
600
|
hqCountry: string | null;
|
|
@@ -606,13 +606,14 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
606
606
|
success: z.ZodBoolean;
|
|
607
607
|
error: z.ZodString;
|
|
608
608
|
}, "strip", z.ZodTypeAny, {
|
|
609
|
+
error: string;
|
|
609
610
|
success: boolean;
|
|
610
611
|
company: {
|
|
611
612
|
description: string | null;
|
|
612
613
|
name: string | null;
|
|
613
614
|
website: string | null;
|
|
614
|
-
headcount: number | null;
|
|
615
615
|
industry: string | null;
|
|
616
|
+
headcount: number | null;
|
|
616
617
|
linkedinUrl: string | null;
|
|
617
618
|
hqCity: string | null;
|
|
618
619
|
hqCountry: string | null;
|
|
@@ -620,16 +621,16 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
620
621
|
fundingStage: string | null;
|
|
621
622
|
totalFunding: string | null;
|
|
622
623
|
} | null;
|
|
623
|
-
error: string;
|
|
624
624
|
contacts: {
|
|
625
625
|
title: string | null;
|
|
626
626
|
name: string | null;
|
|
627
|
-
|
|
628
|
-
|
|
627
|
+
summary: string | null;
|
|
628
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
629
629
|
location: string | null;
|
|
630
|
-
|
|
630
|
+
headline: string | null;
|
|
631
|
+
emails: string[] | null;
|
|
631
632
|
languages: string[] | null;
|
|
632
|
-
|
|
633
|
+
skills: string[] | null;
|
|
633
634
|
education: {
|
|
634
635
|
instituteName: string | null;
|
|
635
636
|
degreeName: string | null;
|
|
@@ -638,7 +639,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
638
639
|
linkedinUrl: string | null;
|
|
639
640
|
profilePictureUrl: string | null;
|
|
640
641
|
twitterHandle: string | null;
|
|
641
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
642
642
|
currentEmployment: {
|
|
643
643
|
description: string | null;
|
|
644
644
|
title: string | null;
|
|
@@ -655,13 +655,14 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
655
655
|
}[];
|
|
656
656
|
totalContacts: number;
|
|
657
657
|
}, {
|
|
658
|
+
error: string;
|
|
658
659
|
success: boolean;
|
|
659
660
|
company: {
|
|
660
661
|
description: string | null;
|
|
661
662
|
name: string | null;
|
|
662
663
|
website: string | null;
|
|
663
|
-
headcount: number | null;
|
|
664
664
|
industry: string | null;
|
|
665
|
+
headcount: number | null;
|
|
665
666
|
linkedinUrl: string | null;
|
|
666
667
|
hqCity: string | null;
|
|
667
668
|
hqCountry: string | null;
|
|
@@ -669,16 +670,16 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
669
670
|
fundingStage: string | null;
|
|
670
671
|
totalFunding: string | null;
|
|
671
672
|
} | null;
|
|
672
|
-
error: string;
|
|
673
673
|
contacts: {
|
|
674
674
|
title: string | null;
|
|
675
675
|
name: string | null;
|
|
676
|
-
|
|
677
|
-
|
|
676
|
+
summary: string | null;
|
|
677
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
678
678
|
location: string | null;
|
|
679
|
-
|
|
679
|
+
headline: string | null;
|
|
680
|
+
emails: string[] | null;
|
|
680
681
|
languages: string[] | null;
|
|
681
|
-
|
|
682
|
+
skills: string[] | null;
|
|
682
683
|
education: {
|
|
683
684
|
instituteName: string | null;
|
|
684
685
|
degreeName: string | null;
|
|
@@ -687,7 +688,6 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
687
688
|
linkedinUrl: string | null;
|
|
688
689
|
profilePictureUrl: string | null;
|
|
689
690
|
twitterHandle: string | null;
|
|
690
|
-
role: "founder" | "cxo" | "decision_maker";
|
|
691
691
|
currentEmployment: {
|
|
692
692
|
description: string | null;
|
|
693
693
|
title: string | null;
|