@bubblelab/bubble-core 0.1.18 → 0.1.20
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 +70 -70
- package/dist/bubbles/service-bubble/agi-inc.d.ts +140 -140
- package/dist/bubbles/service-bubble/ai-agent.d.ts +58 -58
- package/dist/bubbles/service-bubble/airtable.d.ts +106 -106
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +47 -47
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +730 -730
- package/dist/bubbles/service-bubble/followupboss.d.ts +282 -282
- package/dist/bubbles/service-bubble/github.d.ts +196 -196
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +1148 -346
- package/dist/bubbles/service-bubble/google-calendar.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.js +51 -9
- package/dist/bubbles/service-bubble/google-calendar.js.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.d.ts +259 -114
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +95 -0
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
- package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +987 -987
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +40 -40
- package/dist/bubbles/service-bubble/slack/slack.d.ts +314 -314
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +4 -2
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +30 -30
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +68 -68
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +106 -106
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +92 -92
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +3 -3
- package/package.json +2 -2
|
@@ -14,21 +14,21 @@ 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: "GET" | "POST" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
18
17
|
timeout: number;
|
|
18
|
+
method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
19
19
|
followRedirects: boolean;
|
|
20
20
|
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
|
-
body?: string | Record<string, unknown> | undefined;
|
|
23
22
|
headers?: Record<string, string> | undefined;
|
|
23
|
+
body?: string | Record<string, unknown> | undefined;
|
|
24
24
|
authHeader?: string | undefined;
|
|
25
25
|
}, {
|
|
26
26
|
url: string;
|
|
27
27
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
28
|
-
method?: "GET" | "POST" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
29
|
-
body?: string | Record<string, unknown> | undefined;
|
|
30
28
|
timeout?: number | undefined;
|
|
31
29
|
headers?: Record<string, string> | undefined;
|
|
30
|
+
method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
31
|
+
body?: string | Record<string, unknown> | undefined;
|
|
32
32
|
followRedirects?: boolean | undefined;
|
|
33
33
|
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
34
34
|
authHeader?: string | undefined;
|
|
@@ -47,21 +47,21 @@ declare const HttpResultSchema: z.ZodObject<{
|
|
|
47
47
|
size: z.ZodNumber;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
49
|
status: number;
|
|
50
|
-
error: string;
|
|
51
50
|
success: boolean;
|
|
51
|
+
error: string;
|
|
52
52
|
size: number;
|
|
53
|
-
body: string;
|
|
54
53
|
headers: Record<string, string>;
|
|
54
|
+
body: string;
|
|
55
55
|
statusText: string;
|
|
56
56
|
responseTime: number;
|
|
57
57
|
json?: unknown;
|
|
58
58
|
}, {
|
|
59
59
|
status: number;
|
|
60
|
-
error: string;
|
|
61
60
|
success: boolean;
|
|
61
|
+
error: string;
|
|
62
62
|
size: number;
|
|
63
|
-
body: string;
|
|
64
63
|
headers: Record<string, string>;
|
|
64
|
+
body: string;
|
|
65
65
|
statusText: string;
|
|
66
66
|
responseTime: number;
|
|
67
67
|
json?: unknown;
|
|
@@ -84,21 +84,21 @@ 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: "GET" | "POST" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
88
87
|
timeout: number;
|
|
88
|
+
method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
89
89
|
followRedirects: boolean;
|
|
90
90
|
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
91
91
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
92
|
-
body?: string | Record<string, unknown> | undefined;
|
|
93
92
|
headers?: Record<string, string> | undefined;
|
|
93
|
+
body?: string | Record<string, unknown> | undefined;
|
|
94
94
|
authHeader?: string | undefined;
|
|
95
95
|
}, {
|
|
96
96
|
url: string;
|
|
97
97
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
98
|
-
method?: "GET" | "POST" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
99
|
-
body?: string | Record<string, unknown> | undefined;
|
|
100
98
|
timeout?: number | undefined;
|
|
101
99
|
headers?: Record<string, string> | undefined;
|
|
100
|
+
method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
101
|
+
body?: string | Record<string, unknown> | undefined;
|
|
102
102
|
followRedirects?: boolean | undefined;
|
|
103
103
|
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
104
104
|
authHeader?: string | undefined;
|
|
@@ -115,21 +115,21 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
115
115
|
size: z.ZodNumber;
|
|
116
116
|
}, "strip", z.ZodTypeAny, {
|
|
117
117
|
status: number;
|
|
118
|
-
error: string;
|
|
119
118
|
success: boolean;
|
|
119
|
+
error: string;
|
|
120
120
|
size: number;
|
|
121
|
-
body: string;
|
|
122
121
|
headers: Record<string, string>;
|
|
122
|
+
body: string;
|
|
123
123
|
statusText: string;
|
|
124
124
|
responseTime: number;
|
|
125
125
|
json?: unknown;
|
|
126
126
|
}, {
|
|
127
127
|
status: number;
|
|
128
|
-
error: string;
|
|
129
128
|
success: boolean;
|
|
129
|
+
error: string;
|
|
130
130
|
size: number;
|
|
131
|
-
body: string;
|
|
132
131
|
headers: Record<string, string>;
|
|
132
|
+
body: string;
|
|
133
133
|
statusText: string;
|
|
134
134
|
responseTime: number;
|
|
135
135
|
json?: unknown;
|
|
@@ -11,18 +11,18 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
|
|
|
11
11
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
timeout: number;
|
|
15
14
|
query: string;
|
|
16
15
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
17
16
|
parameters: unknown[];
|
|
17
|
+
timeout: number;
|
|
18
18
|
maxRows: number;
|
|
19
19
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
query: string;
|
|
22
22
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
23
|
-
timeout?: number | undefined;
|
|
24
23
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
25
24
|
parameters?: unknown[] | undefined;
|
|
25
|
+
timeout?: number | undefined;
|
|
26
26
|
maxRows?: number | undefined;
|
|
27
27
|
}>;
|
|
28
28
|
type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;
|
|
@@ -36,16 +36,16 @@ declare const InsForgeDbResultSchema: z.ZodObject<{
|
|
|
36
36
|
error: z.ZodString;
|
|
37
37
|
cleanedJSONString: z.ZodString;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
-
error: string;
|
|
40
39
|
success: boolean;
|
|
40
|
+
error: string;
|
|
41
41
|
rows: Record<string, unknown>[];
|
|
42
42
|
rowCount: number | null;
|
|
43
43
|
command: string;
|
|
44
44
|
executionTime: number;
|
|
45
45
|
cleanedJSONString: string;
|
|
46
46
|
}, {
|
|
47
|
-
error: string;
|
|
48
47
|
success: boolean;
|
|
48
|
+
error: string;
|
|
49
49
|
rows: Record<string, unknown>[];
|
|
50
50
|
rowCount: number | null;
|
|
51
51
|
command: string;
|
|
@@ -85,18 +85,18 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
85
85
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
86
86
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
-
timeout: number;
|
|
89
88
|
query: string;
|
|
90
89
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
91
90
|
parameters: unknown[];
|
|
91
|
+
timeout: number;
|
|
92
92
|
maxRows: number;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
query: string;
|
|
96
96
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
97
|
-
timeout?: number | undefined;
|
|
98
97
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
99
98
|
parameters?: unknown[] | undefined;
|
|
99
|
+
timeout?: number | undefined;
|
|
100
100
|
maxRows?: number | undefined;
|
|
101
101
|
}>;
|
|
102
102
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -108,16 +108,16 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
108
108
|
error: z.ZodString;
|
|
109
109
|
cleanedJSONString: z.ZodString;
|
|
110
110
|
}, "strip", z.ZodTypeAny, {
|
|
111
|
-
error: string;
|
|
112
111
|
success: boolean;
|
|
112
|
+
error: string;
|
|
113
113
|
rows: Record<string, unknown>[];
|
|
114
114
|
rowCount: number | null;
|
|
115
115
|
command: string;
|
|
116
116
|
executionTime: number;
|
|
117
117
|
cleanedJSONString: string;
|
|
118
118
|
}, {
|
|
119
|
-
error: string;
|
|
120
119
|
success: boolean;
|
|
120
|
+
error: string;
|
|
121
121
|
rows: Record<string, unknown>[];
|
|
122
122
|
rowCount: number | null;
|
|
123
123
|
command: string;
|