@bubblelab/bubble-core 0.1.209 → 0.1.210

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 (40) hide show
  1. package/dist/bubble-bundle.d.ts +55 -55
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  5. package/dist/bubbles/service-bubble/ai-agent.js +53 -0
  6. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  7. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  8. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  11. package/dist/bubbles/service-bubble/capability-pipeline.js +1 -1
  12. package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
  13. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
  14. package/dist/bubbles/service-bubble/firecrawl.d.ts +176 -176
  15. package/dist/bubbles/service-bubble/github.d.ts +72 -72
  16. package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
  17. package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
  18. package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
  19. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  20. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  21. package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
  22. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
  23. package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
  24. package/dist/bubbles/service-bubble/slack/slack.d.ts +98 -98
  25. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
  26. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  27. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  28. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +8 -8
  29. package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
  30. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
  31. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  32. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  35. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
  36. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  37. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  38. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
  39. package/dist/bubbles.json +1 -1
  40. 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: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
13
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
14
14
  }, {
15
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
15
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
16
16
  }>, z.ZodObject<{
17
17
  type: z.ZodLiteral<"json">;
18
18
  prompt: z.ZodOptional<z.ZodString>;
@@ -253,8 +253,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
253
253
  url: string;
254
254
  timeout: number;
255
255
  operation: "scrape";
256
- formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
257
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
256
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
257
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
258
258
  } | {
259
259
  type: "json";
260
260
  schema?: any;
@@ -330,7 +330,6 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
330
330
  languages?: string[] | undefined;
331
331
  } | undefined;
332
332
  integration?: string | undefined;
333
- backoffFactor?: number | undefined;
334
333
  parsers?: (string | {
335
334
  type: "pdf";
336
335
  maxPages?: number | undefined;
@@ -342,6 +341,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
342
341
  blockAds?: boolean | undefined;
343
342
  proxy?: string | undefined;
344
343
  storeInCache?: boolean | undefined;
344
+ backoffFactor?: number | undefined;
345
345
  }, {
346
346
  url: string;
347
347
  operation: "scrape";
@@ -393,9 +393,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
393
393
  languages?: string[] | undefined;
394
394
  } | undefined;
395
395
  integration?: string | undefined;
396
- backoffFactor?: number | undefined;
397
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
398
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
396
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
397
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
399
398
  } | {
400
399
  type: "json";
401
400
  schema?: any;
@@ -435,6 +434,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
435
434
  proxy?: string | undefined;
436
435
  maxAge?: number | undefined;
437
436
  storeInCache?: boolean | undefined;
437
+ backoffFactor?: number | undefined;
438
438
  }>, z.ZodObject<{
439
439
  maxRetries: z.ZodOptional<z.ZodNumber>;
440
440
  backoffFactor: z.ZodOptional<z.ZodNumber>;
@@ -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: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
468
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
469
469
  }, {
470
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
470
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
471
471
  }>, z.ZodObject<{
472
472
  type: z.ZodLiteral<"json">;
473
473
  prompt: z.ZodOptional<z.ZodString>;
@@ -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: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
707
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
706
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
707
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
708
708
  } | {
709
709
  type: "json";
710
710
  schema?: any;
@@ -836,8 +836,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
836
836
  languages?: string[] | undefined;
837
837
  } | undefined;
838
838
  integration?: string | undefined;
839
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
840
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
839
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
840
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
841
841
  } | {
842
842
  type: "json";
843
843
  schema?: any;
@@ -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: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
903
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
902
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
903
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
904
904
  } | {
905
905
  type: "json";
906
906
  schema?: any;
@@ -1051,8 +1051,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1051
1051
  languages?: string[] | undefined;
1052
1052
  } | undefined;
1053
1053
  integration?: string | undefined;
1054
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
1055
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1054
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1055
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1056
1056
  } | {
1057
1057
  type: "json";
1058
1058
  schema?: any;
@@ -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: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1190
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1191
1191
  }, {
1192
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1192
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1193
1193
  }>, z.ZodObject<{
1194
1194
  type: z.ZodLiteral<"json">;
1195
1195
  prompt: z.ZodOptional<z.ZodString>;
@@ -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: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
1429
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1428
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1429
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1430
1430
  } | {
1431
1431
  type: "json";
1432
1432
  schema?: any;
@@ -1558,8 +1558,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1558
1558
  languages?: string[] | undefined;
1559
1559
  } | undefined;
1560
1560
  integration?: string | undefined;
1561
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
1562
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1561
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1562
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1563
1563
  } | {
1564
1564
  type: "json";
1565
1565
  schema?: any;
@@ -1623,8 +1623,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1623
1623
  backoffFactor?: number | undefined;
1624
1624
  scrapeOptions?: {
1625
1625
  timeout: number;
1626
- formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
1627
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1626
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1627
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1628
1628
  } | {
1629
1629
  type: "json";
1630
1630
  schema?: any;
@@ -1785,8 +1785,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1785
1785
  languages?: string[] | undefined;
1786
1786
  } | undefined;
1787
1787
  integration?: string | undefined;
1788
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
1789
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1788
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
1789
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1790
1790
  } | {
1791
1791
  type: "json";
1792
1792
  schema?: any;
@@ -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: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1858
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1859
1859
  }, {
1860
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
1860
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
1861
1861
  }>, z.ZodObject<{
1862
1862
  type: z.ZodLiteral<"json">;
1863
1863
  prompt: z.ZodOptional<z.ZodString>;
@@ -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: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
2097
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
2096
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2097
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2098
2098
  } | {
2099
2099
  type: "json";
2100
2100
  schema?: any;
@@ -2226,8 +2226,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2226
2226
  languages?: string[] | undefined;
2227
2227
  } | undefined;
2228
2228
  integration?: string | undefined;
2229
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
2230
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
2229
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2230
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2231
2231
  } | {
2232
2232
  type: "json";
2233
2233
  schema?: any;
@@ -2296,8 +2296,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2296
2296
  ignoreInvalidURLs?: boolean | undefined;
2297
2297
  scrapeOptions?: {
2298
2298
  timeout: number;
2299
- formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
2300
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
2299
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2300
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2301
2301
  } | {
2302
2302
  type: "json";
2303
2303
  schema?: any;
@@ -2449,8 +2449,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2449
2449
  languages?: string[] | undefined;
2450
2450
  } | undefined;
2451
2451
  integration?: string | undefined;
2452
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
2453
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
2452
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
2453
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
2454
2454
  } | {
2455
2455
  type: "json";
2456
2456
  schema?: any;
@@ -4003,15 +4003,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
4003
4003
  json?: unknown;
4004
4004
  actions?: Record<string, unknown> | undefined;
4005
4005
  screenshot?: string | undefined;
4006
+ warning?: string | undefined;
4006
4007
  markdown?: string | undefined;
4007
4008
  rawHtml?: string | undefined;
4008
4009
  links?: string[] | undefined;
4009
- changeTracking?: Record<string, unknown> | undefined;
4010
4010
  attributes?: {
4011
4011
  values: string[];
4012
4012
  attribute: string;
4013
4013
  selector: string;
4014
4014
  }[] | undefined;
4015
+ changeTracking?: Record<string, unknown> | undefined;
4015
4016
  branding?: z.objectOutputType<{
4016
4017
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
4017
4018
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4445,7 +4446,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
4445
4446
  targetAudience: string;
4446
4447
  }>>;
4447
4448
  }, z.ZodUnknown, "strip"> | undefined;
