@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
|
@@ -27,46 +27,46 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
27
27
|
companyLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
28
28
|
seniorityLevel: z.ZodNullable<z.ZodString>;
|
|
29
29
|
functionCategory: z.ZodNullable<z.ZodString>;
|
|
30
|
-
startDate: z.ZodNullable<z.ZodString
|
|
30
|
+
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31
31
|
yearsAtCompany: z.ZodNullable<z.ZodNumber>;
|
|
32
32
|
companyHeadcount: z.ZodNullable<z.ZodNumber>;
|
|
33
33
|
companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
35
|
-
title: string | null;
|
|
36
35
|
companyName: string | null;
|
|
37
36
|
companyLinkedinUrl: string | null;
|
|
37
|
+
title: string | null;
|
|
38
|
+
companyIndustries: string[] | null;
|
|
38
39
|
seniorityLevel: string | null;
|
|
39
40
|
functionCategory: string | null;
|
|
40
|
-
startDate: string | null;
|
|
41
|
+
startDate: string | number | null;
|
|
41
42
|
yearsAtCompany: number | null;
|
|
42
43
|
companyHeadcount: number | null;
|
|
43
|
-
companyIndustries: string[] | null;
|
|
44
44
|
}, {
|
|
45
|
-
title: string | null;
|
|
46
45
|
companyName: string | null;
|
|
47
46
|
companyLinkedinUrl: string | null;
|
|
47
|
+
title: string | null;
|
|
48
|
+
companyIndustries: string[] | null;
|
|
48
49
|
seniorityLevel: string | null;
|
|
49
50
|
functionCategory: string | null;
|
|
50
|
-
startDate: string | null;
|
|
51
|
+
startDate: string | number | null;
|
|
51
52
|
yearsAtCompany: number | null;
|
|
52
53
|
companyHeadcount: number | null;
|
|
53
|
-
companyIndustries: string[] | null;
|
|
54
54
|
}>, "many">>;
|
|
55
55
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
56
56
|
title: z.ZodNullable<z.ZodString>;
|
|
57
57
|
companyName: z.ZodNullable<z.ZodString>;
|
|
58
|
-
startDate: z.ZodNullable<z.ZodString
|
|
59
|
-
endDate: z.ZodNullable<z.ZodString
|
|
58
|
+
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
59
|
+
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
60
60
|
}, "strip", z.ZodTypeAny, {
|
|
61
|
-
title: string | null;
|
|
62
61
|
companyName: string | null;
|
|
63
|
-
startDate: string | null;
|
|
64
|
-
endDate: string | null;
|
|
65
|
-
}, {
|
|
66
62
|
title: string | null;
|
|
63
|
+
startDate: string | number | null;
|
|
64
|
+
endDate: string | number | null;
|
|
65
|
+
}, {
|
|
67
66
|
companyName: string | null;
|
|
68
|
-
|
|
69
|
-
|
|
67
|
+
title: string | null;
|
|
68
|
+
startDate: string | number | null;
|
|
69
|
+
endDate: string | number | null;
|
|
70
70
|
}>, "many">>;
|
|
71
71
|
education: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
72
72
|
instituteName: z.ZodNullable<z.ZodString>;
|
|
@@ -83,85 +83,85 @@ declare const PersonResultSchema: z.ZodObject<{
|
|
|
83
83
|
}>, "many">>;
|
|
84
84
|
}, "strip", z.ZodTypeAny, {
|
|
85
85
|
title: string | null;
|
|
86
|
-
name: string | null;
|
|
87
|
-
summary: string | null;
|
|
88
86
|
location: string | null;
|
|
89
|
-
headline: string | null;
|
|
90
|
-
seniorityLevel: string | null;
|
|
91
|
-
emails: string[] | null;
|
|
92
|
-
languages: string[] | null;
|
|
93
87
|
skills: string[] | null;
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
}[] | null;
|
|
99
|
-
websites: string[] | null;
|
|
88
|
+
languages: string[] | null;
|
|
89
|
+
recentlyChangedJobs: boolean | null;
|
|
90
|
+
name: string | null;
|
|
91
|
+
headline: string | null;
|
|
100
92
|
linkedinUrl: string | null;
|
|
101
93
|
profilePictureUrl: string | null;
|
|
94
|
+
emails: string[] | null;
|
|
102
95
|
twitterHandle: string | null;
|
|
96
|
+
websites: string[] | null;
|
|
97
|
+
seniorityLevel: string | null;
|
|
103
98
|
yearsOfExperience: number | null;
|
|
104
|
-
recentlyChangedJobs: boolean | null;
|
|
105
99
|
locationCity: string | null;
|
|
106
100
|
locationCountry: string | null;
|
|
101
|
+
summary: string | null;
|
|
107
102
|
numConnections: number | null;
|
|
108
103
|
currentEmployers: {
|
|
109
|
-
title: string | null;
|
|
110
104
|
companyName: string | null;
|
|
111
105
|
companyLinkedinUrl: string | null;
|
|
106
|
+
title: string | null;
|
|
107
|
+
companyIndustries: string[] | null;
|
|
112
108
|
seniorityLevel: string | null;
|
|
113
109
|
functionCategory: string | null;
|
|
114
|
-
startDate: string | null;
|
|
110
|
+
startDate: string | number | null;
|
|
115
111
|
yearsAtCompany: number | null;
|
|
116
112
|
companyHeadcount: number | null;
|
|
117
|
-
companyIndustries: string[] | null;
|
|
118
113
|
}[] | null;
|
|
119
114
|
pastEmployers: {
|
|
120
|
-
title: string | null;
|
|
121
115
|
companyName: string | null;
|
|
122
|
-
|
|
123
|
-
|
|
116
|
+
title: string | null;
|
|
117
|
+
startDate: string | number | null;
|
|
118
|
+
endDate: string | number | null;
|
|
124
119
|
}[] | null;
|
|
125
|
-
}, {
|
|
126
|
-
title: string | null;
|
|
127
|
-
name: string | null;
|
|
128
|
-
summary: string | null;
|
|
129
|
-
location: string | null;
|
|
130
|
-
headline: string | null;
|
|
131
|
-
seniorityLevel: string | null;
|
|
132
|
-
emails: string[] | null;
|
|
133
|
-
languages: string[] | null;
|
|
134
|
-
skills: string[] | null;
|
|
135
120
|
education: {
|
|
136
121
|
instituteName: string | null;
|
|
137
122
|
degreeName: string | null;
|
|
138
123
|
fieldOfStudy: string | null;
|
|
139
124
|
}[] | null;
|
|
140
|
-
|
|
125
|
+
}, {
|
|
126
|
+
title: string | null;
|
|
127
|
+
location: string | null;
|
|
128
|
+
skills: string[] | null;
|
|
129
|
+
languages: string[] | null;
|
|
130
|
+
recentlyChangedJobs: boolean | null;
|
|
131
|
+
name: string | null;
|
|
132
|
+
headline: string | null;
|
|
141
133
|
linkedinUrl: string | null;
|
|
142
134
|
profilePictureUrl: string | null;
|
|
135
|
+
emails: string[] | null;
|
|
143
136
|
twitterHandle: string | null;
|
|
137
|
+
websites: string[] | null;
|
|
138
|
+
seniorityLevel: string | null;
|
|
144
139
|
yearsOfExperience: number | null;
|
|
145
|
-
recentlyChangedJobs: boolean | null;
|
|
146
140
|
locationCity: string | null;
|
|
147
141
|
locationCountry: string | null;
|
|
142
|
+
summary: string | null;
|
|
148
143
|
numConnections: number | null;
|
|
149
144
|
currentEmployers: {
|
|
150
|
-
title: string | null;
|
|
151
145
|
companyName: string | null;
|
|
152
146
|
companyLinkedinUrl: string | null;
|
|
147
|
+
title: string | null;
|
|
148
|
+
companyIndustries: string[] | null;
|
|
153
149
|
seniorityLevel: string | null;
|
|
154
150
|
functionCategory: string | null;
|
|
155
|
-
startDate: string | null;
|
|
151
|
+
startDate: string | number | null;
|
|
156
152
|
yearsAtCompany: number | null;
|
|
157
153
|
companyHeadcount: number | null;
|
|
158
|
-
companyIndustries: string[] | null;
|
|
159
154
|
}[] | null;
|
|
160
155
|
pastEmployers: {
|
|
161
|
-
title: string | null;
|
|
162
156
|
companyName: string | null;
|
|
163
|
-
|
|
164
|
-
|
|
157
|
+
title: string | null;
|
|
158
|
+
startDate: string | number | null;
|
|
159
|
+
endDate: string | number | null;
|
|
160
|
+
}[] | null;
|
|
161
|
+
education: {
|
|
162
|
+
instituteName: string | null;
|
|
163
|
+
degreeName: string | null;
|
|
164
|
+
fieldOfStudy: string | null;
|
|
165
165
|
}[] | null;
|
|
166
166
|
}>;
|
|
167
167
|
declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
@@ -202,67 +202,67 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
|
|
|
202
202
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
203
203
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
206
|
-
limit?: number | undefined;
|
|
207
|
-
location?: string | undefined;
|
|
208
205
|
companyName?: string | undefined;
|
|
209
206
|
companyLinkedinUrl?: string | undefined;
|
|
210
|
-
city?: string | undefined;
|
|
211
|
-
country?: string | undefined;
|
|
212
|
-
languages?: string[] | undefined;
|
|
213
|
-
skills?: string[] | undefined;
|
|
214
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
215
|
-
companyIndustries?: string[] | undefined;
|
|
216
207
|
jobTitle?: string | undefined;
|
|
217
208
|
jobTitles?: string[] | undefined;
|
|
209
|
+
location?: string | undefined;
|
|
218
210
|
locationRadius?: {
|
|
219
211
|
location: string;
|
|
220
212
|
radiusMiles: number;
|
|
221
213
|
} | undefined;
|
|
214
|
+
skills?: string[] | undefined;
|
|
215
|
+
languages?: string[] | undefined;
|
|
222
216
|
minYearsExperience?: number | undefined;
|
|
223
217
|
maxYearsExperience?: number | undefined;
|
|
224
218
|
seniorityLevels?: string[] | undefined;
|
|
225
219
|
functionCategories?: string[] | undefined;
|
|
220
|
+
companyIndustries?: string[] | undefined;
|
|
226
221
|
minCompanyHeadcount?: number | undefined;
|
|
227
222
|
maxCompanyHeadcount?: number | undefined;
|
|
228
223
|
minYearsAtCompany?: number | undefined;
|
|
229
224
|
pastCompanyName?: string | undefined;
|
|
230
225
|
pastJobTitle?: string | undefined;
|
|
231
226
|
schoolName?: string | undefined;
|
|
227
|
+
country?: string | undefined;
|
|
228
|
+
city?: string | undefined;
|
|
229
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
232
230
|
minConnections?: number | undefined;
|
|
233
231
|
excludeCompanies?: string[] | undefined;
|
|
234
232
|
excludeProfiles?: string[] | undefined;
|
|
235
|
-
}, {
|
|
236
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
237
233
|
limit?: number | undefined;
|
|
238
|
-
|
|
234
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
235
|
+
}, {
|
|
239
236
|
companyName?: string | undefined;
|
|
240
237
|
companyLinkedinUrl?: string | undefined;
|
|
241
|
-
city?: string | undefined;
|
|
242
|
-
country?: string | undefined;
|
|
243
|
-
languages?: string[] | undefined;
|
|
244
|
-
skills?: string[] | undefined;
|
|
245
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
246
|
-
companyIndustries?: string[] | undefined;
|
|
247
238
|
jobTitle?: string | undefined;
|
|
248
239
|
jobTitles?: string[] | undefined;
|
|
240
|
+
location?: string | undefined;
|
|
249
241
|
locationRadius?: {
|
|
250
242
|
location: string;
|
|
251
243
|
radiusMiles: number;
|
|
252
244
|
} | undefined;
|
|
245
|
+
skills?: string[] | undefined;
|
|
246
|
+
languages?: string[] | undefined;
|
|
253
247
|
minYearsExperience?: number | undefined;
|
|
254
248
|
maxYearsExperience?: number | undefined;
|
|
255
249
|
seniorityLevels?: string[] | undefined;
|
|
256
250
|
functionCategories?: string[] | undefined;
|
|
251
|
+
companyIndustries?: string[] | undefined;
|
|
257
252
|
minCompanyHeadcount?: number | undefined;
|
|
258
253
|
maxCompanyHeadcount?: number | undefined;
|
|
259
254
|
minYearsAtCompany?: number | undefined;
|
|
260
255
|
pastCompanyName?: string | undefined;
|
|
261
256
|
pastJobTitle?: string | undefined;
|
|
262
257
|
schoolName?: string | undefined;
|
|
258
|
+
country?: string | undefined;
|
|
259
|
+
city?: string | undefined;
|
|
260
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
263
261
|
minConnections?: number | undefined;
|
|
264
262
|
excludeCompanies?: string[] | undefined;
|
|
265
263
|
excludeProfiles?: string[] | undefined;
|
|
264
|
+
limit?: number | undefined;
|
|
265
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
266
266
|
}>;
|
|
267
267
|
declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
268
268
|
people: z.ZodArray<z.ZodObject<{
|
|
@@ -290,46 +290,46 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
290
290
|
companyLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
291
291
|
seniorityLevel: z.ZodNullable<z.ZodString>;
|
|
292
292
|
functionCategory: z.ZodNullable<z.ZodString>;
|
|
293
|
-
startDate: z.ZodNullable<z.ZodString
|
|
293
|
+
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
294
294
|
yearsAtCompany: z.ZodNullable<z.ZodNumber>;
|
|
295
295
|
companyHeadcount: z.ZodNullable<z.ZodNumber>;
|
|
296
296
|
companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
297
297
|
}, "strip", z.ZodTypeAny, {
|
|
298
|
-
title: string | null;
|
|
299
298
|
companyName: string | null;
|
|
300
299
|
companyLinkedinUrl: string | null;
|
|
300
|
+
title: string | null;
|
|
301
|
+
companyIndustries: string[] | null;
|
|
301
302
|
seniorityLevel: string | null;
|
|
302
303
|
functionCategory: string | null;
|
|
303
|
-
startDate: string | null;
|
|
304
|
+
startDate: string | number | null;
|
|
304
305
|
yearsAtCompany: number | null;
|
|
305
306
|
companyHeadcount: number | null;
|
|
306
|
-
companyIndustries: string[] | null;
|
|
307
307
|
}, {
|
|
308
|
-
title: string | null;
|
|
309
308
|
companyName: string | null;
|
|
310
309
|
companyLinkedinUrl: string | null;
|
|
310
|
+
title: string | null;
|
|
311
|
+
companyIndustries: string[] | null;
|
|
311
312
|
seniorityLevel: string | null;
|
|
312
313
|
functionCategory: string | null;
|
|
313
|
-
startDate: string | null;
|
|
314
|
+
startDate: string | number | null;
|
|
314
315
|
yearsAtCompany: number | null;
|
|
315
316
|
companyHeadcount: number | null;
|
|
316
|
-
companyIndustries: string[] | null;
|
|
317
317
|
}>, "many">>;
|
|
318
318
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
319
319
|
title: z.ZodNullable<z.ZodString>;
|
|
320
320
|
companyName: z.ZodNullable<z.ZodString>;
|
|
321
|
-
startDate: z.ZodNullable<z.ZodString
|
|
322
|
-
endDate: z.ZodNullable<z.ZodString
|
|
321
|
+
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
322
|
+
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
323
323
|
}, "strip", z.ZodTypeAny, {
|
|
324
|
-
title: string | null;
|
|
325
324
|
companyName: string | null;
|
|
326
|
-
startDate: string | null;
|
|
327
|
-
endDate: string | null;
|
|
328
|
-
}, {
|
|
329
325
|
title: string | null;
|
|
326
|
+
startDate: string | number | null;
|
|
327
|
+
endDate: string | number | null;
|
|
328
|
+
}, {
|
|
330
329
|
companyName: string | null;
|
|
331
|
-
|
|
332
|
-
|
|
330
|
+
title: string | null;
|
|
331
|
+
startDate: string | number | null;
|
|
332
|
+
endDate: string | number | null;
|
|
333
333
|
}>, "many">>;
|
|
334
334
|
education: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
335
335
|
instituteName: z.ZodNullable<z.ZodString>;
|
|
@@ -346,182 +346,182 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
|
|
|
346
346
|
}>, "many">>;
|
|
347
347
|
}, "strip", z.ZodTypeAny, {
|
|
348
348
|
title: string | null;
|
|
349
|
-
name: string | null;
|
|
350
|
-
summary: string | null;
|
|
351
349
|
location: string | null;
|
|
352
|
-
headline: string | null;
|
|
353
|
-
seniorityLevel: string | null;
|
|
354
|
-
emails: string[] | null;
|
|
355
|
-
languages: string[] | null;
|
|
356
350
|
skills: string[] | null;
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}[] | null;
|
|
362
|
-
websites: string[] | null;
|
|
351
|
+
languages: string[] | null;
|
|
352
|
+
recentlyChangedJobs: boolean | null;
|
|
353
|
+
name: string | null;
|
|
354
|
+
headline: string | null;
|
|
363
355
|
linkedinUrl: string | null;
|
|
364
356
|
profilePictureUrl: string | null;
|
|
357
|
+
emails: string[] | null;
|
|
365
358
|
twitterHandle: string | null;
|
|
359
|
+
websites: string[] | null;
|
|
360
|
+
seniorityLevel: string | null;
|
|
366
361
|
yearsOfExperience: number | null;
|
|
367
|
-
recentlyChangedJobs: boolean | null;
|
|
368
362
|
locationCity: string | null;
|
|
369
363
|
locationCountry: string | null;
|
|
364
|
+
summary: string | null;
|
|
370
365
|
numConnections: number | null;
|
|
371
366
|
currentEmployers: {
|
|
372
|
-
title: string | null;
|
|
373
367
|
companyName: string | null;
|
|
374
368
|
companyLinkedinUrl: string | null;
|
|
369
|
+
title: string | null;
|
|
370
|
+
companyIndustries: string[] | null;
|
|
375
371
|
seniorityLevel: string | null;
|
|
376
372
|
functionCategory: string | null;
|
|
377
|
-
startDate: string | null;
|
|
373
|
+
startDate: string | number | null;
|
|
378
374
|
yearsAtCompany: number | null;
|
|
379
375
|
companyHeadcount: number | null;
|
|
380
|
-
companyIndustries: string[] | null;
|
|
381
376
|
}[] | null;
|
|
382
377
|
pastEmployers: {
|
|
383
|
-
title: string | null;
|
|
384
378
|
companyName: string | null;
|
|
385
|
-
|
|
386
|
-
|
|
379
|
+
title: string | null;
|
|
380
|
+
startDate: string | number | null;
|
|
381
|
+
endDate: string | number | null;
|
|
387
382
|
}[] | null;
|
|
388
|
-
}, {
|
|
389
|
-
title: string | null;
|
|
390
|
-
name: string | null;
|
|
391
|
-
summary: string | null;
|
|
392
|
-
location: string | null;
|
|
393
|
-
headline: string | null;
|
|
394
|
-
seniorityLevel: string | null;
|
|
395
|
-
emails: string[] | null;
|
|
396
|
-
languages: string[] | null;
|
|
397
|
-
skills: string[] | null;
|
|
398
383
|
education: {
|
|
399
384
|
instituteName: string | null;
|
|
400
385
|
degreeName: string | null;
|
|
401
386
|
fieldOfStudy: string | null;
|
|
402
387
|
}[] | null;
|
|
403
|
-
|
|
388
|
+
}, {
|
|
389
|
+
title: string | null;
|
|
390
|
+
location: string | null;
|
|
391
|
+
skills: string[] | null;
|
|
392
|
+
languages: string[] | null;
|
|
393
|
+
recentlyChangedJobs: boolean | null;
|
|
394
|
+
name: string | null;
|
|
395
|
+
headline: string | null;
|
|
404
396
|
linkedinUrl: string | null;
|
|
405
397
|
profilePictureUrl: string | null;
|
|
398
|
+
emails: string[] | null;
|
|
406
399
|
twitterHandle: string | null;
|
|
400
|
+
websites: string[] | null;
|
|
401
|
+
seniorityLevel: string | null;
|
|
407
402
|
yearsOfExperience: number | null;
|
|
408
|
-
recentlyChangedJobs: boolean | null;
|
|
409
403
|
locationCity: string | null;
|
|
410
404
|
locationCountry: string | null;
|
|
405
|
+
summary: string | null;
|
|
411
406
|
numConnections: number | null;
|
|
412
407
|
currentEmployers: {
|
|
413
|
-
title: string | null;
|
|
414
408
|
companyName: string | null;
|
|
415
409
|
companyLinkedinUrl: string | null;
|
|
410
|
+
title: string | null;
|
|
411
|
+
companyIndustries: string[] | null;
|
|
416
412
|
seniorityLevel: string | null;
|
|
417
413
|
functionCategory: string | null;
|
|
418
|
-
startDate: string | null;
|
|
414
|
+
startDate: string | number | null;
|
|
419
415
|
yearsAtCompany: number | null;
|
|
420
416
|
companyHeadcount: number | null;
|
|
421
|
-
companyIndustries: string[] | null;
|
|
422
417
|
}[] | null;
|
|
423
418
|
pastEmployers: {
|
|
424
|
-
title: string | null;
|
|
425
419
|
companyName: string | null;
|
|
426
|
-
|
|
427
|
-
|
|
420
|
+
title: string | null;
|
|
421
|
+
startDate: string | number | null;
|
|
422
|
+
endDate: string | number | null;
|
|
423
|
+
}[] | null;
|
|
424
|
+
education: {
|
|
425
|
+
instituteName: string | null;
|
|
426
|
+
degreeName: string | null;
|
|
427
|
+
fieldOfStudy: string | null;
|
|
428
428
|
}[] | null;
|
|
429
429
|
}>, "many">;
|
|
430
430
|
totalCount: z.ZodNumber;
|
|
431
431
|
success: z.ZodBoolean;
|
|
432
432
|
error: z.ZodString;
|
|
433
433
|
}, "strip", z.ZodTypeAny, {
|
|
434
|
-
success: boolean;
|
|
435
|
-
error: string;
|
|
436
434
|
people: {
|
|
437
435
|
title: string | null;
|
|
438
|
-
name: string | null;
|
|
439
|
-
summary: string | null;
|
|
440
436
|
location: string | null;
|
|
441
|
-
headline: string | null;
|
|
442
|
-
seniorityLevel: string | null;
|
|
443
|
-
emails: string[] | null;
|
|
444
|
-
languages: string[] | null;
|
|
445
437
|
skills: string[] | null;
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
}[] | null;
|
|
451
|
-
websites: string[] | null;
|
|
438
|
+
languages: string[] | null;
|
|
439
|
+
recentlyChangedJobs: boolean | null;
|
|
440
|
+
name: string | null;
|
|
441
|
+
headline: string | null;
|
|
452
442
|
linkedinUrl: string | null;
|
|
453
443
|
profilePictureUrl: string | null;
|
|
444
|
+
emails: string[] | null;
|
|
454
445
|
twitterHandle: string | null;
|
|
446
|
+
websites: string[] | null;
|
|
447
|
+
seniorityLevel: string | null;
|
|
455
448
|
yearsOfExperience: number | null;
|
|
456
|
-
recentlyChangedJobs: boolean | null;
|
|
457
449
|
locationCity: string | null;
|
|
458
450
|
locationCountry: string | null;
|
|
451
|
+
summary: string | null;
|
|
459
452
|
numConnections: number | null;
|
|
460
453
|
currentEmployers: {
|
|
461
|
-
title: string | null;
|
|
462
454
|
companyName: string | null;
|
|
463
455
|
companyLinkedinUrl: string | null;
|
|
456
|
+
title: string | null;
|
|
457
|
+
companyIndustries: string[] | null;
|
|
464
458
|
seniorityLevel: string | null;
|
|
465
459
|
functionCategory: string | null;
|
|
466
|
-
startDate: string | null;
|
|
460
|
+
startDate: string | number | null;
|
|
467
461
|
yearsAtCompany: number | null;
|
|
468
462
|
companyHeadcount: number | null;
|
|
469
|
-
companyIndustries: string[] | null;
|
|
470
463
|
}[] | null;
|
|
471
464
|
pastEmployers: {
|
|
472
|
-
title: string | null;
|
|
473
465
|
companyName: string | null;
|
|
474
|
-
|
|
475
|
-
|
|
466
|
+
title: string | null;
|
|
467
|
+
startDate: string | number | null;
|
|
468
|
+
endDate: string | number | null;
|
|
469
|
+
}[] | null;
|
|
470
|
+
education: {
|
|
471
|
+
instituteName: string | null;
|
|
472
|
+
degreeName: string | null;
|
|
473
|
+
fieldOfStudy: string | null;
|
|
476
474
|
}[] | null;
|
|
477
475
|
}[];
|
|
478
476
|
totalCount: number;
|
|
479
|
-
}, {
|
|
480
477
|
success: boolean;
|
|
481
478
|
error: string;
|
|
479
|
+
}, {
|
|
482
480
|
people: {
|
|
483
481
|
title: string | null;
|
|
484
|
-
name: string | null;
|
|
485
|
-
summary: string | null;
|
|
486
482
|
location: string | null;
|
|
487
|
-
headline: string | null;
|
|
488
|
-
seniorityLevel: string | null;
|
|
489
|
-
emails: string[] | null;
|
|
490
|
-
languages: string[] | null;
|
|
491
483
|
skills: string[] | null;
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
}[] | null;
|
|
497
|
-
websites: string[] | null;
|
|
484
|
+
languages: string[] | null;
|
|
485
|
+
recentlyChangedJobs: boolean | null;
|
|
486
|
+
name: string | null;
|
|
487
|
+
headline: string | null;
|
|
498
488
|
linkedinUrl: string | null;
|
|
499
489
|
profilePictureUrl: string | null;
|
|
490
|
+
emails: string[] | null;
|
|
500
491
|
twitterHandle: string | null;
|
|
492
|
+
websites: string[] | null;
|
|
493
|
+
seniorityLevel: string | null;
|
|
501
494
|
yearsOfExperience: number | null;
|
|
502
|
-
recentlyChangedJobs: boolean | null;
|
|
503
495
|
locationCity: string | null;
|
|
504
496
|
locationCountry: string | null;
|
|
497
|
+
summary: string | null;
|
|
505
498
|
numConnections: number | null;
|
|
506
499
|
currentEmployers: {
|
|
507
|
-
title: string | null;
|
|
508
500
|
companyName: string | null;
|
|
509
501
|
companyLinkedinUrl: string | null;
|
|
502
|
+
title: string | null;
|
|
503
|
+
companyIndustries: string[] | null;
|
|
510
504
|
seniorityLevel: string | null;
|
|
511
505
|
functionCategory: string | null;
|
|
512
|
-
startDate: string | null;
|
|
506
|
+
startDate: string | number | null;
|
|
513
507
|
yearsAtCompany: number | null;
|
|
514
508
|
companyHeadcount: number | null;
|
|
515
|
-
companyIndustries: string[] | null;
|
|
516
509
|
}[] | null;
|
|
517
510
|
pastEmployers: {
|
|
518
|
-
title: string | null;
|
|
519
511
|
companyName: string | null;
|
|
520
|
-
|
|
521
|
-
|
|
512
|
+
title: string | null;
|
|
513
|
+
startDate: string | number | null;
|
|
514
|
+
endDate: string | number | null;
|
|
515
|
+
}[] | null;
|
|
516
|
+
education: {
|
|
517
|
+
instituteName: string | null;
|
|
518
|
+
degreeName: string | null;
|
|
519
|
+
fieldOfStudy: string | null;
|
|
522
520
|
}[] | null;
|
|
523
521
|
}[];
|
|
524
522
|
totalCount: number;
|
|
523
|
+
success: boolean;
|
|
524
|
+
error: string;
|
|
525
525
|
}>;
|
|
526
526
|
type PeopleSearchToolParams = z.output<typeof PeopleSearchToolParamsSchema>;
|
|
527
527
|
type PeopleSearchToolResult = z.output<typeof PeopleSearchToolResultSchema>;
|
|
@@ -590,67 +590,67 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
590
590
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
591
591
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
592
592
|
}, "strip", z.ZodTypeAny, {
|
|
593
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
594
|
-
limit?: number | undefined;
|
|
595
|
-
location?: string | undefined;
|
|
596
593
|
companyName?: string | undefined;
|
|
597
594
|
companyLinkedinUrl?: string | undefined;
|
|
598
|
-
city?: string | undefined;
|
|
599
|
-
country?: string | undefined;
|
|
600
|
-
languages?: string[] | undefined;
|
|
601
|
-
skills?: string[] | undefined;
|
|
602
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
603
|
-
companyIndustries?: string[] | undefined;
|
|
604
595
|
jobTitle?: string | undefined;
|
|
605
596
|
jobTitles?: string[] | undefined;
|
|
597
|
+
location?: string | undefined;
|
|
606
598
|
locationRadius?: {
|
|
607
599
|
location: string;
|
|
608
600
|
radiusMiles: number;
|
|
609
601
|
} | undefined;
|
|
602
|
+
skills?: string[] | undefined;
|
|
603
|
+
languages?: string[] | undefined;
|
|
610
604
|
minYearsExperience?: number | undefined;
|
|
611
605
|
maxYearsExperience?: number | undefined;
|
|
612
606
|
seniorityLevels?: string[] | undefined;
|
|
613
607
|
functionCategories?: string[] | undefined;
|
|
608
|
+
companyIndustries?: string[] | undefined;
|
|
614
609
|
minCompanyHeadcount?: number | undefined;
|
|
615
610
|
maxCompanyHeadcount?: number | undefined;
|
|
616
611
|
minYearsAtCompany?: number | undefined;
|
|
617
612
|
pastCompanyName?: string | undefined;
|
|
618
613
|
pastJobTitle?: string | undefined;
|
|
619
614
|
schoolName?: string | undefined;
|
|
615
|
+
country?: string | undefined;
|
|
616
|
+
city?: string | undefined;
|
|
617
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
620
618
|
minConnections?: number | undefined;
|
|
621
619
|
excludeCompanies?: string[] | undefined;
|
|
622
620
|
excludeProfiles?: string[] | undefined;
|
|
623
|
-
}, {
|
|
624
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
625
621
|
limit?: number | undefined;
|
|
626
|
-
|
|
622
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
623
|
+
}, {
|
|
627
624
|
companyName?: string | undefined;
|
|
628
625
|
companyLinkedinUrl?: string | undefined;
|
|
629
|
-
city?: string | undefined;
|
|
630
|
-
country?: string | undefined;
|
|
631
|
-
languages?: string[] | undefined;
|
|
632
|
-
skills?: string[] | undefined;
|
|
633
|
-
recentlyChangedJobs?: boolean | undefined;
|
|
634
|
-
companyIndustries?: string[] | undefined;
|
|
635
626
|
jobTitle?: string | undefined;
|
|
636
627
|
jobTitles?: string[] | undefined;
|
|
628
|
+
location?: string | undefined;
|
|
637
629
|
locationRadius?: {
|
|
638
630
|
location: string;
|
|
639
631
|
radiusMiles: number;
|
|
640
632
|
} | undefined;
|
|
633
|
+
skills?: string[] | undefined;
|
|
634
|
+
languages?: string[] | undefined;
|
|
641
635
|
minYearsExperience?: number | undefined;
|
|
642
636
|
maxYearsExperience?: number | undefined;
|
|
643
637
|
seniorityLevels?: string[] | undefined;
|
|
644
638
|
functionCategories?: string[] | undefined;
|
|
639
|
+
companyIndustries?: string[] | undefined;
|
|
645
640
|
minCompanyHeadcount?: number | undefined;
|
|
646
641
|
maxCompanyHeadcount?: number | undefined;
|
|
647
642
|
minYearsAtCompany?: number | undefined;
|
|
648
643
|
pastCompanyName?: string | undefined;
|
|
649
644
|
pastJobTitle?: string | undefined;
|
|
650
645
|
schoolName?: string | undefined;
|
|
646
|
+
country?: string | undefined;
|
|
647
|
+
city?: string | undefined;
|
|
648
|
+
recentlyChangedJobs?: boolean | undefined;
|
|
651
649
|
minConnections?: number | undefined;
|
|
652
650
|
excludeCompanies?: string[] | undefined;
|
|
653
651
|
excludeProfiles?: string[] | undefined;
|
|
652
|
+
limit?: number | undefined;
|
|
653
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
654
654
|
}>;
|
|
655
655
|
static readonly resultSchema: z.ZodObject<{
|
|
656
656
|
people: z.ZodArray<z.ZodObject<{
|
|
@@ -678,46 +678,46 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
678
678
|
companyLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
679
679
|
seniorityLevel: z.ZodNullable<z.ZodString>;
|
|
680
680
|
functionCategory: z.ZodNullable<z.ZodString>;
|
|
681
|
-
startDate: z.ZodNullable<z.ZodString
|
|
681
|
+
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
682
682
|
yearsAtCompany: z.ZodNullable<z.ZodNumber>;
|
|
683
683
|
companyHeadcount: z.ZodNullable<z.ZodNumber>;
|
|
684
684
|
companyIndustries: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
685
685
|
}, "strip", z.ZodTypeAny, {
|
|
686
|
-
title: string | null;
|
|
687
686
|
companyName: string | null;
|
|
688
687
|
companyLinkedinUrl: string | null;
|
|
688
|
+
title: string | null;
|
|
689
|
+
companyIndustries: string[] | null;
|
|
689
690
|
seniorityLevel: string | null;
|
|
690
691
|
functionCategory: string | null;
|
|
691
|
-
startDate: string | null;
|
|
692
|
+
startDate: string | number | null;
|
|
692
693
|
yearsAtCompany: number | null;
|
|
693
694
|
companyHeadcount: number | null;
|
|
694
|
-
companyIndustries: string[] | null;
|
|
695
695
|
}, {
|
|
696
|
-
title: string | null;
|
|
697
696
|
companyName: string | null;
|
|
698
697
|
companyLinkedinUrl: string | null;
|
|
698
|
+
title: string | null;
|
|
699
|
+
companyIndustries: string[] | null;
|
|
699
700
|
seniorityLevel: string | null;
|
|
700
701
|
functionCategory: string | null;
|
|
701
|
-
startDate: string | null;
|
|
702
|
+
startDate: string | number | null;
|
|
702
703
|
yearsAtCompany: number | null;
|
|
703
704
|
companyHeadcount: number | null;
|
|
704
|
-
companyIndustries: string[] | null;
|
|
705
705
|
}>, "many">>;
|
|
706
706
|
pastEmployers: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
707
707
|
title: z.ZodNullable<z.ZodString>;
|
|
708
708
|
companyName: z.ZodNullable<z.ZodString>;
|
|
709
|
-
startDate: z.ZodNullable<z.ZodString
|
|
710
|
-
endDate: z.ZodNullable<z.ZodString
|
|
709
|
+
startDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
710
|
+
endDate: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
711
711
|
}, "strip", z.ZodTypeAny, {
|
|
712
|
-
title: string | null;
|
|
713
712
|
companyName: string | null;
|
|
714
|
-
startDate: string | null;
|
|
715
|
-
endDate: string | null;
|
|
716
|
-
}, {
|
|
717
713
|
title: string | null;
|
|
714
|
+
startDate: string | number | null;
|
|
715
|
+
endDate: string | number | null;
|
|
716
|
+
}, {
|
|
718
717
|
companyName: string | null;
|
|
719
|
-
|
|
720
|
-
|
|
718
|
+
title: string | null;
|
|
719
|
+
startDate: string | number | null;
|
|
720
|
+
endDate: string | number | null;
|
|
721
721
|
}>, "many">>;
|
|
722
722
|
education: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
723
723
|
instituteName: z.ZodNullable<z.ZodString>;
|
|
@@ -734,182 +734,182 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
|
|
|
734
734
|
}>, "many">>;
|
|
735
735
|
}, "strip", z.ZodTypeAny, {
|
|
736
736
|
title: string | null;
|
|
737
|
-
name: string | null;
|
|
738
|
-
summary: string | null;
|
|
739
737
|
location: string | null;
|
|
740
|
-
headline: string | null;
|
|
741
|
-
seniorityLevel: string | null;
|
|
742
|
-
emails: string[] | null;
|
|
743
|
-
languages: string[] | null;
|
|
744
738
|
skills: string[] | null;
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
}[] | null;
|
|
750
|
-
websites: string[] | null;
|
|
739
|
+
languages: string[] | null;
|
|
740
|
+
recentlyChangedJobs: boolean | null;
|
|
741
|
+
name: string | null;
|
|
742
|
+
headline: string | null;
|
|
751
743
|
linkedinUrl: string | null;
|
|
752
744
|
profilePictureUrl: string | null;
|
|
745
|
+
emails: string[] | null;
|
|
753
746
|
twitterHandle: string | null;
|
|
747
|
+
websites: string[] | null;
|
|
748
|
+
seniorityLevel: string | null;
|
|
754
749
|
yearsOfExperience: number | null;
|
|
755
|
-
recentlyChangedJobs: boolean | null;
|
|
756
750
|
locationCity: string | null;
|
|
757
751
|
locationCountry: string | null;
|
|
752
|
+
summary: string | null;
|
|
758
753
|
numConnections: number | null;
|
|
759
754
|
currentEmployers: {
|
|
760
|
-
title: string | null;
|
|
761
755
|
companyName: string | null;
|
|
762
756
|
companyLinkedinUrl: string | null;
|
|
757
|
+
title: string | null;
|
|
758
|
+
companyIndustries: string[] | null;
|
|
763
759
|
seniorityLevel: string | null;
|
|
764
760
|
functionCategory: string | null;
|
|
765
|
-
startDate: string | null;
|
|
761
|
+
startDate: string | number | null;
|
|
766
762
|
yearsAtCompany: number | null;
|
|
767
763
|
companyHeadcount: number | null;
|
|
768
|
-
companyIndustries: string[] | null;
|
|
769
764
|
}[] | null;
|
|
770
765
|
pastEmployers: {
|
|
771
|
-
title: string | null;
|
|
772
766
|
companyName: string | null;
|
|
773
|
-
|
|
774
|
-
|
|
767
|
+
title: string | null;
|
|
768
|
+
startDate: string | number | null;
|
|
769
|
+
endDate: string | number | null;
|
|
775
770
|
}[] | null;
|
|
776
|
-
}, {
|
|
777
|
-
title: string | null;
|
|
778
|
-
name: string | null;
|
|
779
|
-
summary: string | null;
|
|
780
|
-
location: string | null;
|
|
781
|
-
headline: string | null;
|
|
782
|
-
seniorityLevel: string | null;
|
|
783
|
-
emails: string[] | null;
|
|
784
|
-
languages: string[] | null;
|
|
785
|
-
skills: string[] | null;
|
|
786
771
|
education: {
|
|
787
772
|
instituteName: string | null;
|
|
788
773
|
degreeName: string | null;
|
|
789
774
|
fieldOfStudy: string | null;
|
|
790
775
|
}[] | null;
|
|
791
|
-
|
|
776
|
+
}, {
|
|
777
|
+
title: string | null;
|
|
778
|
+
location: string | null;
|
|
779
|
+
skills: string[] | null;
|
|
780
|
+
languages: string[] | null;
|
|
781
|
+
recentlyChangedJobs: boolean | null;
|
|
782
|
+
name: string | null;
|
|
783
|
+
headline: string | null;
|
|
792
784
|
linkedinUrl: string | null;
|
|
793
785
|
profilePictureUrl: string | null;
|
|
786
|
+
emails: string[] | null;
|
|
794
787
|
twitterHandle: string | null;
|
|
788
|
+
websites: string[] | null;
|
|
789
|
+
seniorityLevel: string | null;
|
|
795
790
|
yearsOfExperience: number | null;
|
|
796
|
-
recentlyChangedJobs: boolean | null;
|
|
797
791
|
locationCity: string | null;
|
|
798
792
|
locationCountry: string | null;
|
|
793
|
+
summary: string | null;
|
|
799
794
|
numConnections: number | null;
|
|
800
795
|
currentEmployers: {
|
|
801
|
-
title: string | null;
|
|
802
796
|
companyName: string | null;
|
|
803
797
|
companyLinkedinUrl: string | null;
|
|
798
|
+
title: string | null;
|
|
799
|
+
companyIndustries: string[] | null;
|
|
804
800
|
seniorityLevel: string | null;
|
|
805
801
|
functionCategory: string | null;
|
|
806
|
-
startDate: string | null;
|
|
802
|
+
startDate: string | number | null;
|
|
807
803
|
yearsAtCompany: number | null;
|
|
808
804
|
companyHeadcount: number | null;
|
|
809
|
-
companyIndustries: string[] | null;
|
|
810
805
|
}[] | null;
|
|
811
806
|
pastEmployers: {
|
|
812
|
-
title: string | null;
|
|
813
807
|
companyName: string | null;
|
|
814
|
-
|
|
815
|
-
|
|
808
|
+
title: string | null;
|
|
809
|
+
startDate: string | number | null;
|
|
810
|
+
endDate: string | number | null;
|
|
811
|
+
}[] | null;
|
|
812
|
+
education: {
|
|
813
|
+
instituteName: string | null;
|
|
814
|
+
degreeName: string | null;
|
|
815
|
+
fieldOfStudy: string | null;
|
|
816
816
|
}[] | null;
|
|
817
817
|
}>, "many">;
|
|
818
818
|
totalCount: z.ZodNumber;
|
|
819
819
|
success: z.ZodBoolean;
|
|
820
820
|
error: z.ZodString;
|
|
821
821
|
}, "strip", z.ZodTypeAny, {
|
|
822
|
-
success: boolean;
|
|
823
|
-
error: string;
|
|
824
822
|
people: {
|
|
825
823
|
title: string | null;
|
|
826
|
-
name: string | null;
|
|
827
|
-
summary: string | null;
|
|
828
824
|
location: string | null;
|
|
829
|
-
headline: string | null;
|
|
830
|
-
seniorityLevel: string | null;
|
|
831
|
-
emails: string[] | null;
|
|
832
|
-
languages: string[] | null;
|
|
833
825
|
skills: string[] | null;
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
}[] | null;
|
|
839
|
-
websites: string[] | null;
|
|
826
|
+
languages: string[] | null;
|
|
827
|
+
recentlyChangedJobs: boolean | null;
|
|
828
|
+
name: string | null;
|
|
829
|
+
headline: string | null;
|
|
840
830
|
linkedinUrl: string | null;
|
|
841
831
|
profilePictureUrl: string | null;
|
|
832
|
+
emails: string[] | null;
|
|
842
833
|
twitterHandle: string | null;
|
|
834
|
+
websites: string[] | null;
|
|
835
|
+
seniorityLevel: string | null;
|
|
843
836
|
yearsOfExperience: number | null;
|
|
844
|
-
recentlyChangedJobs: boolean | null;
|
|
845
837
|
locationCity: string | null;
|
|
846
838
|
locationCountry: string | null;
|
|
839
|
+
summary: string | null;
|
|
847
840
|
numConnections: number | null;
|
|
848
841
|
currentEmployers: {
|
|
849
|
-
title: string | null;
|
|
850
842
|
companyName: string | null;
|
|
851
843
|
companyLinkedinUrl: string | null;
|
|
844
|
+
title: string | null;
|
|
845
|
+
companyIndustries: string[] | null;
|
|
852
846
|
seniorityLevel: string | null;
|
|
853
847
|
functionCategory: string | null;
|
|
854
|
-
startDate: string | null;
|
|
848
|
+
startDate: string | number | null;
|
|
855
849
|
yearsAtCompany: number | null;
|
|
856
850
|
companyHeadcount: number | null;
|
|
857
|
-
companyIndustries: string[] | null;
|
|
858
851
|
}[] | null;
|
|
859
852
|
pastEmployers: {
|
|
860
|
-
title: string | null;
|
|
861
853
|
companyName: string | null;
|
|
862
|
-
|
|
863
|
-
|
|
854
|
+
title: string | null;
|
|
855
|
+
startDate: string | number | null;
|
|
856
|
+
endDate: string | number | null;
|
|
857
|
+
}[] | null;
|
|
858
|
+
education: {
|
|
859
|
+
instituteName: string | null;
|
|
860
|
+
degreeName: string | null;
|
|
861
|
+
fieldOfStudy: string | null;
|
|
864
862
|
}[] | null;
|
|
865
863
|
}[];
|
|
866
864
|
totalCount: number;
|
|
867
|
-
}, {
|
|
868
865
|
success: boolean;
|
|
869
866
|
error: string;
|
|
867
|
+
}, {
|
|
870
868
|
people: {
|
|
871
869
|
title: string | null;
|
|
872
|
-
name: string | null;
|
|
873
|
-
summary: string | null;
|
|
874
870
|
location: string | null;
|
|
875
|
-
headline: string | null;
|
|
876
|
-
seniorityLevel: string | null;
|
|
877
|
-
emails: string[] | null;
|
|
878
|
-
languages: string[] | null;
|
|
879
871
|
skills: string[] | null;
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
}[] | null;
|
|
885
|
-
websites: string[] | null;
|
|
872
|
+
languages: string[] | null;
|
|
873
|
+
recentlyChangedJobs: boolean | null;
|
|
874
|
+
name: string | null;
|
|
875
|
+
headline: string | null;
|
|
886
876
|
linkedinUrl: string | null;
|
|
887
877
|
profilePictureUrl: string | null;
|
|
878
|
+
emails: string[] | null;
|
|
888
879
|
twitterHandle: string | null;
|
|
880
|
+
websites: string[] | null;
|
|
881
|
+
seniorityLevel: string | null;
|
|
889
882
|
yearsOfExperience: number | null;
|
|
890
|
-
recentlyChangedJobs: boolean | null;
|
|
891
883
|
locationCity: string | null;
|
|
892
884
|
locationCountry: string | null;
|
|
885
|
+
summary: string | null;
|
|
893
886
|
numConnections: number | null;
|
|
894
887
|
currentEmployers: {
|
|
895
|
-
title: string | null;
|
|
896
888
|
companyName: string | null;
|
|
897
889
|
companyLinkedinUrl: string | null;
|
|
890
|
+
title: string | null;
|
|
891
|
+
companyIndustries: string[] | null;
|
|
898
892
|
seniorityLevel: string | null;
|
|
899
893
|
functionCategory: string | null;
|
|
900
|
-
startDate: string | null;
|
|
894
|
+
startDate: string | number | null;
|
|
901
895
|
yearsAtCompany: number | null;
|
|
902
896
|
companyHeadcount: number | null;
|
|
903
|
-
companyIndustries: string[] | null;
|
|
904
897
|
}[] | null;
|
|
905
898
|
pastEmployers: {
|
|
906
|
-
title: string | null;
|
|
907
899
|
companyName: string | null;
|
|
908
|
-
|
|
909
|
-
|
|
900
|
+
title: string | null;
|
|
901
|
+
startDate: string | number | null;
|
|
902
|
+
endDate: string | number | null;
|
|
903
|
+
}[] | null;
|
|
904
|
+
education: {
|
|
905
|
+
instituteName: string | null;
|
|
906
|
+
degreeName: string | null;
|
|
907
|
+
fieldOfStudy: string | null;
|
|
910
908
|
}[] | null;
|
|
911
909
|
}[];
|
|
912
910
|
totalCount: number;
|
|
911
|
+
success: boolean;
|
|
912
|
+
error: string;
|
|
913
913
|
}>;
|
|
914
914
|
static readonly shortDescription = "Comprehensive people search by company, title, location, skills, and more";
|
|
915
915
|
static readonly longDescription = "\n Comprehensive people search tool for finding and discovering professionals.\n Uses the Crustdata PersonDB in-database search for fast, comprehensive results.\n\n **SEARCH CRITERIA (at least one required):**\n - Company: companyName, companyLinkedinUrl, pastCompanyName\n - Job Title: jobTitle (single), jobTitles (multiple with OR logic), pastJobTitle\n - Location: location (fuzzy), locationRadius (geo search), country, city\n - Skills & Experience: skills, languages, minYearsExperience, maxYearsExperience\n - Seniority & Function: seniorityLevels, functionCategories\n - Company Attributes: companyIndustries, minCompanyHeadcount, maxCompanyHeadcount\n - Education: schoolName\n - Status: recentlyChangedJobs, minConnections, minYearsAtCompany\n\n **GEO RADIUS SEARCH:**\n Use locationRadius to find people within X miles of a location:\n - locationRadius: { location: \"San Francisco\", radiusMiles: 75 }\n - locationRadius: { location: \"New York City\", radiusMiles: 50 }\n\n **WHAT YOU GET:**\n - Full name, current title, and headline\n - LinkedIn profile URL and email addresses\n - Complete current and past work history with company details\n - Education background with degrees and fields of study\n - Skills, languages, seniority level, and years of experience\n - Location details (city, country, region)\n\n **EXAMPLE USE CASES:**\n - companyName: \"Stripe\" \u2192 find people currently at Stripe\n - jobTitle: \"CEO\", seniorityLevels: [\"CXO\"] \u2192 find CEOs\n - jobTitles: [\"Senior Hardware Engineer\", \"Technical Product Manager\"] \u2192 find people with either role\n - locationRadius: { location: \"Austin\", radiusMiles: 75 }, jobTitle: \"Engineer\" \u2192 engineers within 75 miles of Austin\n - pastCompanyName: \"Google\", companyName: \"Startup\" \u2192 ex-Googlers at startups\n - skills: [\"Python\", \"ML\"], minYearsExperience: 5 \u2192 experienced ML engineers\n - companyIndustries: [\"Healthcare\"], functionCategories: [\"Sales\"] \u2192 healthcare sales professionals\n - schoolName: \"Stanford\", seniorityLevels: [\"CXO\", \"Vice President\"] \u2192 Stanford alum executives\n - recentlyChangedJobs: true, companyName: \"Meta\" \u2192 recent Meta hires (good for outreach)\n - minCompanyHeadcount: 1000, maxCompanyHeadcount: 5000 \u2192 mid-size company employees\n\n **CREDITS:** 3 credits per 100 results returned\n ";
|