@bubblelab/bubble-core 0.1.101 → 0.1.102

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.
Files changed (62) hide show
  1. package/dist/bubble-bundle.d.ts +80 -80
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
  9. package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
  10. package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
  11. package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
  12. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
  13. package/dist/bubbles/service-bubble/github.d.ts +240 -240
  14. package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
  15. package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  18. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  22. package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
  23. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  24. package/dist/bubbles/service-bubble/resend.d.ts +24 -24
  25. package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
  26. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
  27. package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
  28. package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
  29. package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
  30. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
  31. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
  32. package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
  34. package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
  36. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
  37. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
  38. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
  40. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  41. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
  42. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  43. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
  44. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
  45. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
  46. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
  47. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
  48. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
  49. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  50. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
  51. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  52. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
  53. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  54. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
  55. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  56. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
  57. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  58. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
  59. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
  60. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
  61. package/dist/bubbles.json +109 -2
  62. package/package.json +2 -2
@@ -9,9 +9,9 @@ declare const WebSearchToolParamsSchema: z.ZodObject<{
9
9
  location: z.ZodOptional<z.ZodString>;
10
10
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
11
11
  }, "strip", z.ZodTypeAny, {
12
+ query: string;
12
13
  limit: number;
13
14
  categories: ("github" | "pdf" | "research")[];
14
- query: string;
15
15
  credentials?: Partial<Record<CredentialType, string>> | undefined;
16
16
  location?: string | undefined;
17
17
  }, {
@@ -27,13 +27,13 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
27
27
  url: z.ZodString;
28
28
  content: z.ZodString;
29
29
  }, "strip", z.ZodTypeAny, {
30
- url: string;
31
30
  title: string;
32
31
  content: string;
33
- }, {
34
32
  url: string;
33
+ }, {
35
34
  title: string;
36
35
  content: string;
36
+ url: string;
37
37
  }>, "many">;
38
38
  query: z.ZodString;
39
39
  totalResults: z.ZodNumber;
@@ -46,25 +46,25 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
46
46
  error: string;
47
47
  query: string;
48
48
  results: {
49
- url: string;
50
49
  title: string;
51
50
  content: string;
51
+ url: string;
52
52
  }[];
53
- creditsUsed: number;
54
53
  totalResults: number;
55
54
  searchEngine: string;
55
+ creditsUsed: number;
56
56
  }, {
57
57
  success: boolean;
58
58
  error: string;
59
59
  query: string;
60
60
  results: {
61
- url: string;
62
61
  title: string;
63
62
  content: string;
63
+ url: string;
64
64
  }[];
65
- creditsUsed: number;
66
65
  totalResults: number;
67
66
  searchEngine: string;
67
+ creditsUsed: number;
68
68
  }>;
69
69
  type WebSearchToolParams = z.output<typeof WebSearchToolParamsSchema>;
70
70
  type WebSearchToolResult = z.output<typeof WebSearchToolResultSchema>;
@@ -78,9 +78,9 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
78
78
  location: z.ZodOptional<z.ZodString>;
79
79
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
80
80
  }, "strip", z.ZodTypeAny, {
81
+ query: string;
81
82
  limit: number;
82
83
  categories: ("github" | "pdf" | "research")[];
83
- query: string;
84
84
  credentials?: Partial<Record<CredentialType, string>> | undefined;
85
85
  location?: string | undefined;
86
86
  }, {
@@ -96,13 +96,13 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
96
96
  url: z.ZodString;
97
97
  content: z.ZodString;
98
98
  }, "strip", z.ZodTypeAny, {
99
- url: string;
100
99
  title: string;
101
100
  content: string;
102
- }, {
103
101
  url: string;
102
+ }, {
104
103
  title: string;
105
104
  content: string;
105
+ url: string;
106
106
  }>, "many">;
107
107
  query: z.ZodString;
108
108
  totalResults: z.ZodNumber;
@@ -115,25 +115,25 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
115
115
  error: string;