4448
- warning?: string | undefined;
4449
4449
  }, {
4450
4450
  error: string;
4451
4451
  success: boolean;
@@ -4499,15 +4499,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
4499
4499
  json?: unknown;
4500
4500
  actions?: Record<string, unknown> | undefined;
4501
4501
  screenshot?: string | undefined;
4502
+ warning?: string | undefined;
4502
4503
  markdown?: string | undefined;
4503
4504
  rawHtml?: string | undefined;
4504
4505
  links?: string[] | undefined;
4505
- changeTracking?: Record<string, unknown> | undefined;
4506
4506
  attributes?: {
4507
4507
  values: string[];
4508
4508
  attribute: string;
4509
4509
  selector: string;
4510
4510
  }[] | undefined;
4511
+ changeTracking?: Record<string, unknown> | undefined;
4511
4512
  branding?: z.objectInputType<{
4512
4513
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
4513
4514
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4941,7 +4942,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
4941
4942
  targetAudience: string;
4942
4943
  }>>;
4943
4944
  }, z.ZodUnknown, "strip"> | undefined;
4944
- warning?: string | undefined;
4945
4945
  }>, z.ZodObject<{
4946
4946
  success: z.ZodBoolean;
4947
4947
  error: z.ZodString;
@@ -6461,15 +6461,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
6461
6461
  json?: unknown;
6462
6462
  actions?: Record<string, unknown> | undefined;
6463
6463
  screenshot?: string | undefined;
6464
+ warning?: string | undefined;
6464
6465
  markdown?: string | undefined;
6465
6466
  rawHtml?: string | undefined;
6466
6467
  links?: string[] | undefined;
6467
- changeTracking?: Record<string, unknown> | undefined;
6468
6468
  attributes?: {
6469
6469
  values: string[];
6470
6470
  attribute: string;
6471
6471
  selector: string;
6472
6472
  }[] | undefined;
6473
+ changeTracking?: Record<string, unknown> | undefined;
6473
6474
  branding?: z.objectOutputType<{
6474
6475
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
6475
6476
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -6903,7 +6904,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
6903
6904
  targetAudience: string;
6904
6905
  }>>;
6905
6906
  }, z.ZodUnknown, "strip"> | undefined;
6906
- warning?: string | undefined;
6907
6907
  }, {
6908
6908
  images?: string[] | undefined;
6909
6909
  summary?: string | undefined;
@@ -6954,15 +6954,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
6954
6954
  json?: unknown;
6955
6955
  actions?: Record<string, unknown> | undefined;
6956
6956
  screenshot?: string | undefined;
6957
+ warning?: string | undefined;
6957
6958
  markdown?: string | undefined;
6958
6959
  rawHtml?: string | undefined;
6959
6960
  links?: string[] | undefined;
6960
- changeTracking?: Record<string, unknown> | undefined;
6961
6961
  attributes?: {
6962
6962
  values: string[];
6963
6963
  attribute: string;
6964
6964
  selector: string;
6965
6965
  }[] | undefined;
6966
+ changeTracking?: Record<string, unknown> | undefined;
6966
6967
  branding?: z.objectInputType<{
6967
6968
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
6968
6969
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7396,7 +7397,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
7396
7397
  targetAudience: string;
7397
7398
  }>>;
7398
7399
  }, z.ZodUnknown, "strip"> | undefined;
7399
- warning?: string | undefined;
7400
7400
  }>]>, "many">>;
7401
7401
  news: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
7402
7402
  title: z.ZodOptional<z.ZodString>;
@@ -7411,16 +7411,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
7411
7411
  date?: string | undefined;
7412
7412
  url?: string | undefined;
7413
7413
  snippet?: string | undefined;
7414
- position?: number | undefined;
7415
7414
  category?: string | undefined;
7415
+ position?: number | undefined;
7416
7416
  imageUrl?: string | undefined;
7417
7417
  }, {
7418
7418
  title?: string | undefined;
7419
7419
  date?: string | undefined;
7420
7420
  url?: string | undefined;
7421
7421
  snippet?: string | undefined;
7422
- position?: number | undefined;
7423
7422
  category?: string | undefined;
7423
+ position?: number | undefined;
7424
7424
  imageUrl?: string | undefined;
7425
7425
  }>, z.ZodObject<{
7426
7426
  markdown: z.ZodOptional<z.ZodString>;
@@ -8921,15 +8921,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
8921
8921
  json?: unknown;
8922
8922
  actions?: Record<string, unknown> | undefined;
8923
8923
  screenshot?: string | undefined;
8924
+ warning?: string | undefined;
8924
8925
  markdown?: string | undefined;
8925
8926
  rawHtml?: string | undefined;
8926
8927
  links?: string[] | undefined;
8927
- changeTracking?: Record<string, unknown> | undefined;
8928
8928
  attributes?: {
8929
8929
  values: string[];
8930
8930
  attribute: string;
8931
8931
  selector: string;
8932
8932
  }[] | undefined;
8933
+ changeTracking?: Record<string, unknown> | undefined;
8933
8934
  branding?: z.objectOutputType<{
8934
8935
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
8935
8936
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9363,7 +9364,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
9363
9364
  targetAudience: string;
9364
9365
  }>>;
9365
9366
  }, z.ZodUnknown, "strip"> | undefined;
9366
- warning?: string | undefined;
9367
9367
  }, {
9368
9368
  images?: string[] | undefined;
9369
9369
  summary?: string | undefined;
@@ -9414,15 +9414,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
9414
9414
  json?: unknown;
9415
9415
  actions?: Record<string, unknown> | undefined;
9416
9416
  screenshot?: string | undefined;
9417
+ warning?: string | undefined;
9417
9418
  markdown?: string | undefined;
9418
9419
  rawHtml?: string | undefined;
9419
9420
  links?: string[] | undefined;
9420
- changeTracking?: Record<string, unknown> | undefined;
9421
9421
  attributes?: {
9422
9422
  values: string[];
9423
9423
  attribute: string;
9424
9424
  selector: string;
9425
9425
  }[] | undefined;
9426
+ changeTracking?: Record<string, unknown> | undefined;
9426
9427
  branding?: z.objectInputType<{
9427
9428
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
9428
9429
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9856,7 +9857,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
9856
9857
  targetAudience: string;
9857
9858
  }>>;
9858
9859
  }, z.ZodUnknown, "strip"> | undefined;
9859
- warning?: string | undefined;
9860
9860
  }>]>, "many">>;
9861
9861
  images: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
9862
9862
  title: z.ZodOptional<z.ZodString>;
@@ -11378,15 +11378,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
11378
11378
  json?: unknown;
11379
11379
  actions?: Record<string, unknown> | undefined;
11380
11380
  screenshot?: string | undefined;
11381
+ warning?: string | undefined;
11381
11382
  markdown?: string | undefined;
11382
11383
  rawHtml?: string | undefined;
11383
11384
  links?: string[] | undefined;
11384
- changeTracking?: Record<string, unknown> | undefined;
11385
11385
  attributes?: {
11386
11386
  values: string[];
11387
11387
  attribute: string;
11388
11388
  selector: string;
11389
11389
  }[] | undefined;
11390
+ changeTracking?: Record<string, unknown> | undefined;
11390
11391
  branding?: z.objectOutputType<{
11391
11392
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
11392
11393
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -11820,7 +11821,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
11820
11821
  targetAudience: string;
11821
11822
  }>>;
