@bubblelab/bubble-core 0.1.75 → 0.1.76

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 (52) hide show
  1. package/dist/bubble-bundle.d.ts +92 -92
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/airtable.d.ts +222 -222
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +22 -22
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +29 -29
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +16 -16
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +20 -20
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +88 -88
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +232 -232
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +16 -16
  17. package/dist/bubbles/service-bubble/github.d.ts +60 -60
  18. package/dist/bubbles/service-bubble/gmail.d.ts +74 -74
  19. package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
  20. package/dist/bubbles/service-bubble/google-drive.d.ts +94 -94
  21. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
  22. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +46 -46
  23. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
  25. package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
  26. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
  27. package/dist/bubbles/service-bubble/notion/notion.d.ts +208 -208
  28. package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
  29. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +278 -278
  31. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  32. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +71 -71
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +77 -77
  34. package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
  36. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
  37. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
  38. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  40. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
  41. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
  42. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  43. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +40 -40
  45. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  48. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +50 -50
  50. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +52 -52
  51. package/dist/bubbles.json +1 -1
  52. package/package.json +2 -2
@@ -206,11 +206,11 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
206
206
  type: z.ZodLiteral<"executeJavascript">;
207
207
  script: z.ZodString;
208
208
  }, "strip", z.ZodTypeAny, {
209
- type: "executeJavascript";
210
209
  script: string;
211
- }, {
212
210
  type: "executeJavascript";
211
+ }, {
213
212
  script: string;
213
+ type: "executeJavascript";
214
214
  }>, z.ZodObject<{
215
215
  type: z.ZodLiteral<"pdf">;
216
216
  format: z.ZodOptional<z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "Tabloid", "Ledger"]>>;
@@ -250,9 +250,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
250
250
  operation: z.ZodLiteral<"scrape">;
251
251
  url: z.ZodString;
252
252
  }, "strip", z.ZodTypeAny, {
253
- operation: "scrape";
254
253
  url: string;
255
254
  timeout: number;
255
+ operation: "scrape";
256
256
  formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
257
257
  type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
258
258
  } | {
@@ -316,8 +316,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
316
316
  } | {
317
317
  type: "scrape";
318
318
  } | {
319
- type: "executeJavascript";
320
319
  script: string;
320
+ type: "executeJavascript";
321
321
  } | {
322
322
  type: "pdf";
323
323
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -343,8 +343,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
343
343
  storeInCache?: boolean | undefined;
344
344
  backoffFactor?: number | undefined;
345
345
  }, {
346
- operation: "scrape";
347
346
  url: string;
347
+ operation: "scrape";
348
348
  credentials?: Partial<Record<CredentialType, string>> | undefined;
349
349
  timeout?: number | undefined;
350
350
  maxRetries?: number | undefined;
@@ -379,8 +379,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
379
379
  } | {
380
380
  type: "scrape";
381
381
  } | {
382
- type: "executeJavascript";
383
382
  script: string;
383
+ type: "executeJavascript";
384
384
  } | {
385
385
  type: "pdf";
386
386
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -661,11 +661,11 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
661
661
  type: z.ZodLiteral<"executeJavascript">;
662
662
  script: z.ZodString;
663
663
  }, "strip", z.ZodTypeAny, {
664
- type: "executeJavascript";
665
664
  script: string;
666
- }, {
667
665
  type: "executeJavascript";
666
+ }, {
668
667
  script: string;
668
+ type: "executeJavascript";
669
669
  }>, z.ZodObject<{
670
670
  type: z.ZodLiteral<"pdf">;
671
671
  format: z.ZodOptional<z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "Tabloid", "Ledger"]>>;
@@ -764,8 +764,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
764
764
  } | {
765
765
  type: "scrape";
766
766
  } | {
767
- type: "executeJavascript";
768
767
  script: string;
768
+ type: "executeJavascript";
769
769
  } | {
770
770
  type: "pdf";
771
771
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -822,8 +822,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
822
822
  } | {
823
823
  type: "scrape";
824
824
  } | {
825
- type: "executeJavascript";
826
825
  script: string;
826
+ type: "executeJavascript";
827
827
  } | {
828
828
  type: "pdf";
829
829
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -880,8 +880,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
880
880
  }>>;
