firecrawl 1.8.0 → 1.8.2
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
- package/src/index.ts +5 -1
package/dist/index.d.cts
CHANGED
|
@@ -143,8 +143,12 @@ interface CrawlParams {
|
|
|
143
143
|
allowExternalLinks?: boolean;
|
|
144
144
|
ignoreSitemap?: boolean;
|
|
145
145
|
scrapeOptions?: CrawlScrapeOptions;
|
|
146
|
-
webhook?: string
|
|
146
|
+
webhook?: string | {
|
|
147
|
+
url: string;
|
|
148
|
+
headers?: Record<string, string>;
|
|
149
|
+
};
|
|
147
150
|
deduplicateSimilarURLs?: boolean;
|
|
151
|
+
ignoreQueryParameters?: boolean;
|
|
148
152
|
}
|
|
149
153
|
/**
|
|
150
154
|
* Response interface for crawling operations.
|
package/dist/index.d.ts
CHANGED
|
@@ -143,8 +143,12 @@ interface CrawlParams {
|
|
|
143
143
|
allowExternalLinks?: boolean;
|
|
144
144
|
ignoreSitemap?: boolean;
|
|
145
145
|
scrapeOptions?: CrawlScrapeOptions;
|
|
146
|
-
webhook?: string
|
|
146
|
+
webhook?: string | {
|
|
147
|
+
url: string;
|
|
148
|
+
headers?: Record<string, string>;
|
|
149
|
+
};
|
|
147
150
|
deduplicateSimilarURLs?: boolean;
|
|
151
|
+
ignoreQueryParameters?: boolean;
|
|
148
152
|
}
|
|
149
153
|
/**
|
|
150
154
|
* Response interface for crawling operations.
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -153,8 +153,12 @@ export interface CrawlParams {
|
|
|
153
153
|
allowExternalLinks?: boolean;
|
|
154
154
|
ignoreSitemap?: boolean;
|
|
155
155
|
scrapeOptions?: CrawlScrapeOptions;
|
|
156
|
-
webhook?: string
|
|
156
|
+
webhook?: string | {
|
|
157
|
+
url: string;
|
|
158
|
+
headers?: Record<string, string>;
|
|
159
|
+
};
|
|
157
160
|
deduplicateSimilarURLs?: boolean;
|
|
161
|
+
ignoreQueryParameters?: boolean;
|
|
158
162
|
}
|
|
159
163
|
|
|
160
164
|
/**
|