@bubblelab/bubble-core 0.1.23 → 0.1.25
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 +55 -55
- package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +80 -80
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +382 -382
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.js +7 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/firecrawl.d.ts +36 -36
- package/dist/bubbles/service-bubble/followupboss.d.ts +40 -40
- package/dist/bubbles/service-bubble/github.d.ts +52 -52
- package/dist/bubbles/service-bubble/gmail.d.ts +114 -114
- package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-drive.d.ts +14 -14
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +22 -1
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +444 -444
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +132 -132
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +148 -148
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +101 -101
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js +29 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +119 -119
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +22 -22
- package/dist/bubbles.json +7 -7
- package/package.json +2 -2
|
@@ -14,10 +14,10 @@ declare const HttpParamsSchema: z.ZodObject<{
|
|
|
14
14
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
url: string;
|
|
17
|
-
method: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
18
17
|
timeout: number;
|
|
18
|
+
method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
19
19
|
followRedirects: boolean;
|
|
20
|
-
authType: "
|
|
20
|
+
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
headers?: Record<string, string> | undefined;
|
|
23
23
|
body?: string | Record<string, unknown> | undefined;
|
|
@@ -25,12 +25,12 @@ declare const HttpParamsSchema: z.ZodObject<{
|
|
|
25
25
|
}, {
|
|
26
26
|
url: string;
|
|
27
27
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
28
|
-
method?: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
29
28
|
timeout?: number | undefined;
|
|
30
29
|
headers?: Record<string, string> | undefined;
|
|
30
|
+
method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
31
31
|
body?: string | Record<string, unknown> | undefined;
|
|
32
32
|
followRedirects?: boolean | undefined;
|
|
33
|
-
authType?: "
|
|
33
|
+
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
34
34
|
authHeader?: string | undefined;
|
|
35
35
|
}>;
|
|
36
36
|
type HttpParamsInput = z.input<typeof HttpParamsSchema>;
|
|
@@ -84,10 +84,10 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
84
84
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
url: string;
|
|
87
|
-
method: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
88
87
|
timeout: number;
|
|
88
|
+
method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
89
89
|
followRedirects: boolean;
|
|
90
|
-
authType: "
|
|
90
|
+
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
91
91
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
92
92
|
headers?: Record<string, string> | undefined;
|
|
93
93
|
body?: string | Record<string, unknown> | undefined;
|
|
@@ -95,12 +95,12 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
95
95
|
}, {
|
|
96
96
|
url: string;
|
|
97
97
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
98
|
-
method?: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
99
98
|
timeout?: number | undefined;
|
|
100
99
|
headers?: Record<string, string> | undefined;
|
|
100
|
+
method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
101
101
|
body?: string | Record<string, unknown> | undefined;
|
|
102
102
|
followRedirects?: boolean | undefined;
|
|
103
|
-
authType?: "
|
|
103
|
+
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
104
104
|
authHeader?: string | undefined;
|
|
105
105
|
}>;
|
|
106
106
|
static readonly resultSchema: z.ZodObject<{
|