881
881
  integration: z.ZodOptional<z.ZodString>;
882
882
  }, "strip", z.ZodTypeAny, {
883
- operation: "search";
884
883
  query: string;
884
+ operation: "search";
885
885
  credentials?: Partial<Record<CredentialType, string>> | undefined;
886
886
  timeout?: number | undefined;
887
887
  maxRetries?: number | undefined;
@@ -960,8 +960,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
960
960
  } | {
961
961
  type: "scrape";
962
962
  } | {
963
- type: "executeJavascript";
964
963
  script: string;
964
+ type: "executeJavascript";
965
965
  } | {
966
966
  type: "pdf";
967
967
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -987,8 +987,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
987
987
  storeInCache?: boolean | undefined;
988
988
  } | undefined;
989
989
  }, {
990
- operation: "search";
991
990
  query: string;
991
+ operation: "search";
992
992
  credentials?: Partial<Record<CredentialType, string>> | undefined;
993
993
  timeout?: number | undefined;
994
994
  maxRetries?: number | undefined;
@@ -1037,8 +1037,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1037
1037
  } | {
1038
1038
  type: "scrape";
1039
1039
  } | {
1040
- type: "executeJavascript";
1041
1040
  script: string;
1041
+ type: "executeJavascript";
1042
1042
  } | {
1043
1043
  type: "pdf";
1044
1044
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -1117,11 +1117,11 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1117
1117
  languages?: string[] | undefined;
1118
1118
  }>>;
