firecrawl 1.8.3 → 1.8.5

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.
package/dist/index.d.cts CHANGED
@@ -81,6 +81,7 @@ interface CrawlScrapeOptions {
81
81
  country?: string;
82
82
  languages?: string[];
83
83
  };
84
+ mobile?: boolean;
84
85
  skipTlsVerification?: boolean;
85
86
  removeBase64Images?: boolean;
86
87
  }
@@ -206,6 +207,7 @@ interface MapParams {
206
207
  search?: string;
207
208
  ignoreSitemap?: boolean;
208
209
  includeSubdomains?: boolean;
210
+ sitemapOnly?: boolean;
209
211
  limit?: number;
210
212
  }
211
213
  /**
package/dist/index.d.ts CHANGED
@@ -81,6 +81,7 @@ interface CrawlScrapeOptions {
81
81
  country?: string;
82
82
  languages?: string[];
83
83
  };
84
+ mobile?: boolean;
84
85
  skipTlsVerification?: boolean;
85
86
  removeBase64Images?: boolean;
86
87
  }
@@ -206,6 +207,7 @@ interface MapParams {
206
207
  search?: string;
207
208
  ignoreSitemap?: boolean;
208
209
  includeSubdomains?: boolean;
210
+ sitemapOnly?: boolean;
209
211
  limit?: number;
210
212
  }
211
213
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "JavaScript SDK for Firecrawl API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -86,6 +86,7 @@ export interface CrawlScrapeOptions {
86
86
  country?: string;
87
87
  languages?: string[];
88
88
  };
89
+ mobile?: boolean;
89
90
  skipTlsVerification?: boolean;
90
91
  removeBase64Images?: boolean;
91
92
  }
@@ -221,6 +222,7 @@ export interface MapParams {
221
222
  search?: string;
222
223
  ignoreSitemap?: boolean;
223
224
  includeSubdomains?: boolean;
225
+ sitemapOnly?: boolean;
224
226
  limit?: number;
225
227
  }
226
228