@bubblelab/bubble-core 0.1.44 → 0.1.46
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 +65 -65
- package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +5 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.js +29 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +10 -10
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +168 -168
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +32 -32
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +36 -36
- package/dist/bubbles/service-bubble/gmail.d.ts +384 -384
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +10 -10
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +160 -160
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -284,10 +284,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
284
284
|
waitFor: number;
|
|
285
285
|
maxAge: number;
|
|
286
286
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
287
|
-
|
|
288
|
-
country?: string | undefined;
|
|
289
|
-
languages?: string[] | undefined;
|
|
290
|
-
} | undefined;
|
|
287
|
+
mobile?: boolean | undefined;
|
|
291
288
|
maxRetries?: number | undefined;
|
|
292
289
|
headers?: Record<string, string> | undefined;
|
|
293
290
|
includeTags?: string[] | undefined;
|
|
@@ -328,7 +325,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
328
325
|
scale?: number | undefined;
|
|
329
326
|
landscape?: boolean | undefined;
|
|
330
327
|
})[] | undefined;
|
|
331
|
-
|
|
328
|
+
location?: {
|
|
329
|
+
country?: string | undefined;
|
|
330
|
+
languages?: string[] | undefined;
|
|
331
|
+
} | undefined;
|
|
332
332
|
integration?: string | undefined;
|
|
333
333
|
parsers?: (string | {
|
|
334
334
|
type: "pdf";
|
|
@@ -346,11 +346,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
346
346
|
operation: "scrape";
|
|
347
347
|
url: string;
|
|
348
348
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
349
|
-
location?: {
|
|
350
|
-
country?: string | undefined;
|
|
351
|
-
languages?: string[] | undefined;
|
|
352
|
-
} | undefined;
|
|
353
349
|
timeout?: number | undefined;
|
|
350
|
+
mobile?: boolean | undefined;
|
|
354
351
|
maxRetries?: number | undefined;
|
|
355
352
|
headers?: Record<string, string> | undefined;
|
|
356
353
|
includeTags?: string[] | undefined;
|
|
@@ -391,7 +388,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
391
388
|
scale?: number | undefined;
|
|
392
389
|
landscape?: boolean | undefined;
|
|
393
390
|
})[] | undefined;
|
|
394
|
-
|
|
391
|
+
location?: {
|
|
392
|
+
country?: string | undefined;
|
|
393
|
+
languages?: string[] | undefined;
|
|
394
|
+
} | undefined;
|
|
395
395
|
integration?: string | undefined;
|
|
396
396
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
397
397
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -733,10 +733,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
733
733
|
onlyMainContent: boolean;
|
|
734
734
|
waitFor: number;
|
|
735
735
|
maxAge: number;
|
|
736
|
-
|
|
737
|
-
country?: string | undefined;
|
|
738
|
-
languages?: string[] | undefined;
|
|
739
|
-
} | undefined;
|
|
736
|
+
mobile?: boolean | undefined;
|
|
740
737
|
headers?: Record<string, string> | undefined;
|
|
741
738
|
includeTags?: string[] | undefined;
|
|
742
739
|
excludeTags?: string[] | undefined;
|
|
@@ -776,7 +773,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
776
773
|
scale?: number | undefined;
|
|
777
774
|
landscape?: boolean | undefined;
|
|
778
775
|
})[] | undefined;
|
|
779
|
-
|
|
776
|
+
location?: {
|
|
777
|
+
country?: string | undefined;
|
|
778
|
+
languages?: string[] | undefined;
|
|
779
|
+
} | undefined;
|
|
780
780
|
integration?: string | undefined;
|
|
781
781
|
parsers?: (string | {
|
|
782
782
|
type: "pdf";
|
|
@@ -790,11 +790,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
790
790
|
proxy?: string | undefined;
|
|
791
791
|
storeInCache?: boolean | undefined;
|
|
792
792
|
}, {
|
|
793
|
-
location?: {
|
|
794
|
-
country?: string | undefined;
|
|
795
|
-
languages?: string[] | undefined;
|
|
796
|
-
} | undefined;
|
|
797
793
|
timeout?: number | undefined;
|
|
794
|
+
mobile?: boolean | undefined;
|
|
798
795
|
headers?: Record<string, string> | undefined;
|
|
799
796
|
includeTags?: string[] | undefined;
|
|
800
797
|
excludeTags?: string[] | undefined;
|
|
@@ -834,7 +831,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
834
831
|
scale?: number | undefined;
|
|
835
832
|
landscape?: boolean | undefined;
|
|
836
833
|
})[] | undefined;
|
|
837
|
-
|
|
834
|
+
location?: {
|
|
835
|
+
country?: string | undefined;
|
|
836
|
+
languages?: string[] | undefined;
|
|
837
|
+
} | undefined;
|
|
838
838
|
integration?: string | undefined;
|
|
839
839
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
840
840
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -883,10 +883,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
883
883
|
operation: "search";
|
|
884
884
|
query: string;
|
|
885
885
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
886
|
-
location?: string | undefined;
|
|
887
886
|
timeout?: number | undefined;
|
|
888
887
|
maxRetries?: number | undefined;
|
|
889
888
|
limit?: number | undefined;
|
|
889
|
+
location?: string | undefined;
|
|
890
890
|
categories?: ("github" | "pdf" | "research" | {
|
|
891
891
|
type: "github" | "pdf" | "research";
|
|
892
892
|
})[] | undefined;
|
|
@@ -929,10 +929,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
929
929
|
onlyMainContent: boolean;
|
|
930
930
|
waitFor: number;
|
|
931
931
|
maxAge: number;
|
|
932
|
-
|
|
933
|
-
country?: string | undefined;
|
|
934
|
-
languages?: string[] | undefined;
|
|
935
|
-
} | undefined;
|
|
932
|
+
mobile?: boolean | undefined;
|
|
936
933
|
headers?: Record<string, string> | undefined;
|
|
937
934
|
includeTags?: string[] | undefined;
|
|
938
935
|
excludeTags?: string[] | undefined;
|
|
@@ -972,7 +969,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
972
969
|
scale?: number | undefined;
|
|
973
970
|
landscape?: boolean | undefined;
|
|
974
971
|
})[] | undefined;
|
|
975
|
-
|
|
972
|
+
location?: {
|
|
973
|
+
country?: string | undefined;
|
|
974
|
+
languages?: string[] | undefined;
|
|
975
|
+
} | undefined;
|
|
976
976
|
integration?: string | undefined;
|
|
977
977
|
parsers?: (string | {
|
|
978
978
|
type: "pdf";
|
|
@@ -990,10 +990,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
990
990
|
operation: "search";
|
|
991
991
|
query: string;
|
|
992
992
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
993
|
-
location?: string | undefined;
|
|
994
993
|
timeout?: number | undefined;
|
|
995
994
|
maxRetries?: number | undefined;
|
|
996
995
|
limit?: number | undefined;
|
|
996
|
+
location?: string | undefined;
|
|
997
997
|
categories?: ("github" | "pdf" | "research" | {
|
|
998
998
|
type: "github" | "pdf" | "research";
|
|
999
999
|
})[] | undefined;
|
|
@@ -1005,11 +1005,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1005
1005
|
tbs?: string | undefined;
|
|
1006
1006
|
ignoreInvalidURLs?: boolean | undefined;
|
|
1007
1007
|
scrapeOptions?: {
|
|
1008
|
-
location?: {
|
|
1009
|
-
country?: string | undefined;
|
|
1010
|
-
languages?: string[] | undefined;
|
|
1011
|
-
} | undefined;
|
|
1012
1008
|
timeout?: number | undefined;
|
|
1009
|
+
mobile?: boolean | undefined;
|
|
1013
1010
|
headers?: Record<string, string> | undefined;
|
|
1014
1011
|
includeTags?: string[] | undefined;
|
|
1015
1012
|
excludeTags?: string[] | undefined;
|
|
@@ -1049,7 +1046,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1049
1046
|
scale?: number | undefined;
|
|
1050
1047
|
landscape?: boolean | undefined;
|
|
1051
1048
|
})[] | undefined;
|
|
1052
|
-
|
|
1049
|
+
location?: {
|
|
1050
|
+
country?: string | undefined;
|
|
1051
|
+
languages?: string[] | undefined;
|
|
1052
|
+
} | undefined;
|
|
1053
1053
|
integration?: string | undefined;
|
|
1054
1054
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
1055
1055
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -1119,15 +1119,15 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1119
1119
|
}, "strip", z.ZodTypeAny, {
|
|
1120
1120
|
operation: "map";
|
|
1121
1121
|
url: string;
|
|
1122
|
+
search?: string | undefined;
|
|
1122
1123
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1124
|
+
timeout?: number | undefined;
|
|
1125
|
+
maxRetries?: number | undefined;
|
|
1126
|
+
limit?: number | undefined;
|
|
1123
1127
|
location?: {
|
|
1124
1128
|
country?: string | undefined;
|
|
1125
1129
|
languages?: string[] | undefined;
|
|
1126
1130
|
} | undefined;
|
|
1127
|
-
search?: string | undefined;
|
|
1128
|
-
timeout?: number | undefined;
|
|
1129
|
-
maxRetries?: number | undefined;
|
|
1130
|
-
limit?: number | undefined;
|
|
1131
1131
|
integration?: string | undefined;
|
|
1132
1132
|
backoffFactor?: number | undefined;
|
|
1133
1133
|
sitemap?: "include" | "only" | "skip" | undefined;
|
|
@@ -1135,15 +1135,15 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1135
1135
|
}, {
|
|
1136
1136
|
operation: "map";
|
|
1137
1137
|
url: string;
|
|
1138
|
+
search?: string | undefined;
|
|
1138
1139
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1140
|
+
timeout?: number | undefined;
|
|
1141
|
+
maxRetries?: number | undefined;
|
|
1142
|
+
limit?: number | undefined;
|
|
1139
1143
|
location?: {
|
|
1140
1144
|
country?: string | undefined;
|
|
1141
1145
|
languages?: string[] | undefined;
|
|
1142
1146
|
} | undefined;
|
|
1143
|
-
search?: string | undefined;
|
|
1144
|
-
timeout?: number | undefined;
|
|
1145
|
-
maxRetries?: number | undefined;
|
|
1146
|
-
limit?: number | undefined;
|
|
1147
1147
|
integration?: string | undefined;
|
|
1148
1148
|
backoffFactor?: number | undefined;
|
|
1149
1149
|
sitemap?: "include" | "only" | "skip" | undefined;
|
|
@@ -1455,10 +1455,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1455
1455
|
onlyMainContent: boolean;
|
|
1456
1456
|
waitFor: number;
|
|
1457
1457
|
maxAge: number;
|
|
1458
|
-
|
|
1459
|
-
country?: string | undefined;
|
|
1460
|
-
languages?: string[] | undefined;
|
|
1461
|
-
} | undefined;
|
|
1458
|
+
mobile?: boolean | undefined;
|
|
1462
1459
|
headers?: Record<string, string> | undefined;
|
|
1463
1460
|
includeTags?: string[] | undefined;
|
|
1464
1461
|
excludeTags?: string[] | undefined;
|
|
@@ -1498,7 +1495,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1498
1495
|
scale?: number | undefined;
|
|
1499
1496
|
landscape?: boolean | undefined;
|
|
1500
1497
|
})[] | undefined;
|
|
1501
|
-
|
|
1498
|
+
location?: {
|
|
1499
|
+
country?: string | undefined;
|
|
1500
|
+
languages?: string[] | undefined;
|
|
1501
|
+
} | undefined;
|
|
1502
1502
|
integration?: string | undefined;
|
|
1503
1503
|
parsers?: (string | {
|
|
1504
1504
|
type: "pdf";
|
|
@@ -1512,11 +1512,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1512
1512
|
proxy?: string | undefined;
|
|
1513
1513
|
storeInCache?: boolean | undefined;
|
|
1514
1514
|
}, {
|
|
1515
|
-
location?: {
|
|
1516
|
-
country?: string | undefined;
|
|
1517
|
-
languages?: string[] | undefined;
|
|
1518
|
-
} | undefined;
|
|
1519
1515
|
timeout?: number | undefined;
|
|
1516
|
+
mobile?: boolean | undefined;
|
|
1520
1517
|
headers?: Record<string, string> | undefined;
|
|
1521
1518
|
includeTags?: string[] | undefined;
|
|
1522
1519
|
excludeTags?: string[] | undefined;
|
|
@@ -1556,7 +1553,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1556
1553
|
scale?: number | undefined;
|
|
1557
1554
|
landscape?: boolean | undefined;
|
|
1558
1555
|
})[] | undefined;
|
|
1559
|
-
|
|
1556
|
+
location?: {
|
|
1557
|
+
country?: string | undefined;
|
|
1558
|
+
languages?: string[] | undefined;
|
|
1559
|
+
} | undefined;
|
|
1560
1560
|
integration?: string | undefined;
|
|
1561
1561
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
1562
1562
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -1610,9 +1610,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1610
1610
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1611
1611
|
timeout?: number | undefined;
|
|
1612
1612
|
delay?: number | undefined;
|
|
1613
|
+
prompt?: string | undefined;
|
|
1613
1614
|
maxRetries?: number | undefined;
|
|
1614
1615
|
maxConcurrency?: number | undefined;
|
|
1615
|
-
prompt?: string | undefined;
|
|
1616
1616
|
limit?: number | undefined;
|
|
1617
1617
|
webhook?: string | {
|
|
1618
1618
|
url: string;
|
|
@@ -1654,10 +1654,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1654
1654
|
onlyMainContent: boolean;
|
|
1655
1655
|
waitFor: number;
|
|
1656
1656
|
maxAge: number;
|
|
1657
|
-
|
|
1658
|
-
country?: string | undefined;
|
|
1659
|
-
languages?: string[] | undefined;
|
|
1660
|
-
} | undefined;
|
|
1657
|
+
mobile?: boolean | undefined;
|
|
1661
1658
|
headers?: Record<string, string> | undefined;
|
|
1662
1659
|
includeTags?: string[] | undefined;
|
|
1663
1660
|
excludeTags?: string[] | undefined;
|
|
@@ -1697,7 +1694,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1697
1694
|
scale?: number | undefined;
|
|
1698
1695
|
landscape?: boolean | undefined;
|
|
1699
1696
|
})[] | undefined;
|
|
1700
|
-
|
|
1697
|
+
location?: {
|
|
1698
|
+
country?: string | undefined;
|
|
1699
|
+
languages?: string[] | undefined;
|
|
1700
|
+
} | undefined;
|
|
1701
1701
|
integration?: string | undefined;
|
|
1702
1702
|
parsers?: (string | {
|
|
1703
1703
|
type: "pdf";
|
|
@@ -1727,9 +1727,9 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1727
1727
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1728
1728
|
timeout?: number | undefined;
|
|
1729
1729
|
delay?: number | undefined;
|
|
1730
|
+
prompt?: string | undefined;
|
|
1730
1731
|
maxRetries?: number | undefined;
|
|
1731
1732
|
maxConcurrency?: number | undefined;
|
|
1732
|
-
prompt?: string | undefined;
|
|
1733
1733
|
limit?: number | undefined;
|
|
1734
1734
|
webhook?: string | {
|
|
1735
1735
|
url: string;
|
|
@@ -1740,11 +1740,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1740
1740
|
integration?: string | undefined;
|
|
1741
1741
|
backoffFactor?: number | undefined;
|
|
1742
1742
|
scrapeOptions?: {
|
|
1743
|
-
location?: {
|
|
1744
|
-
country?: string | undefined;
|
|
1745
|
-
languages?: string[] | undefined;
|
|
1746
|
-
} | undefined;
|
|
1747
1743
|
timeout?: number | undefined;
|
|
1744
|
+
mobile?: boolean | undefined;
|
|
1748
1745
|
headers?: Record<string, string> | undefined;
|
|
1749
1746
|
includeTags?: string[] | undefined;
|
|
1750
1747
|
excludeTags?: string[] | undefined;
|
|
@@ -1784,7 +1781,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
1784
1781
|
scale?: number | undefined;
|
|
1785
1782
|
landscape?: boolean | undefined;
|
|
1786
1783
|
})[] | undefined;
|
|
1787
|
-
|
|
1784
|
+
location?: {
|
|
1785
|
+
country?: string | undefined;
|
|
1786
|
+
languages?: string[] | undefined;
|
|
1787
|
+
} | undefined;
|
|
1788
1788
|
integration?: string | undefined;
|
|
1789
1789
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
1790
1790
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -2123,10 +2123,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2123
2123
|
onlyMainContent: boolean;
|
|
2124
2124
|
waitFor: number;
|
|
2125
2125
|
maxAge: number;
|
|
2126
|
-
|
|
2127
|
-
country?: string | undefined;
|
|
2128
|
-
languages?: string[] | undefined;
|
|
2129
|
-
} | undefined;
|
|
2126
|
+
mobile?: boolean | undefined;
|
|
2130
2127
|
headers?: Record<string, string> | undefined;
|
|
2131
2128
|
includeTags?: string[] | undefined;
|
|
2132
2129
|
excludeTags?: string[] | undefined;
|
|
@@ -2166,7 +2163,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2166
2163
|
scale?: number | undefined;
|
|
2167
2164
|
landscape?: boolean | undefined;
|
|
2168
2165
|
})[] | undefined;
|
|
2169
|
-
|
|
2166
|
+
location?: {
|
|
2167
|
+
country?: string | undefined;
|
|
2168
|
+
languages?: string[] | undefined;
|
|
2169
|
+
} | undefined;
|
|
2170
2170
|
integration?: string | undefined;
|
|
2171
2171
|
parsers?: (string | {
|
|
2172
2172
|
type: "pdf";
|
|
@@ -2180,11 +2180,8 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2180
2180
|
proxy?: string | undefined;
|
|
2181
2181
|
storeInCache?: boolean | undefined;
|
|
2182
2182
|
}, {
|
|
2183
|
-
location?: {
|
|
2184
|
-
country?: string | undefined;
|
|
2185
|
-
languages?: string[] | undefined;
|
|
2186
|
-
} | undefined;
|
|
2187
2183
|
timeout?: number | undefined;
|
|
2184
|
+
mobile?: boolean | undefined;
|
|
2188
2185
|
headers?: Record<string, string> | undefined;
|
|
2189
2186
|
includeTags?: string[] | undefined;
|
|
2190
2187
|
excludeTags?: string[] | undefined;
|
|
@@ -2224,7 +2221,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2224
2221
|
scale?: number | undefined;
|
|
2225
2222
|
landscape?: boolean | undefined;
|
|
2226
2223
|
})[] | undefined;
|
|
2227
|
-
|
|
2224
|
+
location?: {
|
|
2225
|
+
country?: string | undefined;
|
|
2226
|
+
languages?: string[] | undefined;
|
|
2227
|
+
} | undefined;
|
|
2228
2228
|
integration?: string | undefined;
|
|
2229
2229
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
2230
2230
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -2285,12 +2285,12 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2285
2285
|
schema?: any;
|
|
2286
2286
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2287
2287
|
timeout?: number | undefined;
|
|
2288
|
+
prompt?: string | undefined;
|
|
2288
2289
|
maxRetries?: number | undefined;
|
|
2289
2290
|
systemPrompt?: string | undefined;
|
|
2290
2291
|
agent?: {
|
|
2291
2292
|
model: "FIRE-1";
|
|
2292
2293
|
} | undefined;
|
|
2293
|
-
prompt?: string | undefined;
|
|
2294
2294
|
integration?: string | undefined;
|
|
2295
2295
|
backoffFactor?: number | undefined;
|
|
2296
2296
|
ignoreInvalidURLs?: boolean | undefined;
|
|
@@ -2326,10 +2326,7 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2326
2326
|
onlyMainContent: boolean;
|
|
2327
2327
|
waitFor: number;
|
|
2328
2328
|
maxAge: number;
|
|
2329
|
-
|
|
2330
|
-
country?: string | undefined;
|
|
2331
|
-
languages?: string[] | undefined;
|
|
2332
|
-
} | undefined;
|
|
2329
|
+
mobile?: boolean | undefined;
|
|
2333
2330
|
headers?: Record<string, string> | undefined;
|
|
2334
2331
|
includeTags?: string[] | undefined;
|
|
2335
2332
|
excludeTags?: string[] | undefined;
|
|
@@ -2369,7 +2366,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2369
2366
|
scale?: number | undefined;
|
|
2370
2367
|
landscape?: boolean | undefined;
|
|
2371
2368
|
})[] | undefined;
|
|
2372
|
-
|
|
2369
|
+
location?: {
|
|
2370
|
+
country?: string | undefined;
|
|
2371
|
+
languages?: string[] | undefined;
|
|
2372
|
+
} | undefined;
|
|
2373
2373
|
integration?: string | undefined;
|
|
2374
2374
|
parsers?: (string | {
|
|
2375
2375
|
type: "pdf";
|
|
@@ -2393,21 +2393,18 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2393
2393
|
schema?: any;
|
|
2394
2394
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2395
2395
|
timeout?: number | undefined;
|
|
2396
|
+
prompt?: string | undefined;
|
|
2396
2397
|
maxRetries?: number | undefined;
|
|
2397
2398
|
systemPrompt?: string | undefined;
|
|
2398
2399
|
agent?: {
|
|
2399
2400
|
model: "FIRE-1";
|
|
2400
2401
|
} | undefined;
|
|
2401
|
-
prompt?: string | undefined;
|
|
2402
2402
|
integration?: string | undefined;
|
|
2403
2403
|
backoffFactor?: number | undefined;
|
|
2404
2404
|
ignoreInvalidURLs?: boolean | undefined;
|
|
2405
2405
|
scrapeOptions?: {
|
|
2406
|
-
location?: {
|
|
2407
|
-
country?: string | undefined;
|
|
2408
|
-
languages?: string[] | undefined;
|
|
2409
|
-
} | undefined;
|
|
2410
2406
|
timeout?: number | undefined;
|
|
2407
|
+
mobile?: boolean | undefined;
|
|
2411
2408
|
headers?: Record<string, string> | undefined;
|
|
2412
2409
|
includeTags?: string[] | undefined;
|
|
2413
2410
|
excludeTags?: string[] | undefined;
|
|
@@ -2447,7 +2444,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
2447
2444
|
scale?: number | undefined;
|
|
2448
2445
|
landscape?: boolean | undefined;
|
|
2449
2446
|
})[] | undefined;
|
|
2450
|
-
|
|
2447
|
+
location?: {
|
|
2448
|
+
country?: string | undefined;
|
|
2449
|
+
languages?: string[] | undefined;
|
|
2450
|
+
} | undefined;
|
|
2451
2451
|
integration?: string | undefined;
|
|
2452
2452
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
2453
2453
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -19150,10 +19150,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19150
19150
|
waitFor: number;
|
|
19151
19151
|
maxAge: number;
|
|
19152
19152
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19153
|
-
|
|
19154
|
-
country?: string | undefined;
|
|
19155
|
-
languages?: string[] | undefined;
|
|
19156
|
-
} | undefined;
|
|
19153
|
+
mobile?: boolean | undefined;
|
|
19157
19154
|
maxRetries?: number | undefined;
|
|
19158
19155
|
headers?: Record<string, string> | undefined;
|
|
19159
19156
|
includeTags?: string[] | undefined;
|
|
@@ -19194,7 +19191,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19194
19191
|
scale?: number | undefined;
|
|
19195
19192
|
landscape?: boolean | undefined;
|
|
19196
19193
|
})[] | undefined;
|
|
19197
|
-
|
|
19194
|
+
location?: {
|
|
19195
|
+
country?: string | undefined;
|
|
19196
|
+
languages?: string[] | undefined;
|
|
19197
|
+
} | undefined;
|
|
19198
19198
|
integration?: string | undefined;
|
|
19199
19199
|
parsers?: (string | {
|
|
19200
19200
|
type: "pdf";
|
|
@@ -19212,11 +19212,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19212
19212
|
operation: "scrape";
|
|
19213
19213
|
url: string;
|
|
19214
19214
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19215
|
-
location?: {
|
|
19216
|
-
country?: string | undefined;
|
|
19217
|
-
languages?: string[] | undefined;
|
|
19218
|
-
} | undefined;
|
|
19219
19215
|
timeout?: number | undefined;
|
|
19216
|
+
mobile?: boolean | undefined;
|
|
19220
19217
|
maxRetries?: number | undefined;
|
|
19221
19218
|
headers?: Record<string, string> | undefined;
|
|
19222
19219
|
includeTags?: string[] | undefined;
|
|
@@ -19257,7 +19254,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19257
19254
|
scale?: number | undefined;
|
|
19258
19255
|
landscape?: boolean | undefined;
|
|
19259
19256
|
})[] | undefined;
|
|
19260
|
-
|
|
19257
|
+
location?: {
|
|
19258
|
+
country?: string | undefined;
|
|
19259
|
+
languages?: string[] | undefined;
|
|
19260
|
+
} | undefined;
|
|
19261
19261
|
integration?: string | undefined;
|
|
19262
19262
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19263
19263
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -19599,10 +19599,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19599
19599
|
onlyMainContent: boolean;
|
|
19600
19600
|
waitFor: number;
|
|
19601
19601
|
maxAge: number;
|
|
19602
|
-
|
|
19603
|
-
country?: string | undefined;
|
|
19604
|
-
languages?: string[] | undefined;
|
|
19605
|
-
} | undefined;
|
|
19602
|
+
mobile?: boolean | undefined;
|
|
19606
19603
|
headers?: Record<string, string> | undefined;
|
|
19607
19604
|
includeTags?: string[] | undefined;
|
|
19608
19605
|
excludeTags?: string[] | undefined;
|
|
@@ -19642,7 +19639,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19642
19639
|
scale?: number | undefined;
|
|
19643
19640
|
landscape?: boolean | undefined;
|
|
19644
19641
|
})[] | undefined;
|
|
19645
|
-
|
|
19642
|
+
location?: {
|
|
19643
|
+
country?: string | undefined;
|
|
19644
|
+
languages?: string[] | undefined;
|
|
19645
|
+
} | undefined;
|
|
19646
19646
|
integration?: string | undefined;
|
|
19647
19647
|
parsers?: (string | {
|
|
19648
19648
|
type: "pdf";
|
|
@@ -19656,11 +19656,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19656
19656
|
proxy?: string | undefined;
|
|
19657
19657
|
storeInCache?: boolean | undefined;
|
|
19658
19658
|
}, {
|
|
19659
|
-
location?: {
|
|
19660
|
-
country?: string | undefined;
|
|
19661
|
-
languages?: string[] | undefined;
|
|
19662
|
-
} | undefined;
|
|
19663
19659
|
timeout?: number | undefined;
|
|
19660
|
+
mobile?: boolean | undefined;
|
|
19664
19661
|
headers?: Record<string, string> | undefined;
|
|
19665
19662
|
includeTags?: string[] | undefined;
|
|
19666
19663
|
excludeTags?: string[] | undefined;
|
|
@@ -19700,7 +19697,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19700
19697
|
scale?: number | undefined;
|
|
19701
19698
|
landscape?: boolean | undefined;
|
|
19702
19699
|
})[] | undefined;
|
|
19703
|
-
|
|
19700
|
+
location?: {
|
|
19701
|
+
country?: string | undefined;
|
|
19702
|
+
languages?: string[] | undefined;
|
|
19703
|
+
} | undefined;
|
|
19704
19704
|
integration?: string | undefined;
|
|
19705
19705
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19706
19706
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -19749,10 +19749,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19749
19749
|
operation: "search";
|
|
19750
19750
|
query: string;
|
|
19751
19751
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19752
|
-
location?: string | undefined;
|
|
19753
19752
|
timeout?: number | undefined;
|
|
19754
19753
|
maxRetries?: number | undefined;
|
|
19755
19754
|
limit?: number | undefined;
|
|
19755
|
+
location?: string | undefined;
|
|
19756
19756
|
categories?: ("github" | "pdf" | "research" | {
|
|
19757
19757
|
type: "github" | "pdf" | "research";
|
|
19758
19758
|
})[] | undefined;
|
|
@@ -19795,10 +19795,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19795
19795
|
onlyMainContent: boolean;
|
|
19796
19796
|
waitFor: number;
|
|
19797
19797
|
maxAge: number;
|
|
19798
|
-
|
|
19799
|
-
country?: string | undefined;
|
|
19800
|
-
languages?: string[] | undefined;
|
|
19801
|
-
} | undefined;
|
|
19798
|
+
mobile?: boolean | undefined;
|
|
19802
19799
|
headers?: Record<string, string> | undefined;
|
|
19803
19800
|
includeTags?: string[] | undefined;
|
|
19804
19801
|
excludeTags?: string[] | undefined;
|
|
@@ -19838,7 +19835,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19838
19835
|
scale?: number | undefined;
|
|
19839
19836
|
landscape?: boolean | undefined;
|
|
19840
19837
|
})[] | undefined;
|
|
19841
|
-
|
|
19838
|
+
location?: {
|
|
19839
|
+
country?: string | undefined;
|
|
19840
|
+
languages?: string[] | undefined;
|
|
19841
|
+
} | undefined;
|
|
19842
19842
|
integration?: string | undefined;
|
|
19843
19843
|
parsers?: (string | {
|
|
19844
19844
|
type: "pdf";
|
|
@@ -19856,10 +19856,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19856
19856
|
operation: "search";
|
|
19857
19857
|
query: string;
|
|
19858
19858
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19859
|
-
location?: string | undefined;
|
|
19860
19859
|
timeout?: number | undefined;
|
|
19861
19860
|
maxRetries?: number | undefined;
|
|
19862
19861
|
limit?: number | undefined;
|
|
19862
|
+
location?: string | undefined;
|
|
19863
19863
|
categories?: ("github" | "pdf" | "research" | {
|
|
19864
19864
|
type: "github" | "pdf" | "research";
|
|
19865
19865
|
})[] | undefined;
|
|
@@ -19871,11 +19871,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19871
19871
|
tbs?: string | undefined;
|
|
19872
19872
|
ignoreInvalidURLs?: boolean | undefined;
|
|
19873
19873
|
scrapeOptions?: {
|
|
19874
|
-
location?: {
|
|
19875
|
-
country?: string | undefined;
|
|
19876
|
-
languages?: string[] | undefined;
|
|
19877
|
-
} | undefined;
|
|
19878
19874
|
timeout?: number | undefined;
|
|
19875
|
+
mobile?: boolean | undefined;
|
|
19879
19876
|
headers?: Record<string, string> | undefined;
|
|
19880
19877
|
includeTags?: string[] | undefined;
|
|
19881
19878
|
excludeTags?: string[] | undefined;
|
|
@@ -19915,7 +19912,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19915
19912
|
scale?: number | undefined;
|
|
19916
19913
|
landscape?: boolean | undefined;
|
|
19917
19914
|
})[] | undefined;
|
|
19918
|
-
|
|
19915
|
+
location?: {
|
|
19916
|
+
country?: string | undefined;
|
|
19917
|
+
languages?: string[] | undefined;
|
|
19918
|
+
} | undefined;
|
|
19919
19919
|
integration?: string | undefined;
|
|
19920
19920
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
19921
19921
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -19985,15 +19985,15 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19985
19985
|
}, "strip", z.ZodTypeAny, {
|
|
19986
19986
|
operation: "map";
|
|
19987
19987
|
url: string;
|
|
19988
|
+
search?: string | undefined;
|
|
19988
19989
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19990
|
+
timeout?: number | undefined;
|
|
19991
|
+
maxRetries?: number | undefined;
|
|
19992
|
+
limit?: number | undefined;
|
|
19989
19993
|
location?: {
|
|
19990
19994
|
country?: string | undefined;
|
|
19991
19995
|
languages?: string[] | undefined;
|
|
19992
19996
|
} | undefined;
|
|
19993
|
-
search?: string | undefined;
|
|
19994
|
-
timeout?: number | undefined;
|
|
19995
|
-
maxRetries?: number | undefined;
|
|
19996
|
-
limit?: number | undefined;
|
|
19997
19997
|
integration?: string | undefined;
|
|
19998
19998
|
backoffFactor?: number | undefined;
|
|
19999
19999
|
sitemap?: "include" | "only" | "skip" | undefined;
|
|
@@ -20001,15 +20001,15 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20001
20001
|
}, {
|
|
20002
20002
|
operation: "map";
|
|
20003
20003
|
url: string;
|
|
20004
|
+
search?: string | undefined;
|
|
20004
20005
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20006
|
+
timeout?: number | undefined;
|
|
20007
|
+
maxRetries?: number | undefined;
|
|
20008
|
+
limit?: number | undefined;
|
|
20005
20009
|
location?: {
|
|
20006
20010
|
country?: string | undefined;
|
|
20007
20011
|
languages?: string[] | undefined;
|
|
20008
20012
|
} | undefined;
|
|
20009
|
-
search?: string | undefined;
|
|
20010
|
-
timeout?: number | undefined;
|
|
20011
|
-
maxRetries?: number | undefined;
|
|
20012
|
-
limit?: number | undefined;
|
|
20013
20013
|
integration?: string | undefined;
|
|
20014
20014
|
backoffFactor?: number | undefined;
|
|
20015
20015
|
sitemap?: "include" | "only" | "skip" | undefined;
|
|
@@ -20321,10 +20321,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20321
20321
|
onlyMainContent: boolean;
|
|
20322
20322
|
waitFor: number;
|
|
20323
20323
|
maxAge: number;
|
|
20324
|
-
|
|
20325
|
-
country?: string | undefined;
|
|
20326
|
-
languages?: string[] | undefined;
|
|
20327
|
-
} | undefined;
|
|
20324
|
+
mobile?: boolean | undefined;
|
|
20328
20325
|
headers?: Record<string, string> | undefined;
|
|
20329
20326
|
includeTags?: string[] | undefined;
|
|
20330
20327
|
excludeTags?: string[] | undefined;
|
|
@@ -20364,7 +20361,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20364
20361
|
scale?: number | undefined;
|
|
20365
20362
|
landscape?: boolean | undefined;
|
|
20366
20363
|
})[] | undefined;
|
|
20367
|
-
|
|
20364
|
+
location?: {
|
|
20365
|
+
country?: string | undefined;
|
|
20366
|
+
languages?: string[] | undefined;
|
|
20367
|
+
} | undefined;
|
|
20368
20368
|
integration?: string | undefined;
|
|
20369
20369
|
parsers?: (string | {
|
|
20370
20370
|
type: "pdf";
|
|
@@ -20378,11 +20378,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20378
20378
|
proxy?: string | undefined;
|
|
20379
20379
|
storeInCache?: boolean | undefined;
|
|
20380
20380
|
}, {
|
|
20381
|
-
location?: {
|
|
20382
|
-
country?: string | undefined;
|
|
20383
|
-
languages?: string[] | undefined;
|
|
20384
|
-
} | undefined;
|
|
20385
20381
|
timeout?: number | undefined;
|
|
20382
|
+
mobile?: boolean | undefined;
|
|
20386
20383
|
headers?: Record<string, string> | undefined;
|
|
20387
20384
|
includeTags?: string[] | undefined;
|
|
20388
20385
|
excludeTags?: string[] | undefined;
|
|
@@ -20422,7 +20419,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20422
20419
|
scale?: number | undefined;
|
|
20423
20420
|
landscape?: boolean | undefined;
|
|
20424
20421
|
})[] | undefined;
|
|
20425
|
-
|
|
20422
|
+
location?: {
|
|
20423
|
+
country?: string | undefined;
|
|
20424
|
+
languages?: string[] | undefined;
|
|
20425
|
+
} | undefined;
|
|
20426
20426
|
integration?: string | undefined;
|
|
20427
20427
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
20428
20428
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -20476,9 +20476,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20476
20476
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20477
20477
|
timeout?: number | undefined;
|
|
20478
20478
|
delay?: number | undefined;
|
|
20479
|
+
prompt?: string | undefined;
|
|
20479
20480
|
maxRetries?: number | undefined;
|
|
20480
20481
|
maxConcurrency?: number | undefined;
|
|
20481
|
-
prompt?: string | undefined;
|
|
20482
20482
|
limit?: number | undefined;
|
|
20483
20483
|
webhook?: string | {
|
|
20484
20484
|
url: string;
|
|
@@ -20520,10 +20520,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20520
20520
|
onlyMainContent: boolean;
|
|
20521
20521
|
waitFor: number;
|
|
20522
20522
|
maxAge: number;
|
|
20523
|
-
|
|
20524
|
-
country?: string | undefined;
|
|
20525
|
-
languages?: string[] | undefined;
|
|
20526
|
-
} | undefined;
|
|
20523
|
+
mobile?: boolean | undefined;
|
|
20527
20524
|
headers?: Record<string, string> | undefined;
|
|
20528
20525
|
includeTags?: string[] | undefined;
|
|
20529
20526
|
excludeTags?: string[] | undefined;
|
|
@@ -20563,7 +20560,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20563
20560
|
scale?: number | undefined;
|
|
20564
20561
|
landscape?: boolean | undefined;
|
|
20565
20562
|
})[] | undefined;
|
|
20566
|
-
|
|
20563
|
+
location?: {
|
|
20564
|
+
country?: string | undefined;
|
|
20565
|
+
languages?: string[] | undefined;
|
|
20566
|
+
} | undefined;
|
|
20567
20567
|
integration?: string | undefined;
|
|
20568
20568
|
parsers?: (string | {
|
|
20569
20569
|
type: "pdf";
|
|
@@ -20593,9 +20593,9 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20593
20593
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20594
20594
|
timeout?: number | undefined;
|
|
20595
20595
|
delay?: number | undefined;
|
|
20596
|
+
prompt?: string | undefined;
|
|
20596
20597
|
maxRetries?: number | undefined;
|
|
20597
20598
|
maxConcurrency?: number | undefined;
|
|
20598
|
-
prompt?: string | undefined;
|
|
20599
20599
|
limit?: number | undefined;
|
|
20600
20600
|
webhook?: string | {
|
|
20601
20601
|
url: string;
|
|
@@ -20606,11 +20606,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20606
20606
|
integration?: string | undefined;
|
|
20607
20607
|
backoffFactor?: number | undefined;
|
|
20608
20608
|
scrapeOptions?: {
|
|
20609
|
-
location?: {
|
|
20610
|
-
country?: string | undefined;
|
|
20611
|
-
languages?: string[] | undefined;
|
|
20612
|
-
} | undefined;
|
|
20613
20609
|
timeout?: number | undefined;
|
|
20610
|
+
mobile?: boolean | undefined;
|
|
20614
20611
|
headers?: Record<string, string> | undefined;
|
|
20615
20612
|
includeTags?: string[] | undefined;
|
|
20616
20613
|
excludeTags?: string[] | undefined;
|
|
@@ -20650,7 +20647,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20650
20647
|
scale?: number | undefined;
|
|
20651
20648
|
landscape?: boolean | undefined;
|
|
20652
20649
|
})[] | undefined;
|
|
20653
|
-
|
|
20650
|
+
location?: {
|
|
20651
|
+
country?: string | undefined;
|
|
20652
|
+
languages?: string[] | undefined;
|
|
20653
|
+
} | undefined;
|
|
20654
20654
|
integration?: string | undefined;
|
|
20655
20655
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
20656
20656
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -20989,10 +20989,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
20989
20989
|
onlyMainContent: boolean;
|
|
20990
20990
|
waitFor: number;
|
|
20991
20991
|
maxAge: number;
|
|
20992
|
-
|
|
20993
|
-
country?: string | undefined;
|
|
20994
|
-
languages?: string[] | undefined;
|
|
20995
|
-
} | undefined;
|
|
20992
|
+
mobile?: boolean | undefined;
|
|
20996
20993
|
headers?: Record<string, string> | undefined;
|
|
20997
20994
|
includeTags?: string[] | undefined;
|
|
20998
20995
|
excludeTags?: string[] | undefined;
|
|
@@ -21032,7 +21029,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21032
21029
|
scale?: number | undefined;
|
|
21033
21030
|
landscape?: boolean | undefined;
|
|
21034
21031
|
})[] | undefined;
|
|
21035
|
-
|
|
21032
|
+
location?: {
|
|
21033
|
+
country?: string | undefined;
|
|
21034
|
+
languages?: string[] | undefined;
|
|
21035
|
+
} | undefined;
|
|
21036
21036
|
integration?: string | undefined;
|
|
21037
21037
|
parsers?: (string | {
|
|
21038
21038
|
type: "pdf";
|
|
@@ -21046,11 +21046,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21046
21046
|
proxy?: string | undefined;
|
|
21047
21047
|
storeInCache?: boolean | undefined;
|
|
21048
21048
|
}, {
|
|
21049
|
-
location?: {
|
|
21050
|
-
country?: string | undefined;
|
|
21051
|
-
languages?: string[] | undefined;
|
|
21052
|
-
} | undefined;
|
|
21053
21049
|
timeout?: number | undefined;
|
|
21050
|
+
mobile?: boolean | undefined;
|
|
21054
21051
|
headers?: Record<string, string> | undefined;
|
|
21055
21052
|
includeTags?: string[] | undefined;
|
|
21056
21053
|
excludeTags?: string[] | undefined;
|
|
@@ -21090,7 +21087,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21090
21087
|
scale?: number | undefined;
|
|
21091
21088
|
landscape?: boolean | undefined;
|
|
21092
21089
|
})[] | undefined;
|
|
21093
|
-
|
|
21090
|
+
location?: {
|
|
21091
|
+
country?: string | undefined;
|
|
21092
|
+
languages?: string[] | undefined;
|
|
21093
|
+
} | undefined;
|
|
21094
21094
|
integration?: string | undefined;
|
|
21095
21095
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
21096
21096
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|
|
@@ -21151,12 +21151,12 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21151
21151
|
schema?: any;
|
|
21152
21152
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21153
21153
|
timeout?: number | undefined;
|
|
21154
|
+
prompt?: string | undefined;
|
|
21154
21155
|
maxRetries?: number | undefined;
|
|
21155
21156
|
systemPrompt?: string | undefined;
|
|
21156
21157
|
agent?: {
|
|
21157
21158
|
model: "FIRE-1";
|
|
21158
21159
|
} | undefined;
|
|
21159
|
-
prompt?: string | undefined;
|
|
21160
21160
|
integration?: string | undefined;
|
|
21161
21161
|
backoffFactor?: number | undefined;
|
|
21162
21162
|
ignoreInvalidURLs?: boolean | undefined;
|
|
@@ -21192,10 +21192,7 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21192
21192
|
onlyMainContent: boolean;
|
|
21193
21193
|
waitFor: number;
|
|
21194
21194
|
maxAge: number;
|
|
21195
|
-
|
|
21196
|
-
country?: string | undefined;
|
|
21197
|
-
languages?: string[] | undefined;
|
|
21198
|
-
} | undefined;
|
|
21195
|
+
mobile?: boolean | undefined;
|
|
21199
21196
|
headers?: Record<string, string> | undefined;
|
|
21200
21197
|
includeTags?: string[] | undefined;
|
|
21201
21198
|
excludeTags?: string[] | undefined;
|
|
@@ -21235,7 +21232,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21235
21232
|
scale?: number | undefined;
|
|
21236
21233
|
landscape?: boolean | undefined;
|
|
21237
21234
|
})[] | undefined;
|
|
21238
|
-
|
|
21235
|
+
location?: {
|
|
21236
|
+
country?: string | undefined;
|
|
21237
|
+
languages?: string[] | undefined;
|
|
21238
|
+
} | undefined;
|
|
21239
21239
|
integration?: string | undefined;
|
|
21240
21240
|
parsers?: (string | {
|
|
21241
21241
|
type: "pdf";
|
|
@@ -21259,21 +21259,18 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21259
21259
|
schema?: any;
|
|
21260
21260
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21261
21261
|
timeout?: number | undefined;
|
|
21262
|
+
prompt?: string | undefined;
|
|
21262
21263
|
maxRetries?: number | undefined;
|
|
21263
21264
|
systemPrompt?: string | undefined;
|
|
21264
21265
|
agent?: {
|
|
21265
21266
|
model: "FIRE-1";
|
|
21266
21267
|
} | undefined;
|
|
21267
|
-
prompt?: string | undefined;
|
|
21268
21268
|
integration?: string | undefined;
|
|
21269
21269
|
backoffFactor?: number | undefined;
|
|
21270
21270
|
ignoreInvalidURLs?: boolean | undefined;
|
|
21271
21271
|
scrapeOptions?: {
|
|
21272
|
-
location?: {
|
|
21273
|
-
country?: string | undefined;
|
|
21274
|
-
languages?: string[] | undefined;
|
|
21275
|
-
} | undefined;
|
|
21276
21272
|
timeout?: number | undefined;
|
|
21273
|
+
mobile?: boolean | undefined;
|
|
21277
21274
|
headers?: Record<string, string> | undefined;
|
|
21278
21275
|
includeTags?: string[] | undefined;
|
|
21279
21276
|
excludeTags?: string[] | undefined;
|
|
@@ -21313,7 +21310,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
21313
21310
|
scale?: number | undefined;
|
|
21314
21311
|
landscape?: boolean | undefined;
|
|
21315
21312
|
})[] | undefined;
|
|
21316
|
-
|
|
21313
|
+
location?: {
|
|
21314
|
+
country?: string | undefined;
|
|
21315
|
+
languages?: string[] | undefined;
|
|
21316
|
+
} | undefined;
|
|
21317
21317
|
integration?: string | undefined;
|
|
21318
21318
|
formats?: ("html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding" | {
|
|
21319
21319
|
type: "html" | "screenshot" | "images" | "summary" | "json" | "markdown" | "rawHtml" | "links" | "attributes" | "changeTracking" | "branding";
|