1119
1119
  }, "strip", z.ZodTypeAny, {
1120
- operation: "map";
1121
1120
  url: string;
1122
- search?: string | undefined;
1121
+ operation: "map";
1123
1122
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1124
1123
  timeout?: number | undefined;
1124
+ search?: string | undefined;
1125
1125
  maxRetries?: number | undefined;
1126
1126
  limit?: number | undefined;
1127
1127
  location?: {
@@ -1133,11 +1133,11 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1133
1133
  sitemap?: "include" | "only" | "skip" | undefined;
1134
1134
  includeSubdomains?: boolean | undefined;
1135
1135
  }, {
1136
- operation: "map";
1137
1136
  url: string;
1138
- search?: string | undefined;
1137
+ operation: "map";
1139
1138
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1140
1139
  timeout?: number | undefined;
1140
+ search?: string | undefined;
1141
1141
  maxRetries?: number | undefined;
1142
1142
  limit?: number | undefined;
1143
1143
  location?: {
@@ -1383,11 +1383,11 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1383
1383
  type: z.ZodLiteral<"executeJavascript">;
1384
1384
  script: z.ZodString;
1385
1385
  }, "strip", z.ZodTypeAny, {
1386
- type: "executeJavascript";
1387
1386
  script: string;
1388
- }, {
1389
1387
  type: "executeJavascript";
1388
+ }, {
1390
1389
  script: string;
1390
+ type: "executeJavascript";
1391
1391
  }>, z.ZodObject<{
1392
1392
  type: z.ZodLiteral<"pdf">;
1393
1393
  format: z.ZodOptional<z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "Tabloid", "Ledger"]>>;
@@ -1486,8 +1486,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1486
1486
  } | {
1487
1487
  type: "scrape";
1488
1488
  } | {
1489
- type: "executeJavascript";
1490
1489
  script: string;
1490
+ type: "executeJavascript";
1491
1491
  } | {
1492
1492
  type: "pdf";
1493
1493
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -1544,8 +1544,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1544
1544
  } | {
1545
1545
  type: "scrape";
1546
1546
  } | {
1547
- type: "executeJavascript";
1548
1547
  script: string;
1548
+ type: "executeJavascript";
1549
1549
  } | {
1550
1550
  type: "pdf";
1551
1551
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -1605,8 +1605,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1605
1605
  pollInterval: z.ZodOptional<z.ZodNumber>;
1606
1606
  timeout: z.ZodOptional<z.ZodNumber>;
1607
1607
  }, "strip", z.ZodTypeAny, {
1608
- operation: "crawl";
1609
1608
  url: string;
1609
+ operation: "crawl";
1610
1610
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1611
1611
  maxConcurrency?: number | undefined;
1612
1612
  timeout?: number | undefined;
@@ -1684,8 +1684,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1684
1684
  } | {
1685
1685
  type: "scrape";
1686
1686
  } | {
1687
- type: "executeJavascript";
1688
1687
  script: string;
1688
+ type: "executeJavascript";
1689
1689
  } | {
1690
1690
  type: "pdf";
1691
1691
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -1722,8 +1722,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1722
1722
  zeroDataRetention?: boolean | undefined;
1723
1723
  pollInterval?: number | undefined;
1724
1724
  }, {
1725
- operation: "crawl";
1726
1725
  url: string;
1726
+ operation: "crawl";
1727
1727
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1728
1728
  maxConcurrency?: number | undefined;
1729
1729
  timeout?: number | undefined;
@@ -1771,8 +1771,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
1771
1771
  } | {
1772
1772
  type: "scrape";
1773
1773
  } | {
1774
- type: "executeJavascript";
1775
1774
  script: string;
1775
+ type: "executeJavascript";
1776
1776
  } | {
1777
1777
  type: "pdf";
1778
1778
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -2051,11 +2051,11 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2051
2051
  type: z.ZodLiteral<"executeJavascript">;
2052
2052
  script: z.ZodString;
2053
2053
  }, "strip", z.ZodTypeAny, {
2054
- type: "executeJavascript";
2055
2054
  script: string;
2056
- }, {
2057
2055
  type: "executeJavascript";
2056
+ }, {
2058
2057
  script: string;
2058
+ type: "executeJavascript";
2059
2059
  }>, z.ZodObject<{
2060
2060
  type: z.ZodLiteral<"pdf">;
2061
2061
  format: z.ZodOptional<z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "Tabloid", "Ledger"]>>;
@@ -2154,8 +2154,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2154
2154
  } | {
2155
2155
  type: "scrape";
2156
2156
  } | {
2157
- type: "executeJavascript";
2158
2157
  script: string;
2158
+ type: "executeJavascript";
2159
2159
  } | {
2160
2160
  type: "pdf";
2161
2161
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -2212,8 +2212,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2212
2212
  } | {
2213
2213
  type: "scrape";
2214
2214
  } | {
2215
- type: "executeJavascript";
2216
2215
  script: string;
2216
+ type: "executeJavascript";
2217
2217
  } | {
2218
2218
  type: "pdf";
2219
2219
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -2282,8 +2282,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2282
2282
  }, "strip", z.ZodTypeAny, {
2283
2283
  operation: "extract";
2284
2284
  urls: string[];
2285
- schema?: any;
2286
2285
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2286
+ schema?: any;
2287
2287
  timeout?: number | undefined;
2288
2288
  maxRetries?: number | undefined;
2289
2289
  systemPrompt?: string | undefined;
@@ -2357,8 +2357,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2357
2357
  } | {
2358
2358
  type: "scrape";
2359
2359
  } | {
2360
- type: "executeJavascript";
2361
2360
  script: string;
2361
+ type: "executeJavascript";
2362
2362
  } | {
2363
2363
  type: "pdf";
2364
2364
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -2390,8 +2390,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2390
2390
  }, {
2391
2391
  operation: "extract";
2392
2392
  urls: string[];
2393
- schema?: any;
2394
2393
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2394
+ schema?: any;
2395
2395
  timeout?: number | undefined;
2396
2396
  maxRetries?: number | undefined;
2397
2397
  systemPrompt?: string | undefined;
@@ -2435,8 +2435,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
2435
2435
  } | {
2436
2436
  type: "scrape";
2437
2437
  } | {
2438
- type: "executeJavascript";
2439
2438
  script: string;
2439
+ type: "executeJavascript";
2440
2440
  } | {
2441
2441
  type: "pdf";
2442
2442
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -3951,9 +3951,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
3951
3951
  } & {
3952
3952
  operation: z.ZodLiteral<"scrape">;
3953
3953
  }, "strip", z.ZodTypeAny, {
3954
- operation: "scrape";
3955
3954
  error: string;
3956
3955
  success: boolean;
3956
+ operation: "scrape";
3957
3957
  json?: unknown;
3958
3958
  metadata?: z.objectOutputType<{
3959
3959
  title: z.ZodOptional<z.ZodString>;
@@ -4447,9 +4447,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
4447
4447
  }>>;
4448
4448
  }, z.ZodUnknown, "strip"> | undefined;
