move param to the right place

This commit is contained in:
Gergő Móricz 2024-11-08 16:25:11 +01:00
parent 6ecf24b85e
commit dc3a4e27fd
3 changed files with 3 additions and 3 deletions

View File

@ -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 = {

View File

@ -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);

View File

@ -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;
}
/**