@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
@@ -10,9 +10,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
10
10
  formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
11
11
  type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
12
12
  }, "strip", z.ZodTypeAny, {
13
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
13
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
14
14
  }, {
15
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
15
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
16
16
  }>, z.ZodObject<{
17
17
  type: z.ZodLiteral<"json">;
18
18
  prompt: z.ZodOptional<z.ZodString>;
@@ -35,14 +35,14 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
35
35
  type: "changeTracking";
36
36
  modes: ("json" | "git-diff")[];
37
37
  schema?: Record<string, unknown> | undefined;
38
- tag?: string | undefined;
39
38
  prompt?: string | undefined;
39
+ tag?: string | undefined;
40
40
  }, {
41
41
  type: "changeTracking";
42
42
  modes: ("json" | "git-diff")[];
43
43
  schema?: Record<string, unknown> | undefined;
44
- tag?: string | undefined;
45
44
  prompt?: string | undefined;
45
+ tag?: string | undefined;
46
46
  }>, z.ZodObject<{
47
47
  type: z.ZodLiteral<"screenshot">;
48
48
  fullPage: z.ZodOptional<z.ZodBoolean>;
@@ -253,8 +253,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
253
253
  operation: "scrape";
254
254
  url: string;
255
255
  timeout: number;
256
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
257
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
256
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
257
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
258
258
  } | {
259
259
  type: "json";
260
260
  schema?: any;
@@ -263,8 +263,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
263
263
  type: "changeTracking";
264
264
  modes: ("json" | "git-diff")[];
265
265
  schema?: Record<string, unknown> | undefined;
266
- tag?: string | undefined;
267
266
  prompt?: string | undefined;
267
+ tag?: string | undefined;
268
268
  } | {
269
269
  type: "screenshot";
270
270
  quality?: number | undefined;
@@ -288,6 +288,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
288
288
  country?: string | undefined;
289
289
  languages?: string[] | undefined;
290
290
  } | undefined;
291
+ mobile?: boolean | undefined;
291
292
  maxRetries?: number | undefined;
292
293
  headers?: Record<string, string> | undefined;
293
294
  includeTags?: string[] | undefined;
@@ -328,7 +329,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
328
329
  scale?: number | undefined;
329
330
  landscape?: boolean | undefined;
330
331
  })[] | undefined;
331
- mobile?: boolean | undefined;
332
332
  integration?: string | undefined;
333
333
  parsers?: (string | {
334
334
  type: "pdf";
@@ -350,8 +350,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
350
350
  country?: string | undefined;
351
351
  languages?: string[] | undefined;
352
352
  } | undefined;
353
- maxRetries?: number | undefined;
354
353
  timeout?: number | undefined;
354
+ mobile?: boolean | undefined;
355
+ maxRetries?: number | undefined;
355
356
  headers?: Record<string, string> | undefined;
356
357
  includeTags?: string[] | undefined;
357
358
  excludeTags?: string[] | undefined;
@@ -391,10 +392,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
391
392
  scale?: number | undefined;
392
393
  landscape?: boolean | undefined;
393
394
  })[] | undefined;
394
- mobile?: boolean | undefined;
395
395
  integration?: string | undefined;
396
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
397
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
396
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
397
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
398
398
  } | {
399
399
  type: "json";
400
400
  schema?: any;
@@ -403,8 +403,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
403
403
  type: "changeTracking";
404
404
  modes: ("json" | "git-diff")[];
405
405
  schema?: Record<string, unknown> | undefined;
406
- tag?: string | undefined;
407
406
  prompt?: string | undefined;
407
+ tag?: string | undefined;
408
408
  } | {
409
409
  type: "screenshot";
410
410
  quality?: number | undefined;
@@ -465,9 +465,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
465
465
  formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
466
466
  type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
467
467
  }, "strip", z.ZodTypeAny, {
468
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
468
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
469
469
  }, {
470
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
470
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
471
471
  }>, z.ZodObject<{
472
472
  type: z.ZodLiteral<"json">;
473
473
  prompt: z.ZodOptional<z.ZodString>;
@@ -490,14 +490,14 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
490
490
  type: "changeTracking";
491
491
  modes: ("json" | "git-diff")[];
492
492
  schema?: Record<string, unknown> | undefined;
493
- tag?: string | undefined;
494
493
  prompt?: string | undefined;
494
+ tag?: string | undefined;
495
495
  }, {
496
496
  type: "changeTracking";
497
497
  modes: ("json" | "git-diff")[];
498
498
  schema?: Record<string, unknown> | undefined;
499
- tag?: string | undefined;
500
499
  prompt?: string | undefined;
500
+ tag?: string | undefined;
501
501
  }>, z.ZodObject<{
502
502
  type: z.ZodLiteral<"screenshot">;
503
503
  fullPage: z.ZodOptional<z.ZodBoolean>;
@@ -703,8 +703,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
703
703
  integration: z.ZodOptional<z.ZodString>;
704
704
  }, "strip", z.ZodTypeAny, {
705
705
  timeout: number;
706
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
707
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
706
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
707
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
708
708
  } | {
709
709
  type: "json";
710
710
  schema?: any;
@@ -713,8 +713,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
713
713
  type: "changeTracking";
714
714
  modes: ("json" | "git-diff")[];
715
715
  schema?: Record<string, unknown> | undefined;
716
- tag?: string | undefined;
717
716
  prompt?: string | undefined;
717
+ tag?: string | undefined;
718
718
  } | {
719
719
  type: "screenshot";
720
720
  quality?: number | undefined;
@@ -737,6 +737,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
737
737
  country?: string | undefined;
738
738
  languages?: string[] | undefined;
739
739
  } | undefined;
740
+ mobile?: boolean | undefined;
740
741
  headers?: Record<string, string> | undefined;
741
742
  includeTags?: string[] | undefined;
742
743
  excludeTags?: string[] | undefined;
@@ -776,7 +777,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
776
777
  scale?: number | undefined;
777
778
  landscape?: boolean | undefined;
778
779
  })[] | undefined;
779
- mobile?: boolean | undefined;
780
780
  integration?: string | undefined;
781
781
  parsers?: (string | {
782
782
  type: "pdf";
@@ -795,6 +795,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
795
795
  languages?: string[] | undefined;
796
796
  } | undefined;
797
797
  timeout?: number | undefined;
798
+ mobile?: boolean | undefined;
798
799
  headers?: Record<string, string> | undefined;
799
800
  includeTags?: string[] | undefined;
800
801
  excludeTags?: string[] | undefined;
@@ -834,10 +835,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
834
835
  scale?: number | undefined;
835
836
  landscape?: boolean | undefined;
836
837
  })[] | undefined;
837
- mobile?: boolean | undefined;
838
838
  integration?: string | undefined;
839
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
840
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
839
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
840
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
841
841
  } | {
842
842
  type: "json";
843
843
  schema?: any;
@@ -846,8 +846,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
846
846
  type: "changeTracking";
847
847
  modes: ("json" | "git-diff")[];
848
848
  schema?: Record<string, unknown> | undefined;
849
- tag?: string | undefined;
850
849
  prompt?: string | undefined;
850
+ tag?: string | undefined;
851
851
  } | {
852
852
  type: "screenshot";
853
853
  quality?: number | undefined;
@@ -884,9 +884,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
884
884
  query: string;
885
885
  credentials?: Partial<Record<CredentialType, string>> | undefined;
886
886
  location?: string | undefined;
887
- limit?: number | undefined;
888
- maxRetries?: number | undefined;
889
887
  timeout?: number | undefined;
888
+ maxRetries?: number | undefined;
889
+ limit?: number | undefined;
890
890
  categories?: ("github" | "pdf" | "research" | {
891
891
  type: "github" | "pdf" | "research";
892
892
  })[] | undefined;
@@ -899,8 +899,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
899
899
  ignoreInvalidURLs?: boolean | undefined;
900
900
  scrapeOptions?: {
901
901
  timeout: number;
902
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
903
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
902
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
903
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
904
904
  } | {
905
905
  type: "json";
906
906
  schema?: any;
@@ -909,8 +909,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
909
909
  type: "changeTracking";
910
910
  modes: ("json" | "git-diff")[];
911
911
  schema?: Record<string, unknown> | undefined;
912
- tag?: string | undefined;
913
912
  prompt?: string | undefined;
913
+ tag?: string | undefined;
914
914
  } | {
915
915
  type: "screenshot";
916
916
  quality?: number | undefined;
@@ -933,6 +933,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
933
933
  country?: string | undefined;
934
934
  languages?: string[] | undefined;
935
935
  } | undefined;
936
+ mobile?: boolean | undefined;
936
937
  headers?: Record<string, string> | undefined;
937
938
  includeTags?: string[] | undefined;
938
939
  excludeTags?: string[] | undefined;
@@ -972,7 +973,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
972
973
  scale?: number | undefined;
973
974
  landscape?: boolean | undefined;
974
975
  })[] | undefined;
975
- mobile?: boolean | undefined;
976
976
  integration?: string | undefined;
977
977
  parsers?: (string | {
978
978
  type: "pdf";
@@ -991,9 +991,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
991
991
  query: string;
992
992
  credentials?: Partial<Record<CredentialType, string>> | undefined;
993
993
  location?: string | undefined;
994
- limit?: number | undefined;
995
- maxRetries?: number | undefined;
996
994
  timeout?: number | undefined;
995
+ maxRetries?: number | undefined;
996
+ limit?: number | undefined;
997
997
  categories?: ("github" | "pdf" | "research" | {
998
998
  type: "github" | "pdf" | "research";
999
999
  })[] | undefined;
@@ -1010,6 +1010,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1010
1010
  languages?: string[] | undefined;
1011
1011
  } | undefined;
1012
1012
  timeout?: number | undefined;
1013
+ mobile?: boolean | undefined;
1013
1014
  headers?: Record<string, string> | undefined;
1014
1015
  includeTags?: string[] | undefined;
1015
1016
  excludeTags?: string[] | undefined;
@@ -1049,10 +1050,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1049
1050
  scale?: number | undefined;
1050
1051
  landscape?: boolean | undefined;
1051
1052
  })[] | undefined;
1052
- mobile?: boolean | undefined;
1053
1053
  integration?: string | undefined;
1054
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1055
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1054
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1055
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1056
1056
  } | {
1057
1057
  type: "json";
1058
1058
  schema?: any;
@@ -1061,8 +1061,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1061
1061
  type: "changeTracking";
1062
1062
  modes: ("json" | "git-diff")[];
1063
1063
  schema?: Record<string, unknown> | undefined;
1064
- tag?: string | undefined;
1065
1064
  prompt?: string | undefined;
1065
+ tag?: string | undefined;
1066
1066
  } | {
1067
1067
  type: "screenshot";
1068
1068
  quality?: number | undefined;
@@ -1125,9 +1125,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1125
1125
  country?: string | undefined;
1126
1126
  languages?: string[] | undefined;
1127
1127
  } | undefined;
1128
- limit?: number | undefined;
1129
- maxRetries?: number | undefined;
1130
1128
  timeout?: number | undefined;
1129
+ maxRetries?: number | undefined;
1130
+ limit?: number | undefined;
1131
1131
  integration?: string | undefined;
1132
1132
  backoffFactor?: number | undefined;
1133
1133
  sitemap?: "include" | "only" | "skip" | undefined;
@@ -1141,9 +1141,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1141
1141
  country?: string | undefined;
1142
1142
  languages?: string[] | undefined;
1143
1143
  } | undefined;
1144
- limit?: number | undefined;
1145
- maxRetries?: number | undefined;
1146
1144
  timeout?: number | undefined;
1145
+ maxRetries?: number | undefined;
1146
+ limit?: number | undefined;
1147
1147
  integration?: string | undefined;
1148
1148
  backoffFactor?: number | undefined;
1149
1149
  sitemap?: "include" | "only" | "skip" | undefined;
@@ -1187,9 +1187,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1187
1187
  formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
1188
1188
  type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
1189
1189
  }, "strip", z.ZodTypeAny, {
1190
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1190
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1191
1191
  }, {
1192
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1192
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1193
1193
  }>, z.ZodObject<{
1194
1194
  type: z.ZodLiteral<"json">;
1195
1195
  prompt: z.ZodOptional<z.ZodString>;
@@ -1212,14 +1212,14 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1212
1212
  type: "changeTracking";
1213
1213
  modes: ("json" | "git-diff")[];
1214
1214
  schema?: Record<string, unknown> | undefined;
1215
- tag?: string | undefined;
1216
1215
  prompt?: string | undefined;
1216
+ tag?: string | undefined;
1217
1217
  }, {
1218
1218
  type: "changeTracking";
1219
1219
  modes: ("json" | "git-diff")[];
1220
1220
  schema?: Record<string, unknown> | undefined;
1221
- tag?: string | undefined;
1222
1221
  prompt?: string | undefined;
1222
+ tag?: string | undefined;
1223
1223
  }>, z.ZodObject<{
1224
1224
  type: z.ZodLiteral<"screenshot">;
1225
1225
  fullPage: z.ZodOptional<z.ZodBoolean>;
@@ -1425,8 +1425,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1425
1425
  integration: z.ZodOptional<z.ZodString>;
1426
1426
  }, "strip", z.ZodTypeAny, {
1427
1427
  timeout: number;
1428
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1429
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1428
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1429
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1430
1430
  } | {
1431
1431
  type: "json";
1432
1432
  schema?: any;
@@ -1435,8 +1435,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1435
1435
  type: "changeTracking";
1436
1436
  modes: ("json" | "git-diff")[];
1437
1437
  schema?: Record<string, unknown> | undefined;
1438
- tag?: string | undefined;
1439
1438
  prompt?: string | undefined;
1439
+ tag?: string | undefined;
1440
1440
  } | {
1441
1441
  type: "screenshot";
1442
1442
  quality?: number | undefined;
@@ -1459,6 +1459,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1459
1459
  country?: string | undefined;
1460
1460
  languages?: string[] | undefined;
1461
1461
  } | undefined;
