@bubblelab/bubble-core 0.1.55 → 0.1.57
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 +102 -102
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/ai-agent.d.ts +68 -68
- package/dist/bubbles/service-bubble/airtable.d.ts +86 -86
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +128 -128
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +180 -180
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +28 -28
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +36 -36
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +118 -118
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +879 -879
- package/dist/bubbles/service-bubble/followupboss.d.ts +254 -254
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +112 -112
- package/dist/bubbles/service-bubble/gmail.d.ts +555 -555
- package/dist/bubbles/service-bubble/google-calendar.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-drive.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +35 -35
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +37 -37
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1365 -1365
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +320 -320
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +91 -91
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +107 -107
- package/dist/bubbles/service-bubble/telegram.d.ts +1491 -1491
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +16 -16
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- 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 +126 -126
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +421 -421
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +150 -150
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +146 -146
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +86 -86
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- 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
|
+
parameters: unknown[];
|
|
15
16
|
timeout: number;
|
|
16
17
|
ignoreSSL: boolean;
|
|
17
18
|
query: string;
|
|
18
|
-
allowedOperations: ("
|
|
19
|
-
parameters: unknown[];
|
|
19
|
+
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
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
|
-
allowedOperations?: ("
|
|
28
|
-
parameters?: unknown[] | undefined;
|
|
28
|
+
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | 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
|
+
executionTime: number;
|
|
52
53
|
error: string;
|
|
53
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
|
+
executionTime: number;
|
|
64
65
|
error: string;
|
|
65
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
|
-
allowedOperations: ("
|
|
96
|
-
parameters: unknown[];
|
|
96
|
+
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
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
|
-
allowedOperations?: ("
|
|
105
|
-
parameters?: unknown[] | undefined;
|
|
105
|
+
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | 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
|
+
executionTime: number;
|
|
127
128
|
error: string;
|
|
128
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
|
+
executionTime: number;
|
|
139
140
|
error: string;
|
|
140
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;
|
|
@@ -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
|
-
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
|
+
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
|
-
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;
|
|
@@ -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
|
-
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
|
+
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
|
-
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;
|