@bubblelab/bubble-core 0.1.24 → 0.1.26
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 +89 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/ai-agent.d.ts +14 -14
- package/dist/bubbles/service-bubble/airtable.d.ts +134 -134
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +23 -23
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +331 -331
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +540 -540
- 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 +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +348 -348
- package/dist/bubbles/service-bubble/followupboss.d.ts +405 -405
- package/dist/bubbles/service-bubble/github.d.ts +132 -132
- package/dist/bubbles/service-bubble/gmail.d.ts +506 -506
- package/dist/bubbles/service-bubble/google-calendar.d.ts +132 -132
- package/dist/bubbles/service-bubble/google-drive.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- 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 +630 -630
- 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 +218 -218
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +1329 -1329
- 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 +202 -202
- 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 +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +139 -139
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +274 -274
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +53 -16
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +22 -22
- 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 +20 -20
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
- 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/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- 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 +52058 -10
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -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
|
-
title: string | null;
|
|
27
25
|
companyName: string | null;
|
|
28
26
|
companyLinkedinUrl: string | null;
|
|
29
|
-
startDate: string | null;
|
|
30
|
-
}, {
|
|
31
27
|
description: string | null;
|
|
32
28
|
title: string | null;
|
|
29
|
+
startDate: string | number | null;
|
|
30
|
+
}, {
|
|
33
31
|
companyName: string | null;
|
|
34
32
|
companyLinkedinUrl: string | null;
|
|
35
|
-
|
|
33
|
+
description: string | null;
|
|
34
|
+
title: 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
|
-
title: string | null;
|
|
44
43
|
companyName: string | null;
|
|
45
|
-
startDate: string | null;
|
|
46
|
-
endDate: string | null;
|
|
47
|
-
}, {
|
|
48
44
|
title: string | null;
|
|
45
|
+
startDate: string | number | null;
|
|
46
|
+
endDate: string | number | null;
|
|
47
|
+
}, {
|
|
49
48
|
companyName: string | null;
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
title: 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>;
|
|
@@ -65,65 +65,65 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
65
65
|
}>, "many">>;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
title: string | null;
|
|
68
|
-
name: string | null;
|
|
69
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
70
|
-
summary: string | null;
|
|
71
68
|
location: string | null;
|
|
69
|
+
skills: string[] | null;
|
|
70
|
+
languages: string[] | null;
|
|
71
|
+
name: string | null;
|
|
72
72
|
headline: string | null;
|
|
73
|
+
linkedinUrl: string | null;
|
|
74
|
+
profilePictureUrl: string | null;
|
|
73
75
|
emails: string[] | null;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
+
twitterHandle: string | null;
|
|
77
|
+
summary: string | null;
|
|
76
78
|
education: {
|
|
77
79
|
instituteName: string | null;
|
|
78
80
|
degreeName: string | null;
|
|
79
81
|
fieldOfStudy: string | null;
|
|
80
82
|
}[] | null;
|
|
81
|
-
|
|
82
|
-
profilePictureUrl: string | null;
|
|
83
|
-
twitterHandle: string | null;
|
|
83
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
84
84
|
currentEmployment: {
|
|
85
|
-
description: string | null;
|
|
86
|
-
title: string | null;
|
|
87
85
|
companyName: string | null;
|
|
88
86
|
companyLinkedinUrl: string | null;
|
|
89
|
-
|
|
87
|
+
description: string | null;
|
|
88
|
+
title: string | null;
|
|
89
|
+
startDate: string | number | null;
|
|
90
90
|
}[] | null;
|
|
91
91
|
pastEmployment: {
|
|
92
|
-
title: string | null;
|
|
93
92
|
companyName: string | null;
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
title: string | null;
|
|
94
|
+
startDate: string | number | null;
|
|
95
|
+
endDate: string | number | null;
|
|
96
96
|
}[] | null;
|
|
97
97
|
}, {
|
|
98
98
|
title: string | null;
|
|
99
|
-
name: string | null;
|
|
100
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
101
|
-
summary: string | null;
|
|
102
99
|
location: string | null;
|
|
100
|
+
skills: string[] | null;
|
|
101
|
+
languages: string[] | null;
|
|
102
|
+
name: string | null;
|
|
103
103
|
headline: string | null;
|
|
104
|
+
linkedinUrl: string | null;
|
|
105
|
+
profilePictureUrl: string | null;
|
|
104
106
|
emails: string[] | null;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
+
twitterHandle: string | null;
|
|
108
|
+
summary: string | null;
|
|
107
109
|
education: {
|
|
108
110
|
instituteName: string | null;
|
|
109
111
|
degreeName: string | null;
|
|
110
112
|
fieldOfStudy: string | null;
|
|
111
113
|
}[] | null;
|
|
112
|
-
|
|
113
|
-
profilePictureUrl: string | null;
|
|
114
|
-
twitterHandle: string | null;
|
|
114
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
115
115
|
currentEmployment: {
|
|
116
|
-
description: string | null;
|
|
117
|
-
title: string | null;
|
|
118
116
|
companyName: string | null;
|
|
119
117
|
companyLinkedinUrl: string | null;
|
|
120
|
-
|
|
118
|
+
description: string | null;
|
|
119
|
+
title: string | null;
|
|
120
|
+
startDate: string | number | null;
|
|
121
121
|
}[] | null;
|
|
122
122
|
pastEmployment: {
|
|
123
|
-
title: string | null;
|
|
124
123
|
companyName: string | null;
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
title: string | null;
|
|
125
|
+
startDate: string | number | null;
|
|
126
|
+
endDate: string | number | null;
|
|
127
127
|
}[] | null;
|
|
128
128
|
}>;
|
|
129
129
|
declare const CompanyEnrichmentToolParamsSchema: z.ZodObject<{
|
|
@@ -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
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
136
135
|
limit?: number | undefined;
|
|
136
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
137
137
|
}, {
|
|
138
138
|
companyIdentifier: string;
|
|
139
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
140
139
|
limit?: number | undefined;
|
|
140
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
141
141
|
}>;
|
|
142
142
|
declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
143
143
|
contacts: z.ZodArray<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
|
-
title: string | null;
|
|
165
163
|
companyName: string | null;
|
|
166
164
|
companyLinkedinUrl: string | null;
|
|
167
|
-
startDate: string | null;
|
|
168
|
-
}, {
|
|
169
165
|
description: string | null;
|
|
170
166
|
title: string | null;
|
|
167
|
+
startDate: string | number | null;
|
|
168
|
+
}, {
|
|
171
169
|
companyName: string | null;
|
|
172
170
|
companyLinkedinUrl: string | null;
|
|
173
|
-
|
|
171
|
+
description: string | null;
|
|
172
|
+
title: 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
|
-
title: string | null;
|
|
182
181
|
companyName: string | null;
|
|
183
|
-
startDate: string | null;
|
|
184
|
-
endDate: string | null;
|
|
185
|
-
}, {
|
|
186
182
|
title: string | null;
|
|
183
|
+
startDate: string | number | null;
|
|
184
|
+
endDate: string | number | null;
|
|
185
|
+
}, {
|
|
187
186
|
companyName: string | null;
|
|
188
|
-
|
|
189
|
-
|
|
187
|
+
title: 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>;
|
|
@@ -203,65 +203,65 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
203
203
|
}>, "many">>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
title: string | null;
|
|
206
|
-
name: string | null;
|
|
207
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
208
|
-
summary: string | null;
|
|
209
206
|
location: string | null;
|
|
207
|
+
skills: string[] | null;
|
|
208
|
+
languages: string[] | null;
|
|
209
|
+
name: string | null;
|
|
210
210
|
headline: string | null;
|
|
211
|
+
linkedinUrl: string | null;
|
|
212
|
+
profilePictureUrl: string | null;
|
|
211
213
|
emails: string[] | null;
|
|
212
|
-
|
|
213
|
-
|
|
214
|
+
twitterHandle: string | null;
|
|
215
|
+
summary: string | null;
|
|
214
216
|
education: {
|
|
215
217
|
instituteName: string | null;
|
|
216
218
|
degreeName: string | null;
|
|
217
219
|
fieldOfStudy: string | null;
|
|
218
220
|
}[] | null;
|
|
219
|
-
|
|
220
|
-
profilePictureUrl: string | null;
|
|
221
|
-
twitterHandle: string | null;
|
|
221
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
222
222
|
currentEmployment: {
|
|
223
|
-
description: string | null;
|
|
224
|
-
title: string | null;
|
|
225
223
|
companyName: string | null;
|
|
226
224
|
companyLinkedinUrl: string | null;
|
|
227
|
-
|
|
225
|
+
description: string | null;
|
|
226
|
+
title: string | null;
|
|
227
|
+
startDate: string | number | null;
|
|
228
228
|
}[] | null;
|
|
229
229
|
pastEmployment: {
|
|
230
|
-
title: string | null;
|
|
231
230
|
companyName: string | null;
|
|
232
|
-
|
|
233
|
-
|
|
231
|
+
title: string | null;
|
|
232
|
+
startDate: string | number | null;
|
|
233
|
+
endDate: string | number | null;
|
|
234
234
|
}[] | null;
|
|
235
235
|
}, {
|
|
236
236
|
title: string | null;
|
|
237
|
-
name: string | null;
|
|
238
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
239
|
-
summary: string | null;
|
|
240
237
|
location: string | null;
|
|
238
|
+
skills: string[] | null;
|
|
239
|
+
languages: string[] | null;
|
|
240
|
+
name: string | null;
|
|
241
241
|
headline: string | null;
|
|
242
|
+
linkedinUrl: string | null;
|
|
243
|
+
profilePictureUrl: string | null;
|
|
242
244
|
emails: string[] | null;
|
|
243
|
-
|
|
244
|
-
|
|
245
|
+
twitterHandle: string | null;
|
|
246
|
+
summary: string | null;
|
|
245
247
|
education: {
|
|
246
248
|
instituteName: string | null;
|
|
247
249
|
degreeName: string | null;
|
|
248
250
|
fieldOfStudy: string | null;
|
|
249
251
|
}[] | null;
|
|
250
|
-
|
|
251
|
-
profilePictureUrl: string | null;
|
|
252
|
-
twitterHandle: string | null;
|
|
252
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
253
253
|
currentEmployment: {
|
|
254
|
-
description: string | null;
|
|
255
|
-
title: string | null;
|
|
256
254
|
companyName: string | null;
|
|
257
255
|
companyLinkedinUrl: string | null;
|
|
258
|
-
|
|
256
|
+
description: string | null;
|
|
257
|
+
title: string | null;
|
|
258
|
+
startDate: string | number | null;
|
|
259
259
|
}[] | null;
|
|
260
260
|
pastEmployment: {
|
|
261
|
-
title: string | null;
|
|
262
261
|
companyName: string | null;
|
|
263
|
-
|
|
264
|
-
|
|
262
|
+
title: 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<{
|
|
@@ -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
|
+
linkedinUrl: string | null;
|
|
283
283
|
headcount: number | null;
|
|
284
284
|
industry: string | null;
|
|
285
|
-
|
|
285
|
+
website: 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
|
+
linkedinUrl: string | null;
|
|
295
295
|
headcount: number | null;
|
|
296
296
|
industry: string | null;
|
|
297
|
-
|
|
297
|
+
website: 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
|
+
linkedinUrl: string | null;
|
|
314
314
|
headcount: number | null;
|
|
315
315
|
industry: string | null;
|
|
316
|
-
|
|
316
|
+
website: string | null;
|
|
317
317
|
hqCity: string | null;
|
|
318
318
|
hqCountry: string | null;
|
|
319
319
|
yearFounded: number | null;
|
|
@@ -322,34 +322,34 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
322
322
|
} | null;
|
|
323
323
|
contacts: {
|
|
324
324
|
title: string | null;
|
|
325
|
-
name: string | null;
|
|
326
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
327
|
-
summary: string | null;
|
|
328
325
|
location: string | null;
|
|
326
|
+
skills: string[] | null;
|
|
327
|
+
languages: string[] | null;
|
|
328
|
+
name: string | null;
|
|
329
329
|
headline: string | null;
|
|
330
|
+
linkedinUrl: string | null;
|
|
331
|
+
profilePictureUrl: string | null;
|
|
330
332
|
emails: string[] | null;
|
|
331
|
-
|
|
332
|
-
|
|
333
|
+
twitterHandle: string | null;
|
|
334
|
+
summary: string | null;
|
|
333
335
|
education: {
|
|
334
336
|
instituteName: string | null;
|
|
335
337
|
degreeName: string | null;
|
|
336
338
|
fieldOfStudy: string | null;
|
|
337
339
|
}[] | null;
|
|
338
|
-
|
|
339
|
-
profilePictureUrl: string | null;
|
|
340
|
-
twitterHandle: string | null;
|
|
340
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
341
341
|
currentEmployment: {
|
|
342
|
-
description: string | null;
|
|
343
|
-
title: string | null;
|
|
344
342
|
companyName: string | null;
|
|
345
343
|
companyLinkedinUrl: string | null;
|
|
346
|
-
|
|
344
|
+
description: string | null;
|
|
345
|
+
title: string | null;
|
|
346
|
+
startDate: string | number | null;
|
|
347
347
|
}[] | null;
|
|
348
348
|
pastEmployment: {
|
|
349
|
-
title: string | null;
|
|
350
349
|
companyName: string | null;
|
|
351
|
-
|
|
352
|
-
|
|
350
|
+
title: string | null;
|
|
351
|
+
startDate: string | number | null;
|
|
352
|
+
endDate: string | number | null;
|
|
353
353
|
}[] | null;
|
|
354
354
|
}[];
|
|
355
355
|
totalContacts: number;
|
|
@@ -359,10 +359,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
359
359
|
company: {
|
|
360
360
|
description: string | null;
|
|
361
361
|
name: string | null;
|
|
362
|
-
|
|
362
|
+
linkedinUrl: string | null;
|
|
363
363
|
headcount: number | null;
|
|
364
364
|
industry: string | null;
|
|
365
|
-
|
|
365
|
+
website: string | null;
|
|
366
366
|
hqCity: string | null;
|
|
367
367
|
hqCountry: string | null;
|
|
368
368
|
yearFounded: number | null;
|
|
@@ -371,34 +371,34 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
371
371
|
} | null;
|
|
372
372
|
contacts: {
|
|
373
373
|
title: string | null;
|
|
374
|
-
name: string | null;
|
|
375
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
376
|
-
summary: string | null;
|
|
377
374
|
location: string | null;
|
|
375
|
+
skills: string[] | null;
|
|
376
|
+
languages: string[] | null;
|
|
377
|
+
name: string | null;
|
|
378
378
|
headline: string | null;
|
|
379
|
+
linkedinUrl: string | null;
|
|
380
|
+
profilePictureUrl: string | null;
|
|
379
381
|
emails: string[] | null;
|
|
380
|
-
|
|
381
|
-
|
|
382
|
+
twitterHandle: string | null;
|
|
383
|
+
summary: string | null;
|
|
382
384
|
education: {
|
|
383
385
|
instituteName: string | null;
|
|
384
386
|
degreeName: string | null;
|
|
385
387
|
fieldOfStudy: string | null;
|
|
386
388
|
}[] | null;
|
|
387
|
-
|
|
388
|
-
profilePictureUrl: string | null;
|
|
389
|
-
twitterHandle: string | null;
|
|
389
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
390
390
|
currentEmployment: {
|
|
391
|
-
description: string | null;
|
|
392
|
-
title: string | null;
|
|
393
391
|
companyName: string | null;
|
|
394
392
|
companyLinkedinUrl: string | null;
|
|
395
|
-
|
|
393
|
+
description: string | null;
|
|
394
|
+
title: string | null;
|
|
395
|
+
startDate: string | number | null;
|
|
396
396
|
}[] | null;
|
|
397
397
|
pastEmployment: {
|
|
398
|
-
title: string | null;
|
|
399
398
|
companyName: string | null;
|
|
400
|
-
|
|
401
|
-
|
|
399
|
+
title: string | null;
|
|
400
|
+
startDate: string | number | null;
|
|
401
|
+
endDate: string | number | null;
|
|
402
402
|
}[] | null;
|
|
403
403
|
}[];
|
|
404
404
|
totalContacts: number;
|
|
@@ -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
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
437
436
|
limit?: number | undefined;
|
|
437
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
438
438
|
}, {
|
|
439
439
|
companyIdentifier: string;
|
|
440
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
441
440
|
limit?: number | undefined;
|
|
441
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
442
442
|
}>;
|
|
443
443
|
static readonly resultSchema: z.ZodObject<{
|
|
444
444
|
contacts: z.ZodArray<z.ZodObject<{
|
|
@@ -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
|
-
title: string | null;
|
|
466
464
|
companyName: string | null;
|
|
467
465
|
companyLinkedinUrl: string | null;
|
|
468
|
-
startDate: string | null;
|
|
469
|
-
}, {
|
|
470
466
|
description: string | null;
|
|
471
467
|
title: string | null;
|
|
468
|
+
startDate: string | number | null;
|
|
469
|
+
}, {
|
|
472
470
|
companyName: string | null;
|
|
473
471
|
companyLinkedinUrl: string | null;
|
|
474
|
-
|
|
472
|
+
description: string | null;
|
|
473
|
+
title: 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
|
-
title: string | null;
|
|
483
482
|
companyName: string | null;
|
|
484
|
-
startDate: string | null;
|
|
485
|
-
endDate: string | null;
|
|
486
|
-
}, {
|
|
487
483
|
title: string | null;
|
|
484
|
+
startDate: string | number | null;
|
|
485
|
+
endDate: string | number | null;
|
|
486
|
+
}, {
|
|
488
487
|
companyName: string | null;
|
|
489
|
-
|
|
490
|
-
|
|
488
|
+
title: 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>;
|
|
@@ -504,65 +504,65 @@ 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
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
509
|
-
summary: string | null;
|
|
510
507
|
location: string | null;
|
|
508
|
+
skills: string[] | null;
|
|
509
|
+
languages: string[] | null;
|
|
510
|
+
name: string | null;
|
|
511
511
|
headline: string | null;
|
|
512
|
+
linkedinUrl: string | null;
|
|
513
|
+
profilePictureUrl: string | null;
|
|
512
514
|
emails: string[] | null;
|
|
513
|
-
|
|
514
|
-
|
|
515
|
+
twitterHandle: string | null;
|
|
516
|
+
summary: string | null;
|
|
515
517
|
education: {
|
|
516
518
|
instituteName: string | null;
|
|
517
519
|
degreeName: string | null;
|
|
518
520
|
fieldOfStudy: string | null;
|
|
519
521
|
}[] | null;
|
|
520
|
-
|
|
521
|
-
profilePictureUrl: string | null;
|
|
522
|
-
twitterHandle: string | null;
|
|
522
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
523
523
|
currentEmployment: {
|
|
524
|
-
description: string | null;
|
|
525
|
-
title: string | null;
|
|
526
524
|
companyName: string | null;
|
|
527
525
|
companyLinkedinUrl: string | null;
|
|
528
|
-
|
|
526
|
+
description: string | null;
|
|
527
|
+
title: string | null;
|
|
528
|
+
startDate: string | number | null;
|
|
529
529
|
}[] | null;
|
|
530
530
|
pastEmployment: {
|
|
531
|
-
title: string | null;
|
|
532
531
|
companyName: string | null;
|
|
533
|
-
|
|
534
|
-
|
|
532
|
+
title: string | null;
|
|
533
|
+
startDate: string | number | null;
|
|
534
|
+
endDate: string | number | null;
|
|
535
535
|
}[] | null;
|
|
536
536
|
}, {
|
|
537
537
|
title: string | null;
|
|
538
|
-
name: string | null;
|
|
539
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
540
|
-
summary: string | null;
|
|
541
538
|
location: string | null;
|
|
539
|
+
skills: string[] | null;
|
|
540
|
+
languages: string[] | null;
|
|
541
|
+
name: string | null;
|
|
542
542
|
headline: string | null;
|
|
543
|
+
linkedinUrl: string | null;
|
|
544
|
+
profilePictureUrl: string | null;
|
|
543
545
|
emails: string[] | null;
|
|
544
|
-
|
|
545
|
-
|
|
546
|
+
twitterHandle: string | null;
|
|
547
|
+
summary: string | null;
|
|
546
548
|
education: {
|
|
547
549
|
instituteName: string | null;
|
|
548
550
|
degreeName: string | null;
|
|
549
551
|
fieldOfStudy: string | null;
|
|
550
552
|
}[] | null;
|
|
551
|
-
|
|
552
|
-
profilePictureUrl: string | null;
|
|
553
|
-
twitterHandle: string | null;
|
|
553
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
554
554
|
currentEmployment: {
|
|
555
|
-
description: string | null;
|
|
556
|
-
title: string | null;
|
|
557
555
|
companyName: string | null;
|
|
558
556
|
companyLinkedinUrl: string | null;
|
|
559
|
-
|
|
557
|
+
description: string | null;
|
|
558
|
+
title: string | null;
|
|
559
|
+
startDate: string | number | null;
|
|
560
560
|
}[] | null;
|
|
561
561
|
pastEmployment: {
|
|
562
|
-
title: string | null;
|
|
563
562
|
companyName: string | null;
|
|
564
|
-
|
|
565
|
-
|
|
563
|
+
title: 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<{
|
|
@@ -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
|
+
linkedinUrl: string | null;
|
|
584
584
|
headcount: number | null;
|
|
585
585
|
industry: string | null;
|
|
586
|
-
|
|
586
|
+
website: 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
|
+
linkedinUrl: string | null;
|
|
596
596
|
headcount: number | null;
|
|
597
597
|
industry: string | null;
|
|
598
|
-
|
|
598
|
+
website: 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
|
+
linkedinUrl: string | null;
|
|
615
615
|
headcount: number | null;
|
|
616
616
|
industry: string | null;
|
|
617
|
-
|
|
617
|
+
website: string | null;
|
|
618
618
|
hqCity: string | null;
|
|
619
619
|
hqCountry: string | null;
|
|
620
620
|
yearFounded: number | null;
|
|
@@ -623,34 +623,34 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
623
623
|
} | null;
|
|
624
624
|
contacts: {
|
|
625
625
|
title: string | null;
|
|
626
|
-
name: string | null;
|
|
627
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
628
|
-
summary: string | null;
|
|
629
626
|
location: string | null;
|
|
627
|
+
skills: string[] | null;
|
|
628
|
+
languages: string[] | null;
|
|
629
|
+
name: string | null;
|
|
630
630
|
headline: string | null;
|
|
631
|
+
linkedinUrl: string | null;
|
|
632
|
+
profilePictureUrl: string | null;
|
|
631
633
|
emails: string[] | null;
|
|
632
|
-
|
|
633
|
-
|
|
634
|
+
twitterHandle: string | null;
|
|
635
|
+
summary: string | null;
|
|
634
636
|
education: {
|
|
635
637
|
instituteName: string | null;
|
|
636
638
|
degreeName: string | null;
|
|
637
639
|
fieldOfStudy: string | null;
|
|
638
640
|
}[] | null;
|
|
639
|
-
|
|
640
|
-
profilePictureUrl: string | null;
|
|
641
|
-
twitterHandle: string | null;
|
|
641
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
642
642
|
currentEmployment: {
|
|
643
|
-
description: string | null;
|
|
644
|
-
title: string | null;
|
|
645
643
|
companyName: string | null;
|
|
646
644
|
companyLinkedinUrl: string | null;
|
|
647
|
-
|
|
645
|
+
description: string | null;
|
|
646
|
+
title: string | null;
|
|
647
|
+
startDate: string | number | null;
|
|
648
648
|
}[] | null;
|
|
649
649
|
pastEmployment: {
|
|
650
|
-
title: string | null;
|
|
651
650
|
companyName: string | null;
|
|
652
|
-
|
|
653
|
-
|
|
651
|
+
title: string | null;
|
|
652
|
+
startDate: string | number | null;
|
|
653
|
+
endDate: string | number | null;
|
|
654
654
|
}[] | null;
|
|
655
655
|
}[];
|
|
656
656
|
totalContacts: number;
|
|
@@ -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
|
+
linkedinUrl: string | null;
|
|
664
664
|
headcount: number | null;
|
|
665
665
|
industry: string | null;
|
|
666
|
-
|
|
666
|
+
website: string | null;
|
|
667
667
|
hqCity: string | null;
|
|
668
668
|
hqCountry: string | null;
|
|
669
669
|
yearFounded: number | null;
|
|
@@ -672,34 +672,34 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
672
672
|
} | null;
|
|
673
673
|
contacts: {
|
|
674
674
|
title: string | null;
|
|
675
|
-
name: string | null;
|
|
676
|
-
role: "cxo" | "decision_maker" | "founder";
|
|
677
|
-
summary: string | null;
|
|
678
675
|
location: string | null;
|
|
676
|
+
skills: string[] | null;
|
|
677
|
+
languages: string[] | null;
|
|
678
|
+
name: string | null;
|
|
679
679
|
headline: string | null;
|
|
680
|
+
linkedinUrl: string | null;
|
|
681
|
+
profilePictureUrl: string | null;
|
|
680
682
|
emails: string[] | null;
|
|
681
|
-
|
|
682
|
-
|
|
683
|
+
twitterHandle: string | null;
|
|
684
|
+
summary: string | null;
|
|
683
685
|
education: {
|
|
684
686
|
instituteName: string | null;
|
|
685
687
|
degreeName: string | null;
|
|
686
688
|
fieldOfStudy: string | null;
|
|
687
689
|
}[] | null;
|
|
688
|
-
|
|
689
|
-
profilePictureUrl: string | null;
|
|
690
|
-
twitterHandle: string | null;
|
|
690
|
+
role: "cxo" | "decision_maker" | "founder";
|
|
691
691
|
currentEmployment: {
|
|
692
|
-
description: string | null;
|
|
693
|
-
title: string | null;
|
|
694
692
|
companyName: string | null;
|
|
695
693
|
companyLinkedinUrl: string | null;
|
|
696
|
-
|
|
694
|
+
description: string | null;
|
|
695
|
+
title: string | null;
|
|
696
|
+
startDate: string | number | null;
|
|
697
697
|
}[] | null;
|
|
698
698
|
pastEmployment: {
|
|
699
|
-
title: string | null;
|
|
700
699
|
companyName: string | null;
|
|
701
|
-
|
|
702
|
-
|
|
700
|
+
title: string | null;
|
|
701
|
+
startDate: string | number | null;
|
|
702
|
+
endDate: string | number | null;
|
|
703
703
|
}[] | null;
|
|
704
704
|
}[];
|
|
705
705
|
totalContacts: number;
|