1462
+ mobile?: boolean | undefined;
1462
1463
  headers?: Record<string, string> | undefined;
1463
1464
  includeTags?: string[] | undefined;
1464
1465
  excludeTags?: string[] | undefined;
@@ -1498,7 +1499,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1498
1499
  scale?: number | undefined;
1499
1500
  landscape?: boolean | undefined;
1500
1501
  })[] | undefined;
1501
- mobile?: boolean | undefined;
1502
1502
  integration?: string | undefined;
1503
1503
  parsers?: (string | {
1504
1504
  type: "pdf";
@@ -1517,6 +1517,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1517
1517
  languages?: string[] | undefined;
1518
1518
  } | undefined;
1519
1519
  timeout?: number | undefined;
1520
+ mobile?: boolean | undefined;
1520
1521
  headers?: Record<string, string> | undefined;
1521
1522
  includeTags?: string[] | undefined;
1522
1523
  excludeTags?: string[] | undefined;
@@ -1556,10 +1557,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1556
1557
  scale?: number | undefined;
1557
1558
  landscape?: boolean | undefined;
1558
1559
  })[] | undefined;
1559
- mobile?: boolean | undefined;
1560
1560
  integration?: string | undefined;
1561
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1562
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1561
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1562
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1563
1563
  } | {
1564
1564
  type: "json";
1565
1565
  schema?: any;
@@ -1568,8 +1568,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1568
1568
  type: "changeTracking";
1569
1569
  modes: ("json" | "git-diff")[];
1570
1570
  schema?: Record<string, unknown> | undefined;
1571
- tag?: string | undefined;
1572
1571
  prompt?: string | undefined;
1572
+ tag?: string | undefined;
1573
1573
  } | {
1574
1574
  type: "screenshot";
1575
1575
  quality?: number | undefined;
@@ -1608,11 +1608,12 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1608
1608
  operation: "crawl";
1609
1609
  url: string;
1610
1610
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1611
- limit?: number | undefined;
1612
- maxRetries?: number | undefined;
1613
1611
  timeout?: number | undefined;
1614
- maxConcurrency?: number | undefined;
1612
+ delay?: number | undefined;
1615
1613
  prompt?: string | undefined;
1614
+ maxConcurrency?: number | undefined;
1615
+ maxRetries?: number | undefined;
1616
+ limit?: number | undefined;
1616
1617
  webhook?: string | {
1617
1618
  url: string;
1618
1619
  metadata?: Record<string, string> | undefined;
@@ -1623,8 +1624,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1623
1624
  backoffFactor?: number | undefined;
1624
1625
  scrapeOptions?: {
1625
1626
  timeout: number;
1626
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1627
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1627
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1628
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1628
1629
  } | {
1629
1630
  type: "json";
1630
1631
  schema?: any;
@@ -1633,8 +1634,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1633
1634
  type: "changeTracking";
1634
1635
  modes: ("json" | "git-diff")[];
1635
1636
  schema?: Record<string, unknown> | undefined;
1636
- tag?: string | undefined;
1637
1637
  prompt?: string | undefined;
1638
+ tag?: string | undefined;
1638
1639
  } | {
1639
1640
  type: "screenshot";
1640
1641
  quality?: number | undefined;
@@ -1657,6 +1658,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1657
1658
  country?: string | undefined;
1658
1659
  languages?: string[] | undefined;
1659
1660
  } | undefined;
1661
+ mobile?: boolean | undefined;
1660
1662
  headers?: Record<string, string> | undefined;
1661
1663
  includeTags?: string[] | undefined;
1662
1664
  excludeTags?: string[] | undefined;
@@ -1696,7 +1698,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1696
1698
  scale?: number | undefined;
1697
1699
  landscape?: boolean | undefined;
1698
1700
  })[] | undefined;
1699
- mobile?: boolean | undefined;
1700
1701
  integration?: string | undefined;
1701
1702
  parsers?: (string | {
1702
1703
  type: "pdf";
@@ -1718,18 +1719,18 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1718
1719
  crawlEntireDomain?: boolean | undefined;
1719
1720
  allowExternalLinks?: boolean | undefined;
1720
1721
  allowSubdomains?: boolean | undefined;
1721
- delay?: number | undefined;
1722
1722
  zeroDataRetention?: boolean | undefined;
1723
1723
  pollInterval?: number | undefined;
1724
1724
  }, {
1725
1725
  operation: "crawl";
1726
1726
  url: string;
1727
1727
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1728
- limit?: number | undefined;
1729
- maxRetries?: number | undefined;
1730
1728
  timeout?: number | undefined;
1731
- maxConcurrency?: number | undefined;
1729
+ delay?: number | undefined;
1732
1730
  prompt?: string | undefined;
1731
+ maxConcurrency?: number | undefined;
1732
+ maxRetries?: number | undefined;
1733
+ limit?: number | undefined;
1733
1734
  webhook?: string | {
1734
1735
  url: string;
1735
1736
  metadata?: Record<string, string> | undefined;
@@ -1744,6 +1745,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1744
1745
  languages?: string[] | undefined;
1745
1746
  } | undefined;
1746
1747
  timeout?: number | undefined;
1748
+ mobile?: boolean | undefined;
1747
1749
  headers?: Record<string, string> | undefined;
1748
1750
  includeTags?: string[] | undefined;
1749
1751
  excludeTags?: string[] | undefined;
@@ -1783,10 +1785,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1783
1785
  scale?: number | undefined;
1784
1786
  landscape?: boolean | undefined;
1785
1787
  })[] | undefined;
1786
- mobile?: boolean | undefined;
1787
1788
  integration?: string | undefined;
1788
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1789
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1789
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1790
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1790
1791
  } | {
1791
1792
  type: "json";
1792
1793
  schema?: any;
@@ -1795,8 +1796,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1795
1796
  type: "changeTracking";
1796
1797
  modes: ("json" | "git-diff")[];
1797
1798
  schema?: Record<string, unknown> | undefined;
1798
- tag?: string | undefined;
1799
1799
  prompt?: string | undefined;
1800
+ tag?: string | undefined;
1800
1801
  } | {
1801
1802
  type: "screenshot";
1802
1803
  quality?: number | undefined;
@@ -1835,7 +1836,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1835
1836
  crawlEntireDomain?: boolean | undefined;
1836
1837
  allowExternalLinks?: boolean | undefined;
1837
1838
  allowSubdomains?: boolean | undefined;
1838
- delay?: number | undefined;
1839
1839
  zeroDataRetention?: boolean | undefined;
1840
1840
  pollInterval?: number | undefined;
1841
1841
  }>, z.ZodObject<{
@@ -1855,9 +1855,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1855
1855
  formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
1856
1856
  type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
1857
1857
  }, "strip", z.ZodTypeAny, {
1858
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1858
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1859
1859
  }, {
1860
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1860
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1861
1861
  }>, z.ZodObject<{
1862
1862
  type: z.ZodLiteral<"json">;
1863
1863
  prompt: z.ZodOptional<z.ZodString>;
@@ -1880,14 +1880,14 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1880
1880
  type: "changeTracking";
1881
1881
  modes: ("json" | "git-diff")[];
1882
1882
  schema?: Record<string, unknown> | undefined;
1883
- tag?: string | undefined;
1884
1883
  prompt?: string | undefined;
1884
+ tag?: string | undefined;
1885
1885
  }, {
1886
1886
  type: "changeTracking";
1887
1887
  modes: ("json" | "git-diff")[];
1888
1888
  schema?: Record<string, unknown> | undefined;
1889
- tag?: string | undefined;
1890
1889
  prompt?: string | undefined;
1890
+ tag?: string | undefined;
1891
1891
  }>, z.ZodObject<{
1892
1892
  type: z.ZodLiteral<"screenshot">;
1893
1893
  fullPage: z.ZodOptional<z.ZodBoolean>;
@@ -2093,8 +2093,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2093
2093
  integration: z.ZodOptional<z.ZodString>;
2094
2094
  }, "strip", z.ZodTypeAny, {
2095
2095
  timeout: number;
2096
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2097
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2096
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2097
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2098
2098
  } | {
2099
2099
  type: "json";
2100
2100
  schema?: any;
@@ -2103,8 +2103,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2103
2103
  type: "changeTracking";
2104
2104
  modes: ("json" | "git-diff")[];
2105
2105
  schema?: Record<string, unknown> | undefined;
2106
- tag?: string | undefined;
2107
2106
  prompt?: string | undefined;
2107
+ tag?: string | undefined;
2108
2108
  } | {
2109
2109
  type: "screenshot";
2110
2110
  quality?: number | undefined;
@@ -2127,6 +2127,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2127
2127
  country?: string | undefined;
2128
2128
  languages?: string[] | undefined;
2129
2129
  } | undefined;
2130
+ mobile?: boolean | undefined;
2130
2131
  headers?: Record<string, string> | undefined;
2131
2132
  includeTags?: string[] | undefined;
2132
2133
  excludeTags?: string[] | undefined;
@@ -2166,7 +2167,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2166
2167
  scale?: number | undefined;
2167
2168
  landscape?: boolean | undefined;
2168
2169
  })[] | undefined;
2169
- mobile?: boolean | undefined;
2170
2170
  integration?: string | undefined;
2171
2171
  parsers?: (string | {
2172
2172
  type: "pdf";
@@ -2185,6 +2185,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2185
2185
  languages?: string[] | undefined;
2186
2186
  } | undefined;
2187
2187
  timeout?: number | undefined;
2188
+ mobile?: boolean | undefined;
2188
2189
  headers?: Record<string, string> | undefined;
2189
2190
  includeTags?: string[] | undefined;
2190
2191
  excludeTags?: string[] | undefined;
@@ -2224,10 +2225,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2224
2225
  scale?: number | undefined;
2225
2226
  landscape?: boolean | undefined;
2226
2227
  })[] | undefined;
2227
- mobile?: boolean | undefined;
2228
2228
  integration?: string | undefined;
2229
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2230
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2229
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2230
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2231
2231
  } | {
2232
2232
  type: "json";
2233
2233
  schema?: any;
@@ -2236,8 +2236,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2236
2236
  type: "changeTracking";
2237
2237
  modes: ("json" | "git-diff")[];
2238
2238
  schema?: Record<string, unknown> | undefined;
2239
- tag?: string | undefined;
2240
2239
  prompt?: string | undefined;
2240
+ tag?: string | undefined;
2241
2241
  } | {
2242
2242
  type: "screenshot";
2243
2243
  quality?: number | undefined;
@@ -2284,20 +2284,20 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2284
2284
  urls: string[];
2285
2285
  schema?: any;
2286
2286
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2287
+ timeout?: number | undefined;
2288
+ prompt?: string | undefined;
2287
2289
  maxRetries?: number | undefined;
2288
2290
  systemPrompt?: string | undefined;
2289
2291
  agent?: {
2290
2292
  model: "FIRE-1";
2291
2293
  } | undefined;
2292
- timeout?: number | undefined;
2293
- prompt?: string | undefined;
2294
2294
  integration?: string | undefined;
2295
2295
  backoffFactor?: number | undefined;
2296
2296
  ignoreInvalidURLs?: boolean | undefined;
2297
2297
  scrapeOptions?: {
2298
2298
  timeout: number;
2299
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2300
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2299
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2300
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2301
2301
  } | {
2302
2302
  type: "json";
2303
2303
  schema?: any;
@@ -2306,8 +2306,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2306
2306
  type: "changeTracking";
2307
2307
  modes: ("json" | "git-diff")[];
2308
2308
  schema?: Record<string, unknown> | undefined;
2309
- tag?: string | undefined;
2310
2309
  prompt?: string | undefined;
2310
+ tag?: string | undefined;
2311
2311
  } | {
2312
2312
  type: "screenshot";
2313
2313
  quality?: number | undefined;
@@ -2330,6 +2330,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2330
2330
  country?: string | undefined;
2331
2331
  languages?: string[] | undefined;
2332
2332
  } | undefined;
2333
+ mobile?: boolean | undefined;
2333
2334
  headers?: Record<string, string> | undefined;
2334
2335
  includeTags?: string[] | undefined;
2335
2336
  excludeTags?: string[] | undefined;
@@ -2369,7 +2370,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2369
2370
  scale?: number | undefined;
2370
2371
  landscape?: boolean | undefined;
2371
2372
  })[] | undefined;
2372
- mobile?: boolean | undefined;
2373
2373
  integration?: string | undefined;