116
116
  query: string;
117
117
  results: {
118
- url: string;
119
118
  title: string;
120
119
  content: string;
120
+ url: string;
121
121
  }[];
122
- creditsUsed: number;
123
122
  totalResults: number;
124
123
  searchEngine: string;
124
+ creditsUsed: number;
125
125
  }, {
126
126
  success: boolean;
127
127
  error: string;
128
128
  query: string;
129
129
  results: {
130
- url: string;
131
130
  title: string;
132
131
  content: string;
132
+ url: string;
133
133
  }[];
134
- creditsUsed: number;
135
134
  totalResults: number;
136
135
  searchEngine: string;
136
+ creditsUsed: number;
137
137
  }>;
138
138
  static readonly shortDescription = "Performs web searches using Firecrawl to find current information from the web";
139
139
  static readonly longDescription = "\n A comprehensive web search tool that uses Firecrawl to find current information from the web.\n \n Features:\n - High-quality web search results with content extraction\n - Configurable result limits (1-20 results)\n - Location-based search for regional results\n - Clean, structured content extraction from search results\n - Requires FIRECRAWL_API_KEY credential\n \n Use cases:\n - Finding current events and news\n - Researching topics with web content\n - Getting up-to-date information for decision making\n - Answering questions that require web knowledge\n - Market research and competitive analysis\n - Real-time data gathering from the web\n ";
@@ -11,15 +11,15 @@ declare const YCFounderSchema: z.ZodObject<{
11
11
  }, "strip", z.ZodTypeAny, {
12
12
  title: string | null;
13
13
  name: string | null;
14
+ bio: string | null;
14
15
  linkedinUrl: string | null;
15
16
  twitterUrl: string | null;
16
- bio: string | null;
17
17
  }, {
18
18
  title: string | null;
19
19
  name: string | null;
20
+ bio: string | null;
20
21
  linkedinUrl: string | null;
21
22
  twitterUrl: string | null;
22
- bio: string | null;
23
23
  }>;
24
24
  declare const YCCompanySchema: z.ZodObject<{
25
25
  companyName: z.ZodNullable<z.ZodString>;
@@ -36,42 +36,42 @@ declare const YCCompanySchema: z.ZodObject<{
36
36
  }, "strip", z.ZodTypeAny, {
37
37
  title: string | null;
38
38
  name: string | null;
39
+ bio: string | null;
39
40
  linkedinUrl: string | null;
40
41
  twitterUrl: string | null;
41
- bio: string | null;
42
42
  }, {
43
43
  title: string | null;
44
44
  name: string | null;
45
+ bio: string | null;
45
46
  linkedinUrl: string | null;
46
47
  twitterUrl: string | null;
47
- bio: string | null;
48
48
  }>, "many">;
49
49
  }, "strip", z.ZodTypeAny, {
50
- batch: string | null;
51
50
  description: string | null;
52
51
  companyName: string | null;
53
52
  website: string | null;
54
- ycUrl: string | null;
55
53
  founders: {
56
54
  title: string | null;
57
55
  name: string | null;
56
+ bio: string | null;
58
57
  linkedinUrl: string | null;
59
58
  twitterUrl: string | null;
60
- bio: string | null;
61
59
  }[];
62
- }, {
63
60
  batch: string | null;
61
+ ycUrl: string | null;
62
+ }, {
64
63
  description: string | null;
65
64
  companyName: string | null;
66
65
  website: string | null;
67
- ycUrl: string | null;
68
66
  founders: {
69
67
  title: string | null;
70
68
  name: string | null;
69
+ bio: string | null;
71
70
  linkedinUrl: string | null;
72
71
  twitterUrl: string | null;
73
- bio: string | null;
74
72
  }[];
73
+ batch: string | null;
74
+ ycUrl: string | null;
75
75
  }>;
