@bubblelab/bubble-core 0.1.38 → 0.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bubble-bundle.d.ts +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +88 -71
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +25 -6
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +18 -3
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +9 -5
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +23 -23
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +63 -63
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +142 -92
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +104 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.js +2 -0
- package/dist/bubbles/service-bubble/crustdata/index.js.map +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +156 -156
- package/dist/bubbles/service-bubble/followupboss.d.ts +230 -230
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +108 -108
- package/dist/bubbles/service-bubble/github.d.ts +124 -124
- package/dist/bubbles/service-bubble/gmail.d.ts +70 -70
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +58 -58
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +33 -33
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +112 -112
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +214 -214
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +42 -6
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js +18 -7
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +346 -346
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +165 -165
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +28 -13
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts +19 -0
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts.map +1 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js +268 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js.map +1 -0
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +102 -102
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +34 -34
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +56 -77
- package/package.json +2 -2
|
@@ -55,9 +55,9 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
55
55
|
companyHeadcount: z.ZodNullable<z.ZodNumber>;
|
|
56
56
|
companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
+
title: string | null;
|
|
58
59
|
companyName: string | null;
|
|
59
60
|
companyLinkedinUrl: string | null;
|
|
60
|
-
title: string | null;
|
|
61
61
|
companyIndustries: string[] | null;
|
|
62
62
|
seniorityLevel: string | null;
|
|
63
63
|
companyDomainUrl: string | null;
|
|
@@ -66,9 +66,9 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
66
66
|
yearsAtCompany: number | null;
|
|
67
67
|
companyHeadcount: number | null;
|
|
68
68
|
}, {
|
|
69
|
+
title: string | null;
|
|
69
70
|
companyName: string | null;
|
|
70
71
|
companyLinkedinUrl: string | null;
|
|
71
|
-
title: string | null;
|
|
72
72
|
companyIndustries: string[] | null;
|
|
73
73
|
seniorityLevel: string | null;
|
|
74
74
|
companyDomainUrl: string | null;
|
|
@@ -83,13 +83,13 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
83
83
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
84
84
|
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
|
-
companyName: string | null;
|
|
87
86
|
title: string | null;
|
|
87
|
+
companyName: string | null;
|
|
88
88
|
startDate: string | number | null;
|
|
89
89
|
endDate: string | number | null;
|
|
90
90
|
}, {
|
|
91
|
-
companyName: string | null;
|
|
92
91
|
title: string | null;
|
|
92
|
+
companyName: string | null;
|
|
93
93
|
startDate: string | number | null;
|
|
94
94
|
endDate: string | number | null;
|
|
95
95
|
}>, "many">>;
|
|
@@ -108,27 +108,32 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
108
108
|
}>, "many">>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
110
|
title: string | null;
|
|
111
|
+
name: string | null;
|
|
112
|
+
emails: string[] | null;
|
|
113
|
+
headline: string | null;
|
|
111
114
|
location: string | null;
|
|
112
115
|
skills: string[] | null;
|
|
113
116
|
languages: string[] | null;
|
|
117
|
+
summary: string | null;
|
|
118
|
+
education: {
|
|
119
|
+
instituteName: string | null;
|
|
120
|
+
degreeName: string | null;
|
|
121
|
+
fieldOfStudy: string | null;
|
|
122
|
+
}[] | null;
|
|
123
|
+
websites: string[] | null;
|
|
114
124
|
recentlyChangedJobs: boolean | null;
|
|
115
|
-
name: string | null;
|
|
116
|
-
headline: string | null;
|
|
117
125
|
linkedinUrl: string | null;
|
|
118
126
|
profilePictureUrl: string | null;
|
|
119
|
-
emails: string[] | null;
|
|
120
127
|
twitterHandle: string | null;
|
|
121
|
-
websites: string[] | null;
|
|
122
128
|
seniorityLevel: string | null;
|
|
123
129
|
yearsOfExperience: number | null;
|
|
124
130
|
locationCity: string | null;
|
|
125
131
|
locationCountry: string | null;
|
|
126
|
-
summary: string | null;
|
|
127
132
|
numConnections: number | null;
|
|
128
133
|
currentEmployers: {
|
|
134
|
+
title: string | null;
|
|
129
135
|
companyName: string | null;
|
|
130
136
|
companyLinkedinUrl: string | null;
|
|
131
|
-
title: string | null;
|
|
132
137
|
companyIndustries: string[] | null;
|
|
133
138
|
seniorityLevel: string | null;
|
|
134
139
|
companyDomainUrl: string | null;
|
|
@@ -138,16 +143,11 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
138
143
|
companyHeadcount: number | null;
|
|
139
144
|
}[] | null;
|
|
140
145
|
pastEmployers: {
|
|
141
|
-
companyName: string | null;
|
|
142
146
|
title: string | null;
|
|
147
|
+
companyName: string | null;
|
|
143
148
|
startDate: string | number | null;
|
|
144
149
|
endDate: string | number | null;
|
|
145
150
|
}[] | null;
|
|
146
|
-
education: {
|
|
147
|
-
instituteName: string | null;
|
|
148
|
-
degreeName: string | null;
|
|
149
|
-
fieldOfStudy: string | null;
|
|
150
|
-
}[] | null;
|
|
151
151
|
enrichedWorkEmail?: string | null | undefined;
|
|
152
152
|
enrichedPersonalEmail?: string | null | undefined;
|
|
153
153
|
enrichedWorkEmails?: {
|
|
@@ -160,27 +160,32 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
160
160
|
}[] | null | undefined;
|
|
161
161
|
}, {
|
|
162
162
|
title: string | null;
|
|
163
|
+
name: string | null;
|
|
164
|
+
emails: string[] | null;
|
|
165
|
+
headline: string | null;
|
|
163
166
|
location: string | null;
|
|
164
167
|
skills: string[] | null;
|
|
165
168
|
languages: string[] | null;
|
|
169
|
+
summary: string | null;
|
|
170
|
+
education: {
|
|
171
|
+
instituteName: string | null;
|
|
172
|
+
degreeName: string | null;
|
|
173
|
+
fieldOfStudy: string | null;
|
|
174
|
+
}[] | null;
|
|
175
|
+
websites: string[] | null;
|
|
166
176
|
recentlyChangedJobs: boolean | null;
|
|
167
|
-
name: string | null;
|
|
168
|
-
headline: string | null;
|
|
169
177
|
linkedinUrl: string | null;
|
|
170
178
|
profilePictureUrl: string | null;
|
|
171
|
-
emails: string[] | null;
|
|
172
179
|
twitterHandle: string | null;
|
|
173
|
-
websites: string[] | null;
|
|
174
180
|
seniorityLevel: string | null;
|
|
175
181
|
yearsOfExperience: number | null;
|
|
176
182
|
locationCity: string | null;
|
|
177
183
|
locationCountry: string | null;
|
|
178
|
-
summary: string | null;
|
|
179
184
|
numConnections: number | null;
|
|
180
185
|
currentEmployers: {
|
|
186
|
+
title: string | null;
|
|
181
187
|
companyName: string | null;
|
|
182
188
|
companyLinkedinUrl: string | null;
|
|
183
|
-
title: string | null;
|
|
184
189
|
companyIndustries: string[] | null;
|
|
185
190
|
seniorityLevel: string | null;
|
|
186
191
|
companyDomainUrl: string | null;
|
|
@@ -190,16 +195,11 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
190
195
|
companyHeadcount: number | null;
|
|
191
196
|
}[] | null;
|
|
192
197
|
pastEmployers: {
|
|
193
|
-
companyName: string | null;
|
|
194
198
|
title: string | null;
|
|
199
|
+
companyName: string | null;
|
|
195
200
|
startDate: string | number | null;
|
|
196
201
|
endDate: string | number | null;
|
|
197
202
|
}[] | null;
|
|
198
|
-
education: {
|
|
199
|
-
instituteName: string | null;
|
|
200
|
-
degreeName: string | null;
|
|
201
|
-
fieldOfStudy: string | null;
|
|
202
|
-
}[] | null;
|
|
203
203
|
enrichedWorkEmail?: string | null | undefined;
|
|
204
204
|
enrichedPersonalEmail?: string | null | undefined;
|
|
205
205
|
enrichedWorkEmails?: {
|
|
@@ -253,17 +253,21 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
253
253
|
}, "strip", z.ZodTypeAny, {
|
|
254
254
|
enrichEmails: boolean;
|
|
255
255
|
includePersonalEmails: boolean;
|
|
256
|
+
limit?: number | undefined;
|
|
257
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
258
|
+
location?: string | undefined;
|
|
259
|
+
skills?: string[] | undefined;
|
|
260
|
+
languages?: string[] | undefined;
|
|
261
|
+
city?: string | undefined;
|
|
262
|
+
country?: string | undefined;
|
|
256
263
|
companyName?: string | undefined;
|
|
257
264
|
companyLinkedinUrl?: string | undefined;
|
|
258
265
|
jobTitle?: string | undefined;
|
|
259
266
|
jobTitles?: string[] | undefined;
|
|
260
|
-
location?: string | undefined;
|
|
261
267
|
locationRadius?: {
|
|
262
268
|
location: string;
|
|
263
269
|
radiusMiles: number;
|
|
264
270
|
} | undefined;
|
|
265
|
-
skills?: string[] | undefined;
|
|
266
|
-
languages?: string[] | undefined;
|
|
267
271
|
minYearsExperience?: number | undefined;
|
|
268
272
|
maxYearsExperience?: number | undefined;
|
|
269
273
|
seniorityLevels?: string[] | undefined;
|
|
@@ -275,26 +279,26 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
275
279
|
pastCompanyName?: string | undefined;
|
|
276
280
|
pastJobTitle?: string | undefined;
|
|
277
281
|
schoolName?: string | undefined;
|
|
278
|
-
country?: string | undefined;
|
|
279
|
-
city?: string | undefined;
|
|
280
282
|
recentlyChangedJobs?: boolean | undefined;
|
|
281
283
|
minConnections?: number | undefined;
|
|
282
284
|
excludeCompanies?: string[] | undefined;
|
|
283
285
|
excludeProfiles?: string[] | undefined;
|
|
286
|
+
}, {
|
|
284
287
|
limit?: number | undefined;
|
|
285
288
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
286
|
-
|
|
289
|
+
location?: string | undefined;
|
|
290
|
+
skills?: string[] | undefined;
|
|
291
|
+
languages?: string[] | undefined;
|
|
292
|
+
city?: string | undefined;
|
|
293
|
+
country?: string | undefined;
|
|
287
294
|
companyName?: string | undefined;
|
|
288
295
|
companyLinkedinUrl?: string | undefined;
|
|
289
296
|
jobTitle?: string | undefined;
|
|
290
297
|
jobTitles?: string[] | undefined;
|
|
291
|
-
location?: string | undefined;
|
|
292
298
|
locationRadius?: {
|
|
293
299
|
location: string;
|
|
294
300
|
radiusMiles: number;
|
|
295
301
|
} | undefined;
|
|
296
|
-
skills?: string[] | undefined;
|
|
297
|
-
languages?: string[] | undefined;
|
|
298
302
|
minYearsExperience?: number | undefined;
|
|
299
303
|
maxYearsExperience?: number | undefined;
|
|
300
304
|
seniorityLevels?: string[] | undefined;
|
|
@@ -306,16 +310,12 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
306
310
|
pastCompanyName?: string | undefined;
|
|
307
311
|
pastJobTitle?: string | undefined;
|
|
308
312
|
schoolName?: string | undefined;
|
|
309
|
-
country?: string | undefined;
|
|
310
|
-
city?: string | undefined;
|
|
311
313
|
recentlyChangedJobs?: boolean | undefined;
|
|
312
314
|
minConnections?: number | undefined;
|
|
313
315
|
excludeCompanies?: string[] | undefined;
|
|
314
316
|
excludeProfiles?: string[] | undefined;
|
|
315
|
-
limit?: number | undefined;
|
|
316
317
|
enrichEmails?: boolean | undefined;
|
|
317
318
|
includePersonalEmails?: boolean | undefined;
|
|
318
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
319
319
|
}>;
|
|
320
320
|
declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
321
321
|
people: z.ZodArray<z.ZodObject<{
|
|
@@ -371,9 +371,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
371
371
|
companyHeadcount: z.ZodNullable<z.ZodNumber>;
|
|
372
372
|
companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
373
373
|
}, "strip", z.ZodTypeAny, {
|
|
374
|
+
title: string | null;
|
|
374
375
|
companyName: string | null;
|
|
375
376
|
companyLinkedinUrl: string | null;
|
|
376
|
-
title: string | null;
|
|
377
377
|
companyIndustries: string[] | null;
|
|
378
378
|
seniorityLevel: string | null;
|
|
379
379
|
companyDomainUrl: string | null;
|
|
@@ -382,9 +382,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
382
382
|
yearsAtCompany: number | null;
|
|
383
383
|
companyHeadcount: number | null;
|
|
384
384
|
}, {
|
|
385
|
+
title: string | null;
|
|
385
386
|
companyName: string | null;
|
|
386
387
|
companyLinkedinUrl: string | null;
|
|
387
|
-
title: string | null;
|
|
388
388
|
companyIndustries: string[] | null;
|
|
389
389
|
seniorityLevel: string | null;
|
|
390
390
|
companyDomainUrl: string | null;
|
|
@@ -399,13 +399,13 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
399
399
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
400
400
|
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
companyName: string | null;
|
|
403
402
|
title: string | null;
|
|
403
|
+
companyName: string | null;
|
|
404
404
|
startDate: string | number | null;
|
|
405
405
|
endDate: string | number | null;
|
|
406
406
|
}, {
|
|
407
|
-
companyName: string | null;
|
|
408
407
|
title: string | null;
|
|
408
|
+
companyName: string | null;
|
|
409
409
|
startDate: string | number | null;
|
|
410
410
|
endDate: string | number | null;
|
|
411
411
|
}>, "many">>;
|
|
@@ -424,27 +424,32 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
424
424
|
}>, "many">>;
|
|
425
425
|
}, "strip", z.ZodTypeAny, {
|
|
426
426
|
title: string | null;
|
|
427
|
+
name: string | null;
|
|
428
|
+
emails: string[] | null;
|
|
429
|
+
headline: string | null;
|
|
427
430
|
location: string | null;
|
|
428
431
|
skills: string[] | null;
|
|
429
432
|
languages: string[] | null;
|
|
433
|
+
summary: string | null;
|
|
434
|
+
education: {
|
|
435
|
+
instituteName: string | null;
|
|
436
|
+
degreeName: string | null;
|
|
437
|
+
fieldOfStudy: string | null;
|
|
438
|
+
}[] | null;
|
|
439
|
+
websites: string[] | null;
|
|
430
440
|
recentlyChangedJobs: boolean | null;
|
|
431
|
-
name: string | null;
|
|
432
|
-
headline: string | null;
|
|
433
441
|
linkedinUrl: string | null;
|
|
434
442
|
profilePictureUrl: string | null;
|
|
435
|
-
emails: string[] | null;
|
|
436
443
|
twitterHandle: string | null;
|
|
437
|
-
websites: string[] | null;
|
|
438
444
|
seniorityLevel: string | null;
|
|
439
445
|
yearsOfExperience: number | null;
|
|
440
446
|
locationCity: string | null;
|
|
441
447
|
locationCountry: string | null;
|
|
442
|
-
summary: string | null;
|
|
443
448
|
numConnections: number | null;
|
|
444
449
|
currentEmployers: {
|
|
450
|
+
title: string | null;
|
|
445
451
|
companyName: string | null;
|
|
446
452
|
companyLinkedinUrl: string | null;
|
|
447
|
-
title: string | null;
|
|
448
453
|
companyIndustries: string[] | null;
|
|
449
454
|
seniorityLevel: string | null;
|
|
450
455
|
companyDomainUrl: string | null;
|
|
@@ -454,16 +459,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
454
459
|
companyHeadcount: number | null;
|
|
455
460
|
}[] | null;
|
|
456
461
|
pastEmployers: {
|
|
457
|
-
companyName: string | null;
|
|
458
462
|
title: string | null;
|
|
463
|
+
companyName: string | null;
|
|
459
464
|
startDate: string | number | null;
|
|
460
465
|
endDate: string | number | null;
|
|
461
466
|
}[] | null;
|
|
462
|
-
education: {
|
|
463
|
-
instituteName: string | null;
|
|
464
|
-
degreeName: string | null;
|
|
465
|
-
fieldOfStudy: string | null;
|
|
466
|
-
}[] | null;
|
|
467
467
|
enrichedWorkEmail?: string | null | undefined;
|
|
468
468
|
enrichedPersonalEmail?: string | null | undefined;
|
|
469
469
|
enrichedWorkEmails?: {
|
|
@@ -476,27 +476,32 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
476
476
|
}[] | null | undefined;
|
|
477
477
|
}, {
|
|
478
478
|
title: string | null;
|
|
479
|
+
name: string | null;
|
|
480
|
+
emails: string[] | null;
|
|
481
|
+
headline: string | null;
|
|
479
482
|
location: string | null;
|
|
480
483
|
skills: string[] | null;
|
|
481
484
|
languages: string[] | null;
|
|
485
|
+
summary: string | null;
|
|
486
|
+
education: {
|
|
487
|
+
instituteName: string | null;
|
|
488
|
+
degreeName: string | null;
|
|
489
|
+
fieldOfStudy: string | null;
|
|
490
|
+
}[] | null;
|
|
491
|
+
websites: string[] | null;
|
|
482
492
|
recentlyChangedJobs: boolean | null;
|
|
483
|
-
name: string | null;
|
|
484
|
-
headline: string | null;
|
|
485
493
|
linkedinUrl: string | null;
|
|
486
494
|
profilePictureUrl: string | null;
|
|
487
|
-
emails: string[] | null;
|
|
488
495
|
twitterHandle: string | null;
|
|
489
|
-
websites: string[] | null;
|
|
490
496
|
seniorityLevel: string | null;
|
|
491
497
|
yearsOfExperience: number | null;
|
|
492
498
|
locationCity: string | null;
|
|
493
499
|
locationCountry: string | null;
|
|
494
|
-
summary: string | null;
|
|
495
500
|
numConnections: number | null;
|
|
496
501
|
currentEmployers: {
|
|
502
|
+
title: string | null;
|
|
497
503
|
companyName: string | null;
|
|
498
504
|
companyLinkedinUrl: string | null;
|
|
499
|
-
title: string | null;
|
|
500
505
|
companyIndustries: string[] | null;
|
|
501
506
|
seniorityLevel: string | null;
|
|
502
507
|
companyDomainUrl: string | null;
|
|
@@ -506,16 +511,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
506
511
|
companyHeadcount: number | null;
|
|
507
512
|
}[] | null;
|
|
508
513
|
pastEmployers: {
|
|
509
|
-
companyName: string | null;
|
|
510
514
|
title: string | null;
|
|
515
|
+
companyName: string | null;
|
|
511
516
|
startDate: string | number | null;
|
|
512
517
|
endDate: string | number | null;
|
|
513
518
|
}[] | null;
|
|
514
|
-
education: {
|
|
515
|
-
instituteName: string | null;
|
|
516
|
-
degreeName: string | null;
|
|
517
|
-
fieldOfStudy: string | null;
|
|
518
|
-
}[] | null;
|
|
519
519
|
enrichedWorkEmail?: string | null | undefined;
|
|
520
520
|
enrichedPersonalEmail?: string | null | undefined;
|
|
521
521
|
enrichedWorkEmails?: {
|
|
@@ -531,29 +531,36 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
531
531
|
success: z.ZodBoolean;
|
|
532
532
|
error: z.ZodString;
|
|
533
533
|
}, "strip", z.ZodTypeAny, {
|
|
534
|
+
success: boolean;
|
|
535
|
+
error: string;
|
|
534
536
|
people: {
|
|
535
537
|
title: string | null;
|
|
538
|
+
name: string | null;
|
|
539
|
+
emails: string[] | null;
|
|
540
|
+
headline: string | null;
|
|
536
541
|
location: string | null;
|
|
537
542
|
skills: string[] | null;
|
|
538
543
|
languages: string[] | null;
|
|
544
|
+
summary: string | null;
|
|
545
|
+
education: {
|
|
546
|
+
instituteName: string | null;
|
|
547
|
+
degreeName: string | null;
|
|
548
|
+
fieldOfStudy: string | null;
|
|
549
|
+
}[] | null;
|
|
550
|
+
websites: string[] | null;
|
|
539
551
|
recentlyChangedJobs: boolean | null;
|
|
540
|
-
name: string | null;
|
|
541
|
-
headline: string | null;
|
|
542
552
|
linkedinUrl: string | null;
|
|
543
553
|
profilePictureUrl: string | null;
|
|
544
|
-
emails: string[] | null;
|
|
545
554
|
twitterHandle: string | null;
|
|
546
|
-
websites: string[] | null;
|
|
547
555
|
seniorityLevel: string | null;
|
|
548
556
|
yearsOfExperience: number | null;
|
|
549
557
|
locationCity: string | null;
|
|
550
558
|
locationCountry: string | null;
|
|
551
|
-
summary: string | null;
|
|
552
559
|
numConnections: number | null;
|
|
553
560
|
currentEmployers: {
|
|
561
|
+
title: string | null;
|
|
554
562
|
companyName: string | null;
|
|
555
563
|
companyLinkedinUrl: string | null;
|
|
556
|
-
title: string | null;
|
|
557
564
|
companyIndustries: string[] | null;
|
|
558
565
|
seniorityLevel: string | null;
|
|
559
566
|
companyDomainUrl: string | null;
|
|
@@ -563,16 +570,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
563
570
|
companyHeadcount: number | null;
|
|
564
571
|
}[] | null;
|
|
565
572
|
pastEmployers: {
|
|
566
|
-
companyName: string | null;
|
|
567
573
|
title: string | null;
|
|
574
|
+
companyName: string | null;
|
|
568
575
|
startDate: string | number | null;
|
|
569
576
|
endDate: string | number | null;
|
|
570
577
|
}[] | null;
|
|
571
|
-
education: {
|
|
572
|
-
instituteName: string | null;
|
|
573
|
-
degreeName: string | null;
|
|
574
|
-
fieldOfStudy: string | null;
|
|
575
|
-
}[] | null;
|
|
576
578
|
enrichedWorkEmail?: string | null | undefined;
|
|
577
579
|
enrichedPersonalEmail?: string | null | undefined;
|
|
578
580
|
enrichedWorkEmails?: {
|
|
@@ -585,32 +587,37 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
585
587
|
}[] | null | undefined;
|
|
586
588
|
}[];
|
|
587
589
|
totalCount: number;
|
|
590
|
+
}, {
|
|
588
591
|
success: boolean;
|
|
589
592
|
error: string;
|
|
590
|
-
}, {
|
|
591
593
|
people: {
|
|
592
594
|
title: string | null;
|
|
595
|
+
name: string | null;
|
|
596
|
+
emails: string[] | null;
|
|
597
|
+
headline: string | null;
|
|
593
598
|
location: string | null;
|
|
594
599
|
skills: string[] | null;
|
|
595
600
|
languages: string[] | null;
|
|
601
|
+
summary: string | null;
|
|
602
|
+
education: {
|
|
603
|
+
instituteName: string | null;
|
|
604
|
+
degreeName: string | null;
|
|
605
|
+
fieldOfStudy: string | null;
|
|
606
|
+
}[] | null;
|
|
607
|
+
websites: string[] | null;
|
|
596
608
|
recentlyChangedJobs: boolean | null;
|
|
597
|
-
name: string | null;
|
|
598
|
-
headline: string | null;
|
|
599
609
|
linkedinUrl: string | null;
|
|
600
610
|
profilePictureUrl: string | null;
|
|
601
|
-
emails: string[] | null;
|
|
602
611
|
twitterHandle: string | null;
|
|
603
|
-
websites: string[] | null;
|
|
604
612
|
seniorityLevel: string | null;
|
|
605
613
|
yearsOfExperience: number | null;
|
|
606
614
|
locationCity: string | null;
|
|
607
615
|
locationCountry: string | null;
|
|
608
|
-
summary: string | null;
|
|
609
616
|
numConnections: number | null;
|
|
610
617
|
currentEmployers: {
|
|
618
|
+
title: string | null;
|
|
611
619
|
companyName: string | null;
|
|
612
620
|
companyLinkedinUrl: string | null;
|
|
613
|
-
title: string | null;
|
|
614
621
|
companyIndustries: string[] | null;
|
|
615
622
|
seniorityLevel: string | null;
|
|
616
623
|
companyDomainUrl: string | null;
|
|
@@ -620,16 +627,11 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
620
627
|
companyHeadcount: number | null;
|
|
621
628
|
}[] | null;
|
|
622
629
|
pastEmployers: {
|
|
623
|
-
companyName: string | null;
|
|
624
630
|
title: string | null;
|
|
631
|
+
companyName: string | null;
|
|
625
632
|
startDate: string | number | null;
|
|
626
633
|
endDate: string | number | null;
|
|
627
634
|
}[] | null;
|
|
628
|
-
education: {
|
|
629
|
-
instituteName: string | null;
|
|
630
|
-
degreeName: string | null;
|
|
631
|
-
fieldOfStudy: string | null;
|
|
632
|
-
}[] | null;
|
|
633
635
|
enrichedWorkEmail?: string | null | undefined;
|
|
634
636
|
enrichedPersonalEmail?: string | null | undefined;
|
|
635
637
|
enrichedWorkEmails?: {
|
|
@@ -642,8 +644,6 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
642
644
|
}[] | null | undefined;
|
|
643
645
|
}[];
|
|
644
646
|
totalCount: number;
|
|
645
|
-
success: boolean;
|
|
646
|
-
error: string;
|
|
647
647
|
}>;
|
|
648
648
|
type PeopleSearchToolParams = z.output<typeof PeopleSearchToolParamsSchema>;
|
|
649
649
|
type PeopleSearchToolResult = z.output<typeof PeopleSearchToolResultSchema>;
|
|
@@ -716,17 +716,21 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
716
716
|
}, "strip", z.ZodTypeAny, {
|
|
717
717
|
enrichEmails: boolean;
|
|
718
718
|
includePersonalEmails: boolean;
|
|
719
|
+
limit?: number | undefined;
|
|
720
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
721
|
+
location?: string | undefined;
|
|
722
|
+
skills?: string[] | undefined;
|
|
723
|
+
languages?: string[] | undefined;
|
|
724
|
+
city?: string | undefined;
|
|
725
|
+
country?: string | undefined;
|
|
719
726
|
companyName?: string | undefined;
|
|
720
727
|
companyLinkedinUrl?: string | undefined;
|
|
721
728
|
jobTitle?: string | undefined;
|
|
722
729
|
jobTitles?: string[] | undefined;
|
|
723
|
-
location?: string | undefined;
|
|
724
730
|
locationRadius?: {
|
|
725
731
|
location: string;
|
|
726
732
|
radiusMiles: number;
|
|
727
733
|
} | undefined;
|
|
728
|
-
skills?: string[] | undefined;
|
|
729
|
-
languages?: string[] | undefined;
|
|
730
734
|
minYearsExperience?: number | undefined;
|
|
731
735
|
maxYearsExperience?: number | undefined;
|
|
732
736
|
seniorityLevels?: string[] | undefined;
|
|
@@ -738,26 +742,26 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
738
742
|
pastCompanyName?: string | undefined;
|
|
739
743
|
pastJobTitle?: string | undefined;
|
|
740
744
|
schoolName?: string | undefined;
|
|
741
|
-
country?: string | undefined;
|
|
742
|
-
city?: string | undefined;
|
|
743
745
|
recentlyChangedJobs?: boolean | undefined;
|
|
744
746
|
minConnections?: number | undefined;
|
|
745
747
|
excludeCompanies?: string[] | undefined;
|
|
746
748
|
excludeProfiles?: string[] | undefined;
|
|
749
|
+
}, {
|
|
747
750
|
limit?: number | undefined;
|
|
748
751
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
749
|
-
|
|
752
|
+
location?: string | undefined;
|
|
753
|
+
skills?: string[] | undefined;
|
|
754
|
+
languages?: string[] | undefined;
|
|
755
|
+
city?: string | undefined;
|
|
756
|
+
country?: string | undefined;
|
|
750
757
|
companyName?: string | undefined;
|
|
751
758
|
companyLinkedinUrl?: string | undefined;
|
|
752
759
|
jobTitle?: string | undefined;
|
|
753
760
|
jobTitles?: string[] | undefined;
|
|
754
|
-
location?: string | undefined;
|
|
755
761
|
locationRadius?: {
|
|
756
762
|
location: string;
|
|
757
763
|
radiusMiles: number;
|
|
758
764
|
} | undefined;
|
|
759
|
-
skills?: string[] | undefined;
|
|
760
|
-
languages?: string[] | undefined;
|
|
761
765
|
minYearsExperience?: number | undefined;
|
|
762
766
|
maxYearsExperience?: number | undefined;
|
|
763
767
|
seniorityLevels?: string[] | undefined;
|
|
@@ -769,16 +773,12 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
769
773
|
pastCompanyName?: string | undefined;
|
|
770
774
|
pastJobTitle?: string | undefined;
|
|
771
775
|
schoolName?: string | undefined;
|
|
772
|
-
country?: string | undefined;
|
|
773
|
-
city?: string | undefined;
|
|
774
776
|
recentlyChangedJobs?: boolean | undefined;
|
|
775
777
|
minConnections?: number | undefined;
|
|
776
778
|
excludeCompanies?: string[] | undefined;
|
|
777
779
|
excludeProfiles?: string[] | undefined;
|
|
778
|
-
limit?: number | undefined;
|
|
779
780
|
enrichEmails?: boolean | undefined;
|
|
780
781
|
includePersonalEmails?: boolean | undefined;
|
|
781
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
782
782
|
}>;
|
|
783
783
|
static readonly resultSchema: z.ZodObject<{
|
|
784
784
|
people: z.ZodArray<z.ZodObject<{
|
|
@@ -834,9 +834,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
834
834
|
companyHeadcount: z.ZodNullable<z.ZodNumber>;
|
|
835
835
|
companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
836
836
|
}, "strip", z.ZodTypeAny, {
|
|
837
|
+
title: string | null;
|
|
837
838
|
companyName: string | null;
|
|
838
839
|
companyLinkedinUrl: string | null;
|
|
839
|
-
title: string | null;
|
|
840
840
|
companyIndustries: string[] | null;
|
|
841
841
|
seniorityLevel: string | null;
|
|
842
842
|
companyDomainUrl: string | null;
|
|
@@ -845,9 +845,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
845
845
|
yearsAtCompany: number | null;
|
|
846
846
|
companyHeadcount: number | null;
|
|
847
847
|
}, {
|
|
848
|
+
title: string | null;
|
|
848
849
|
companyName: string | null;
|
|
849
850
|
companyLinkedinUrl: string | null;
|
|
850
|
-
title: string | null;
|
|
851
851
|
companyIndustries: string[] | null;
|
|
852
852
|
seniorityLevel: string | null;
|
|
853
853
|
companyDomainUrl: string | null;
|
|
@@ -862,13 +862,13 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
862
862
|
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
863
863
|
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
864
864
|
}, "strip", z.ZodTypeAny, {
|
|
865
|
-
companyName: string | null;
|
|
866
865
|
title: string | null;
|
|
866
|
+
companyName: string | null;
|
|
867
867
|
startDate: string | number | null;
|
|
868
868
|
endDate: string | number | null;
|
|
869
869
|
}, {
|
|
870
|
-
companyName: string | null;
|
|
871
870
|
title: string | null;
|
|
871
|
+
companyName: string | null;
|
|
872
872
|
startDate: string | number | null;
|
|
873
873
|
endDate: string | number | null;
|
|
874
874
|
}>, "many">>;
|
|
@@ -887,27 +887,32 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
887
887
|
}>, "many">>;
|
|
888
888
|
}, "strip", z.ZodTypeAny, {
|
|
889
889
|
title: string | null;
|
|
890
|
+
name: string | null;
|
|
891
|
+
emails: string[] | null;
|
|
892
|
+
headline: string | null;
|
|
890
893
|
location: string | null;
|
|
891
894
|
skills: string[] | null;
|
|
892
895
|
languages: string[] | null;
|
|
896
|
+
summary: string | null;
|
|
897
|
+
education: {
|
|
898
|
+
instituteName: string | null;
|
|
899
|
+
degreeName: string | null;
|
|
900
|
+
fieldOfStudy: string | null;
|
|
901
|
+
}[] | null;
|
|
902
|
+
websites: string[] | null;
|
|
893
903
|
recentlyChangedJobs: boolean | null;
|
|
894
|
-
name: string | null;
|
|
895
|
-
headline: string | null;
|
|
896
904
|
linkedinUrl: string | null;
|
|
897
905
|
profilePictureUrl: string | null;
|
|
898
|
-
emails: string[] | null;
|
|
899
906
|
twitterHandle: string | null;
|
|
900
|
-
websites: string[] | null;
|
|
901
907
|
seniorityLevel: string | null;
|
|
902
908
|
yearsOfExperience: number | null;
|
|
903
909
|
locationCity: string | null;
|
|
904
910
|
locationCountry: string | null;
|
|
905
|
-
summary: string | null;
|
|
906
911
|
numConnections: number | null;
|
|
907
912
|
currentEmployers: {
|
|
913
|
+
title: string | null;
|
|
908
914
|
companyName: string | null;
|
|
909
915
|
companyLinkedinUrl: string | null;
|
|
910
|
-
title: string | null;
|
|
911
916
|
companyIndustries: string[] | null;
|
|
912
917
|
seniorityLevel: string | null;
|
|
913
918
|
companyDomainUrl: string | null;
|
|
@@ -917,16 +922,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
917
922
|
companyHeadcount: number | null;
|
|
918
923
|
}[] | null;
|
|
919
924
|
pastEmployers: {
|
|
920
|
-
companyName: string | null;
|
|
921
925
|
title: string | null;
|
|
926
|
+
companyName: string | null;
|
|
922
927
|
startDate: string | number | null;
|
|
923
928
|
endDate: string | number | null;
|
|
924
929
|
}[] | null;
|
|
925
|
-
education: {
|
|
926
|
-
instituteName: string | null;
|
|
927
|
-
degreeName: string | null;
|
|
928
|
-
fieldOfStudy: string | null;
|
|
929
|
-
}[] | null;
|
|
930
930
|
enrichedWorkEmail?: string | null | undefined;
|
|
931
931
|
enrichedPersonalEmail?: string | null | undefined;
|
|
932
932
|
enrichedWorkEmails?: {
|
|
@@ -939,27 +939,32 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
939
939
|
}[] | null | undefined;
|
|
940
940
|
}, {
|
|
941
941
|
title: string | null;
|
|
942
|
+
name: string | null;
|
|
943
|
+
emails: string[] | null;
|
|
944
|
+
headline: string | null;
|
|
942
945
|
location: string | null;
|
|
943
946
|
skills: string[] | null;
|
|
944
947
|
languages: string[] | null;
|
|
948
|
+
summary: string | null;
|
|
949
|
+
education: {
|
|
950
|
+
instituteName: string | null;
|
|
951
|
+
degreeName: string | null;
|
|
952
|
+
fieldOfStudy: string | null;
|
|
953
|
+
}[] | null;
|
|
954
|
+
websites: string[] | null;
|
|
945
955
|
recentlyChangedJobs: boolean | null;
|
|
946
|
-
name: string | null;
|
|
947
|
-
headline: string | null;
|
|
948
956
|
linkedinUrl: string | null;
|
|
949
957
|
profilePictureUrl: string | null;
|
|
950
|
-
emails: string[] | null;
|
|
951
958
|
twitterHandle: string | null;
|
|
952
|
-
websites: string[] | null;
|
|
953
959
|
seniorityLevel: string | null;
|
|
954
960
|
yearsOfExperience: number | null;
|
|
955
961
|
locationCity: string | null;
|
|
956
962
|
locationCountry: string | null;
|
|
957
|
-
summary: string | null;
|
|
958
963
|
numConnections: number | null;
|
|
959
964
|
currentEmployers: {
|
|
965
|
+
title: string | null;
|
|
960
966
|
companyName: string | null;
|
|
961
967
|
companyLinkedinUrl: string | null;
|
|
962
|
-
title: string | null;
|
|
963
968
|
companyIndustries: string[] | null;
|
|
964
969
|
seniorityLevel: string | null;
|
|
965
970
|
companyDomainUrl: string | null;
|
|
@@ -969,16 +974,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
969
974
|
companyHeadcount: number | null;
|
|
970
975
|
}[] | null;
|
|
971
976
|
pastEmployers: {
|
|
972
|
-
companyName: string | null;
|
|
973
977
|
title: string | null;
|
|
978
|
+
companyName: string | null;
|
|
974
979
|
startDate: string | number | null;
|
|
975
980
|
endDate: string | number | null;
|
|
976
981
|
}[] | null;
|
|
977
|
-
education: {
|
|
978
|
-
instituteName: string | null;
|
|
979
|
-
degreeName: string | null;
|
|
980
|
-
fieldOfStudy: string | null;
|
|
981
|
-
}[] | null;
|
|
982
982
|
enrichedWorkEmail?: string | null | undefined;
|
|
983
983
|
enrichedPersonalEmail?: string | null | undefined;
|
|
984
984
|
enrichedWorkEmails?: {
|
|
@@ -994,29 +994,36 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
994
994
|
success: z.ZodBoolean;
|
|
995
995
|
error: z.ZodString;
|
|
996
996
|
}, "strip", z.ZodTypeAny, {
|
|
997
|
+
success: boolean;
|
|
998
|
+
error: string;
|
|
997
999
|
people: {
|
|
998
1000
|
title: string | null;
|
|
1001
|
+
name: string | null;
|
|
1002
|
+
emails: string[] | null;
|
|
1003
|
+
headline: string | null;
|
|
999
1004
|
location: string | null;
|
|
1000
1005
|
skills: string[] | null;
|
|
1001
1006
|
languages: string[] | null;
|
|
1007
|
+
summary: string | null;
|
|
1008
|
+
education: {
|
|
1009
|
+
instituteName: string | null;
|
|
1010
|
+
degreeName: string | null;
|
|
1011
|
+
fieldOfStudy: string | null;
|
|
1012
|
+
}[] | null;
|
|
1013
|
+
websites: string[] | null;
|
|
1002
1014
|
recentlyChangedJobs: boolean | null;
|
|
1003
|
-
name: string | null;
|
|
1004
|
-
headline: string | null;
|
|
1005
1015
|
linkedinUrl: string | null;
|
|
1006
1016
|
profilePictureUrl: string | null;
|
|
1007
|
-
emails: string[] | null;
|
|
1008
1017
|
twitterHandle: string | null;
|
|
1009
|
-
websites: string[] | null;
|
|
1010
1018
|
seniorityLevel: string | null;
|
|
1011
1019
|
yearsOfExperience: number | null;
|
|
1012
1020
|
locationCity: string | null;
|
|
1013
1021
|
locationCountry: string | null;
|
|
1014
|
-
summary: string | null;
|
|
1015
1022
|
numConnections: number | null;
|
|
1016
1023
|
currentEmployers: {
|
|
1024
|
+
title: string | null;
|
|
1017
1025
|
companyName: string | null;
|
|
1018
1026
|
companyLinkedinUrl: string | null;
|
|
1019
|
-
title: string | null;
|
|
1020
1027
|
companyIndustries: string[] | null;
|
|
1021
1028
|
seniorityLevel: string | null;
|
|
1022
1029
|
companyDomainUrl: string | null;
|
|
@@ -1026,16 +1033,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1026
1033
|
companyHeadcount: number | null;
|
|
1027
1034
|
}[] | null;
|
|
1028
1035
|
pastEmployers: {
|
|
1029
|
-
companyName: string | null;
|
|
1030
1036
|
title: string | null;
|
|
1037
|
+
companyName: string | null;
|
|
1031
1038
|
startDate: string | number | null;
|
|
1032
1039
|
endDate: string | number | null;
|
|
1033
1040
|
}[] | null;
|
|
1034
|
-
education: {
|
|
1035
|
-
instituteName: string | null;
|
|
1036
|
-
degreeName: string | null;
|
|
1037
|
-
fieldOfStudy: string | null;
|
|
1038
|
-
}[] | null;
|
|
1039
1041
|
enrichedWorkEmail?: string | null | undefined;
|
|
1040
1042
|
enrichedPersonalEmail?: string | null | undefined;
|
|
1041
1043
|
enrichedWorkEmails?: {
|
|
@@ -1048,32 +1050,37 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1048
1050
|
}[] | null | undefined;
|
|
1049
1051
|
}[];
|
|
1050
1052
|
totalCount: number;
|
|
1053
|
+
}, {
|
|
1051
1054
|
success: boolean;
|
|
1052
1055
|
error: string;
|
|
1053
|
-
}, {
|
|
1054
1056
|
people: {
|
|
1055
1057
|
title: string | null;
|
|
1058
|
+
name: string | null;
|
|
1059
|
+
emails: string[] | null;
|
|
1060
|
+
headline: string | null;
|
|
1056
1061
|
location: string | null;
|
|
1057
1062
|
skills: string[] | null;
|
|
1058
1063
|
languages: string[] | null;
|
|
1064
|
+
summary: string | null;
|
|
1065
|
+
education: {
|
|
1066
|
+
instituteName: string | null;
|
|
1067
|
+
degreeName: string | null;
|
|
1068
|
+
fieldOfStudy: string | null;
|
|
1069
|
+
}[] | null;
|
|
1070
|
+
websites: string[] | null;
|
|
1059
1071
|
recentlyChangedJobs: boolean | null;
|
|
1060
|
-
name: string | null;
|
|
1061
|
-
headline: string | null;
|
|
1062
1072
|
linkedinUrl: string | null;
|
|
1063
1073
|
profilePictureUrl: string | null;
|
|
1064
|
-
emails: string[] | null;
|
|
1065
1074
|
twitterHandle: string | null;
|
|
1066
|
-
websites: string[] | null;
|
|
1067
1075
|
seniorityLevel: string | null;
|
|
1068
1076
|
yearsOfExperience: number | null;
|
|
1069
1077
|
locationCity: string | null;
|
|
1070
1078
|
locationCountry: string | null;
|
|
1071
|
-
summary: string | null;
|
|
1072
1079
|
numConnections: number | null;
|
|
1073
1080
|
currentEmployers: {
|
|
1081
|
+
title: string | null;
|
|
1074
1082
|
companyName: string | null;
|
|
1075
1083
|
companyLinkedinUrl: string | null;
|
|
1076
|
-
title: string | null;
|
|
1077
1084
|
companyIndustries: string[] | null;
|
|
1078
1085
|
seniorityLevel: string | null;
|
|
1079
1086
|
companyDomainUrl: string | null;
|
|
@@ -1083,16 +1090,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1083
1090
|
companyHeadcount: number | null;
|
|
1084
1091
|
}[] | null;
|
|
1085
1092
|
pastEmployers: {
|
|
1086
|
-
companyName: string | null;
|
|
1087
1093
|
title: string | null;
|
|
1094
|
+
companyName: string | null;
|
|
1088
1095
|
startDate: string | number | null;
|
|
1089
1096
|
endDate: string | number | null;
|
|
1090
1097
|
}[] | null;
|
|
1091
|
-
education: {
|
|
1092
|
-
instituteName: string | null;
|
|
1093
|
-
degreeName: string | null;
|
|
1094
|
-
fieldOfStudy: string | null;
|
|
1095
|
-
}[] | null;
|
|
1096
1098
|
enrichedWorkEmail?: string | null | undefined;
|
|
1097
1099
|
enrichedPersonalEmail?: string | null | undefined;
|
|
1098
1100
|
enrichedWorkEmails?: {
|
|
@@ -1105,11 +1107,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
1105
1107
|
}[] | null | undefined;
|
|
1106
1108
|
}[];
|
|
1107
1109
|
totalCount: number;
|
|
1108
|
-
success: boolean;
|
|
1109
|
-
error: string;
|
|
1110
1110
|
}>;
|
|
1111
1111
|
static readonly shortDescription = "Comprehensive people search by company, title, location, skills, with optional email enrichment";
|
|
1112
|
-
static readonly longDescription
|
|
1112
|
+
static readonly longDescription: string;
|
|
1113
1113
|
static readonly alias = "people";
|
|
1114
1114
|
static readonly type = "tool";
|
|
1115
1115
|
constructor(params?: PeopleSearchToolParamsInput, context?: BubbleContext);
|