4449
4449
  }, {
4450
- operation: "scrape";
4451
4450
  error: string;
4452
4451
  success: boolean;
4452
+ operation: "scrape";
4453
4453
  json?: unknown;
4454
4454
  metadata?: z.objectInputType<{
4455
4455
  title: z.ZodOptional<z.ZodString>;
@@ -12317,9 +12317,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
12317
12317
  }>]>, "many">>;
12318
12318
  other: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
12319
12319
  }, "strip", z.ZodTypeAny, {
12320
- operation: "search";
12321
12320
  error: string;
12322
12321
  success: boolean;
12322
+ operation: "search";
12323
12323
  images?: ({
12324
12324
  json?: unknown;
12325
12325
  metadata?: z.objectOutputType<{
@@ -13824,9 +13824,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
13824
13824
  })[] | undefined;
13825
13825
  other?: unknown[] | undefined;
13826
13826
  }, {
13827
- operation: "search";
13828
13827
  error: string;
13829
13828
  success: boolean;
13829
+ operation: "search";
13830
13830
  images?: ({
13831
13831
  json?: unknown;
13832
13832
  metadata?: z.objectInputType<{
@@ -15352,9 +15352,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
15352
15352
  category?: string | undefined;
15353
15353
  }>, "many">;
15354
15354
  }, "strip", z.ZodTypeAny, {
15355
- operation: "map";
15356
15355
  error: string;
15357
15356
  success: boolean;
15357
+ operation: "map";
15358
15358
  links: {
15359
15359
  url: string;
15360
15360
  description?: string | undefined;
@@ -15362,9 +15362,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
15362
15362
  category?: string | undefined;
15363
15363
  }[];
15364
15364
  }, {
15365
- operation: "map";
15366
15365
  error: string;
15367
15366
  success: boolean;
15367
+ operation: "map";
15368
15368
  links: {
15369
15369
  url: string;
15370
15370
  description?: string | undefined;
@@ -17818,7 +17818,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
17818
17818
  }, z.ZodUnknown, "strip"> | undefined;
17819
17819
  }>, "many">;
17820
17820
  }, "strip", z.ZodTypeAny, {
17821
- operation: "crawl";
17822
17821
  status: "failed" | "completed" | "scraping" | "cancelled";
17823
17822
  error: string;
17824
17823
  success: boolean;
@@ -18316,12 +18315,12 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18316
18315
  }>>;
18317
18316
  }, z.ZodUnknown, "strip"> | undefined;
18318
18317
  }[];
18318
+ operation: "crawl";
18319
18319
  completed: number;
18320
18320
  total: number;
18321
18321
  creditsUsed?: number | undefined;
18322
18322
  expiresAt?: string | undefined;
18323
18323
  }, {
18324
- operation: "crawl";
18325
18324
  status: "failed" | "completed" | "scraping" | "cancelled";
18326
18325
  error: string;
18327
18326
  success: boolean;
@@ -18819,6 +18818,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18819
18818
  }>>;
18820
18819
  }, z.ZodUnknown, "strip"> | undefined;
18821
18820
  }[];
18821
+ operation: "crawl";
18822
18822
  completed: number;
18823
18823
  total: number;
18824
18824
  creditsUsed?: number | undefined;
@@ -18835,9 +18835,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18835
18835
  sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18836
18836
  expiresAt: z.ZodOptional<z.ZodString>;
