@bubblelab/bubble-core 0.1.26 → 0.1.27
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 +60 -60
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
- package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +202 -202
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
- 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 +148 -148
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +19 -19
- 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
|
-
location: string | null;
|
|
69
|
-
skills: string[] | null;
|
|
70
|
-
languages: string[] | null;
|
|
71
68
|
name: string | null;
|
|
69
|
+
summary: string | null;
|
|
70
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
71
|
+
location: string | null;
|
|
72
72
|
headline: string | null;
|
|
73
|
-
linkedinUrl: string | null;
|
|
74
|
-
profilePictureUrl: string | null;
|
|
75
73
|
emails: string[] | null;
|
|
76
|
-
|
|
77
|
-
|
|
74
|
+
languages: string[] | null;
|
|
75
|
+
skills: string[] | null;
|
|
78
76
|
education: {
|
|
79
77
|
instituteName: string | null;
|
|
80
78
|
degreeName: string | null;
|
|
81
79
|
fieldOfStudy: string | null;
|
|
82
80
|
}[] | null;
|
|
83
|
-
|
|
81
|
+
linkedinUrl: string | null;
|
|
82
|
+
profilePictureUrl: string | null;
|
|
83
|
+
twitterHandle: string | null;
|
|
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
|
-
location: string | null;
|
|
100
|
-
skills: string[] | null;
|
|
101
|
-
languages: string[] | null;
|
|
102
99
|
name: string | null;
|
|
100
|
+
summary: string | null;
|
|
101
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
102
|
+
location: string | null;
|
|
103
103
|
headline: string | null;
|
|
104
|
-
linkedinUrl: string | null;
|
|
105
|
-
profilePictureUrl: string | null;
|
|
106
104
|
emails: string[] | null;
|
|
107
|
-
|
|
108
|
-
|
|
105
|
+
languages: string[] | null;
|
|
106
|
+
skills: string[] | null;
|
|
109
107
|
education: {
|
|
110
108
|
instituteName: string | null;
|
|
111
109
|
degreeName: string | null;
|
|
112
110
|
fieldOfStudy: string | null;
|
|
113
111
|
}[] | null;
|
|
114
|
-
|
|
112
|
+
linkedinUrl: string | null;
|
|
113
|
+
profilePictureUrl: string | null;
|
|
114
|
+
twitterHandle: string | null;
|
|
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;
|
|
@@ -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<{
|
|
@@ -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
|
-
location: string | null;
|
|
207
|
-
skills: string[] | null;
|
|
208
|
-
languages: string[] | null;
|
|
209
206
|
name: string | null;
|
|
207
|
+
summary: string | null;
|
|
208
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
209
|
+
location: string | null;
|
|
210
210
|
headline: string | null;
|
|
211
|
-
linkedinUrl: string | null;
|
|
212
|
-
profilePictureUrl: string | null;
|
|
213
211
|
emails: string[] | null;
|
|
214
|
-
|
|
215
|
-
|
|
212
|
+
languages: string[] | null;
|
|
213
|
+
skills: string[] | null;
|
|
216
214
|
education: {
|
|
217
215
|
instituteName: string | null;
|
|
218
216
|
degreeName: string | null;
|
|
219
217
|
fieldOfStudy: string | null;
|
|
220
218
|
}[] | null;
|
|
221
|
-
|
|
219
|
+
linkedinUrl: string | null;
|
|
220
|
+
profilePictureUrl: string | null;
|
|
221
|
+
twitterHandle: string | null;
|
|
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
|
-
location: string | null;
|
|
238
|
-
skills: string[] | null;
|
|
239
|
-
languages: string[] | null;
|
|
240
237
|
name: string | null;
|
|
238
|
+
summary: string | null;
|
|
239
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
240
|
+
location: string | null;
|
|
241
241
|
headline: string | null;
|
|
242
|
-
linkedinUrl: string | null;
|
|
243
|
-
profilePictureUrl: string | null;
|
|
244
242
|
emails: string[] | null;
|
|
245
|
-
|
|
246
|
-
|
|
243
|
+
languages: string[] | null;
|
|
244
|
+
skills: string[] | null;
|
|
247
245
|
education: {
|
|
248
246
|
instituteName: string | null;
|
|
249
247
|
degreeName: string | null;
|
|
250
248
|
fieldOfStudy: string | null;
|
|
251
249
|
}[] | null;
|
|
252
|
-
|
|
250
|
+
linkedinUrl: string | null;
|
|
251
|
+
profilePictureUrl: string | null;
|
|
252
|
+
twitterHandle: string | null;
|
|
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;
|
|
@@ -310,10 +310,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
310
310
|
company: {
|
|
311
311
|
description: string | null;
|
|
312
312
|
name: string | null;
|
|
313
|
-
|
|
313
|
+
website: string | null;
|
|
314
314
|
headcount: number | null;
|
|
315
315
|
industry: string | null;
|
|
316
|
-
|
|
316
|
+
linkedinUrl: string | null;
|
|
317
317
|
hqCity: string | null;
|
|
318
318
|
hqCountry: string | null;
|
|
319
319
|
yearFounded: number | null;
|
|
@@ -322,32 +322,32 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
322
322
|
} | null;
|
|
323
323
|
contacts: {
|
|
324
324
|
title: string | null;
|
|
325
|
-
location: string | null;
|
|
326
|
-
skills: string[] | null;
|
|
327
|
-
languages: string[] | null;
|
|
328
325
|
name: string | null;
|
|
326
|
+
summary: string | null;
|
|
327
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
328
|
+
location: string | null;
|
|
329
329
|
headline: string | null;
|
|
330
|
-
linkedinUrl: string | null;
|
|
331
|
-
profilePictureUrl: string | null;
|
|
332
330
|
emails: string[] | null;
|
|
333
|
-
|
|
334
|
-
|
|
331
|
+
languages: string[] | null;
|
|
332
|
+
skills: string[] | null;
|
|
335
333
|
education: {
|
|
336
334
|
instituteName: string | null;
|
|
337
335
|
degreeName: string | null;
|
|
338
336
|
fieldOfStudy: string | null;
|
|
339
337
|
}[] | null;
|
|
340
|
-
|
|
338
|
+
linkedinUrl: string | null;
|
|
339
|
+
profilePictureUrl: string | null;
|
|
340
|
+
twitterHandle: string | null;
|
|
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;
|
|
@@ -359,10 +359,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
359
359
|
company: {
|
|
360
360
|
description: string | null;
|
|
361
361
|
name: string | null;
|
|
362
|
-
|
|
362
|
+
website: string | null;
|
|
363
363
|
headcount: number | null;
|
|
364
364
|
industry: string | null;
|
|
365
|
-
|
|
365
|
+
linkedinUrl: string | null;
|
|
366
366
|
hqCity: string | null;
|
|
367
367
|
hqCountry: string | null;
|
|
368
368
|
yearFounded: number | null;
|
|
@@ -371,32 +371,32 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
371
371
|
} | null;
|
|
372
372
|
contacts: {
|
|
373
373
|
title: string | null;
|
|
374
|
-
location: string | null;
|
|
375
|
-
skills: string[] | null;
|
|
376
|
-
languages: string[] | null;
|
|
377
374
|
name: string | null;
|
|
375
|
+
summary: string | null;
|
|
376
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
377
|
+
location: string | null;
|
|
378
378
|
headline: string | null;
|
|
379
|
-
linkedinUrl: string | null;
|
|
380
|
-
profilePictureUrl: string | null;
|
|
381
379
|
emails: string[] | null;
|
|
382
|
-
|
|
383
|
-
|
|
380
|
+
languages: string[] | null;
|
|
381
|
+
skills: string[] | null;
|
|
384
382
|
education: {
|
|
385
383
|
instituteName: string | null;
|
|
386
384
|
degreeName: string | null;
|
|
387
385
|
fieldOfStudy: string | null;
|
|
388
386
|
}[] | null;
|
|
389
|
-
|
|
387
|
+
linkedinUrl: string | null;
|
|
388
|
+
profilePictureUrl: string | null;
|
|
389
|
+
twitterHandle: string | null;
|
|
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;
|
|
@@ -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<{
|
|
@@ -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
|
-
location: string | null;
|
|
508
|
-
skills: string[] | null;
|
|
509
|
-
languages: string[] | null;
|
|
510
507
|
name: string | null;
|
|
508
|
+
summary: string | null;
|
|
509
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
510
|
+
location: string | null;
|
|
511
511
|
headline: string | null;
|
|
512
|
-
linkedinUrl: string | null;
|
|
513
|
-
profilePictureUrl: string | null;
|
|
514
512
|
emails: string[] | null;
|
|
515
|
-
|
|
516
|
-
|
|
513
|
+
languages: string[] | null;
|
|
514
|
+
skills: string[] | null;
|
|
517
515
|
education: {
|
|
518
516
|
instituteName: string | null;
|
|
519
517
|
degreeName: string | null;
|
|
520
518
|
fieldOfStudy: string | null;
|
|
521
519
|
}[] | null;
|
|
522
|
-
|
|
520
|
+
linkedinUrl: string | null;
|
|
521
|
+
profilePictureUrl: string | null;
|
|
522
|
+
twitterHandle: string | null;
|
|
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
|
-
location: string | null;
|
|
539
|
-
skills: string[] | null;
|
|
540
|
-
languages: string[] | null;
|
|
541
538
|
name: string | null;
|
|
539
|
+
summary: string | null;
|
|
540
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
541
|
+
location: string | null;
|
|
542
542
|
headline: string | null;
|
|
543
|
-
linkedinUrl: string | null;
|
|
544
|
-
profilePictureUrl: string | null;
|
|
545
543
|
emails: string[] | null;
|
|
546
|
-
|
|
547
|
-
|
|
544
|
+
languages: string[] | null;
|
|
545
|
+
skills: string[] | null;
|
|
548
546
|
education: {
|
|
549
547
|
instituteName: string | null;
|
|
550
548
|
degreeName: string | null;
|
|
551
549
|
fieldOfStudy: string | null;
|
|
552
550
|
}[] | null;
|
|
553
|
-
|
|
551
|
+
linkedinUrl: string | null;
|
|
552
|
+
profilePictureUrl: string | null;
|
|
553
|
+
twitterHandle: string | null;
|
|
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;
|
|
@@ -611,10 +611,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
611
611
|
company: {
|
|
612
612
|
description: string | null;
|
|
613
613
|
name: string | null;
|
|
614
|
-
|
|
614
|
+
website: string | null;
|
|
615
615
|
headcount: number | null;
|
|
616
616
|
industry: string | null;
|
|
617
|
-
|
|
617
|
+
linkedinUrl: string | null;
|
|
618
618
|
hqCity: string | null;
|
|
619
619
|
hqCountry: string | null;
|
|
620
620
|
yearFounded: number | null;
|
|
@@ -623,32 +623,32 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
623
623
|
} | null;
|
|
624
624
|
contacts: {
|
|
625
625
|
title: string | null;
|
|
626
|
-
location: string | null;
|
|
627
|
-
skills: string[] | null;
|
|
628
|
-
languages: string[] | null;
|
|
629
626
|
name: string | null;
|
|
627
|
+
summary: string | null;
|
|
628
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
629
|
+
location: string | null;
|
|
630
630
|
headline: string | null;
|
|
631
|
-
linkedinUrl: string | null;
|
|
632
|
-
profilePictureUrl: string | null;
|
|
633
631
|
emails: string[] | null;
|
|
634
|
-
|
|
635
|
-
|
|
632
|
+
languages: string[] | null;
|
|
633
|
+
skills: string[] | null;
|
|
636
634
|
education: {
|
|
637
635
|
instituteName: string | null;
|
|
638
636
|
degreeName: string | null;
|
|
639
637
|
fieldOfStudy: string | null;
|
|
640
638
|
}[] | null;
|
|
641
|
-
|
|
639
|
+
linkedinUrl: string | null;
|
|
640
|
+
profilePictureUrl: string | null;
|
|
641
|
+
twitterHandle: string | null;
|
|
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;
|
|
@@ -660,10 +660,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
660
660
|
company: {
|
|
661
661
|
description: string | null;
|
|
662
662
|
name: string | null;
|
|
663
|
-
|
|
663
|
+
website: string | null;
|
|
664
664
|
headcount: number | null;
|
|
665
665
|
industry: string | null;
|
|
666
|
-
|
|
666
|
+
linkedinUrl: string | null;
|
|
667
667
|
hqCity: string | null;
|
|
668
668
|
hqCountry: string | null;
|
|
669
669
|
yearFounded: number | null;
|
|
@@ -672,32 +672,32 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
672
672
|
} | null;
|
|
673
673
|
contacts: {
|
|
674
674
|
title: string | null;
|
|
675
|
-
location: string | null;
|
|
676
|
-
skills: string[] | null;
|
|
677
|
-
languages: string[] | null;
|
|
678
675
|
name: string | null;
|
|
676
|
+
summary: string | null;
|
|
677
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
678
|
+
location: string | null;
|
|
679
679
|
headline: string | null;
|
|
680
|
-
linkedinUrl: string | null;
|
|
681
|
-
profilePictureUrl: string | null;
|
|
682
680
|
emails: string[] | null;
|
|
683
|
-
|
|
684
|
-
|
|
681
|
+
languages: string[] | null;
|
|
682
|
+
skills: string[] | null;
|
|
685
683
|
education: {
|
|
686
684
|
instituteName: string | null;
|
|
687
685
|
degreeName: string | null;
|
|
688
686
|
fieldOfStudy: string | null;
|
|
689
687
|
}[] | null;
|
|
690
|
-
|
|
688
|
+
linkedinUrl: string | null;
|
|
689
|
+
profilePictureUrl: string | null;
|
|
690
|
+
twitterHandle: string | null;
|
|
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;
|