2374
2374
  parsers?: (string | {
2375
2375
  type: "pdf";
@@ -2392,13 +2392,13 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2392
2392
  urls: string[];
2393
2393
  schema?: any;
2394
2394
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2395
+ timeout?: number | undefined;
2396
+ prompt?: string | undefined;
2395
2397
  maxRetries?: number | undefined;
2396
2398
  systemPrompt?: string | undefined;
2397
2399
  agent?: {
2398
2400
  model: "FIRE-1";
2399
2401
  } | undefined;
2400
- timeout?: number | undefined;
2401
- prompt?: string | undefined;
2402
2402
  integration?: string | undefined;
2403
2403
  backoffFactor?: number | undefined;
2404
2404
  ignoreInvalidURLs?: boolean | undefined;
@@ -2408,6 +2408,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2408
2408
  languages?: string[] | undefined;
2409
2409
  } | undefined;
2410
2410
  timeout?: number | undefined;
2411
+ mobile?: boolean | undefined;
2411
2412
  headers?: Record<string, string> | undefined;
2412
2413
  includeTags?: string[] | undefined;
2413
2414
  excludeTags?: string[] | undefined;
@@ -2447,10 +2448,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2447
2448
  scale?: number | undefined;
2448
2449
  landscape?: boolean | undefined;
2449
2450
  })[] | undefined;
2450
- mobile?: boolean | undefined;
2451
2451
  integration?: string | undefined;
2452
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2453
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2452
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2453
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2454
2454
  } | {
2455
2455
  type: "json";
2456
2456
  schema?: any;
@@ -2459,8 +2459,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2459
2459
  type: "changeTracking";
2460
2460
  modes: ("json" | "git-diff")[];
2461
2461
  schema?: Record<string, unknown> | undefined;
2462
- tag?: string | undefined;
2463
2462
  prompt?: string | undefined;
2463
+ tag?: string | undefined;
2464
2464
  } | {
2465
2465
  type: "screenshot";
2466
2466
  quality?: number | undefined;
@@ -3955,8 +3955,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
3955
3955
  success: boolean;
3956
3956
  error: string;
3957
3957
  json?: unknown;
3958
- images?: string[] | undefined;
3959
- summary?: string | undefined;
3958
+ html?: string | undefined;
3959
+ screenshot?: string | undefined;
3960
3960
  metadata?: z.objectOutputType<{
3961
3961
  title: z.ZodOptional<z.ZodString>;
3962
3962
  description: z.ZodOptional<z.ZodString>;
@@ -4000,9 +4000,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
4000
4000
  creditsUsed: z.ZodOptional<z.ZodNumber>;
4001
4001
  error: z.ZodOptional<z.ZodString>;
4002
4002
  }, z.ZodUnknown, "strip"> | undefined;
4003
- html?: string | undefined;
4003
+ images?: string[] | undefined;
4004
+ summary?: string | undefined;
4004
4005
  actions?: Record<string, unknown> | undefined;
4005
- screenshot?: string | undefined;
4006
4006
  warning?: string | undefined;
4007
4007
  markdown?: string | undefined;
4008
4008
  rawHtml?: string | undefined;
@@ -4451,8 +4451,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
4451
4451
  success: boolean;
4452
4452
  error: string;
4453
4453
  json?: unknown;
4454
- images?: string[] | undefined;
4455
- summary?: string | undefined;
4454
+ html?: string | undefined;
4455
+ screenshot?: string | undefined;
4456
4456
  metadata?: z.objectInputType<{
4457
4457
  title: z.ZodOptional<z.ZodString>;
4458
4458
  description: z.ZodOptional<z.ZodString>;
@@ -4496,9 +4496,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
4496
4496
  creditsUsed: z.ZodOptional<z.ZodNumber>;
4497
4497
  error: z.ZodOptional<z.ZodString>;
4498
4498
  }, z.ZodUnknown, "strip"> | undefined;
4499
- html?: string | undefined;
4499
+ images?: string[] | undefined;
4500
+ summary?: string | undefined;
4500
4501
  actions?: Record<string, unknown> | undefined;
4501
- screenshot?: string | undefined;
4502
4502
  warning?: string | undefined;
4503
4503
  markdown?: string | undefined;
4504
4504
  rawHtml?: string | undefined;
@@ -6413,8 +6413,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
6413
6413
  }, z.ZodUnknown, "strip">>>;
6414
6414
  }, "strip", z.ZodTypeAny, {
6415
6415
  json?: unknown;
6416
- images?: string[] | undefined;
6417
- summary?: string | undefined;
6416
+ html?: string | undefined;
6417
+ screenshot?: string | undefined;
6418
6418
  metadata?: z.objectOutputType<{
6419
6419
  title: z.ZodOptional<z.ZodString>;
6420
6420
  description: z.ZodOptional<z.ZodString>;
@@ -6458,9 +6458,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
6458
6458
  creditsUsed: z.ZodOptional<z.ZodNumber>;
6459
6459
  error: z.ZodOptional<z.ZodString>;
6460
6460
  }, z.ZodUnknown, "strip"> | undefined;
6461
- html?: string | undefined;
6461
+ images?: string[] | undefined;
6462
+ summary?: string | undefined;
6462
6463
  actions?: Record<string, unknown> | undefined;
6463
- screenshot?: string | undefined;
6464
6464
  warning?: string | undefined;
6465
6465
  markdown?: string | undefined;
6466
6466
  rawHtml?: string | undefined;
@@ -6906,8 +6906,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
6906
6906
  }, z.ZodUnknown, "strip"> | undefined;
6907
6907
  }, {
6908
6908
  json?: unknown;
6909
- images?: string[] | undefined;
6910
- summary?: string | undefined;
6909
+ html?: string | undefined;
6910
+ screenshot?: string | undefined;
6911
6911
  metadata?: z.objectInputType<{
6912
6912
  title: z.ZodOptional<z.ZodString>;
6913
6913
  description: z.ZodOptional<z.ZodString>;
@@ -6951,9 +6951,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
6951
6951
  creditsUsed: z.ZodOptional<z.ZodNumber>;
6952
6952
  error: z.ZodOptional<z.ZodString>;
6953
6953
  }, z.ZodUnknown, "strip"> | undefined;
6954
- html?: string | undefined;
6954
+ images?: string[] | undefined;
6955
+ summary?: string | undefined;
6955
6956
  actions?: Record<string, unknown> | undefined;
6956
- screenshot?: string | undefined;
6957
6957
  warning?: string | undefined;
6958
6958
  markdown?: string | undefined;
6959
6959
  rawHtml?: string | undefined;
@@ -7410,18 +7410,18 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
7410
7410
  title?: string | undefined;
7411
7411
  date?: string | undefined;
7412
7412
  url?: string | undefined;
7413
- position?: number | undefined;
7414
7413
  snippet?: string | undefined;
7415
7414
  category?: string | undefined;
7416
7415
  imageUrl?: string | undefined;
7416
+ position?: number | undefined;
7417
7417
  }, {
7418
7418
  title?: string | undefined;
7419
7419
  date?: string | undefined;
7420
7420
  url?: string | undefined;
7421
- position?: number | undefined;
7422
7421
  snippet?: string | undefined;
7423
7422
  category?: string | undefined;
7424
7423
  imageUrl?: string | undefined;
7424
+ position?: number | undefined;
7425
7425
  }>, z.ZodObject<{
7426
7426
  markdown: z.ZodOptional<z.ZodString>;
7427
7427
  html: z.ZodOptional<z.ZodString>;
@@ -8873,8 +8873,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
8873
8873
  }, z.ZodUnknown, "strip">>>;
8874
8874
  }, "strip", z.ZodTypeAny, {
8875
8875
  json?: unknown;
8876
- images?: string[] | undefined;
8877
- summary?: string | undefined;
8876
+ html?: string | undefined;
8877
+ screenshot?: string | undefined;
8878
8878
  metadata?: z.objectOutputType<{
8879
8879
  title: z.ZodOptional<z.ZodString>;
8880
8880
  description: z.ZodOptional<z.ZodString>;
@@ -8918,9 +8918,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
8918
8918
  creditsUsed: z.ZodOptional<z.ZodNumber>;
8919
8919
  error: z.ZodOptional<z.ZodString>;
8920
8920
  }, z.ZodUnknown, "strip"> | undefined;
8921
- html?: string | undefined;
8921
+ images?: string[] | undefined;
8922
+ summary?: string | undefined;
8922
8923
  actions?: Record<string, unknown> | undefined;
8923
- screenshot?: string | undefined;
8924
8924
  warning?: string | undefined;
8925
8925
  markdown?: string | undefined;
8926
8926
  rawHtml?: string | undefined;
@@ -9366,8 +9366,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
9366
9366
  }, z.ZodUnknown, "strip"> | undefined;
9367
9367
  }, {
9368
9368
  json?: unknown;
9369
- images?: string[] | undefined;
9370
- summary?: string | undefined;
9369
+ html?: string | undefined;
9370
+ screenshot?: string | undefined;
9371
9371
  metadata?: z.objectInputType<{
9372
9372
  title: z.ZodOptional<z.ZodString>;
9373
9373
  description: z.ZodOptional<z.ZodString>;
@@ -9411,9 +9411,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
9411
9411
  creditsUsed: z.ZodOptional<z.ZodNumber>;
9412
9412
  error: z.ZodOptional<z.ZodString>;
9413
9413
  }, z.ZodUnknown, "strip"> | undefined;
9414
- html?: string | undefined;
9414
+ images?: string[] | undefined;
9415
+ summary?: string | undefined;
9415
9416
  actions?: Record<string, unknown> | undefined;
9416
- screenshot?: string | undefined;
9417
9417
  warning?: string | undefined;
9418
9418
  markdown?: string | undefined;
9419
9419
  rawHtml?: string | undefined;
@@ -9868,15 +9868,15 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
9868
9868
  }, "strip", z.ZodTypeAny, {
9869
9869
  title?: string | undefined;
9870
9870
  url?: string | undefined;
9871
- position?: number | undefined;
9872
9871
  imageUrl?: string | undefined;
9872
+ position?: number | undefined;
9873
9873
  imageWidth?: number | undefined;
9874
9874
  imageHeight?: number | undefined;
9875
9875
  }, {
9876
9876
  title?: string | undefined;
9877
9877
  url?: string | undefined;
9878
- position?: number | undefined;
9879
9878
  imageUrl?: string | undefined;
9879
+ position?: number | undefined;
9880
9880
  imageWidth?: number | undefined;
9881
9881
  imageHeight?: number | undefined;
9882
9882
  }>, z.ZodObject<{
@@ -11330,8 +11330,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
11330
11330
  }, z.ZodUnknown, "strip">>>;
11331
11331
  }, "strip", z.ZodTypeAny, {
11332
11332
  json?: unknown;
11333
- images?: string[] | undefined;
11334
- summary?: string | undefined;
11333
+ html?: string | undefined;
11334
+ screenshot?: string | undefined;
11335
11335
  metadata?: z.objectOutputType<{
11336
11336
  title: z.ZodOptional<z.ZodString>;
11337
11337
  description: z.ZodOptional<z.ZodString>;
@@ -11375,9 +11375,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
11375
11375
  creditsUsed: z.ZodOptional<z.ZodNumber>;
11376
11376
  error: z.ZodOptional<z.ZodString>;
11377
11377
  }, z.ZodUnknown, "strip"> | undefined;
11378
- html?: string | undefined;
11378
+ images?: string[] | undefined;
11379
+ summary?: string | undefined;
11379
11380
  actions?: Record<string, unknown> | undefined;
11380
- screenshot?: string | undefined;
11381
11381
  warning?: string | undefined;
11382
11382
  markdown?: string | undefined;
11383
11383
  rawHtml?: string | undefined;
@@ -11823,8 +11823,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
11823
11823
  }, z.ZodUnknown, "strip"> | undefined;
