@hyperbrowser/sdk
Advanced tools
Comparing version 0.6.0 to 0.7.0
import { CrawlJobStatus } from "./constants"; | ||
export interface StartCrawlJobParams { | ||
url: string; | ||
maxPages: number; | ||
followLinks: boolean; | ||
excludePatterns: string[]; | ||
includePatterns: string[]; | ||
useProxy: boolean; | ||
solveCaptchas: boolean; | ||
maxPages?: number; | ||
followLinks?: boolean; | ||
excludePatterns?: string[]; | ||
includePatterns?: string[]; | ||
useProxy?: boolean; | ||
solveCaptchas?: boolean; | ||
} | ||
@@ -11,0 +11,0 @@ export interface StartCrawlJobResponse { |
import { ScrapeJobStatus } from "./constants"; | ||
export interface StartScrapeJobParams { | ||
url: string; | ||
useProxy: boolean; | ||
solveCaptchas: boolean; | ||
useProxy?: boolean; | ||
solveCaptchas?: boolean; | ||
} | ||
@@ -7,0 +7,0 @@ export interface StartScrapeJobResponse { |
{ | ||
"name": "@hyperbrowser/sdk", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"description": "Node SDK for Hyperbrowser API", | ||
@@ -5,0 +5,0 @@ "author": "", |
21038