@bubblelab/bubble-core 0.1.69 → 0.1.71

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 (46) hide show
  1. package/dist/bubble-bundle.d.ts +78 -78
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +92 -92
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +346 -346
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +320 -320
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +58 -58
  17. package/dist/bubbles/service-bubble/github.d.ts +36 -36
  18. package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +63 -2
  20. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/google-drive.js +74 -4
  22. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  23. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +74 -74
  24. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  25. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/jira/jira.d.ts +9 -9
  27. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +20 -20
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  31. package/dist/bubbles/service-bubble/slack/slack.d.ts +114 -114
  32. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +11 -11
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
  34. package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
  36. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
  37. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
  38. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +305 -305
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +28 -28
  40. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  42. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
  43. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
  44. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +32 -32
  45. package/dist/bubbles.json +69 -4
  46. package/package.json +2 -2
@@ -550,8 +550,8 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
550
550
  allow_duplicate_linkedin: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
551
551
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
552
552
  }, "strip", z.ZodTypeAny, {
553
- name: string;
554
553
  operation: "create_candidate";
554
+ name: string;
555
555
  allow_duplicate_linkedin: boolean;
556
556
  credentials?: Partial<Record<CredentialType, string>> | undefined;
557
557
  website?: string | undefined;
@@ -566,8 +566,8 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
566
566
  credited_to_user_id?: string | undefined;
567
567
  tag?: string | undefined;
568
568
  }, {
569
- name: string;
570
569
  operation: "create_candidate";
570
+ name: string;
571
571
  credentials?: Partial<Record<CredentialType, string>> | undefined;
572
572
  website?: string | undefined;
573
573
  emails?: {
@@ -589,13 +589,13 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
589
589
  }, "strip", z.ZodTypeAny, {
590
590
  operation: "search_candidates";
591
591
  name?: string | undefined;
592
- credentials?: Partial<Record<CredentialType, string>> | undefined;
593
592
  email?: string | undefined;
593
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
594
594
  }, {
595
595
  operation: "search_candidates";
596
596
  name?: string | undefined;
597
- credentials?: Partial<Record<CredentialType, string>> | undefined;
598
597
  email?: string | undefined;
598
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
599
599
  }>, z.ZodObject<{
600
600
  operation: z.ZodLiteral<"add_tag">;
601
601
  candidate_id: z.ZodString;
@@ -628,12 +628,12 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
628
628
  title: z.ZodString;
629
629
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
630
630
  }, "strip", z.ZodTypeAny, {
631
- title: string;
632
631
  operation: "create_tag";
632
+ title: string;
633
633
  credentials?: Partial<Record<CredentialType, string>> | undefined;
634
634
  }, {
635
- title: string;
636
635
  operation: "create_tag";
636
+ title: string;
637
637
  credentials?: Partial<Record<CredentialType, string>> | undefined;
638
638
  }>, z.ZodObject<{
639
639
  operation: z.ZodLiteral<"list_custom_fields">;
@@ -897,9 +897,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
897
897
  sync_token: z.ZodOptional<z.ZodString>;
898
898
  error: z.ZodString;
899
899
  }, "strip", z.ZodTypeAny, {
900
- error: string;
901
- success: boolean;
902
900
  operation: "list_candidates";
901
+ success: boolean;
902
+ error: string;
903
903
  next_cursor?: string | undefined;
904
904
  sync_token?: string | undefined;
905
905
  candidates?: {
@@ -959,9 +959,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
959
959
  }[] | undefined;
960
960
  more_data_available?: boolean | undefined;
961
961
  }, {
962
- error: string;
963
- success: boolean;
964
962
  operation: "list_candidates";
963
+ success: boolean;
964
+ error: string;
965
965
  next_cursor?: string | undefined;
966
966
  sync_token?: string | undefined;
967
967
  candidates?: {
@@ -1115,9 +1115,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1115
1115
  }>>;
1116
1116
  error: z.ZodString;
1117
1117
  }, "strip", z.ZodTypeAny, {
1118
- error: string;
1119
- success: boolean;
1120
1118
  operation: "get_candidate";
1119
+ success: boolean;
1120
+ error: string;
1121
1121
  candidate?: {
1122
1122
  name: string;
1123
1123
  id: string;
@@ -1141,9 +1141,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1141
1141
  }[] | undefined;
1142
1142
  } | undefined;
1143
1143
  }, {
1144
- error: string;
1145
- success: boolean;
1146
1144
  operation: "get_candidate";
1145
+ success: boolean;
1146
+ error: string;
1147
1147
  candidate?: {
1148
1148
  name: string;
1149
1149
  id: string;
@@ -1262,9 +1262,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1262
1262
  duplicate: z.ZodOptional<z.ZodBoolean>;
1263
1263
  error: z.ZodString;
1264
1264
  }, "strip", z.ZodTypeAny, {
1265
- error: string;
1266
- success: boolean;
1267
1265
  operation: "create_candidate";
1266
+ success: boolean;
1267
+ error: string;
1268
1268
  candidate?: {
1269
1269
  name: string;
1270
1270
  id: string;
@@ -1289,9 +1289,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1289
1289
  } | undefined;
1290
1290
  duplicate?: boolean | undefined;
1291
1291
  }, {
1292
- error: string;
1293
- success: boolean;
1294
1292
  operation: "create_candidate";
1293
+ success: boolean;
1294
+ error: string;
1295
1295
  candidate?: {
1296
1296
  name: string;
1297
1297
  id: string;
@@ -1410,9 +1410,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1410
1410
  }>, "many">>;
1411
1411
  error: z.ZodString;
1412
1412
  }, "strip", z.ZodTypeAny, {
1413
- error: string;
1414
- success: boolean;
1415
1413
  operation: "search_candidates";
1414
+ success: boolean;
1415
+ error: string;
1416
1416
  candidates?: {
1417
1417
  name: string;
1418
1418
  id: string;
@@ -1436,9 +1436,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1436
1436
  }[] | undefined;
1437
1437
  }[] | undefined;
1438
1438
  }, {
1439
- error: string;
1440
- success: boolean;
1441
1439
  operation: "search_candidates";
1440
+ success: boolean;
1441
+ error: string;
1442
1442
  candidates?: {
1443
1443
  name: string;
1444
1444
  id: string;
@@ -1556,9 +1556,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1556
1556
  }>>;
1557
1557
  error: z.ZodString;
1558
1558
  }, "strip", z.ZodTypeAny, {
1559
- error: string;
1560
- success: boolean;
1561
1559
  operation: "add_tag";
1560
+ success: boolean;
1561
+ error: string;
1562
1562
  candidate?: {
1563
1563
  name: string;
1564
1564
  id: string;
@@ -1582,9 +1582,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1582
1582
  }[] | undefined;
1583
1583
  } | undefined;