11822
11823
  }, z.ZodUnknown, "strip"> | undefined;
11823
- warning?: string | undefined;
11824
11824
  }, {
11825
11825
  images?: string[] | undefined;
11826
11826
  summary?: string | undefined;
@@ -11871,15 +11871,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
11871
11871
  json?: unknown;
11872
11872
  actions?: Record<string, unknown> | undefined;
11873
11873
  screenshot?: string | undefined;
11874
+ warning?: string | undefined;
11874
11875
  markdown?: string | undefined;
11875
11876
  rawHtml?: string | undefined;
11876
11877
  links?: string[] | undefined;
11877
- changeTracking?: Record<string, unknown> | undefined;
11878
11878
  attributes?: {
11879
11879
  values: string[];
11880
11880
  attribute: string;
11881
11881
  selector: string;
11882
11882
  }[] | undefined;
11883
+ changeTracking?: Record<string, unknown> | undefined;
11883
11884
  branding?: z.objectInputType<{
11884
11885
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
11885
11886
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -12313,7 +12314,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12313
12314
  targetAudience: string;
12314
12315
  }>>;
12315
12316
  }, z.ZodUnknown, "strip"> | undefined;
12316
- warning?: string | undefined;
12317
12317
  }>]>, "many">>;
12318
12318
  other: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
12319
12319
  }, "strip", z.ZodTypeAny, {
@@ -12370,15 +12370,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12370
12370
  json?: unknown;
12371
12371
  actions?: Record<string, unknown> | undefined;
12372
12372
  screenshot?: string | undefined;
12373
+ warning?: string | undefined;
12373
12374
  markdown?: string | undefined;
12374
12375
  rawHtml?: string | undefined;
12375
12376
  links?: string[] | undefined;
12376
- changeTracking?: Record<string, unknown> | undefined;
12377
12377
  attributes?: {
12378
12378
  values: string[];
12379
12379
  attribute: string;
12380
12380
  selector: string;
12381
12381
  }[] | undefined;
12382
+ changeTracking?: Record<string, unknown> | undefined;
12382
12383
  branding?: z.objectOutputType<{
12383
12384
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
12384
12385
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -12812,7 +12813,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12812
12813
  targetAudience: string;
12813
12814
  }>>;
12814
12815
  }, z.ZodUnknown, "strip"> | undefined;
12815
- warning?: string | undefined;
12816
12816
  } | {
12817
12817
  title?: string | undefined;
12818
12818
  url?: string | undefined;
@@ -12871,15 +12871,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12871
12871
  json?: unknown;
12872
12872
  actions?: Record<string, unknown> | undefined;
12873
12873
  screenshot?: string | undefined;
12874
+ warning?: string | undefined;
12874
12875
  markdown?: string | undefined;
12875
12876
  rawHtml?: string | undefined;
12876
12877
  links?: string[] | undefined;
12877
- changeTracking?: Record<string, unknown> | undefined;
12878
12878
  attributes?: {
12879
12879
  values: string[];
12880
12880
  attribute: string;
12881
12881
  selector: string;
12882
12882
  }[] | undefined;
12883
+ changeTracking?: Record<string, unknown> | undefined;
12883
12884
  branding?: z.objectOutputType<{
12884
12885
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
12885
12886
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -13313,7 +13314,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13313
13314
  targetAudience: string;
13314
13315
  }>>;
13315
13316
  }, z.ZodUnknown, "strip"> | undefined;
13316
- warning?: string | undefined;
13317
13317
  } | {
13318
13318
  url: string;
13319
13319
  description?: string | undefined;
@@ -13370,15 +13370,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13370
13370
  json?: unknown;
13371
13371
  actions?: Record<string, unknown> | undefined;
13372
13372
  screenshot?: string | undefined;
13373
+ warning?: string | undefined;
13373
13374
  markdown?: string | undefined;
13374
13375
  rawHtml?: string | undefined;
13375
13376
  links?: string[] | undefined;
13376
- changeTracking?: Record<string, unknown> | undefined;
13377
13377
  attributes?: {
13378
13378
  values: string[];
13379
13379
  attribute: string;
13380
13380
  selector: string;
13381
13381
  }[] | undefined;
13382
+ changeTracking?: Record<string, unknown> | undefined;
13382
13383
  branding?: z.objectOutputType<{
13383
13384
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
13384
13385
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -13812,14 +13813,13 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13812
13813
  targetAudience: string;
13813
13814
  }>>;
13814
13815
  }, z.ZodUnknown, "strip"> | undefined;
13815
- warning?: string | undefined;
13816
13816
  } | {
13817
13817
  title?: string | undefined;
13818
13818
  date?: string | undefined;
13819
13819
  url?: string | undefined;
13820
13820
  snippet?: string | undefined;
13821
- position?: number | undefined;
13822
13821
  category?: string | undefined;
13822
+ position?: number | undefined;
13823
13823
  imageUrl?: string | undefined;
13824
13824
  })[] | undefined;
13825
13825
  other?: unknown[] | undefined;
@@ -13877,15 +13877,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13877
13877
  json?: unknown;
13878
13878
  actions?: Record<string, unknown> | undefined;
13879
13879
  screenshot?: string | undefined;
13880
+ warning?: string | undefined;
13880
13881
  markdown?: string | undefined;
13881
13882
  rawHtml?: string | undefined;
13882
13883
  links?: string[] | undefined;
13883
- changeTracking?: Record<string, unknown> | undefined;
13884
13884
  attributes?: {
13885
13885
  values: string[];
13886
13886
  attribute: string;
13887
13887
  selector: string;
13888
13888
  }[] | undefined;
13889
+ changeTracking?: Record<string, unknown> | undefined;
13889
13890
  branding?: z.objectInputType<{
13890
13891
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
13891
13892
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -14319,7 +14320,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
14319
14320
  targetAudience: string;
14320
14321
  }>>;
14321
14322
  }, z.ZodUnknown, "strip"> | undefined;
14322
- warning?: string | undefined;
14323
14323
  } | {
14324
14324
  title?: string | undefined;
14325
14325
  url?: string | undefined;
@@ -14378,15 +14378,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
14378
14378
  json?: unknown;
14379
14379
  actions?: Record<string, unknown> | undefined;
14380
14380
  screenshot?: string | undefined;
14381
+ warning?: string | undefined;
14381
14382
  markdown?: string | undefined;
14382
14383
  rawHtml?: string | undefined;
14383
14384
  links?: string[] | undefined;
14384
- changeTracking?: Record<string, unknown> | undefined;
14385
14385
  attributes?: {
14386
14386
  values: string[];
14387
14387
  attribute: string;
14388
14388
  selector: string;
14389
14389
  }[] | undefined;
14390
+ changeTracking?: Record<string, unknown> | undefined;
14390
14391
  branding?: z.objectInputType<{
14391
14392
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
14392
14393
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -14820,7 +14821,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
14820
14821
  targetAudience: string;
14821
14822
  }>>;
14822
14823
  }, z.ZodUnknown, "strip"> | undefined;
