@bubblelab/bubble-core 0.1.74 → 0.1.76
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/ai-agent.d.ts +32 -32
- package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
- package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/airtable.js +3 -1
- package/dist/bubbles/service-bubble/airtable.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +82 -82
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
- package/dist/bubbles/service-bubble/firecrawl.d.ts +250 -250
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/github.d.ts +44 -44
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +52 -52
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
- package/dist/bubbles/service-bubble/notion/notion.d.ts +304 -304
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +320 -320
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +9 -9
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +301 -301
- 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 +106 -106
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +56 -56
- package/dist/bubbles.json +3 -2
- 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
|
+
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
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
|
+
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;
|
|
@@ -46,13 +46,13 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
46
46
|
from: string;
|
|
47
47
|
to: string | string[];
|
|
48
48
|
subject: string;
|
|
49
|
-
text?: string | undefined;
|
|
50
49
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
51
50
|
tags?: {
|
|
52
51
|
value: string;
|
|
53
52
|
name: string;
|
|
54
53
|
}[] | undefined;
|
|
55
54
|
headers?: Record<string, string> | undefined;
|
|
55
|
+
text?: string | undefined;
|
|
56
56
|
attachments?: {
|
|
57
57
|
content: string | Buffer<ArrayBufferLike>;
|
|
58
58
|
filename: string;
|
|
@@ -68,13 +68,13 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
68
68
|
operation: "send_email";
|
|
69
69
|
to: string | string[];
|
|
70
70
|
subject: string;
|
|
71
|
-
text?: string | undefined;
|
|
72
71
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
72
|
tags?: {
|
|
74
73
|
value: string;
|
|
75
74
|
name: string;
|
|
76
75
|
}[] | undefined;
|
|
77
76
|
headers?: Record<string, string> | undefined;
|
|
77
|
+
text?: string | undefined;
|
|
78
78
|
attachments?: {
|
|
79
79
|
content: string | Buffer<ArrayBufferLike>;
|
|
80
80
|
filename: string;
|
|
@@ -193,13 +193,13 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
193
193
|
from: string;
|
|
194
194
|
to: string | string[];
|
|
195
195
|
subject: string;
|
|
196
|
-
text?: string | undefined;
|
|
197
196
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
198
197
|
tags?: {
|
|
199
198
|
value: string;
|
|
200
199
|
name: string;
|
|
201
200
|
}[] | undefined;
|
|
202
201
|
headers?: Record<string, string> | undefined;
|
|
202
|
+
text?: string | undefined;
|
|
203
203
|
attachments?: {
|
|
204
204
|
content: string | Buffer<ArrayBufferLike>;
|
|
205
205
|
filename: string;
|
|
@@ -215,13 +215,13 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
215
215
|
operation: "send_email";
|
|
216
216
|
to: string | string[];
|
|
217
217
|
subject: string;
|
|
218
|
-
text?: string | undefined;
|
|
219
218
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
220
219
|
tags?: {
|
|
221
220
|
value: string;
|
|
222
221
|
name: string;
|
|
223
222
|
}[] | undefined;
|
|
224
223
|
headers?: Record<string, string> | undefined;
|
|
224
|
+
text?: string | undefined;
|
|
225
225
|
attachments?: {
|
|
226
226
|
content: string | Buffer<ArrayBufferLike>;
|
|
227
227
|
filename: string;
|