@bubblelab/bubble-core 0.1.44 → 0.1.45
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 +67 -67
- package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +6 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/firecrawl.d.ts +268 -268
- package/dist/bubbles/service-bubble/followupboss.d.ts +172 -172
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +28 -28
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +88 -88
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +50 -50
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- 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 +330 -330
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- 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
24
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
25
|
+
parameters?: unknown[] | 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>;
|
|
@@ -51,10 +51,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
|
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
success: boolean;
|
|
53
53
|
error: string;
|
|
54
|
+
executionTime: number;
|
|
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;
|
|
@@ -63,10 +63,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
|
|
|
63
63
|
}, {
|
|
64
64
|
success: boolean;
|
|
65
65
|
error: string;
|
|
66
|
+
executionTime: number;
|
|
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
101
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
102
|
+
parameters?: unknown[] | 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<{
|
|
@@ -126,10 +126,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
126
126
|
}, "strip", z.ZodTypeAny, {
|
|
127
127
|
success: boolean;
|
|
128
128
|
error: string;
|
|
129
|
+
executionTime: number;
|
|
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;
|
|
@@ -138,10 +138,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
138
138
|
}, {
|
|
139
139
|
success: boolean;
|
|
140
140
|
error: string;
|
|
141
|
+
executionTime: number;
|
|
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,13 +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
|
-
text?: string | undefined;
|
|
51
|
-
html?: string | undefined;
|
|
52
50
|
tags?: {
|
|
53
51
|
value: string;
|
|
54
52
|
name: string;
|
|
55
53
|
}[] | undefined;
|
|
56
54
|
headers?: Record<string, string> | undefined;
|
|
55
|
+
text?: string | undefined;
|
|
57
56
|
attachments?: {
|
|
58
57
|
content: string | Buffer<ArrayBufferLike>;
|
|
59
58
|
filename: string;
|
|
@@ -62,6 +61,7 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
62
61
|
}[] | 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
|
}, {
|
|
@@ -69,13 +69,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
69
69
|
to: string | string[];
|
|
70
70
|
subject: string;
|
|
71
71
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
72
|
-
text?: string | undefined;
|
|
73
|
-
html?: string | undefined;
|
|
74
72
|
tags?: {
|
|
75
73
|
value: string;
|
|
76
74
|
name: string;
|
|
77
75
|
}[] | undefined;
|
|
78
76
|
headers?: Record<string, string> | undefined;
|
|
77
|
+
text?: string | undefined;
|
|
79
78
|
attachments?: {
|
|
80
79
|
content: string | Buffer<ArrayBufferLike>;
|
|
81
80
|
filename: string;
|
|
@@ -85,6 +84,7 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
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<{
|
|
@@ -194,13 +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
|
-
text?: string | undefined;
|
|
198
|
-
html?: string | undefined;
|
|
199
197
|
tags?: {
|
|
200
198
|
value: string;
|
|
201
199
|
name: string;
|
|
202
200
|
}[] | undefined;
|
|
203
201
|
headers?: Record<string, string> | undefined;
|
|
202
|
+
text?: string | undefined;
|
|
204
203
|
attachments?: {
|
|
205
204
|
content: string | Buffer<ArrayBufferLike>;
|
|
206
205
|
filename: string;
|
|
@@ -209,6 +208,7 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
209
208
|
}[] | 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
|
}, {
|
|
@@ -216,13 +216,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
216
216
|
to: string | string[];
|
|
217
217
|
subject: string;
|
|
218
218
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
219
|
-
text?: string | undefined;
|
|
220
|
-
html?: string | undefined;
|
|
221
219
|
tags?: {
|
|
222
220
|
value: string;
|
|
223
221
|
name: string;
|
|
224
222
|
}[] | undefined;
|
|
225
223
|
headers?: Record<string, string> | undefined;
|
|
224
|
+
text?: string | undefined;
|
|
226
225
|
attachments?: {
|
|
227
226
|
content: string | Buffer<ArrayBufferLike>;
|
|
228
227
|
filename: string;
|
|
@@ -232,6 +231,7 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
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<{
|