@bubblelab/bubble-core 0.1.38 → 0.1.39
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 +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +88 -71
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +25 -6
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +18 -3
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +9 -5
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +23 -23
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +63 -63
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +142 -92
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +104 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.js +2 -0
- package/dist/bubbles/service-bubble/crustdata/index.js.map +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +156 -156
- package/dist/bubbles/service-bubble/followupboss.d.ts +230 -230
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +108 -108
- package/dist/bubbles/service-bubble/github.d.ts +124 -124
- package/dist/bubbles/service-bubble/gmail.d.ts +70 -70
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +58 -58
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +33 -33
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +112 -112
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +214 -214
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +42 -6
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js +18 -7
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +346 -346
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +165 -165
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +28 -13
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts +19 -0
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts.map +1 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js +268 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js.map +1 -0
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +102 -102
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +34 -34
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +56 -77
- package/package.json +2 -2
|
@@ -22,16 +22,16 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
22
22
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23
23
|
description: z.ZodNullable<z.ZodString>;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
|
-
companyName: string | null;
|
|
26
|
-
companyLinkedinUrl: string | null;
|
|
27
25
|
description: string | null;
|
|
28
26
|
title: string | null;
|
|
29
|
-
startDate: string | number | null;
|
|
30
|
-
}, {
|
|
31
27
|
companyName: string | null;
|
|
32
28
|
companyLinkedinUrl: string | null;
|
|
29
|
+
startDate: string | number | null;
|
|
30
|
+
}, {
|
|
33
31
|
description: string | null;
|
|
34
32
|
title: string | null;
|
|
33
|
+
companyName: string | null;
|
|
34
|
+
companyLinkedinUrl: string | null;
|
|
35
35
|
startDate: string | number | null;
|
|
36
36
|
}>, "many">>;
|
|
37
37
|
pastEmployment: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -40,13 +40,13 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
40
40
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
41
41
|
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
-
companyName: string | null;
|
|
44
43
|
title: string | null;
|
|
44
|
+
companyName: string | null;
|
|
45
45
|
startDate: string | number | null;
|
|
46
46
|
endDate: string | number | null;
|
|
47
47
|
}, {
|
|
48
|
-
companyName: string | null;
|
|
49
48
|
title: string | null;
|
|
49
|
+
companyName: string | null;
|
|
50
50
|
startDate: string | number | null;
|
|
51
51
|
endDate: string | number | null;
|
|
52
52
|
}>, "many">>;
|
|
@@ -65,63 +65,63 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
65
65
|
}>, "many">>;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
title: string | null;
|
|
68
|
+
name: string | null;
|
|
69
|
+
emails: string[] | null;
|
|
70
|
+
headline: string | null;
|
|
68
71
|
location: string | null;
|
|
69
72
|
skills: string[] | null;
|
|
70
73
|
languages: string[] | null;
|
|
71
|
-
name: string | null;
|
|
72
|
-
headline: string | null;
|
|
73
|
-
linkedinUrl: string | null;
|
|
74
|
-
profilePictureUrl: string | null;
|
|
75
|
-
emails: string[] | null;
|
|
76
|
-
twitterHandle: string | null;
|
|
77
74
|
summary: string | null;
|
|
78
75
|
education: {
|
|
79
76
|
instituteName: string | null;
|
|
80
77
|
degreeName: string | null;
|
|
81
78
|
fieldOfStudy: string | null;
|
|
82
79
|
}[] | null;
|
|
83
|
-
|
|
80
|
+
linkedinUrl: string | null;
|
|
81
|
+
profilePictureUrl: string | null;
|
|
82
|
+
twitterHandle: string | null;
|
|
83
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
84
84
|
currentEmployment: {
|
|
85
|
-
companyName: string | null;
|
|
86
|
-
companyLinkedinUrl: string | null;
|
|
87
85
|
description: string | null;
|
|
88
86
|
title: string | null;
|
|
87
|
+
companyName: string | null;
|
|
88
|
+
companyLinkedinUrl: string | null;
|
|
89
89
|
startDate: string | number | null;
|
|
90
90
|
}[] | null;
|
|
91
91
|
pastEmployment: {
|
|
92
|
-
companyName: string | null;
|
|
93
92
|
title: string | null;
|
|
93
|
+
companyName: string | null;
|
|
94
94
|
startDate: string | number | null;
|
|
95
95
|
endDate: string | number | null;
|
|
96
96
|
}[] | null;
|
|
97
97
|
}, {
|
|
98
98
|
title: string | null;
|
|
99
|
+
name: string | null;
|
|
100
|
+
emails: string[] | null;
|
|
101
|
+
headline: string | null;
|
|
99
102
|
location: string | null;
|
|
100
103
|
skills: string[] | null;
|
|
101
104
|
languages: string[] | null;
|
|
102
|
-
name: string | null;
|
|
103
|
-
headline: string | null;
|
|
104
|
-
linkedinUrl: string | null;
|
|
105
|
-
profilePictureUrl: string | null;
|
|
106
|
-
emails: string[] | null;
|
|
107
|
-
twitterHandle: string | null;
|
|
108
105
|
summary: string | null;
|
|
109
106
|
education: {
|
|
110
107
|
instituteName: string | null;
|
|
111
108
|
degreeName: string | null;
|
|
112
109
|
fieldOfStudy: string | null;
|
|
113
110
|
}[] | null;
|
|
114
|
-
|
|
111
|
+
linkedinUrl: string | null;
|
|
112
|
+
profilePictureUrl: string | null;
|
|
113
|
+
twitterHandle: string | null;
|
|
114
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
115
115
|
currentEmployment: {
|
|
116
|
-
companyName: string | null;
|
|
117
|
-
companyLinkedinUrl: string | null;
|
|
118
116
|
description: string | null;
|
|
119
117
|
title: string | null;
|
|
118
|
+
companyName: string | null;
|
|
119
|
+
companyLinkedinUrl: string | null;
|
|
120
120
|
startDate: string | number | null;
|
|
121
121
|
}[] | null;
|
|
122
122
|
pastEmployment: {
|
|
123
|
-
companyName: string | null;
|
|
124
123
|
title: string | null;
|
|
124
|
+
companyName: string | null;
|
|
125
125
|
startDate: string | number | null;
|
|
126
126
|
endDate: string | number | null;
|
|
127
127
|
}[] | null;
|
|
@@ -160,16 +160,16 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
160
160
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
161
161
|
description: z.ZodNullable<z.ZodString>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
|
-
companyName: string | null;
|
|
164
|
-
companyLinkedinUrl: string | null;
|
|
165
163
|
description: string | null;
|
|
166
164
|
title: string | null;
|
|
167
|
-
startDate: string | number | null;
|
|
168
|
-
}, {
|
|
169
165
|
companyName: string | null;
|
|
170
166
|
companyLinkedinUrl: string | null;
|
|
167
|
+
startDate: string | number | null;
|
|
168
|
+
}, {
|
|
171
169
|
description: string | null;
|
|
172
170
|
title: string | null;
|
|
171
|
+
companyName: string | null;
|
|
172
|
+
companyLinkedinUrl: string | null;
|
|
173
173
|
startDate: string | number | null;
|
|
174
174
|
}>, "many">>;
|
|
175
175
|
pastEmployment: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -178,13 +178,13 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
178
178
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
179
179
|
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
180
180
|
}, "strip", z.ZodTypeAny, {
|
|
181
|
-
companyName: string | null;
|
|
182
181
|
title: string | null;
|
|
182
|
+
companyName: string | null;
|
|
183
183
|
startDate: string | number | null;
|
|
184
184
|
endDate: string | number | null;
|
|
185
185
|
}, {
|
|
186
|
-
companyName: string | null;
|
|
187
186
|
title: string | null;
|
|
187
|
+
companyName: string | null;
|
|
188
188
|
startDate: string | number | null;
|
|
189
189
|
endDate: string | number | null;
|
|
190
190
|
}>, "many">>;
|
|
@@ -203,63 +203,63 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
203
203
|
}>, "many">>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
title: string | null;
|
|
206
|
+
name: string | null;
|
|
207
|
+
emails: string[] | null;
|
|
208
|
+
headline: string | null;
|
|
206
209
|
location: string | null;
|
|
207
210
|
skills: string[] | null;
|
|
208
211
|
languages: string[] | null;
|
|
209
|
-
name: string | null;
|
|
210
|
-
headline: string | null;
|
|
211
|
-
linkedinUrl: string | null;
|
|
212
|
-
profilePictureUrl: string | null;
|
|
213
|
-
emails: string[] | null;
|
|
214
|
-
twitterHandle: string | null;
|
|
215
212
|
summary: string | null;
|
|
216
213
|
education: {
|
|
217
214
|
instituteName: string | null;
|
|
218
215
|
degreeName: string | null;
|
|
219
216
|
fieldOfStudy: string | null;
|
|
220
217
|
}[] | null;
|
|
221
|
-
|
|
218
|
+
linkedinUrl: string | null;
|
|
219
|
+
profilePictureUrl: string | null;
|
|
220
|
+
twitterHandle: string | null;
|
|
221
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
222
222
|
currentEmployment: {
|
|
223
|
-
companyName: string | null;
|
|
224
|
-
companyLinkedinUrl: string | null;
|
|
225
223
|
description: string | null;
|
|
226
224
|
title: string | null;
|
|
225
|
+
companyName: string | null;
|
|
226
|
+
companyLinkedinUrl: string | null;
|
|
227
227
|
startDate: string | number | null;
|
|
228
228
|
}[] | null;
|
|
229
229
|
pastEmployment: {
|
|
230
|
-
companyName: string | null;
|
|
231
230
|
title: string | null;
|
|
231
|
+
companyName: string | null;
|
|
232
232
|
startDate: string | number | null;
|
|
233
233
|
endDate: string | number | null;
|
|
234
234
|
}[] | null;
|
|
235
235
|
}, {
|
|
236
236
|
title: string | null;
|
|
237
|
+
name: string | null;
|
|
238
|
+
emails: string[] | null;
|
|
239
|
+
headline: string | null;
|
|
237
240
|
location: string | null;
|
|
238
241
|
skills: string[] | null;
|
|
239
242
|
languages: string[] | null;
|
|
240
|
-
name: string | null;
|
|
241
|
-
headline: string | null;
|
|
242
|
-
linkedinUrl: string | null;
|
|
243
|
-
profilePictureUrl: string | null;
|
|
244
|
-
emails: string[] | null;
|
|
245
|
-
twitterHandle: string | null;
|
|
246
243
|
summary: string | null;
|
|
247
244
|
education: {
|
|
248
245
|
instituteName: string | null;
|
|
249
246
|
degreeName: string | null;
|
|
250
247
|
fieldOfStudy: string | null;
|
|
251
248
|
}[] | null;
|
|
252
|
-
|
|
249
|
+
linkedinUrl: string | null;
|
|
250
|
+
profilePictureUrl: string | null;
|
|
251
|
+
twitterHandle: string | null;
|
|
252
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
253
253
|
currentEmployment: {
|
|
254
|
-
companyName: string | null;
|
|
255
|
-
companyLinkedinUrl: string | null;
|
|
256
254
|
description: string | null;
|
|
257
255
|
title: string | null;
|
|
256
|
+
companyName: string | null;
|
|
257
|
+
companyLinkedinUrl: string | null;
|
|
258
258
|
startDate: string | number | null;
|
|
259
259
|
}[] | null;
|
|
260
260
|
pastEmployment: {
|
|
261
|
-
companyName: string | null;
|
|
262
261
|
title: string | null;
|
|
262
|
+
companyName: string | null;
|
|
263
263
|
startDate: string | number | null;
|
|
264
264
|
endDate: string | number | null;
|
|
265
265
|
}[] | null;
|
|
@@ -279,10 +279,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
280
|
description: string | null;
|
|
281
281
|
name: string | null;
|
|
282
|
-
|
|
282
|
+
website: string | null;
|
|
283
283
|
headcount: number | null;
|
|
284
284
|
industry: string | null;
|
|
285
|
-
|
|
285
|
+
linkedinUrl: string | null;
|
|
286
286
|
hqCity: string | null;
|
|
287
287
|
hqCountry: string | null;
|
|
288
288
|
yearFounded: number | null;
|
|
@@ -291,10 +291,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
291
291
|
}, {
|
|
292
292
|
description: string | null;
|
|
293
293
|
name: string | null;
|
|
294
|
-
|
|
294
|
+
website: string | null;
|
|
295
295
|
headcount: number | null;
|
|
296
296
|
industry: string | null;
|
|
297
|
-
|
|
297
|
+
linkedinUrl: string | null;
|
|
298
298
|
hqCity: string | null;
|
|
299
299
|
hqCountry: string | null;
|
|
300
300
|
yearFounded: number | null;
|
|
@@ -306,48 +306,48 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
306
306
|
error: z.ZodString;
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
308
|
success: boolean;
|
|
309
|
-
error: string;
|
|
310
309
|
company: {
|
|
311
310
|
description: string | null;
|
|
312
311
|
name: string | null;
|
|
313
|
-
|
|
312
|
+
website: string | null;
|
|
314
313
|
headcount: number | null;
|
|
315
314
|
industry: string | null;
|
|
316
|
-
|
|
315
|
+
linkedinUrl: string | null;
|
|
317
316
|
hqCity: string | null;
|
|
318
317
|
hqCountry: string | null;
|
|
319
318
|
yearFounded: number | null;
|
|
320
319
|
fundingStage: string | null;
|
|
321
320
|
totalFunding: string | null;
|
|
322
321
|
} | null;
|
|
322
|
+
error: string;
|
|
323
323
|
contacts: {
|
|
324
324
|
title: string | null;
|
|
325
|
+
name: string | null;
|
|
326
|
+
emails: string[] | null;
|
|
327
|
+
headline: string | null;
|
|
325
328
|
location: string | null;
|
|
326
329
|
skills: string[] | null;
|
|
327
330
|
languages: string[] | null;
|
|
328
|
-
name: string | null;
|
|
329
|
-
headline: string | null;
|
|
330
|
-
linkedinUrl: string | null;
|
|
331
|
-
profilePictureUrl: string | null;
|
|
332
|
-
emails: string[] | null;
|
|
333
|
-
twitterHandle: string | null;
|
|
334
331
|
summary: string | null;
|
|
335
332
|
education: {
|
|
336
333
|
instituteName: string | null;
|
|
337
334
|
degreeName: string | null;
|
|
338
335
|
fieldOfStudy: string | null;
|
|
339
336
|
}[] | null;
|
|
340
|
-
|
|
337
|
+
linkedinUrl: string | null;
|
|
338
|
+
profilePictureUrl: string | null;
|
|
339
|
+
twitterHandle: string | null;
|
|
340
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
341
341
|
currentEmployment: {
|
|
342
|
-
companyName: string | null;
|
|
343
|
-
companyLinkedinUrl: string | null;
|
|
344
342
|
description: string | null;
|
|
345
343
|
title: string | null;
|
|
344
|
+
companyName: string | null;
|
|
345
|
+
companyLinkedinUrl: string | null;
|
|
346
346
|
startDate: string | number | null;
|
|
347
347
|
}[] | null;
|
|
348
348
|
pastEmployment: {
|
|
349
|
-
companyName: string | null;
|
|
350
349
|
title: string | null;
|
|
350
|
+
companyName: string | null;
|
|
351
351
|
startDate: string | number | null;
|
|
352
352
|
endDate: string | number | null;
|
|
353
353
|
}[] | null;
|
|
@@ -355,48 +355,48 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
355
355
|
totalContacts: number;
|
|
356
356
|
}, {
|
|
357
357
|
success: boolean;
|
|
358
|
-
error: string;
|
|
359
358
|
company: {
|
|
360
359
|
description: string | null;
|
|
361
360
|
name: string | null;
|
|
362
|
-
|
|
361
|
+
website: string | null;
|
|
363
362
|
headcount: number | null;
|
|
364
363
|
industry: string | null;
|
|
365
|
-
|
|
364
|
+
linkedinUrl: string | null;
|
|
366
365
|
hqCity: string | null;
|
|
367
366
|
hqCountry: string | null;
|
|
368
367
|
yearFounded: number | null;
|
|
369
368
|
fundingStage: string | null;
|
|
370
369
|
totalFunding: string | null;
|
|
371
370
|
} | null;
|
|
371
|
+
error: string;
|
|
372
372
|
contacts: {
|
|
373
373
|
title: string | null;
|
|
374
|
+
name: string | null;
|
|
375
|
+
emails: string[] | null;
|
|
376
|
+
headline: string | null;
|
|
374
377
|
location: string | null;
|
|
375
378
|
skills: string[] | null;
|
|
376
379
|
languages: string[] | null;
|
|
377
|
-
name: string | null;
|
|
378
|
-
headline: string | null;
|
|
379
|
-
linkedinUrl: string | null;
|
|
380
|
-
profilePictureUrl: string | null;
|
|
381
|
-
emails: string[] | null;
|
|
382
|
-
twitterHandle: string | null;
|
|
383
380
|
summary: string | null;
|
|
384
381
|
education: {
|
|
385
382
|
instituteName: string | null;
|
|
386
383
|
degreeName: string | null;
|
|
387
384
|
fieldOfStudy: string | null;
|
|
388
385
|
}[] | null;
|
|
389
|
-
|
|
386
|
+
linkedinUrl: string | null;
|
|
387
|
+
profilePictureUrl: string | null;
|
|
388
|
+
twitterHandle: string | null;
|
|
389
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
390
390
|
currentEmployment: {
|
|
391
|
-
companyName: string | null;
|
|
392
|
-
companyLinkedinUrl: string | null;
|
|
393
391
|
description: string | null;
|
|
394
392
|
title: string | null;
|
|
393
|
+
companyName: string | null;
|
|
394
|
+
companyLinkedinUrl: string | null;
|
|
395
395
|
startDate: string | number | null;
|
|
396
396
|
}[] | null;
|
|
397
397
|
pastEmployment: {
|
|
398
|
-
companyName: string | null;
|
|
399
398
|
title: string | null;
|
|
399
|
+
companyName: string | null;
|
|
400
400
|
startDate: string | number | null;
|
|
401
401
|
endDate: string | number | null;
|
|
402
402
|
}[] | null;
|
|
@@ -461,16 +461,16 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
461
461
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
462
462
|
description: z.ZodNullable<z.ZodString>;
|
|
463
463
|
}, "strip", z.ZodTypeAny, {
|
|
464
|
-
companyName: string | null;
|
|
465
|
-
companyLinkedinUrl: string | null;
|
|
466
464
|
description: string | null;
|
|
467
465
|
title: string | null;
|
|
468
|
-
startDate: string | number | null;
|
|
469
|
-
}, {
|
|
470
466
|
companyName: string | null;
|
|
471
467
|
companyLinkedinUrl: string | null;
|
|
468
|
+
startDate: string | number | null;
|
|
469
|
+
}, {
|
|
472
470
|
description: string | null;
|
|
473
471
|
title: string | null;
|
|
472
|
+
companyName: string | null;
|
|
473
|
+
companyLinkedinUrl: string | null;
|
|
474
474
|
startDate: string | number | null;
|
|
475
475
|
}>, "many">>;
|
|
476
476
|
pastEmployment: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -479,13 +479,13 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
479
479
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
480
480
|
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
481
481
|
}, "strip", z.ZodTypeAny, {
|
|
482
|
-
companyName: string | null;
|
|
483
482
|
title: string | null;
|
|
483
|
+
companyName: string | null;
|
|
484
484
|
startDate: string | number | null;
|
|
485
485
|
endDate: string | number | null;
|
|
486
486
|
}, {
|
|
487
|
-
companyName: string | null;
|
|
488
487
|
title: string | null;
|
|
488
|
+
companyName: string | null;
|
|
489
489
|
startDate: string | number | null;
|
|
490
490
|
endDate: string | number | null;
|
|
491
491
|
}>, "many">>;
|
|
@@ -504,63 +504,63 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
504
504
|
}>, "many">>;
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
506
|
title: string | null;
|
|
507
|
+
name: string | null;
|
|
508
|
+
emails: string[] | null;
|
|
509
|
+
headline: string | null;
|
|
507
510
|
location: string | null;
|
|
508
511
|
skills: string[] | null;
|
|
509
512
|
languages: string[] | null;
|
|
510
|
-
name: string | null;
|
|
511
|
-
headline: string | null;
|
|
512
|
-
linkedinUrl: string | null;
|
|
513
|
-
profilePictureUrl: string | null;
|
|
514
|
-
emails: string[] | null;
|
|
515
|
-
twitterHandle: string | null;
|
|
516
513
|
summary: string | null;
|
|
517
514
|
education: {
|
|
518
515
|
instituteName: string | null;
|
|
519
516
|
degreeName: string | null;
|
|
520
517
|
fieldOfStudy: string | null;
|
|
521
518
|
}[] | null;
|
|
522
|
-
|
|
519
|
+
linkedinUrl: string | null;
|
|
520
|
+
profilePictureUrl: string | null;
|
|
521
|
+
twitterHandle: string | null;
|
|
522
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
523
523
|
currentEmployment: {
|
|
524
|
-
companyName: string | null;
|
|
525
|
-
companyLinkedinUrl: string | null;
|
|
526
524
|
description: string | null;
|
|
527
525
|
title: string | null;
|
|
526
|
+
companyName: string | null;
|
|
527
|
+
companyLinkedinUrl: string | null;
|
|
528
528
|
startDate: string | number | null;
|
|
529
529
|
}[] | null;
|
|
530
530
|
pastEmployment: {
|
|
531
|
-
companyName: string | null;
|
|
532
531
|
title: string | null;
|
|
532
|
+
companyName: string | null;
|
|
533
533
|
startDate: string | number | null;
|
|
534
534
|
endDate: string | number | null;
|
|
535
535
|
}[] | null;
|
|
536
536
|
}, {
|
|
537
537
|
title: string | null;
|
|
538
|
+
name: string | null;
|
|
539
|
+
emails: string[] | null;
|
|
540
|
+
headline: string | null;
|
|
538
541
|
location: string | null;
|
|
539
542
|
skills: string[] | null;
|
|
540
543
|
languages: string[] | null;
|
|
541
|
-
name: string | null;
|
|
542
|
-
headline: string | null;
|
|
543
|
-
linkedinUrl: string | null;
|
|
544
|
-
profilePictureUrl: string | null;
|
|
545
|
-
emails: string[] | null;
|
|
546
|
-
twitterHandle: string | null;
|
|
547
544
|
summary: string | null;
|
|
548
545
|
education: {
|
|
549
546
|
instituteName: string | null;
|
|
550
547
|
degreeName: string | null;
|
|
551
548
|
fieldOfStudy: string | null;
|
|
552
549
|
}[] | null;
|
|
553
|
-
|
|
550
|
+
linkedinUrl: string | null;
|
|
551
|
+
profilePictureUrl: string | null;
|
|
552
|
+
twitterHandle: string | null;
|
|
553
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
554
554
|
currentEmployment: {
|
|
555
|
-
companyName: string | null;
|
|
556
|
-
companyLinkedinUrl: string | null;
|
|
557
555
|
description: string | null;
|
|
558
556
|
title: string | null;
|
|
557
|
+
companyName: string | null;
|
|
558
|
+
companyLinkedinUrl: string | null;
|
|
559
559
|
startDate: string | number | null;
|
|
560
560
|
}[] | null;
|
|
561
561
|
pastEmployment: {
|
|
562
|
-
companyName: string | null;
|
|
563
562
|
title: string | null;
|
|
563
|
+
companyName: string | null;
|
|
564
564
|
startDate: string | number | null;
|
|
565
565
|
endDate: string | number | null;
|
|
566
566
|
}[] | null;
|
|
@@ -580,10 +580,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
580
580
|
}, "strip", z.ZodTypeAny, {
|
|
581
581
|
description: string | null;
|
|
582
582
|
name: string | null;
|
|
583
|
-
|
|
583
|
+
website: string | null;
|
|
584
584
|
headcount: number | null;
|
|
585
585
|
industry: string | null;
|
|
586
|
-
|
|
586
|
+
linkedinUrl: string | null;
|
|
587
587
|
hqCity: string | null;
|
|
588
588
|
hqCountry: string | null;
|
|
589
589
|
yearFounded: number | null;
|
|
@@ -592,10 +592,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
592
592
|
}, {
|
|
593
593
|
description: string | null;
|
|
594
594
|
name: string | null;
|
|
595
|
-
|
|
595
|
+
website: string | null;
|
|
596
596
|
headcount: number | null;
|
|
597
597
|
industry: string | null;
|
|
598
|
-
|
|
598
|
+
linkedinUrl: string | null;
|
|
599
599
|
hqCity: string | null;
|
|
600
600
|
hqCountry: string | null;
|
|
601
601
|
yearFounded: number | null;
|
|
@@ -607,48 +607,48 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
607
607
|
error: z.ZodString;
|
|
608
608
|
}, "strip", z.ZodTypeAny, {
|
|
609
609
|
success: boolean;
|
|
610
|
-
error: string;
|
|
611
610
|
company: {
|
|
612
611
|
description: string | null;
|
|
613
612
|
name: string | null;
|
|
614
|
-
|
|
613
|
+
website: string | null;
|
|
615
614
|
headcount: number | null;
|
|
616
615
|
industry: string | null;
|
|
617
|
-
|
|
616
|
+
linkedinUrl: string | null;
|
|
618
617
|
hqCity: string | null;
|
|
619
618
|
hqCountry: string | null;
|
|
620
619
|
yearFounded: number | null;
|
|
621
620
|
fundingStage: string | null;
|
|
622
621
|
totalFunding: string | null;
|
|
623
622
|
} | null;
|
|
623
|
+
error: string;
|
|
624
624
|
contacts: {
|
|
625
625
|
title: string | null;
|
|
626
|
+
name: string | null;
|
|
627
|
+
emails: string[] | null;
|
|
628
|
+
headline: string | null;
|
|
626
629
|
location: string | null;
|
|
627
630
|
skills: string[] | null;
|
|
628
631
|
languages: string[] | null;
|
|
629
|
-
name: string | null;
|
|
630
|
-
headline: string | null;
|
|
631
|
-
linkedinUrl: string | null;
|
|
632
|
-
profilePictureUrl: string | null;
|
|
633
|
-
emails: string[] | null;
|
|
634
|
-
twitterHandle: string | null;
|
|
635
632
|
summary: string | null;
|
|
636
633
|
education: {
|
|
637
634
|
instituteName: string | null;
|
|
638
635
|
degreeName: string | null;
|
|
639
636
|
fieldOfStudy: string | null;
|
|
640
637
|
}[] | null;
|
|
641
|
-
|
|
638
|
+
linkedinUrl: string | null;
|
|
639
|
+
profilePictureUrl: string | null;
|
|
640
|
+
twitterHandle: string | null;
|
|
641
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
642
642
|
currentEmployment: {
|
|
643
|
-
companyName: string | null;
|
|
644
|
-
companyLinkedinUrl: string | null;
|
|
645
643
|
description: string | null;
|
|
646
644
|
title: string | null;
|
|
645
|
+
companyName: string | null;
|
|
646
|
+
companyLinkedinUrl: string | null;
|
|
647
647
|
startDate: string | number | null;
|
|
648
648
|
}[] | null;
|
|
649
649
|
pastEmployment: {
|
|
650
|
-
companyName: string | null;
|
|
651
650
|
title: string | null;
|
|
651
|
+
companyName: string | null;
|
|
652
652
|
startDate: string | number | null;
|
|
653
653
|
endDate: string | number | null;
|
|
654
654
|
}[] | null;
|
|
@@ -656,48 +656,48 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
656
656
|
totalContacts: number;
|
|
657
657
|
}, {
|
|
658
658
|
success: boolean;
|
|
659
|
-
error: string;
|
|
660
659
|
company: {
|
|
661
660
|
description: string | null;
|
|
662
661
|
name: string | null;
|
|
663
|
-
|
|
662
|
+
website: string | null;
|
|
664
663
|
headcount: number | null;
|
|
665
664
|
industry: string | null;
|
|
666
|
-
|
|
665
|
+
linkedinUrl: string | null;
|
|
667
666
|
hqCity: string | null;
|
|
668
667
|
hqCountry: string | null;
|
|
669
668
|
yearFounded: number | null;
|
|
670
669
|
fundingStage: string | null;
|
|
671
670
|
totalFunding: string | null;
|
|
672
671
|
} | null;
|
|
672
|
+
error: string;
|
|
673
673
|
contacts: {
|
|
674
674
|
title: string | null;
|
|
675
|
+
name: string | null;
|
|
676
|
+
emails: string[] | null;
|
|
677
|
+
headline: string | null;
|
|
675
678
|
location: string | null;
|
|
676
679
|
skills: string[] | null;
|
|
677
680
|
languages: string[] | null;
|
|
678
|
-
name: string | null;
|
|
679
|
-
headline: string | null;
|
|
680
|
-
linkedinUrl: string | null;
|
|
681
|
-
profilePictureUrl: string | null;
|
|
682
|
-
emails: string[] | null;
|
|
683
|
-
twitterHandle: string | null;
|
|
684
681
|
summary: string | null;
|
|
685
682
|
education: {
|
|
686
683
|
instituteName: string | null;
|
|
687
684
|
degreeName: string | null;
|
|
688
685
|
fieldOfStudy: string | null;
|
|
689
686
|
}[] | null;
|
|
690
|
-
|
|
687
|
+
linkedinUrl: string | null;
|
|
688
|
+
profilePictureUrl: string | null;
|
|
689
|
+
twitterHandle: string | null;
|
|
690
|
+
role: "founder" | "cxo" | "decision_maker";
|
|
691
691
|
currentEmployment: {
|
|
692
|
-
companyName: string | null;
|
|
693
|
-
companyLinkedinUrl: string | null;
|
|
694
692
|
description: string | null;
|
|
695
693
|
title: string | null;
|
|
694
|
+
companyName: string | null;
|
|
695
|
+
companyLinkedinUrl: string | null;
|
|
696
696
|
startDate: string | number | null;
|
|
697
697
|
}[] | null;
|
|
698
698
|
pastEmployment: {
|
|
699
|
-
companyName: string | null;
|
|
700
699
|
title: string | null;
|
|
700
|
+
companyName: string | null;
|
|
701
701
|
startDate: string | number | null;
|
|
702
702
|
endDate: string | number | null;
|
|
703
703
|
}[] | null;
|