firecrawl 4.23.0 → 4.24.1
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/README.md +1 -1
- package/dist/{chunk-ZR3KTUEQ.js → chunk-F3RFBUTZ.js} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +110 -59
- package/dist/index.d.ts +110 -59
- package/dist/index.js +2 -2
- package/dist/{package-APBHZ5F3.js → package-B3VSS5SY.js} +1 -1
- package/package.json +1 -1
- package/src/v2/types.ts +168 -108
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Firecrawl Node SDK
|
|
2
2
|
|
|
3
|
-
The Firecrawl Node SDK is a library that
|
|
3
|
+
The Firecrawl Node SDK is a library that lets you easily search, scrape, and interact with the web for AI agents — returning clean Markdown or structured data your agents can ship with. It provides a simple and intuitive interface for the Firecrawl API.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ var require_package = __commonJS({
|
|
|
8
8
|
"package.json"(exports, module) {
|
|
9
9
|
module.exports = {
|
|
10
10
|
name: "@mendable/firecrawl-js",
|
|
11
|
-
version: "4.
|
|
11
|
+
version: "4.24.1",
|
|
12
12
|
description: "JavaScript SDK for Firecrawl API",
|
|
13
13
|
main: "dist/index.js",
|
|
14
14
|
types: "dist/index.d.ts",
|
package/dist/index.cjs
CHANGED
|
@@ -35,7 +35,7 @@ var require_package = __commonJS({
|
|
|
35
35
|
"package.json"(exports2, module2) {
|
|
36
36
|
module2.exports = {
|
|
37
37
|
name: "@mendable/firecrawl-js",
|
|
38
|
-
version: "4.
|
|
38
|
+
version: "4.24.1",
|
|
39
39
|
description: "JavaScript SDK for Firecrawl API",
|
|
40
40
|
main: "dist/index.js",
|
|
41
41
|
types: "dist/index.d.ts",
|
package/dist/index.d.cts
CHANGED
|
@@ -4,7 +4,7 @@ import { AxiosResponse, AxiosRequestHeaders } from 'axios';
|
|
|
4
4
|
import { EventEmitter } from 'events';
|
|
5
5
|
import { TypedEventTarget } from 'typescript-event-target';
|
|
6
6
|
|
|
7
|
-
type FormatString =
|
|
7
|
+
type FormatString = "markdown" | "html" | "rawHtml" | "links" | "images" | "screenshot" | "summary" | "changeTracking" | "json" | "attributes" | "branding" | "audio" | "video";
|
|
8
8
|
interface Viewport {
|
|
9
9
|
width: number;
|
|
10
10
|
height: number;
|
|
@@ -13,12 +13,12 @@ interface Format {
|
|
|
13
13
|
type: FormatString;
|
|
14
14
|
}
|
|
15
15
|
interface JsonFormat extends Format {
|
|
16
|
-
type:
|
|
16
|
+
type: "json";
|
|
17
17
|
prompt?: string;
|
|
18
18
|
schema?: Record<string, unknown> | ZodTypeAny;
|
|
19
19
|
}
|
|
20
20
|
interface ScreenshotFormat {
|
|
21
|
-
type:
|
|
21
|
+
type: "screenshot";
|
|
22
22
|
fullPage?: boolean;
|
|
23
23
|
quality?: number;
|
|
24
24
|
viewport?: Viewport | {
|
|
@@ -27,35 +27,40 @@ interface ScreenshotFormat {
|
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
29
|
interface ChangeTrackingFormat extends Format {
|
|
30
|
-
type:
|
|
31
|
-
modes: (
|
|
32
|
-
|
|
30
|
+
type: "changeTracking";
|
|
31
|
+
modes: ("git-diff" | "json")[];
|
|
32
|
+
/**
|
|
33
|
+
* Either a JSON Schema object or a Zod schema. Zod schemas are
|
|
34
|
+
* auto-converted to JSON Schema by the SDK before being sent — see
|
|
35
|
+
* `utils/validation.ts`.
|
|
36
|
+
*/
|
|
37
|
+
schema?: Record<string, unknown> | ZodTypeAny;
|
|
33
38
|
prompt?: string;
|
|
34
39
|
tag?: string;
|
|
35
40
|
}
|
|
36
41
|
interface AttributesFormat extends Format {
|
|
37
|
-
type:
|
|
42
|
+
type: "attributes";
|
|
38
43
|
selectors: Array<{
|
|
39
44
|
selector: string;
|
|
40
45
|
attribute: string;
|
|
41
46
|
}>;
|
|
42
47
|
}
|
|
43
48
|
interface QuestionFormat {
|
|
44
|
-
type:
|
|
49
|
+
type: "question";
|
|
45
50
|
question: string;
|
|
46
51
|
}
|
|
47
52
|
interface HighlightsFormat {
|
|
48
|
-
type:
|
|
53
|
+
type: "highlights";
|
|
49
54
|
query: string;
|
|
50
55
|
}
|
|
51
56
|
/** @deprecated Use QuestionFormat or HighlightsFormat instead. */
|
|
52
57
|
interface QueryFormat {
|
|
53
|
-
type:
|
|
58
|
+
type: "query";
|
|
54
59
|
prompt: string;
|
|
55
|
-
mode?:
|
|
60
|
+
mode?: "freeform" | "directQuote";
|
|
56
61
|
}
|
|
57
62
|
type FormatOption = FormatString | Format | JsonFormat | ChangeTrackingFormat | ScreenshotFormat | AttributesFormat | QuestionFormat | HighlightsFormat | QueryFormat;
|
|
58
|
-
type ParseFormatString = Exclude<FormatString,
|
|
63
|
+
type ParseFormatString = Exclude<FormatString, "screenshot" | "changeTracking" | "branding" | "audio" | "video">;
|
|
59
64
|
interface ParseFormat {
|
|
60
65
|
type: ParseFormatString;
|
|
61
66
|
}
|
|
@@ -65,12 +70,12 @@ interface LocationConfig$1 {
|
|
|
65
70
|
languages?: string[];
|
|
66
71
|
}
|
|
67
72
|
interface WaitAction {
|
|
68
|
-
type:
|
|
73
|
+
type: "wait";
|
|
69
74
|
milliseconds?: number;
|
|
70
75
|
selector?: string;
|
|
71
76
|
}
|
|
72
77
|
interface ScreenshotAction {
|
|
73
|
-
type:
|
|
78
|
+
type: "screenshot";
|
|
74
79
|
fullPage?: boolean;
|
|
75
80
|
quality?: number;
|
|
76
81
|
viewport?: Viewport | {
|
|
@@ -79,32 +84,32 @@ interface ScreenshotAction {
|
|
|
79
84
|
};
|
|
80
85
|
}
|
|
81
86
|
interface ClickAction {
|
|
82
|
-
type:
|
|
87
|
+
type: "click";
|
|
83
88
|
selector: string;
|
|
84
89
|
}
|
|
85
90
|
interface WriteAction {
|
|
86
|
-
type:
|
|
91
|
+
type: "write";
|
|
87
92
|
text: string;
|
|
88
93
|
}
|
|
89
94
|
interface PressAction {
|
|
90
|
-
type:
|
|
95
|
+
type: "press";
|
|
91
96
|
key: string;
|
|
92
97
|
}
|
|
93
98
|
interface ScrollAction {
|
|
94
|
-
type:
|
|
95
|
-
direction:
|
|
99
|
+
type: "scroll";
|
|
100
|
+
direction: "up" | "down";
|
|
96
101
|
selector?: string;
|
|
97
102
|
}
|
|
98
103
|
interface ScrapeAction {
|
|
99
|
-
type:
|
|
104
|
+
type: "scrape";
|
|
100
105
|
}
|
|
101
106
|
interface ExecuteJavascriptAction {
|
|
102
|
-
type:
|
|
107
|
+
type: "executeJavascript";
|
|
103
108
|
script: string;
|
|
104
109
|
}
|
|
105
110
|
interface PDFAction {
|
|
106
|
-
type:
|
|
107
|
-
format?:
|
|
111
|
+
type: "pdf";
|
|
112
|
+
format?: "A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "A6" | "Letter" | "Legal" | "Tabloid" | "Ledger";
|
|
108
113
|
landscape?: boolean;
|
|
109
114
|
scale?: number;
|
|
110
115
|
}
|
|
@@ -119,8 +124,8 @@ interface ScrapeOptions {
|
|
|
119
124
|
waitFor?: number;
|
|
120
125
|
mobile?: boolean;
|
|
121
126
|
parsers?: Array<string | {
|
|
122
|
-
type:
|
|
123
|
-
mode?:
|
|
127
|
+
type: "pdf";
|
|
128
|
+
mode?: "fast" | "auto" | "ocr";
|
|
124
129
|
maxPages?: number;
|
|
125
130
|
}>;
|
|
126
131
|
actions?: ActionOption[];
|
|
@@ -130,7 +135,7 @@ interface ScrapeOptions {
|
|
|
130
135
|
fastMode?: boolean;
|
|
131
136
|
useMock?: string;
|
|
132
137
|
blockAds?: boolean;
|
|
133
|
-
proxy?:
|
|
138
|
+
proxy?: "basic" | "stealth" | "enhanced" | "auto" | string;
|
|
134
139
|
maxAge?: number;
|
|
135
140
|
minAge?: number;
|
|
136
141
|
storeInCache?: boolean;
|
|
@@ -148,17 +153,17 @@ interface ParseFile {
|
|
|
148
153
|
filename: string;
|
|
149
154
|
contentType?: string;
|
|
150
155
|
}
|
|
151
|
-
type ParseOptions = Omit<ScrapeOptions,
|
|
156
|
+
type ParseOptions = Omit<ScrapeOptions, "formats" | "waitFor" | "mobile" | "actions" | "location" | "maxAge" | "minAge" | "storeInCache" | "lockdown" | "proxy"> & {
|
|
152
157
|
formats?: ParseFormatOption[];
|
|
153
|
-
proxy?:
|
|
158
|
+
proxy?: "basic" | "auto";
|
|
154
159
|
};
|
|
155
160
|
interface WebhookConfig {
|
|
156
161
|
url: string;
|
|
157
162
|
headers?: Record<string, string>;
|
|
158
163
|
metadata?: Record<string, string>;
|
|
159
|
-
events?: Array<
|
|
164
|
+
events?: Array<"completed" | "failed" | "page" | "started">;
|
|
160
165
|
}
|
|
161
|
-
type AgentWebhookEvent =
|
|
166
|
+
type AgentWebhookEvent = "started" | "action" | "completed" | "failed" | "cancelled";
|
|
162
167
|
interface AgentWebhookConfig {
|
|
163
168
|
url: string;
|
|
164
169
|
headers?: Record<string, string>;
|
|
@@ -166,7 +171,7 @@ interface AgentWebhookConfig {
|
|
|
166
171
|
events?: AgentWebhookEvent[];
|
|
167
172
|
}
|
|
168
173
|
interface BrandingProfile {
|
|
169
|
-
colorScheme?:
|
|
174
|
+
colorScheme?: "light" | "dark";
|
|
170
175
|
logo?: string | null;
|
|
171
176
|
fonts?: Array<{
|
|
172
177
|
family: string;
|
|
@@ -283,8 +288,8 @@ interface BrandingProfile {
|
|
|
283
288
|
[key: string]: string | undefined;
|
|
284
289
|
};
|
|
285
290
|
personality?: {
|
|
286
|
-
tone:
|
|
287
|
-
energy:
|
|
291
|
+
tone: "professional" | "playful" | "modern" | "traditional" | "minimalist" | "bold";
|
|
292
|
+
energy: "low" | "medium" | "high";
|
|
288
293
|
targetAudience: string;
|
|
289
294
|
};
|
|
290
295
|
[key: string]: unknown;
|
|
@@ -327,8 +332,8 @@ interface DocumentMetadata {
|
|
|
327
332
|
numPages?: number;
|
|
328
333
|
contentType?: string;
|
|
329
334
|
timezone?: string;
|
|
330
|
-
proxyUsed?:
|
|
331
|
-
cacheState?:
|
|
335
|
+
proxyUsed?: "basic" | "stealth";
|
|
336
|
+
cacheState?: "hit" | "miss";
|
|
332
337
|
cachedAt?: string;
|
|
333
338
|
creditsUsed?: number;
|
|
334
339
|
concurrencyLimited?: boolean;
|
|
@@ -399,14 +404,14 @@ interface SearchData {
|
|
|
399
404
|
images?: Array<SearchResultImages | Document>;
|
|
400
405
|
}
|
|
401
406
|
interface CategoryOption {
|
|
402
|
-
type:
|
|
407
|
+
type: "github" | "research" | "pdf";
|
|
403
408
|
}
|
|
404
409
|
interface SearchRequest {
|
|
405
410
|
query: string;
|
|
406
|
-
sources?: Array<
|
|
407
|
-
type:
|
|
411
|
+
sources?: Array<"web" | "news" | "images" | {
|
|
412
|
+
type: "web" | "news" | "images";
|
|
408
413
|
}>;
|
|
409
|
-
categories?: Array<
|
|
414
|
+
categories?: Array<"github" | "research" | "pdf" | CategoryOption>;
|
|
410
415
|
includeDomains?: string[];
|
|
411
416
|
excludeDomains?: string[];
|
|
412
417
|
limit?: number;
|
|
@@ -423,7 +428,7 @@ interface CrawlOptions {
|
|
|
423
428
|
excludePaths?: string[] | null;
|
|
424
429
|
includePaths?: string[] | null;
|
|
425
430
|
maxDiscoveryDepth?: number | null;
|
|
426
|
-
sitemap?:
|
|
431
|
+
sitemap?: "skip" | "include" | "only";
|
|
427
432
|
ignoreQueryParameters?: boolean;
|
|
428
433
|
deduplicateSimilarURLs?: boolean;
|
|
429
434
|
limit?: number | null;
|
|
@@ -447,7 +452,7 @@ interface CrawlResponse$1 {
|
|
|
447
452
|
}
|
|
448
453
|
interface CrawlJob {
|
|
449
454
|
id: string;
|
|
450
|
-
status:
|
|
455
|
+
status: "scraping" | "completed" | "failed" | "cancelled";
|
|
451
456
|
total: number;
|
|
452
457
|
completed: number;
|
|
453
458
|
creditsUsed?: number;
|
|
@@ -473,7 +478,7 @@ interface BatchScrapeResponse$1 {
|
|
|
473
478
|
}
|
|
474
479
|
interface BatchScrapeJob {
|
|
475
480
|
id: string;
|
|
476
|
-
status:
|
|
481
|
+
status: "scraping" | "completed" | "failed" | "cancelled";
|
|
477
482
|
completed: number;
|
|
478
483
|
total: number;
|
|
479
484
|
creditsUsed?: number;
|
|
@@ -486,7 +491,7 @@ interface MapData {
|
|
|
486
491
|
}
|
|
487
492
|
interface MapOptions {
|
|
488
493
|
search?: string;
|
|
489
|
-
sitemap?:
|
|
494
|
+
sitemap?: "only" | "include" | "skip";
|
|
490
495
|
includeSubdomains?: boolean;
|
|
491
496
|
ignoreQueryParameters?: boolean;
|
|
492
497
|
limit?: number;
|
|
@@ -495,8 +500,21 @@ interface MapOptions {
|
|
|
495
500
|
origin?: string;
|
|
496
501
|
location?: LocationConfig$1;
|
|
497
502
|
}
|
|
503
|
+
/**
|
|
504
|
+
* Schedule for a monitor.
|
|
505
|
+
*
|
|
506
|
+
* On create/update, provide exactly one of `cron` or `text`:
|
|
507
|
+
* - `cron`: a 5-field cron expression (e.g. `"*\u002F30 * * * *"`).
|
|
508
|
+
* - `text`: a natural-language schedule (e.g. `"every 30 minutes"`,
|
|
509
|
+
* `"hourly"`, `"daily at 9:00"`). Firecrawl normalizes this to a cron
|
|
510
|
+
* expression server-side.
|
|
511
|
+
*
|
|
512
|
+
* On read, the API always returns the normalized `cron` value, so `cron`
|
|
513
|
+
* is populated in responses even when the monitor was created with `text`.
|
|
514
|
+
*/
|
|
498
515
|
interface MonitorSchedule {
|
|
499
|
-
cron
|
|
516
|
+
cron?: string;
|
|
517
|
+
text?: string;
|
|
500
518
|
timezone?: string;
|
|
501
519
|
}
|
|
502
520
|
interface MonitorEmailNotification {
|
|
@@ -515,13 +533,13 @@ interface MonitorWebhookConfig {
|
|
|
515
533
|
}
|
|
516
534
|
interface MonitorScrapeTarget {
|
|
517
535
|
id?: string;
|
|
518
|
-
type:
|
|
536
|
+
type: "scrape";
|
|
519
537
|
urls: string[];
|
|
520
538
|
scrapeOptions?: ScrapeOptions;
|
|
521
539
|
}
|
|
522
540
|
interface MonitorCrawlTarget {
|
|
523
541
|
id?: string;
|
|
524
|
-
type:
|
|
542
|
+
type: "crawl";
|
|
525
543
|
url: string;
|
|
526
544
|
crawlOptions?: CrawlOptions;
|
|
527
545
|
scrapeOptions?: ScrapeOptions;
|
|
@@ -537,7 +555,7 @@ interface CreateMonitorRequest {
|
|
|
537
555
|
}
|
|
538
556
|
interface UpdateMonitorRequest {
|
|
539
557
|
name?: string;
|
|
540
|
-
status?:
|
|
558
|
+
status?: "active" | "paused";
|
|
541
559
|
schedule?: MonitorSchedule;
|
|
542
560
|
webhook?: MonitorWebhookConfig | null;
|
|
543
561
|
notification?: MonitorNotification | null;
|
|
@@ -555,7 +573,7 @@ interface MonitorSummary {
|
|
|
555
573
|
interface Monitor {
|
|
556
574
|
id: string;
|
|
557
575
|
name: string;
|
|
558
|
-
status:
|
|
576
|
+
status: "active" | "paused" | "deleted";
|
|
559
577
|
schedule: MonitorSchedule;
|
|
560
578
|
nextRunAt?: string | null;
|
|
561
579
|
lastRunAt?: string | null;
|
|
@@ -572,15 +590,15 @@ interface Monitor {
|
|
|
572
590
|
interface MonitorCheck {
|
|
573
591
|
id: string;
|
|
574
592
|
monitorId: string;
|
|
575
|
-
status:
|
|
576
|
-
trigger:
|
|
593
|
+
status: "queued" | "running" | "completed" | "failed" | "partial" | "skipped_overlap";
|
|
594
|
+
trigger: "scheduled" | "manual";
|
|
577
595
|
scheduledFor?: string | null;
|
|
578
596
|
startedAt?: string | null;
|
|
579
597
|
finishedAt?: string | null;
|
|
580
598
|
estimatedCredits?: number | null;
|
|
581
599
|
reservedCredits?: number | null;
|
|
582
600
|
actualCredits?: number | null;
|
|
583
|
-
billingStatus:
|
|
601
|
+
billingStatus: "not_applicable" | "reserved" | "confirmed" | "released" | "failed";
|
|
584
602
|
summary: MonitorSummary;
|
|
585
603
|
targetResults?: unknown;
|
|
586
604
|
notificationStatus?: unknown;
|
|
@@ -588,17 +606,50 @@ interface MonitorCheck {
|
|
|
588
606
|
createdAt: string;
|
|
589
607
|
updatedAt: string;
|
|
590
608
|
}
|
|
609
|
+
/** Per-field diff for monitors that requested JSON extraction. */
|
|
610
|
+
interface MonitorJsonFieldDiff {
|
|
611
|
+
[field: string]: {
|
|
612
|
+
previous: unknown;
|
|
613
|
+
current: unknown;
|
|
614
|
+
};
|
|
615
|
+
}
|
|
616
|
+
/**
|
|
617
|
+
* Diff payload returned alongside a monitor page when its scrape produced
|
|
618
|
+
* a change. The shape depends on what the monitor's formats asked for:
|
|
619
|
+
*
|
|
620
|
+
* - markdown-only monitors → `{ text, json }` where `json` is the
|
|
621
|
+
* `parseDiff` AST (a `{ files: [...] }` object).
|
|
622
|
+
* - JSON-extraction monitors → `{ json }` where `json` is the per-field
|
|
623
|
+
* `{ previous, current }` map.
|
|
624
|
+
* - Mixed (JSON + git-diff) monitors → both `text` (markdown sidecar)
|
|
625
|
+
* and `json` (field-level diff) are present.
|
|
626
|
+
*/
|
|
627
|
+
interface MonitorPageDiff {
|
|
628
|
+
text?: string;
|
|
629
|
+
/** Markdown variants: parseDiff AST. JSON variants: per-field diff. */
|
|
630
|
+
json?: MonitorJsonFieldDiff | {
|
|
631
|
+
files: unknown[];
|
|
632
|
+
};
|
|
633
|
+
}
|
|
634
|
+
/**
|
|
635
|
+
* Snapshot of the current JSON extraction at this run. Present on JSON
|
|
636
|
+
* and mixed-mode monitors; absent for markdown-only.
|
|
637
|
+
*/
|
|
638
|
+
interface MonitorPageSnapshot {
|
|
639
|
+
json?: Record<string, unknown>;
|
|
640
|
+
}
|
|
591
641
|
interface MonitorCheckPage {
|
|
592
642
|
id: string;
|
|
593
643
|
targetId: string;
|
|
594
644
|
url: string;
|
|
595
|
-
status:
|
|
645
|
+
status: "same" | "new" | "changed" | "removed" | "error";
|
|
596
646
|
previousScrapeId?: string | null;
|
|
597
647
|
currentScrapeId?: string | null;
|
|
598
648
|
statusCode?: number | null;
|
|
599
649
|
error?: string | null;
|
|
600
650
|
metadata?: unknown;
|
|
601
|
-
diff?:
|
|
651
|
+
diff?: MonitorPageDiff | null;
|
|
652
|
+
snapshot?: MonitorPageSnapshot | null;
|
|
602
653
|
createdAt: string;
|
|
603
654
|
}
|
|
604
655
|
interface MonitorCheckDetail extends MonitorCheck {
|
|
@@ -618,7 +669,7 @@ type GetMonitorCheckOptions = PaginationConfig & {
|
|
|
618
669
|
interface ExtractResponse$1 {
|
|
619
670
|
success?: boolean;
|
|
620
671
|
id?: string;
|
|
621
|
-
status?:
|
|
672
|
+
status?: "processing" | "completed" | "failed" | "cancelled";
|
|
622
673
|
data?: unknown;
|
|
623
674
|
error?: string;
|
|
624
675
|
warning?: string;
|
|
@@ -635,15 +686,15 @@ interface AgentResponse {
|
|
|
635
686
|
}
|
|
636
687
|
interface AgentStatusResponse {
|
|
637
688
|
success: boolean;
|
|
638
|
-
status:
|
|
689
|
+
status: "processing" | "completed" | "failed";
|
|
639
690
|
error?: string;
|
|
640
691
|
data?: unknown;
|
|
641
|
-
model?:
|
|
692
|
+
model?: "spark-1-pro" | "spark-1-mini";
|
|
642
693
|
expiresAt: string;
|
|
643
694
|
creditsUsed?: number;
|
|
644
695
|
}
|
|
645
696
|
interface AgentOptions$1 {
|
|
646
|
-
model:
|
|
697
|
+
model: "FIRE-1" | "v3-beta";
|
|
647
698
|
}
|
|
648
699
|
interface ConcurrencyCheck {
|
|
649
700
|
concurrency: number;
|
|
@@ -716,7 +767,7 @@ declare class SdkError extends Error {
|
|
|
716
767
|
}
|
|
717
768
|
declare class JobTimeoutError extends SdkError {
|
|
718
769
|
timeoutSeconds: number;
|
|
719
|
-
constructor(jobId: string, timeoutSeconds: number, jobType?:
|
|
770
|
+
constructor(jobId: string, timeoutSeconds: number, jobType?: "batch" | "crawl");
|
|
720
771
|
}
|
|
721
772
|
interface QueueStatusResponse$1 {
|
|
722
773
|
success: boolean;
|
|
@@ -2111,4 +2162,4 @@ declare class Firecrawl extends FirecrawlClient {
|
|
|
2111
2162
|
get v1(): FirecrawlApp;
|
|
2112
2163
|
}
|
|
2113
2164
|
|
|
2114
|
-
export { type ActionOption, type ActiveCrawl, type ActiveCrawlsResponse, type AgentOptions$1 as AgentOptions, type AgentResponse, type AgentStatusResponse, type AgentWebhookConfig, type AgentWebhookEvent, type AttributesFormat, type BatchScrapeJob, type BatchScrapeOptions, type BatchScrapeResponse$1 as BatchScrapeResponse, type BrandingProfile, type BrowserCreateResponse, type BrowserDeleteResponse, type BrowserExecuteResponse, type BrowserListResponse, type BrowserSession, type CategoryOption, type ChangeTrackingFormat, type ClickAction, type ConcurrencyCheck, type CrawlErrorsResponse$1 as CrawlErrorsResponse, type CrawlJob, type CrawlOptions, type CrawlResponse$1 as CrawlResponse, type CreateMonitorRequest, type CreditUsage, type CreditUsageHistoricalPeriod, type CreditUsageHistoricalResponse, type Document, type DocumentMetadata, type ErrorDetails, type ExecuteJavascriptAction, type ExtractResponse$1 as ExtractResponse, Firecrawl, FirecrawlApp as FirecrawlAppV1, FirecrawlClient, type FirecrawlClientOptions, type Format, type FormatOption, type FormatString, type GetMonitorCheckOptions, type HighlightsFormat, JobTimeoutError, type JsonFormat, type ListMonitorChecksOptions, type ListMonitorsOptions, type LocationConfig$1 as LocationConfig, type MapData, type MapOptions, type Monitor, type MonitorCheck, type MonitorCheckDetail, type MonitorCheckPage, type MonitorCrawlTarget, type MonitorEmailNotification, type MonitorNotification, type MonitorSchedule, type MonitorScrapeTarget, type MonitorSummary, type MonitorTarget, type MonitorWebhookConfig, type PDFAction, type PaginationConfig, type ParseFile, type ParseFileData, type ParseFormat, type ParseFormatOption, type ParseFormatString, type ParseOptions, type PressAction, type QueryFormat, type QuestionFormat, type QueueStatusResponse$1 as QueueStatusResponse, type ScrapeAction, type ScrapeBrowserDeleteResponse, type ScrapeExecuteRequest, type ScrapeExecuteResponse, type ScrapeOptions, type ScreenshotAction, type ScreenshotFormat, type ScrollAction, SdkError, type SearchData, type SearchRequest, type SearchResultImages, type SearchResultNews, type SearchResultWeb, type TokenUsage, type TokenUsageHistoricalPeriod, type TokenUsageHistoricalResponse, type UpdateMonitorRequest, type Viewport, type WaitAction, Watcher, type WatcherOptions, type WebhookConfig, type WriteAction, Firecrawl as default };
|
|
2165
|
+
export { type ActionOption, type ActiveCrawl, type ActiveCrawlsResponse, type AgentOptions$1 as AgentOptions, type AgentResponse, type AgentStatusResponse, type AgentWebhookConfig, type AgentWebhookEvent, type AttributesFormat, type BatchScrapeJob, type BatchScrapeOptions, type BatchScrapeResponse$1 as BatchScrapeResponse, type BrandingProfile, type BrowserCreateResponse, type BrowserDeleteResponse, type BrowserExecuteResponse, type BrowserListResponse, type BrowserSession, type CategoryOption, type ChangeTrackingFormat, type ClickAction, type ConcurrencyCheck, type CrawlErrorsResponse$1 as CrawlErrorsResponse, type CrawlJob, type CrawlOptions, type CrawlResponse$1 as CrawlResponse, type CreateMonitorRequest, type CreditUsage, type CreditUsageHistoricalPeriod, type CreditUsageHistoricalResponse, type Document, type DocumentMetadata, type ErrorDetails, type ExecuteJavascriptAction, type ExtractResponse$1 as ExtractResponse, Firecrawl, FirecrawlApp as FirecrawlAppV1, FirecrawlClient, type FirecrawlClientOptions, type Format, type FormatOption, type FormatString, type GetMonitorCheckOptions, type HighlightsFormat, JobTimeoutError, type JsonFormat, type ListMonitorChecksOptions, type ListMonitorsOptions, type LocationConfig$1 as LocationConfig, type MapData, type MapOptions, type Monitor, type MonitorCheck, type MonitorCheckDetail, type MonitorCheckPage, type MonitorCrawlTarget, type MonitorEmailNotification, type MonitorJsonFieldDiff, type MonitorNotification, type MonitorPageDiff, type MonitorPageSnapshot, type MonitorSchedule, type MonitorScrapeTarget, type MonitorSummary, type MonitorTarget, type MonitorWebhookConfig, type PDFAction, type PaginationConfig, type ParseFile, type ParseFileData, type ParseFormat, type ParseFormatOption, type ParseFormatString, type ParseOptions, type PressAction, type QueryFormat, type QuestionFormat, type QueueStatusResponse$1 as QueueStatusResponse, type ScrapeAction, type ScrapeBrowserDeleteResponse, type ScrapeExecuteRequest, type ScrapeExecuteResponse, type ScrapeOptions, type ScreenshotAction, type ScreenshotFormat, type ScrollAction, SdkError, type SearchData, type SearchRequest, type SearchResultImages, type SearchResultNews, type SearchResultWeb, type TokenUsage, type TokenUsageHistoricalPeriod, type TokenUsageHistoricalResponse, type UpdateMonitorRequest, type Viewport, type WaitAction, Watcher, type WatcherOptions, type WebhookConfig, type WriteAction, Firecrawl as default };
|