mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
move param to the right place
This commit is contained in:
parent
6ecf24b85e
commit
dc3a4e27fd
|
@ -143,7 +143,6 @@ export const scrapeOptions = z.object({
|
|||
}).optional(),
|
||||
skipTlsVerification: z.boolean().default(false),
|
||||
removeBase64Images: z.boolean().default(true),
|
||||
deduplicateSimilarURLs: z.boolean().default(true),
|
||||
}).strict(strictMessage)
|
||||
|
||||
|
||||
|
@ -200,6 +199,7 @@ const crawlerOptions = z.object({
|
|||
allowBackwardLinks: z.boolean().default(false), // >> TODO: CHANGE THIS NAME???
|
||||
allowExternalLinks: z.boolean().default(false),
|
||||
ignoreSitemap: z.boolean().default(true),
|
||||
deduplicateSimilarURLs: z.boolean().default(true),
|
||||
}).strict(strictMessage);
|
||||
|
||||
// export type CrawlerOptions = {
|
||||
|
|
|
@ -107,7 +107,7 @@ export async function lockURL(id: string, sc: StoredCrawl, url: string): Promise
|
|||
url = normalizeURL(url);
|
||||
|
||||
let res: boolean;
|
||||
if (!sc.scrapeOptions.deduplicateSimilarURLs) {
|
||||
if (!sc.crawlerOptions.deduplicateSimilarURLs) {
|
||||
res = (await redisConnection.sadd("crawl:" + id + ":visited", url)) !== 0
|
||||
} else {
|
||||
const urlO = new URL(url);
|
||||
|
|
|
@ -88,7 +88,6 @@ export interface CrawlScrapeOptions {
|
|||
};
|
||||
skipTlsVerification?: boolean;
|
||||
removeBase64Images?: boolean;
|
||||
deduplicateSimilarURLs?: boolean;
|
||||
}
|
||||
|
||||
export type Action = {
|
||||
|
@ -151,6 +150,7 @@ export interface CrawlParams {
|
|||
ignoreSitemap?: boolean;
|
||||
scrapeOptions?: CrawlScrapeOptions;
|
||||
webhook?: string;
|
||||
deduplicateSimilarURLs?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user