1584
1584
  }, {
1585
- error: string;
1586
- success: boolean;
1587
1585
  operation: "add_tag";
1586
+ success: boolean;
1587
+ error: string;
1588
1588
  candidate?: {
1589
1589
  name: string;
1590
1590
  id: string;
@@ -1625,18 +1625,18 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1625
1625
  }>, "many">>;
1626
1626
  error: z.ZodString;
1627
1627
  }, "strip", z.ZodTypeAny, {
1628
- error: string;
1629
- success: boolean;
1630
1628
  operation: "list_tags";
1629
+ success: boolean;
1630
+ error: string;
1631
1631
  tags?: {
1632
1632
  title: string;
1633
1633
  id: string;
1634
1634
  isArchived?: boolean | undefined;
1635
1635
  }[] | undefined;
1636
1636
  }, {
1637
- error: string;
1638
- success: boolean;
1639
1637
  operation: "list_tags";
1638
+ success: boolean;
1639
+ error: string;
1640
1640
  tags?: {
1641
1641
  title: string;
1642
1642
  id: string;
@@ -1660,18 +1660,18 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1660
1660
  }>>;
1661
1661
  error: z.ZodString;
1662
1662
  }, "strip", z.ZodTypeAny, {
1663
- error: string;
1664
- success: boolean;
1665
1663
  operation: "create_tag";
1664
+ success: boolean;
1665
+ error: string;
1666
1666
  tag?: {
1667
1667
  title: string;
1668
1668
  id: string;
1669
1669
  isArchived?: boolean | undefined;
1670
1670
  } | undefined;
1671
1671
  }, {
1672
- error: string;
1673
- success: boolean;
1674
1672
  operation: "create_tag";
1673
+ success: boolean;
1674
+ error: string;
1675
1675
  tag?: {
1676
1676
  title: string;
1677
1677
  id: string;
@@ -1730,9 +1730,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1730
1730
  sync_token: z.ZodOptional<z.ZodString>;
1731
1731
  error: z.ZodString;
1732
1732
  }, "strip", z.ZodTypeAny, {
1733
- error: string;
1734
- success: boolean;
1735
1733
  operation: "list_custom_fields";
1734
+ success: boolean;
1735
+ error: string;
1736
1736
  next_cursor?: string | undefined;
1737
1737
  sync_token?: string | undefined;
1738
1738
  more_data_available?: boolean | undefined;
@@ -1750,9 +1750,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1750
1750
  }[] | undefined;
1751
1751
  }[] | undefined;
