firecrawl 1.8.3 → 1.8.4

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
@@ -206,6 +206,7 @@ interface MapParams {
206
206
  search?: string;
207
207
  ignoreSitemap?: boolean;
208
208
  includeSubdomains?: boolean;
209
+ sitemapOnly?: boolean;
209
210
  limit?: number;
210
211
  }
211
212
  /**
package/dist/index.d.ts CHANGED
@@ -206,6 +206,7 @@ interface MapParams {
206
206
  search?: string;
207
207
  ignoreSitemap?: boolean;
208
208
  includeSubdomains?: boolean;
209
+ sitemapOnly?: boolean;
209
210
  limit?: number;
210
211
  }
211
212
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
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
@@ -221,6 +221,7 @@ export interface MapParams {
221
221
  search?: string;
222
222
  ignoreSitemap?: boolean;
223
223
  includeSubdomains?: boolean;
224
+ sitemapOnly?: boolean;
224
225
  limit?: number;
225
226
  }
226
227