firecrawl 1.9.2 → 1.9.3

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
@@ -147,6 +147,7 @@ interface CrawlParams {
147
147
  webhook?: string | {
148
148
  url: string;
149
149
  headers?: Record<string, string>;
150
+ metadata?: Record<string, string>;
150
151
  };
151
152
  deduplicateSimilarURLs?: boolean;
152
153
  ignoreQueryParameters?: boolean;
package/dist/index.d.ts CHANGED
@@ -147,6 +147,7 @@ interface CrawlParams {
147
147
  webhook?: string | {
148
148
  url: string;
149
149
  headers?: Record<string, string>;
150
+ metadata?: Record<string, string>;
150
151
  };
151
152
  deduplicateSimilarURLs?: boolean;
152
153
  ignoreQueryParameters?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
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
@@ -157,6 +157,7 @@ export interface CrawlParams {
157
157
  webhook?: string | {
158
158
  url: string;
159
159
  headers?: Record<string, string>;
160
+ metadata?: Record<string, string>;
160
161
  };
161
162
  deduplicateSimilarURLs?: boolean;
162
163
  ignoreQueryParameters?: boolean;