14823
- warning?: string | undefined;
14824
14824
  } | {
14825
14825
  url: string;
14826
14826
  description?: string | undefined;
@@ -14877,15 +14877,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
14877
14877
  json?: unknown;
14878
14878
  actions?: Record<string, unknown> | undefined;
14879
14879
  screenshot?: string | undefined;
14880
+ warning?: string | undefined;
14880
14881
  markdown?: string | undefined;
14881
14882
  rawHtml?: string | undefined;
14882
14883
  links?: string[] | undefined;
14883
- changeTracking?: Record<string, unknown> | undefined;
14884
14884
  attributes?: {
14885
14885
  values: string[];
14886
14886
  attribute: string;
14887
14887
  selector: string;
14888
14888
  }[] | undefined;
14889
+ changeTracking?: Record<string, unknown> | undefined;
14889
14890
  branding?: z.objectInputType<{
14890
14891
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
14891
14892
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -15319,14 +15320,13 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
15319
15320
  targetAudience: string;
15320
15321
  }>>;
15321
15322
  }, z.ZodUnknown, "strip"> | undefined;
15322
- warning?: string | undefined;
15323
15323
  } | {
15324
15324
  title?: string | undefined;
15325
15325
  date?: string | undefined;
15326
15326
  url?: string | undefined;
15327
15327
  snippet?: string | undefined;
15328
- position?: number | undefined;
15329
15328
  category?: string | undefined;
15329
+ position?: number | undefined;
15330
15330
  imageUrl?: string | undefined;
15331
15331
  })[] | undefined;
15332
15332
  other?: unknown[] | undefined;
@@ -16880,15 +16880,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
16880
16880
  json?: unknown;
16881
16881
  actions?: Record<string, unknown> | undefined;
16882
16882
  screenshot?: string | undefined;
16883
+ warning?: string | undefined;
16883
16884
  markdown?: string | undefined;
16884
16885
  rawHtml?: string | undefined;
16885
16886
  links?: string[] | undefined;
16886
- changeTracking?: Record<string, unknown> | undefined;
16887
16887
  attributes?: {
16888
16888
  values: string[];
16889
16889
  attribute: string;
16890
16890
  selector: string;
16891
16891
  }[] | undefined;
16892
+ changeTracking?: Record<string, unknown> | undefined;
16892
16893
  branding?: z.objectOutputType<{
16893
16894
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
16894
16895
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -17322,7 +17323,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17322
17323
  targetAudience: string;
17323
17324
  }>>;
17324
17325
  }, z.ZodUnknown, "strip"> | undefined;
17325
- warning?: string | undefined;
17326
17326
  }, {
17327
17327
  images?: string[] | undefined;
17328
17328
  summary?: string | undefined;
@@ -17373,15 +17373,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17373
17373
  json?: unknown;
17374
17374
  actions?: Record<string, unknown> | undefined;
17375
17375
  screenshot?: string | undefined;
17376
+ warning?: string | undefined;
17376
17377
  markdown?: string | undefined;
17377
17378
  rawHtml?: string | undefined;
17378
17379
  links?: string[] | undefined;
17379
- changeTracking?: Record<string, unknown> | undefined;
17380
17380
  attributes?: {
17381
17381
  values: string[];
17382
17382
  attribute: string;
17383
17383
  selector: string;
17384
17384
  }[] | undefined;
17385
+ changeTracking?: Record<string, unknown> | undefined;
17385
17386
  branding?: z.objectInputType<{
17386
17387
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
17387
17388
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -17815,12 +17816,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17815
17816
  targetAudience: string;
17816
17817
  }>>;
17817
17818
  }, z.ZodUnknown, "strip"> | undefined;
17818
- warning?: string | undefined;
17819
17819
  }>, "many">;
17820
17820
  }, "strip", z.ZodTypeAny, {
17821
- status: "failed" | "completed" | "scraping" | "cancelled";
17822
- error: string;
17823
- success: boolean;
17824
17821
  data: {
17825
17822
  images?: string[] | undefined;
17826
17823
  summary?: string | undefined;
@@ -17871,15 +17868,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17871
17868
  json?: unknown;
17872
17869
  actions?: Record<string, unknown> | undefined;
17873
17870
  screenshot?: string | undefined;
17871
+ warning?: string | undefined;
17874
17872
  markdown?: string | undefined;
17875
17873
  rawHtml?: string | undefined;
17876
17874
  links?: string[] | undefined;
17877
- changeTracking?: Record<string, unknown> | undefined;
17878
17875
  attributes?: {
17879
17876
  values: string[];
17880
17877
  attribute: string;
17881
17878
  selector: string;
17882
17879
  }[] | undefined;
17880
+ changeTracking?: Record<string, unknown> | undefined;
17883
17881
  branding?: z.objectOutputType<{
17884
17882
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
17885
17883
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -18313,17 +18311,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18313
18311
  targetAudience: string;
18314
18312
  }>>;
18315
18313
  }, z.ZodUnknown, "strip"> | undefined;
18316
- warning?: string | undefined;
18317
18314
  }[];
18315
+ status: "failed" | "completed" | "scraping" | "cancelled";
18316
+ error: string;
18317
+ success: boolean;
18318
18318
  operation: "crawl";
18319
18319
  completed: number;
18320
18320
  total: number;
18321
18321
  creditsUsed?: number | undefined;
18322
18322
  expiresAt?: string | undefined;
18323
18323
  }, {
18324
- status: "failed" | "completed" | "scraping" | "cancelled";
18325
- error: string;
18326
- success: boolean;
18327
18324
  data: {
18328
18325
  images?: string[] | undefined;
18329
18326
  summary?: string | undefined;
@@ -18374,15 +18371,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18374
18371
  json?: unknown;
18375
18372
  actions?: Record<string, unknown> | undefined;
18376
18373
  screenshot?: string | undefined;
18374
+ warning?: string | undefined;
18377
18375
  markdown?: string | undefined;
18378
18376
  rawHtml?: string | undefined;
18379
18377
  links?: string[] | undefined;
18380
- changeTracking?: Record<string, unknown> | undefined;
18381
18378
  attributes?: {
18382
18379
  values: string[];
18383
18380
  attribute: string;
18384
18381
  selector: string;
18385
18382
  }[] | undefined;
18383
+ changeTracking?: Record<string, unknown> | undefined;
18386
18384
  branding?: z.objectInputType<{
18387
18385
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
18388
18386
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -18816,8 +18814,10 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18816
18814
  targetAudience: string;
18817
18815
  }>>;
18818
18816
  }, z.ZodUnknown, "strip"> | undefined;
18819
- warning?: string | undefined;
18820
18817
  }[];
18818
+ status: "failed" | "completed" | "scraping" | "cancelled";
18819
+ error: string;
18820
+ success: boolean;
18821
18821
  operation: "crawl";
18822
18822
  completed: number;
18823
18823
  total: number;
@@ -18838,21 +18838,21 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18838
18838
  error: string;
18839
18839
  success: boolean;
18840
18840
  operation: "extract";
18841
- status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
18842
18841
  data?: unknown;
18842
+ status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
18843
18843
  id?: string | undefined;
18844
- sources?: Record<string, unknown> | undefined;
18845
18844
  warning?: string | undefined;
18845
+ sources?: Record<string, unknown> | undefined;
18846
18846
  expiresAt?: string | undefined;
18847
18847
  }, {
18848
18848
  error: string;
18849
18849
  success: boolean;
18850
18850
  operation: "extract";
18851
- status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
18852
18851
  data?: unknown;
18852
+ status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
18853
18853
  id?: string | undefined;
18854
- sources?: Record<string, unknown> | undefined;
18855
18854
  warning?: string | undefined;
18855
+ sources?: Record<string, unknown> | undefined;
18856
18856
  expiresAt?: string | undefined;
18857
18857
  }>]>;