11824
11824
  }, {
11825
11825
  json?: unknown;
11826
- images?: string[] | undefined;
11827
- summary?: string | undefined;
11826
+ html?: string | undefined;
11827
+ screenshot?: string | undefined;
11828
11828
  metadata?: z.objectInputType<{
11829
11829
  title: z.ZodOptional<z.ZodString>;
11830
11830
  description: z.ZodOptional<z.ZodString>;
@@ -11868,9 +11868,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
11868
11868
  creditsUsed: z.ZodOptional<z.ZodNumber>;
11869
11869
  error: z.ZodOptional<z.ZodString>;
11870
11870
  }, z.ZodUnknown, "strip"> | undefined;
11871
- html?: string | undefined;
11871
+ images?: string[] | undefined;
11872
+ summary?: string | undefined;
11872
11873
  actions?: Record<string, unknown> | undefined;
11873
- screenshot?: string | undefined;
11874
11874
  warning?: string | undefined;
11875
11875
  markdown?: string | undefined;
11876
11876
  rawHtml?: string | undefined;
@@ -12322,8 +12322,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12322
12322
  error: string;
12323
12323
  images?: ({
12324
12324
  json?: unknown;
12325
- images?: string[] | undefined;
12326
- summary?: string | undefined;
12325
+ html?: string | undefined;
12326
+ screenshot?: string | undefined;
12327
12327
  metadata?: z.objectOutputType<{
12328
12328
  title: z.ZodOptional<z.ZodString>;
12329
12329
  description: z.ZodOptional<z.ZodString>;
@@ -12367,9 +12367,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12367
12367
  creditsUsed: z.ZodOptional<z.ZodNumber>;
12368
12368
  error: z.ZodOptional<z.ZodString>;
12369
12369
  }, z.ZodUnknown, "strip"> | undefined;
12370
- html?: string | undefined;
12370
+ images?: string[] | undefined;
12371
+ summary?: string | undefined;
12371
12372
  actions?: Record<string, unknown> | undefined;
12372
- screenshot?: string | undefined;
12373
12373
  warning?: string | undefined;
12374
12374
  markdown?: string | undefined;
12375
12375
  rawHtml?: string | undefined;
@@ -12816,15 +12816,15 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12816
12816
  } | {
12817
12817
  title?: string | undefined;
12818
12818
  url?: string | undefined;
12819
- position?: number | undefined;
12820
12819
  imageUrl?: string | undefined;
12820
+ position?: number | undefined;
12821
12821
  imageWidth?: number | undefined;
12822
12822
  imageHeight?: number | undefined;
12823
12823
  })[] | undefined;
12824
12824
  web?: ({
12825
12825
  json?: unknown;
12826
- images?: string[] | undefined;
12827
- summary?: string | undefined;
12826
+ html?: string | undefined;
12827
+ screenshot?: string | undefined;
12828
12828
  metadata?: z.objectOutputType<{
12829
12829
  title: z.ZodOptional<z.ZodString>;
12830
12830
  description: z.ZodOptional<z.ZodString>;
@@ -12868,9 +12868,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12868
12868
  creditsUsed: z.ZodOptional<z.ZodNumber>;
12869
12869
  error: z.ZodOptional<z.ZodString>;
12870
12870
  }, z.ZodUnknown, "strip"> | undefined;
12871
- html?: string | undefined;
12871
+ images?: string[] | undefined;
12872
+ summary?: string | undefined;
12872
12873
  actions?: Record<string, unknown> | undefined;
12873
- screenshot?: string | undefined;
12874
12874
  warning?: string | undefined;
12875
12875
  markdown?: string | undefined;
12876
12876
  rawHtml?: string | undefined;
@@ -13322,8 +13322,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13322
13322
  })[] | undefined;
13323
13323
  news?: ({
13324
13324
  json?: unknown;
13325
- images?: string[] | undefined;
13326
- summary?: string | undefined;
13325
+ html?: string | undefined;
13326
+ screenshot?: string | undefined;
13327
13327
  metadata?: z.objectOutputType<{
13328
13328
  title: z.ZodOptional<z.ZodString>;
13329
13329
  description: z.ZodOptional<z.ZodString>;
@@ -13367,9 +13367,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13367
13367
  creditsUsed: z.ZodOptional<z.ZodNumber>;
13368
13368
  error: z.ZodOptional<z.ZodString>;
13369
13369
  }, z.ZodUnknown, "strip"> | undefined;
13370
- html?: string | undefined;
13370
+ images?: string[] | undefined;
13371
+ summary?: string | undefined;
13371
13372
  actions?: Record<string, unknown> | undefined;
13372
- screenshot?: string | undefined;
13373
13373
  warning?: string | undefined;
13374
13374
  markdown?: string | undefined;
13375
13375
  rawHtml?: string | undefined;
@@ -13817,10 +13817,10 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13817
13817
  title?: string | undefined;
13818
13818
  date?: string | undefined;
13819
13819
  url?: string | undefined;
13820
- position?: number | undefined;
13821
13820
  snippet?: string | undefined;
13822
13821
  category?: string | undefined;
13823
13822
  imageUrl?: string | undefined;
13823
+ position?: number | undefined;
13824
13824
  })[] | undefined;
13825
13825
  other?: unknown[] | undefined;
13826
13826
  }, {
@@ -13829,8 +13829,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13829
13829
  error: string;
13830
13830
  images?: ({
13831
13831
  json?: unknown;
13832
- images?: string[] | undefined;
13833
- summary?: string | undefined;
13832
+ html?: string | undefined;
13833
+ screenshot?: string | undefined;
13834
13834
  metadata?: z.objectInputType<{
13835
13835
  title: z.ZodOptional<z.ZodString>;
13836
13836
  description: z.ZodOptional<z.ZodString>;
@@ -13874,9 +13874,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13874
13874
  creditsUsed: z.ZodOptional<z.ZodNumber>;
13875
13875
  error: z.ZodOptional<z.ZodString>;
13876
13876
  }, z.ZodUnknown, "strip"> | undefined;
13877
- html?: string | undefined;
13877
+ images?: string[] | undefined;
13878
+ summary?: string | undefined;
13878
13879
  actions?: Record<string, unknown> | undefined;
13879
- screenshot?: string | undefined;
13880
13880
  warning?: string | undefined;
13881
13881
  markdown?: string | undefined;
13882
13882
  rawHtml?: string | undefined;
@@ -14323,15 +14323,15 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
14323
14323
  } | {
14324
14324
  title?: string | undefined;
14325
14325
  url?: string | undefined;
14326
- position?: number | undefined;
14327
14326
  imageUrl?: string | undefined;
14327
+ position?: number | undefined;
14328
14328
  imageWidth?: number | undefined;
14329
14329
  imageHeight?: number | undefined;
14330
14330
  })[] | undefined;
14331
14331
  web?: ({
14332
14332
  json?: unknown;
14333
- images?: string[] | undefined;
14334
- summary?: string | undefined;
14333
+ html?: string | undefined;
14334
+ screenshot?: string | undefined;
14335
14335
  metadata?: z.objectInputType<{
14336
14336
  title: z.ZodOptional<z.ZodString>;
14337
14337
  description: z.ZodOptional<z.ZodString>;
@@ -14375,9 +14375,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
14375
14375
  creditsUsed: z.ZodOptional<z.ZodNumber>;
14376
14376
  error: z.ZodOptional<z.ZodString>;
14377
14377
  }, z.ZodUnknown, "strip"> | undefined;
14378
- html?: string | undefined;
14378
+ images?: string[] | undefined;
14379
+ summary?: string | undefined;
14379
14380
  actions?: Record<string, unknown> | undefined;
14380
- screenshot?: string | undefined;
14381
14381
  warning?: string | undefined;
14382
14382
  markdown?: string | undefined;
14383
14383
  rawHtml?: string | undefined;
@@ -14829,8 +14829,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
14829
14829
  })[] | undefined;
14830
14830
  news?: ({
14831
14831
  json?: unknown;
14832
- images?: string[] | undefined;
14833
- summary?: string | undefined;
14832
+ html?: string | undefined;
14833
+ screenshot?: string | undefined;
14834
14834
  metadata?: z.objectInputType<{
14835
14835
  title: z.ZodOptional<z.ZodString>;
14836
14836
  description: z.ZodOptional<z.ZodString>;
@@ -14874,9 +14874,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
14874
14874
  creditsUsed: z.ZodOptional<z.ZodNumber>;
14875
14875
  error: z.ZodOptional<z.ZodString>;
14876
14876
  }, z.ZodUnknown, "strip"> | undefined;
14877
- html?: string | undefined;
14877
+ images?: string[] | undefined;
14878
+ summary?: string | undefined;
14878
14879
  actions?: Record<string, unknown> | undefined;
14879
- screenshot?: string | undefined;
14880
14880
  warning?: string | undefined;
14881
14881
  markdown?: string | undefined;
14882
14882
  rawHtml?: string | undefined;
@@ -15324,10 +15324,10 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
15324
15324
  title?: string | undefined;
15325
15325
  date?: string | undefined;
15326
15326
  url?: string | undefined;
15327
- position?: number | undefined;
15328
15327
  snippet?: string | undefined;
15329
15328
  category?: string | undefined;
15330
15329
  imageUrl?: string | undefined;
15330
+ position?: number | undefined;
15331
15331
  })[] | undefined;
15332
15332
  other?: unknown[] | undefined;
15333
15333
  }>, z.ZodObject<{
@@ -16832,8 +16832,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
16832
16832
  }, z.ZodUnknown, "strip">>>;
16833
16833
  }, "strip", z.ZodTypeAny, {
16834
16834
  json?: unknown;
16835
- images?: string[] | undefined;
16836
- summary?: string | undefined;
16835
+ html?: string | undefined;
16836
+ screenshot?: string | undefined;
16837
16837
  metadata?: z.objectOutputType<{
16838
16838
  title: z.ZodOptional<z.ZodString>;
16839
16839
  description: z.ZodOptional<z.ZodString>;
@@ -16877,9 +16877,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
16877
16877
  creditsUsed: z.ZodOptional<z.ZodNumber>;
16878
16878
  error: z.ZodOptional<z.ZodString>;
16879
16879
  }, z.ZodUnknown, "strip"> | undefined;
16880
- html?: string | undefined;
16880
+ images?: string[] | undefined;
16881
+ summary?: string | undefined;
16881
16882
  actions?: Record<string, unknown> | undefined;
16882
- screenshot?: string | undefined;
16883
16883
  warning?: string | undefined;
16884
16884
  markdown?: string | undefined;
16885
16885
  rawHtml?: string | undefined;
@@ -17325,8 +17325,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17325
17325
  }, z.ZodUnknown, "strip"> | undefined;
17326
17326
  }, {
17327
17327
  json?: unknown;
17328
- images?: string[] | undefined;
17329
- summary?: string | undefined;
17328
+ html?: string | undefined;
17329
+ screenshot?: string | undefined;
17330
17330
  metadata?: z.objectInputType<{
17331
17331
  title: z.ZodOptional<z.ZodString>;
17332
17332
  description: z.ZodOptional<z.ZodString>;
@@ -17370,9 +17370,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17370
17370
  creditsUsed: z.ZodOptional<z.ZodNumber>;
17371
17371
  error: z.ZodOptional<z.ZodString>;
17372
17372
  }, z.ZodUnknown, "strip"> | undefined;
17373
- html?: string | undefined;
17373
+ images?: string[] | undefined;
17374
+ summary?: string | undefined;
17374
17375
  actions?: Record<string, unknown> | undefined;
17375
- screenshot?: string | undefined;
17376
17376
  warning?: string | undefined;
17377
17377
  markdown?: string | undefined;
17378
17378
  rawHtml?: string | undefined;
@@ -17824,8 +17824,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17824
17824
  error: string;
17825
17825
  data: {
17826
17826
  json?: unknown;
17827
- images?: string[] | undefined;
17828
- summary?: string | undefined;
17827
+ html?: string | undefined;
17828
+ screenshot?: string | undefined;
17829
17829
  metadata?: z.objectOutputType<{
17830
17830
  title: z.ZodOptional<z.ZodString>;
17831
17831
  description: z.ZodOptional<z.ZodString>;
@@ -17869,9 +17869,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17869
17869
  creditsUsed: z.ZodOptional<z.ZodNumber>;
17870
17870
  error: z.ZodOptional<z.ZodString>;
17871
17871
  }, z.ZodUnknown, "strip"> | undefined;
17872
- html?: string | undefined;
17872
+ images?: string[] | undefined;
17873
+ summary?: string | undefined;
17873
17874
  actions?: Record<string, unknown> | undefined;
17874
- screenshot?: string | undefined;
17875
17875
  warning?: string | undefined;
17876
17876
  markdown?: string | undefined;
17877
17877
  rawHtml?: string | undefined;
@@ -18327,8 +18327,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18327
18327
  error: string;
18328
18328
  data: {
18329
18329
  json?: unknown;
18330
- images?: string[] | undefined;
18331
- summary?: string | undefined;
18330
+ html?: string | undefined;
18331
+ screenshot?: string | undefined;
18332
18332
  metadata?: z.objectInputType<{
18333
18333
  title: z.ZodOptional<z.ZodString>;
18334
18334
  description: z.ZodOptional<z.ZodString>;
@@ -18372,9 +18372,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18372
18372
  creditsUsed: z.ZodOptional<z.ZodNumber>;
18373
18373
  error: z.ZodOptional<z.ZodString>;
18374
18374
  }, z.ZodUnknown, "strip"> | undefined;
18375
- html?: string | undefined;
18375
+ images?: string[] | undefined;
18376
+ summary?: string | undefined;
18376
18377
  actions?: Record<string, unknown> | undefined;
18377
- screenshot?: string | undefined;
18378
18378
  warning?: string | undefined;
18379
18379
  markdown?: string | undefined;
18380
18380
  rawHtml?: string | undefined;
@@ -18876,9 +18876,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
18876
18876
  formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
18877
18877
  type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
18878
18878
  }, "strip", z.ZodTypeAny, {
18879
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
18879
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
18880
18880
  }, {
18881
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
18881
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
18882
18882
  }>, z.ZodObject<{
18883
18883
  type: z.ZodLiteral<"json">;
18884
18884
  prompt: z.ZodOptional<z.ZodString>;
@@ -18901,14 +18901,14 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
18901
18901
  type: "changeTracking";
18902
18902
  modes: ("json" | "git-diff")[];
18903
18903
  schema?: Record<string, unknown> | undefined;
18904
- tag?: string | undefined;
18905
18904
  prompt?: string | undefined;
18905
+ tag?: string | undefined;
18906
18906
  }, {
18907
18907
  type: "changeTracking";
18908
18908
  modes: ("json" | "git-diff")[];
18909
18909
  schema?: Record<string, unknown> | undefined;
18910
- tag?: string | undefined;
18911
18910
  prompt?: string | undefined;
18911
+ tag?: string | undefined;
18912
18912
  }>, z.ZodObject<{
18913
18913
  type: z.ZodLiteral<"screenshot">;
18914
18914
  fullPage: z.ZodOptional<z.ZodBoolean>;
@@ -19119,8 +19119,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19119
19119
  operation: "scrape";
19120
19120
  url: string;
19121
19121
  timeout: number;
19122
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19123
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19122
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19123
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19124
19124
  } | {
19125
19125
  type: "json";
19126
19126
  schema?: any;
@@ -19129,8 +19129,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19129
19129
  type: "changeTracking";
19130
19130
  modes: ("json" | "git-diff")[];
19131
19131
  schema?: Record<string, unknown> | undefined;
19132
- tag?: string | undefined;
19133
19132
  prompt?: string | undefined;
19133
+ tag?: string | undefined;
19134
19134
  } | {
19135
19135
  type: "screenshot";
19136
19136
  quality?: number | undefined;
@@ -19154,6 +19154,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19154
19154
  country?: string | undefined;
19155
19155
  languages?: string[] | undefined;
19156
19156
  } | undefined;
19157
+ mobile?: boolean | undefined;
19157
19158
  maxRetries?: number | undefined;
19158
19159
  headers?: Record<string, string> | undefined;
19159
19160
  includeTags?: string[] | undefined;
@@ -19194,7 +19195,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19194
19195
  scale?: number | undefined;
19195
19196
  landscape?: boolean | undefined;
19196
19197
  })[] | undefined;
