@hyperbrowser/sdk 0.88.3 → 0.89.0
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/types/crawl.d.ts
CHANGED
package/dist/types/scrape.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export interface ScrapeJobStatusResponse {
|
|
|
35
35
|
status: ScrapeJobStatus;
|
|
36
36
|
}
|
|
37
37
|
export interface ScrapeJobData {
|
|
38
|
-
metadata?: Record<string,
|
|
38
|
+
metadata?: Record<string, unknown>;
|
|
39
39
|
markdown?: string;
|
|
40
40
|
html?: string;
|
|
41
41
|
links?: string[];
|
|
@@ -56,7 +56,7 @@ export interface ScrapedPage {
|
|
|
56
56
|
url: string;
|
|
57
57
|
status: ScrapePageStatus;
|
|
58
58
|
error?: string | null;
|
|
59
|
-
metadata?: Record<string,
|
|
59
|
+
metadata?: Record<string, unknown>;
|
|
60
60
|
markdown?: string;
|
|
61
61
|
html?: string;
|
|
62
62
|
links?: string[];
|
|
@@ -25,7 +25,7 @@ export interface PageData {
|
|
|
25
25
|
url: string;
|
|
26
26
|
status: PageStatus;
|
|
27
27
|
error?: string;
|
|
28
|
-
metadata?: Record<string,
|
|
28
|
+
metadata?: Record<string, unknown>;
|
|
29
29
|
markdown?: string;
|
|
30
30
|
html?: string;
|
|
31
31
|
links?: string[];
|
|
@@ -62,7 +62,7 @@ export interface FetchOutputOptions {
|
|
|
62
62
|
export interface FetchBrowserOptions {
|
|
63
63
|
screen?: ScreenConfig;
|
|
64
64
|
profileId?: string;
|
|
65
|
-
solveCaptchas?:
|
|
65
|
+
solveCaptchas?: boolean;
|
|
66
66
|
location?: FetchBrowserLocationOptions;
|
|
67
67
|
}
|
|
68
68
|
export interface FetchNavigationOptions {
|