@bubblelab/bubble-core 0.1.19 → 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/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
|
@@ -12,20 +12,20 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
|
|
|
12
12
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
13
13
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
|
-
timeout: number;
|
|
16
15
|
ignoreSSL: boolean;
|
|
17
16
|
query: string;
|
|
18
17
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
19
18
|
parameters: unknown[];
|
|
19
|
+
timeout: number;
|
|
20
20
|
maxRows: number;
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
query: string;
|
|
24
24
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
25
|
-
timeout?: number | undefined;
|
|
26
25
|
ignoreSSL?: boolean | undefined;
|
|
27
26
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
28
27
|
parameters?: unknown[] | undefined;
|
|
28
|
+
timeout?: number | undefined;
|
|
29
29
|
maxRows?: number | undefined;
|
|
30
30
|
}>;
|
|
31
31
|
type PostgreSQLParamsInput = z.input<typeof PostgreSQLParamsSchema>;
|
|
@@ -49,8 +49,8 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
|
|
|
49
49
|
error: z.ZodString;
|
|
50
50
|
cleanedJSONString: z.ZodString;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
error: string;
|
|
53
52
|
success: boolean;
|
|
53
|
+
error: string;
|
|
54
54
|
rows: Record<string, unknown>[];
|
|
55
55
|
rowCount: number | null;
|
|
56
56
|
command: string;
|
|
@@ -61,8 +61,8 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
|
|
|
61
61
|
dataTypeID: number;
|
|
62
62
|
}[] | undefined;
|
|
63
63
|
}, {
|
|
64
|
-
error: string;
|
|
65
64
|
success: boolean;
|
|
65
|
+
error: string;
|
|
66
66
|
rows: Record<string, unknown>[];
|
|
67
67
|
rowCount: number | null;
|
|
68
68
|
command: string;
|
|
@@ -89,20 +89,20 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
89
89
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
90
90
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
timeout: number;
|
|
93
92
|
ignoreSSL: boolean;
|
|
94
93
|
query: string;
|
|
95
94
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
96
95
|
parameters: unknown[];
|
|
96
|
+
timeout: number;
|
|
97
97
|
maxRows: number;
|
|
98
98
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
99
|
}, {
|
|
100
100
|
query: string;
|
|
101
101
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
102
|
-
timeout?: number | undefined;
|
|
103
102
|
ignoreSSL?: boolean | undefined;
|
|
104
103
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
105
104
|
parameters?: unknown[] | undefined;
|
|
105
|
+
timeout?: number | undefined;
|
|
106
106
|
maxRows?: number | undefined;
|
|
107
107
|
}>;
|
|
108
108
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -124,8 +124,8 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
124
124
|
error: z.ZodString;
|
|
125
125
|
cleanedJSONString: z.ZodString;
|
|
126
126
|
}, "strip", z.ZodTypeAny, {
|
|
127
|
-
error: string;
|
|
128
127
|
success: boolean;
|
|
128
|
+
error: string;
|
|
129
129
|
rows: Record<string, unknown>[];
|
|
130
130
|
rowCount: number | null;
|
|
131
131
|
command: string;
|
|
@@ -136,8 +136,8 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
136
136
|
dataTypeID: number;
|
|
137
137
|
}[] | undefined;
|
|
138
138
|
}, {
|
|
139
|
-
error: string;
|
|
140
139
|
success: boolean;
|
|
140
|
+
error: string;
|
|
141
141
|
rows: Record<string, unknown>[];
|
|
142
142
|
rowCount: number | null;
|
|
143
143
|
command: string;
|
|
@@ -46,6 +46,7 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
46
46
|
from: string;
|
|
47
47
|
to: string | string[];
|
|
48
48
|
subject: string;
|
|
49
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
49
50
|
text?: string | undefined;
|
|
50
51
|
attachments?: {
|
|
51
52
|
content: string | Buffer<ArrayBufferLike>;
|
|
@@ -53,21 +54,21 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
53
54
|
path?: string | undefined;
|
|
54
55
|
content_type?: string | undefined;
|
|
55
56
|
}[] | undefined;
|
|
56
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
57
|
-
tags?: {
|
|
58
|
-
value: string;
|
|
59
|
-
name: string;
|
|
60
|
-
}[] | undefined;
|
|
61
|
-
headers?: Record<string, string> | undefined;
|
|
62
57
|
cc?: string | string[] | undefined;
|
|
63
58
|
bcc?: string | string[] | undefined;
|
|
64
59
|
html?: string | undefined;
|
|
65
60
|
reply_to?: string | string[] | undefined;
|
|
66
61
|
scheduled_at?: string | undefined;
|
|
62
|
+
tags?: {
|
|
63
|
+
value: string;
|
|
64
|
+
name: string;
|
|
65
|
+
}[] | undefined;
|
|
66
|
+
headers?: Record<string, string> | undefined;
|
|
67
67
|
}, {
|
|
68
68
|
operation: "send_email";
|
|
69
69
|
to: string | string[];
|
|
70
70
|
subject: string;
|
|
71
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
71
72
|
text?: string | undefined;
|
|
72
73
|
attachments?: {
|
|
73
74
|
content: string | Buffer<ArrayBufferLike>;
|
|
@@ -75,18 +76,17 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
75
76
|
path?: string | undefined;
|
|
76
77
|
content_type?: string | undefined;
|
|
77
78
|
}[] | undefined;
|
|
78
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
79
|
-
tags?: {
|
|
80
|
-
value: string;
|
|
81
|
-
name: string;
|
|
82
|
-
}[] | undefined;
|
|
83
|
-
headers?: Record<string, string> | undefined;
|
|
84
79
|
from?: string | undefined;
|
|
85
80
|
cc?: string | string[] | undefined;
|
|
86
81
|
bcc?: string | string[] | undefined;
|
|
87
82
|
html?: string | undefined;
|
|
88
83
|
reply_to?: string | string[] | undefined;
|
|
89
84
|
scheduled_at?: string | undefined;
|
|
85
|
+
tags?: {
|
|
86
|
+
value: string;
|
|
87
|
+
name: string;
|
|
88
|
+
}[] | undefined;
|
|
89
|
+
headers?: Record<string, string> | undefined;
|
|
90
90
|
}>, z.ZodObject<{
|
|
91
91
|
operation: z.ZodLiteral<"get_email_status">;
|
|
92
92
|
email_id: z.ZodString;
|
|
@@ -106,14 +106,14 @@ declare const ResendResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
106
106
|
email_id: z.ZodOptional<z.ZodString>;
|
|
107
107
|
error: z.ZodString;
|
|
108
108
|
}, "strip", z.ZodTypeAny, {
|
|
109
|
-
operation: "send_email";
|
|
110
|
-
error: string;
|
|
111
109
|
success: boolean;
|
|
110
|
+
error: string;
|
|
111
|
+
operation: "send_email";
|
|
112
112
|
email_id?: string | undefined;
|
|
113
113
|
}, {
|
|
114
|
-
operation: "send_email";
|
|
115
|
-
error: string;
|
|
116
114
|
success: boolean;
|
|
115
|
+
error: string;
|
|
116
|
+
operation: "send_email";
|
|
117
117
|
email_id?: string | undefined;
|
|
118
118
|
}>, z.ZodObject<{
|
|
119
119
|
operation: z.ZodLiteral<"get_email_status">;
|
|
@@ -123,16 +123,16 @@ declare const ResendResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
123
123
|
last_event: z.ZodOptional<z.ZodString>;
|
|
124
124
|
error: z.ZodString;
|
|
125
125
|
}, "strip", z.ZodTypeAny, {
|
|
126
|
-
operation: "get_email_status";
|
|
127
|
-
error: string;
|
|
128
126
|
success: boolean;
|
|
127
|
+
error: string;
|
|
128
|
+
operation: "get_email_status";
|
|
129
129
|
status?: string | undefined;
|
|
130
130
|
created_at?: string | undefined;
|
|
131
131
|
last_event?: string | undefined;
|
|
132
132
|
}, {
|
|
133
|
-
operation: "get_email_status";
|
|
134
|
-
error: string;
|
|
135
133
|
success: boolean;
|
|
134
|
+
error: string;
|
|
135
|
+
operation: "get_email_status";
|
|
136
136
|
status?: string | undefined;
|
|
137
137
|
created_at?: string | undefined;
|
|
138
138
|
last_event?: string | undefined;
|
|
@@ -193,6 +193,7 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
193
193
|
from: string;
|
|
194
194
|
to: string | string[];
|
|
195
195
|
subject: string;
|
|
196
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
196
197
|
text?: string | undefined;
|
|
197
198
|
attachments?: {
|
|
198
199
|
content: string | Buffer<ArrayBufferLike>;
|
|
@@ -200,21 +201,21 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
200
201
|
path?: string | undefined;
|
|
201
202
|
content_type?: string | undefined;
|
|
202
203
|
}[] | undefined;
|
|
203
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
204
|
-
tags?: {
|
|
205
|
-
value: string;
|
|
206
|
-
name: string;
|
|
207
|
-
}[] | undefined;
|
|
208
|
-
headers?: Record<string, string> | undefined;
|
|
209
204
|
cc?: string | string[] | undefined;
|
|
210
205
|
bcc?: string | string[] | undefined;
|
|
211
206
|
html?: string | undefined;
|
|
212
207
|
reply_to?: string | string[] | undefined;
|
|
213
208
|
scheduled_at?: string | undefined;
|
|
209
|
+
tags?: {
|
|
210
|
+
value: string;
|
|
211
|
+
name: string;
|
|
212
|
+
}[] | undefined;
|
|
213
|
+
headers?: Record<string, string> | undefined;
|
|
214
214
|
}, {
|
|
215
215
|
operation: "send_email";
|
|
216
216
|
to: string | string[];
|
|
217
217
|
subject: string;
|
|
218
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
218
219
|
text?: string | undefined;
|
|
219
220
|
attachments?: {
|
|
220
221
|
content: string | Buffer<ArrayBufferLike>;
|
|
@@ -222,18 +223,17 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
222
223
|
path?: string | undefined;
|
|
223
224
|
content_type?: string | undefined;
|
|
224
225
|
}[] | undefined;
|
|
225
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
226
|
-
tags?: {
|
|
227
|
-
value: string;
|
|
228
|
-
name: string;
|
|
229
|
-
}[] | undefined;
|
|
230
|
-
headers?: Record<string, string> | undefined;
|
|
231
226
|
from?: string | undefined;
|
|
232
227
|
cc?: string | string[] | undefined;
|
|
233
228
|
bcc?: string | string[] | undefined;
|
|
234
229
|
html?: string | undefined;
|
|
235
230
|
reply_to?: string | string[] | undefined;
|
|
236
231
|
scheduled_at?: string | undefined;
|
|
232
|
+
tags?: {
|
|
233
|
+
value: string;
|
|
234
|
+
name: string;
|
|
235
|
+
}[] | undefined;
|
|
236
|
+
headers?: Record<string, string> | undefined;
|
|
237
237
|
}>, z.ZodObject<{
|
|
238
238
|
operation: z.ZodLiteral<"get_email_status">;
|
|
239
239
|
email_id: z.ZodString;
|
|
@@ -253,14 +253,14 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
253
253
|
email_id: z.ZodOptional<z.ZodString>;
|
|
254
254
|
error: z.ZodString;
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
|
256
|
-
operation: "send_email";
|
|
257
|
-
error: string;
|
|
258
256
|
success: boolean;
|
|
257
|
+
error: string;
|
|
258
|
+
operation: "send_email";
|
|
259
259
|
email_id?: string | undefined;
|
|
260
260
|
}, {
|
|
261
|
-
operation: "send_email";
|
|
262
|
-
error: string;
|
|
263
261
|
success: boolean;
|
|
262
|
+
error: string;
|
|
263
|
+
operation: "send_email";
|
|
264
264
|
email_id?: string | undefined;
|
|
265
265
|
}>, z.ZodObject<{
|
|
266
266
|
operation: z.ZodLiteral<"get_email_status">;
|
|
@@ -270,16 +270,16 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
270
270
|
last_event: z.ZodOptional<z.ZodString>;
|
|
271
271
|
error: z.ZodString;
|
|
272
272
|
}, "strip", z.ZodTypeAny, {
|
|
273
|
-
operation: "get_email_status";
|
|
274
|
-
error: string;
|
|
275
273
|
success: boolean;
|
|
274
|
+
error: string;
|
|
275
|
+
operation: "get_email_status";
|
|
276
276
|
status?: string | undefined;
|
|
277
277
|
created_at?: string | undefined;
|
|
278
278
|
last_event?: string | undefined;
|
|
279
279
|
}, {
|
|
280
|
-
operation: "get_email_status";
|
|
281
|
-
error: string;
|
|
282
280
|
success: boolean;
|
|
281
|
+
error: string;
|
|
282
|
+
operation: "get_email_status";
|
|
283
283
|
status?: string | undefined;
|
|
284
284
|
created_at?: string | undefined;
|
|
285
285
|
last_event?: string | undefined;
|