@bubblelab/bubble-core 0.1.247 → 0.1.248
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 +8 -8
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2031 -74
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +284 -4
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2604 -353
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +475 -0
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
- package/dist/bubbles.json +2081 -2
- package/package.json +2 -2
|
@@ -891,10 +891,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
891
891
|
type: "github" | "pdf" | "research";
|
|
892
892
|
})[] | undefined;
|
|
893
893
|
integration?: string | undefined;
|
|
894
|
-
backoffFactor?: number | undefined;
|
|
895
894
|
sources?: ("images" | "web" | "news" | {
|
|
896
895
|
type: "images" | "web" | "news";
|
|
897
896
|
})[] | undefined;
|
|
897
|
+
backoffFactor?: number | undefined;
|
|
898
898
|
tbs?: string | undefined;
|
|
899
899
|
ignoreInvalidURLs?: boolean | undefined;
|
|
900
900
|
scrapeOptions?: {
|
|
@@ -998,10 +998,10 @@ declare const FirecrawlParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
998
998
|
type: "github" | "pdf" | "research";
|
|
999
999
|
})[] | undefined;
|
|
1000
1000
|
integration?: string | undefined;
|
|
1001
|
-
backoffFactor?: number | undefined;
|
|
1002
1001
|
sources?: ("images" | "web" | "news" | {
|
|
1003
1002
|
type: "images" | "web" | "news";
|
|
1004
1003
|
})[] | undefined;
|
|
1004
|
+
backoffFactor?: number | undefined;
|
|
1005
1005
|
tbs?: string | undefined;
|
|
1006
1006
|
ignoreInvalidURLs?: boolean | undefined;
|
|
1007
1007
|
scrapeOptions?: {
|
|
@@ -18841,8 +18841,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
18841
18841
|
status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
|
|
18842
18842
|
data?: unknown;
|
|
18843
18843
|
id?: string | undefined;
|
|
18844
|
-
warning?: string | undefined;
|
|
18845
18844
|
sources?: Record<string, unknown> | undefined;
|
|
18845
|
+
warning?: string | undefined;
|
|
18846
18846
|
expiresAt?: string | undefined;
|
|
18847
18847
|
}, {
|
|
18848
18848
|
error: string;
|
|
@@ -18851,8 +18851,8 @@ declare const FirecrawlResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Zod
|
|
|
18851
18851
|
status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
|
|
18852
18852
|
data?: unknown;
|
|
18853
18853
|
id?: string | undefined;
|
|
18854
|
-
warning?: string | undefined;
|
|
18855
18854
|
sources?: Record<string, unknown> | undefined;
|
|
18855
|
+
warning?: string | undefined;
|
|
18856
18856
|
expiresAt?: string | undefined;
|
|
18857
18857
|
}>]>;
|
|
18858
18858
|
type FirecrawlParams = z.input<typeof FirecrawlParamsSchema>;
|
|
@@ -19757,10 +19757,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19757
19757
|
type: "github" | "pdf" | "research";
|
|
19758
19758
|
})[] | undefined;
|
|
19759
19759
|
integration?: string | undefined;
|
|
19760
|
-
backoffFactor?: number | undefined;
|
|
19761
19760
|
sources?: ("images" | "web" | "news" | {
|
|
19762
19761
|
type: "images" | "web" | "news";
|
|
19763
19762
|
})[] | undefined;
|
|
19763
|
+
backoffFactor?: number | undefined;
|
|
19764
19764
|
tbs?: string | undefined;
|
|
19765
19765
|
ignoreInvalidURLs?: boolean | undefined;
|
|
19766
19766
|
scrapeOptions?: {
|
|
@@ -19864,10 +19864,10 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
19864
19864
|
type: "github" | "pdf" | "research";
|
|
19865
19865
|
})[] | undefined;
|
|
19866
19866
|
integration?: string | undefined;
|
|
19867
|
-
backoffFactor?: number | undefined;
|
|
19868
19867
|
sources?: ("images" | "web" | "news" | {
|
|
19869
19868
|
type: "images" | "web" | "news";
|
|
19870
19869
|
})[] | undefined;
|
|
19870
|
+
backoffFactor?: number | undefined;
|
|
19871
19871
|
tbs?: string | undefined;
|
|
19872
19872
|
ignoreInvalidURLs?: boolean | undefined;
|
|
19873
19873
|
scrapeOptions?: {
|
|
@@ -37707,8 +37707,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
37707
37707
|
status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
|
|
37708
37708
|
data?: unknown;
|
|
37709
37709
|
id?: string | undefined;
|
|
37710
|
-
warning?: string | undefined;
|
|
37711
37710
|
sources?: Record<string, unknown> | undefined;
|
|
37711
|
+
warning?: string | undefined;
|
|
37712
37712
|
expiresAt?: string | undefined;
|
|
37713
37713
|
}, {
|
|
37714
37714
|
error: string;
|
|
@@ -37717,8 +37717,8 @@ export declare class FirecrawlBubble<T extends FirecrawlParams = FirecrawlParams
|
|
|
37717
37717
|
status?: "failed" | "completed" | "processing" | "cancelled" | undefined;
|
|
37718
37718
|
data?: unknown;
|
|
37719
37719
|
id?: string | undefined;
|
|
37720
|
-
warning?: string | undefined;
|
|
37721
37720
|
sources?: Record<string, unknown> | undefined;
|
|
37721
|
+
warning?: string | undefined;
|
|
37722
37722
|
expiresAt?: string | undefined;
|
|
37723
37723
|
}>]>;
|
|
37724
37724
|
static readonly shortDescription = "Firecrawl API integration for web crawl operations.";
|