19197
- mobile?: boolean | undefined;
19198
19198
  integration?: string | undefined;
19199
19199
  parsers?: (string | {
19200
19200
  type: "pdf";
@@ -19216,8 +19216,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19216
19216
  country?: string | undefined;
19217
19217
  languages?: string[] | undefined;
19218
19218
  } | undefined;
19219
- maxRetries?: number | undefined;
19220
19219
  timeout?: number | undefined;
19220
+ mobile?: boolean | undefined;
19221
+ maxRetries?: number | undefined;
19221
19222
  headers?: Record<string, string> | undefined;
19222
19223
  includeTags?: string[] | undefined;
19223
19224
  excludeTags?: string[] | undefined;
@@ -19257,10 +19258,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19257
19258
  scale?: number | undefined;
19258
19259
  landscape?: boolean | undefined;
19259
19260
  })[] | undefined;
19260
- mobile?: boolean | undefined;
19261
19261
  integration?: string | undefined;
19262
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19263
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19262
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19263
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19264
19264
  } | {
19265
19265
  type: "json";
19266
19266
  schema?: any;
@@ -19269,8 +19269,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19269
19269
  type: "changeTracking";
19270
19270
  modes: ("json" | "git-diff")[];
19271
19271
  schema?: Record<string, unknown> | undefined;
19272
- tag?: string | undefined;
19273
19272
  prompt?: string | undefined;
19273
+ tag?: string | undefined;
19274
19274
  } | {
19275
19275
  type: "screenshot";
19276
19276
  quality?: number | undefined;
@@ -19331,9 +19331,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19331
19331
  formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
19332
19332
  type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
19333
19333
  }, "strip", z.ZodTypeAny, {
19334
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19334
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19335
19335
  }, {
19336
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19336
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19337
19337
  }>, z.ZodObject<{
19338
19338
  type: z.ZodLiteral<"json">;
19339
19339
  prompt: z.ZodOptional<z.ZodString>;
@@ -19356,14 +19356,14 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19356
19356
  type: "changeTracking";
19357
19357
  modes: ("json" | "git-diff")[];
19358
19358
  schema?: Record<string, unknown> | undefined;
19359
- tag?: string | undefined;
19360
19359
  prompt?: string | undefined;
19360
+ tag?: string | undefined;
19361
19361
  }, {
19362
19362
  type: "changeTracking";
19363
19363
  modes: ("json" | "git-diff")[];
19364
19364
  schema?: Record<string, unknown> | undefined;
19365
- tag?: string | undefined;
19366
19365
  prompt?: string | undefined;
19366
+ tag?: string | undefined;
19367
19367
  }>, z.ZodObject<{
19368
19368
  type: z.ZodLiteral<"screenshot">;
19369
19369
  fullPage: z.ZodOptional<z.ZodBoolean>;
@@ -19569,8 +19569,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19569
19569
  integration: z.ZodOptional<z.ZodString>;
19570
19570
  }, "strip", z.ZodTypeAny, {
19571
19571
  timeout: number;
19572
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19573
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19572
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19573
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19574
19574
  } | {
19575
19575
  type: "json";
19576
19576
  schema?: any;
@@ -19579,8 +19579,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19579
19579
  type: "changeTracking";
19580
19580
  modes: ("json" | "git-diff")[];
19581
19581
  schema?: Record<string, unknown> | undefined;
19582
- tag?: string | undefined;
19583
19582
  prompt?: string | undefined;
19583
+ tag?: string | undefined;
19584
19584
  } | {
19585
19585
  type: "screenshot";
19586
19586
  quality?: number | undefined;
@@ -19603,6 +19603,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19603
19603
  country?: string | undefined;
19604
19604
  languages?: string[] | undefined;
19605
19605
  } | undefined;
19606
+ mobile?: boolean | undefined;
19606
19607
  headers?: Record<string, string> | undefined;
19607
19608
  includeTags?: string[] | undefined;
19608
19609
  excludeTags?: string[] | undefined;
@@ -19642,7 +19643,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19642
19643
  scale?: number | undefined;
19643
19644
  landscape?: boolean | undefined;
19644
19645
  })[] | undefined;
19645
- mobile?: boolean | undefined;
19646
19646
  integration?: string | undefined;
19647
19647
  parsers?: (string | {
19648
19648
  type: "pdf";
@@ -19661,6 +19661,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19661
19661
  languages?: string[] | undefined;
19662
19662
  } | undefined;
19663
19663
  timeout?: number | undefined;
19664
+ mobile?: boolean | undefined;
19664
19665
  headers?: Record<string, string> | undefined;
19665
19666
  includeTags?: string[] | undefined;
19666
19667
  excludeTags?: string[] | undefined;
@@ -19700,10 +19701,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19700
19701
  scale?: number | undefined;
19701
19702
  landscape?: boolean | undefined;
19702
19703
  })[] | undefined;
19703
- mobile?: boolean | undefined;
19704
19704
  integration?: string | undefined;
19705
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19706
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19705
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19706
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19707
19707
  } | {
19708
19708
  type: "json";
19709
19709
  schema?: any;
@@ -19712,8 +19712,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19712
19712
  type: "changeTracking";
19713
19713
  modes: ("json" | "git-diff")[];
19714
19714
  schema?: Record<string, unknown> | undefined;
19715
- tag?: string | undefined;
19716
19715
  prompt?: string | undefined;
19716
+ tag?: string | undefined;
19717
19717
  } | {
19718
19718
  type: "screenshot";
19719
19719
  quality?: number | undefined;
@@ -19750,9 +19750,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19750
19750
  query: string;
19751
19751
  credentials?: Partial<Record<CredentialType, string>> | undefined;
19752
19752
  location?: string | undefined;
19753
- limit?: number | undefined;
19754
- maxRetries?: number | undefined;
19755
19753
  timeout?: number | undefined;
19754
+ maxRetries?: number | undefined;
19755
+ limit?: number | undefined;
19756
19756
  categories?: ("github" | "pdf" | "research" | {
19757
19757
  type: "github" | "pdf" | "research";
19758
19758
  })[] | undefined;
@@ -19765,8 +19765,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19765
19765
  ignoreInvalidURLs?: boolean | undefined;
19766
19766
  scrapeOptions?: {
19767
19767
  timeout: number;
19768
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19769
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19768
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19769
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19770
19770
  } | {
19771
19771
  type: "json";
19772
19772
  schema?: any;
@@ -19775,8 +19775,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19775
19775
  type: "changeTracking";
19776
19776
  modes: ("json" | "git-diff")[];
19777
19777
  schema?: Record<string, unknown> | undefined;
19778
- tag?: string | undefined;
19779
19778
  prompt?: string | undefined;
19779
+ tag?: string | undefined;
19780
19780
  } | {
19781
19781
  type: "screenshot";
19782
19782
  quality?: number | undefined;
@@ -19799,6 +19799,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19799
19799
  country?: string | undefined;
19800
19800
  languages?: string[] | undefined;
19801
19801
  } | undefined;
19802
+ mobile?: boolean | undefined;
19802
19803
  headers?: Record<string, string> | undefined;
19803
19804
  includeTags?: string[] | undefined;
19804
19805
  excludeTags?: string[] | undefined;
@@ -19838,7 +19839,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19838
19839
  scale?: number | undefined;
19839
19840
  landscape?: boolean | undefined;
19840
19841
  })[] | undefined;
19841
- mobile?: boolean | undefined;
19842
19842
  integration?: string | undefined;
19843
19843
  parsers?: (string | {
19844
19844
  type: "pdf";
@@ -19857,9 +19857,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19857
19857
  query: string;
19858
19858
  credentials?: Partial<Record<CredentialType, string>> | undefined;
19859
19859
  location?: string | undefined;
19860
- limit?: number | undefined;
19861
- maxRetries?: number | undefined;
19862
19860
  timeout?: number | undefined;
19861
+ maxRetries?: number | undefined;
19862
+ limit?: number | undefined;
19863
19863
  categories?: ("github" | "pdf" | "research" | {
19864
19864
  type: "github" | "pdf" | "research";
19865
19865
  })[] | undefined;
@@ -19876,6 +19876,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19876
19876
  languages?: string[] | undefined;
19877
19877
  } | undefined;
19878
19878
  timeout?: number | undefined;
19879
+ mobile?: boolean | undefined;
19879
19880
  headers?: Record<string, string> | undefined;
19880
19881
  includeTags?: string[] | undefined;
19881
19882
  excludeTags?: string[] | undefined;
@@ -19915,10 +19916,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19915
19916
  scale?: number | undefined;
19916
19917
  landscape?: boolean | undefined;
19917
19918
  })[] | undefined;
19918
- mobile?: boolean | undefined;
19919
19919
  integration?: string | undefined;
19920
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19921
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19920
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19921
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19922
19922
  } | {
19923
19923
  type: "json";
19924
19924
  schema?: any;
@@ -19927,8 +19927,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19927
19927
  type: "changeTracking";
19928
19928
  modes: ("json" | "git-diff")[];
19929
19929
  schema?: Record<string, unknown> | undefined;
19930
- tag?: string | undefined;
19931
19930
  prompt?: string | undefined;
19931
+ tag?: string | undefined;
19932
19932
  } | {
19933
19933
  type: "screenshot";
19934
19934
  quality?: number | undefined;
@@ -19991,9 +19991,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19991
19991
  country?: string | undefined;
19992
19992
  languages?: string[] | undefined;
19993
19993
  } | undefined;
19994
- limit?: number | undefined;
19995
- maxRetries?: number | undefined;
19996
19994
  timeout?: number | undefined;
19995
+ maxRetries?: number | undefined;
19996
+ limit?: number | undefined;
19997
19997
  integration?: string | undefined;
19998
19998
  backoffFactor?: number | undefined;
19999
19999
  sitemap?: "include" | "only" | "skip" | undefined;
@@ -20007,9 +20007,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20007
20007
  country?: string | undefined;
20008
20008
  languages?: string[] | undefined;
20009
20009
  } | undefined;
20010
- limit?: number | undefined;
20011
- maxRetries?: number | undefined;
20012
20010
  timeout?: number | undefined;
20011
+ maxRetries?: number | undefined;
20012
+ limit?: number | undefined;
20013
20013
  integration?: string | undefined;
20014
20014
  backoffFactor?: number | undefined;
20015
20015
  sitemap?: "include" | "only" | "skip" | undefined;
@@ -20053,9 +20053,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20053
20053
  formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
20054
20054
  type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
