@bubblelab/bubble-core 0.1.169 → 0.1.170
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 +60 -60
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +40 -40
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +100 -100
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/capability-pipeline.js +2 -2
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +74 -74
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +152 -152
- package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +1 -1
- package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +3 -3
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +136 -136
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +279 -279
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +22 -22
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +6 -6
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
- package/dist/bubbles.json +19 -9
- package/package.json +2 -2
|
@@ -10,9 +10,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
10
10
|
formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
|
|
11
11
|
type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
type: "images" | "
|
|
13
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
14
14
|
}, {
|
|
15
|
-
type: "images" | "
|
|
15
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
16
16
|
}>, z.ZodObject<{
|
|
17
17
|
type: z.ZodLiteral<"json">;
|
|
18
18
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -253,8 +253,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
253
253
|
url: string;
|
|
254
254
|
timeout: number;
|
|
255
255
|
operation: "scrape";
|
|
256
|
-
formats: ("images" | "
|
|
257
|
-
type: "images" | "
|
|
256
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
257
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
258
258
|
} | {
|
|
259
259
|
type: "json";
|
|
260
260
|
schema?: any;
|
|
@@ -393,8 +393,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
393
393
|
languages?: string[] | undefined;
|
|
394
394
|
} | undefined;
|
|
395
395
|
integration?: string | undefined;
|
|
396
|
-
formats?: ("images" | "
|
|
397
|
-
type: "images" | "
|
|
396
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
397
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
398
398
|
} | {
|
|
399
399
|
type: "json";
|
|
400
400
|
schema?: any;
|
|
@@ -465,9 +465,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
465
465
|
formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
|
|
466
466
|
type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
|
|
467
467
|
}, "strip", z.ZodTypeAny, {
|
|
468
|
-
type: "images" | "
|
|
468
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
469
469
|
}, {
|
|
470
|
-
type: "images" | "
|
|
470
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
471
471
|
}>, z.ZodObject<{
|
|
472
472
|
type: z.ZodLiteral<"json">;
|
|
473
473
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -703,8 +703,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
703
703
|
integration: z.ZodOptional<z.ZodString>;
|
|
704
704
|
}, "strip", z.ZodTypeAny, {
|
|
705
705
|
timeout: number;
|
|
706
|
-
formats: ("images" | "
|
|
707
|
-
type: "images" | "
|
|
706
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
707
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
708
708
|
} | {
|
|
709
709
|
type: "json";
|
|
710
710
|
schema?: any;
|
|
@@ -836,8 +836,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
836
836
|
languages?: string[] | undefined;
|
|
837
837
|
} | undefined;
|
|
838
838
|
integration?: string | undefined;
|
|
839
|
-
formats?: ("images" | "
|
|
840
|
-
type: "images" | "
|
|
839
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
840
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
841
841
|
} | {
|
|
842
842
|
type: "json";
|
|
843
843
|
schema?: any;
|
|
@@ -899,8 +899,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
899
899
|
ignoreInvalidURLs?: boolean | undefined;
|
|
900
900
|
scrapeOptions?: {
|
|
901
901
|
timeout: number;
|
|
902
|
-
formats: ("images" | "
|
|
903
|
-
type: "images" | "
|
|
902
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
903
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
904
904
|
} | {
|
|
905
905
|
type: "json";
|
|
906
906
|
schema?: any;
|
|
@@ -1051,8 +1051,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1051
1051
|
languages?: string[] | undefined;
|
|
1052
1052
|
} | undefined;
|
|
1053
1053
|
integration?: string | undefined;
|
|
1054
|
-
formats?: ("images" | "
|
|
1055
|
-
type: "images" | "
|
|
1054
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
1055
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1056
1056
|
} | {
|
|
1057
1057
|
type: "json";
|
|
1058
1058
|
schema?: any;
|
|
@@ -1187,9 +1187,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1187
1187
|
formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
|
|
1188
1188
|
type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
|
|
1189
1189
|
}, "strip", z.ZodTypeAny, {
|
|
1190
|
-
type: "images" | "
|
|
1190
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1191
1191
|
}, {
|
|
1192
|
-
type: "images" | "
|
|
1192
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1193
1193
|
}>, z.ZodObject<{
|
|
1194
1194
|
type: z.ZodLiteral<"json">;
|
|
1195
1195
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -1425,8 +1425,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1425
1425
|
integration: z.ZodOptional<z.ZodString>;
|
|
1426
1426
|
}, "strip", z.ZodTypeAny, {
|
|
1427
1427
|
timeout: number;
|
|
1428
|
-
formats: ("images" | "
|
|
1429
|
-
type: "images" | "
|
|
1428
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
1429
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1430
1430
|
} | {
|
|
1431
1431
|
type: "json";
|
|
1432
1432
|
schema?: any;
|
|
@@ -1558,8 +1558,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1558
1558
|
languages?: string[] | undefined;
|
|
1559
1559
|
} | undefined;
|
|
1560
1560
|
integration?: string | undefined;
|
|
1561
|
-
formats?: ("images" | "
|
|
1562
|
-
type: "images" | "
|
|
1561
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
1562
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1563
1563
|
} | {
|
|
1564
1564
|
type: "json";
|
|
1565
1565
|
schema?: any;
|
|
@@ -1609,8 +1609,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1609
1609
|
operation: "crawl";
|
|
1610
1610
|
maxRetries?: number | undefined;
|
|
1611
1611
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1612
|
-
timeout?: number | undefined;
|
|
1613
1612
|
maxConcurrency?: number | undefined;
|
|
1613
|
+
timeout?: number | undefined;
|
|
1614
1614
|
prompt?: string | undefined;
|
|
1615
1615
|
limit?: number | undefined;
|
|
1616
1616
|
webhook?: string | {
|
|
@@ -1623,8 +1623,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1623
1623
|
backoffFactor?: number | undefined;
|
|
1624
1624
|
scrapeOptions?: {
|
|
1625
1625
|
timeout: number;
|
|
1626
|
-
formats: ("images" | "
|
|
1627
|
-
type: "images" | "
|
|
1626
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
1627
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1628
1628
|
} | {
|
|
1629
1629
|
type: "json";
|
|
1630
1630
|
schema?: any;
|
|
@@ -1726,8 +1726,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1726
1726
|
operation: "crawl";
|
|
1727
1727
|
maxRetries?: number | undefined;
|
|
1728
1728
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1729
|
-
timeout?: number | undefined;
|
|
1730
1729
|
maxConcurrency?: number | undefined;
|
|
1730
|
+
timeout?: number | undefined;
|
|
1731
1731
|
prompt?: string | undefined;
|
|
1732
1732
|
limit?: number | undefined;
|
|
1733
1733
|
webhook?: string | {
|
|
@@ -1785,8 +1785,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1785
1785
|
languages?: string[] | undefined;
|
|
1786
1786
|
} | undefined;
|
|
1787
1787
|
integration?: string | undefined;
|
|
1788
|
-
formats?: ("images" | "
|
|
1789
|
-
type: "images" | "
|
|
1788
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
1789
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1790
1790
|
} | {
|
|
1791
1791
|
type: "json";
|
|
1792
1792
|
schema?: any;
|
|
@@ -1855,9 +1855,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1855
1855
|
formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
|
|
1856
1856
|
type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
|
|
1857
1857
|
}, "strip", z.ZodTypeAny, {
|
|
1858
|
-
type: "images" | "
|
|
1858
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1859
1859
|
}, {
|
|
1860
|
-
type: "images" | "
|
|
1860
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
1861
1861
|
}>, z.ZodObject<{
|
|
1862
1862
|
type: z.ZodLiteral<"json">;
|
|
1863
1863
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -2093,8 +2093,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2093
2093
|
integration: z.ZodOptional<z.ZodString>;
|
|
2094
2094
|
}, "strip", z.ZodTypeAny, {
|
|
2095
2095
|
timeout: number;
|
|
2096
|
-
formats: ("images" | "
|
|
2097
|
-
type: "images" | "
|
|
2096
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
2097
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
2098
2098
|
} | {
|
|
2099
2099
|
type: "json";
|
|
2100
2100
|
schema?: any;
|
|
@@ -2226,8 +2226,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2226
2226
|
languages?: string[] | undefined;
|
|
2227
2227
|
} | undefined;
|
|
2228
2228
|
integration?: string | undefined;
|
|
2229
|
-
formats?: ("images" | "
|
|
2230
|
-
type: "images" | "
|
|
2229
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
2230
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
2231
2231
|
} | {
|
|
2232
2232
|
type: "json";
|
|
2233
2233
|
schema?: any;
|
|
@@ -2286,18 +2286,18 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2286
2286
|
systemPrompt?: string | undefined;
|
|
2287
2287
|
maxRetries?: number | undefined;
|
|
2288
2288
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2289
|
+
timeout?: number | undefined;
|
|
2289
2290
|
agent?: {
|
|
2290
2291
|
model: "FIRE-1";
|
|
2291
2292
|
} | undefined;
|
|
2292
|
-
timeout?: number | undefined;
|
|
2293
2293
|
prompt?: string | undefined;
|
|
2294
2294
|
integration?: string | undefined;
|
|
2295
2295
|
backoffFactor?: number | undefined;
|
|
2296
2296
|
ignoreInvalidURLs?: boolean | undefined;
|
|
2297
2297
|
scrapeOptions?: {
|
|
2298
2298
|
timeout: number;
|
|
2299
|
-
formats: ("images" | "
|
|
2300
|
-
type: "images" | "
|
|
2299
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
2300
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
2301
2301
|
} | {
|
|
2302
2302
|
type: "json";
|
|
2303
2303
|
schema?: any;
|
|
@@ -2394,10 +2394,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2394
2394
|
systemPrompt?: string | undefined;
|
|
2395
2395
|
maxRetries?: number | undefined;
|
|
2396
2396
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2397
|
+
timeout?: number | undefined;
|
|
2397
2398
|
agent?: {
|
|
2398
2399
|
model: "FIRE-1";
|
|
2399
2400
|
} | undefined;
|
|
2400
|
-
timeout?: number | undefined;
|
|
2401
2401
|
prompt?: string | undefined;
|
|
2402
2402
|
integration?: string | undefined;
|
|
2403
2403
|
backoffFactor?: number | undefined;
|
|
@@ -2449,8 +2449,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2449
2449
|
languages?: string[] | undefined;
|
|
2450
2450
|
} | undefined;
|
|
2451
2451
|
integration?: string | undefined;
|
|
2452
|
-
formats?: ("images" | "
|
|
2453
|
-
type: "images" | "
|
|
2452
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
2453
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
2454
2454
|
} | {
|
|
2455
2455
|
type: "json";
|
|
2456
2456
|
schema?: any;
|
|
@@ -3955,7 +3955,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
3955
3955
|
success: boolean;
|
|
3956
3956
|
operation: "scrape";
|
|
3957
3957
|
images?: string[] | undefined;
|
|
3958
|
-
|
|
3958
|
+
json?: unknown;
|
|
3959
3959
|
metadata?: z.objectOutputType<{
|
|
3960
3960
|
title: z.ZodOptional<z.ZodString>;
|
|
3961
3961
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -3999,8 +3999,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
3999
3999
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
4000
4000
|
error: z.ZodOptional<z.ZodString>;
|
|
4001
4001
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
4002
|
+
summary?: string | undefined;
|
|
4002
4003
|
html?: string | undefined;
|
|
4003
|
-
json?: unknown;
|
|
4004
4004
|
actions?: Record<string, unknown> | undefined;
|
|
4005
4005
|
screenshot?: string | undefined;
|
|
4006
4006
|
warning?: string | undefined;
|
|
@@ -4451,7 +4451,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
4451
4451
|
success: boolean;
|
|
4452
4452
|
operation: "scrape";
|
|
4453
4453
|
images?: string[] | undefined;
|
|
4454
|
-
|
|
4454
|
+
json?: unknown;
|
|
4455
4455
|
metadata?: z.objectInputType<{
|
|
4456
4456
|
title: z.ZodOptional<z.ZodString>;
|
|
4457
4457
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -4495,8 +4495,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
4495
4495
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
4496
4496
|
error: z.ZodOptional<z.ZodString>;
|
|
4497
4497
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
4498
|
+
summary?: string | undefined;
|
|
4498
4499
|
html?: string | undefined;
|
|
4499
|
-
json?: unknown;
|
|
4500
4500
|
actions?: Record<string, unknown> | undefined;
|
|
4501
4501
|
screenshot?: string | undefined;
|
|
4502
4502
|
warning?: string | undefined;
|
|
@@ -6413,7 +6413,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
6413
6413
|
}, z.ZodUnknown, "strip">>>;
|
|
6414
6414
|
}, "strip", z.ZodTypeAny, {
|
|
6415
6415
|
images?: string[] | undefined;
|
|
6416
|
-
|
|
6416
|
+
json?: unknown;
|
|
6417
6417
|
metadata?: z.objectOutputType<{
|
|
6418
6418
|
title: z.ZodOptional<z.ZodString>;
|
|
6419
6419
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -6457,8 +6457,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
6457
6457
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
6458
6458
|
error: z.ZodOptional<z.ZodString>;
|
|
6459
6459
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
6460
|
+
summary?: string | undefined;
|
|
6460
6461
|
html?: string | undefined;
|
|
6461
|
-
json?: unknown;
|
|
6462
6462
|
actions?: Record<string, unknown> | undefined;
|
|
6463
6463
|
screenshot?: string | undefined;
|
|
6464
6464
|
warning?: string | undefined;
|
|
@@ -6906,7 +6906,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
6906
6906
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
6907
6907
|
}, {
|
|
6908
6908
|
images?: string[] | undefined;
|
|
6909
|
-
|
|
6909
|
+
json?: unknown;
|
|
6910
6910
|
metadata?: z.objectInputType<{
|
|
6911
6911
|
title: z.ZodOptional<z.ZodString>;
|
|
6912
6912
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -6950,8 +6950,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
6950
6950
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
6951
6951
|
error: z.ZodOptional<z.ZodString>;
|
|
6952
6952
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
6953
|
+
summary?: string | undefined;
|
|
6953
6954
|
html?: string | undefined;
|
|
6954
|
-
json?: unknown;
|
|
6955
6955
|
actions?: Record<string, unknown> | undefined;
|
|
6956
6956
|
screenshot?: string | undefined;
|
|
6957
6957
|
warning?: string | undefined;
|
|
@@ -8873,7 +8873,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
8873
8873
|
}, z.ZodUnknown, "strip">>>;
|
|
8874
8874
|
}, "strip", z.ZodTypeAny, {
|
|
8875
8875
|
images?: string[] | undefined;
|
|
8876
|
-
|
|
8876
|
+
json?: unknown;
|
|
8877
8877
|
metadata?: z.objectOutputType<{
|
|
8878
8878
|
title: z.ZodOptional<z.ZodString>;
|
|
8879
8879
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -8917,8 +8917,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
8917
8917
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
8918
8918
|
error: z.ZodOptional<z.ZodString>;
|
|
8919
8919
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
8920
|
+
summary?: string | undefined;
|
|
8920
8921
|
html?: string | undefined;
|
|
8921
|
-
json?: unknown;
|
|
8922
8922
|
actions?: Record<string, unknown> | undefined;
|
|
8923
8923
|
screenshot?: string | undefined;
|
|
8924
8924
|
warning?: string | undefined;
|
|
@@ -9366,7 +9366,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
9366
9366
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
9367
9367
|
}, {
|
|
9368
9368
|
images?: string[] | undefined;
|
|
9369
|
-
|
|
9369
|
+
json?: unknown;
|
|
9370
9370
|
metadata?: z.objectInputType<{
|
|
9371
9371
|
title: z.ZodOptional<z.ZodString>;
|
|
9372
9372
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9410,8 +9410,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
9410
9410
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
9411
9411
|
error: z.ZodOptional<z.ZodString>;
|
|
9412
9412
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
9413
|
+
summary?: string | undefined;
|
|
9413
9414
|
html?: string | undefined;
|
|
9414
|
-
json?: unknown;
|
|
9415
9415
|
actions?: Record<string, unknown> | undefined;
|
|
9416
9416
|
screenshot?: string | undefined;
|
|
9417
9417
|
warning?: string | undefined;
|
|
@@ -11330,7 +11330,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
11330
11330
|
}, z.ZodUnknown, "strip">>>;
|
|
11331
11331
|
}, "strip", z.ZodTypeAny, {
|
|
11332
11332
|
images?: string[] | undefined;
|
|
11333
|
-
|
|
11333
|
+
json?: unknown;
|
|
11334
11334
|
metadata?: z.objectOutputType<{
|
|
11335
11335
|
title: z.ZodOptional<z.ZodString>;
|
|
11336
11336
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -11374,8 +11374,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
11374
11374
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
11375
11375
|
error: z.ZodOptional<z.ZodString>;
|
|
11376
11376
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
11377
|
+
summary?: string | undefined;
|
|
11377
11378
|
html?: string | undefined;
|
|
11378
|
-
json?: unknown;
|
|
11379
11379
|
actions?: Record<string, unknown> | undefined;
|
|
11380
11380
|
screenshot?: string | undefined;
|
|
11381
11381
|
warning?: string | undefined;
|
|
@@ -11823,7 +11823,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
11823
11823
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
11824
11824
|
}, {
|
|
11825
11825
|
images?: string[] | undefined;
|
|
11826
|
-
|
|
11826
|
+
json?: unknown;
|
|
11827
11827
|
metadata?: z.objectInputType<{
|
|
11828
11828
|
title: z.ZodOptional<z.ZodString>;
|
|
11829
11829
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -11867,8 +11867,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
11867
11867
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
11868
11868
|
error: z.ZodOptional<z.ZodString>;
|
|
11869
11869
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
11870
|
+
summary?: string | undefined;
|
|
11870
11871
|
html?: string | undefined;
|
|
11871
|
-
json?: unknown;
|
|
11872
11872
|
actions?: Record<string, unknown> | undefined;
|
|
11873
11873
|
screenshot?: string | undefined;
|
|
11874
11874
|
warning?: string | undefined;
|
|
@@ -12322,7 +12322,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
12322
12322
|
operation: "search";
|
|
12323
12323
|
images?: ({
|
|
12324
12324
|
images?: string[] | undefined;
|
|
12325
|
-
|
|
12325
|
+
json?: unknown;
|
|
12326
12326
|
metadata?: z.objectOutputType<{
|
|
12327
12327
|
title: z.ZodOptional<z.ZodString>;
|
|
12328
12328
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -12366,8 +12366,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
12366
12366
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
12367
12367
|
error: z.ZodOptional<z.ZodString>;
|
|
12368
12368
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
12369
|
+
summary?: string | undefined;
|
|
12369
12370
|
html?: string | undefined;
|
|
12370
|
-
json?: unknown;
|
|
12371
12371
|
actions?: Record<string, unknown> | undefined;
|
|
12372
12372
|
screenshot?: string | undefined;
|
|
12373
12373
|
warning?: string | undefined;
|
|
@@ -12823,7 +12823,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
12823
12823
|
})[] | undefined;
|
|
12824
12824
|
web?: ({
|
|
12825
12825
|
images?: string[] | undefined;
|
|
12826
|
-
|
|
12826
|
+
json?: unknown;
|
|
12827
12827
|
metadata?: z.objectOutputType<{
|
|
12828
12828
|
title: z.ZodOptional<z.ZodString>;
|
|
12829
12829
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -12867,8 +12867,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
12867
12867
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
12868
12868
|
error: z.ZodOptional<z.ZodString>;
|
|
12869
12869
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
12870
|
+
summary?: string | undefined;
|
|
12870
12871
|
html?: string | undefined;
|
|
12871
|
-
json?: unknown;
|
|
12872
12872
|
actions?: Record<string, unknown> | undefined;
|
|
12873
12873
|
screenshot?: string | undefined;
|
|
12874
12874
|
warning?: string | undefined;
|
|
@@ -13322,7 +13322,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
13322
13322
|
})[] | undefined;
|
|
13323
13323
|
news?: ({
|
|
13324
13324
|
images?: string[] | undefined;
|
|
13325
|
-
|
|
13325
|
+
json?: unknown;
|
|
13326
13326
|
metadata?: z.objectOutputType<{
|
|
13327
13327
|
title: z.ZodOptional<z.ZodString>;
|
|
13328
13328
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -13366,8 +13366,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
13366
13366
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
13367
13367
|
error: z.ZodOptional<z.ZodString>;
|
|
13368
13368
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
13369
|
+
summary?: string | undefined;
|
|
13369
13370
|
html?: string | undefined;
|
|
13370
|
-
json?: unknown;
|
|
13371
13371
|
actions?: Record<string, unknown> | undefined;
|
|
13372
13372
|
screenshot?: string | undefined;
|
|
13373
13373
|
warning?: string | undefined;
|
|
@@ -13829,7 +13829,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
13829
13829
|
operation: "search";
|
|
13830
13830
|
images?: ({
|
|
13831
13831
|
images?: string[] | undefined;
|
|
13832
|
-
|
|
13832
|
+
json?: unknown;
|
|
13833
13833
|
metadata?: z.objectInputType<{
|
|
13834
13834
|
title: z.ZodOptional<z.ZodString>;
|
|
13835
13835
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -13873,8 +13873,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
13873
13873
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
13874
13874
|
error: z.ZodOptional<z.ZodString>;
|
|
13875
13875
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
13876
|
+
summary?: string | undefined;
|
|
13876
13877
|
html?: string | undefined;
|
|
13877
|
-
json?: unknown;
|
|
13878
13878
|
actions?: Record<string, unknown> | undefined;
|
|
13879
13879
|
screenshot?: string | undefined;
|
|
13880
13880
|
warning?: string | undefined;
|
|
@@ -14330,7 +14330,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
14330
14330
|
})[] | undefined;
|
|
14331
14331
|
web?: ({
|
|
14332
14332
|
images?: string[] | undefined;
|
|
14333
|
-
|
|
14333
|
+
json?: unknown;
|
|
14334
14334
|
metadata?: z.objectInputType<{
|
|
14335
14335
|
title: z.ZodOptional<z.ZodString>;
|
|
14336
14336
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -14374,8 +14374,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
14374
14374
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
14375
14375
|
error: z.ZodOptional<z.ZodString>;
|
|
14376
14376
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
14377
|
+
summary?: string | undefined;
|
|
14377
14378
|
html?: string | undefined;
|
|
14378
|
-
json?: unknown;
|
|
14379
14379
|
actions?: Record<string, unknown> | undefined;
|
|
14380
14380
|
screenshot?: string | undefined;
|
|
14381
14381
|
warning?: string | undefined;
|
|
@@ -14829,7 +14829,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
14829
14829
|
})[] | undefined;
|
|
14830
14830
|
news?: ({
|
|
14831
14831
|
images?: string[] | undefined;
|
|
14832
|
-
|
|
14832
|
+
json?: unknown;
|
|
14833
14833
|
metadata?: z.objectInputType<{
|
|
14834
14834
|
title: z.ZodOptional<z.ZodString>;
|
|
14835
14835
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -14873,8 +14873,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
14873
14873
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
14874
14874
|
error: z.ZodOptional<z.ZodString>;
|
|
14875
14875
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
14876
|
+
summary?: string | undefined;
|
|
14876
14877
|
html?: string | undefined;
|
|
14877
|
-
json?: unknown;
|
|
14878
14878
|
actions?: Record<string, unknown> | undefined;
|
|
14879
14879
|
screenshot?: string | undefined;
|
|
14880
14880
|
warning?: string | undefined;
|
|
@@ -16832,7 +16832,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
16832
16832
|
}, z.ZodUnknown, "strip">>>;
|
|
16833
16833
|
}, "strip", z.ZodTypeAny, {
|
|
16834
16834
|
images?: string[] | undefined;
|
|
16835
|
-
|
|
16835
|
+
json?: unknown;
|
|
16836
16836
|
metadata?: z.objectOutputType<{
|
|
16837
16837
|
title: z.ZodOptional<z.ZodString>;
|
|
16838
16838
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -16876,8 +16876,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
16876
16876
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
16877
16877
|
error: z.ZodOptional<z.ZodString>;
|
|
16878
16878
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
16879
|
+
summary?: string | undefined;
|
|
16879
16880
|
html?: string | undefined;
|
|
16880
|
-
json?: unknown;
|
|
16881
16881
|
actions?: Record<string, unknown> | undefined;
|
|
16882
16882
|
screenshot?: string | undefined;
|
|
16883
16883
|
warning?: string | undefined;
|
|
@@ -17325,7 +17325,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
17325
17325
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
17326
17326
|
}, {
|
|
17327
17327
|
images?: string[] | undefined;
|
|
17328
|
-
|
|
17328
|
+
json?: unknown;
|
|
17329
17329
|
metadata?: z.objectInputType<{
|
|
17330
17330
|
title: z.ZodOptional<z.ZodString>;
|
|
17331
17331
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -17369,8 +17369,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
17369
17369
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
17370
17370
|
error: z.ZodOptional<z.ZodString>;
|
|
17371
17371
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
17372
|
+
summary?: string | undefined;
|
|
17372
17373
|
html?: string | undefined;
|
|
17373
|
-
json?: unknown;
|
|
17374
17374
|
actions?: Record<string, unknown> | undefined;
|
|
17375
17375
|
screenshot?: string | undefined;
|
|
17376
17376
|
warning?: string | undefined;
|
|
@@ -17820,7 +17820,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
17820
17820
|
}, "strip", z.ZodTypeAny, {
|
|
17821
17821
|
data: {
|
|
17822
17822
|
images?: string[] | undefined;
|
|
17823
|
-
|
|
17823
|
+
json?: unknown;
|
|
17824
17824
|
metadata?: z.objectOutputType<{
|
|
17825
17825
|
title: z.ZodOptional<z.ZodString>;
|
|
17826
17826
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -17864,8 +17864,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
17864
17864
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
17865
17865
|
error: z.ZodOptional<z.ZodString>;
|
|
17866
17866
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
17867
|
+
summary?: string | undefined;
|
|
17867
17868
|
html?: string | undefined;
|
|
17868
|
-
json?: unknown;
|
|
17869
17869
|
actions?: Record<string, unknown> | undefined;
|
|
17870
17870
|
screenshot?: string | undefined;
|
|
17871
17871
|
warning?: string | undefined;
|
|
@@ -18323,7 +18323,7 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
18323
18323
|
}, {
|
|
18324
18324
|
data: {
|
|
18325
18325
|
images?: string[] | undefined;
|
|
18326
|
-
|
|
18326
|
+
json?: unknown;
|
|
18327
18327
|
metadata?: z.objectInputType<{
|
|
18328
18328
|
title: z.ZodOptional<z.ZodString>;
|
|
18329
18329
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -18367,8 +18367,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
18367
18367
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
18368
18368
|
error: z.ZodOptional<z.ZodString>;
|
|
18369
18369
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
18370
|
+
summary?: string | undefined;
|
|
18370
18371
|
html?: string | undefined;
|
|
18371
|
-
json?: unknown;
|
|
18372
18372
|
actions?: Record<string, unknown> | undefined;
|
|
18373
18373
|
screenshot?: string | undefined;
|
|
18374
18374
|
warning?: string | undefined;
|
|
@@ -18876,9 +18876,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
18876
18876
|
formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
|
|
18877
18877
|
type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
|
|
18878
18878
|
}, "strip", z.ZodTypeAny, {
|
|
18879
|
-
type: "images" | "
|
|
18879
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
18880
18880
|
}, {
|
|
18881
|
-
type: "images" | "
|
|
18881
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
18882
18882
|
}>, z.ZodObject<{
|
|
18883
18883
|
type: z.ZodLiteral<"json">;
|
|
18884
18884
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -19119,8 +19119,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19119
19119
|
url: string;
|
|
19120
19120
|
timeout: number;
|
|
19121
19121
|
operation: "scrape";
|
|
19122
|
-
formats: ("images" | "
|
|
19123
|
-
type: "images" | "
|
|
19122
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19123
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
19124
19124
|
} | {
|
|
19125
19125
|
type: "json";
|
|
19126
19126
|
schema?: any;
|
|
@@ -19259,8 +19259,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19259
19259
|
languages?: string[] | undefined;
|
|
19260
19260
|
} | undefined;
|
|
19261
19261
|
integration?: string | undefined;
|
|
19262
|
-
formats?: ("images" | "
|
|
19263
|
-
type: "images" | "
|
|
19262
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19263
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
19264
19264
|
} | {
|
|
19265
19265
|
type: "json";
|
|
19266
19266
|
schema?: any;
|
|
@@ -19331,9 +19331,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19331
19331
|
formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
|
|
19332
19332
|
type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
|
|
19333
19333
|
}, "strip", z.ZodTypeAny, {
|
|
19334
|
-
type: "images" | "
|
|
19334
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
19335
19335
|
}, {
|
|
19336
|
-
type: "images" | "
|
|
19336
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
19337
19337
|
}>, z.ZodObject<{
|
|
19338
19338
|
type: z.ZodLiteral<"json">;
|
|
19339
19339
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -19569,8 +19569,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19569
19569
|
integration: z.ZodOptional<z.ZodString>;
|
|
19570
19570
|
}, "strip", z.ZodTypeAny, {
|
|
19571
19571
|
timeout: number;
|
|
19572
|
-
formats: ("images" | "
|
|
19573
|
-
type: "images" | "
|
|
19572
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19573
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
19574
19574
|
} | {
|
|
19575
19575
|
type: "json";
|
|
19576
19576
|
schema?: any;
|
|
@@ -19702,8 +19702,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19702
19702
|
languages?: string[] | undefined;
|
|
19703
19703
|
} | undefined;
|
|
19704
19704
|
integration?: string | undefined;
|
|
19705
|
-
formats?: ("images" | "
|
|
19706
|
-
type: "images" | "
|
|
19705
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19706
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
19707
19707
|
} | {
|
|
19708
19708
|
type: "json";
|
|
19709
19709
|
schema?: any;
|
|
@@ -19765,8 +19765,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19765
19765
|
ignoreInvalidURLs?: boolean | undefined;
|
|
19766
19766
|
scrapeOptions?: {
|
|
19767
19767
|
timeout: number;
|
|
19768
|
-
formats: ("images" | "
|
|
19769
|
-
type: "images" | "
|
|
19768
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19769
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
19770
19770
|
} | {
|
|
19771
19771
|
type: "json";
|
|
19772
19772
|
schema?: any;
|
|
@@ -19917,8 +19917,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19917
19917
|
languages?: string[] | undefined;
|
|
19918
19918
|
} | undefined;
|
|
19919
19919
|
integration?: string | undefined;
|
|
19920
|
-
formats?: ("images" | "
|
|
19921
|
-
type: "images" | "
|
|
19920
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19921
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
19922
19922
|
} | {
|
|
19923
19923
|
type: "json";
|
|
19924
19924
|
schema?: any;
|
|
@@ -20053,9 +20053,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20053
20053
|
formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
|
|
20054
20054
|
type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
|
|
20055
20055
|
}, "strip", z.ZodTypeAny, {
|
|
20056
|
-
type: "images" | "
|
|
20056
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20057
20057
|
}, {
|
|
20058
|
-
type: "images" | "
|
|
20058
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20059
20059
|
}>, z.ZodObject<{
|
|
20060
20060
|
type: z.ZodLiteral<"json">;
|
|
20061
20061
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -20291,8 +20291,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20291
20291
|
integration: z.ZodOptional<z.ZodString>;
|
|
20292
20292
|
}, "strip", z.ZodTypeAny, {
|
|
20293
20293
|
timeout: number;
|
|
20294
|
-
formats: ("images" | "
|
|
20295
|
-
type: "images" | "
|
|
20294
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
20295
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20296
20296
|
} | {
|
|
20297
20297
|
type: "json";
|
|
20298
20298
|
schema?: any;
|
|
@@ -20424,8 +20424,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20424
20424
|
languages?: string[] | undefined;
|
|
20425
20425
|
} | undefined;
|
|
20426
20426
|
integration?: string | undefined;
|
|
20427
|
-
formats?: ("images" | "
|
|
20428
|
-
type: "images" | "
|
|
20427
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
20428
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20429
20429
|
} | {
|
|
20430
20430
|
type: "json";
|
|
20431
20431
|
schema?: any;
|
|
@@ -20475,8 +20475,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20475
20475
|
operation: "crawl";
|
|
20476
20476
|
maxRetries?: number | undefined;
|
|
20477
20477
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20478
|
-
timeout?: number | undefined;
|
|
20479
20478
|
maxConcurrency?: number | undefined;
|
|
20479
|
+
timeout?: number | undefined;
|
|
20480
20480
|
prompt?: string | undefined;
|
|
20481
20481
|
limit?: number | undefined;
|
|
20482
20482
|
webhook?: string | {
|
|
@@ -20489,8 +20489,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20489
20489
|
backoffFactor?: number | undefined;
|
|
20490
20490
|
scrapeOptions?: {
|
|
20491
20491
|
timeout: number;
|
|
20492
|
-
formats: ("images" | "
|
|
20493
|
-
type: "images" | "
|
|
20492
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
20493
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20494
20494
|
} | {
|
|
20495
20495
|
type: "json";
|
|
20496
20496
|
schema?: any;
|
|
@@ -20592,8 +20592,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20592
20592
|
operation: "crawl";
|
|
20593
20593
|
maxRetries?: number | undefined;
|
|
20594
20594
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20595
|
-
timeout?: number | undefined;
|
|
20596
20595
|
maxConcurrency?: number | undefined;
|
|
20596
|
+
timeout?: number | undefined;
|
|
20597
20597
|
prompt?: string | undefined;
|
|
20598
20598
|
limit?: number | undefined;
|
|
20599
20599
|
webhook?: string | {
|
|
@@ -20651,8 +20651,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20651
20651
|
languages?: string[] | undefined;
|
|
20652
20652
|
} | undefined;
|
|
20653
20653
|
integration?: string | undefined;
|
|
20654
|
-
formats?: ("images" | "
|
|
20655
|
-
type: "images" | "
|
|
20654
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
20655
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20656
20656
|
} | {
|
|
20657
20657
|
type: "json";
|
|
20658
20658
|
schema?: any;
|
|
@@ -20721,9 +20721,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20721
20721
|
formats: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>, z.ZodObject<{
|
|
20722
20722
|
type: z.ZodEnum<["markdown", "html", "rawHtml", "links", "images", "screenshot", "summary", "changeTracking", "json", "attributes", "branding"]>;
|
|
20723
20723
|
}, "strip", z.ZodTypeAny, {
|
|
20724
|
-
type: "images" | "
|
|
20724
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20725
20725
|
}, {
|
|
20726
|
-
type: "images" | "
|
|
20726
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20727
20727
|
}>, z.ZodObject<{
|
|
20728
20728
|
type: z.ZodLiteral<"json">;
|
|
20729
20729
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -20959,8 +20959,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20959
20959
|
integration: z.ZodOptional<z.ZodString>;
|
|
20960
20960
|
}, "strip", z.ZodTypeAny, {
|
|
20961
20961
|
timeout: number;
|
|
20962
|
-
formats: ("images" | "
|
|
20963
|
-
type: "images" | "
|
|
20962
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
20963
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
20964
20964
|
} | {
|
|
20965
20965
|
type: "json";
|
|
20966
20966
|
schema?: any;
|
|
@@ -21092,8 +21092,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21092
21092
|
languages?: string[] | undefined;
|
|
21093
21093
|
} | undefined;
|
|
21094
21094
|
integration?: string | undefined;
|
|
21095
|
-
formats?: ("images" | "
|
|
21096
|
-
type: "images" | "
|
|
21095
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
21096
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
21097
21097
|
} | {
|
|
21098
21098
|
type: "json";
|
|
21099
21099
|
schema?: any;
|
|
@@ -21152,18 +21152,18 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21152
21152
|
systemPrompt?: string | undefined;
|
|
21153
21153
|
maxRetries?: number | undefined;
|
|
21154
21154
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21155
|
+
timeout?: number | undefined;
|
|
21155
21156
|
agent?: {
|
|
21156
21157
|
model: "FIRE-1";
|
|
21157
21158
|
} | undefined;
|
|
21158
|
-
timeout?: number | undefined;
|
|
21159
21159
|
prompt?: string | undefined;
|
|
21160
21160
|
integration?: string | undefined;
|
|
21161
21161
|
backoffFactor?: number | undefined;
|
|
21162
21162
|
ignoreInvalidURLs?: boolean | undefined;
|
|
21163
21163
|
scrapeOptions?: {
|
|
21164
21164
|
timeout: number;
|
|
21165
|
-
formats: ("images" | "
|
|
21166
|
-
type: "images" | "
|
|
21165
|
+
formats: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
21166
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
21167
21167
|
} | {
|
|
21168
21168
|
type: "json";
|
|
21169
21169
|
schema?: any;
|
|
@@ -21260,10 +21260,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21260
21260
|
systemPrompt?: string | undefined;
|
|
21261
21261
|
maxRetries?: number | undefined;
|
|
21262
21262
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21263
|
+
timeout?: number | undefined;
|
|
21263
21264
|
agent?: {
|
|
21264
21265
|
model: "FIRE-1";
|
|
21265
21266
|
} | undefined;
|
|
21266
|
-
timeout?: number | undefined;
|
|
21267
21267
|
prompt?: string | undefined;
|
|
21268
21268
|
integration?: string | undefined;
|
|
21269
21269
|
backoffFactor?: number | undefined;
|
|
@@ -21315,8 +21315,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21315
21315
|
languages?: string[] | undefined;
|
|
21316
21316
|
} | undefined;
|
|
21317
21317
|
integration?: string | undefined;
|
|
21318
|
-
formats?: ("images" | "
|
|
21319
|
-
type: "images" | "
|
|
21318
|
+
formats?: ("images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
21319
|
+
type: "images" | "json" | "summary" | "html" | "screenshot" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
21320
21320
|
} | {
|
|
21321
21321
|
type: "json";
|
|
21322
21322
|
schema?: any;
|
|
@@ -22821,7 +22821,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
22821
22821
|
success: boolean;
|
|
22822
22822
|
operation: "scrape";
|
|
22823
22823
|
images?: string[] | undefined;
|
|
22824
|
-
|
|
22824
|
+
json?: unknown;
|
|
22825
22825
|
metadata?: z.objectOutputType<{
|
|
22826
22826
|
title: z.ZodOptional<z.ZodString>;
|
|
22827
22827
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -22865,8 +22865,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
22865
22865
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
22866
22866
|
error: z.ZodOptional<z.ZodString>;
|
|
22867
22867
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
22868
|
+
summary?: string | undefined;
|
|
22868
22869
|
html?: string | undefined;
|
|
22869
|
-
json?: unknown;
|
|
22870
22870
|
actions?: Record<string, unknown> | undefined;
|
|
22871
22871
|
screenshot?: string | undefined;
|
|
22872
22872
|
warning?: string | undefined;
|
|
@@ -23317,7 +23317,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
23317
23317
|
success: boolean;
|
|
23318
23318
|
operation: "scrape";
|
|
23319
23319
|
images?: string[] | undefined;
|
|
23320
|
-
|
|
23320
|
+
json?: unknown;
|
|
23321
23321
|
metadata?: z.objectInputType<{
|
|
23322
23322
|
title: z.ZodOptional<z.ZodString>;
|
|
23323
23323
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -23361,8 +23361,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
23361
23361
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
23362
23362
|
error: z.ZodOptional<z.ZodString>;
|
|
23363
23363
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
23364
|
+
summary?: string | undefined;
|
|
23364
23365
|
html?: string | undefined;
|
|
23365
|
-
json?: unknown;
|
|
23366
23366
|
actions?: Record<string, unknown> | undefined;
|
|
23367
23367
|
screenshot?: string | undefined;
|
|
23368
23368
|
warning?: string | undefined;
|
|
@@ -25279,7 +25279,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
25279
25279
|
}, z.ZodUnknown, "strip">>>;
|
|
25280
25280
|
}, "strip", z.ZodTypeAny, {
|
|
25281
25281
|
images?: string[] | undefined;
|
|
25282
|
-
|
|
25282
|
+
json?: unknown;
|
|
25283
25283
|
metadata?: z.objectOutputType<{
|
|
25284
25284
|
title: z.ZodOptional<z.ZodString>;
|
|
25285
25285
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -25323,8 +25323,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
25323
25323
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
25324
25324
|
error: z.ZodOptional<z.ZodString>;
|
|
25325
25325
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
25326
|
+
summary?: string | undefined;
|
|
25326
25327
|
html?: string | undefined;
|
|
25327
|
-
json?: unknown;
|
|
25328
25328
|
actions?: Record<string, unknown> | undefined;
|
|
25329
25329
|
screenshot?: string | undefined;
|
|
25330
25330
|
warning?: string | undefined;
|
|
@@ -25772,7 +25772,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
25772
25772
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
25773
25773
|
}, {
|
|
25774
25774
|
images?: string[] | undefined;
|
|
25775
|
-
|
|
25775
|
+
json?: unknown;
|
|
25776
25776
|
metadata?: z.objectInputType<{
|
|
25777
25777
|
title: z.ZodOptional<z.ZodString>;
|
|
25778
25778
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -25816,8 +25816,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
25816
25816
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
25817
25817
|
error: z.ZodOptional<z.ZodString>;
|
|
25818
25818
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
25819
|
+
summary?: string | undefined;
|
|
25819
25820
|
html?: string | undefined;
|
|
25820
|
-
json?: unknown;
|
|
25821
25821
|
actions?: Record<string, unknown> | undefined;
|
|
25822
25822
|
screenshot?: string | undefined;
|
|
25823
25823
|
warning?: string | undefined;
|
|
@@ -27739,7 +27739,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
27739
27739
|
}, z.ZodUnknown, "strip">>>;
|
|
27740
27740
|
}, "strip", z.ZodTypeAny, {
|
|
27741
27741
|
images?: string[] | undefined;
|
|
27742
|
-
|
|
27742
|
+
json?: unknown;
|
|
27743
27743
|
metadata?: z.objectOutputType<{
|
|
27744
27744
|
title: z.ZodOptional<z.ZodString>;
|
|
27745
27745
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -27783,8 +27783,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
27783
27783
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
27784
27784
|
error: z.ZodOptional<z.ZodString>;
|
|
27785
27785
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
27786
|
+
summary?: string | undefined;
|
|
27786
27787
|
html?: string | undefined;
|
|
27787
|
-
json?: unknown;
|
|
27788
27788
|
actions?: Record<string, unknown> | undefined;
|
|
27789
27789
|
screenshot?: string | undefined;
|
|
27790
27790
|
warning?: string | undefined;
|
|
@@ -28232,7 +28232,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
28232
28232
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
28233
28233
|
}, {
|
|
28234
28234
|
images?: string[] | undefined;
|
|
28235
|
-
|
|
28235
|
+
json?: unknown;
|
|
28236
28236
|
metadata?: z.objectInputType<{
|
|
28237
28237
|
title: z.ZodOptional<z.ZodString>;
|
|
28238
28238
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -28276,8 +28276,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
28276
28276
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
28277
28277
|
error: z.ZodOptional<z.ZodString>;
|
|
28278
28278
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
28279
|
+
summary?: string | undefined;
|
|
28279
28280
|
html?: string | undefined;
|
|
28280
|
-
json?: unknown;
|
|
28281
28281
|
actions?: Record<string, unknown> | undefined;
|
|
28282
28282
|
screenshot?: string | undefined;
|
|
28283
28283
|
warning?: string | undefined;
|
|
@@ -30196,7 +30196,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
30196
30196
|
}, z.ZodUnknown, "strip">>>;
|
|
30197
30197
|
}, "strip", z.ZodTypeAny, {
|
|
30198
30198
|
images?: string[] | undefined;
|
|
30199
|
-
|
|
30199
|
+
json?: unknown;
|
|
30200
30200
|
metadata?: z.objectOutputType<{
|
|
30201
30201
|
title: z.ZodOptional<z.ZodString>;
|
|
30202
30202
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -30240,8 +30240,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
30240
30240
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
30241
30241
|
error: z.ZodOptional<z.ZodString>;
|
|
30242
30242
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
30243
|
+
summary?: string | undefined;
|
|
30243
30244
|
html?: string | undefined;
|
|
30244
|
-
json?: unknown;
|
|
30245
30245
|
actions?: Record<string, unknown> | undefined;
|
|
30246
30246
|
screenshot?: string | undefined;
|
|
30247
30247
|
warning?: string | undefined;
|
|
@@ -30689,7 +30689,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
30689
30689
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
30690
30690
|
}, {
|
|
30691
30691
|
images?: string[] | undefined;
|
|
30692
|
-
|
|
30692
|
+
json?: unknown;
|
|
30693
30693
|
metadata?: z.objectInputType<{
|
|
30694
30694
|
title: z.ZodOptional<z.ZodString>;
|
|
30695
30695
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -30733,8 +30733,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
30733
30733
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
30734
30734
|
error: z.ZodOptional<z.ZodString>;
|
|
30735
30735
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
30736
|
+
summary?: string | undefined;
|
|
30736
30737
|
html?: string | undefined;
|
|
30737
|
-
json?: unknown;
|
|
30738
30738
|
actions?: Record<string, unknown> | undefined;
|
|
30739
30739
|
screenshot?: string | undefined;
|
|
30740
30740
|
warning?: string | undefined;
|
|
@@ -31188,7 +31188,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
31188
31188
|
operation: "search";
|
|
31189
31189
|
images?: ({
|
|
31190
31190
|
images?: string[] | undefined;
|
|
31191
|
-
|
|
31191
|
+
json?: unknown;
|
|
31192
31192
|
metadata?: z.objectOutputType<{
|
|
31193
31193
|
title: z.ZodOptional<z.ZodString>;
|
|
31194
31194
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -31232,8 +31232,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
31232
31232
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
31233
31233
|
error: z.ZodOptional<z.ZodString>;
|
|
31234
31234
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
31235
|
+
summary?: string | undefined;
|
|
31235
31236
|
html?: string | undefined;
|
|
31236
|
-
json?: unknown;
|
|
31237
31237
|
actions?: Record<string, unknown> | undefined;
|
|
31238
31238
|
screenshot?: string | undefined;
|
|
31239
31239
|
warning?: string | undefined;
|
|
@@ -31689,7 +31689,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
31689
31689
|
})[] | undefined;
|
|
31690
31690
|
web?: ({
|
|
31691
31691
|
images?: string[] | undefined;
|
|
31692
|
-
|
|
31692
|
+
json?: unknown;
|
|
31693
31693
|
metadata?: z.objectOutputType<{
|
|
31694
31694
|
title: z.ZodOptional<z.ZodString>;
|
|
31695
31695
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -31733,8 +31733,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
31733
31733
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
31734
31734
|
error: z.ZodOptional<z.ZodString>;
|
|
31735
31735
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
31736
|
+
summary?: string | undefined;
|
|
31736
31737
|
html?: string | undefined;
|
|
31737
|
-
json?: unknown;
|
|
31738
31738
|
actions?: Record<string, unknown> | undefined;
|
|
31739
31739
|
screenshot?: string | undefined;
|
|
31740
31740
|
warning?: string | undefined;
|
|
@@ -32188,7 +32188,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
32188
32188
|
})[] | undefined;
|
|
32189
32189
|
news?: ({
|
|
32190
32190
|
images?: string[] | undefined;
|
|
32191
|
-
|
|
32191
|
+
json?: unknown;
|
|
32192
32192
|
metadata?: z.objectOutputType<{
|
|
32193
32193
|
title: z.ZodOptional<z.ZodString>;
|
|
32194
32194
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -32232,8 +32232,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
32232
32232
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
32233
32233
|
error: z.ZodOptional<z.ZodString>;
|
|
32234
32234
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
32235
|
+
summary?: string | undefined;
|
|
32235
32236
|
html?: string | undefined;
|
|
32236
|
-
json?: unknown;
|
|
32237
32237
|
actions?: Record<string, unknown> | undefined;
|
|
32238
32238
|
screenshot?: string | undefined;
|
|
32239
32239
|
warning?: string | undefined;
|
|
@@ -32695,7 +32695,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
32695
32695
|
operation: "search";
|
|
32696
32696
|
images?: ({
|
|
32697
32697
|
images?: string[] | undefined;
|
|
32698
|
-
|
|
32698
|
+
json?: unknown;
|
|
32699
32699
|
metadata?: z.objectInputType<{
|
|
32700
32700
|
title: z.ZodOptional<z.ZodString>;
|
|
32701
32701
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -32739,8 +32739,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
32739
32739
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
32740
32740
|
error: z.ZodOptional<z.ZodString>;
|
|
32741
32741
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
32742
|
+
summary?: string | undefined;
|
|
32742
32743
|
html?: string | undefined;
|
|
32743
|
-
json?: unknown;
|
|
32744
32744
|
actions?: Record<string, unknown> | undefined;
|
|
32745
32745
|
screenshot?: string | undefined;
|
|
32746
32746
|
warning?: string | undefined;
|
|
@@ -33196,7 +33196,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
33196
33196
|
})[] | undefined;
|
|
33197
33197
|
web?: ({
|
|
33198
33198
|
images?: string[] | undefined;
|
|
33199
|
-
|
|
33199
|
+
json?: unknown;
|
|
33200
33200
|
metadata?: z.objectInputType<{
|
|
33201
33201
|
title: z.ZodOptional<z.ZodString>;
|
|
33202
33202
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -33240,8 +33240,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
33240
33240
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
33241
33241
|
error: z.ZodOptional<z.ZodString>;
|
|
33242
33242
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
33243
|
+
summary?: string | undefined;
|
|
33243
33244
|
html?: string | undefined;
|
|
33244
|
-
json?: unknown;
|
|
33245
33245
|
actions?: Record<string, unknown> | undefined;
|
|
33246
33246
|
screenshot?: string | undefined;
|
|
33247
33247
|
warning?: string | undefined;
|
|
@@ -33695,7 +33695,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
33695
33695
|
})[] | undefined;
|
|
33696
33696
|
news?: ({
|
|
33697
33697
|
images?: string[] | undefined;
|
|
33698
|
-
|
|
33698
|
+
json?: unknown;
|
|
33699
33699
|
metadata?: z.objectInputType<{
|
|
33700
33700
|
title: z.ZodOptional<z.ZodString>;
|
|
33701
33701
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -33739,8 +33739,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
33739
33739
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
33740
33740
|
error: z.ZodOptional<z.ZodString>;
|
|
33741
33741
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
33742
|
+
summary?: string | undefined;
|
|
33742
33743
|
html?: string | undefined;
|
|
33743
|
-
json?: unknown;
|
|
33744
33744
|
actions?: Record<string, unknown> | undefined;
|
|
33745
33745
|
screenshot?: string | undefined;
|
|
33746
33746
|
warning?: string | undefined;
|
|
@@ -35698,7 +35698,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
35698
35698
|
}, z.ZodUnknown, "strip">>>;
|
|
35699
35699
|
}, "strip", z.ZodTypeAny, {
|
|
35700
35700
|
images?: string[] | undefined;
|
|
35701
|
-
|
|
35701
|
+
json?: unknown;
|
|
35702
35702
|
metadata?: z.objectOutputType<{
|
|
35703
35703
|
title: z.ZodOptional<z.ZodString>;
|
|
35704
35704
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -35742,8 +35742,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
35742
35742
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
35743
35743
|
error: z.ZodOptional<z.ZodString>;
|
|
35744
35744
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
35745
|
+
summary?: string | undefined;
|
|
35745
35746
|
html?: string | undefined;
|
|
35746
|
-
json?: unknown;
|
|
35747
35747
|
actions?: Record<string, unknown> | undefined;
|
|
35748
35748
|
screenshot?: string | undefined;
|
|
35749
35749
|
warning?: string | undefined;
|
|
@@ -36191,7 +36191,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
36191
36191
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
36192
36192
|
}, {
|
|
36193
36193
|
images?: string[] | undefined;
|
|
36194
|
-
|
|
36194
|
+
json?: unknown;
|
|
36195
36195
|
metadata?: z.objectInputType<{
|
|
36196
36196
|
title: z.ZodOptional<z.ZodString>;
|
|
36197
36197
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -36235,8 +36235,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
36235
36235
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
36236
36236
|
error: z.ZodOptional<z.ZodString>;
|
|
36237
36237
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
36238
|
+
summary?: string | undefined;
|
|
36238
36239
|
html?: string | undefined;
|
|
36239
|
-
json?: unknown;
|
|
36240
36240
|
actions?: Record<string, unknown> | undefined;
|
|
36241
36241
|
screenshot?: string | undefined;
|
|
36242
36242
|
warning?: string | undefined;
|
|
@@ -36686,7 +36686,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
36686
36686
|
}, "strip", z.ZodTypeAny, {
|
|
36687
36687
|
data: {
|
|
36688
36688
|
images?: string[] | undefined;
|
|
36689
|
-
|
|
36689
|
+
json?: unknown;
|
|
36690
36690
|
metadata?: z.objectOutputType<{
|
|
36691
36691
|
title: z.ZodOptional<z.ZodString>;
|
|
36692
36692
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -36730,8 +36730,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
36730
36730
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
36731
36731
|
error: z.ZodOptional<z.ZodString>;
|
|
36732
36732
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
36733
|
+
summary?: string | undefined;
|
|
36733
36734
|
html?: string | undefined;
|
|
36734
|
-
json?: unknown;
|
|
36735
36735
|
actions?: Record<string, unknown> | undefined;
|
|
36736
36736
|
screenshot?: string | undefined;
|
|
36737
36737
|
warning?: string | undefined;
|
|
@@ -37189,7 +37189,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
37189
37189
|
}, {
|
|
37190
37190
|
data: {
|
|
37191
37191
|
images?: string[] | undefined;
|
|
37192
|
-
|
|
37192
|
+
json?: unknown;
|
|
37193
37193
|
metadata?: z.objectInputType<{
|
|
37194
37194
|
title: z.ZodOptional<z.ZodString>;
|
|
37195
37195
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -37233,8 +37233,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
37233
37233
|
creditsUsed: z.ZodOptional<z.ZodNumber>;
|
|
37234
37234
|
error: z.ZodOptional<z.ZodString>;
|
|
37235
37235
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
37236
|
+
summary?: string | undefined;
|
|
37236
37237
|
html?: string | undefined;
|
|
37237
|
-
json?: unknown;
|
|
37238
37238
|
actions?: Record<string, unknown> | undefined;
|
|
37239
37239
|
screenshot?: string | undefined;
|
|
37240
37240
|
warning?: string | undefined;
|