@bubblelab/bubble-core 0.1.42 → 0.1.44
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 +75 -75
- package/dist/bubbles/service-bubble/agi-inc.d.ts +100 -100
- package/dist/bubbles/service-bubble/ai-agent.d.ts +54 -54
- package/dist/bubbles/service-bubble/airtable.d.ts +136 -136
- package/dist/bubbles/service-bubble/apify/apify.d.ts +6 -6
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +30 -30
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +39 -39
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +52 -52
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +664 -664
- package/dist/bubbles/service-bubble/followupboss.d.ts +156 -156
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
- package/dist/bubbles/service-bubble/github.d.ts +160 -160
- package/dist/bubbles/service-bubble/gmail.d.ts +148 -148
- package/dist/bubbles/service-bubble/google-calendar.d.ts +134 -134
- package/dist/bubbles/service-bubble/google-drive.d.ts +60 -60
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +44 -44
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1485 -1485
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +32 -32
- package/dist/bubbles/service-bubble/slack/slack.d.ts +455 -455
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +1529 -1529
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +27 -10
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.js +127 -10
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +94 -94
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +132 -132
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +74 -74
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +76 -76
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- 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
|
+
timeout: number;
|
|
15
16
|
ignoreSSL: boolean;
|
|
16
17
|
query: string;
|
|
17
18
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
18
19
|
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;
|
|
25
26
|
ignoreSSL?: boolean | undefined;
|
|
26
27
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
27
28
|
parameters?: unknown[] | undefined;
|
|
28
|
-
timeout?: number | undefined;
|
|
29
29
|
maxRows?: number | undefined;
|
|
30
30
|
}>;
|
|
31
31
|
type PostgreSQLParamsInput = z.input<typeof PostgreSQLParamsSchema>;
|
|
@@ -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;
|
|
92
93
|
ignoreSSL: boolean;
|
|
93
94
|
query: string;
|
|
94
95
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
95
96
|
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;
|
|
102
103
|
ignoreSSL?: boolean | undefined;
|
|
103
104
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
104
105
|
parameters?: unknown[] | undefined;
|
|
105
|
-
timeout?: number | undefined;
|
|
106
106
|
maxRows?: number | undefined;
|
|
107
107
|
}>;
|
|
108
108
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -48,6 +48,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
48
48
|
subject: string;
|
|
49
49
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
50
50
|
text?: string | undefined;
|
|
51
|
+
html?: string | undefined;
|
|
52
|
+
tags?: {
|
|
53
|
+
value: string;
|
|
54
|
+
name: string;
|
|
55
|
+
}[] | undefined;
|
|
56
|
+
headers?: Record<string, string> | undefined;
|
|
51
57
|
attachments?: {
|
|
52
58
|
content: string | Buffer<ArrayBufferLike>;
|
|
53
59
|
filename: string;
|
|
@@ -56,20 +62,20 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
56
62
|
}[] | undefined;
|
|
57
63
|
cc?: string | string[] | undefined;
|
|
58
64
|
bcc?: string | string[] | undefined;
|
|
59
|
-
html?: string | undefined;
|
|
60
65
|
reply_to?: string | string[] | undefined;
|
|
61
66
|
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
71
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
72
72
|
text?: string | undefined;
|
|
73
|
+
html?: string | undefined;
|
|
74
|
+
tags?: {
|
|
75
|
+
value: string;
|
|
76
|
+
name: string;
|
|
77
|
+
}[] | undefined;
|
|
78
|
+
headers?: Record<string, string> | undefined;
|
|
73
79
|
attachments?: {
|
|
74
80
|
content: string | Buffer<ArrayBufferLike>;
|
|
75
81
|
filename: string;
|
|
@@ -79,14 +85,8 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
79
85
|
from?: string | undefined;
|
|
80
86
|
cc?: string | string[] | undefined;
|
|
81
87
|
bcc?: string | string[] | undefined;
|
|
82
|
-
html?: string | undefined;
|
|
83
88
|
reply_to?: string | string[] | undefined;
|
|
84
89
|
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";
|
|
109
110
|
success: boolean;
|
|
110
111
|
error: string;
|
|
111
|
-
operation: "send_email";
|
|
112
112
|
email_id?: string | undefined;
|
|
113
113
|
}, {
|
|
114
|
+
operation: "send_email";
|
|
114
115
|
success: boolean;
|
|
115
116
|
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";
|
|
126
127
|
success: boolean;
|
|
127
128
|
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";
|
|
133
134
|
success: boolean;
|
|
134
135
|
error: string;
|
|
135
|
-
operation: "get_email_status";
|
|
136
136
|
status?: string | undefined;
|
|
137
137
|
created_at?: string | undefined;
|
|
138
138
|
last_event?: string | undefined;
|
|
@@ -195,6 +195,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
195
195
|
subject: string;
|
|
196
196
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
197
197
|
text?: string | undefined;
|
|
198
|
+
html?: string | undefined;
|
|
199
|
+
tags?: {
|
|
200
|
+
value: string;
|
|
201
|
+
name: string;
|
|
202
|
+
}[] | undefined;
|
|
203
|
+
headers?: Record<string, string> | undefined;
|
|
198
204
|
attachments?: {
|
|
199
205
|
content: string | Buffer<ArrayBufferLike>;
|
|
200
206
|
filename: string;
|
|
@@ -203,20 +209,20 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
203
209
|
}[] | undefined;
|
|
204
210
|
cc?: string | string[] | undefined;
|
|
205
211
|
bcc?: string | string[] | undefined;
|
|
206
|
-
html?: string | undefined;
|
|
207
212
|
reply_to?: string | string[] | undefined;
|
|
208
213
|
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
218
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
219
219
|
text?: string | undefined;
|
|
220
|
+
html?: string | undefined;
|
|
221
|
+
tags?: {
|
|
222
|
+
value: string;
|
|
223
|
+
name: string;
|
|
224
|
+
}[] | undefined;
|
|
225
|
+
headers?: Record<string, string> | undefined;
|
|
220
226
|
attachments?: {
|
|
221
227
|
content: string | Buffer<ArrayBufferLike>;
|
|
222
228
|
filename: string;
|
|
@@ -226,14 +232,8 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
226
232
|
from?: string | undefined;
|
|
227
233
|
cc?: string | string[] | undefined;
|
|
228
234
|
bcc?: string | string[] | undefined;
|
|
229
|
-
html?: string | undefined;
|
|
230
235
|
reply_to?: string | string[] | undefined;
|
|
231
236
|
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";
|
|
256
257
|
success: boolean;
|
|
257
258
|
error: string;
|
|
258
|
-
operation: "send_email";
|
|
259
259
|
email_id?: string | undefined;
|
|
260
260
|
}, {
|
|
261
|
+
operation: "send_email";
|
|
261
262
|
success: boolean;
|
|
262
263
|
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";
|
|
273
274
|
success: boolean;
|
|
274
275
|
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";
|
|
280
281
|
success: boolean;
|
|
281
282
|
error: string;
|
|
282
|
-
operation: "get_email_status";
|
|
283
283
|
status?: string | undefined;
|
|
284
284
|
created_at?: string | undefined;
|
|
285
285
|
last_event?: string | undefined;
|