20055
20055
  }, "strip", z.ZodTypeAny, {
20056
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20056
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20057
20057
  }, {
20058
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20058
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20059
20059
  }>, z.ZodObject<{
20060
20060
  type: z.ZodLiteral<"json">;
20061
20061
  prompt: z.ZodOptional<z.ZodString>;
@@ -20078,14 +20078,14 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20078
20078
  type: "changeTracking";
20079
20079
  modes: ("json" | "git-diff")[];
20080
20080
  schema?: Record<string, unknown> | undefined;
20081
- tag?: string | undefined;
20082
20081
  prompt?: string | undefined;
20082
+ tag?: string | undefined;
20083
20083
  }, {
20084
20084
  type: "changeTracking";
20085
20085
  modes: ("json" | "git-diff")[];
20086
20086
  schema?: Record<string, unknown> | undefined;
20087
- tag?: string | undefined;
20088
20087
  prompt?: string | undefined;
20088
+ tag?: string | undefined;
20089
20089
  }>, z.ZodObject<{
20090
20090
  type: z.ZodLiteral<"screenshot">;
20091
20091
  fullPage: z.ZodOptional<z.ZodBoolean>;
@@ -20291,8 +20291,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20291
20291
  integration: z.ZodOptional<z.ZodString>;
20292
20292
  }, "strip", z.ZodTypeAny, {
20293
20293
  timeout: number;
20294
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20295
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20294
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20295
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20296
20296
  } | {
20297
20297
  type: "json";
20298
20298
  schema?: any;
@@ -20301,8 +20301,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20301
20301
  type: "changeTracking";
20302
20302
  modes: ("json" | "git-diff")[];
20303
20303
  schema?: Record<string, unknown> | undefined;
20304
- tag?: string | undefined;
20305
20304
  prompt?: string | undefined;
20305
+ tag?: string | undefined;
20306
20306
  } | {
20307
20307
  type: "screenshot";
20308
20308
  quality?: number | undefined;
@@ -20325,6 +20325,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20325
20325
  country?: string | undefined;
20326
20326
  languages?: string[] | undefined;
20327
20327
  } | undefined;
20328
+ mobile?: boolean | undefined;
20328
20329
  headers?: Record<string, string> | undefined;
20329
20330
  includeTags?: string[] | undefined;
20330
20331
  excludeTags?: string[] | undefined;
@@ -20364,7 +20365,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20364
20365
  scale?: number | undefined;
20365
20366
  landscape?: boolean | undefined;
20366
20367
  })[] | undefined;
20367
- mobile?: boolean | undefined;
20368
20368
  integration?: string | undefined;
20369
20369
  parsers?: (string | {
20370
20370
  type: "pdf";
@@ -20383,6 +20383,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20383
20383
  languages?: string[] | undefined;
20384
20384
  } | undefined;
20385
20385
  timeout?: number | undefined;
20386
+ mobile?: boolean | undefined;
20386
20387
  headers?: Record<string, string> | undefined;
20387
20388
  includeTags?: string[] | undefined;
20388
20389
  excludeTags?: string[] | undefined;
@@ -20422,10 +20423,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20422
20423
  scale?: number | undefined;
20423
20424
  landscape?: boolean | undefined;
20424
20425
  })[] | undefined;
20425
- mobile?: boolean | undefined;
20426
20426
  integration?: string | undefined;
20427
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20428
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20427
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20428
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20429
20429
  } | {
20430
20430
  type: "json";
20431
20431
  schema?: any;
@@ -20434,8 +20434,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20434
20434
  type: "changeTracking";
20435
20435
  modes: ("json" | "git-diff")[];
20436
20436
  schema?: Record<string, unknown> | undefined;
20437
- tag?: string | undefined;
20438
20437
  prompt?: string | undefined;
20438
+ tag?: string | undefined;
20439
20439
  } | {
20440
20440
  type: "screenshot";
20441
20441
  quality?: number | undefined;
@@ -20474,11 +20474,12 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20474
20474
  operation: "crawl";
20475
20475
  url: string;
20476
20476
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20477
- limit?: number | undefined;
20478
- maxRetries?: number | undefined;
20479
20477
  timeout?: number | undefined;
20480
- maxConcurrency?: number | undefined;
20478
+ delay?: number | undefined;
20481
20479
  prompt?: string | undefined;
20480
+ maxConcurrency?: number | undefined;
20481
+ maxRetries?: number | undefined;
20482
+ limit?: number | undefined;
20482
20483
  webhook?: string | {
20483
20484
  url: string;
20484
20485
  metadata?: Record<string, string> | undefined;
@@ -20489,8 +20490,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20489
20490
  backoffFactor?: number | undefined;
20490
20491
  scrapeOptions?: {
20491
20492
  timeout: number;
20492
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20493
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20493
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20494
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20494
20495
  } | {
20495
20496
  type: "json";
20496
20497
  schema?: any;
@@ -20499,8 +20500,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20499
20500
  type: "changeTracking";
20500
20501
  modes: ("json" | "git-diff")[];
20501
20502
  schema?: Record<string, unknown> | undefined;
20502
- tag?: string | undefined;
20503
20503
  prompt?: string | undefined;
20504
+ tag?: string | undefined;
20504
20505
  } | {
20505
20506
  type: "screenshot";
20506
20507
  quality?: number | undefined;
@@ -20523,6 +20524,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20523
20524
  country?: string | undefined;
20524
20525
  languages?: string[] | undefined;
20525
20526
  } | undefined;
20527
+ mobile?: boolean | undefined;
20526
20528
  headers?: Record<string, string> | undefined;
20527
20529
  includeTags?: string[] | undefined;
20528
20530
  excludeTags?: string[] | undefined;
@@ -20562,7 +20564,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20562
20564
  scale?: number | undefined;
20563
20565
  landscape?: boolean | undefined;
20564
20566
  })[] | undefined;
20565
- mobile?: boolean | undefined;
20566
20567
  integration?: string | undefined;
20567
20568
  parsers?: (string | {
20568
20569
  type: "pdf";
@@ -20584,18 +20585,18 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20584
20585
  crawlEntireDomain?: boolean | undefined;
20585
20586
  allowExternalLinks?: boolean | undefined;
20586
20587
  allowSubdomains?: boolean | undefined;
20587
- delay?: number | undefined;
20588
20588
  zeroDataRetention?: boolean | undefined;
20589
20589
  pollInterval?: number | undefined;
20590
20590
  }, {
20591
20591
  operation: "crawl";
20592
20592
  url: string;
20593
20593
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20594
- limit?: number | undefined;
20595
- maxRetries?: number | undefined;
20596
20594
  timeout?: number | undefined;
20597
- maxConcurrency?: number | undefined;
20595
+ delay?: number | undefined;
20598
20596
  prompt?: string | undefined;
20597
+ maxConcurrency?: number | undefined;
20598
+ maxRetries?: number | undefined;
20599
+ limit?: number | undefined;
20599
20600
  webhook?: string | {
20600
20601
  url: string;
20601
20602
  metadata?: Record<string, string> | undefined;
@@ -20610,6 +20611,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20610
20611
  languages?: string[] | undefined;
20611
20612
  } | undefined;
20612
20613
  timeout?: number | undefined;
20614
+ mobile?: boolean | undefined;
20613
20615
  headers?: Record<string, string> | undefined;
20614
20616
  includeTags?: string[] | undefined;
20615
20617
  excludeTags?: string[] | undefined;
@@ -20649,10 +20651,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20649
20651
  scale?: number | undefined;
20650
20652
  landscape?: boolean | undefined;
20651
20653
  })[] | undefined;
20652
- mobile?: boolean | undefined;
20653
20654
  integration?: string | undefined;
20654
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20655
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20655
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20656
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20656
20657
  } | {
20657
20658
  type: "json";
20658
20659
  schema?: any;
@@ -20661,8 +20662,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20661
20662
  type: "changeTracking";
20662
20663
  modes: ("json" | "git-diff")[];
20663
20664
  schema?: Record<string, unknown> | undefined;
20664
- tag?: string | undefined;
20665
20665
  prompt?: string | undefined;
20666
+ tag?: string | undefined;
20666
20667
  } | {
20667
20668
  type: "screenshot";
20668
20669
  quality?: number | undefined;
@@ -20701,7 +20702,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20701
20702
  crawlEntireDomain?: boolean | undefined;
20702
20703
  allowExternalLinks?: boolean | undefined;
20703
20704
  allowSubdomains?: boolean | undefined;
20704
- delay?: number | undefined;
20705
20705
  zeroDataRetention?: boolean | undefined;
20706
20706
  pollInterval?: number | undefined;
20707
20707
  }>, z.ZodObject<{
@@ -20721,9 +20721,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20721
20721
  formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
20722
20722
  type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
20723
20723
  }, "strip", z.ZodTypeAny, {
20724
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20724
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20725
20725
  }, {
20726
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20726
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20727
20727
  }>, z.ZodObject<{
20728
20728
  type: z.ZodLiteral<"json">;
20729
20729
  prompt: z.ZodOptional<z.ZodString>;
@@ -20746,14 +20746,14 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20746
20746
  type: "changeTracking";
20747
20747
  modes: ("json" | "git-diff")[];
20748
20748
  schema?: Record<string, unknown> | undefined;
20749
- tag?: string | undefined;
20750
20749
  prompt?: string | undefined;
20750
+ tag?: string | undefined;
20751
20751
  }, {
20752
20752
  type: "changeTracking";
20753
20753
  modes: ("json" | "git-diff")[];
20754
20754
  schema?: Record<string, unknown> | undefined;
20755
- tag?: string | undefined;
20756
20755
  prompt?: string | undefined;
20756
+ tag?: string | undefined;
20757
20757
  }>, z.ZodObject<{
20758
20758
  type: z.ZodLiteral<"screenshot">;
20759
20759
  fullPage: z.ZodOptional<z.ZodBoolean>;
@@ -20959,8 +20959,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20959
20959
  integration: z.ZodOptional<z.ZodString>;
20960
20960
  }, "strip", z.ZodTypeAny, {
20961
20961
  timeout: number;
20962
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20963
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20962
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20963
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20964
20964
  } | {
20965
20965
  type: "json";
20966
20966
  schema?: any;
@@ -20969,8 +20969,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20969
20969
  type: "changeTracking";
20970
20970
  modes: ("json" | "git-diff")[];
20971
20971
  schema?: Record<string, unknown> | undefined;
20972
- tag?: string | undefined;
20973
20972
  prompt?: string | undefined;
20973
+ tag?: string | undefined;
20974
20974
  } | {
20975
20975
  type: "screenshot";
20976
20976
  quality?: number | undefined;
@@ -20993,6 +20993,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20993
20993
  country?: string | undefined;
20994
20994
  languages?: string[] | undefined;
20995
20995
  } | undefined;
20996
+ mobile?: boolean | undefined;
20996
20997
  headers?: Record<string, string> | undefined;
20997
20998
  includeTags?: string[] | undefined;
20998
20999
  excludeTags?: string[] | undefined;
@@ -21032,7 +21033,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21032
21033
  scale?: number | undefined;
21033
21034
  landscape?: boolean | undefined;
21034
21035
  })[] | undefined;
21035
- mobile?: boolean | undefined;
21036
21036
  integration?: string | undefined;
21037
21037
  parsers?: (string | {
21038
21038
  type: "pdf";
@@ -21051,6 +21051,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21051
21051
  languages?: string[] | undefined;
21052
21052
  } | undefined;
21053
21053
  timeout?: number | undefined;
21054
+ mobile?: boolean | undefined;
21054
21055
  headers?: Record<string, string> | undefined;
21055
21056
  includeTags?: string[] | undefined;
21056
21057
  excludeTags?: string[] | undefined;
@@ -21090,10 +21091,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21090
21091
  scale?: number | undefined;
21091
21092
  landscape?: boolean | undefined;
21092
21093
  })[] | undefined;
21093
- mobile?: boolean | undefined;
21094
21094
  integration?: string | undefined;
21095
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21096
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21095
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21096
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21097
21097
  } | {
21098
21098
  type: "json";
21099
21099
  schema?: any;
@@ -21102,8 +21102,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21102
21102
  type: "changeTracking";
21103
21103
  modes: ("json" | "git-diff")[];
21104
21104
  schema?: Record<string, unknown> | undefined;
21105
- tag?: string | undefined;
21106
21105
  prompt?: string | undefined;
21106
+ tag?: string | undefined;
21107
21107
  } | {
21108
21108
  type: "screenshot";
21109
21109
  quality?: number | undefined;
@@ -21150,20 +21150,20 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21150
21150
  urls: string[];
21151
21151
  schema?: any;
21152
21152
  credentials?: Partial<Record<CredentialType, string>> | undefined;
21153
+ timeout?: number | undefined;
21154
+ prompt?: string | undefined;
21153
21155
  maxRetries?: number | undefined;
21154
21156
  systemPrompt?: string | undefined;
21155
21157
  agent?: {
21156
21158
  model: "FIRE-1";
21157
21159
  } | undefined;
21158
- timeout?: number | undefined;
21159
- prompt?: string | undefined;
21160
21160
  integration?: string | undefined;
21161
21161
  backoffFactor?: number | undefined;
21162
21162
  ignoreInvalidURLs?: boolean | undefined;
21163
21163
  scrapeOptions?: {
21164
21164
  timeout: number;
21165
- formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21166
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21165
+ formats: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21166
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21167
21167
  } | {
21168
21168
  type: "json";
21169
21169
  schema?: any;
@@ -21172,8 +21172,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21172
21172
  type: "changeTracking";
21173
21173
  modes: ("json" | "git-diff")[];
21174
21174
  schema?: Record<string, unknown> | undefined;
21175
- tag?: string | undefined;
21176
21175
  prompt?: string | undefined;
21176
+ tag?: string | undefined;
21177
21177
  } | {
21178
21178
  type: "screenshot";
21179
21179
  quality?: number | undefined;
@@ -21196,6 +21196,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21196
21196
  country?: string | undefined;
21197
21197
  languages?: string[] | undefined;
21198
21198
  } | undefined;
21199
+ mobile?: boolean | undefined;
21199
21200
  headers?: Record<string, string> | undefined;
21200
21201
  includeTags?: string[] | undefined;
21201
21202
  excludeTags?: string[] | undefined;
@@ -21235,7 +21236,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21235
21236
  scale?: number | undefined;
21236
21237
  landscape?: boolean | undefined;
21237
21238
  })[] | undefined;