18837
18837
  }, "strip", z.ZodTypeAny, {
18838
- operation: "extract";
18839
18838
  error: string;
18840
18839
  success: boolean;
18840
+ operation: "extract";
18841
18841
  status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
18842
18842
  id?: string | undefined;
18843
18843
  data?: unknown;
@@ -18845,9 +18845,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
18845
18845
  sources?: Record<string, unknown> | undefined;
18846
18846
  expiresAt?: string | undefined;
18847
18847
  }, {
18848
- operation: "extract";
18849
18848
  error: string;
18850
18849
  success: boolean;
18850
+ operation: "extract";
18851
18851
  status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
18852
18852
  id?: string | undefined;
18853
18853
  data?: unknown;
@@ -19072,11 +19072,11 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19072
19072
  type: z.ZodLiteral<"executeJavascript">;
19073
19073
  script: z.ZodString;
19074
19074
  }, "strip", z.ZodTypeAny, {
19075
- type: "executeJavascript";
19076
19075
  script: string;
19077
- }, {
19078
19076
  type: "executeJavascript";
19077
+ }, {
19079
19078
  script: string;
19079
+ type: "executeJavascript";
19080
19080
  }>, z.ZodObject<{
19081
19081
  type: z.ZodLiteral<"pdf">;
19082
19082
  format: z.ZodOptional<z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "Tabloid", "Ledger"]>>;
@@ -19116,9 +19116,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19116
19116
  operation: z.ZodLiteral<"scrape">;
19117
19117
  url: z.ZodString;
19118
19118
  }, "strip", z.ZodTypeAny, {
19119
- operation: "scrape";
19120
19119
  url: string;
19121
19120
  timeout: number;
19121
+ operation: "scrape";
19122
19122
  formats: ("json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
19123
19123
  type: "json" | "images" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
19124
19124
  } | {
@@ -19182,8 +19182,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19182
19182
  } | {
19183
19183
  type: "scrape";
19184
19184
  } | {
19185
- type: "executeJavascript";
19186
19185
  script: string;
19186
+ type: "executeJavascript";
19187
19187
  } | {
19188
19188
  type: "pdf";
19189
19189
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -19209,8 +19209,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19209
19209
  storeInCache?: boolean | undefined;
19210
19210
  backoffFactor?: number | undefined;
19211
19211
  }, {
19212
- operation: "scrape";
19213
19212
  url: string;
19213
+ operation: "scrape";
19214
19214
  credentials?: Partial<Record<CredentialType, string>> | undefined;
19215
19215
  timeout?: number | undefined;
19216
19216
  maxRetries?: number | undefined;
@@ -19245,8 +19245,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19245
19245
  } | {
19246
19246
  type: "scrape";
19247
19247
  } | {
19248
- type: "executeJavascript";
19249
19248
  script: string;
19249
+ type: "executeJavascript";
19250
19250
  } | {
19251
19251
  type: "pdf";
19252
19252
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -19527,11 +19527,11 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19527
19527
  type: z.ZodLiteral<"executeJavascript">;
19528
19528
  script: z.ZodString;
19529
19529
  }, "strip", z.ZodTypeAny, {
19530
- type: "executeJavascript";
19531
19530
  script: string;
19532
- }, {
19533
19531
  type: "executeJavascript";
19532
+ }, {
19534
19533
  script: string;
19534
+ type: "executeJavascript";
19535
19535
  }>, z.ZodObject<{
19536
19536
  type: z.ZodLiteral<"pdf">;
19537
19537
  format: z.ZodOptional<z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "Tabloid", "Ledger"]>>;
@@ -19630,8 +19630,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19630
19630
  } | {
19631
19631
  type: "scrape";
19632
19632
  } | {
19633
- type: "executeJavascript";
19634
19633
  script: string;
19634
+ type: "executeJavascript";
19635
19635
  } | {
19636
19636
  type: "pdf";
19637
19637
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -19688,8 +19688,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19688
19688
  } | {
19689
19689
  type: "scrape";
19690
19690
  } | {
19691
- type: "executeJavascript";
19692
19691
  script: string;
19692
+ type: "executeJavascript";
19693
19693
  } | {
19694
19694
  type: "pdf";
19695
19695
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -19746,8 +19746,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19746
19746
  }>>;
19747
19747
  integration: z.ZodOptional<z.ZodString>;
19748
19748
  }, "strip", z.ZodTypeAny, {
19749
- operation: "search";
19750
19749
  query: string;
19750
+ operation: "search";
19751
19751
  credentials?: Partial<Record<CredentialType, string>> | undefined;
19752
19752
  timeout?: number | undefined;
19753
19753
  maxRetries?: number | undefined;
@@ -19826,8 +19826,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19826
19826
  } | {
19827
19827
  type: "scrape";
19828
19828
  } | {
19829
- type: "executeJavascript";
19830
19829
  script: string;
19830
+ type: "executeJavascript";
19831
19831
  } | {
19832
19832
  type: "pdf";
19833
19833
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -19853,8 +19853,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19853
19853
  storeInCache?: boolean | undefined;
19854
19854
  } | undefined;