18858
18858
  type FirecrawlParams = z.input<typeof FirecrawlParamsSchema>;
@@ -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: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
18879
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
18880
18880
  }, {
18881
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
18881
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
18882
18882
  }>, z.ZodObject<{
18883
18883
  type: z.ZodLiteral<"json">;
18884
18884
  prompt: z.ZodOptional<z.ZodString>;
@@ -19119,8 +19119,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19119
19119
  url: string;
19120
19120
  timeout: number;
19121
19121
  operation: "scrape";
19122
- formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
19123
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
19122
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19123
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19124
19124
  } | {
19125
19125
  type: "json";
19126
19126
  schema?: any;
@@ -19196,7 +19196,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19196
19196
  languages?: string[] | undefined;
19197
19197
  } | undefined;
19198
19198
  integration?: string | undefined;
19199
- backoffFactor?: number | undefined;
19200
19199
  parsers?: (string | {
19201
19200
  type: "pdf";
19202
19201
  maxPages?: number | undefined;
@@ -19208,6 +19207,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19208
19207
  blockAds?: boolean | undefined;
19209
19208
  proxy?: string | undefined;
19210
19209
  storeInCache?: boolean | undefined;
19210
+ backoffFactor?: number | undefined;
19211
19211
  }, {
19212
19212
  url: string;
19213
19213
  operation: "scrape";
@@ -19259,9 +19259,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19259
19259
  languages?: string[] | undefined;
19260
19260
  } | undefined;
19261
19261
  integration?: string | undefined;
19262
- backoffFactor?: number | undefined;
19263
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
19264
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
19262
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19263
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19265
19264
  } | {
19266
19265
  type: "json";
19267
19266
  schema?: any;
@@ -19301,6 +19300,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19301
19300
  proxy?: string | undefined;
19302
19301
  maxAge?: number | undefined;
19303
19302
  storeInCache?: boolean | undefined;
19303
+ backoffFactor?: number | undefined;
19304
19304
  }>, z.ZodObject<{
19305
19305
  maxRetries: z.ZodOptional<z.ZodNumber>;
19306
19306
  backoffFactor: z.ZodOptional<z.ZodNumber>;
@@ -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: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
19334
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19335
19335
  }, {
19336
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
19336
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19337
19337
  }>, z.ZodObject<{
19338
19338
  type: z.ZodLiteral<"json">;
19339
19339
  prompt: z.ZodOptional<z.ZodString>;
@@ -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: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
19573
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
19572
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19573
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19574
19574
  } | {
19575
19575
  type: "json";
19576
19576
  schema?: any;
@@ -19702,8 +19702,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19702
19702
  languages?: string[] | undefined;
19703
19703
  } | undefined;
19704
19704
  integration?: string | undefined;
19705
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
19706
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
19705
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19706
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19707
19707
  } | {
19708
19708
  type: "json";
19709
19709
  schema?: any;
@@ -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: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
19769
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
19768
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19769
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19770
19770
  } | {
19771
19771
  type: "json";
19772
19772
  schema?: any;
@@ -19917,8 +19917,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19917
19917
  languages?: string[] | undefined;
19918
19918
  } | undefined;
19919
19919
  integration?: string | undefined;
19920
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
19921
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
19920
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19921
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19922
19922
  } | {
19923
19923
  type: "json";
19924
19924
  schema?: any;
@@ -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: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20056
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20057
20057
  }, {
20058
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20058
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20059
20059
  }>, z.ZodObject<{
20060
20060
  type: z.ZodLiteral<"json">;
20061
20061
  prompt: z.ZodOptional<z.ZodString>;
@@ -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: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
20295
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20294
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20295
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20296
20296
  } | {
20297
20297
  type: "json";
20298
20298
  schema?: any;
@@ -20424,8 +20424,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20424
20424
  languages?: string[] | undefined;
20425
20425
  } | undefined;
20426
20426
  integration?: string | undefined;
20427
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
20428
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20427
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20428
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20429
20429
  } | {
20430
20430
  type: "json";
20431
20431
  schema?: any;
@@ -20489,8 +20489,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20489
20489
  backoffFactor?: number | undefined;
20490
20490
  scrapeOptions?: {
20491
20491
  timeout: number;
20492
- formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
20493
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20492
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20493
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20494
20494
  } | {
20495
20495
  type: "json";
20496
20496
  schema?: any;
@@ -20651,8 +20651,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20651
20651
  languages?: string[] | undefined;
20652
20652
  } | undefined;
20653
20653
  integration?: string | undefined;
20654
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
20655
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20654
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20655
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20656
20656
  } | {
20657
20657
  type: "json";
20658
20658
  schema?: any;
@@ -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: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20724
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20725
20725
  }, {
20726
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20726
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20727
20727
  }>, z.ZodObject<{
20728
20728
  type: z.ZodLiteral<"json">;
20729
20729
  prompt: z.ZodOptional<z.ZodString>;
@@ -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: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
20963
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
20962
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
20963
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
20964
20964
  } | {
20965
20965
  type: "json";
20966
20966
  schema?: any;
@@ -21092,8 +21092,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21092
21092
  languages?: string[] | undefined;
21093
21093
  } | undefined;
21094
21094
  integration?: string | undefined;
21095
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
21096
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
21095
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21096
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21097
21097
  } | {
21098
21098
  type: "json";
21099
21099
  schema?: any;
@@ -21162,8 +21162,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21162
21162
  ignoreInvalidURLs?: boolean | undefined;
21163
21163
  scrapeOptions?: {
21164
21164
  timeout: number;
21165
- formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
21166
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
21165
+ formats: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21166
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21167
21167
  } | {
21168
21168
  type: "json";
21169
21169
  schema?: any;
@@ -21315,8 +21315,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21315
21315
  languages?: string[] | undefined;
21316
21316
  } | undefined;
21317
21317
  integration?: string | undefined;
21318
- formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
21319
- type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding";
21318
+ formats?: ("images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
21319
+ type: "images" | "summary" | "html" | "json" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
21320
21320
  } | {
21321
21321
  type: "json";
21322
21322
  schema?: any;
@@ -22869,15 +22869,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
22869
22869
  json?: unknown;
22870
22870
  actions?: Record<string, unknown> | undefined;
22871
22871
  screenshot?: string | undefined;
22872
+ warning?: string | undefined;
22872
22873
  markdown?: string | undefined;
22873
22874
  rawHtml?: string | undefined;
22874
22875
  links?: string[] | undefined;
22875
- changeTracking?: Record<string, unknown> | undefined;
22876
22876
  attributes?: {
22877
22877
  values: string[];
22878
22878
  attribute: string;
22879
22879
  selector: string;
22880
22880
  }[] | undefined;
22881
+ changeTracking?: Record<string, unknown> | undefined;
22881
22882
  branding?: z.objectOutputType<{
22882
22883
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
22883
22884
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -23311,7 +23312,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
23311
23312
  targetAudience: string;
23312
23313
  }>>;
23313
23314
  }, z.ZodUnknown, "strip"> | undefined;
23314
- warning?: string | undefined;
23315
23315
  }, {
23316
23316
  error: string;
23317
23317
  success: boolean;
@@ -23365,15 +23365,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
23365
23365
  json?: unknown;
23366
23366
  actions?: Record<string, unknown> | undefined;
23367
23367
  screenshot?: string | undefined;
23368
+ warning?: string | undefined;
23368
23369
  markdown?: string | undefined;
23369
23370
  rawHtml?: string | undefined;
23370
23371
  links?: string[] | undefined;
23371
- changeTracking?: Record<string, unknown> | undefined;
23372
23372
  attributes?: {
23373
23373
  values: string[];
23374
23374
  attribute: string;
23375
23375
  selector: string;
23376
23376
  }[] | undefined;
23377
+ changeTracking?: Record<string, unknown> | undefined;
23377
23378
  branding?: z.objectInputType<{
23378
23379
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
23379
23380
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -23807,7 +23808,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
23807
23808
  targetAudience: string;
23808
23809
  }>>;
23809
23810
  }, z.ZodUnknown, "strip"> | undefined;
