@bubblelab/bubble-core 0.1.96 → 0.1.97
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/bubble-bundle.d.ts +66 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +68 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +108 -108
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +25 -25
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +172 -172
- package/dist/bubbles/service-bubble/followupboss.d.ts +144 -144
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +148 -148
- package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
- package/dist/bubbles/service-bubble/gmail.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/gmail.js +10 -4
- package/dist/bubbles/service-bubble/gmail.js.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-drive.d.ts +100 -100
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +10 -10
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +29 -29
- package/dist/bubbles/service-bubble/notion/notion.d.ts +72 -72
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +26 -26
- package/dist/bubbles/service-bubble/slack/slack.d.ts +218 -218
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +62 -62
- package/dist/bubbles/service-bubble/telegram.d.ts +56 -56
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +6 -6
- package/package.json +2 -2
|
@@ -250,9 +250,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
250
250
|
operation: z.ZodLiteral<"scrape">;
|
|
251
251
|
url: z.ZodString;
|
|
252
252
|
}, "strip", z.ZodTypeAny, {
|
|
253
|
+
operation: "scrape";
|
|
253
254
|
url: string;
|
|
254
255
|
timeout: number;
|
|
255
|
-
operation: "scrape";
|
|
256
256
|
onlyMainContent: boolean;
|
|
257
257
|
waitFor: number;
|
|
258
258
|
formats: ("images" | "html" | "json" | "summary" | "markdown" | "screenshot" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
|
|
@@ -284,8 +284,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
284
284
|
})[];
|
|
285
285
|
maxAge: number;
|
|
286
286
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
287
|
-
maxRetries?: number | undefined;
|
|
288
287
|
headers?: Record<string, string> | undefined;
|
|
288
|
+
maxRetries?: number | undefined;
|
|
289
289
|
location?: {
|
|
290
290
|
country?: string | undefined;
|
|
291
291
|
languages?: string[] | undefined;
|
|
@@ -343,12 +343,12 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
343
343
|
proxy?: string | undefined;
|
|
344
344
|
storeInCache?: boolean | undefined;
|
|
345
345
|
}, {
|
|
346
|
-
url: string;
|
|
347
346
|
operation: "scrape";
|
|
347
|
+
url: string;
|
|
348
348
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
349
|
+
headers?: Record<string, string> | undefined;
|
|
349
350
|
maxRetries?: number | undefined;
|
|
350
351
|
timeout?: number | undefined;
|
|
351
|
-
headers?: Record<string, string> | undefined;
|
|
352
352
|
location?: {
|
|
353
353
|
country?: string | undefined;
|
|
354
354
|
languages?: string[] | undefined;
|
|
@@ -790,8 +790,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
790
790
|
proxy?: string | undefined;
|
|
791
791
|
storeInCache?: boolean | undefined;
|
|
792
792
|
}, {
|
|
793
|
-
timeout?: number | undefined;
|
|
794
793
|
headers?: Record<string, string> | undefined;
|
|
794
|
+
timeout?: number | undefined;
|
|
795
795
|
location?: {
|
|
796
796
|
country?: string | undefined;
|
|
797
797
|
languages?: string[] | undefined;
|
|
@@ -880,8 +880,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
880
880
|
}>>;
|
|
881
881
|
integration: z.ZodOptional<z.ZodString>;
|
|
882
882
|
}, "strip", z.ZodTypeAny, {
|
|
883
|
-
query: string;
|
|
884
883
|
operation: "search";
|
|
884
|
+
query: string;
|
|
885
885
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
886
886
|
maxRetries?: number | undefined;
|
|
887
887
|
timeout?: number | undefined;
|
|
@@ -987,8 +987,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
987
987
|
storeInCache?: boolean | undefined;
|
|
988
988
|
} | undefined;
|
|
989
989
|
}, {
|
|
990
|
-
query: string;
|
|
991
990
|
operation: "search";
|
|
991
|
+
query: string;
|
|
992
992
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
993
993
|
maxRetries?: number | undefined;
|
|
994
994
|
timeout?: number | undefined;
|
|
@@ -1005,8 +1005,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1005
1005
|
tbs?: string | undefined;
|
|
1006
1006
|
ignoreInvalidURLs?: boolean | undefined;
|
|
1007
1007
|
scrapeOptions?: {
|
|
1008
|
-
timeout?: number | undefined;
|
|
1009
1008
|
headers?: Record<string, string> | undefined;
|
|
1009
|
+
timeout?: number | undefined;
|
|
1010
1010
|
location?: {
|
|
1011
1011
|
country?: string | undefined;
|
|
1012
1012
|
languages?: string[] | undefined;
|
|
@@ -1117,8 +1117,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1117
1117
|
languages?: string[] | undefined;
|
|
1118
1118
|
}>>;
|
|
1119
1119
|
}, "strip", z.ZodTypeAny, {
|
|
1120
|
-
url: string;
|
|
1121
1120
|
operation: "map";
|
|
1121
|
+
url: string;
|
|
1122
1122
|
search?: string | undefined;
|
|
1123
1123
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1124
1124
|
maxRetries?: number | undefined;
|
|
@@ -1133,8 +1133,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1133
1133
|
sitemap?: "only" | "include" | "skip" | undefined;
|
|
1134
1134
|
includeSubdomains?: boolean | undefined;
|
|
1135
1135
|
}, {
|
|
1136
|
-
url: string;
|
|
1137
1136
|
operation: "map";
|
|
1137
|
+
url: string;
|
|
1138
1138
|
search?: string | undefined;
|
|
1139
1139
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1140
1140
|
maxRetries?: number | undefined;
|
|
@@ -1174,13 +1174,13 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1174
1174
|
events: z.ZodOptional<z.ZodArray<z.ZodEnum<["completed", "failed", "page", "started"]>, "many">>;
|
|
1175
1175
|
}, "strip", z.ZodTypeAny, {
|
|
1176
1176
|
url: string;
|
|
1177
|
-
headers?: Record<string, string> | undefined;
|
|
1178
1177
|
metadata?: Record<string, string> | undefined;
|
|
1178
|
+
headers?: Record<string, string> | undefined;
|
|
1179
1179
|
events?: ("page" | "completed" | "failed" | "started")[] | undefined;
|
|
1180
1180
|
}, {
|
|
1181
1181
|
url: string;
|
|
1182
|
-
headers?: Record<string, string> | undefined;
|
|
1183
1182
|
metadata?: Record<string, string> | undefined;
|
|
1183
|
+
headers?: Record<string, string> | undefined;
|
|
1184
1184
|
events?: ("page" | "completed" | "failed" | "started")[] | undefined;
|
|
1185
1185
|
}>]>>;
|
|
1186
1186
|
scrapeOptions: z.ZodOptional<z.ZodObject<{
|
|
@@ -1512,8 +1512,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1512
1512
|
proxy?: string | undefined;
|
|
1513
1513
|
storeInCache?: boolean | undefined;
|
|
1514
1514
|
}, {
|
|
1515
|
-
timeout?: number | undefined;
|
|
1516
1515
|
headers?: Record<string, string> | undefined;
|
|
1516
|
+
timeout?: number | undefined;
|
|
1517
1517
|
location?: {
|
|
1518
1518
|
country?: string | undefined;
|
|
1519
1519
|
languages?: string[] | undefined;
|
|
@@ -1605,16 +1605,16 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1605
1605
|
pollInterval: z.ZodOptional<z.ZodNumber>;
|
|
1606
1606
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1607
1607
|
}, "strip", z.ZodTypeAny, {
|
|
1608
|
-
url: string;
|
|
1609
1608
|
operation: "crawl";
|
|
1609
|
+
url: string;
|
|
1610
1610
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1611
1611
|
maxRetries?: number | undefined;
|
|
1612
1612
|
timeout?: number | undefined;
|
|
1613
1613
|
limit?: number | undefined;
|
|
1614
1614
|
webhook?: string | {
|
|
1615
1615
|
url: string;
|
|
1616
|
-
headers?: Record<string, string> | undefined;
|
|
1617
1616
|
metadata?: Record<string, string> | undefined;
|
|
1617
|
+
headers?: Record<string, string> | undefined;
|
|
1618
1618
|
events?: ("page" | "completed" | "failed" | "started")[] | undefined;
|
|
1619
1619
|
} | undefined;
|
|
1620
1620
|
integration?: string | undefined;
|
|
@@ -1722,16 +1722,16 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1722
1722
|
zeroDataRetention?: boolean | undefined;
|
|
1723
1723
|
pollInterval?: number | undefined;
|
|
1724
1724
|
}, {
|
|
1725
|
-
url: string;
|
|
1726
1725
|
operation: "crawl";
|
|
1726
|
+
url: string;
|
|
1727
1727
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1728
1728
|
maxRetries?: number | undefined;
|
|
1729
1729
|
timeout?: number | undefined;
|
|
1730
1730
|
limit?: number | undefined;
|
|
1731
1731
|
webhook?: string | {
|
|
1732
1732
|
url: string;
|
|
1733
|
-
headers?: Record<string, string> | undefined;
|
|
1734
1733
|
metadata?: Record<string, string> | undefined;
|
|
1734
|
+
headers?: Record<string, string> | undefined;
|
|
1735
1735
|
events?: ("page" | "completed" | "failed" | "started")[] | undefined;
|
|
1736
1736
|
} | undefined;
|
|
1737
1737
|
integration?: string | undefined;
|
|
@@ -1740,8 +1740,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1740
1740
|
excludePaths?: string[] | undefined;
|
|
1741
1741
|
backoffFactor?: number | undefined;
|
|
1742
1742
|
scrapeOptions?: {
|
|
1743
|
-
timeout?: number | undefined;
|
|
1744
1743
|
headers?: Record<string, string> | undefined;
|
|
1744
|
+
timeout?: number | undefined;
|
|
1745
1745
|
location?: {
|
|
1746
1746
|
country?: string | undefined;
|
|
1747
1747
|
languages?: string[] | undefined;
|
|
@@ -2180,8 +2180,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2180
2180
|
proxy?: string | undefined;
|
|
2181
2181
|
storeInCache?: boolean | undefined;
|
|
2182
2182
|
}, {
|
|
2183
|
-
timeout?: number | undefined;
|
|
2184
2183
|
headers?: Record<string, string> | undefined;
|
|
2184
|
+
timeout?: number | undefined;
|
|
2185
2185
|
location?: {
|
|
2186
2186
|
country?: string | undefined;
|
|
2187
2187
|
languages?: string[] | undefined;
|
|
@@ -2403,8 +2403,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2403
2403
|
backoffFactor?: number | undefined;
|
|
2404
2404
|
ignoreInvalidURLs?: boolean | undefined;
|
|
2405
2405
|
scrapeOptions?: {
|
|
2406
|
-
timeout?: number | undefined;
|
|
2407
2406
|
headers?: Record<string, string> | undefined;
|
|
2407
|
+
timeout?: number | undefined;
|
|
2408
2408
|
location?: {
|
|
2409
2409
|
country?: string | undefined;
|
|
2410
2410
|
languages?: string[] | undefined;
|
|
@@ -3951,12 +3951,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
3951
3951
|
} & {
|
|
3952
3952
|
operation: z.ZodLiteral<"scrape">;
|
|
3953
3953
|
}, "strip", z.ZodTypeAny, {
|
|
3954
|
+
operation: "scrape";
|
|
3954
3955
|
success: boolean;
|
|
3955
3956
|
error: string;
|
|
3956
|
-
operation: "scrape";
|
|
3957
|
-
images?: string[] | undefined;
|
|
3958
|
-
html?: string | undefined;
|
|
3959
|
-
json?: unknown;
|
|
3960
3957
|
metadata?: z.objectOutputType<{
|
|
3961
3958
|
title: z.ZodOptional<z.ZodString>;
|
|
3962
3959
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -4000,6 +3997,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
4000
3997
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
4001
3998
|
error: z.ZodOptional<z.ZodString>;
|
|
4002
3999
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
4000
|
+
images?: string[] | undefined;
|
|
4001
|
+
html?: string | undefined;
|
|
4002
|
+
json?: unknown;
|
|
4003
4003
|
summary?: string | undefined;
|
|
4004
4004
|
actions?: Record<string, unknown> | undefined;
|
|
4005
4005
|
markdown?: string | undefined;
|
|
@@ -4447,12 +4447,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
4447
4447
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
4448
4448
|
warning?: string | undefined;
|
|
4449
4449
|
}, {
|
|
4450
|
+
operation: "scrape";
|
|
4450
4451
|
success: boolean;
|
|
4451
4452
|
error: string;
|
|
4452
|
-
operation: "scrape";
|
|
4453
|
-
images?: string[] | undefined;
|
|
4454
|
-
html?: string | undefined;
|
|
4455
|
-
json?: unknown;
|
|
4456
4453
|
metadata?: z.objectInputType<{
|
|
4457
4454
|
title: z.ZodOptional<z.ZodString>;
|
|
4458
4455
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -4496,6 +4493,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
4496
4493
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
4497
4494
|
error: z.ZodOptional<z.ZodString>;
|
|
4498
4495
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
4496
|
+
images?: string[] | undefined;
|
|
4497
|
+
html?: string | undefined;
|
|
4498
|
+
json?: unknown;
|
|
4499
4499
|
summary?: string | undefined;
|
|
4500
4500
|
actions?: Record<string, unknown> | undefined;
|
|
4501
4501
|
markdown?: string | undefined;
|
|
@@ -6412,9 +6412,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
6412
6412
|
}>>;
|
|
6413
6413
|
}, z.ZodUnknown, "strip">>>;
|
|
6414
6414
|
}, "strip", z.ZodTypeAny, {
|
|
6415
|
-
images?: string[] | undefined;
|
|
6416
|
-
html?: string | undefined;
|
|
6417
|
-
json?: unknown;
|
|
6418
6415
|
metadata?: z.objectOutputType<{
|
|
6419
6416
|
title: z.ZodOptional<z.ZodString>;
|
|
6420
6417
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -6458,6 +6455,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
6458
6455
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
6459
6456
|
error: z.ZodOptional<z.ZodString>;
|
|
6460
6457
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
6458
|
+
images?: string[] | undefined;
|
|
6459
|
+
html?: string | undefined;
|
|
6460
|
+
json?: unknown;
|
|
6461
6461
|
summary?: string | undefined;
|
|
6462
6462
|
actions?: Record<string, unknown> | undefined;
|
|
6463
6463
|
markdown?: string | undefined;
|
|
@@ -6905,9 +6905,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
6905
6905
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
6906
6906
|
warning?: string | undefined;
|
|
6907
6907
|
}, {
|
|
6908
|
-
images?: string[] | undefined;
|
|
6909
|
-
html?: string | undefined;
|
|
6910
|
-
json?: unknown;
|
|
6911
6908
|
metadata?: z.objectInputType<{
|
|
6912
6909
|
title: z.ZodOptional<z.ZodString>;
|
|
6913
6910
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -6951,6 +6948,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
6951
6948
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
6952
6949
|
error: z.ZodOptional<z.ZodString>;
|
|
6953
6950
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
6951
|
+
images?: string[] | undefined;
|
|
6952
|
+
html?: string | undefined;
|
|
6953
|
+
json?: unknown;
|
|
6954
6954
|
summary?: string | undefined;
|
|
6955
6955
|
actions?: Record<string, unknown> | undefined;
|
|
6956
6956
|
markdown?: string | undefined;
|
|
@@ -8872,9 +8872,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
8872
8872
|
}>>;
|
|
8873
8873
|
}, z.ZodUnknown, "strip">>>;
|
|
8874
8874
|
}, "strip", z.ZodTypeAny, {
|
|
8875
|
-
images?: string[] | undefined;
|
|
8876
|
-
html?: string | undefined;
|
|
8877
|
-
json?: unknown;
|
|
8878
8875
|
metadata?: z.objectOutputType<{
|
|
8879
8876
|
title: z.ZodOptional<z.ZodString>;
|
|
8880
8877
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -8918,6 +8915,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
8918
8915
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
8919
8916
|
error: z.ZodOptional<z.ZodString>;
|
|
8920
8917
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
8918
|
+
images?: string[] | undefined;
|
|
8919
|
+
html?: string | undefined;
|
|
8920
|
+
json?: unknown;
|
|
8921
8921
|
summary?: string | undefined;
|
|
8922
8922
|
actions?: Record<string, unknown> | undefined;
|
|
8923
8923
|
markdown?: string | undefined;
|
|
@@ -9365,9 +9365,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
9365
9365
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
9366
9366
|
warning?: string | undefined;
|
|
9367
9367
|
}, {
|
|
9368
|
-
images?: string[] | undefined;
|
|
9369
|
-
html?: string | undefined;
|
|
9370
|
-
json?: unknown;
|
|
9371
9368
|
metadata?: z.objectInputType<{
|
|
9372
9369
|
title: z.ZodOptional<z.ZodString>;
|
|
9373
9370
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9411,6 +9408,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
9411
9408
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
9412
9409
|
error: z.ZodOptional<z.ZodString>;
|
|
9413
9410
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
9411
|
+
images?: string[] | undefined;
|
|
9412
|
+
html?: string | undefined;
|
|
9413
|
+
json?: unknown;
|
|
9414
9414
|
summary?: string | undefined;
|
|
9415
9415
|
actions?: Record<string, unknown> | undefined;
|
|
9416
9416
|
markdown?: string | undefined;
|
|
@@ -11329,9 +11329,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
11329
11329
|
}>>;
|
|
11330
11330
|
}, z.ZodUnknown, "strip">>>;
|
|
11331
11331
|
}, "strip", z.ZodTypeAny, {
|
|
11332
|
-
images?: string[] | undefined;
|
|
11333
|
-
html?: string | undefined;
|
|
11334
|
-
json?: unknown;
|
|
11335
11332
|
metadata?: z.objectOutputType<{
|
|
11336
11333
|
title: z.ZodOptional<z.ZodString>;
|
|
11337
11334
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -11375,6 +11372,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
11375
11372
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
11376
11373
|
error: z.ZodOptional<z.ZodString>;
|
|
11377
11374
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
11375
|
+
images?: string[] | undefined;
|
|
11376
|
+
html?: string | undefined;
|
|
11377
|
+
json?: unknown;
|
|
11378
11378
|
summary?: string | undefined;
|
|
11379
11379
|
actions?: Record<string, unknown> | undefined;
|
|
11380
11380
|
markdown?: string | undefined;
|
|
@@ -11822,9 +11822,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
11822
11822
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
11823
11823
|
warning?: string | undefined;
|
|
11824
11824
|
}, {
|
|
11825
|
-
images?: string[] | undefined;
|
|
11826
|
-
html?: string | undefined;
|
|
11827
|
-
json?: unknown;
|
|
11828
11825
|
metadata?: z.objectInputType<{
|
|
11829
11826
|
title: z.ZodOptional<z.ZodString>;
|
|
11830
11827
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -11868,6 +11865,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
11868
11865
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
11869
11866
|
error: z.ZodOptional<z.ZodString>;
|
|
11870
11867
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
11868
|
+
images?: string[] | undefined;
|
|
11869
|
+
html?: string | undefined;
|
|
11870
|
+
json?: unknown;
|
|
11871
11871
|
summary?: string | undefined;
|
|
11872
11872
|
actions?: Record<string, unknown> | undefined;
|
|
11873
11873
|
markdown?: string | undefined;
|
|
@@ -12317,13 +12317,10 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
12317
12317
|
}>]>, "many">>;
|
|
12318
12318
|
other: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
12319
12319
|
}, "strip", z.ZodTypeAny, {
|
|
12320
|
+
operation: "search";
|
|
12320
12321
|
success: boolean;
|
|
12321
12322
|
error: string;
|
|
12322
|
-
operation: "search";
|
|
12323
12323
|
images?: ({
|
|
12324
|
-
images?: string[] | undefined;
|
|
12325
|
-
html?: string | undefined;
|
|
12326
|
-
json?: unknown;
|
|
12327
12324
|
metadata?: z.objectOutputType<{
|
|
12328
12325
|
title: z.ZodOptional<z.ZodString>;
|
|
12329
12326
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -12367,6 +12364,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
12367
12364
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
12368
12365
|
error: z.ZodOptional<z.ZodString>;
|
|
12369
12366
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
12367
|
+
images?: string[] | undefined;
|
|
12368
|
+
html?: string | undefined;
|
|
12369
|
+
json?: unknown;
|
|
12370
12370
|
summary?: string | undefined;
|
|
12371
12371
|
actions?: Record<string, unknown> | undefined;
|
|
12372
12372
|
markdown?: string | undefined;
|
|
@@ -12822,9 +12822,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
12822
12822
|
imageHeight?: number | undefined;
|
|
12823
12823
|
})[] | undefined;
|
|
12824
12824
|
web?: ({
|
|
12825
|
-
images?: string[] | undefined;
|
|
12826
|
-
html?: string | undefined;
|
|
12827
|
-
json?: unknown;
|
|
12828
12825
|
metadata?: z.objectOutputType<{
|
|
12829
12826
|
title: z.ZodOptional<z.ZodString>;
|
|
12830
12827
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -12868,6 +12865,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
12868
12865
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
12869
12866
|
error: z.ZodOptional<z.ZodString>;
|
|
12870
12867
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
12868
|
+
images?: string[] | undefined;
|
|
12869
|
+
html?: string | undefined;
|
|
12870
|
+
json?: unknown;
|
|
12871
12871
|
summary?: string | undefined;
|
|
12872
12872
|
actions?: Record<string, unknown> | undefined;
|
|
12873
12873
|
markdown?: string | undefined;
|
|
@@ -13321,9 +13321,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
13321
13321
|
category?: string | undefined;
|
|
13322
13322
|
})[] | undefined;
|
|
13323
13323
|
news?: ({
|
|
13324
|
-
images?: string[] | undefined;
|
|
13325
|
-
html?: string | undefined;
|
|
13326
|
-
json?: unknown;
|
|
13327
13324
|
metadata?: z.objectOutputType<{
|
|
13328
13325
|
title: z.ZodOptional<z.ZodString>;
|
|
13329
13326
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -13367,6 +13364,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
13367
13364
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
13368
13365
|
error: z.ZodOptional<z.ZodString>;
|
|
13369
13366
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
13367
|
+
images?: string[] | undefined;
|
|
13368
|
+
html?: string | undefined;
|
|
13369
|
+
json?: unknown;
|
|
13370
13370
|
summary?: string | undefined;
|
|
13371
13371
|
actions?: Record<string, unknown> | undefined;
|
|
13372
13372
|
markdown?: string | undefined;
|
|
@@ -13824,13 +13824,10 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
13824
13824
|
})[] | undefined;
|
|
13825
13825
|
other?: unknown[] | undefined;
|
|
13826
13826
|
}, {
|
|
13827
|
+
operation: "search";
|
|
13827
13828
|
success: boolean;
|
|
13828
13829
|
error: string;
|
|
13829
|
-
operation: "search";
|
|
13830
13830
|
images?: ({
|
|
13831
|
-
images?: string[] | undefined;
|
|
13832
|
-
html?: string | undefined;
|
|
13833
|
-
json?: unknown;
|
|
13834
13831
|
metadata?: z.objectInputType<{
|
|
13835
13832
|
title: z.ZodOptional<z.ZodString>;
|
|
13836
13833
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -13874,6 +13871,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
13874
13871
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
13875
13872
|
error: z.ZodOptional<z.ZodString>;
|
|
13876
13873
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
13874
|
+
images?: string[] | undefined;
|
|
13875
|
+
html?: string | undefined;
|
|
13876
|
+
json?: unknown;
|
|
13877
13877
|
summary?: string | undefined;
|
|
13878
13878
|
actions?: Record<string, unknown> | undefined;
|
|
13879
13879
|
markdown?: string | undefined;
|
|
@@ -14329,9 +14329,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
14329
14329
|
imageHeight?: number | undefined;
|
|
14330
14330
|
})[] | undefined;
|
|
14331
14331
|
web?: ({
|
|
14332
|
-
images?: string[] | undefined;
|
|
14333
|
-
html?: string | undefined;
|
|
14334
|
-
json?: unknown;
|
|
14335
14332
|
metadata?: z.objectInputType<{
|
|
14336
14333
|
title: z.ZodOptional<z.ZodString>;
|
|
14337
14334
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -14375,6 +14372,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
14375
14372
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
14376
14373
|
error: z.ZodOptional<z.ZodString>;
|
|
14377
14374
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
14375
|
+
images?: string[] | undefined;
|
|
14376
|
+
html?: string | undefined;
|
|
14377
|
+
json?: unknown;
|
|
14378
14378
|
summary?: string | undefined;
|
|
14379
14379
|
actions?: Record<string, unknown> | undefined;
|
|
14380
14380
|
markdown?: string | undefined;
|
|
@@ -14828,9 +14828,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
14828
14828
|
category?: string | undefined;
|
|
14829
14829
|
})[] | undefined;
|
|
14830
14830
|
news?: ({
|
|
14831
|
-
images?: string[] | undefined;
|
|
14832
|
-
html?: string | undefined;
|
|
14833
|
-
json?: unknown;
|
|
14834
14831
|
metadata?: z.objectInputType<{
|
|
14835
14832
|
title: z.ZodOptional<z.ZodString>;
|
|
14836
14833
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -14874,6 +14871,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
14874
14871
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
14875
14872
|
error: z.ZodOptional<z.ZodString>;
|
|
14876
14873
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
14874
|
+
images?: string[] | undefined;
|
|
14875
|
+
html?: string | undefined;
|
|
14876
|
+
json?: unknown;
|
|
14877
14877
|
summary?: string | undefined;
|
|
14878
14878
|
actions?: Record<string, unknown> | undefined;
|
|
14879
14879
|
markdown?: string | undefined;
|
|
@@ -15352,9 +15352,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
15352
15352
|
category?: string | undefined;
|
|
15353
15353
|
}>, "many">;
|
|
15354
15354
|
}, "strip", z.ZodTypeAny, {
|
|
15355
|
+
operation: "map";
|
|
15355
15356
|
success: boolean;
|
|
15356
15357
|
error: string;
|
|
15357
|
-
operation: "map";
|
|
15358
15358
|
links: {
|
|
15359
15359
|
url: string;
|
|
15360
15360
|
description?: string | undefined;
|
|
@@ -15362,9 +15362,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
15362
15362
|
category?: string | undefined;
|
|
15363
15363
|
}[];
|
|
15364
15364
|
}, {
|
|
15365
|
+
operation: "map";
|
|
15365
15366
|
success: boolean;
|
|
15366
15367
|
error: string;
|
|
15367
|
-
operation: "map";
|
|
15368
15368
|
links: {
|
|
15369
15369
|
url: string;
|
|
15370
15370
|
description?: string | undefined;
|
|
@@ -16831,9 +16831,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
16831
16831
|
}>>;
|
|
16832
16832
|
}, z.ZodUnknown, "strip">>>;
|
|
16833
16833
|
}, "strip", z.ZodTypeAny, {
|
|
16834
|
-
images?: string[] | undefined;
|
|
16835
|
-
html?: string | undefined;
|
|
16836
|
-
json?: unknown;
|
|
16837
16834
|
metadata?: z.objectOutputType<{
|
|
16838
16835
|
title: z.ZodOptional<z.ZodString>;
|
|
16839
16836
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -16877,6 +16874,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
16877
16874
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
16878
16875
|
error: z.ZodOptional<z.ZodString>;
|
|
16879
16876
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
16877
|
+
images?: string[] | undefined;
|
|
16878
|
+
html?: string | undefined;
|
|
16879
|
+
json?: unknown;
|
|
16880
16880
|
summary?: string | undefined;
|
|
16881
16881
|
actions?: Record<string, unknown> | undefined;
|
|
16882
16882
|
markdown?: string | undefined;
|
|
@@ -17324,9 +17324,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
17324
17324
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
17325
17325
|
warning?: string | undefined;
|
|
17326
17326
|
}, {
|
|
17327
|
-
images?: string[] | undefined;
|
|
17328
|
-
html?: string | undefined;
|
|
17329
|
-
json?: unknown;
|
|
17330
17327
|
metadata?: z.objectInputType<{
|
|
17331
17328
|
title: z.ZodOptional<z.ZodString>;
|
|
17332
17329
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -17370,6 +17367,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
17370
17367
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
17371
17368
|
error: z.ZodOptional<z.ZodString>;
|
|
17372
17369
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
17370
|
+
images?: string[] | undefined;
|
|
17371
|
+
html?: string | undefined;
|
|
17372
|
+
json?: unknown;
|
|
17373
17373
|
summary?: string | undefined;
|
|
17374
17374
|
actions?: Record<string, unknown> | undefined;
|
|
17375
17375
|
markdown?: string | undefined;
|
|
@@ -17818,13 +17818,11 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
17818
17818
|
warning?: string | undefined;
|
|
17819
17819
|
}>, "many">;
|
|
17820
17820
|
}, "strip", z.ZodTypeAny, {
|
|
17821
|
+
operation: "crawl";
|
|
17821
17822
|
status: "completed" | "failed" | "scraping" | "cancelled";
|
|
17822
17823
|
success: boolean;
|
|
17823
17824
|
error: string;
|
|
17824
17825
|
data: {
|
|
17825
|
-
images?: string[] | undefined;
|
|
17826
|
-
html?: string | undefined;
|
|
17827
|
-
json?: unknown;
|
|
17828
17826
|
metadata?: z.objectOutputType<{
|
|
17829
17827
|
title: z.ZodOptional<z.ZodString>;
|
|
17830
17828
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -17868,6 +17866,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
17868
17866
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
17869
17867
|
error: z.ZodOptional<z.ZodString>;
|
|
17870
17868
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
17869
|
+
images?: string[] | undefined;
|
|
17870
|
+
html?: string | undefined;
|
|
17871
|
+
json?: unknown;
|
|
17871
17872
|
summary?: string | undefined;
|
|
17872
17873
|
actions?: Record<string, unknown> | undefined;
|
|
17873
17874
|
markdown?: string | undefined;
|
|
@@ -18315,19 +18316,16 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
18315
18316
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
18316
18317
|
warning?: string | undefined;
|
|
18317
18318
|
}[];
|
|
18318
|
-
operation: "crawl";
|
|
18319
18319
|
completed: number;
|
|
18320
18320
|
total: number;
|
|
18321
18321
|
creditsUsed?: number | undefined;
|
|
18322
18322
|
expiresAt?: string | undefined;
|
|
18323
18323
|
}, {
|
|
18324
|
+
operation: "crawl";
|
|
18324
18325
|
status: "completed" | "failed" | "scraping" | "cancelled";
|
|
18325
18326
|
success: boolean;
|
|
18326
18327
|
error: string;
|
|
18327
18328
|
data: {
|
|
18328
|
-
images?: string[] | undefined;
|
|
18329
|
-
html?: string | undefined;
|
|
18330
|
-
json?: unknown;
|
|
18331
18329
|
metadata?: z.objectInputType<{
|
|
18332
18330
|
title: z.ZodOptional<z.ZodString>;
|
|
18333
18331
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -18371,6 +18369,9 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
18371
18369
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
18372
18370
|
error: z.ZodOptional<z.ZodString>;
|
|
18373
18371
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
18372
|
+
images?: string[] | undefined;
|
|
18373
|
+
html?: string | undefined;
|
|
18374
|
+
json?: unknown;
|
|
18374
18375
|
summary?: string | undefined;
|
|
18375
18376
|
actions?: Record<string, unknown> | undefined;
|
|
18376
18377
|
markdown?: string | undefined;
|
|
@@ -18818,7 +18819,6 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
18818
18819
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
18819
18820
|
warning?: string | undefined;
|
|
18820
18821
|
}[];
|
|
18821
|
-
operation: "crawl";
|
|
18822
18822
|
completed: number;
|
|
18823
18823
|
total: number;
|
|
18824
18824
|
creditsUsed?: number | undefined;
|
|
@@ -18835,22 +18835,22 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
18835
18835
|
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18836
18836
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
18837
18837
|
}, "strip", z.ZodTypeAny, {
|
|
18838
|
+
operation: "extract";
|
|
18838
18839
|
success: boolean;
|
|
18839
18840
|
error: string;
|
|
18840
|
-
operation: "extract";
|
|
18841
18841
|
status?: "completed" | "failed" | "cancelled" | "processing" | undefined;
|
|
18842
|
-
data?: unknown;
|
|
18843
18842
|
id?: string | undefined;
|
|
18843
|
+
data?: unknown;
|
|
18844
18844
|
sources?: Record<string, unknown> | undefined;
|
|
18845
18845
|
warning?: string | undefined;
|
|
18846
18846
|
expiresAt?: string | undefined;
|
|
18847
18847
|
}, {
|
|
18848
|
+
operation: "extract";
|
|
18848
18849
|
success: boolean;
|
|
18849
18850
|
error: string;
|
|
18850
|
-
operation: "extract";
|
|
18851
18851
|
status?: "completed" | "failed" | "cancelled" | "processing" | undefined;
|
|
18852
|
-
data?: unknown;
|
|
18853
18852
|
id?: string | undefined;
|
|
18853
|
+
data?: unknown;
|
|
18854
18854
|
sources?: Record<string, unknown> | undefined;
|
|
18855
18855
|
warning?: string | undefined;
|
|
18856
18856
|
expiresAt?: string | undefined;
|
|
@@ -19116,9 +19116,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19116
19116
|
operation: z.ZodLiteral<"scrape">;
|
|
19117
19117
|
url: z.ZodString;
|
|
19118
19118
|
}, "strip", z.ZodTypeAny, {
|
|
19119
|
+
operation: "scrape";
|
|
19119
19120
|
url: string;
|
|
19120
19121
|
timeout: number;
|
|
19121
|
-
operation: "scrape";
|
|
19122
19122
|
onlyMainContent: boolean;
|
|
19123
19123
|
waitFor: number;
|
|
19124
19124
|
formats: ("images" | "html" | "json" | "summary" | "markdown" | "screenshot" | "rawHtml" | "links" | "changeTracking" | "attributes" | "branding" | {
|
|
@@ -19150,8 +19150,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19150
19150
|
})[];
|
|
19151
19151
|
maxAge: number;
|
|
19152
19152
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19153
|
-
maxRetries?: number | undefined;
|
|
19154
19153
|
headers?: Record<string, string> | undefined;
|
|
19154
|
+
maxRetries?: number | undefined;
|
|
19155
19155
|
location?: {
|
|
19156
19156
|
country?: string | undefined;
|
|
19157
19157
|
languages?: string[] | undefined;
|
|
@@ -19209,12 +19209,12 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19209
19209
|
proxy?: string | undefined;
|
|
19210
19210
|
storeInCache?: boolean | undefined;
|
|
19211
19211
|
}, {
|
|
19212
|
-
url: string;
|
|
19213
19212
|
operation: "scrape";
|
|
19213
|
+
url: string;
|
|
19214
19214
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19215
|
+
headers?: Record<string, string> | undefined;
|
|
19215
19216
|
maxRetries?: number | undefined;
|
|
19216
19217
|
timeout?: number | undefined;
|
|
19217
|
-
headers?: Record<string, string> | undefined;
|
|
19218
19218
|
location?: {
|
|
19219
19219
|
country?: string | undefined;
|
|
19220
19220
|
languages?: string[] | undefined;
|
|
@@ -19656,8 +19656,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19656
19656
|
proxy?: string | undefined;
|
|
19657
19657
|
storeInCache?: boolean | undefined;
|
|
19658
19658
|
}, {
|
|
19659
|
-
timeout?: number | undefined;
|
|
19660
19659
|
headers?: Record<string, string> | undefined;
|
|
19660
|
+
timeout?: number | undefined;
|
|
19661
19661
|
location?: {
|
|
19662
19662
|
country?: string | undefined;
|
|
19663
19663
|
languages?: string[] | undefined;
|
|
@@ -19746,8 +19746,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19746
19746
|
}>>;
|
|
19747
19747
|
integration: z.ZodOptional<z.ZodString>;
|
|
19748
19748
|
}, "strip", z.ZodTypeAny, {
|
|
19749
|
-
query: string;
|
|
19750
19749
|
operation: "search";
|
|
19750
|
+
query: string;
|
|
19751
19751
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19752
19752
|
maxRetries?: number | undefined;
|
|
19753
19753
|
timeout?: number | undefined;
|
|
@@ -19853,8 +19853,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19853
19853
|
storeInCache?: boolean | undefined;
|
|
19854
19854
|
} | undefined;
|
|
19855
19855
|
}, {
|
|
19856
|
-
query: string;
|
|
19857
19856
|
operation: "search";
|
|
19857
|
+
query: string;
|
|
19858
19858
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19859
19859
|
maxRetries?: number | undefined;
|
|
19860
19860
|
timeout?: number | undefined;
|
|
@@ -19871,8 +19871,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19871
19871
|
tbs?: string | undefined;
|
|
19872
19872
|
ignoreInvalidURLs?: boolean | undefined;
|
|
19873
19873
|
scrapeOptions?: {
|
|
19874
|
-
timeout?: number | undefined;
|
|
19875
19874
|
headers?: Record<string, string> | undefined;
|
|
19875
|
+
timeout?: number | undefined;
|
|
19876
19876
|
location?: {
|
|
19877
19877
|
country?: string | undefined;
|
|
19878
19878
|
languages?: string[] | undefined;
|
|
@@ -19983,8 +19983,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19983
19983
|
languages?: string[] | undefined;
|
|
19984
19984
|
}>>;
|
|
19985
19985
|
}, "strip", z.ZodTypeAny, {
|
|
19986
|
-
url: string;
|
|
19987
19986
|
operation: "map";
|
|
19987
|
+
url: string;
|
|
19988
19988
|
search?: string | undefined;
|
|
19989
19989
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19990
19990
|
maxRetries?: number | undefined;
|
|
@@ -19999,8 +19999,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19999
19999
|
sitemap?: "only" | "include" | "skip" | undefined;
|
|
20000
20000
|
includeSubdomains?: boolean | undefined;
|
|
20001
20001
|
}, {
|
|
20002
|
-
url: string;
|
|
20003
20002
|
operation: "map";
|
|
20003
|
+
url: string;
|
|
20004
20004
|
search?: string | undefined;
|
|
20005
20005
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20006
20006
|
maxRetries?: number | undefined;
|
|
@@ -20040,13 +20040,13 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20040
20040
|
events: z.ZodOptional<z.ZodArray<z.ZodEnum<["completed", "failed", "page", "started"]>, "many">>;
|
|
20041
20041
|
}, "strip", z.ZodTypeAny, {
|
|
20042
20042
|
url: string;
|
|
20043
|
-
headers?: Record<string, string> | undefined;
|
|
20044
20043
|
metadata?: Record<string, string> | undefined;
|
|
20044
|
+
headers?: Record<string, string> | undefined;
|
|
20045
20045
|
events?: ("page" | "completed" | "failed" | "started")[] | undefined;
|
|
20046
20046
|
}, {
|
|
20047
20047
|
url: string;
|
|
20048
|
-
headers?: Record<string, string> | undefined;
|
|
20049
20048
|
metadata?: Record<string, string> | undefined;
|
|
20049
|
+
headers?: Record<string, string> | undefined;
|
|
20050
20050
|
events?: ("page" | "completed" | "failed" | "started")[] | undefined;
|
|
20051
20051
|
}>]>>;
|
|
20052
20052
|
scrapeOptions: z.ZodOptional<z.ZodObject<{
|
|
@@ -20378,8 +20378,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20378
20378
|
proxy?: string | undefined;
|
|
20379
20379
|
storeInCache?: boolean | undefined;
|
|
20380
20380
|
}, {
|
|
20381
|
-
timeout?: number | undefined;
|
|
20382
20381
|
headers?: Record<string, string> | undefined;
|
|
20382
|
+
timeout?: number | undefined;
|
|
20383
20383
|
location?: {
|
|
20384
20384
|
country?: string | undefined;
|
|
20385
20385
|
languages?: string[] | undefined;
|
|
@@ -20471,16 +20471,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20471
20471
|
pollInterval: z.ZodOptional<z.ZodNumber>;
|
|
20472
20472
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
20473
20473
|
}, "strip", z.ZodTypeAny, {
|
|
20474
|
-
url: string;
|
|
20475
20474
|
operation: "crawl";
|
|
20475
|
+
url: string;
|
|
20476
20476
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20477
20477
|
maxRetries?: number | undefined;
|
|
20478
20478
|
timeout?: number | undefined;
|
|
20479
20479
|
limit?: number | undefined;
|
|
20480
20480
|
webhook?: string | {
|
|
20481
20481
|
url: string;
|
|
20482
|
-
headers?: Record<string, string> | undefined;
|
|
20483
20482
|
metadata?: Record<string, string> | undefined;
|
|
20483
|
+
headers?: Record<string, string> | undefined;
|
|
20484
20484
|
events?: ("page" | "completed" | "failed" | "started")[] | undefined;
|
|
20485
20485
|
} | undefined;
|
|
20486
20486
|
integration?: string | undefined;
|
|
@@ -20588,16 +20588,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20588
20588
|
zeroDataRetention?: boolean | undefined;
|
|
20589
20589
|
pollInterval?: number | undefined;
|
|
20590
20590
|
}, {
|
|
20591
|
-
url: string;
|
|
20592
20591
|
operation: "crawl";
|
|
20592
|
+
url: string;
|
|
20593
20593
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20594
20594
|
maxRetries?: number | undefined;
|
|
20595
20595
|
timeout?: number | undefined;
|
|
20596
20596
|
limit?: number | undefined;
|
|
20597
20597
|
webhook?: string | {
|
|
20598
20598
|
url: string;
|
|
20599
|
-
headers?: Record<string, string> | undefined;
|
|
20600
20599
|
metadata?: Record<string, string> | undefined;
|
|
20600
|
+
headers?: Record<string, string> | undefined;
|
|
20601
20601
|
events?: ("page" | "completed" | "failed" | "started")[] | undefined;
|
|
20602
20602
|
} | undefined;
|
|
20603
20603
|
integration?: string | undefined;
|
|
@@ -20606,8 +20606,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20606
20606
|
excludePaths?: string[] | undefined;
|
|
20607
20607
|
backoffFactor?: number | undefined;
|
|
20608
20608
|
scrapeOptions?: {
|
|
20609
|
-
timeout?: number | undefined;
|
|
20610
20609
|
headers?: Record<string, string> | undefined;
|
|
20610
|
+
timeout?: number | undefined;
|
|
20611
20611
|
location?: {
|
|
20612
20612
|
country?: string | undefined;
|
|
20613
20613
|
languages?: string[] | undefined;
|
|
@@ -21046,8 +21046,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21046
21046
|
proxy?: string | undefined;
|
|
21047
21047
|
storeInCache?: boolean | undefined;
|
|
21048
21048
|
}, {
|
|
21049
|
-
timeout?: number | undefined;
|
|
21050
21049
|
headers?: Record<string, string> | undefined;
|
|
21050
|
+
timeout?: number | undefined;
|
|
21051
21051
|
location?: {
|
|
21052
21052
|
country?: string | undefined;
|
|
21053
21053
|
languages?: string[] | undefined;
|
|
@@ -21269,8 +21269,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21269
21269
|
backoffFactor?: number | undefined;
|
|
21270
21270
|
ignoreInvalidURLs?: boolean | undefined;
|
|
21271
21271
|
scrapeOptions?: {
|
|
21272
|
-
timeout?: number | undefined;
|
|
21273
21272
|
headers?: Record<string, string> | undefined;
|
|
21273
|
+
timeout?: number | undefined;
|
|
21274
21274
|
location?: {
|
|
21275
21275
|
country?: string | undefined;
|
|
21276
21276
|
languages?: string[] | undefined;
|
|
@@ -22817,12 +22817,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
22817
22817
|
} & {
|
|
22818
22818
|
operation: z.ZodLiteral<"scrape">;
|
|
22819
22819
|
}, "strip", z.ZodTypeAny, {
|
|
22820
|
+
operation: "scrape";
|
|
22820
22821
|
success: boolean;
|
|
22821
22822
|
error: string;
|
|
22822
|
-
operation: "scrape";
|
|
22823
|
-
images?: string[] | undefined;
|
|
22824
|
-
html?: string | undefined;
|
|
22825
|
-
json?: unknown;
|
|
22826
22823
|
metadata?: z.objectOutputType<{
|
|
22827
22824
|
title: z.ZodOptional<z.ZodString>;
|
|
22828
22825
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -22866,6 +22863,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
22866
22863
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
22867
22864
|
error: z.ZodOptional<z.ZodString>;
|
|
22868
22865
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
22866
|
+
images?: string[] | undefined;
|
|
22867
|
+
html?: string | undefined;
|
|
22868
|
+
json?: unknown;
|
|
22869
22869
|
summary?: string | undefined;
|
|
22870
22870
|
actions?: Record<string, unknown> | undefined;
|
|
22871
22871
|
markdown?: string | undefined;
|
|
@@ -23313,12 +23313,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
23313
23313
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
23314
23314
|
warning?: string | undefined;
|
|
23315
23315
|
}, {
|
|
23316
|
+
operation: "scrape";
|
|
23316
23317
|
success: boolean;
|
|
23317
23318
|
error: string;
|
|
23318
|
-
operation: "scrape";
|
|
23319
|
-
images?: string[] | undefined;
|
|
23320
|
-
html?: string | undefined;
|
|
23321
|
-
json?: unknown;
|
|
23322
23319
|
metadata?: z.objectInputType<{
|
|
23323
23320
|
title: z.ZodOptional<z.ZodString>;
|
|
23324
23321
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -23362,6 +23359,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
23362
23359
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
23363
23360
|
error: z.ZodOptional<z.ZodString>;
|
|
23364
23361
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
23362
|
+
images?: string[] | undefined;
|
|
23363
|
+
html?: string | undefined;
|
|
23364
|
+
json?: unknown;
|
|
23365
23365
|
summary?: string | undefined;
|
|
23366
23366
|
actions?: Record<string, unknown> | undefined;
|
|
23367
23367
|
markdown?: string | undefined;
|
|
@@ -25278,9 +25278,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
25278
25278
|
}>>;
|
|
25279
25279
|
}, z.ZodUnknown, "strip">>>;
|
|
25280
25280
|
}, "strip", z.ZodTypeAny, {
|
|
25281
|
-
images?: string[] | undefined;
|
|
25282
|
-
html?: string | undefined;
|
|
25283
|
-
json?: unknown;
|
|
25284
25281
|
metadata?: z.objectOutputType<{
|
|
25285
25282
|
title: z.ZodOptional<z.ZodString>;
|
|
25286
25283
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -25324,6 +25321,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
25324
25321
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
25325
25322
|
error: z.ZodOptional<z.ZodString>;
|
|
25326
25323
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
25324
|
+
images?: string[] | undefined;
|
|
25325
|
+
html?: string | undefined;
|
|
25326
|
+
json?: unknown;
|
|
25327
25327
|
summary?: string | undefined;
|
|
25328
25328
|
actions?: Record<string, unknown> | undefined;
|
|
25329
25329
|
markdown?: string | undefined;
|
|
@@ -25771,9 +25771,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
25771
25771
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
25772
25772
|
warning?: string | undefined;
|
|
25773
25773
|
}, {
|
|
25774
|
-
images?: string[] | undefined;
|
|
25775
|
-
html?: string | undefined;
|
|
25776
|
-
json?: unknown;
|
|
25777
25774
|
metadata?: z.objectInputType<{
|
|
25778
25775
|
title: z.ZodOptional<z.ZodString>;
|
|
25779
25776
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -25817,6 +25814,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
25817
25814
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
25818
25815
|
error: z.ZodOptional<z.ZodString>;
|
|
25819
25816
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
25817
|
+
images?: string[] | undefined;
|
|
25818
|
+
html?: string | undefined;
|
|
25819
|
+
json?: unknown;
|
|
25820
25820
|
summary?: string | undefined;
|
|
25821
25821
|
actions?: Record<string, unknown> | undefined;
|
|
25822
25822
|
markdown?: string | undefined;
|
|
@@ -27738,9 +27738,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
27738
27738
|
}>>;
|
|
27739
27739
|
}, z.ZodUnknown, "strip">>>;
|
|
27740
27740
|
}, "strip", z.ZodTypeAny, {
|
|
27741
|
-
images?: string[] | undefined;
|
|
27742
|
-
html?: string | undefined;
|
|
27743
|
-
json?: unknown;
|
|
27744
27741
|
metadata?: z.objectOutputType<{
|
|
27745
27742
|
title: z.ZodOptional<z.ZodString>;
|
|
27746
27743
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -27784,6 +27781,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
27784
27781
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
27785
27782
|
error: z.ZodOptional<z.ZodString>;
|
|
27786
27783
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
27784
|
+
images?: string[] | undefined;
|
|
27785
|
+
html?: string | undefined;
|
|
27786
|
+
json?: unknown;
|
|
27787
27787
|
summary?: string | undefined;
|
|
27788
27788
|
actions?: Record<string, unknown> | undefined;
|
|
27789
27789
|
markdown?: string | undefined;
|
|
@@ -28231,9 +28231,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
28231
28231
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
28232
28232
|
warning?: string | undefined;
|
|
28233
28233
|
}, {
|
|
28234
|
-
images?: string[] | undefined;
|
|
28235
|
-
html?: string | undefined;
|
|
28236
|
-
json?: unknown;
|
|
28237
28234
|
metadata?: z.objectInputType<{
|
|
28238
28235
|
title: z.ZodOptional<z.ZodString>;
|
|
28239
28236
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -28277,6 +28274,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
28277
28274
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
28278
28275
|
error: z.ZodOptional<z.ZodString>;
|
|
28279
28276
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
28277
|
+
images?: string[] | undefined;
|
|
28278
|
+
html?: string | undefined;
|
|
28279
|
+
json?: unknown;
|
|
28280
28280
|
summary?: string | undefined;
|
|
28281
28281
|
actions?: Record<string, unknown> | undefined;
|
|
28282
28282
|
markdown?: string | undefined;
|
|
@@ -30195,9 +30195,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
30195
30195
|
}>>;
|
|
30196
30196
|
}, z.ZodUnknown, "strip">>>;
|
|
30197
30197
|
}, "strip", z.ZodTypeAny, {
|
|
30198
|
-
images?: string[] | undefined;
|
|
30199
|
-
html?: string | undefined;
|
|
30200
|
-
json?: unknown;
|
|
30201
30198
|
metadata?: z.objectOutputType<{
|
|
30202
30199
|
title: z.ZodOptional<z.ZodString>;
|
|
30203
30200
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -30241,6 +30238,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
30241
30238
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
30242
30239
|
error: z.ZodOptional<z.ZodString>;
|
|
30243
30240
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
30241
|
+
images?: string[] | undefined;
|
|
30242
|
+
html?: string | undefined;
|
|
30243
|
+
json?: unknown;
|
|
30244
30244
|
summary?: string | undefined;
|
|
30245
30245
|
actions?: Record<string, unknown> | undefined;
|
|
30246
30246
|
markdown?: string | undefined;
|
|
@@ -30688,9 +30688,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
30688
30688
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
30689
30689
|
warning?: string | undefined;
|
|
30690
30690
|
}, {
|
|
30691
|
-
images?: string[] | undefined;
|
|
30692
|
-
html?: string | undefined;
|
|
30693
|
-
json?: unknown;
|
|
30694
30691
|
metadata?: z.objectInputType<{
|
|
30695
30692
|
title: z.ZodOptional<z.ZodString>;
|
|
30696
30693
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -30734,6 +30731,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
30734
30731
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
30735
30732
|
error: z.ZodOptional<z.ZodString>;
|
|
30736
30733
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
30734
|
+
images?: string[] | undefined;
|
|
30735
|
+
html?: string | undefined;
|
|
30736
|
+
json?: unknown;
|
|
30737
30737
|
summary?: string | undefined;
|
|
30738
30738
|
actions?: Record<string, unknown> | undefined;
|
|
30739
30739
|
markdown?: string | undefined;
|
|
@@ -31183,13 +31183,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
31183
31183
|
}>]>, "many">>;
|
|
31184
31184
|
other: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
31185
31185
|
}, "strip", z.ZodTypeAny, {
|
|
31186
|
+
operation: "search";
|
|
31186
31187
|
success: boolean;
|
|
31187
31188
|
error: string;
|
|
31188
|
-
operation: "search";
|
|
31189
31189
|
images?: ({
|
|
31190
|
-
images?: string[] | undefined;
|
|
31191
|
-
html?: string | undefined;
|
|
31192
|
-
json?: unknown;
|
|
31193
31190
|
metadata?: z.objectOutputType<{
|
|
31194
31191
|
title: z.ZodOptional<z.ZodString>;
|
|
31195
31192
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -31233,6 +31230,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
31233
31230
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
31234
31231
|
error: z.ZodOptional<z.ZodString>;
|
|
31235
31232
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
31233
|
+
images?: string[] | undefined;
|
|
31234
|
+
html?: string | undefined;
|
|
31235
|
+
json?: unknown;
|
|
31236
31236
|
summary?: string | undefined;
|
|
31237
31237
|
actions?: Record<string, unknown> | undefined;
|
|
31238
31238
|
markdown?: string | undefined;
|
|
@@ -31688,9 +31688,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
31688
31688
|
imageHeight?: number | undefined;
|
|
31689
31689
|
})[] | undefined;
|
|
31690
31690
|
web?: ({
|
|
31691
|
-
images?: string[] | undefined;
|
|
31692
|
-
html?: string | undefined;
|
|
31693
|
-
json?: unknown;
|
|
31694
31691
|
metadata?: z.objectOutputType<{
|
|
31695
31692
|
title: z.ZodOptional<z.ZodString>;
|
|
31696
31693
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -31734,6 +31731,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
31734
31731
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
31735
31732
|
error: z.ZodOptional<z.ZodString>;
|
|
31736
31733
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
31734
|
+
images?: string[] | undefined;
|
|
31735
|
+
html?: string | undefined;
|
|
31736
|
+
json?: unknown;
|
|
31737
31737
|
summary?: string | undefined;
|
|
31738
31738
|
actions?: Record<string, unknown> | undefined;
|
|
31739
31739
|
markdown?: string | undefined;
|
|
@@ -32187,9 +32187,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
32187
32187
|
category?: string | undefined;
|
|
32188
32188
|
})[] | undefined;
|
|
32189
32189
|
news?: ({
|
|
32190
|
-
images?: string[] | undefined;
|
|
32191
|
-
html?: string | undefined;
|
|
32192
|
-
json?: unknown;
|
|
32193
32190
|
metadata?: z.objectOutputType<{
|
|
32194
32191
|
title: z.ZodOptional<z.ZodString>;
|
|
32195
32192
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -32233,6 +32230,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
32233
32230
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
32234
32231
|
error: z.ZodOptional<z.ZodString>;
|
|
32235
32232
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
32233
|
+
images?: string[] | undefined;
|
|
32234
|
+
html?: string | undefined;
|
|
32235
|
+
json?: unknown;
|
|
32236
32236
|
summary?: string | undefined;
|
|
32237
32237
|
actions?: Record<string, unknown> | undefined;
|
|
32238
32238
|
markdown?: string | undefined;
|
|
@@ -32690,13 +32690,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
32690
32690
|
})[] | undefined;
|
|
32691
32691
|
other?: unknown[] | undefined;
|
|
32692
32692
|
}, {
|
|
32693
|
+
operation: "search";
|
|
32693
32694
|
success: boolean;
|
|
32694
32695
|
error: string;
|
|
32695
|
-
operation: "search";
|
|
32696
32696
|
images?: ({
|
|
32697
|
-
images?: string[] | undefined;
|
|
32698
|
-
html?: string | undefined;
|
|
32699
|
-
json?: unknown;
|
|
32700
32697
|
metadata?: z.objectInputType<{
|
|
32701
32698
|
title: z.ZodOptional<z.ZodString>;
|
|
32702
32699
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -32740,6 +32737,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
32740
32737
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
32741
32738
|
error: z.ZodOptional<z.ZodString>;
|
|
32742
32739
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
32740
|
+
images?: string[] | undefined;
|
|
32741
|
+
html?: string | undefined;
|
|
32742
|
+
json?: unknown;
|
|
32743
32743
|
summary?: string | undefined;
|
|
32744
32744
|
actions?: Record<string, unknown> | undefined;
|
|
32745
32745
|
markdown?: string | undefined;
|
|
@@ -33195,9 +33195,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
33195
33195
|
imageHeight?: number | undefined;
|
|
33196
33196
|
})[] | undefined;
|
|
33197
33197
|
web?: ({
|
|
33198
|
-
images?: string[] | undefined;
|
|
33199
|
-
html?: string | undefined;
|
|
33200
|
-
json?: unknown;
|
|
33201
33198
|
metadata?: z.objectInputType<{
|
|
33202
33199
|
title: z.ZodOptional<z.ZodString>;
|
|
33203
33200
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -33241,6 +33238,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
33241
33238
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
33242
33239
|
error: z.ZodOptional<z.ZodString>;
|
|
33243
33240
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
33241
|
+
images?: string[] | undefined;
|
|
33242
|
+
html?: string | undefined;
|
|
33243
|
+
json?: unknown;
|
|
33244
33244
|
summary?: string | undefined;
|
|
33245
33245
|
actions?: Record<string, unknown> | undefined;
|
|
33246
33246
|
markdown?: string | undefined;
|
|
@@ -33694,9 +33694,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
33694
33694
|
category?: string | undefined;
|
|
33695
33695
|
})[] | undefined;
|
|
33696
33696
|
news?: ({
|
|
33697
|
-
images?: string[] | undefined;
|
|
33698
|
-
html?: string | undefined;
|
|
33699
|
-
json?: unknown;
|
|
33700
33697
|
metadata?: z.objectInputType<{
|
|
33701
33698
|
title: z.ZodOptional<z.ZodString>;
|
|
33702
33699
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -33740,6 +33737,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
33740
33737
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
33741
33738
|
error: z.ZodOptional<z.ZodString>;
|
|
33742
33739
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
33740
|
+
images?: string[] | undefined;
|
|
33741
|
+
html?: string | undefined;
|
|
33742
|
+
json?: unknown;
|
|
33743
33743
|
summary?: string | undefined;
|
|
33744
33744
|
actions?: Record<string, unknown> | undefined;
|
|
33745
33745
|
markdown?: string | undefined;
|
|
@@ -34218,9 +34218,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
34218
34218
|
category?: string | undefined;
|
|
34219
34219
|
}>, "many">;
|
|
34220
34220
|
}, "strip", z.ZodTypeAny, {
|
|
34221
|
+
operation: "map";
|
|
34221
34222
|
success: boolean;
|
|
34222
34223
|
error: string;
|
|
34223
|
-
operation: "map";
|
|
34224
34224
|
links: {
|
|
34225
34225
|
url: string;
|
|
34226
34226
|
description?: string | undefined;
|
|
@@ -34228,9 +34228,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
34228
34228
|
category?: string | undefined;
|
|
34229
34229
|
}[];
|
|
34230
34230
|
}, {
|
|
34231
|
+
operation: "map";
|
|
34231
34232
|
success: boolean;
|
|
34232
34233
|
error: string;
|
|
34233
|
-
operation: "map";
|
|
34234
34234
|
links: {
|
|
34235
34235
|
url: string;
|
|
34236
34236
|
description?: string | undefined;
|
|
@@ -35697,9 +35697,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
35697
35697
|
}>>;
|
|
35698
35698
|
}, z.ZodUnknown, "strip">>>;
|
|
35699
35699
|
}, "strip", z.ZodTypeAny, {
|
|
35700
|
-
images?: string[] | undefined;
|
|
35701
|
-
html?: string | undefined;
|
|
35702
|
-
json?: unknown;
|
|
35703
35700
|
metadata?: z.objectOutputType<{
|
|
35704
35701
|
title: z.ZodOptional<z.ZodString>;
|
|
35705
35702
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -35743,6 +35740,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
35743
35740
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
35744
35741
|
error: z.ZodOptional<z.ZodString>;
|
|
35745
35742
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
35743
|
+
images?: string[] | undefined;
|
|
35744
|
+
html?: string | undefined;
|
|
35745
|
+
json?: unknown;
|
|
35746
35746
|
summary?: string | undefined;
|
|
35747
35747
|
actions?: Record<string, unknown> | undefined;
|
|
35748
35748
|
markdown?: string | undefined;
|
|
@@ -36190,9 +36190,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
36190
36190
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
36191
36191
|
warning?: string | undefined;
|
|
36192
36192
|
}, {
|
|
36193
|
-
images?: string[] | undefined;
|
|
36194
|
-
html?: string | undefined;
|
|
36195
|
-
json?: unknown;
|
|
36196
36193
|
metadata?: z.objectInputType<{
|
|
36197
36194
|
title: z.ZodOptional<z.ZodString>;
|
|
36198
36195
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -36236,6 +36233,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
36236
36233
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
36237
36234
|
error: z.ZodOptional<z.ZodString>;
|
|
36238
36235
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
36236
|
+
images?: string[] | undefined;
|
|
36237
|
+
html?: string | undefined;
|
|
36238
|
+
json?: unknown;
|
|
36239
36239
|
summary?: string | undefined;
|
|
36240
36240
|
actions?: Record<string, unknown> | undefined;
|
|
36241
36241
|
markdown?: string | undefined;
|
|
@@ -36684,13 +36684,11 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
36684
36684
|
warning?: string | undefined;
|
|
36685
36685
|
}>, "many">;
|
|
36686
36686
|
}, "strip", z.ZodTypeAny, {
|
|
36687
|
+
operation: "crawl";
|
|
36687
36688
|
status: "completed" | "failed" | "scraping" | "cancelled";
|
|
36688
36689
|
success: boolean;
|
|
36689
36690
|
error: string;
|
|
36690
36691
|
data: {
|
|
36691
|
-
images?: string[] | undefined;
|
|
36692
|
-
html?: string | undefined;
|
|
36693
|
-
json?: unknown;
|
|
36694
36692
|
metadata?: z.objectOutputType<{
|
|
36695
36693
|
title: z.ZodOptional<z.ZodString>;
|
|
36696
36694
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -36734,6 +36732,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
36734
36732
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
36735
36733
|
error: z.ZodOptional<z.ZodString>;
|
|
36736
36734
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
36735
|
+
images?: string[] | undefined;
|
|
36736
|
+
html?: string | undefined;
|
|
36737
|
+
json?: unknown;
|
|
36737
36738
|
summary?: string | undefined;
|
|
36738
36739
|
actions?: Record<string, unknown> | undefined;
|
|
36739
36740
|
markdown?: string | undefined;
|
|
@@ -37181,19 +37182,16 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
37181
37182
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
37182
37183
|
warning?: string | undefined;
|
|
37183
37184
|
}[];
|
|
37184
|
-
operation: "crawl";
|
|
37185
37185
|
completed: number;
|
|
37186
37186
|
total: number;
|
|
37187
37187
|
creditsUsed?: number | undefined;
|
|
37188
37188
|
expiresAt?: string | undefined;
|
|
37189
37189
|
}, {
|
|
37190
|
+
operation: "crawl";
|
|
37190
37191
|
status: "completed" | "failed" | "scraping" | "cancelled";
|
|
37191
37192
|
success: boolean;
|
|
37192
37193
|
error: string;
|
|
37193
37194
|
data: {
|
|
37194
|
-
images?: string[] | undefined;
|
|
37195
|
-
html?: string | undefined;
|
|
37196
|
-
json?: unknown;
|
|
37197
37195
|
metadata?: z.objectInputType<{
|
|
37198
37196
|
title: z.ZodOptional<z.ZodString>;
|
|
37199
37197
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -37237,6 +37235,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
37237
37235
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
37238
37236
|
error: z.ZodOptional<z.ZodString>;
|
|
37239
37237
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
37238
|
+
images?: string[] | undefined;
|
|
37239
|
+
html?: string | undefined;
|
|
37240
|
+
json?: unknown;
|
|
37240
37241
|
summary?: string | undefined;
|
|
37241
37242
|
actions?: Record<string, unknown> | undefined;
|
|
37242
37243
|
markdown?: string | undefined;
|
|
@@ -37684,7 +37685,6 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
37684
37685
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
37685
37686
|
warning?: string | undefined;
|
|
37686
37687
|
}[];
|
|
37687
|
-
operation: "crawl";
|
|
37688
37688
|
completed: number;
|
|
37689
37689
|
total: number;
|
|
37690
37690
|
creditsUsed?: number | undefined;
|
|
@@ -37701,22 +37701,22 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
37701
37701
|
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
37702
37702
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
37703
37703
|
}, "strip", z.ZodTypeAny, {
|
|
37704
|
+
operation: "extract";
|
|
37704
37705
|
success: boolean;
|
|
37705
37706
|
error: string;
|
|
37706
|
-
operation: "extract";
|
|
37707
37707
|
status?: "completed" | "failed" | "cancelled" | "processing" | undefined;
|
|
37708
|
-
data?: unknown;
|
|
37709
37708
|
id?: string | undefined;
|
|
37709
|
+
data?: unknown;
|
|
37710
37710
|
sources?: Record<string, unknown> | undefined;
|
|
37711
37711
|
warning?: string | undefined;
|
|
37712
37712
|
expiresAt?: string | undefined;
|
|
37713
37713
|
}, {
|
|
37714
|
+
operation: "extract";
|
|
37714
37715
|
success: boolean;
|
|
37715
37716
|
error: string;
|
|
37716
|
-
operation: "extract";
|
|
37717
37717
|
status?: "completed" | "failed" | "cancelled" | "processing" | undefined;
|
|
37718
|
-
data?: unknown;
|
|
37719
37718
|
id?: string | undefined;
|
|
37719
|
+
data?: unknown;
|
|
37720
37720
|
sources?: Record<string, unknown> | undefined;
|
|
37721
37721
|
warning?: string | undefined;
|
|
37722
37722
|
expiresAt?: string | undefined;
|