19855
19855
  }, {
19856
- operation: "search";
19857
19856
  query: string;
19857
+ operation: "search";
19858
19858
  credentials?: Partial<Record<CredentialType, string>> | undefined;
19859
19859
  timeout?: number | undefined;
19860
19860
  maxRetries?: number | undefined;
@@ -19903,8 +19903,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19903
19903
  } | {
19904
19904
  type: "scrape";
19905
19905
  } | {
19906
- type: "executeJavascript";
19907
19906
  script: string;
19907
+ type: "executeJavascript";
19908
19908
  } | {
19909
19909
  type: "pdf";
19910
19910
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -19983,11 +19983,11 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19983
19983
  languages?: string[] | undefined;
19984
19984
  }>>;
19985
19985
  }, "strip", z.ZodTypeAny, {
19986
- operation: "map";
19987
19986
  url: string;
19988
- search?: string | undefined;
19987
+ operation: "map";
19989
19988
  credentials?: Partial<Record<CredentialType, string>> | undefined;
19990
19989
  timeout?: number | undefined;
19990
+ search?: string | undefined;
19991
19991
  maxRetries?: number | undefined;
19992
19992
  limit?: number | undefined;
19993
19993
  location?: {
@@ -19999,11 +19999,11 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
19999
19999
  sitemap?: "include" | "only" | "skip" | undefined;
20000
20000
  includeSubdomains?: boolean | undefined;
20001
20001
  }, {
20002
- operation: "map";
20003
20002
  url: string;
20004
- search?: string | undefined;
20003
+ operation: "map";
20005
20004
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20006
20005
  timeout?: number | undefined;
20006
+ search?: string | undefined;
20007
20007
  maxRetries?: number | undefined;
20008
20008
  limit?: number | undefined;
20009
20009
  location?: {
@@ -20249,11 +20249,11 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20249
20249
  type: z.ZodLiteral<"executeJavascript">;
20250
20250
  script: z.ZodString;
20251
20251
  }, "strip", z.ZodTypeAny, {
20252
- type: "executeJavascript";
20253
20252
  script: string;
20254
- }, {
20255
20253
  type: "executeJavascript";
20254
+ }, {
20256
20255
  script: string;
20256
+ type: "executeJavascript";
20257
20257
  }>, z.ZodObject<{
20258
20258
  type: z.ZodLiteral<"pdf">;
20259
20259
  format: z.ZodOptional<z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "Tabloid", "Ledger"]>>;
@@ -20352,8 +20352,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20352
20352
  } | {
20353
20353
  type: "scrape";
20354
20354
  } | {
20355
- type: "executeJavascript";
20356
20355
  script: string;
20356
+ type: "executeJavascript";
20357
20357
  } | {
20358
20358
  type: "pdf";
20359
20359
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -20410,8 +20410,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20410
20410
  } | {
20411
20411
  type: "scrape";
20412
20412
  } | {
20413
- type: "executeJavascript";
20414
20413
  script: string;
20414
+ type: "executeJavascript";
20415
20415
  } | {
20416
20416
  type: "pdf";
20417
20417
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -20471,8 +20471,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20471
20471
  pollInterval: z.ZodOptional<z.ZodNumber>;
20472
20472
  timeout: z.ZodOptional<z.ZodNumber>;
20473
20473
  }, "strip", z.ZodTypeAny, {
20474
- operation: "crawl";
20475
20474
  url: string;
20475
+ operation: "crawl";
20476
20476
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20477
20477
  maxConcurrency?: number | undefined;
20478
20478
  timeout?: number | undefined;
@@ -20550,8 +20550,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20550
20550
  } | {
20551
20551
  type: "scrape";
20552
20552
  } | {
20553
- type: "executeJavascript";
20554
20553
  script: string;
20554
+ type: "executeJavascript";
20555
20555
  } | {
20556
20556
  type: "pdf";
20557
20557
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -20588,8 +20588,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20588
20588
  zeroDataRetention?: boolean | undefined;
20589
20589
  pollInterval?: number | undefined;
20590
20590
  }, {
20591
- operation: "crawl";
20592
20591
  url: string;
20592
+ operation: "crawl";
20593
20593
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20594
20594
  maxConcurrency?: number | undefined;
20595
20595
  timeout?: number | undefined;
@@ -20637,8 +20637,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20637
20637
  } | {
20638
20638
  type: "scrape";
20639
20639
  } | {
20640
- type: "executeJavascript";
20641
20640
  script: string;
20641
+ type: "executeJavascript";
20642
20642
  } | {
20643
20643
  type: "pdf";
20644
20644
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -20917,11 +20917,11 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
20917
20917
  type: z.ZodLiteral<"executeJavascript">;
20918
20918
  script: z.ZodString;
20919
20919
  }, "strip", z.ZodTypeAny, {
20920
- type: "executeJavascript";
20921
20920
  script: string;
20922
- }, {
20923
20921
  type: "executeJavascript";
20922
+ }, {
20924
20923
  script: string;
20924
+ type: "executeJavascript";
20925
20925
  }>, z.ZodObject<{
20926
20926
  type: z.ZodLiteral<"pdf">;
20927
20927
  format: z.ZodOptional<z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "Tabloid", "Ledger"]>>;
@@ -21020,8 +21020,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21020
21020
  } | {
21021
21021
  type: "scrape";
21022
21022
  } | {
21023
- type: "executeJavascript";
21024
21023
  script: string;
21024
+ type: "executeJavascript";
21025
21025
  } | {
21026
21026
  type: "pdf";
21027
21027
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -21078,8 +21078,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21078
21078
  } | {
21079
21079
  type: "scrape";
21080
21080
  } | {
21081
- type: "executeJavascript";
21082
21081
  script: string;
21082
+ type: "executeJavascript";
21083
21083
  } | {
21084
21084
  type: "pdf";
21085
21085
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -21148,8 +21148,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21148
21148
  }, "strip", z.ZodTypeAny, {
21149
21149
  operation: "extract";
21150
21150
  urls: string[];
21151
- schema?: any;
21152
21151
  credentials?: Partial<Record<CredentialType, string>> | undefined;
21152
+ schema?: any;
21153
21153
  timeout?: number | undefined;
21154
21154
  maxRetries?: number | undefined;
21155
21155
  systemPrompt?: string | undefined;
@@ -21223,8 +21223,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21223
21223
  } | {
21224
21224
  type: "scrape";
21225
21225
  } | {
21226
- type: "executeJavascript";
21227
21226
  script: string;
21227
+ type: "executeJavascript";
21228
21228
  } | {
21229
21229
  type: "pdf";
21230
21230
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -21256,8 +21256,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21256
21256
  }, {
21257
21257
  operation: "extract";
21258
21258
  urls: string[];
21259
- schema?: any;
21260
21259
  credentials?: Partial<Record<CredentialType, string>> | undefined;
21260
+ schema?: any;
21261
21261
  timeout?: number | undefined;
21262
21262
  maxRetries?: number | undefined;
21263
21263
  systemPrompt?: string | undefined;
@@ -21301,8 +21301,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
21301
21301
  } | {
21302
21302
  type: "scrape";
21303
21303
  } | {
21304
- type: "executeJavascript";
21305
21304
  script: string;
21305
+ type: "executeJavascript";
21306
21306
  } | {
21307
21307
  type: "pdf";
21308
21308
  format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger" | undefined;
@@ -22817,9 +22817,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
22817
22817
  } & {
22818
22818
  operation: z.ZodLiteral<"scrape">;
22819
22819
  }, "strip", z.ZodTypeAny, {
22820
- operation: "scrape";
22821
22820
  error: string;
22822
22821
  success: boolean;
22822
+ operation: "scrape";
22823
22823
  json?: unknown;
22824
22824
  metadata?: z.objectOutputType<{
22825
22825
  title: z.ZodOptional<z.ZodString>;
@@ -23313,9 +23313,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
23313
23313
  }>>;
23314
23314
  }, z.ZodUnknown, "strip"> | undefined;