1752
1752
  }, {
1753
- error: string;
1754
- success: boolean;
1755
1753
  operation: "list_custom_fields";
1754
+ success: boolean;
1755
+ error: string;
1756
1756
  next_cursor?: string | undefined;
1757
1757
  sync_token?: string | undefined;
1758
1758
  more_data_available?: boolean | undefined;
@@ -132,14 +132,14 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
132
132
  type: "external";
133
133
  server: string;
134
134
  password?: string | undefined;
135
- username?: string | undefined;
136
135
  domainPattern?: string | undefined;
136
+ username?: string | undefined;
137
137
  }, {
138
138
  type: "external";
139
139
  server: string;
140
140
  password?: string | undefined;
141
- username?: string | undefined;
142
141
  domainPattern?: string | undefined;
142
+ username?: string | undefined;
143
143
  }>]>, "many">]>>;
144
144
  stealth: import("zod").ZodOptional<import("zod").ZodObject<{
145
145
  advancedStealth: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
@@ -162,13 +162,6 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
162
162
  viewport_width: number;
163
163
  viewport_height: number;
164
164
  credentials?: Partial<Record<CredentialType, string>> | undefined;
165
- stealth?: {
166
- advancedStealth: boolean;
167
- solveCaptchas: boolean;
168
- captchaImageSelector?: string | undefined;
169
- captchaInputSelector?: string | undefined;
170
- } | undefined;
171
- context_id?: string | undefined;
172
165
  cookies?: {
173
166
  value: string;
174
167
  path: string;
@@ -178,6 +171,7 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
178
171
  httpOnly: boolean;
179
172
  secure: boolean;
180
173
  }[] | undefined;
174
+ context_id?: string | undefined;
181
175
  proxies?: true | ({
182
176
  type: "browserbase";
183
177
  geolocation?: {
@@ -190,19 +184,18 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
190
184
  type: "external";
191
185
  server: string;
192
186
  password?: string | undefined;
193
- username?: string | undefined;
194
187
  domainPattern?: string | undefined;
188
+ username?: string | undefined;
195
189
  })[] | undefined;
196
- }, {
197
- operation: "start_session";
198
- credentials?: Partial<Record<CredentialType, string>> | undefined;
199
190
  stealth?: {
200
- advancedStealth?: boolean | undefined;
201
- solveCaptchas?: boolean | undefined;
191
+ advancedStealth: boolean;
192
+ solveCaptchas: boolean;
202
193
  captchaImageSelector?: string | undefined;
203
194
  captchaInputSelector?: string | undefined;
204
195
  } | undefined;
205
- context_id?: string | undefined;
196
+ }, {
197
+ operation: "start_session";
198
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
206
199
  cookies?: {
207
200
  value: string;
208
201
  path: string;
@@ -212,6 +205,7 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
212
205
  httpOnly: boolean;
213
206
  secure: boolean;
214
207
  }[] | undefined;
208
+ context_id?: string | undefined;
215
209
  viewport_width?: number | undefined;
216
210
  viewport_height?: number | undefined;
217
211
  proxies?: true | ({
@@ -226,9 +220,15 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
226
220
  type: "external";
227
221
  server: string;
228
222
  password?: string | undefined;
229
- username?: string | undefined;
230
223
  domainPattern?: string | undefined;
224
+ username?: string | undefined;
231
225
  })[] | undefined;
226
+ stealth?: {
227
+ advancedStealth?: boolean | undefined;
228
+ solveCaptchas?: boolean | undefined;
229
+ captchaImageSelector?: string | undefined;
230
+ captchaInputSelector?: string | undefined;
231
+ } | undefined;
232
232
  }>, import("zod").ZodObject<{
233
233
  operation: import("zod").ZodLiteral<"navigate">;
234
234
  session_id: import("zod").ZodString;
@@ -239,17 +239,17 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
239
239
  }, "strip", import("zod").ZodTypeAny, {
240
240
  operation: "navigate";
241
241
  url: string;
242
- timeout: number;
243
242
  session_id: string;
244
243
  wait_until: "load" | "domcontentloaded" | "networkidle0" | "networkidle2";
244
+ timeout: number;
245
245
  credentials?: Partial<Record<CredentialType, string>> | undefined;
246
246
  }, {
247
247
  operation: "navigate";
248
248
  url: string;
249
249
  session_id: string;
250
250
  credentials?: Partial<Record<CredentialType, string>> | undefined;
251
- timeout?: number | undefined;
252
251
  wait_until?: "load" | "domcontentloaded" | "networkidle0" | "networkidle2" | undefined;
252
+ timeout?: number | undefined;
253
253
  }>, import("zod").ZodObject<{
254
254
  operation: import("zod").ZodLiteral<"click">;
255
255
  session_id: import("zod").ZodString;
@@ -259,8 +259,8 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
259
259
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
260
260
  }, "strip", import("zod").ZodTypeAny, {
261
261
  operation: "click";
262
- timeout: number;
263
262
  session_id: string;
263
+ timeout: number;
264
264
  selector: string;
265
265
  wait_for_navigation: boolean;
266
266
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -284,8 +284,8 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
284
284
  text: string;
285
285
  session_id: string;
286
286
  selector: string;
287
- delay: number;
288
287
  clear_first: boolean;
288
+ delay: number;
289
289
  credentials?: Partial<Record<CredentialType, string>> | undefined;
290
290
  }, {
291
291
  operation: "type";
@@ -293,8 +293,8 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
293
293
  session_id: string;
294
294
  selector: string;
295
295
  credentials?: Partial<Record<CredentialType, string>> | undefined;
296
- delay?: number | undefined;
297
296
  clear_first?: boolean | undefined;
297
+ delay?: number | undefined;
298
298
  }>, import("zod").ZodObject<{
299
299
  operation: import("zod").ZodLiteral<"evaluate">;
300
300
  session_id: import("zod").ZodString;
@@ -302,13 +302,13 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
302
302
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
303
303
  }, "strip", import("zod").ZodTypeAny, {
304
304
  operation: "evaluate";
305
- script: string;
306
305
  session_id: string;
306
+ script: string;
307
307
  credentials?: Partial<Record<CredentialType, string>> | undefined;
308
308
  }, {
309
309
  operation: "evaluate";
310
- script: string;
311
310
  session_id: string;
311
+ script: string;
312
312
  credentials?: Partial<Record<CredentialType, string>> | undefined;
313
313
  }>, import("zod").ZodObject<{
314
314
  operation: import("zod").ZodLiteral<"get_content">;
@@ -318,16 +318,16 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
318
318
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
319
319
  }, "strip", import("zod").ZodTypeAny, {
320
320
  operation: "get_content";
321
- content_type: "text" | "html" | "outer_html";
322
321
  session_id: string;
322
+ content_type: "text" | "html" | "outer_html";
323
323
  credentials?: Partial<Record<CredentialType, string>> | undefined;
324
324
  selector?: string | undefined;
325
325
  }, {
326
326
  operation: "get_content";
327
327
  session_id: string;
328
328
  credentials?: Partial<Record<CredentialType, string>> | undefined;
329
- content_type?: "text" | "html" | "outer_html" | undefined;
330
329
  selector?: string | undefined;
330
+ content_type?: "text" | "html" | "outer_html" | undefined;
331
331
  }>, import("zod").ZodObject<{
332
332
  operation: import("zod").ZodLiteral<"screenshot">;
333
333
  session_id: import("zod").ZodString;
@@ -342,16 +342,16 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
342
342
  session_id: string;
343
343
  full_page: boolean;
344
344
  credentials?: Partial<Record<CredentialType, string>> | undefined;
345
- quality?: number | undefined;
346
345
  selector?: string | undefined;
346
+ quality?: number | undefined;
347
347
  }, {
348
348
  operation: "screenshot";
349
349
  session_id: string;
350
350
  format?: "png" | "jpeg" | "webp" | undefined;
351
351
  credentials?: Partial<Record<CredentialType, string>> | undefined;
352
- quality?: number | undefined;
353
352
  selector?: string | undefined;
354
353
  full_page?: boolean | undefined;
354
+ quality?: number | undefined;
355
355
  }>, import("zod").ZodObject<{
356
356
  operation: import("zod").ZodLiteral<"wait">;
357
357
  session_id: import("zod").ZodString;
@@ -361,8 +361,8 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
361
361
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
362
362
  }, "strip", import("zod").ZodTypeAny, {
363
363
  operation: "wait";
364
- timeout: number;
365
364
  session_id: string;
365
+ timeout: number;
366
366
  wait_type: "timeout" | "selector" | "navigation";
367
367
  credentials?: Partial<Record<CredentialType, string>> | undefined;
368
368
  selector?: string | undefined;
@@ -412,15 +412,15 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
412
412
  operation: "start_session";
413
413
  success: boolean;
414
414
  error: string;
415
- session_id?: string | undefined;
416
415
  context_id?: string | undefined;
416
+ session_id?: string | undefined;
417
417
  debug_url?: string | undefined;
418
418
  }, {
419
419
  operation: "start_session";
420
420
  success: boolean;
421
421
  error: string;
422
- session_id?: string | undefined;
423
422
  context_id?: string | undefined;
423
+ session_id?: string | undefined;
424
424
  debug_url?: string | undefined;
425
425
  }>, import("zod").ZodObject<{
426
426
  operation: import("zod").ZodLiteral<"navigate">;