21238
- mobile?: boolean | undefined;
21239
21239
  integration?: string | undefined;
21240
21240
  parsers?: (string | {
21241
21241
  type: "pdf";
@@ -21258,13 +21258,13 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21258
21258
  urls: string[];
21259
21259
  schema?: any;
21260
21260
  credentials?: Partial<Record<CredentialType, string>> | undefined;
21261
+ timeout?: number | undefined;
21262
+ prompt?: string | undefined;
21261
21263
  maxRetries?: number | undefined;
21262
21264
  systemPrompt?: string | undefined;
21263
21265
  agent?: {
21264
21266
  model: "FIRE-1";
21265
21267
  } | undefined;
21266
- timeout?: number | undefined;
21267
- prompt?: string | undefined;
21268
21268
  integration?: string | undefined;
21269
21269
  backoffFactor?: number | undefined;
21270
21270
  ignoreInvalidURLs?: boolean | undefined;
@@ -21274,6 +21274,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21274
21274
  languages?: string[] | undefined;
21275
21275
  } | undefined;
21276
21276
  timeout?: number | undefined;
21277
+ mobile?: boolean | undefined;
21277
21278
  headers?: Record<string, string> | undefined;
21278
21279
  includeTags?: string[] | undefined;
21279
21280
  excludeTags?: string[] | undefined;
@@ -21313,10 +21314,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21313
21314
  scale?: number | undefined;
21314
21315
  landscape?: boolean | undefined;
21315
21316
  })[] | undefined;
21316
- mobile?: boolean | undefined;
21317
21317
  integration?: string | undefined;
21318
- formats?: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21319
- type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21318
+ formats?: ("json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21319
+ type: "json" | "html" | "screenshot" | "images" | "summary" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21320
21320
  } | {
21321
21321
  type: "json";
21322
21322
  schema?: any;
@@ -21325,8 +21325,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21325
21325
  type: "changeTracking";
21326
21326
  modes: ("json" | "git-diff")[];
21327
21327
  schema?: Record<string, unknown> | undefined;
21328
- tag?: string | undefined;
21329
21328
  prompt?: string | undefined;
21329
+ tag?: string | undefined;
21330
21330
  } | {
21331
21331
  type: "screenshot";
21332
21332
  quality?: number | undefined;
@@ -22821,8 +22821,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
22821
22821
  success: boolean;
22822
22822
  error: string;
22823
22823
  json?: unknown;
22824
- images?: string[] | undefined;
22825
- summary?: string | undefined;
22824
+ html?: string | undefined;
22825
+ screenshot?: string | undefined;
22826
22826
  metadata?: z.objectOutputType<{
22827
22827
  title: z.ZodOptional<z.ZodString>;
22828
22828
  description: z.ZodOptional<z.ZodString>;
@@ -22866,9 +22866,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
22866
22866
  creditsUsed: z.ZodOptional<z.ZodNumber>;
22867
22867
  error: z.ZodOptional<z.ZodString>;
22868
22868
  }, z.ZodUnknown, "strip"> | undefined;
22869
- html?: string | undefined;
22869
+ images?: string[] | undefined;
22870
+ summary?: string | undefined;
22870
22871
  actions?: Record<string, unknown> | undefined;
22871
- screenshot?: string | undefined;
22872
22872
  warning?: string | undefined;
22873
22873
  markdown?: string | undefined;
22874
22874
  rawHtml?: string | undefined;
@@ -23317,8 +23317,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
23317
23317
  success: boolean;
23318
23318
  error: string;
23319
23319
  json?: unknown;
23320
- images?: string[] | undefined;
23321
- summary?: string | undefined;
23320
+ html?: string | undefined;
23321
+ screenshot?: string | undefined;
23322
23322
  metadata?: z.objectInputType<{
23323
23323
  title: z.ZodOptional<z.ZodString>;
23324
23324
  description: z.ZodOptional<z.ZodString>;
@@ -23362,9 +23362,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
23362
23362
  creditsUsed: z.ZodOptional<z.ZodNumber>;
23363
23363
  error: z.ZodOptional<z.ZodString>;
23364
23364
  }, z.ZodUnknown, "strip"> | undefined;
23365
- html?: string | undefined;
23365
+ images?: string[] | undefined;
23366
+ summary?: string | undefined;
23366
23367
  actions?: Record<string, unknown> | undefined;
23367
- screenshot?: string | undefined;
23368
23368
  warning?: string | undefined;
23369
23369
  markdown?: string | undefined;
23370
23370
  rawHtml?: string | undefined;
@@ -25279,8 +25279,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
25279
25279
  }, z.ZodUnknown, "strip">>>;
25280
25280
  }, "strip", z.ZodTypeAny, {
25281
25281
  json?: unknown;
25282
- images?: string[] | undefined;
25283
- summary?: string | undefined;
25282
+ html?: string | undefined;
25283
+ screenshot?: string | undefined;
25284
25284
  metadata?: z.objectOutputType<{
25285
25285
  title: z.ZodOptional<z.ZodString>;
25286
25286
  description: z.ZodOptional<z.ZodString>;
@@ -25324,9 +25324,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
25324
25324
  creditsUsed: z.ZodOptional<z.ZodNumber>;
25325
25325
  error: z.ZodOptional<z.ZodString>;
25326
25326
  }, z.ZodUnknown, "strip"> | undefined;
25327
- html?: string | undefined;
25327
+ images?: string[] | undefined;
25328
+ summary?: string | undefined;
25328
25329
  actions?: Record<string, unknown> | undefined;
25329
- screenshot?: string | undefined;
25330
25330
  warning?: string | undefined;
25331
25331
  markdown?: string | undefined;
25332
25332
  rawHtml?: string | undefined;
@@ -25772,8 +25772,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
25772
25772
  }, z.ZodUnknown, "strip"> | undefined;
25773
25773
  }, {
25774
25774
  json?: unknown;
25775
- images?: string[] | undefined;
25776
- summary?: string | undefined;
25775
+ html?: string | undefined;
25776
+ screenshot?: string | undefined;
25777
25777
  metadata?: z.objectInputType<{
25778
25778
  title: z.ZodOptional<z.ZodString>;
25779
25779
  description: z.ZodOptional<z.ZodString>;
@@ -25817,9 +25817,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
25817
25817
  creditsUsed: z.ZodOptional<z.ZodNumber>;
25818
25818
  error: z.ZodOptional<z.ZodString>;
25819
25819
  }, z.ZodUnknown, "strip"> | undefined;
25820
- html?: string | undefined;
25820
+ images?: string[] | undefined;
25821
+ summary?: string | undefined;
25821
25822
  actions?: Record<string, unknown> | undefined;
25822
- screenshot?: string | undefined;
25823
25823
  warning?: string | undefined;
25824
25824
  markdown?: string | undefined;
25825
25825
  rawHtml?: string | undefined;
@@ -26276,18 +26276,18 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
26276
26276
  title?: string | undefined;
26277
26277
  date?: string | undefined;
26278
26278
  url?: string | undefined;
26279
- position?: number | undefined;
26280
26279
  snippet?: string | undefined;
26281
26280
  category?: string | undefined;
26282
26281
  imageUrl?: string | undefined;
26282
+ position?: number | undefined;
26283
26283
  }, {
26284
26284
  title?: string | undefined;
26285
26285
  date?: string | undefined;
26286
26286
  url?: string | undefined;
26287
- position?: number | undefined;
26288
26287
  snippet?: string | undefined;
26289
26288
  category?: string | undefined;
26290
26289
  imageUrl?: string | undefined;
26290
+ position?: number | undefined;
26291
26291
  }>, z.ZodObject<{
26292
26292
  markdown: z.ZodOptional<z.ZodString>;
26293
26293
  html: z.ZodOptional<z.ZodString>;
@@ -27739,8 +27739,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
27739
27739
  }, z.ZodUnknown, "strip">>>;
27740
27740
  }, "strip", z.ZodTypeAny, {
27741
27741
  json?: unknown;
27742
- images?: string[] | undefined;
27743
- summary?: string | undefined;
27742
+ html?: string | undefined;
27743
+ screenshot?: string | undefined;
27744
27744
  metadata?: z.objectOutputType<{
27745
27745
  title: z.ZodOptional<z.ZodString>;
27746
27746
  description: z.ZodOptional<z.ZodString>;
@@ -27784,9 +27784,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
27784
27784
  creditsUsed: z.ZodOptional<z.ZodNumber>;
27785
27785
  error: z.ZodOptional<z.ZodString>;
27786
27786
  }, z.ZodUnknown, "strip"> | undefined;
27787
- html?: string | undefined;
27787
+ images?: string[] | undefined;
27788
+ summary?: string | undefined;
27788
27789
  actions?: Record<string, unknown> | undefined;
27789
- screenshot?: string | undefined;
27790
27790
  warning?: string | undefined;
27791
27791
  markdown?: string | undefined;
27792
27792
  rawHtml?: string | undefined;
@@ -28232,8 +28232,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
28232
28232
  }, z.ZodUnknown, "strip"> | undefined;
28233
28233
  }, {
28234
28234
  json?: unknown;
28235
- images?: string[] | undefined;
28236
- summary?: string | undefined;
28235
+ html?: string | undefined;
28236
+ screenshot?: string | undefined;
28237
28237
  metadata?: z.objectInputType<{
28238
28238
  title: z.ZodOptional<z.ZodString>;
28239
28239
  description: z.ZodOptional<z.ZodString>;
@@ -28277,9 +28277,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
28277
28277
  creditsUsed: z.ZodOptional<z.ZodNumber>;
28278
28278
  error: z.ZodOptional<z.ZodString>;
28279
28279
  }, z.ZodUnknown, "strip"> | undefined;
28280
- html?: string | undefined;
28280
+ images?: string[] | undefined;
28281
+ summary?: string | undefined;
28281
28282
  actions?: Record<string, unknown> | undefined;
28282
- screenshot?: string | undefined;
28283
28283
  warning?: string | undefined;
28284
28284
  markdown?: string | undefined;
28285
28285
  rawHtml?: string | undefined;
@@ -28734,15 +28734,15 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
28734
28734
  }, "strip", z.ZodTypeAny, {
28735
28735
  title?: string | undefined;
28736
28736
  url?: string | undefined;
28737
- position?: number | undefined;
28738
28737
  imageUrl?: string | undefined;
28738
+ position?: number | undefined;
28739
28739
  imageWidth?: number | undefined;
28740
28740
  imageHeight?: number | undefined;
28741
28741
  }, {
28742
28742
  title?: string | undefined;
28743
28743
  url?: string | undefined;
28744
- position?: number | undefined;
28745
28744
  imageUrl?: string | undefined;
28745
+ position?: number | undefined;
28746
28746
  imageWidth?: number | undefined;
28747
28747
  imageHeight?: number | undefined;
28748
28748
  }>, z.ZodObject<{
@@ -30196,8 +30196,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
30196
30196
  }, z.ZodUnknown, "strip">>>;
30197
30197
  }, "strip", z.ZodTypeAny, {
30198
30198
  json?: unknown;
30199
- images?: string[] | undefined;
30200
- summary?: string | undefined;
30199
+ html?: string | undefined;
30200
+ screenshot?: string | undefined;
30201
30201
  metadata?: z.objectOutputType<{
30202
30202
  title: z.ZodOptional<z.ZodString>;
30203
30203
  description: z.ZodOptional<z.ZodString>;
@@ -30241,9 +30241,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
30241
30241
  creditsUsed: z.ZodOptional<z.ZodNumber>;
30242
30242
  error: z.ZodOptional<z.ZodString>;
30243
30243
  }, z.ZodUnknown, "strip"> | undefined;
30244
- html?: string | undefined;
30244
+ images?: string[] | undefined;
30245
+ summary?: string | undefined;
30245
30246
  actions?: Record<string, unknown> | undefined;
30246
- screenshot?: string | undefined;
30247
30247
  warning?: string | undefined;
30248
30248
  markdown?: string | undefined;
30249
30249
  rawHtml?: string | undefined;
@@ -30689,8 +30689,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
30689
30689
  }, z.ZodUnknown, "strip"> | undefined;
