@bubblelab/bubble-core 0.1.61 → 0.1.63

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 (63) hide show
  1. package/dist/bubble-bundle.d.ts +87 -87
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +148 -148
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +80 -80
  4. package/dist/bubbles/service-bubble/airtable.d.ts +214 -214
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +84 -84
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +90 -90
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +106 -106
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +138 -138
  10. package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
  11. package/dist/bubbles/service-bubble/firecrawl.d.ts +862 -862
  12. package/dist/bubbles/service-bubble/followupboss.d.ts +270 -270
  13. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +88 -88
  14. package/dist/bubbles/service-bubble/github.d.ts +268 -268
  15. package/dist/bubbles/service-bubble/gmail.d.ts +416 -416
  16. package/dist/bubbles/service-bubble/google-calendar.d.ts +162 -162
  17. package/dist/bubbles/service-bubble/google-drive.d.ts +128 -128
  18. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +54 -54
  19. package/dist/bubbles/service-bubble/hello-world.d.ts +6 -6
  20. package/dist/bubbles/service-bubble/http.d.ts +12 -12
  21. package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
  22. package/dist/bubbles/service-bubble/jira/jira.d.ts +74 -74
  23. package/dist/bubbles/service-bubble/notion/notion.d.ts +1923 -1923
  24. package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
  25. package/dist/bubbles/service-bubble/resend.d.ts +44 -44
  26. package/dist/bubbles/service-bubble/slack/slack.d.ts +465 -465
  27. package/dist/bubbles/service-bubble/storage.d.ts +40 -40
  28. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +141 -141
  29. package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
  30. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +29 -29
  31. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +28 -28
  32. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
  33. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  34. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +88 -88
  35. package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
  38. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
  39. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +338 -338
  41. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  42. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +130 -130
  43. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
  44. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
  46. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +80 -80
  47. package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +182 -182
  49. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +22 -22
  50. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
  51. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  52. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
  53. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +32 -32
  54. package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
  55. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +44 -44
  56. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
  57. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +114 -114
  58. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  59. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
  60. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +56 -56
  61. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
  62. package/dist/bubbles.json +1 -1
  63. package/package.json +2 -2
