firecrawl 1.8.0 → 1.8.1

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
@@ -145,6 +145,7 @@ interface CrawlParams {
145
145
  scrapeOptions?: CrawlScrapeOptions;
146
146
  webhook?: string;
147
147
  deduplicateSimilarURLs?: boolean;
148
+ ignoreQueryParameters?: boolean;
148
149
  }
149
150
  /**
150
151
  * Response interface for crawling operations.
package/dist/index.d.ts CHANGED
@@ -145,6 +145,7 @@ interface CrawlParams {
145
145
  scrapeOptions?: CrawlScrapeOptions;
146
146
  webhook?: string;
147
147
  deduplicateSimilarURLs?: boolean;
148
+ ignoreQueryParameters?: boolean;
148
149
  }
149
150
  /**
150
151
  * Response interface for crawling operations.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
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
@@ -155,6 +155,7 @@ export interface CrawlParams {
155
155
  scrapeOptions?: CrawlScrapeOptions;
156
156
  webhook?: string;
157
157
  deduplicateSimilarURLs?: boolean;
158
+ ignoreQueryParameters?: boolean;
158
159
  }
159
160
 
160
161
  /**