76
76
  declare const YCPersonSchema: z.ZodObject<{
77
77
  name: z.ZodNullable<z.ZodString>;
@@ -90,23 +90,23 @@ declare const YCPersonSchema: z.ZodObject<{
90
90
  }, "strip", z.ZodTypeAny, {
91
91
  title: string | null;
92
92
  name: string | null;
93
+ emails: string[] | null;
94
+ bio: string | null;
95
+ linkedinUrl: string | null;
93
96
  currentEmployers: {
94
97
  companyName: string | null;
95
98
  }[];
96
- linkedinUrl: string | null;
97
99
  twitterUrl: string | null;
98
- bio: string | null;
99
- emails: string[] | null;
100
100
  }, {
101
101
  title: string | null;
102
102
  name: string | null;
103
+ emails: string[] | null;
104
+ bio: string | null;
105
+ linkedinUrl: string | null;
103
106
  currentEmployers: {
104
107
  companyName: string | null;
105
108
  }[];
106
- linkedinUrl: string | null;
107
109
  twitterUrl: string | null;
108
- bio: string | null;
109
- emails: string[] | null;
110
110
  }>;
111
111
  declare const YCScraperToolParamsSchema: z.ZodObject<{
112
112
  batch: z.ZodOptional<z.ZodString>;
@@ -115,17 +115,17 @@ declare const YCScraperToolParamsSchema: z.ZodObject<{
115
115
  includeFounders: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
116
116
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
117
117
  }, "strip", z.ZodTypeAny, {
118
- batch?: string | undefined;
119
118
  url?: string | undefined;
119
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
120
+ batch?: string | undefined;
120
121
  maxCompanies?: number | undefined;
121
122
  includeFounders?: boolean | undefined;
122
- credentials?: Partial<Record<CredentialType, string>> | undefined;
123
123
  }, {
124
- batch?: string | undefined;
125
124
  url?: string | undefined;
125
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
126
+ batch?: string | undefined;
126
127
  maxCompanies?: number | undefined;
127
128
  includeFounders?: boolean | undefined;
128
- credentials?: Partial<Record<CredentialType, string>> | undefined;
129
129
  }>;
130
130
  declare const YCScraperToolResultSchema: z.ZodObject<{
131
131
  people: z.ZodArray<z.ZodObject<{
@@ -145,23 +145,23 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
145
145
  }, "strip", z.ZodTypeAny, {
146
146
  title: string | null;
147
147
  name: string | null;
148
+ emails: string[] | null;
149
+ bio: string | null;
150
+ linkedinUrl: string | null;
148
151
  currentEmployers: {
149
152
  companyName: string | null;
150
153
  }[];
151
- linkedinUrl: string | null;
152
154
  twitterUrl: string | null;
153
- bio: string | null;
154
- emails: string[] | null;
155
155
  }, {
156
156
  title: string | null;
157
157
  name: string | null;
158
+ emails: string[] | null;
159
+ bio: string | null;
160
+ linkedinUrl: string | null;
158
161
  currentEmployers: {
159
162
  companyName: string | null;
160
163
  }[];
161
- linkedinUrl: string | null;
162
164
  twitterUrl: string | null;
163
- bio: string | null;
164
- emails: string[] | null;
165
165
  }>, "many">;
166
166
  companies: z.ZodArray<z.ZodObject<{
167
167
  companyName: z.ZodNullable<z.ZodString>;
@@ -178,42 +178,42 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
178
178
  }, "strip", z.ZodTypeAny, {
179
179
  title: string | null;
180
180
  name: string | null;
181
+ bio: string | null;
181
182
  linkedinUrl: string | null;
182
183
  twitterUrl: string | null;
183
- bio: string | null;
184
184
  }, {
185
185
  title: string | null;
186
186
  name: string | null;
187
+ bio: string | null;
187
188
  linkedinUrl: string | null;
188
189
  twitterUrl: string | null;
189
- bio: string | null;
190
190
  }>, "many">;
191
191
  }, "strip", z.ZodTypeAny, {
192
- batch: string | null;
193
192
  description: string | null;
194
193
  companyName: string | null;
195
194
  website: string | null;
196
- ycUrl: string | null;
197
195
  founders: {
198
196
  title: string | null;
199
197
  name: string | null;
198
+ bio: string | null;
200
199
  linkedinUrl: string | null;
201
200
  twitterUrl: string | null;
202
- bio: string | null;
203
201
  }[];
204
- }, {
205
202
  batch: string | null;
203
+ ycUrl: string | null;
204
+ }, {
206
205
  description: string | null;
207
206
  companyName: string | null;
208
207
  website: string | null;
209
- ycUrl: string | null;
210
208
  founders: {
211
209
  title: string | null;
212
210
  name: string | null;
211
+ bio: string | null;
213
212
  linkedinUrl: string | null;
214
213
  twitterUrl: string | null;
215
- bio: string | null;
216
214
  }[];
215
+ batch: string | null;
216
+ ycUrl: string | null;
217
217
  }>, "many">;
218
218
  totalPeople: z.ZodNumber;
219
219
  totalCompanies: z.ZodNumber;
@@ -222,69 +222,69 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
222
222
  success: z.ZodBoolean;
223
223
  error: z.ZodString;
224
224
  }, "strip", z.ZodTypeAny, {
225
- batch: string | null;
226
225
  url: string | null;
226
+ success: boolean;
227
+ error: string;
227
228
  people: {
228
229
  title: string | null;
229
230
  name: string | null;
231
+ emails: string[] | null;
232
+ bio: string | null;
233
+ linkedinUrl: string | null;
230
234
  currentEmployers: {
231
235
  companyName: string | null;
232
236
  }[];
233
- linkedinUrl: string | null;
234
237
  twitterUrl: string | null;
235
- bio: string | null;
236
- emails: string[] | null;
237
238
  }[];
239
+ batch: string | null;
238
240
  companies: {
239
- batch: string | null;
240
241
  description: string | null;
241
242
  companyName: string | null;
242
243
  website: string | null;
243
- ycUrl: string | null;
244
244
  founders: {
245
245
  title: string | null;
246
246
  name: string | null;
247
+ bio: string | null;
247
248
  linkedinUrl: string | null;
248
249
  twitterUrl: string | null;
249
- bio: string | null;
250
250
  }[];
251
+ batch: string | null;
252
+ ycUrl: string | null;
251
253
  }[];
252
254
  totalPeople: number;
253
255
  totalCompanies: number;
254
- success: boolean;
255
- error: string;
256
256
  }, {
257
- batch: string | null;
258
257
  url: string | null;
258
+ success: boolean;
259
+ error: string;
259
260
  people: {
260
261
  title: string | null;
261
262
  name: string | null;
263
+ emails: string[] | null;
264
+ bio: string | null;
265
+ linkedinUrl: string | null;
262
266
  currentEmployers: {
263
267
  companyName: string | null;
264
268
  }[];
265
- linkedinUrl: string | null;
266
269
  twitterUrl: string | null;
267
- bio: string | null;
268
- emails: string[] | null;
269
270
  }[];
271
+ batch: string | null;
270
272
  companies: {
271
- batch: string | null;
272
273
  description: string | null;
273
274
  companyName: string | null;
274
275
  website: string | null;
275
- ycUrl: string | null;
276
276
  founders: {
277
277
  title: string | null;
278
278
  name: string | null;
279
+ bio: string | null;
279
280
  linkedinUrl: string | null;
280
281
  twitterUrl: string | null;
281
- bio: string | null;
282
282
  }[];
283
+ batch: string | null;
284
+ ycUrl: string | null;
283
285
  }[];
284
286
  totalPeople: number;
285
287
  totalCompanies: number;
286
- success: boolean;
287
- error: string;
288
288
  }>;
289
289
  type YCScraperToolParams = z.output<typeof YCScraperToolParamsSchema>;
290
290
  type YCScraperToolResult = z.output<typeof YCScraperToolResultSchema>;
@@ -313,17 +313,17 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
313
313
  includeFounders: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
314
314
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
315
315
  }, "strip", z.ZodTypeAny, {
316
- batch?: string | undefined;
317
316
  url?: string | undefined;
317
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
318
+ batch?: string | undefined;
318
319
  maxCompanies?: number | undefined;
319
320
  includeFounders?: boolean | undefined;
320
- credentials?: Partial<Record<CredentialType, string>> | undefined;
321
321
  }, {
322
- batch?: string | undefined;
323
322
  url?: string | undefined;
323
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
324
+ batch?: string | undefined;
324
325
  maxCompanies?: number | undefined;
325
326
  includeFounders?: boolean | undefined;
326
- credentials?: Partial<Record<CredentialType, string>> | undefined;
327
327
  }>;