23315
23315
  }, {
23316
- operation: "scrape";
23317
23316
  error: string;
23318
23317
  success: boolean;
23318
+ operation: "scrape";
23319
23319
  json?: unknown;
23320
23320
  metadata?: z.objectInputType<{
23321
23321
  title: z.ZodOptional<z.ZodString>;
@@ -31183,9 +31183,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
31183
31183
  }>]>, "many">>;
31184
31184
  other: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
31185
31185
  }, "strip", z.ZodTypeAny, {
31186
- operation: "search";
31187
31186
  error: string;
31188
31187
  success: boolean;
31188
+ operation: "search";
31189
31189
  images?: ({
31190
31190
  json?: unknown;
31191
31191
  metadata?: z.objectOutputType<{
@@ -32690,9 +32690,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
32690
32690
  })[] | undefined;
32691
32691
  other?: unknown[] | undefined;
32692
32692
  }, {
32693
- operation: "search";
32694
32693
  error: string;
32695
32694
  success: boolean;
32695
+ operation: "search";
32696
32696
  images?: ({
32697
32697
  json?: unknown;
32698
32698
  metadata?: z.objectInputType<{
@@ -34218,9 +34218,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
34218
34218
  category?: string | undefined;
34219
34219
  }>, "many">;
34220
34220
  }, "strip", z.ZodTypeAny, {
34221
- operation: "map";
34222
34221
  error: string;
34223
34222
  success: boolean;
34223
+ operation: "map";
34224
34224
  links: {
34225
34225
  url: string;
34226
34226
  description?: string | undefined;
@@ -34228,9 +34228,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
34228
34228
  category?: string | undefined;
34229
34229
  }[];
34230
34230
  }, {
34231
- operation: "map";
34232
34231
  error: string;
34233
34232
  success: boolean;
34233
+ operation: "map";
34234
34234
  links: {
34235
34235
  url: string;
34236
34236
  description?: string | undefined;
@@ -36684,7 +36684,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
36684
36684
  }, z.ZodUnknown, "strip"> | undefined;
36685
36685
  }>, "many">;
36686
36686
  }, "strip", z.ZodTypeAny, {
36687
- operation: "crawl";
36688
36687
  status: "failed" | "completed" | "scraping" | "cancelled";
36689
36688
  error: string;
36690
36689
  success: boolean;
@@ -37182,12 +37181,12 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37182
37181
  }>>;
37183
37182
  }, z.ZodUnknown, "strip"> | undefined;
37184
37183
  }[];
