@bubblelab/bubble-core 0.1.146 → 0.1.147
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 +76 -76
- package/dist/bubbles/service-bubble/agi-inc.d.ts +28 -28
- package/dist/bubbles/service-bubble/ai-agent.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +112 -112
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +37 -37
- package/dist/bubbles/service-bubble/confluence/confluence.d.ts +21 -21
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +394 -394
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +60 -60
- package/dist/bubbles/service-bubble/github.d.ts +210 -210
- package/dist/bubbles/service-bubble/gmail.d.ts +410 -410
- package/dist/bubbles/service-bubble/google-calendar.d.ts +2 -2
- package/dist/bubbles/service-bubble/google-drive.d.ts +48 -48
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
- package/dist/bubbles/service-bubble/jira/jira.d.ts +18 -18
- package/dist/bubbles/service-bubble/notion/notion.d.ts +13738 -9223
- package/dist/bubbles/service-bubble/notion/notion.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.js +55 -2
- package/dist/bubbles/service-bubble/notion/notion.js.map +1 -1
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +504 -504
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +25 -25
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-accept-invitations/tool.d.ts +7 -7
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-received-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-sent-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +386 -386
- package/dist/bubbles/tool-bubble/list-airtable-bases-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-airtable-tables-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- 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 +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +46 -46
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles.json +732 -3
- package/package.json +2 -2
|
@@ -48,20 +48,20 @@ 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;
|
|
57
51
|
attachments?: {
|
|
58
52
|
filename: string;
|
|
59
53
|
path?: string | undefined;
|
|
60
54
|
content?: string | undefined;
|
|
61
55
|
contentType?: string | undefined;
|
|
62
56
|
}[] | undefined;
|
|
57
|
+
tags?: {
|
|
58
|
+
value: string;
|
|
59
|
+
name: string;
|
|
60
|
+
}[] | undefined;
|
|
61
|
+
headers?: Record<string, string> | undefined;
|
|
63
62
|
cc?: string | string[] | undefined;
|
|
64
63
|
bcc?: string | string[] | undefined;
|
|
64
|
+
html?: string | undefined;
|
|
65
65
|
reply_to?: string | string[] | undefined;
|
|
66
66
|
scheduled_at?: string | undefined;
|
|
67
67
|
}, {
|
|
@@ -70,21 +70,21 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
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;
|
|
79
73
|
attachments?: {
|
|
80
74
|
filename: string;
|
|
81
75
|
path?: string | undefined;
|
|
82
76
|
content?: string | undefined;
|
|
83
77
|
contentType?: string | undefined;
|
|
84
78
|
}[] | undefined;
|
|
79
|
+
tags?: {
|
|
80
|
+
value: string;
|
|
81
|
+
name: string;
|
|
82
|
+
}[] | undefined;
|
|
83
|
+
headers?: Record<string, string> | undefined;
|
|
85
84
|
from?: string | undefined;
|
|
86
85
|
cc?: string | string[] | undefined;
|
|
87
86
|
bcc?: string | string[] | undefined;
|
|
87
|
+
html?: string | undefined;
|
|
88
88
|
reply_to?: string | string[] | undefined;
|
|
89
89
|
scheduled_at?: string | undefined;
|
|
90
90
|
}>, z.ZodObject<{
|
|
@@ -195,20 +195,20 @@ 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;
|
|
204
198
|
attachments?: {
|
|
205
199
|
filename: string;
|
|
206
200
|
path?: string | undefined;
|
|
207
201
|
content?: string | undefined;
|
|
208
202
|
contentType?: string | undefined;
|
|
209
203
|
}[] | undefined;
|
|
204
|
+
tags?: {
|
|
205
|
+
value: string;
|
|
206
|
+
name: string;
|
|
207
|
+
}[] | undefined;
|
|
208
|
+
headers?: Record<string, string> | undefined;
|
|
210
209
|
cc?: string | string[] | undefined;
|
|
211
210
|
bcc?: string | string[] | undefined;
|
|
211
|
+
html?: string | undefined;
|
|
212
212
|
reply_to?: string | string[] | undefined;
|
|
213
213
|
scheduled_at?: string | undefined;
|
|
214
214
|
}, {
|
|
@@ -217,21 +217,21 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
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;
|
|
226
220
|
attachments?: {
|
|
227
221
|
filename: string;
|
|
228
222
|
path?: string | undefined;
|
|
229
223
|
content?: string | undefined;
|
|
230
224
|
contentType?: string | undefined;
|
|
231
225
|
}[] | undefined;
|
|
226
|
+
tags?: {
|
|
227
|
+
value: string;
|
|
228
|
+
name: string;
|
|
229
|
+
}[] | undefined;
|
|
230
|
+
headers?: Record<string, string> | undefined;
|
|
232
231
|
from?: string | undefined;
|
|
233
232
|
cc?: string | string[] | undefined;
|
|
234
233
|
bcc?: string | string[] | undefined;
|
|
234
|
+
html?: string | undefined;
|
|
235
235
|
reply_to?: string | string[] | undefined;
|
|
236
236
|
scheduled_at?: string | undefined;
|
|
237
237
|
}>, z.ZodObject<{
|