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