@bubblelab/bubble-core 0.1.23 → 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 +55 -55
- package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +80 -80
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +382 -382
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.js +7 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.js.map +1 -1
- 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/firecrawl.d.ts +36 -36
- package/dist/bubbles/service-bubble/followupboss.d.ts +40 -40
- package/dist/bubbles/service-bubble/github.d.ts +52 -52
- package/dist/bubbles/service-bubble/gmail.d.ts +114 -114
- package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-drive.d.ts +14 -14
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +22 -1
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- 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 +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +444 -444
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +132 -132
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +148 -148
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +101 -101
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js +29 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +119 -119
- 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/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +22 -22
- package/dist/bubbles.json +7 -7
- package/package.json +2 -2
|
@@ -92,13 +92,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
92
92
|
line: z.ZodNumber;
|
|
93
93
|
column: z.ZodNumber;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
|
-
type: string;
|
|
96
95
|
name: string;
|
|
96
|
+
type: string;
|
|
97
97
|
column: number;
|
|
98
98
|
line: number;
|
|
99
99
|
}, {
|
|
100
|
-
type: string;
|
|
101
100
|
name: string;
|
|
101
|
+
type: string;
|
|
102
102
|
column: number;
|
|
103
103
|
line: number;
|
|
104
104
|
}>, "many">>;
|
|
@@ -136,8 +136,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
136
136
|
}[] | undefined;
|
|
137
137
|
errors?: string[] | undefined;
|
|
138
138
|
variableTypes?: {
|
|
139
|
-
type: string;
|
|
140
139
|
name: string;
|
|
140
|
+
type: string;
|
|
141
141
|
column: number;
|
|
142
142
|
line: number;
|
|
143
143
|
}[] | undefined;
|
|
@@ -161,8 +161,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
161
161
|
}[] | undefined;
|
|
162
162
|
errors?: string[] | undefined;
|
|
163
163
|
variableTypes?: {
|
|
164
|
-
type: string;
|
|
165
164
|
name: string;
|
|
165
|
+
type: string;
|
|
166
166
|
column: number;
|
|
167
167
|
line: number;
|
|
168
168
|
}[] | undefined;
|
|
@@ -241,13 +241,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
241
241
|
line: z.ZodNumber;
|
|
242
242
|
column: z.ZodNumber;
|
|
243
243
|
}, "strip", z.ZodTypeAny, {
|
|
244
|
-
type: string;
|
|
245
244
|
name: string;
|
|
245
|
+
type: string;
|
|
246
246
|
column: number;
|
|
247
247
|
line: number;
|
|
248
248
|
}, {
|
|
249
|
-
type: string;
|
|
250
249
|
name: string;
|
|
250
|
+
type: string;
|
|
251
251
|
column: number;
|
|
252
252
|
line: number;
|
|
253
253
|
}>, "many">>;
|
|
@@ -285,8 +285,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
285
285
|
}[] | undefined;
|
|
286
286
|
errors?: string[] | undefined;
|
|
287
287
|
variableTypes?: {
|
|
288
|
-
type: string;
|
|
289
288
|
name: string;
|
|
289
|
+
type: string;
|
|
290
290
|
column: number;
|
|
291
291
|
line: number;
|
|
292
292
|
}[] | undefined;
|
|
@@ -310,8 +310,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
310
310
|
}[] | undefined;
|
|
311
311
|
errors?: string[] | undefined;
|
|
312
312
|
variableTypes?: {
|
|
313
|
-
type: string;
|
|
314
313
|
name: string;
|
|
314
|
+
type: string;
|
|
315
315
|
column: number;
|
|
316
316
|
line: number;
|
|
317
317
|
}[] | undefined;
|
|
@@ -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,10 +64,10 @@ 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
|
-
location: string | null;
|
|
70
68
|
headline: string | null;
|
|
69
|
+
location: string | null;
|
|
70
|
+
title: string | null;
|
|
71
71
|
emails: string[] | null;
|
|
72
72
|
skills: string[] | null;
|
|
73
73
|
languages: string[] | null;
|
|
@@ -82,23 +82,23 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
82
82
|
twitterHandle: string | null;
|
|
83
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
|
-
location: string | null;
|
|
101
99
|
headline: string | null;
|
|
100
|
+
location: string | null;
|
|
101
|
+
title: string | null;
|
|
102
102
|
emails: string[] | null;
|
|
103
103
|
skills: string[] | null;
|
|
104
104
|
languages: string[] | null;
|
|
@@ -113,17 +113,17 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
113
113
|
twitterHandle: string | null;
|
|
114
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,10 +202,10 @@ 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
|
-
location: string | null;
|
|
208
206
|
headline: string | null;
|
|
207
|
+
location: string | null;
|
|
208
|
+
title: string | null;
|
|
209
209
|
emails: string[] | null;
|
|
210
210
|
skills: string[] | null;
|
|
211
211
|
languages: string[] | null;
|
|
@@ -220,23 +220,23 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
220
220
|
twitterHandle: string | null;
|
|
221
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
|
-
location: string | null;
|
|
239
237
|
headline: string | null;
|
|
238
|
+
location: string | null;
|
|
239
|
+
title: string | null;
|
|
240
240
|
emails: string[] | null;
|
|
241
241
|
skills: string[] | null;
|
|
242
242
|
languages: string[] | null;
|
|
@@ -251,17 +251,17 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
251
251
|
twitterHandle: string | null;
|
|
252
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,8 +277,8 @@ 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;
|
|
281
|
+
description: string | null;
|
|
282
282
|
headcount: number | null;
|
|
283
283
|
industry: string | null;
|
|
284
284
|
linkedinUrl: string | null;
|
|
@@ -289,8 +289,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
289
289
|
fundingStage: string | null;
|
|
290
290
|
totalFunding: string | null;
|
|
291
291
|
}, {
|
|
292
|
-
description: string | null;
|
|
293
292
|
name: string | null;
|
|
293
|
+
description: string | null;
|
|
294
294
|
headcount: number | null;
|
|
295
295
|
industry: string | null;
|
|
296
296
|
linkedinUrl: string | null;
|
|
@@ -308,8 +308,8 @@ 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;
|
|
312
|
+
description: string | null;
|
|
313
313
|
headcount: number | null;
|
|
314
314
|
industry: string | null;
|
|
315
315
|
linkedinUrl: string | null;
|
|
@@ -321,10 +321,10 @@ 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
|
-
location: string | null;
|
|
327
325
|
headline: string | null;
|
|
326
|
+
location: string | null;
|
|
327
|
+
title: string | null;
|
|
328
328
|
emails: string[] | null;
|
|
329
329
|
skills: string[] | null;
|
|
330
330
|
languages: string[] | null;
|
|
@@ -339,17 +339,17 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
339
339
|
twitterHandle: string | null;
|
|
340
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,8 +357,8 @@ 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;
|
|
361
|
+
description: string | null;
|
|
362
362
|
headcount: number | null;
|
|
363
363
|
industry: string | null;
|
|
364
364
|
linkedinUrl: string | null;
|
|
@@ -370,10 +370,10 @@ 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
|
-
location: string | null;
|
|
376
374
|
headline: string | null;
|
|
375
|
+
location: string | null;
|
|
376
|
+
title: string | null;
|
|
377
377
|
emails: string[] | null;
|
|
378
378
|
skills: string[] | null;
|
|
379
379
|
languages: string[] | null;
|
|
@@ -388,17 +388,17 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
388
388
|
twitterHandle: string | null;
|
|
389
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,10 +503,10 @@ 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
|
-
location: string | null;
|
|
509
507
|
headline: string | null;
|
|
508
|
+
location: string | null;
|
|
509
|
+
title: string | null;
|
|
510
510
|
emails: string[] | null;
|
|
511
511
|
skills: string[] | null;
|
|
512
512
|
languages: string[] | null;
|
|
@@ -521,23 +521,23 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
521
521
|
twitterHandle: string | null;
|
|
522
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
|
-
location: string | null;
|
|
540
538
|
headline: string | null;
|
|
539
|
+
location: string | null;
|
|
540
|
+
title: string | null;
|
|
541
541
|
emails: string[] | null;
|
|
542
542
|
skills: string[] | null;
|
|
543
543
|
languages: string[] | null;
|
|
@@ -552,17 +552,17 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
552
552
|
twitterHandle: string | null;
|
|
553
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,8 +578,8 @@ 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;
|
|
582
|
+
description: string | null;
|
|
583
583
|
headcount: number | null;
|
|
584
584
|
industry: string | null;
|
|
585
585
|
linkedinUrl: string | null;
|
|
@@ -590,8 +590,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
590
590
|
fundingStage: string | null;
|
|
591
591
|
totalFunding: string | null;
|
|
592
592
|
}, {
|
|
593
|
-
description: string | null;
|
|
594
593
|
name: string | null;
|
|
594
|
+
description: string | null;
|
|
595
595
|
headcount: number | null;
|
|
596
596
|
industry: string | null;
|
|
597
597
|
linkedinUrl: string | null;
|
|
@@ -609,8 +609,8 @@ 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;
|
|
613
|
+
description: string | null;
|
|
614
614
|
headcount: number | null;
|
|
615
615
|
industry: string | null;
|
|
616
616
|
linkedinUrl: string | null;
|
|
@@ -622,10 +622,10 @@ 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
|
-
location: string | null;
|
|
628
626
|
headline: string | null;
|
|
627
|
+
location: string | null;
|
|
628
|
+
title: string | null;
|
|
629
629
|
emails: string[] | null;
|
|
630
630
|
skills: string[] | null;
|
|
631
631
|
languages: string[] | null;
|
|
@@ -640,17 +640,17 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
640
640
|
twitterHandle: string | null;
|
|
641
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,8 +658,8 @@ 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;
|
|
662
|
+
description: string | null;
|
|
663
663
|
headcount: number | null;
|
|
664
664
|
industry: string | null;
|
|
665
665
|
linkedinUrl: string | null;
|
|
@@ -671,10 +671,10 @@ 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
|
-
location: string | null;
|
|
677
675
|
headline: string | null;
|
|
676
|
+
location: string | null;
|
|
677
|
+
title: string | null;
|
|
678
678
|
emails: string[] | null;
|
|
679
679
|
skills: string[] | null;
|
|
680
680
|
languages: string[] | null;
|
|
@@ -689,17 +689,17 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
689
689
|
twitterHandle: string | null;
|
|
690
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;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"company-enrichment-tool.d.ts","sourceRoot":"","sources":["../../../src/bubbles/tool-bubble/company-enrichment-tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,KAAK,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAQ5E,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"company-enrichment-tool.d.ts","sourceRoot":"","sources":["../../../src/bubbles/tool-bubble/company-enrichment-tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,KAAK,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAQ5E,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0EjB,CAAC;AAkBH,QAAA,MAAM,iCAAiC;;;;;;;;;;;;EAiBrC,CAAC;AAGH,QAAA,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMrC,CAAC;AAGH,KAAK,2BAA2B,GAAG,CAAC,CAAC,MAAM,CACzC,OAAO,iCAAiC,CACzC,CAAC;AACF,KAAK,2BAA2B,GAAG,CAAC,CAAC,MAAM,CACzC,OAAO,iCAAiC,CACzC,CAAC;AACF,KAAK,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,iCAAiC,CACzC,CAAC;AACF,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,aAAa,CAAC,CAAC;AACrD,MAAM,MAAM,uBAAuB,GAAG,2BAA2B,CAAC;AAElE;;;;;;;;;;;;;;;;GAgBG;AACH,qBAAa,qBAAsB,SAAQ,UAAU,CACnD,2BAA2B,EAC3B,2BAA2B,CAC5B;IACC,MAAM,CAAC,QAAQ,CAAC,UAAU,EAAE,UAAU,CAA6B;IACnE,MAAM,CAAC,QAAQ,CAAC,MAAM;;;;;;;;;;;;OAAqC;IAC3D,MAAM,CAAC,QAAQ,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAqC;IACjE,MAAM,CAAC,QAAQ,CAAC,gBAAgB,yFACwD;IACxF,MAAM,CAAC,QAAQ,CAAC,eAAe,qzCAqC7B;IACF,MAAM,CAAC,QAAQ,CAAC,KAAK,YAAY;IACjC,MAAM,CAAC,QAAQ,CAAC,IAAI,UAAU;gBAG5B,MAAM,GAAE,gCAG6B,EACrC,OAAO,CAAC,EAAE,aAAa;IAKnB,aAAa,IAAI,OAAO,CAAC,2BAA2B,CAAC;IA0F3D;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAoB5B;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAkB3B;;;OAGG;IACH,OAAO,CAAC,iBAAiB;IAmCzB;;OAEG;IACH,OAAO,CAAC,gBAAgB;IA+DxB;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAqB5B;;OAEG;IACH,OAAO,CAAC,iBAAiB;CAS1B"}
|