23810
- warning?: string | undefined;
23811
23811
  }>, z.ZodObject<{
23812
23812
  success: z.ZodBoolean;
23813
23813
  error: z.ZodString;
@@ -25327,15 +25327,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
25327
25327
  json?: unknown;
25328
25328
  actions?: Record<string, unknown> | undefined;
25329
25329
  screenshot?: string | undefined;
25330
+ warning?: string | undefined;
25330
25331
  markdown?: string | undefined;
25331
25332
  rawHtml?: string | undefined;
25332
25333
  links?: string[] | undefined;
25333
- changeTracking?: Record<string, unknown> | undefined;
25334
25334
  attributes?: {
25335
25335
  values: string[];
25336
25336
  attribute: string;
25337
25337
  selector: string;
25338
25338
  }[] | undefined;
25339
+ changeTracking?: Record<string, unknown> | undefined;
25339
25340
  branding?: z.objectOutputType<{
25340
25341
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
25341
25342
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -25769,7 +25770,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
25769
25770
  targetAudience: string;
25770
25771
  }>>;
25771
25772
  }, z.ZodUnknown, "strip"> | undefined;
25772
- warning?: string | undefined;
25773
25773
  }, {
25774
25774
  images?: string[] | undefined;
25775
25775
  summary?: string | undefined;
@@ -25820,15 +25820,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
25820
25820
  json?: unknown;
25821
25821
  actions?: Record<string, unknown> | undefined;
25822
25822
  screenshot?: string | undefined;
25823
+ warning?: string | undefined;
25823
25824
  markdown?: string | undefined;
25824
25825
  rawHtml?: string | undefined;
25825
25826
  links?: string[] | undefined;
25826
- changeTracking?: Record<string, unknown> | undefined;
25827
25827
  attributes?: {
25828
25828
  values: string[];
25829
25829
  attribute: string;
25830
25830
  selector: string;
25831
25831
  }[] | undefined;
25832
+ changeTracking?: Record<string, unknown> | undefined;
25832
25833
  branding?: z.objectInputType<{
25833
25834
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
25834
25835
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -26262,7 +26263,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
26262
26263
  targetAudience: string;
26263
26264
  }>>;
26264
26265
  }, z.ZodUnknown, "strip"> | undefined;
26265
- warning?: string | undefined;
26266
26266
  }>]>, "many">>;
26267
26267
  news: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
26268
26268
  title: z.ZodOptional<z.ZodString>;
@@ -26277,16 +26277,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
26277
26277
  date?: string | undefined;
26278
26278
  url?: string | undefined;
26279
26279
  snippet?: string | undefined;
26280
- position?: number | undefined;
26281
26280
  category?: string | undefined;
26281
+ position?: number | undefined;
26282
26282
  imageUrl?: string | undefined;
26283
26283
  }, {
26284
26284
  title?: string | undefined;
26285
26285
  date?: string | undefined;
26286
26286
  url?: string | undefined;
26287
26287
  snippet?: string | undefined;
26288
- position?: number | undefined;
26289
26288
  category?: string | undefined;
26289
+ position?: number | undefined;
26290
26290
  imageUrl?: string | undefined;
26291
26291
  }>, z.ZodObject<{
26292
26292
  markdown: z.ZodOptional<z.ZodString>;
@@ -27787,15 +27787,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
27787
27787
  json?: unknown;
27788
27788
  actions?: Record<string, unknown> | undefined;
27789
27789
  screenshot?: string | undefined;
27790
+ warning?: string | undefined;
27790
27791
  markdown?: string | undefined;
27791
27792
  rawHtml?: string | undefined;
27792
27793
  links?: string[] | undefined;
27793
- changeTracking?: Record<string, unknown> | undefined;
27794
27794
  attributes?: {
27795
27795
  values: string[];
27796
27796
  attribute: string;
27797
27797
  selector: string;
27798
27798
  }[] | undefined;
27799
+ changeTracking?: Record<string, unknown> | undefined;
27799
27800
  branding?: z.objectOutputType<{
27800
27801
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
27801
27802
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -28229,7 +28230,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
28229
28230
  targetAudience: string;
28230
28231
  }>>;
28231
28232
  }, z.ZodUnknown, "strip"> | undefined;
28232
- warning?: string | undefined;
28233
28233
  }, {
28234
28234
  images?: string[] | undefined;
28235
28235
  summary?: string | undefined;
@@ -28280,15 +28280,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
28280
28280
  json?: unknown;
28281
28281
  actions?: Record<string, unknown> | undefined;
28282
28282
  screenshot?: string | undefined;
28283
+ warning?: string | undefined;
28283
28284
  markdown?: string | undefined;
28284
28285
  rawHtml?: string | undefined;
28285
28286
  links?: string[] | undefined;
28286
- changeTracking?: Record<string, unknown> | undefined;
28287
28287
  attributes?: {
28288
28288
  values: string[];
28289
28289
  attribute: string;
28290
28290
  selector: string;
28291
28291
  }[] | undefined;
28292
+ changeTracking?: Record<string, unknown> | undefined;
28292
28293
  branding?: z.objectInputType<{
28293
28294
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
28294
28295
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -28722,7 +28723,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
28722
28723
  targetAudience: string;
28723
28724
  }>>;
28724
28725
  }, z.ZodUnknown, "strip"> | undefined;
28725
- warning?: string | undefined;
28726
28726
  }>]>, "many">>;
28727
28727
  images: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
28728
28728
  title: z.ZodOptional<z.ZodString>;
@@ -30244,15 +30244,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
30244
30244
  json?: unknown;
30245
30245
  actions?: Record<string, unknown> | undefined;
30246
30246
  screenshot?: string | undefined;
30247
+ warning?: string | undefined;
30247
30248
  markdown?: string | undefined;
30248
30249
  rawHtml?: string | undefined;
30249
30250
  links?: string[] | undefined;
30250
- changeTracking?: Record<string, unknown> | undefined;
30251
30251
  attributes?: {
30252
30252
  values: string[];
30253
30253
  attribute: string;
30254
30254
  selector: string;
30255
30255
  }[] | undefined;
30256
+ changeTracking?: Record<string, unknown> | undefined;
30256
30257
  branding?: z.objectOutputType<{
30257
30258
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
30258
30259
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -30686,7 +30687,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
30686
30687
  targetAudience: string;
30687
30688
  }>>;
30688
30689
  }, z.ZodUnknown, "strip"> | undefined;