328
328
  static readonly resultSchema: z.ZodObject<{
329
329
  people: z.ZodArray<z.ZodObject<{
@@ -343,23 +343,23 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
343
343
  }, "strip", z.ZodTypeAny, {
344
344
  title: string | null;
345
345
  name: string | null;
346
+ emails: string[] | null;
347
+ bio: string | null;
348
+ linkedinUrl: string | null;
346
349
  currentEmployers: {
347
350
  companyName: string | null;
348
351
  }[];
349
- linkedinUrl: string | null;
350
352
  twitterUrl: string | null;
351
- bio: string | null;
352
- emails: string[] | null;
353
353
  }, {
354
354
  title: string | null;
355
355
  name: string | null;
356
+ emails: string[] | null;
357
+ bio: string | null;
358
+ linkedinUrl: string | null;
356
359
  currentEmployers: {
357
360
  companyName: string | null;
358
361
  }[];
359
- linkedinUrl: string | null;
360
362
  twitterUrl: string | null;
361
- bio: string | null;
362
- emails: string[] | null;
363
363
  }>, "many">;
364
364
  companies: z.ZodArray<z.ZodObject<{
365
365
  companyName: z.ZodNullable<z.ZodString>;
@@ -376,42 +376,42 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
376
376
  }, "strip", z.ZodTypeAny, {
377
377
  title: string | null;
378
378
  name: string | null;
379
+ bio: string | null;
379
380
  linkedinUrl: string | null;
380
381
  twitterUrl: string | null;
381
- bio: string | null;
382
382
  }, {
383
383
  title: string | null;
384
384
  name: string | null;
385
+ bio: string | null;
385
386
  linkedinUrl: string | null;
386
387
  twitterUrl: string | null;
387
- bio: string | null;
388
388
  }>, "many">;
389
389
  }, "strip", z.ZodTypeAny, {
390
- batch: string | null;
391
390
  description: string | null;
392
391
  companyName: string | null;
393
392
  website: string | null;
394
- ycUrl: string | null;
395
393
  founders: {
396
394
  title: string | null;
397
395
  name: string | null;
396
+ bio: string | null;
398
397
  linkedinUrl: string | null;
399
398
  twitterUrl: string | null;
400
- bio: string | null;
401
399
  }[];
402
- }, {
403
400
  batch: string | null;
401
+ ycUrl: string | null;
402
+ }, {
404
403
  description: string | null;
405
404
  companyName: string | null;
406
405
  website: string | null;
407
- ycUrl: string | null;
408
406
  founders: {
409
407
  title: string | null;
410
408
  name: string | null;
409
+ bio: string | null;
411
410
  linkedinUrl: string | null;
412
411
  twitterUrl: string | null;
413
- bio: string | null;
414
412
  }[];
413
+ batch: string | null;
414
+ ycUrl: string | null;
415
415
  }>, "many">;