30690
30690
  }, {
30691
30691
  json?: unknown;
30692
- images?: string[] | undefined;
30693
- summary?: string | undefined;
30692
+ html?: string | undefined;
30693
+ screenshot?: string | undefined;
30694
30694
  metadata?: z.objectInputType<{
30695
30695
  title: z.ZodOptional<z.ZodString>;
30696
30696
  description: z.ZodOptional<z.ZodString>;
@@ -30734,9 +30734,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
30734
30734
  creditsUsed: z.ZodOptional<z.ZodNumber>;
30735
30735
  error: z.ZodOptional<z.ZodString>;
30736
30736
  }, z.ZodUnknown, "strip"> | undefined;
30737
- html?: string | undefined;
30737
+ images?: string[] | undefined;
30738
+ summary?: string | undefined;
30738
30739
  actions?: Record<string, unknown> | undefined;
30739
- screenshot?: string | undefined;
30740
30740
  warning?: string | undefined;
30741
30741
  markdown?: string | undefined;
30742
30742
  rawHtml?: string | undefined;
@@ -31188,8 +31188,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31188
31188
  error: string;
31189
31189
  images?: ({
31190
31190
  json?: unknown;
31191
- images?: string[] | undefined;
31192
- summary?: string | undefined;
31191
+ html?: string | undefined;
31192
+ screenshot?: string | undefined;
31193
31193
  metadata?: z.objectOutputType<{
31194
31194
  title: z.ZodOptional<z.ZodString>;
31195
31195
  description: z.ZodOptional<z.ZodString>;
@@ -31233,9 +31233,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31233
31233
  creditsUsed: z.ZodOptional<z.ZodNumber>;
31234
31234
  error: z.ZodOptional<z.ZodString>;
31235
31235
  }, z.ZodUnknown, "strip"> | undefined;
31236
- html?: string | undefined;
31236
+ images?: string[] | undefined;
31237
+ summary?: string | undefined;
31237
31238
  actions?: Record<string, unknown> | undefined;
31238
- screenshot?: string | undefined;
31239
31239
  warning?: string | undefined;
31240
31240
  markdown?: string | undefined;
31241
31241
  rawHtml?: string | undefined;
@@ -31682,15 +31682,15 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31682
31682
  } | {
31683
31683
  title?: string | undefined;
31684
31684
  url?: string | undefined;
31685
- position?: number | undefined;
31686
31685
  imageUrl?: string | undefined;
31686
+ position?: number | undefined;
31687
31687
  imageWidth?: number | undefined;
31688
31688
  imageHeight?: number | undefined;
31689
31689
  })[] | undefined;
31690
31690
  web?: ({
31691
31691
  json?: unknown;
31692
- images?: string[] | undefined;
31693
- summary?: string | undefined;
31692
+ html?: string | undefined;
31693
+ screenshot?: string | undefined;
31694
31694
  metadata?: z.objectOutputType<{
31695
31695
  title: z.ZodOptional<z.ZodString>;
31696
31696
  description: z.ZodOptional<z.ZodString>;
@@ -31734,9 +31734,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31734
31734
  creditsUsed: z.ZodOptional<z.ZodNumber>;
31735
31735
  error: z.ZodOptional<z.ZodString>;
31736
31736
  }, z.ZodUnknown, "strip"> | undefined;
31737
- html?: string | undefined;
31737
+ images?: string[] | undefined;
31738
+ summary?: string | undefined;
31738
31739
  actions?: Record<string, unknown> | undefined;
31739
- screenshot?: string | undefined;
31740
31740
  warning?: string | undefined;
31741
31741
  markdown?: string | undefined;
31742
31742
  rawHtml?: string | undefined;
@@ -32188,8 +32188,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32188
32188
  })[] | undefined;
32189
32189
  news?: ({
32190
32190
  json?: unknown;
32191
- images?: string[] | undefined;
32192
- summary?: string | undefined;
32191
+ html?: string | undefined;
32192
+ screenshot?: string | undefined;
32193
32193
  metadata?: z.objectOutputType<{
32194
32194
  title: z.ZodOptional<z.ZodString>;
32195
32195
  description: z.ZodOptional<z.ZodString>;
@@ -32233,9 +32233,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32233
32233
  creditsUsed: z.ZodOptional<z.ZodNumber>;
32234
32234
  error: z.ZodOptional<z.ZodString>;
32235
32235
  }, z.ZodUnknown, "strip"> | undefined;
32236
- html?: string | undefined;
32236
+ images?: string[] | undefined;
32237
+ summary?: string | undefined;
32237
32238
  actions?: Record<string, unknown> | undefined;
32238
- screenshot?: string | undefined;
32239
32239
  warning?: string | undefined;
32240
32240
  markdown?: string | undefined;
32241
32241
  rawHtml?: string | undefined;
@@ -32683,10 +32683,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32683
32683
  title?: string | undefined;
32684
32684
  date?: string | undefined;
32685
32685
  url?: string | undefined;
32686
- position?: number | undefined;
32687
32686
  snippet?: string | undefined;
32688
32687
  category?: string | undefined;
32689
32688
  imageUrl?: string | undefined;
32689
+ position?: number | undefined;
32690
32690
  })[] | undefined;
32691
32691
  other?: unknown[] | undefined;
32692
32692
  }, {
@@ -32695,8 +32695,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32695
32695
  error: string;
32696
32696
  images?: ({
32697
32697
  json?: unknown;
32698
- images?: string[] | undefined;
32699
- summary?: string | undefined;
32698
+ html?: string | undefined;
32699
+ screenshot?: string | undefined;
32700
32700
  metadata?: z.objectInputType<{
32701
32701
  title: z.ZodOptional<z.ZodString>;
32702
32702
  description: z.ZodOptional<z.ZodString>;
@@ -32740,9 +32740,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32740
32740
  creditsUsed: z.ZodOptional<z.ZodNumber>;
32741
32741
  error: z.ZodOptional<z.ZodString>;
32742
32742
  }, z.ZodUnknown, "strip"> | undefined;
32743
- html?: string | undefined;
32743
+ images?: string[] | undefined;
32744
+ summary?: string | undefined;
32744
32745
  actions?: Record<string, unknown> | undefined;
32745
- screenshot?: string | undefined;
32746
32746
  warning?: string | undefined;
32747
32747
  markdown?: string | undefined;
32748
32748
  rawHtml?: string | undefined;
@@ -33189,15 +33189,15 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
33189
33189
  } | {
33190
33190
  title?: string | undefined;
33191
33191
  url?: string | undefined;
33192
- position?: number | undefined;
33193
33192
  imageUrl?: string | undefined;
33193
+ position?: number | undefined;
33194
33194
  imageWidth?: number | undefined;
33195
33195
  imageHeight?: number | undefined;
33196
33196
  })[] | undefined;
33197
33197
  web?: ({
33198
33198
  json?: unknown;
33199
- images?: string[] | undefined;
33200
- summary?: string | undefined;
33199
+ html?: string | undefined;
33200
+ screenshot?: string | undefined;
33201
33201
  metadata?: z.objectInputType<{
33202
33202
  title: z.ZodOptional<z.ZodString>;
33203
33203
  description: z.ZodOptional<z.ZodString>;
@@ -33241,9 +33241,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
33241
33241
  creditsUsed: z.ZodOptional<z.ZodNumber>;
33242
33242
  error: z.ZodOptional<z.ZodString>;
33243
33243
  }, z.ZodUnknown, "strip"> | undefined;
33244
- html?: string | undefined;
33244
+ images?: string[] | undefined;
33245
+ summary?: string | undefined;
33245
33246
  actions?: Record<string, unknown> | undefined;
33246
- screenshot?: string | undefined;
33247
33247
  warning?: string | undefined;
33248
33248
  markdown?: string | undefined;
33249
33249
  rawHtml?: string | undefined;
@@ -33695,8 +33695,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
33695
33695
  })[] | undefined;
33696
33696
  news?: ({
33697
33697
  json?: unknown;
33698
- images?: string[] | undefined;
33699
- summary?: string | undefined;
33698
+ html?: string | undefined;
33699
+ screenshot?: string | undefined;
33700
33700
  metadata?: z.objectInputType<{
33701
33701
  title: z.ZodOptional<z.ZodString>;
33702
33702
  description: z.ZodOptional<z.ZodString>;
@@ -33740,9 +33740,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
33740
33740
  creditsUsed: z.ZodOptional<z.ZodNumber>;
33741
33741
  error: z.ZodOptional<z.ZodString>;
33742
33742
  }, z.ZodUnknown, "strip"> | undefined;
33743
- html?: string | undefined;
33743
+ images?: string[] | undefined;
33744
+ summary?: string | undefined;
33744
33745
  actions?: Record<string, unknown> | undefined;
33745
- screenshot?: string | undefined;
33746
33746
  warning?: string | undefined;
33747
33747
  markdown?: string | undefined;
33748
33748
  rawHtml?: string | undefined;
@@ -34190,10 +34190,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
34190
34190
  title?: string | undefined;
34191
34191
  date?: string | undefined;
34192
34192
  url?: string | undefined;
34193
- position?: number | undefined;
34194
34193
  snippet?: string | undefined;
34195
34194
  category?: string | undefined;
34196
34195
  imageUrl?: string | undefined;
34196
+ position?: number | undefined;
34197
34197
  })[] | undefined;
34198
34198
  other?: unknown[] | undefined;
34199
34199
  }>, z.ZodObject<{
@@ -35698,8 +35698,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
35698
35698
  }, z.ZodUnknown, "strip">>>;
35699
35699
  }, "strip", z.ZodTypeAny, {
35700
35700
  json?: unknown;
35701
- images?: string[] | undefined;
35702
- summary?: string | undefined;
35701
+ html?: string | undefined;
35702
+ screenshot?: string | undefined;
35703
35703
  metadata?: z.objectOutputType<{
35704
35704
  title: z.ZodOptional<z.ZodString>;
35705
35705
  description: z.ZodOptional<z.ZodString>;
@@ -35743,9 +35743,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
35743
35743
  creditsUsed: z.ZodOptional<z.ZodNumber>;
35744
35744
  error: z.ZodOptional<z.ZodString>;
35745
35745
  }, z.ZodUnknown, "strip"> | undefined;
35746
- html?: string | undefined;
35746
+ images?: string[] | undefined;
35747
+ summary?: string | undefined;
35747
35748
  actions?: Record<string, unknown> | undefined;
35748
- screenshot?: string | undefined;
35749
35749
  warning?: string | undefined;
35750
35750
  markdown?: string | undefined;
35751
35751
  rawHtml?: string | undefined;
@@ -36191,8 +36191,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36191
36191
  }, z.ZodUnknown, "strip"> | undefined;
36192
36192
  }, {
36193
36193
  json?: unknown;
36194
- images?: string[] | undefined;
36195
- summary?: string | undefined;
36194
+ html?: string | undefined;
36195
+ screenshot?: string | undefined;
36196
36196
  metadata?: z.objectInputType<{
36197
36197
  title: z.ZodOptional<z.ZodString>;
36198
36198
  description: z.ZodOptional<z.ZodString>;
@@ -36236,9 +36236,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36236
36236
  creditsUsed: z.ZodOptional<z.ZodNumber>;
36237
36237
  error: z.ZodOptional<z.ZodString>;
36238
36238
  }, z.ZodUnknown, "strip"> | undefined;
36239
- html?: string | undefined;
36239
+ images?: string[] | undefined;
36240
+ summary?: string | undefined;
36240
36241
  actions?: Record<string, unknown> | undefined;
36241
- screenshot?: string | undefined;
36242
36242
  warning?: string | undefined;
36243
36243
  markdown?: string | undefined;
36244
36244
  rawHtml?: string | undefined;
@@ -36690,8 +36690,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36690
36690
  error: string;
36691
36691
  data: {
36692
36692
  json?: unknown;
36693
- images?: string[] | undefined;
36694
- summary?: string | undefined;
36693
+ html?: string | undefined;
36694
+ screenshot?: string | undefined;
36695
36695
  metadata?: z.objectOutputType<{
36696
36696
  title: z.ZodOptional<z.ZodString>;
36697
36697
  description: z.ZodOptional<z.ZodString>;
@@ -36735,9 +36735,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36735
36735
  creditsUsed: z.ZodOptional<z.ZodNumber>;
36736
36736
  error: z.ZodOptional<z.ZodString>;
36737
36737
  }, z.ZodUnknown, "strip"> | undefined;
36738
- html?: string | undefined;
36738
+ images?: string[] | undefined;
36739
+ summary?: string | undefined;
36739
36740
  actions?: Record<string, unknown> | undefined;
36740
- screenshot?: string | undefined;
36741
36741
  warning?: string | undefined;
36742
36742
  markdown?: string | undefined;
36743
36743
  rawHtml?: string | undefined;
@@ -37193,8 +37193,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37193
37193
  error: string;
37194
37194
  data: {
37195
37195
  json?: unknown;
37196
- images?: string[] | undefined;
37197
- summary?: string | undefined;
37196
+ html?: string | undefined;
37197
+ screenshot?: string | undefined;
37198
37198
  metadata?: z.objectInputType<{
37199
37199
  title: z.ZodOptional<z.ZodString>;
37200
37200
  description: z.ZodOptional<z.ZodString>;
@@ -37238,9 +37238,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37238
37238
  creditsUsed: z.ZodOptional<z.ZodNumber>;
37239
37239
  error: z.ZodOptional<z.ZodString>;
37240
37240
  }, z.ZodUnknown, "strip"> | undefined;
37241
- html?: string | undefined;
37241
+ images?: string[] | undefined;
37242
+ summary?: string | undefined;
37242
37243
  actions?: Record<string, unknown> | undefined;
37243
- screenshot?: string | undefined;
37244
37244
  warning?: string | undefined;
37245
37245
  markdown?: string | undefined;
37246
37246
  rawHtml?: string | undefined;