37184
+ operation: "crawl";
37185
37185
  completed: number;
37186
37186
  total: number;
37187
37187
  creditsUsed?: number | undefined;
37188
37188
  expiresAt?: string | undefined;
37189
37189
  }, {
37190
- operation: "crawl";
37191
37190
  status: "failed" | "completed" | "scraping" | "cancelled";
37192
37191
  error: string;
37193
37192
  success: boolean;
@@ -37685,6 +37684,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37685
37684
  }>>;
37686
37685
  }, z.ZodUnknown, "strip"> | undefined;
37687
37686
  }[];
37687
+ operation: "crawl";
37688
37688
  completed: number;
37689
37689
  total: number;
37690
37690
  creditsUsed?: number | undefined;
@@ -37701,9 +37701,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37701
37701
  sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
37702
37702
  expiresAt: z.ZodOptional<z.ZodString>;
37703
37703
  }, "strip", z.ZodTypeAny, {
37704
- operation: "extract";
37705
37704
  error: string;
37706
37705
  success: boolean;
37706
+ operation: "extract";
37707
37707
  status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
37708
37708
  id?: string | undefined;
37709
37709
  data?: unknown;
@@ -37711,9 +37711,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
37711
37711
  sources?: Record<string, unknown> | undefined;
37712
37712
  expiresAt?: string | undefined;
37713
37713
  }, {
37714
- operation: "extract";
37715
37714
  error: string;
37716
37715
  success: boolean;
37716
+ operation: "extract";
37717
37717
  status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
37718
37718
  id?: string | undefined;
37719
37719
  data?: unknown;