416
416
  totalPeople: z.ZodNumber;
417
417
  totalCompanies: z.ZodNumber;
@@ -420,69 +420,69 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
420
420
  success: z.ZodBoolean;
421
421
  error: z.ZodString;
422
422
  }, "strip", z.ZodTypeAny, {
423
- batch: string | null;
424
423
  url: string | null;
424
+ success: boolean;
425
+ error: string;
425
426
  people: {
426
427
  title: string | null;
427
428
  name: string | null;
429
+ emails: string[] | null;
430
+ bio: string | null;
431
+ linkedinUrl: string | null;
428
432
  currentEmployers: {
429
433
  companyName: string | null;
430
434
  }[];
431
- linkedinUrl: string | null;
432
435
  twitterUrl: string | null;
433
- bio: string | null;
434
- emails: string[] | null;
435
436
  }[];
437
+ batch: string | null;
436
438
  companies: {
437
- batch: string | null;
438
439
  description: string | null;
439
440
  companyName: string | null;
440
441
  website: string | null;
441
- ycUrl: string | null;
442
442
  founders: {
443
443
  title: string | null;
444
444
  name: string | null;
445
+ bio: string | null;
445
446
  linkedinUrl: string | null;
446
447
  twitterUrl: string | null;
447
- bio: string | null;
448
448
  }[];
449
+ batch: string | null;
450
+ ycUrl: string | null;
449
451
  }[];
450
452
  totalPeople: number;
451
453
  totalCompanies: number;
452
- success: boolean;
453
- error: string;
454
454
  }, {
455
- batch: string | null;
456
455
  url: string | null;
456
+ success: boolean;
457
+ error: string;
457
458
  people: {
458
459
  title: string | null;
459
460
  name: string | null;
461
+ emails: string[] | null;
462
+ bio: string | null;
463
+ linkedinUrl: string | null;
460
464
  currentEmployers: {
461
465
  companyName: string | null;
462
466
  }[];
463
- linkedinUrl: string | null;
464
467
  twitterUrl: string | null;
465
- bio: string | null;
466
- emails: string[] | null;
467
468
  }[];
469
+ batch: string | null;
468
470
  companies: {
469
- batch: string | null;
470
471
  description: string | null;
471
472
  companyName: string | null;
472
473
  website: string | null;
473
- ycUrl: string | null;
474
474
  founders: {
475
475
  title: string | null;
476
476
  name: string | null;
477
+ bio: string | null;
477
478
  linkedinUrl: string | null;
478
479
  twitterUrl: string | null;
479
- bio: string | null;
480
480
  }[];
481
+ batch: string | null;
482
+ ycUrl: string | null;
481
483
  }[];
482
484
  totalPeople: number;
483
485
  totalCompanies: number;
484
- success: boolean;
485
- error: string;
486
486
  }>;