30689
- warning?: string | undefined;
30690
30690
  }, {
30691
30691
  images?: string[] | undefined;
30692
30692
  summary?: string | undefined;
@@ -30737,15 +30737,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
30737
30737
  json?: unknown;
30738
30738
  actions?: Record<string, unknown> | undefined;
30739
30739
  screenshot?: string | undefined;
30740
+ warning?: string | undefined;
30740
30741
  markdown?: string | undefined;
30741
30742
  rawHtml?: string | undefined;
30742
30743
  links?: string[] | undefined;
30743
- changeTracking?: Record<string, unknown> | undefined;
30744
30744
  attributes?: {
30745
30745
  values: string[];
30746
30746
  attribute: string;
30747
30747
  selector: string;
30748
30748
  }[] | undefined;
30749
+ changeTracking?: Record<string, unknown> | undefined;
30749
30750
  branding?: z.objectInputType<{
30750
30751
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
30751
30752
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -31179,7 +31180,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31179
31180
  targetAudience: string;
31180
31181
  }>>;
31181
31182
  }, z.ZodUnknown, "strip"> | undefined;
31182
- warning?: string | undefined;
31183
31183
  }>]>, "many">>;
31184
31184
  other: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
31185
31185
  }, "strip", z.ZodTypeAny, {
@@ -31236,15 +31236,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31236
31236
  json?: unknown;
31237
31237
  actions?: Record<string, unknown> | undefined;
31238
31238
  screenshot?: string | undefined;
31239
+ warning?: string | undefined;
31239
31240
  markdown?: string | undefined;
31240
31241
  rawHtml?: string | undefined;
31241
31242
  links?: string[] | undefined;
31242
- changeTracking?: Record<string, unknown> | undefined;
31243
31243
  attributes?: {
31244
31244
  values: string[];
31245
31245
  attribute: string;
31246
31246
  selector: string;
31247
31247
  }[] | undefined;
31248
+ changeTracking?: Record<string, unknown> | undefined;
31248
31249
  branding?: z.objectOutputType<{
31249
31250
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
31250
31251
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -31678,7 +31679,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31678
31679
  targetAudience: string;
31679
31680
  }>>;
31680
31681
  }, z.ZodUnknown, "strip"> | undefined;
31681
- warning?: string | undefined;
31682
31682
  } | {
31683
31683
  title?: string | undefined;
31684
31684
  url?: string | undefined;
@@ -31737,15 +31737,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31737
31737
  json?: unknown;
31738
31738
  actions?: Record<string, unknown> | undefined;
31739
31739
  screenshot?: string | undefined;
31740
+ warning?: string | undefined;
31740
31741
  markdown?: string | undefined;
31741
31742
  rawHtml?: string | undefined;
31742
31743
  links?: string[] | undefined;
31743
- changeTracking?: Record<string, unknown> | undefined;
31744
31744
  attributes?: {
31745
31745
  values: string[];
31746
31746
  attribute: string;
31747
31747
  selector: string;
31748
31748
  }[] | undefined;
31749
+ changeTracking?: Record<string, unknown> | undefined;
31749
31750
  branding?: z.objectOutputType<{
31750
31751
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
31751
31752
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -32179,7 +32180,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32179
32180
  targetAudience: string;
32180
32181
  }>>;
32181
32182
  }, z.ZodUnknown, "strip"> | undefined;
32182
- warning?: string | undefined;
32183
32183
  } | {
32184
32184
  url: string;
32185
32185
  description?: string | undefined;
@@ -32236,15 +32236,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32236
32236
  json?: unknown;
32237
32237
  actions?: Record<string, unknown> | undefined;
32238
32238
  screenshot?: string | undefined;
32239
+ warning?: string | undefined;
32239
32240
  markdown?: string | undefined;
32240
32241
  rawHtml?: string | undefined;
32241
32242
  links?: string[] | undefined;
32242
- changeTracking?: Record<string, unknown> | undefined;
32243
32243
  attributes?: {
32244
32244
  values: string[];
32245
32245
  attribute: string;
32246
32246
  selector: string;
32247
32247
  }[] | undefined;
32248
+ changeTracking?: Record<string, unknown> | undefined;
32248
32249
  branding?: z.objectOutputType<{
32249
32250
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
32250
32251
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -32678,14 +32679,13 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32678
32679
  targetAudience: string;
32679
32680
  }>>;
32680
32681
  }, z.ZodUnknown, "strip"> | undefined;
32681
- warning?: string | undefined;
32682
32682
  } | {
32683
32683
  title?: string | undefined;
32684
32684
  date?: string | undefined;
32685
32685
  url?: string | undefined;
32686
32686
  snippet?: string | undefined;
32687
- position?: number | undefined;
32688
32687
  category?: string | undefined;
32688
+ position?: number | undefined;
32689
32689
  imageUrl?: string | undefined;
32690
32690
  })[] | undefined;
32691
32691
  other?: unknown[] | undefined;
@@ -32743,15 +32743,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32743
32743
  json?: unknown;
32744
32744
  actions?: Record<string, unknown> | undefined;
32745
32745
  screenshot?: string | undefined;
32746
+ warning?: string | undefined;
32746
32747
  markdown?: string | undefined;
32747
32748
  rawHtml?: string | undefined;
32748
32749
  links?: string[] | undefined;
32749
- changeTracking?: Record<string, unknown> | undefined;
32750
32750
  attributes?: {
32751
32751
  values: string[];
32752
32752
  attribute: string;
32753
32753
  selector: string;
32754
32754
  }[] | undefined;
32755
+ changeTracking?: Record<string, unknown> | undefined;
32755
32756
  branding?: z.objectInputType<{
32756
32757
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
32757
32758
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -33185,7 +33186,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
33185
33186
  targetAudience: string;
33186
33187
  }>>;
33187
33188
  }, z.ZodUnknown, "strip"> | undefined;
33188
- warning?: string | undefined;
33189
33189
  } | {
33190
33190
  title?: string | undefined;
33191
33191
  url?: string | undefined;
@@ -33244,15 +33244,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
33244
33244
  json?: unknown;
33245
33245
  actions?: Record<string, unknown> | undefined;
33246
33246
  screenshot?: string | undefined;
33247
+ warning?: string | undefined;
33247
33248
  markdown?: string | undefined;
33248
33249
  rawHtml?: string | undefined;
33249
33250
  links?: string[] | undefined;
33250
- changeTracking?: Record<string, unknown> | undefined;
33251
33251
  attributes?: {
33252
33252
  values: string[];
33253
33253
  attribute: string;
33254
33254
  selector: string;
33255
33255
  }[] | undefined;
33256
+ changeTracking?: Record<string, unknown> | undefined;
33256
33257
  branding?: z.objectInputType<{
33257
33258
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
33258
33259
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -33686,7 +33687,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
33686
33687
  targetAudience: string;
33687
33688
  }>>;
33688
33689
  }, z.ZodUnknown, "strip"> | undefined;
33689
- warning?: string | undefined;
33690
33690
  } | {
33691
33691
  url: string;
33692
33692
  description?: string | undefined;
@@ -33743,15 +33743,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
33743
33743
  json?: unknown;
33744
33744
  actions?: Record<string, unknown> | undefined;
33745
33745
  screenshot?: string | undefined;
33746
+ warning?: string | undefined;
33746
33747
  markdown?: string | undefined;
33747
33748
  rawHtml?: string | undefined;
33748
33749
  links?: string[] | undefined;
33749
- changeTracking?: Record<string, unknown> | undefined;
33750
33750
  attributes?: {
33751
33751
  values: string[];
33752
33752
  attribute: string;
33753
33753
  selector: string;
33754
33754
  }[] | undefined;
33755
+ changeTracking?: Record<string, unknown> | undefined;
33755
33756
  branding?: z.objectInputType<{
33756
33757
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
33757
33758
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -34185,14 +34186,13 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
34185
34186
  targetAudience: string;
34186
34187
  }>>;
34187
34188
  }, z.ZodUnknown, "strip"> | undefined;
