@bubblelab/bubble-core 0.1.0 → 0.1.1
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 +19 -19
- package/dist/bubbles/service-bubble/ai-agent.d.ts +28 -28
- package/dist/bubbles/service-bubble/gmail.d.ts +4 -4
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/google-drive.d.ts +4 -4
- package/dist/bubbles/service-bubble/google-sheets.d.ts +20 -20
- package/dist/bubbles/service-bubble/http.d.ts +2 -2
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack.d.ts +58 -58
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +32 -32
- package/package.json +3 -2
|
@@ -75,8 +75,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
75
75
|
mimeType: z.ZodDefault<z.ZodString>;
|
|
76
76
|
description: z.ZodOptional<z.ZodString>;
|
|
77
77
|
}, "strip", z.ZodTypeAny, {
|
|
78
|
-
data: string;
|
|
79
78
|
type: "base64";
|
|
79
|
+
data: string;
|
|
80
80
|
mimeType: string;
|
|
81
81
|
description?: string | undefined;
|
|
82
82
|
}, {
|
|
@@ -133,15 +133,9 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
133
133
|
streaming: z.ZodDefault<z.ZodBoolean>;
|
|
134
134
|
}, "strip", z.ZodTypeAny, {
|
|
135
135
|
message: string;
|
|
136
|
-
model: {
|
|
137
|
-
model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview";
|
|
138
|
-
temperature: number;
|
|
139
|
-
maxTokens: number;
|
|
140
|
-
jsonMode: boolean;
|
|
141
|
-
};
|
|
142
136
|
images: ({
|
|
143
|
-
data: string;
|
|
144
137
|
type: "base64";
|
|
138
|
+
data: string;
|
|
145
139
|
mimeType: string;
|
|
146
140
|
description?: string | undefined;
|
|
147
141
|
} | {
|
|
@@ -150,6 +144,12 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
150
144
|
description?: string | undefined;
|
|
151
145
|
})[];
|
|
152
146
|
systemPrompt: string;
|
|
147
|
+
model: {
|
|
148
|
+
model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview";
|
|
149
|
+
temperature: number;
|
|
150
|
+
maxTokens: number;
|
|
151
|
+
jsonMode: boolean;
|
|
152
|
+
};
|
|
153
153
|
tools: {
|
|
154
154
|
name: "get-bubble-details-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool";
|
|
155
155
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -163,12 +163,6 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
163
163
|
message: string;
|
|
164
164
|
name?: string | undefined;
|
|
165
165
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
166
|
-
model?: {
|
|
167
|
-
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | undefined;
|
|
168
|
-
temperature?: number | undefined;
|
|
169
|
-
maxTokens?: number | undefined;
|
|
170
|
-
jsonMode?: boolean | undefined;
|
|
171
|
-
} | undefined;
|
|
172
166
|
images?: ({
|
|
173
167
|
data: string;
|
|
174
168
|
type?: "base64" | undefined;
|
|
@@ -180,6 +174,12 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
180
174
|
description?: string | undefined;
|
|
181
175
|
})[] | undefined;
|
|
182
176
|
systemPrompt?: string | undefined;
|
|
177
|
+
model?: {
|
|
178
|
+
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | undefined;
|
|
179
|
+
temperature?: number | undefined;
|
|
180
|
+
maxTokens?: number | undefined;
|
|
181
|
+
jsonMode?: boolean | undefined;
|
|
182
|
+
} | undefined;
|
|
183
183
|
tools?: {
|
|
184
184
|
name: "get-bubble-details-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool";
|
|
185
185
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -243,8 +243,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
243
243
|
mimeType: z.ZodDefault<z.ZodString>;
|
|
244
244
|
description: z.ZodOptional<z.ZodString>;
|
|
245
245
|
}, "strip", z.ZodTypeAny, {
|
|
246
|
-
data: string;
|
|
247
246
|
type: "base64";
|
|
247
|
+
data: string;
|
|
248
248
|
mimeType: string;
|
|
249
249
|
description?: string | undefined;
|
|
250
250
|
}, {
|
|
@@ -301,15 +301,9 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
301
301
|
streaming: z.ZodDefault<z.ZodBoolean>;
|
|
302
302
|
}, "strip", z.ZodTypeAny, {
|
|
303
303
|
message: string;
|
|
304
|
-
model: {
|
|
305
|
-
model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview";
|
|
306
|
-
temperature: number;
|
|
307
|
-
maxTokens: number;
|
|
308
|
-
jsonMode: boolean;
|
|
309
|
-
};
|
|
310
304
|
images: ({
|
|
311
|
-
data: string;
|
|
312
305
|
type: "base64";
|
|
306
|
+
data: string;
|
|
313
307
|
mimeType: string;
|
|
314
308
|
description?: string | undefined;
|
|
315
309
|
} | {
|
|
@@ -318,6 +312,12 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
318
312
|
description?: string | undefined;
|
|
319
313
|
})[];
|
|
320
314
|
systemPrompt: string;
|
|
315
|
+
model: {
|
|
316
|
+
model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview";
|
|
317
|
+
temperature: number;
|
|
318
|
+
maxTokens: number;
|
|
319
|
+
jsonMode: boolean;
|
|
320
|
+
};
|
|
321
321
|
tools: {
|
|
322
322
|
name: "get-bubble-details-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool";
|
|
323
323
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -331,12 +331,6 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
331
331
|
message: string;
|
|
332
332
|
name?: string | undefined;
|
|
333
333
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
334
|
-
model?: {
|
|
335
|
-
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | undefined;
|
|
336
|
-
temperature?: number | undefined;
|
|
337
|
-
maxTokens?: number | undefined;
|
|
338
|
-
jsonMode?: boolean | undefined;
|
|
339
|
-
} | undefined;
|
|
340
334
|
images?: ({
|
|
341
335
|
data: string;
|
|
342
336
|
type?: "base64" | undefined;
|
|
@@ -348,6 +342,12 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
348
342
|
description?: string | undefined;
|
|
349
343
|
})[] | undefined;
|
|
350
344
|
systemPrompt?: string | undefined;
|
|
345
|
+
model?: {
|
|
346
|
+
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-o4-mini" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | undefined;
|
|
347
|
+
temperature?: number | undefined;
|
|
348
|
+
maxTokens?: number | undefined;
|
|
349
|
+
jsonMode?: boolean | undefined;
|
|
350
|
+
} | undefined;
|
|
351
351
|
tools?: {
|
|
352
352
|
name: "get-bubble-details-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool";
|
|
353
353
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -66,7 +66,7 @@ declare const GmailParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
66
66
|
metadata_headers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
67
67
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
|
-
format: "metadata" | "
|
|
69
|
+
format: "metadata" | "minimal" | "full" | "raw";
|
|
70
70
|
operation: "get_email";
|
|
71
71
|
message_id: string;
|
|
72
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -74,7 +74,7 @@ declare const GmailParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
74
74
|
}, {
|
|
75
75
|
operation: "get_email";
|
|
76
76
|
message_id: string;
|
|
77
|
-
format?: "metadata" | "
|
|
77
|
+
format?: "metadata" | "minimal" | "full" | "raw" | undefined;
|
|
78
78
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
79
79
|
metadata_headers?: string[] | undefined;
|
|
80
80
|
}>, z.ZodObject<{
|
|
@@ -1594,7 +1594,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
1594
1594
|
metadata_headers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1595
1595
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1596
1596
|
}, "strip", z.ZodTypeAny, {
|
|
1597
|
-
format: "metadata" | "
|
|
1597
|
+
format: "metadata" | "minimal" | "full" | "raw";
|
|
1598
1598
|
operation: "get_email";
|
|
1599
1599
|
message_id: string;
|
|
1600
1600
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1602,7 +1602,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
1602
1602
|
}, {
|
|
1603
1603
|
operation: "get_email";
|
|
1604
1604
|
message_id: string;
|
|
1605
|
-
format?: "metadata" | "
|
|
1605
|
+
format?: "metadata" | "minimal" | "full" | "raw" | undefined;
|
|
1606
1606
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1607
1607
|
metadata_headers?: string[] | undefined;
|
|
1608
1608
|
}>, z.ZodObject<{
|
|
@@ -123,12 +123,12 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
123
123
|
};
|
|
124
124
|
summary: string;
|
|
125
125
|
operation: "create_event";
|
|
126
|
+
calendar_id: string;
|
|
126
127
|
end: {
|
|
127
128
|
date?: string | undefined;
|
|
128
129
|
timeZone?: string | undefined;
|
|
129
130
|
dateTime?: string | undefined;
|
|
130
131
|
};
|
|
131
|
-
calendar_id: string;
|
|
132
132
|
conference: boolean;
|
|
133
133
|
description?: string | undefined;
|
|
134
134
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -154,6 +154,7 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
154
154
|
};
|
|
155
155
|
description?: string | undefined;
|
|
156
156
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
157
|
+
calendar_id?: string | undefined;
|
|
157
158
|
location?: string | undefined;
|
|
158
159
|
attendees?: {
|
|
159
160
|
email: string;
|
|
@@ -161,7 +162,6 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
161
162
|
displayName?: string | undefined;
|
|
162
163
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
163
164
|
}[] | undefined;
|
|
164
|
-
calendar_id?: string | undefined;
|
|
165
165
|
conference?: boolean | undefined;
|
|
166
166
|
}>, z.ZodObject<{
|
|
167
167
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -248,6 +248,7 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
248
248
|
dateTime?: string | undefined;
|
|
249
249
|
} | undefined;
|
|
250
250
|
summary?: string | undefined;
|
|
251
|
+
calendar_id?: string | undefined;
|
|
251
252
|
location?: string | undefined;
|
|
252
253
|
end?: {
|
|
253
254
|
date?: string | undefined;
|
|
@@ -260,7 +261,6 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
260
261
|
displayName?: string | undefined;
|
|
261
262
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
262
263
|
}[] | undefined;
|
|
263
|
-
calendar_id?: string | undefined;
|
|
264
264
|
}>, z.ZodObject<{
|
|
265
265
|
operation: z.ZodLiteral<"delete_event">;
|
|
266
266
|
calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1806,12 +1806,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1806
1806
|
};
|
|
1807
1807
|
summary: string;
|
|
1808
1808
|
operation: "create_event";
|
|
1809
|
+
calendar_id: string;
|
|
1809
1810
|
end: {
|
|
1810
1811
|
date?: string | undefined;
|
|
1811
1812
|
timeZone?: string | undefined;
|
|
1812
1813
|
dateTime?: string | undefined;
|
|
1813
1814
|
};
|
|
1814
|
-
calendar_id: string;
|
|
1815
1815
|
conference: boolean;
|
|
1816
1816
|
description?: string | undefined;
|
|
1817
1817
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1837,6 +1837,7 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1837
1837
|
};
|
|
1838
1838
|
description?: string | undefined;
|
|
1839
1839
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1840
|
+
calendar_id?: string | undefined;
|
|
1840
1841
|
location?: string | undefined;
|
|
1841
1842
|
attendees?: {
|
|
1842
1843
|
email: string;
|
|
@@ -1844,7 +1845,6 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1844
1845
|
displayName?: string | undefined;
|
|
1845
1846
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1846
1847
|
}[] | undefined;
|
|
1847
|
-
calendar_id?: string | undefined;
|
|
1848
1848
|
conference?: boolean | undefined;
|
|
1849
1849
|
}>, z.ZodObject<{
|
|
1850
1850
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -1931,6 +1931,7 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1931
1931
|
dateTime?: string | undefined;
|
|
1932
1932
|
} | undefined;
|
|
1933
1933
|
summary?: string | undefined;
|
|
1934
|
+
calendar_id?: string | undefined;
|
|
1934
1935
|
location?: string | undefined;
|
|
1935
1936
|
end?: {
|
|
1936
1937
|
date?: string | undefined;
|
|
@@ -1943,7 +1944,6 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1943
1944
|
displayName?: string | undefined;
|
|
1944
1945
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1945
1946
|
}[] | undefined;
|
|
1946
|
-
calendar_id?: string | undefined;
|
|
1947
1947
|
}>, z.ZodObject<{
|
|
1948
1948
|
operation: z.ZodLiteral<"delete_event">;
|
|
1949
1949
|
calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -242,15 +242,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
242
242
|
success: boolean;
|
|
243
243
|
error: string;
|
|
244
244
|
operation: "download_file";
|
|
245
|
-
content?: string | undefined;
|
|
246
245
|
mimeType?: string | undefined;
|
|
246
|
+
content?: string | undefined;
|
|
247
247
|
filename?: string | undefined;
|
|
248
248
|
}, {
|
|
249
249
|
success: boolean;
|
|
250
250
|
error: string;
|
|
251
251
|
operation: "download_file";
|
|
252
|
-
content?: string | undefined;
|
|
253
252
|
mimeType?: string | undefined;
|
|
253
|
+
content?: string | undefined;
|
|
254
254
|
filename?: string | undefined;
|
|
255
255
|
}>, z.ZodObject<{
|
|
256
256
|
operation: z.ZodLiteral<"list_files">;
|
|
@@ -810,15 +810,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
810
810
|
success: boolean;
|
|
811
811
|
error: string;
|
|
812
812
|
operation: "download_file";
|
|
813
|
-
content?: string | undefined;
|
|
814
813
|
mimeType?: string | undefined;
|
|
814
|
+
content?: string | undefined;
|
|
815
815
|
filename?: string | undefined;
|
|
816
816
|
}, {
|
|
817
817
|
success: boolean;
|
|
818
818
|
error: string;
|
|
819
819
|
operation: "download_file";
|
|
820
|
-
content?: string | undefined;
|
|
821
820
|
mimeType?: string | undefined;
|
|
821
|
+
content?: string | undefined;
|
|
822
822
|
filename?: string | undefined;
|
|
823
823
|
}>, z.ZodObject<{
|
|
824
824
|
operation: z.ZodLiteral<"list_files">;
|
|
@@ -11,17 +11,17 @@ declare const GoogleSheetsParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
11
11
|
date_time_render_option: z.ZodDefault<z.ZodOptional<z.ZodEnum<["SERIAL_NUMBER", "FORMATTED_STRING"]>>>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
range: string;
|
|
15
14
|
operation: "read_values";
|
|
16
15
|
spreadsheet_id: string;
|
|
16
|
+
range: string;
|
|
17
17
|
major_dimension: "ROWS" | "COLUMNS";
|
|
18
18
|
value_render_option: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA";
|
|
19
19
|
date_time_render_option: "SERIAL_NUMBER" | "FORMATTED_STRING";
|
|
20
20
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21
21
|
}, {
|
|
22
|
-
range: string;
|
|
23
22
|
operation: "read_values";
|
|
24
23
|
spreadsheet_id: string;
|
|
24
|
+
range: string;
|
|
25
25
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
26
26
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
27
27
|
value_render_option?: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA" | undefined;
|
|
@@ -37,18 +37,18 @@ declare const GoogleSheetsParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
37
37
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
39
|
values: (string | number | boolean)[][];
|
|
40
|
-
range: string;
|
|
41
40
|
operation: "write_values";
|
|
42
41
|
spreadsheet_id: string;
|
|
42
|
+
range: string;
|
|
43
43
|
major_dimension: "ROWS" | "COLUMNS";
|
|
44
44
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
45
45
|
include_values_in_response: boolean;
|
|
46
46
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
47
47
|
}, {
|
|
48
48
|
values: (string | number | boolean)[][];
|
|
49
|
-
range: string;
|
|
50
49
|
operation: "write_values";
|
|
51
50
|
spreadsheet_id: string;
|
|
51
|
+
range: string;
|
|
52
52
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
53
53
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
54
54
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
@@ -64,18 +64,18 @@ declare const GoogleSheetsParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
64
64
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
66
|
values: (string | number | boolean)[][];
|
|
67
|
-
range: string;
|
|
68
67
|
operation: "update_values";
|
|
69
68
|
spreadsheet_id: string;
|
|
69
|
+
range: string;
|
|
70
70
|
major_dimension: "ROWS" | "COLUMNS";
|
|
71
71
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
72
72
|
include_values_in_response: boolean;
|
|
73
73
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
values: (string | number | boolean)[][];
|
|
76
|
-
range: string;
|
|
77
76
|
operation: "update_values";
|
|
78
77
|
spreadsheet_id: string;
|
|
78
|
+
range: string;
|
|
79
79
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
80
80
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
81
81
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
@@ -92,9 +92,9 @@ declare const GoogleSheetsParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
92
92
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
93
93
|
}, "strip", z.ZodTypeAny, {
|
|
94
94
|
values: (string | number | boolean)[][];
|
|
95
|
-
range: string;
|
|
96
95
|
operation: "append_values";
|
|
97
96
|
spreadsheet_id: string;
|
|
97
|
+
range: string;
|
|
98
98
|
major_dimension: "ROWS" | "COLUMNS";
|
|
99
99
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
100
100
|
include_values_in_response: boolean;
|
|
@@ -102,9 +102,9 @@ declare const GoogleSheetsParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
102
102
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
103
103
|
}, {
|
|
104
104
|
values: (string | number | boolean)[][];
|
|
105
|
-
range: string;
|
|
106
105
|
operation: "append_values";
|
|
107
106
|
spreadsheet_id: string;
|
|
107
|
+
range: string;
|
|
108
108
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
109
109
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
110
110
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
@@ -116,14 +116,14 @@ declare const GoogleSheetsParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
116
116
|
range: z.ZodString;
|
|
117
117
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
118
118
|
}, "strip", z.ZodTypeAny, {
|
|
119
|
-
range: string;
|
|
120
119
|
operation: "clear_values";
|
|
121
120
|
spreadsheet_id: string;
|
|
121
|
+
range: string;
|
|
122
122
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
123
123
|
}, {
|
|
124
|
-
range: string;
|
|
125
124
|
operation: "clear_values";
|
|
126
125
|
spreadsheet_id: string;
|
|
126
|
+
range: string;
|
|
127
127
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
128
128
|
}>, z.ZodObject<{
|
|
129
129
|
operation: z.ZodLiteral<"batch_read_values">;
|
|
@@ -909,17 +909,17 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParams = GoogleShe
|
|
|
909
909
|
date_time_render_option: z.ZodDefault<z.ZodOptional<z.ZodEnum<["SERIAL_NUMBER", "FORMATTED_STRING"]>>>;
|
|
910
910
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
911
911
|
}, "strip", z.ZodTypeAny, {
|
|
912
|
-
range: string;
|
|
913
912
|
operation: "read_values";
|
|
914
913
|
spreadsheet_id: string;
|
|
914
|
+
range: string;
|
|
915
915
|
major_dimension: "ROWS" | "COLUMNS";
|
|
916
916
|
value_render_option: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA";
|
|
917
917
|
date_time_render_option: "SERIAL_NUMBER" | "FORMATTED_STRING";
|
|
918
918
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
919
919
|
}, {
|
|
920
|
-
range: string;
|
|
921
920
|
operation: "read_values";
|
|
922
921
|
spreadsheet_id: string;
|
|
922
|
+
range: string;
|
|
923
923
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
924
924
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
925
925
|
value_render_option?: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA" | undefined;
|
|
@@ -935,18 +935,18 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParams = GoogleShe
|
|
|
935
935
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
936
936
|
}, "strip", z.ZodTypeAny, {
|
|
937
937
|
values: (string | number | boolean)[][];
|
|
938
|
-
range: string;
|
|
939
938
|
operation: "write_values";
|
|
940
939
|
spreadsheet_id: string;
|
|
940
|
+
range: string;
|
|
941
941
|
major_dimension: "ROWS" | "COLUMNS";
|
|
942
942
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
943
943
|
include_values_in_response: boolean;
|
|
944
944
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
945
945
|
}, {
|
|
946
946
|
values: (string | number | boolean)[][];
|
|
947
|
-
range: string;
|
|
948
947
|
operation: "write_values";
|
|
949
948
|
spreadsheet_id: string;
|
|
949
|
+
range: string;
|
|
950
950
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
951
951
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
952
952
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
@@ -962,18 +962,18 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParams = GoogleShe
|
|
|
962
962
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
963
963
|
}, "strip", z.ZodTypeAny, {
|
|
964
964
|
values: (string | number | boolean)[][];
|
|
965
|
-
range: string;
|
|
966
965
|
operation: "update_values";
|
|
967
966
|
spreadsheet_id: string;
|
|
967
|
+
range: string;
|
|
968
968
|
major_dimension: "ROWS" | "COLUMNS";
|
|
969
969
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
970
970
|
include_values_in_response: boolean;
|
|
971
971
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
972
972
|
}, {
|
|
973
973
|
values: (string | number | boolean)[][];
|
|
974
|
-
range: string;
|
|
975
974
|
operation: "update_values";
|
|
976
975
|
spreadsheet_id: string;
|
|
976
|
+
range: string;
|
|
977
977
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
978
978
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
979
979
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
@@ -990,9 +990,9 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParams = GoogleShe
|
|
|
990
990
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
991
991
|
}, "strip", z.ZodTypeAny, {
|
|
992
992
|
values: (string | number | boolean)[][];
|
|
993
|
-
range: string;
|
|
994
993
|
operation: "append_values";
|
|
995
994
|
spreadsheet_id: string;
|
|
995
|
+
range: string;
|
|
996
996
|
major_dimension: "ROWS" | "COLUMNS";
|
|
997
997
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
998
998
|
include_values_in_response: boolean;
|
|
@@ -1000,9 +1000,9 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParams = GoogleShe
|
|
|
1000
1000
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1001
1001
|
}, {
|
|
1002
1002
|
values: (string | number | boolean)[][];
|
|
1003
|
-
range: string;
|
|
1004
1003
|
operation: "append_values";
|
|
1005
1004
|
spreadsheet_id: string;
|
|
1005
|
+
range: string;
|
|
1006
1006
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1007
1007
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
1008
1008
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
@@ -1014,14 +1014,14 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParams = GoogleShe
|
|
|
1014
1014
|
range: z.ZodString;
|
|
1015
1015
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1016
1016
|
}, "strip", z.ZodTypeAny, {
|
|
1017
|
-
range: string;
|
|
1018
1017
|
operation: "clear_values";
|
|
1019
1018
|
spreadsheet_id: string;
|
|
1019
|
+
range: string;
|
|
1020
1020
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1021
1021
|
}, {
|
|
1022
|
-
range: string;
|
|
1023
1022
|
operation: "clear_values";
|
|
1024
1023
|
spreadsheet_id: string;
|
|
1024
|
+
range: string;
|
|
1025
1025
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1026
1026
|
}>, z.ZodObject<{
|
|
1027
1027
|
operation: z.ZodLiteral<"batch_read_values">;
|
|
@@ -22,8 +22,8 @@ declare const HttpParamsSchema: z.ZodObject<{
|
|
|
22
22
|
url: string;
|
|
23
23
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
24
24
|
timeout?: number | undefined;
|
|
25
|
-
body?: string | Record<string, unknown> | undefined;
|
|
26
25
|
method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
26
|
+
body?: string | Record<string, unknown> | undefined;
|
|
27
27
|
headers?: Record<string, string> | undefined;
|
|
28
28
|
followRedirects?: boolean | undefined;
|
|
29
29
|
}>;
|
|
@@ -86,8 +86,8 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
86
86
|
url: string;
|
|
87
87
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
88
88
|
timeout?: number | undefined;
|
|
89
|
-
body?: string | Record<string, unknown> | undefined;
|
|
90
89
|
method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
90
|
+
body?: string | Record<string, unknown> | undefined;
|
|
91
91
|
headers?: Record<string, string> | undefined;
|
|
92
92
|
followRedirects?: boolean | undefined;
|
|
93
93
|
}>;
|
|
@@ -12,8 +12,8 @@ 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[];
|
|
16
15
|
timeout: number;
|
|
16
|
+
parameters: unknown[];
|
|
17
17
|
ignoreSSL: boolean;
|
|
18
18
|
query: string;
|
|
19
19
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
@@ -21,9 +21,9 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
|
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
query: string;
|
|
24
|
-
parameters?: unknown[] | undefined;
|
|
25
24
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
26
25
|
timeout?: number | undefined;
|
|
26
|
+
parameters?: unknown[] | undefined;
|
|
27
27
|
ignoreSSL?: boolean | undefined;
|
|
28
28
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
29
29
|
maxRows?: number | undefined;
|
|
@@ -89,8 +89,8 @@ 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[];
|
|
93
92
|
timeout: number;
|
|
93
|
+
parameters: unknown[];
|
|
94
94
|
ignoreSSL: boolean;
|
|
95
95
|
query: string;
|
|
96
96
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
|
|
@@ -98,9 +98,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
|
|
|
98
98
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
99
|
}, {
|
|
100
100
|
query: string;
|
|
101
|
-
parameters?: unknown[] | undefined;
|
|
102
101
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
103
102
|
timeout?: number | undefined;
|
|
103
|
+
parameters?: unknown[] | undefined;
|
|
104
104
|
ignoreSSL?: boolean | undefined;
|
|
105
105
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
|
|
106
106
|
maxRows?: number | undefined;
|