487
487
  static readonly shortDescription = "Scrape Y Combinator directory for company and founder data. Find founders by batch (W24, S23, etc.) with LinkedIn profiles.";
488
488
  static readonly longDescription = "\n Y Combinator directory scraper for extracting company and founder data.\n\n **OPERATIONS:**\n - Scrape companies and founders by YC batch (e.g., W24, S23, W22)\n - Extract founder details including LinkedIn profiles, titles, and bios\n - Get company information including descriptions and websites\n\n **WHEN TO USE THIS TOOL:**\n - **YC founder outreach** - find founders from specific batches for networking\n - **Lead generation** - build lists of YC founders for sales/recruiting\n - **Research** - analyze YC companies by batch, industry, or founder background\n - **Competitive analysis** - research YC companies in specific sectors\n\n **BATCH FORMAT:**\n - W = Winter batch (January start)\n - S = Summer batch (June start)\n - Examples: W24 (Winter 2024), S23 (Summer 2023), W22 (Winter 2022)\n\n **OUTPUT:**\n - People array: Flattened list of founders with company context\n - Companies array: Company-level data with nested founders\n - LinkedIn URLs for direct founder outreach\n\n **TIPS:**\n - Start with smaller maxCompanies (20-50) for faster results\n - Use the batch parameter for easier filtering\n - Use url parameter for advanced filtering (industry, location, etc.)\n\n The tool uses Apify's Y Combinator scraper for reliable data extraction.\n ";