@bubblelab/bubble-core 0.1.62 → 0.1.64
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 +88 -88
- package/dist/bubbles/service-bubble/agi-inc.d.ts +148 -148
- package/dist/bubbles/service-bubble/ai-agent.d.ts +80 -80
- package/dist/bubbles/service-bubble/airtable.d.ts +214 -214
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +84 -84
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +90 -90
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +106 -106
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +138 -138
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +862 -862
- package/dist/bubbles/service-bubble/followupboss.d.ts +270 -270
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +88 -88
- package/dist/bubbles/service-bubble/github.d.ts +268 -268
- package/dist/bubbles/service-bubble/gmail.d.ts +416 -416
- package/dist/bubbles/service-bubble/google-calendar.d.ts +162 -162
- package/dist/bubbles/service-bubble/google-drive.d.ts +128 -128
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +54 -54
- package/dist/bubbles/service-bubble/hello-world.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +74 -74
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1923 -1923
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +44 -44
- package/dist/bubbles/service-bubble/slack/slack.d.ts +465 -465
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +141 -141
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +29 -29
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +28 -28
- 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/company-enrichment-tool.d.ts +88 -88
- 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 +8 -8
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +338 -338
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +130 -130
- 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 +80 -80
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +182 -182
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +22 -22
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- 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 +44 -44
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +114 -114
- 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 +56 -56
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- 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
|
+
parameters: unknown[];
|
|
15
16
|
timeout: number;
|
|
16
17
|
ignoreSSL: boolean;
|
|
17
18
|
query: string;
|
|
18
19
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
19
|
-
parameters: unknown[];
|
|
20
20
|
maxRows: number;
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
query: string;
|
|
24
|
+
parameters?: unknown[] | undefined;
|
|
24
25
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
25
26
|
timeout?: number | undefined;
|
|
26
27
|
ignoreSSL?: boolean | undefined;
|
|
27
28
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
28
|
-
parameters?: unknown[] | undefined;
|
|
29
29
|
maxRows?: number | undefined;
|
|
30
30
|
}>;
|
|
31
31
|
type PostgreSQLParamsInput = z.input<typeof PostgreSQLParamsSchema>;
|
|
@@ -49,24 +49,24 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
|
|
|
49
49
|
error: z.ZodString;
|
|
50
50
|
cleanedJSONString: z.ZodString;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
|
|
52
|
+
executionTime: number;
|
|
53
53
|
error: string;
|
|
54
|
+
success: boolean;
|
|
54
55
|
rows: Record<string, unknown>[];
|
|
55
56
|
rowCount: number | null;
|
|
56
57
|
command: string;
|
|
57
|
-
executionTime: number;
|
|
58
58
|
cleanedJSONString: string;
|
|
59
59
|
fields?: {
|
|
60
60
|
name: string;
|
|
61
61
|
dataTypeID: number;
|
|
62
62
|
}[] | undefined;
|
|
63
63
|
}, {
|
|
64
|
-
|
|
64
|
+
executionTime: number;
|
|
65
65
|
error: string;
|
|
66
|
+
success: boolean;
|
|
66
67
|
rows: Record<string, unknown>[];
|
|
67
68
|
rowCount: number | null;
|
|
68
69
|
command: string;
|
|
69
|
-
executionTime: number;
|
|
70
70
|
cleanedJSONString: string;
|
|
71
71
|
fields?: {
|
|
72
72
|
name: 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
|
+
parameters: unknown[];
|
|
92
93
|
timeout: number;
|
|
93
94
|
ignoreSSL: boolean;
|
|
94
95
|
query: string;
|
|
95
96
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
96
|
-
parameters: unknown[];
|
|
97
97
|
maxRows: number;
|
|
98
98
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
99
|
}, {
|
|
100
100
|
query: string;
|
|
101
|
+
parameters?: unknown[] | undefined;
|
|
101
102
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
102
103
|
timeout?: number | undefined;
|
|
103
104
|
ignoreSSL?: boolean | undefined;
|
|
104
105
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
105
|
-
parameters?: unknown[] | undefined;
|
|
106
106
|
maxRows?: number | undefined;
|
|
107
107
|
}>;
|
|
108
108
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -124,24 +124,24 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
124
124
|
error: z.ZodString;
|
|
125
125
|
cleanedJSONString: z.ZodString;
|
|
126
126
|
}, "strip", z.ZodTypeAny, {
|
|
127
|
-
|
|
127
|
+
executionTime: number;
|
|
128
128
|
error: string;
|
|
129
|
+
success: boolean;
|
|
129
130
|
rows: Record<string, unknown>[];
|
|
130
131
|
rowCount: number | null;
|
|
131
132
|
command: string;
|
|
132
|
-
executionTime: number;
|
|
133
133
|
cleanedJSONString: string;
|
|
134
134
|
fields?: {
|
|
135
135
|
name: string;
|
|
136
136
|
dataTypeID: number;
|
|
137
137
|
}[] | undefined;
|
|
138
138
|
}, {
|
|
139
|
-
|
|
139
|
+
executionTime: number;
|
|
140
140
|
error: string;
|
|
141
|
+
success: boolean;
|
|
141
142
|
rows: Record<string, unknown>[];
|
|
142
143
|
rowCount: number | null;
|
|
143
144
|
command: string;
|
|
144
|
-
executionTime: number;
|
|
145
145
|
cleanedJSONString: string;
|
|
146
146
|
fields?: {
|
|
147
147
|
name: string;
|
|
@@ -33,11 +33,11 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
33
33
|
name: z.ZodString;
|
|
34
34
|
value: z.ZodString;
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
name: string;
|
|
37
36
|
value: string;
|
|
38
|
-
}, {
|
|
39
37
|
name: string;
|
|
38
|
+
}, {
|
|
40
39
|
value: string;
|
|
40
|
+
name: string;
|
|
41
41
|
}>, "many">>;
|
|
42
42
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
43
43
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -47,8 +47,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
47
47
|
to: string | string[];
|
|
48
48
|
subject: string;
|
|
49
49
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
50
|
+
tags?: {
|
|
51
|
+
value: string;
|
|
52
|
+
name: string;
|
|
53
|
+
}[] | undefined;
|
|
54
|
+
headers?: Record<string, string> | undefined;
|
|
50
55
|
text?: string | undefined;
|
|
51
|
-
html?: string | undefined;
|
|
52
56
|
attachments?: {
|
|
53
57
|
content: string | Buffer<ArrayBufferLike>;
|
|
54
58
|
filename: string;
|
|
@@ -57,20 +61,20 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
57
61
|
}[] | undefined;
|
|
58
62
|
cc?: string | string[] | undefined;
|
|
59
63
|
bcc?: string | string[] | undefined;
|
|
64
|
+
html?: string | undefined;
|
|
60
65
|
reply_to?: string | string[] | undefined;
|
|
61
66
|
scheduled_at?: string | undefined;
|
|
62
|
-
tags?: {
|
|
63
|
-
name: string;
|
|
64
|
-
value: 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
71
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
72
|
+
tags?: {
|
|
73
|
+
value: string;
|
|
74
|
+
name: string;
|
|
75
|
+
}[] | undefined;
|
|
76
|
+
headers?: Record<string, string> | undefined;
|
|
72
77
|
text?: string | undefined;
|
|
73
|
-
html?: string | undefined;
|
|
74
78
|
attachments?: {
|
|
75
79
|
content: string | Buffer<ArrayBufferLike>;
|
|
76
80
|
filename: string;
|
|
@@ -80,13 +84,9 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
80
84
|
from?: string | undefined;
|
|
81
85
|
cc?: string | string[] | undefined;
|
|
82
86
|
bcc?: string | string[] | undefined;
|
|
87
|
+
html?: string | undefined;
|
|
83
88
|
reply_to?: string | string[] | undefined;
|
|
84
89
|
scheduled_at?: string | undefined;
|
|
85
|
-
tags?: {
|
|
86
|
-
name: string;
|
|
87
|
-
value: 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
|
-
success: boolean;
|
|
111
109
|
error: string;
|
|
110
|
+
success: boolean;
|
|
111
|
+
operation: "send_email";
|
|
112
112
|
email_id?: string | undefined;
|
|
113
113
|
}, {
|
|
114
|
-
operation: "send_email";
|
|
115
|
-
success: boolean;
|
|
116
114
|
error: string;
|
|
115
|
+
success: boolean;
|
|
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
|
-
success: boolean;
|
|
128
126
|
error: string;
|
|
127
|
+
success: boolean;
|
|
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
|
-
success: boolean;
|
|
135
133
|
error: string;
|
|
134
|
+
success: boolean;
|
|
135
|
+
operation: "get_email_status";
|
|
136
136
|
status?: string | undefined;
|
|
137
137
|
created_at?: string | undefined;
|
|
138
138
|
last_event?: string | undefined;
|
|
@@ -180,11 +180,11 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
180
180
|
name: z.ZodString;
|
|
181
181
|
value: z.ZodString;
|
|
182
182
|
}, "strip", z.ZodTypeAny, {
|
|
183
|
-
name: string;
|
|
184
183
|
value: string;
|
|
185
|
-
}, {
|
|
186
184
|
name: string;
|
|
185
|
+
}, {
|
|
187
186
|
value: string;
|
|
187
|
+
name: string;
|
|
188
188
|
}>, "many">>;
|
|
189
189
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
190
190
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -194,8 +194,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
194
194
|
to: string | string[];
|
|
195
195
|
subject: string;
|
|
196
196
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
197
|
+
tags?: {
|
|
198
|
+
value: string;
|
|
199
|
+
name: string;
|
|
200
|
+
}[] | undefined;
|
|
201
|
+
headers?: Record<string, string> | undefined;
|
|
197
202
|
text?: string | undefined;
|
|
198
|
-
html?: string | undefined;
|
|
199
203
|
attachments?: {
|
|
200
204
|
content: string | Buffer<ArrayBufferLike>;
|
|
201
205
|
filename: string;
|
|
@@ -204,20 +208,20 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
204
208
|
}[] | undefined;
|
|
205
209
|
cc?: string | string[] | undefined;
|
|
206
210
|
bcc?: string | string[] | undefined;
|
|
211
|
+
html?: string | undefined;
|
|
207
212
|
reply_to?: string | string[] | undefined;
|
|
208
213
|
scheduled_at?: string | undefined;
|
|
209
|
-
tags?: {
|
|
210
|
-
name: string;
|
|
211
|
-
value: 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
218
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
219
|
+
tags?: {
|
|
220
|
+
value: string;
|
|
221
|
+
name: string;
|
|
222
|
+
}[] | undefined;
|
|
223
|
+
headers?: Record<string, string> | undefined;
|
|
219
224
|
text?: string | undefined;
|
|
220
|
-
html?: string | undefined;
|
|
221
225
|
attachments?: {
|
|
222
226
|
content: string | Buffer<ArrayBufferLike>;
|
|
223
227
|
filename: string;
|
|
@@ -227,13 +231,9 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
227
231
|
from?: string | undefined;
|
|
228
232
|
cc?: string | string[] | undefined;
|
|
229
233
|
bcc?: string | string[] | undefined;
|
|
234
|
+
html?: string | undefined;
|
|
230
235
|
reply_to?: string | string[] | undefined;
|
|
231
236
|
scheduled_at?: string | undefined;
|
|
232
|
-
tags?: {
|
|
233
|
-
name: string;
|
|
234
|
-
value: 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
|
-
success: boolean;
|
|
258
256
|
error: string;
|
|
257
|
+
success: boolean;
|
|
258
|
+
operation: "send_email";
|
|
259
259
|
email_id?: string | undefined;
|
|
260
260
|
}, {
|
|
261
|
-
operation: "send_email";
|
|
262
|
-
success: boolean;
|
|
263
261
|
error: string;
|
|
262
|
+
success: boolean;
|
|
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
|
-
success: boolean;
|
|
275
273
|
error: string;
|
|
274
|
+
success: boolean;
|
|
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
|
-
success: boolean;
|
|
282
280
|
error: string;
|
|
281
|
+
success: boolean;
|
|
282
|
+
operation: "get_email_status";
|
|
283
283
|
status?: string | undefined;
|
|
284
284
|
created_at?: string | undefined;
|
|
285
285
|
last_event?: string | undefined;
|