34188
- warning?: string | undefined;
34189
34189
  } | {
34190
34190
  title?: string | undefined;
34191
34191
  date?: string | undefined;
34192
34192
  url?: string | undefined;
34193
34193
  snippet?: string | undefined;
34194
- position?: number | undefined;
34195
34194
  category?: string | undefined;
34195
+ position?: number | undefined;
34196
34196
  imageUrl?: string | undefined;
34197
34197
  })[] | undefined;
34198
34198
  other?: unknown[] | undefined;
@@ -35746,15 +35746,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
35746
35746
  json?: unknown;
35747
35747
  actions?: Record<string, unknown> | undefined;
35748
35748
  screenshot?: string | undefined;
35749
+ warning?: string | undefined;
35749
35750
  markdown?: string | undefined;
35750
35751
  rawHtml?: string | undefined;
35751
35752
  links?: string[] | undefined;
35752
- changeTracking?: Record<string, unknown> | undefined;
35753
35753
  attributes?: {
35754
35754
  values: string[];
35755
35755
  attribute: string;
35756
35756
  selector: string;
35757
35757
  }[] | undefined;
35758
+ changeTracking?: Record<string, unknown> | undefined;
35758
35759
  branding?: z.objectOutputType<{
35759
35760
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
35760
35761
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -36188,7 +36189,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36188
36189
  targetAudience: string;
36189
36190
  }>>;
36190
36191
  }, z.ZodUnknown, "strip"> | undefined;
36191
- warning?: string | undefined;
36192
36192
  }, {
36193
36193
  images?: string[] | undefined;
36194
36194
  summary?: string | undefined;
@@ -36239,15 +36239,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36239
36239
  json?: unknown;
36240
36240
  actions?: Record<string, unknown> | undefined;
36241
36241
  screenshot?: string | undefined;
36242
+ warning?: string | undefined;
36242
36243
  markdown?: string | undefined;
36243
36244
  rawHtml?: string | undefined;
36244
36245
  links?: string[] | undefined;
36245
- changeTracking?: Record<string, unknown> | undefined;
36246
36246
  attributes?: {
36247
36247
  values: string[];
36248
36248
  attribute: string;
36249
36249
  selector: string;
36250
36250
  }[] | undefined;
36251
+ changeTracking?: Record<string, unknown> | undefined;
36251
36252
  branding?: z.objectInputType<{
36252
36253
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
36253
36254
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -36681,12 +36682,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36681
36682
  targetAudience: string;
36682
36683
  }>>;
36683
36684
  }, z.ZodUnknown, "strip"> | undefined;
36684
- warning?: string | undefined;
36685
36685
  }>, "many">;
36686
36686
  }, "strip", z.ZodTypeAny, {
36687
- status: "failed" | "completed" | "scraping" | "cancelled";
36688
- error: string;
36689
- success: boolean;
36690
36687
  data: {
36691
36688
  images?: string[] | undefined;
36692
36689
  summary?: string | undefined;
@@ -36737,15 +36734,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36737
36734
  json?: unknown;
36738
36735
  actions?: Record<string, unknown> | undefined;
36739
36736
  screenshot?: string | undefined;
36737
+ warning?: string | undefined;
36740
36738
  markdown?: string | undefined;
36741
36739
  rawHtml?: string | undefined;
36742
36740
  links?: string[] | undefined;
36743
- changeTracking?: Record<string, unknown> | undefined;
36744
36741
  attributes?: {
36745
36742
  values: string[];
36746
36743
  attribute: string;
36747
36744
  selector: string;
36748
36745
  }[] | undefined;
36746
+ changeTracking?: Record<string, unknown> | undefined;
36749
36747
  branding?: z.objectOutputType<{
36750
36748
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
36751
36749
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -37179,17 +37177,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37179
37177
  targetAudience: string;
37180
37178
  }>>;
37181
37179
  }, z.ZodUnknown, "strip"> | undefined;
37182
- warning?: string | undefined;
37183
37180
  }[];
37181
+ status: "failed" | "completed" | "scraping" | "cancelled";
37182
+ error: string;
37183
+ success: boolean;
37184
37184
  operation: "crawl";
37185
37185
  completed: number;
37186
37186
  total: number;
37187
37187
  creditsUsed?: number | undefined;
37188
37188
  expiresAt?: string | undefined;
37189
37189
  }, {
37190
- status: "failed" | "completed" | "scraping" | "cancelled";
37191
- error: string;
37192
- success: boolean;
37193
37190
  data: {
37194
37191
  images?: string[] | undefined;
37195
37192
  summary?: string | undefined;
@@ -37240,15 +37237,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37240
37237
  json?: unknown;
37241
37238
  actions?: Record<string, unknown> | undefined;
37242
37239
  screenshot?: string | undefined;
37240
+ warning?: string | undefined;
37243
37241
  markdown?: string | undefined;
37244
37242
  rawHtml?: string | undefined;
37245
37243
  links?: string[] | undefined;
37246
- changeTracking?: Record<string, unknown> | undefined;
37247
37244
  attributes?: {
37248
37245
  values: string[];
37249
37246
  attribute: string;
37250
37247
  selector: string;
37251
37248
  }[] | undefined;
37249
+ changeTracking?: Record<string, unknown> | undefined;
37252
37250
  branding?: z.objectInputType<{
37253
37251
  colorScheme: z.ZodOptional<z.ZodEnum<["light", "dark"]>>;
37254
37252
  logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -37682,8 +37680,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37682
37680
  targetAudience: string;
37683
37681
  }>>;
37684
37682
  }, z.ZodUnknown, "strip"> | undefined;
37685
- warning?: string | undefined;
37686
37683
  }[];
37684
+ status: "failed" | "completed" | "scraping" | "cancelled";
37685
+ error: string;
37686
+ success: boolean;
37687
37687
  operation: "crawl";
37688
37688
  completed: number;
37689
37689
  total: number;
@@ -37704,21 +37704,21 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37704
37704
  error: string;
37705
37705
  success: boolean;
37706
37706
  operation: "extract";
37707
- status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
37708
37707
  data?: unknown;
37708
+ status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
37709
37709
  id?: string | undefined;
37710
- sources?: Record<string, unknown> | undefined;
37711
37710
  warning?: string | undefined;
37711
+ sources?: Record<string, unknown> | undefined;
37712
37712
  expiresAt?: string | undefined;
37713
37713
  }, {
37714
37714
  error: string;
37715
37715
  success: boolean;
37716
37716
  operation: "extract";
37717
- status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
37718
37717
  data?: unknown;
37718
+ status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
37719
37719
  id?: string | undefined;
37720
- sources?: Record<string, unknown> | undefined;
37721
37720
  warning?: string | undefined;
37721
+ sources?: Record<string, unknown> | undefined;
37722
37722
  expiresAt?: string | undefined;
37723
37723
  }>]>;
37724
37724
  static readonly shortDescription = "Firecrawl API integration for web crawl operations.";