@@ -12,18 +12,18 @@ export declare const CDPCookieSchema: z.ZodObject<{
12
12
  httpOnly: z.ZodBoolean;
13
13
  secure: z.ZodBoolean;
14
14
  }, "strip", z.ZodTypeAny, {
15
- name: string;
16
15
  value: string;
17
- domain: string;
18
16
  path: string;
17
+ name: string;
18
+ domain: string;
19
19
  expires: number;
20
20
  httpOnly: boolean;
21
21
  secure: boolean;
22
22
  }, {
23
- name: string;
24
23
  value: string;
25
- domain: string;
26
24
  path: string;
25
+ name: string;
26
+ domain: string;
27
27
  expires: number;
28
28
  httpOnly: boolean;
29
29
  secure: boolean;
@@ -44,18 +44,18 @@ export declare const BrowserSessionDataSchema: z.ZodObject<{
44
44
  httpOnly: z.ZodBoolean;
45
45
  secure: z.ZodBoolean;
46
46
  }, "strip", z.ZodTypeAny, {
47
- name: string;
48
47
  value: string;
49
- domain: string;
50
48
  path: string;
49
+ name: string;
50
+ domain: string;
51
51
  expires: number;
52
52
  httpOnly: boolean;
53
53
  secure: boolean;
54
54
  }, {
55
- name: string;
56
55
  value: string;
57
- domain: string;
58
56
  path: string;
57
+ name: string;
58
+ domain: string;
59
59
  expires: number;
60
60
  httpOnly: boolean;
61
61
  secure: boolean;
@@ -63,10 +63,10 @@ export declare const BrowserSessionDataSchema: z.ZodObject<{
63
63
  }, "strip", z.ZodTypeAny, {
64
64
  contextId: string;
65
65
  cookies: {
66
- name: string;
67
66
  value: string;
68
- domain: string;
69
67
  path: string;
68
+ name: string;
69
+ domain: string;
70
70
  expires: number;
71
71
  httpOnly: boolean;
72
72
  secure: boolean;
@@ -74,10 +74,10 @@ export declare const BrowserSessionDataSchema: z.ZodObject<{
74
74
  }, {
75
75
  contextId: string;
76
76
  cookies: {
77
- name: string;
78
77
  value: string;
79
- domain: string;
80
78
  path: string;
79
+ name: string;
80
+ domain: string;
81
81
  expires: number;
82
82
  httpOnly: boolean;
83
83
  secure: boolean;
@@ -151,14 +151,14 @@ export declare const ExternalProxySchema: z.ZodObject<{
151
151
  type: "external";
152
152
  server: string;
153
153
  password?: string | undefined;
154
- domainPattern?: string | undefined;
155
154
  username?: string | undefined;
155
+ domainPattern?: string | undefined;
156
156
  }, {
157
157
  type: "external";
158
158
  server: string;
159
159
  password?: string | undefined;
160
- domainPattern?: string | undefined;
161
160
  username?: string | undefined;
161
+ domainPattern?: string | undefined;
162
162
  }>;
163
163
  export type ExternalProxy = z.infer<typeof ExternalProxySchema>;
164
164
  /**
@@ -206,14 +206,14 @@ export declare const ProxyConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
206
206
  type: "external";
207
207
  server: string;
208
208
  password?: string | undefined;
209
- domainPattern?: string | undefined;
210
209
  username?: string | undefined;
210
+ domainPattern?: string | undefined;
211
211
  }, {
212
212
  type: "external";
213
213
  server: string;
214
214
  password?: string | undefined;
215
- domainPattern?: string | undefined;
216
215
  username?: string | undefined;
216
+ domainPattern?: string | undefined;
217
217
  }>]>;
218
218
  export type ProxyConfig = z.infer<typeof ProxyConfigSchema>;
219
219
  /**
@@ -252,18 +252,18 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
252
252
  httpOnly: z.ZodBoolean;
253
253
  secure: z.ZodBoolean;
254
254
  }, "strip", z.ZodTypeAny, {
255
- name: string;
256
255
  value: string;
257
- domain: string;
258
256
  path: string;
257
+ name: string;
258
+ domain: string;
259
259
  expires: number;
260
260
  httpOnly: boolean;
261
261
  secure: boolean;
262
262
  }, {
263
- name: string;
264
263
  value: string;
265
- domain: string;
266
264
  path: string;
265
+ name: string;
266
+ domain: string;
267
267
  expires: number;
268
268
  httpOnly: boolean;
269
269
  secure: boolean;
@@ -313,14 +313,14 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
313
313
  type: "external";
314
314
  server: string;
315
315
  password?: string | undefined;
316
- domainPattern?: string | undefined;
317
316
  username?: string | undefined;
317
+ domainPattern?: string | undefined;
318
318
  }, {
319
319
  type: "external";
320
320
  server: string;
321
321
  password?: string | undefined;
322
- domainPattern?: string | undefined;
323
322
  username?: string | undefined;
323
+ domainPattern?: string | undefined;
324
324
  }>]>, "many">]>>;
325
325
  stealth: z.ZodOptional<z.ZodObject<{
326
326
  advancedStealth: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -342,17 +342,23 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
342
342
  operation: "start_session";
343
343
  viewport_width: number;
344
344
  viewport_height: number;
345
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
346
+ stealth?: {
347
+ advancedStealth: boolean;
348
+ solveCaptchas: boolean;
349
+ captchaImageSelector?: string | undefined;
350
+ captchaInputSelector?: string | undefined;
351
+ } | undefined;
345
352
  cookies?: {
346
- name: string;
347
353
  value: string;
348
- domain: string;
349
354
  path: string;
355
+ name: string;
356
+ domain: string;
350
357
  expires: number;
351
358
  httpOnly: boolean;
352
359
  secure: boolean;
353
360
  }[] | undefined;
354
361
  context_id?: string | undefined;
355
- credentials?: Partial<Record<CredentialType, string>> | undefined;
356
362
  proxies?: true | ({
357
363
  type: "browserbase";
358
364
  geolocation?: {
@@ -365,22 +371,23 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
365
371
  type: "external";
366
372
  server: string;
367
373
  password?: string | undefined;
368
- domainPattern?: string | undefined;
369
374
  username?: string | undefined;
375
+ domainPattern?: string | undefined;
370
376
  })[] | undefined;
377
+ }, {
378
+ operation: "start_session";
379
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
371
380
  stealth?: {
372
- advancedStealth: boolean;
373
- solveCaptchas: boolean;
381
+ advancedStealth?: boolean | undefined;
382
+ solveCaptchas?: boolean | undefined;
374
383
  captchaImageSelector?: string | undefined;
375
384
  captchaInputSelector?: string | undefined;
376
385
  } | undefined;
377
- }, {
378
- operation: "start_session";
379
386
  cookies?: {
380
- name: string;
381
387
  value: string;
382
- domain: string;
383
388
  path: string;
389
+ name: string;
390
+ domain: string;
384
391
  expires: number;
385
392
  httpOnly: boolean;
386
393
  secure: boolean;
@@ -388,7 +395,6 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
388
395
  context_id?: string | undefined;
389
396
  viewport_width?: number | undefined;
390
397
  viewport_height?: number | undefined;
391
- credentials?: Partial<Record<CredentialType, string>> | undefined;
392
398
  proxies?: true | ({
393
399
  type: "browserbase";
394
400
  geolocation?: {
@@ -401,15 +407,9 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
401
407
  type: "external";
402
408
  server: string;
403
409
  password?: string | undefined;
404
- domainPattern?: string | undefined;
405
410
  username?: string | undefined;
411
+ domainPattern?: string | undefined;
406
412
  })[] | undefined;
407
- stealth?: {
408
- advancedStealth?: boolean | undefined;
409
- solveCaptchas?: boolean | undefined;
410
- captchaImageSelector?: string | undefined;
411
- captchaInputSelector?: string | undefined;
412
- } | undefined;
413
413
  }>, z.ZodObject<{
414
414
  operation: z.ZodLiteral<"navigate">;
415
415
  session_id: z.ZodString;
@@ -418,19 +418,19 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
418
418
  timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
419
419
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
420
420
  }, "strip", z.ZodTypeAny, {
421
- operation: "navigate";
422
421
  url: string;
422
+ timeout: number;
423
+ operation: "navigate";
423
424
  session_id: string;
424
425
  wait_until: "load" | "domcontentloaded" | "networkidle0" | "networkidle2";
425
- timeout: number;
426
426
  credentials?: Partial<Record<CredentialType, string>> | undefined;
427
427
  }, {
428
- operation: "navigate";
429
428
  url: string;
429
+ operation: "navigate";
430
430
  session_id: string;
431
431
  credentials?: Partial<Record<CredentialType, string>> | undefined;
432
- wait_until?: "load" | "domcontentloaded" | "networkidle0" | "networkidle2" | undefined;
433
432
  timeout?: number | undefined;
433
+ wait_until?: "load" | "domcontentloaded" | "networkidle0" | "networkidle2" | undefined;
434
434
  }>, z.ZodObject<{
435
435
  operation: z.ZodLiteral<"click">;
436
436
  session_id: z.ZodString;
@@ -439,9 +439,9 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
439
439
  timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
440
440
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
441
441
  }, "strip", z.ZodTypeAny, {
442
+ timeout: number;
442
443
  operation: "click";
443
444
  session_id: string;
444
- timeout: number;
445
445
  selector: string;
446
446
  wait_for_navigation: boolean;
447
447
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -461,35 +461,35 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
461
461
  delay: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
462
462
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
463
463
  }, "strip", z.ZodTypeAny, {
464
+ text: string;
464
465
  operation: "type";
465
466
  session_id: string;
466
467
  selector: string;
467
- text: string;
468
- clear_first: boolean;
469
468
  delay: number;
469
+ clear_first: boolean;
470
470
  credentials?: Partial<Record<CredentialType, string>> | undefined;
471
471
  }, {
472
+ text: string;
472
473
  operation: "type";
473
474
  session_id: string;
474
475
  selector: string;
475
- text: string;
476
476
  credentials?: Partial<Record<CredentialType, string>> | undefined;
477
- clear_first?: boolean | undefined;
478
477
  delay?: number | undefined;
478
+ clear_first?: boolean | undefined;
479
479
  }>, z.ZodObject<{
480
480
  operation: z.ZodLiteral<"evaluate">;
481
481
  session_id: z.ZodString;
482
482
  script: z.ZodString;
483
483
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
484
484
  }, "strip", z.ZodTypeAny, {
485
+ script: string;
485
486
  operation: "evaluate";
486
487
  session_id: string;
487
- script: string;
488
488
  credentials?: Partial<Record<CredentialType, string>> | undefined;
489
489
  }, {
490
+ script: string;
490
491
  operation: "evaluate";
491
492
  session_id: string;
492
- script: string;
493
493
  credentials?: Partial<Record<CredentialType, string>> | undefined;
494
494
  }>, z.ZodObject<{
495
495
  operation: z.ZodLiteral<"get_content">;
@@ -499,16 +499,16 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
499
499
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
500
500
  }, "strip", z.ZodTypeAny, {
501
501
  operation: "get_content";
502
- session_id: string;
503
502
  content_type: "text" | "html" | "outer_html";
503
+ session_id: string;
504
504
  credentials?: Partial<Record<CredentialType, string>> | undefined;
505
505
  selector?: string | undefined;
506
506
  }, {
507
507
  operation: "get_content";
508
508
  session_id: string;
509
509
  credentials?: Partial<Record<CredentialType, string>> | undefined;
510
- selector?: string | undefined;
511
510
  content_type?: "text" | "html" | "outer_html" | undefined;
511
+ selector?: string | undefined;
512
512
  }>, z.ZodObject<{
513
513
  operation: z.ZodLiteral<"screenshot">;
514
514
  session_id: z.ZodString;
@@ -523,16 +523,16 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
523
523
  session_id: string;
524
524
  full_page: boolean;
525
525
  credentials?: Partial<Record<CredentialType, string>> | undefined;
526
- selector?: string | undefined;
527
526
  quality?: number | undefined;
527
+ selector?: string | undefined;
528
528
  }, {
529
529
  operation: "screenshot";
530
530
  session_id: string;
531
531
  format?: "png" | "jpeg" | "webp" | undefined;
532
532
  credentials?: Partial<Record<CredentialType, string>> | undefined;
533
+ quality?: number | undefined;
533
534
  selector?: string | undefined;
534
535
  full_page?: boolean | undefined;
535
- quality?: number | undefined;
536
536
  }>, z.ZodObject<{
537
537
  operation: z.ZodLiteral<"wait">;
538
538
  session_id: z.ZodString;
@@ -541,9 +541,9 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
541
541
  timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
542
542
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
543
543
  }, "strip", z.ZodTypeAny, {
544
+ timeout: number;
544
545
  operation: "wait";
545
546
  session_id: string;
546
- timeout: number;
547
547
  wait_type: "timeout" | "selector" | "navigation";
548
548
  credentials?: Partial<Record<CredentialType, string>> | undefined;
549
549
  selector?: string | undefined;
@@ -593,18 +593,18 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
593
593
  debug_url: z.ZodOptional<z.ZodString>;
594
594
  error: z.ZodString;
595
595
  }, "strip", z.ZodTypeAny, {
596
- operation: "start_session";
597
- success: boolean;
598
596
  error: string;
599
- context_id?: string | undefined;
597
+ success: boolean;
598
+ operation: "start_session";
600
599
  session_id?: string | undefined;
600
+ context_id?: string | undefined;
601
601
  debug_url?: string | undefined;
602
602
  }, {
603
- operation: "start_session";
604
- success: boolean;
605
603
  error: string;
606
- context_id?: string | undefined;
604
+ success: boolean;
605
+ operation: "start_session";
607
606
  session_id?: string | undefined;
607
+ context_id?: string | undefined;
608
608
  debug_url?: string | undefined;
609
609
  }>, z.ZodObject<{
610
610
  operation: z.ZodLiteral<"navigate">;
@@ -612,53 +612,53 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
612
612
  url: z.ZodOptional<z.ZodString>;
613
613
  error: z.ZodString;
614
614
  }, "strip", z.ZodTypeAny, {
615
- operation: "navigate";
616
- success: boolean;
617
615
  error: string;
616
+ success: boolean;
617
+ operation: "navigate";
618
618
  url?: string | undefined;
619
619
  }, {
620
- operation: "navigate";
621
- success: boolean;
622
620
  error: string;
621
+ success: boolean;
622
+ operation: "navigate";
623
623
  url?: string | undefined;
624
624
  }>, z.ZodObject<{
625
625
  operation: z.ZodLiteral<"click">;
626
626
  success: z.ZodBoolean;
627
627
  error: z.ZodString;
628
628
  }, "strip", z.ZodTypeAny, {
629
- operation: "click";
630
- success: boolean;
631
629
  error: string;
632
- }, {
633
- operation: "click";
634
630
  success: boolean;
631
+ operation: "click";
632
+ }, {
635
633
  error: string;
634
+ success: boolean;
635
+ operation: "click";
636
636
  }>, z.ZodObject<{
637
637
  operation: z.ZodLiteral<"type">;
638
638
  success: z.ZodBoolean;
639
639
  error: z.ZodString;
640
640
  }, "strip", z.ZodTypeAny, {
641
- operation: "type";
642
- success: boolean;
643
641
  error: string;
644
- }, {
645
- operation: "type";
646
642
  success: boolean;
643
+ operation: "type";
644
+ }, {
647
645
  error: string;
646
+ success: boolean;
647
+ operation: "type";
648
648
  }>, z.ZodObject<{
649
649
  operation: z.ZodLiteral<"evaluate">;
650
650
  success: z.ZodBoolean;
651
651
  result: z.ZodOptional<z.ZodUnknown>;
652
652
  error: z.ZodString;
653
653
  }, "strip", z.ZodTypeAny, {
654
- operation: "evaluate";
655
- success: boolean;
656
654
  error: string;
655
+ success: boolean;
656
+ operation: "evaluate";
657
657
  result?: unknown;
658
658
  }, {
659
- operation: "evaluate";
660
- success: boolean;
661
659
  error: string;
660
+ success: boolean;
661
+ operation: "evaluate";
662
662
  result?: unknown;
663
663
  }>, z.ZodObject<{
664
664
  operation: z.ZodLiteral<"get_content">;
@@ -666,14 +666,14 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
666
666
  content: z.ZodOptional<z.ZodString>;
667
667
  error: z.ZodString;
668
668
  }, "strip", z.ZodTypeAny, {
669
- operation: "get_content";
670
- success: boolean;
671
669
  error: string;
670
+ success: boolean;
671
+ operation: "get_content";
672
672
  content?: string | undefined;
673
673
  }, {
674
- operation: "get_content";
675
- success: boolean;
676
674
  error: string;
675
+ success: boolean;
676
+ operation: "get_content";
677
677
  content?: string | undefined;
678
678
  }>, z.ZodObject<{
679
679
  operation: z.ZodLiteral<"screenshot">;
@@ -682,15 +682,15 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
682
682
  format: z.ZodOptional<z.ZodString>;
683
683
  error: z.ZodString;
684
684
  }, "strip", z.ZodTypeAny, {
685
- operation: "screenshot";
686
- success: boolean;
687
685
  error: string;
686
+ success: boolean;
687
+ operation: "screenshot";
688
688
  format?: string | undefined;
689
689
  data?: string | undefined;
690
690
  }, {
691
- operation: "screenshot";
692
- success: boolean;
693
691
  error: string;
692
+ success: boolean;
693
+ operation: "screenshot";
694
694
  format?: string | undefined;
695
695
  data?: string | undefined;
696
696
  }>, z.ZodObject<{
@@ -698,13 +698,13 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
698
698
  success: z.ZodBoolean;
699
699
  error: z.ZodString;
700
700
  }, "strip", z.ZodTypeAny, {
701
- operation: "wait";
702
- success: boolean;
703
701
  error: string;
704
- }, {
705
- operation: "wait";
706
702
  success: boolean;
703
+ operation: "wait";
704
+ }, {
707
705
  error: string;
706
+ success: boolean;
707
+ operation: "wait";
708
708
  }>, z.ZodObject<{
709
709
  operation: z.ZodLiteral<"get_cookies">;
710
710
  success: z.ZodBoolean;
@@ -717,45 +717,45 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
717
717
  httpOnly: z.ZodBoolean;
718
718
  secure: z.ZodBoolean;
719
719
  }, "strip", z.ZodTypeAny, {
720
- name: string;
721
720
  value: string;
722
- domain: string;
723
721
  path: string;
722
+ name: string;
723
+ domain: string;
724
724
  expires: number;
725
725
  httpOnly: boolean;
726
726
  secure: boolean;
727
727
  }, {
728
- name: string;
729
728
  value: string;
730
- domain: string;
731
729
  path: string;
730
+ name: string;
731
+ domain: string;
732
732
  expires: number;
733
733
  httpOnly: boolean;
734
734
  secure: boolean;
735
735
  }>, "many">>;
736
736
  error: z.ZodString;
737
737
  }, "strip", z.ZodTypeAny, {
738
- operation: "get_cookies";
739
- success: boolean;
740
738
  error: string;
739
+ success: boolean;
740
+ operation: "get_cookies";
741
741
  cookies?: {
742
- name: string;
743
742
  value: string;
744
- domain: string;
745
743
  path: string;
744
+ name: string;
745
+ domain: string;
746
746
  expires: number;
747
747
  httpOnly: boolean;
748
748
  secure: boolean;
749
749
  }[] | undefined;
750
750
  }, {
751
- operation: "get_cookies";
752
- success: boolean;
753
751
  error: string;
752
+ success: boolean;
753
+ operation: "get_cookies";
754
754
  cookies?: {
755
- name: string;
756
755
  value: string;
757
- domain: string;
758
756
  path: string;
757
+ name: string;
758
+ domain: string;
759
759
  expires: number;
760
760
  httpOnly: boolean;
761
761
  secure: boolean;
@@ -765,13 +765,13 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
765
765
  success: z.ZodBoolean;
766
766
  error: z.ZodString;
767
767
  }, "strip", z.ZodTypeAny, {
768
- operation: "end_session";
769
- success: boolean;
770
768
  error: string;
771
- }, {
772
- operation: "end_session";
773
769
  success: boolean;
770
+ operation: "end_session";
771
+ }, {
774
772
  error: string;
773
+ success: boolean;
774
+ operation: "end_session";
775
775
  }>]>;
776
776
  export type BrowserBaseParams = z.output<typeof BrowserBaseParamsSchema>;
777
777
  export type BrowserBaseParamsInput = z.input<typeof BrowserBaseParamsSchema>;