@bubblelab/bubble-core 0.1.26 → 0.1.27
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 +60 -60
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
- package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +202 -202
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +148 -148
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +19 -19
- package/package.json +2 -2
|
@@ -42,21 +42,21 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
42
42
|
date_time_render_option: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["SERIAL_NUMBER", "FORMATTED_STRING"]>>>;
|
|
43
43
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
44
44
|
}, "strip", import("zod").ZodTypeAny, {
|
|
45
|
+
range: string;
|
|
45
46
|
operation: "read_values";
|
|
46
47
|
spreadsheet_id: string;
|
|
47
|
-
range: string;
|
|
48
48
|
major_dimension: "ROWS" | "COLUMNS";
|
|
49
49
|
value_render_option: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA";
|
|
50
50
|
date_time_render_option: "SERIAL_NUMBER" | "FORMATTED_STRING";
|
|
51
51
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
52
52
|
}, {
|
|
53
|
+
range: string;
|
|
53
54
|
operation: "read_values";
|
|
54
55
|
spreadsheet_id: string;
|
|
55
|
-
range: string;
|
|
56
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
57
56
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
58
57
|
value_render_option?: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA" | undefined;
|
|
59
58
|
date_time_render_option?: "SERIAL_NUMBER" | "FORMATTED_STRING" | undefined;
|
|
59
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
60
60
|
}>, import("zod").ZodObject<{
|
|
61
61
|
operation: import("zod").ZodLiteral<"write_values">;
|
|
62
62
|
spreadsheet_id: import("zod").ZodString;
|
|
@@ -67,21 +67,21 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
67
67
|
include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
68
68
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
69
69
|
}, "strip", import("zod").ZodTypeAny, {
|
|
70
|
+
range: string;
|
|
70
71
|
values: (string | number | boolean)[][];
|
|
71
72
|
operation: "write_values";
|
|
72
73
|
spreadsheet_id: string;
|
|
73
|
-
range: string;
|
|
74
74
|
major_dimension: "ROWS" | "COLUMNS";
|
|
75
75
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
76
76
|
include_values_in_response: boolean;
|
|
77
77
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
78
78
|
}, {
|
|
79
|
+
range: string;
|
|
79
80
|
values: unknown[][];
|
|
80
81
|
operation: "write_values";
|
|
81
82
|
spreadsheet_id: string;
|
|
82
|
-
range: string;
|
|
83
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
84
83
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
84
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
85
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
86
86
|
include_values_in_response?: boolean | undefined;
|
|
87
87
|
}>, import("zod").ZodObject<{
|
|
@@ -94,21 +94,21 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
94
94
|
include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
95
95
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
96
96
|
}, "strip", import("zod").ZodTypeAny, {
|
|
97
|
+
range: string;
|
|
97
98
|
values: (string | number | boolean)[][];
|
|
98
99
|
operation: "update_values";
|
|
99
100
|
spreadsheet_id: string;
|
|
100
|
-
range: string;
|
|
101
101
|
major_dimension: "ROWS" | "COLUMNS";
|
|
102
102
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
103
103
|
include_values_in_response: boolean;
|
|
104
104
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
105
105
|
}, {
|
|
106
|
+
range: string;
|
|
106
107
|
values: unknown[][];
|
|
107
108
|
operation: "update_values";
|
|
108
109
|
spreadsheet_id: string;
|
|
109
|
-
range: string;
|
|
110
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
111
110
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
111
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
112
112
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
113
113
|
include_values_in_response?: boolean | undefined;
|
|
114
114
|
}>, import("zod").ZodObject<{
|
|
@@ -122,22 +122,22 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
122
122
|
include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
123
123
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
124
124
|
}, "strip", import("zod").ZodTypeAny, {
|
|
125
|
+
range: string;
|
|
125
126
|
values: (string | number | boolean)[][];
|
|
126
127
|
operation: "append_values";
|
|
127
128
|
spreadsheet_id: string;
|
|
128
|
-
range: string;
|
|
129
129
|
major_dimension: "ROWS" | "COLUMNS";
|
|
130
130
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
131
131
|
include_values_in_response: boolean;
|
|
132
132
|
insert_data_option: "OVERWRITE" | "INSERT_ROWS";
|
|
133
133
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
134
134
|
}, {
|
|
135
|
+
range: string;
|
|
135
136
|
values: unknown[][];
|
|
136
137
|
operation: "append_values";
|
|
137
138
|
spreadsheet_id: string;
|
|
138
|
-
range: string;
|
|
139
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
140
139
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
140
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
141
141
|
value_input_option?: "RAW" | "USER_ENTERED" | undefined;
|
|
142
142
|
include_values_in_response?: boolean | undefined;
|
|
143
143
|
insert_data_option?: "OVERWRITE" | "INSERT_ROWS" | undefined;
|
|
@@ -147,14 +147,14 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
147
147
|
range: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
148
148
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
149
149
|
}, "strip", import("zod").ZodTypeAny, {
|
|
150
|
+
range: string;
|
|
150
151
|
operation: "clear_values";
|
|
151
152
|
spreadsheet_id: string;
|
|
152
|
-
range: string;
|
|
153
153
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
154
154
|
}, {
|
|
155
|
+
range: string;
|
|
155
156
|
operation: "clear_values";
|
|
156
157
|
spreadsheet_id: string;
|
|
157
|
-
range: string;
|
|
158
158
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
159
159
|
}>, import("zod").ZodObject<{
|
|
160
160
|
operation: import("zod").ZodLiteral<"batch_read_values">;
|
|
@@ -176,10 +176,10 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
176
176
|
operation: "batch_read_values";
|
|
177
177
|
spreadsheet_id: string;
|
|
178
178
|
ranges: string[];
|
|
179
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
180
179
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
181
180
|
value_render_option?: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA" | undefined;
|
|
182
181
|
date_time_render_option?: "SERIAL_NUMBER" | "FORMATTED_STRING" | undefined;
|
|
182
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
183
183
|
}>, import("zod").ZodObject<{
|
|
184
184
|
operation: import("zod").ZodLiteral<"batch_update_values">;
|
|
185
185
|
spreadsheet_id: import("zod").ZodString;
|
|
@@ -188,12 +188,12 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
188
188
|
values: import("zod").ZodEffects<import("zod").ZodArray<import("zod").ZodArray<import("zod").ZodUnknown, "many">, "many">, (string | number | boolean)[][], unknown[][]>;
|
|
189
189
|
major_dimension: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["ROWS", "COLUMNS"]>>>;
|
|
190
190
|
}, "strip", import("zod").ZodTypeAny, {
|
|
191
|
-
values: (string | number | boolean)[][];
|
|
192
191
|
range: string;
|
|
192
|
+
values: (string | number | boolean)[][];
|
|
193
193
|
major_dimension: "ROWS" | "COLUMNS";
|
|
194
194
|
}, {
|
|
195
|
-
values: unknown[][];
|
|
196
195
|
range: string;
|
|
196
|
+
values: unknown[][];
|
|
197
197
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
198
198
|
}>, "many">;
|
|
199
199
|
value_input_option: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["RAW", "USER_ENTERED"]>>>;
|
|
@@ -205,8 +205,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
205
205
|
value_input_option: "RAW" | "USER_ENTERED";
|
|
206
206
|
include_values_in_response: boolean;
|
|
207
207
|
value_ranges: {
|
|
208
|
-
values: (string | number | boolean)[][];
|
|
209
208
|
range: string;
|
|
209
|
+
values: (string | number | boolean)[][];
|
|
210
210
|
major_dimension: "ROWS" | "COLUMNS";
|
|
211
211
|
}[];
|
|
212
212
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -214,8 +214,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
214
214
|
operation: "batch_update_values";
|
|
215
215
|
spreadsheet_id: string;
|
|
216
216
|
value_ranges: {
|
|
217
|
-
values: unknown[][];
|
|
218
217
|
range: string;
|
|
218
|
+
values: unknown[][];
|
|
219
219
|
major_dimension?: "ROWS" | "COLUMNS" | undefined;
|
|
220
220
|
}[];
|
|
221
221
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -296,18 +296,18 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
296
296
|
major_dimension: import("zod").ZodOptional<import("zod").ZodString>;
|
|
297
297
|
error: import("zod").ZodString;
|
|
298
298
|
}, "strip", import("zod").ZodTypeAny, {
|
|
299
|
+
operation: "read_values";
|
|
299
300
|
success: boolean;
|
|
300
301
|
error: string;
|
|
301
|
-
operation: "read_values";
|
|
302
|
-
values?: (string | number | boolean)[][] | undefined;
|
|
303
302
|
range?: string | undefined;
|
|
303
|
+
values?: (string | number | boolean)[][] | undefined;
|
|
304
304
|
major_dimension?: string | undefined;
|
|
305
305
|
}, {
|
|
306
|
+
operation: "read_values";
|
|
306
307
|
success: boolean;
|
|
307
308
|
error: string;
|
|
308
|
-
operation: "read_values";
|
|
309
|
-
values?: (string | number | boolean)[][] | undefined;
|
|
310
309
|
range?: string | undefined;
|
|
310
|
+
values?: (string | number | boolean)[][] | undefined;
|
|
311
311
|
major_dimension?: string | undefined;
|
|
312
312
|
}>, import("zod").ZodObject<{
|
|
313
313
|
operation: import("zod").ZodLiteral<"write_values">;
|
|
@@ -321,39 +321,39 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
321
321
|
majorDimension: import("zod").ZodOptional<import("zod").ZodEnum<["ROWS", "COLUMNS"]>>;
|
|
322
322
|
values: import("zod").ZodArray<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean]>, "many">, "many">;
|
|
323
323
|
}, "strip", import("zod").ZodTypeAny, {
|
|
324
|
-
values: (string | number | boolean)[][];
|
|
325
324
|
range: string;
|
|
325
|
+
values: (string | number | boolean)[][];
|
|
326
326
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
327
327
|
}, {
|
|
328
|
-
values: (string | number | boolean)[][];
|
|
329
328
|
range: string;
|
|
329
|
+
values: (string | number | boolean)[][];
|
|
330
330
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
331
331
|
}>>;
|
|
332
332
|
error: import("zod").ZodString;
|
|
333
333
|
}, "strip", import("zod").ZodTypeAny, {
|
|
334
|
+
operation: "write_values";
|
|
334
335
|
success: boolean;
|
|
335
336
|
error: string;
|
|
336
|
-
operation: "write_values";
|
|
337
337
|
updated_range?: string | undefined;
|
|
338
338
|
updated_rows?: number | undefined;
|
|
339
339
|
updated_columns?: number | undefined;
|
|
340
340
|
updated_cells?: number | undefined;
|
|
341
341
|
updated_data?: {
|
|
342
|
-
values: (string | number | boolean)[][];
|
|
343
342
|
range: string;
|
|
343
|
+
values: (string | number | boolean)[][];
|
|
344
344
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
345
345
|
} | undefined;
|
|
346
346
|
}, {
|
|
347
|
+
operation: "write_values";
|
|
347
348
|
success: boolean;
|
|
348
349
|
error: string;
|
|
349
|
-
operation: "write_values";
|
|
350
350
|
updated_range?: string | undefined;
|
|
351
351
|
updated_rows?: number | undefined;
|
|
352
352
|
updated_columns?: number | undefined;
|
|
353
353
|
updated_cells?: number | undefined;
|
|
354
354
|
updated_data?: {
|
|
355
|
-
values: (string | number | boolean)[][];
|
|
356
355
|
range: string;
|
|
356
|
+
values: (string | number | boolean)[][];
|
|
357
357
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
358
358
|
} | undefined;
|
|
359
359
|
}>, import("zod").ZodObject<{
|
|
@@ -368,39 +368,39 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
368
368
|
majorDimension: import("zod").ZodOptional<import("zod").ZodEnum<["ROWS", "COLUMNS"]>>;
|
|
369
369
|
values: import("zod").ZodArray<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean]>, "many">, "many">;
|
|
370
370
|
}, "strip", import("zod").ZodTypeAny, {
|
|
371
|
-
values: (string | number | boolean)[][];
|
|
372
371
|
range: string;
|
|
372
|
+
values: (string | number | boolean)[][];
|
|
373
373
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
374
374
|
}, {
|
|
375
|
-
values: (string | number | boolean)[][];
|
|
376
375
|
range: string;
|
|
376
|
+
values: (string | number | boolean)[][];
|
|
377
377
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
378
378
|
}>>;
|
|
379
379
|
error: import("zod").ZodString;
|
|
380
380
|
}, "strip", import("zod").ZodTypeAny, {
|
|
381
|
+
operation: "update_values";
|
|
381
382
|
success: boolean;
|
|
382
383
|
error: string;
|
|
383
|
-
operation: "update_values";
|
|
384
384
|
updated_range?: string | undefined;
|
|
385
385
|
updated_rows?: number | undefined;
|
|
386
386
|
updated_columns?: number | undefined;
|
|
387
387
|
updated_cells?: number | undefined;
|
|
388
388
|
updated_data?: {
|
|
389
|
-
values: (string | number | boolean)[][];
|
|
390
389
|
range: string;
|
|
390
|
+
values: (string | number | boolean)[][];
|
|
391
391
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
392
392
|
} | undefined;
|
|
393
393
|
}, {
|
|
394
|
+
operation: "update_values";
|
|
394
395
|
success: boolean;
|
|
395
396
|
error: string;
|
|
396
|
-
operation: "update_values";
|
|
397
397
|
updated_range?: string | undefined;
|
|
398
398
|
updated_rows?: number | undefined;
|
|
399
399
|
updated_columns?: number | undefined;
|
|
400
400
|
updated_cells?: number | undefined;
|
|
401
401
|
updated_data?: {
|
|
402
|
-
values: (string | number | boolean)[][];
|
|
403
402
|
range: string;
|
|
403
|
+
values: (string | number | boolean)[][];
|
|
404
404
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
405
405
|
} | undefined;
|
|
406
406
|
}>, import("zod").ZodObject<{
|
|
@@ -413,18 +413,18 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
413
413
|
updated_cells: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
414
414
|
error: import("zod").ZodString;
|
|
415
415
|
}, "strip", import("zod").ZodTypeAny, {
|
|
416
|
+
operation: "append_values";
|
|
416
417
|
success: boolean;
|
|
417
418
|
error: string;
|
|
418
|
-
operation: "append_values";
|
|
419
419
|
updated_range?: string | undefined;
|
|
420
420
|
updated_rows?: number | undefined;
|
|
421
421
|
updated_columns?: number | undefined;
|
|
422
422
|
updated_cells?: number | undefined;
|
|
423
423
|
table_range?: string | undefined;
|
|
424
424
|
}, {
|
|
425
|
+
operation: "append_values";
|
|
425
426
|
success: boolean;
|
|
426
427
|
error: string;
|
|
427
|
-
operation: "append_values";
|
|
428
428
|
updated_range?: string | undefined;
|
|
429
429
|
updated_rows?: number | undefined;
|
|
430
430
|
updated_columns?: number | undefined;
|
|
@@ -436,14 +436,14 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
436
436
|
cleared_range: import("zod").ZodOptional<import("zod").ZodString>;
|
|
437
437
|
error: import("zod").ZodString;
|
|
438
438
|
}, "strip", import("zod").ZodTypeAny, {
|
|
439
|
+
operation: "clear_values";
|
|
439
440
|
success: boolean;
|
|
440
441
|
error: string;
|
|
441
|
-
operation: "clear_values";
|
|
442
442
|
cleared_range?: string | undefined;
|
|
443
443
|
}, {
|
|
444
|
+
operation: "clear_values";
|
|
444
445
|
success: boolean;
|
|
445
446
|
error: string;
|
|
446
|
-
operation: "clear_values";
|
|
447
447
|
cleared_range?: string | undefined;
|
|
448
448
|
}>, import("zod").ZodObject<{
|
|
449
449
|
operation: import("zod").ZodLiteral<"batch_read_values">;
|
|
@@ -453,31 +453,31 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
453
453
|
majorDimension: import("zod").ZodOptional<import("zod").ZodEnum<["ROWS", "COLUMNS"]>>;
|
|
454
454
|
values: import("zod").ZodArray<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean]>, "many">, "many">;
|
|
455
455
|
}, "strip", import("zod").ZodTypeAny, {
|
|
456
|
-
values: (string | number | boolean)[][];
|
|
457
456
|
range: string;
|
|
457
|
+
values: (string | number | boolean)[][];
|
|
458
458
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
459
459
|
}, {
|
|
460
|
-
values: (string | number | boolean)[][];
|
|
461
460
|
range: string;
|
|
461
|
+
values: (string | number | boolean)[][];
|
|
462
462
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
463
463
|
}>, "many">>;
|
|
464
464
|
error: import("zod").ZodString;
|
|
465
465
|
}, "strip", import("zod").ZodTypeAny, {
|
|
466
|
+
operation: "batch_read_values";
|
|
466
467
|
success: boolean;
|
|
467
468
|
error: string;
|
|
468
|
-
operation: "batch_read_values";
|
|
469
469
|
value_ranges?: {
|
|
470
|
-
values: (string | number | boolean)[][];
|
|
471
470
|
range: string;
|
|
471
|
+
values: (string | number | boolean)[][];
|
|
472
472
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
473
473
|
}[] | undefined;
|
|
474
474
|
}, {
|
|
475
|
+
operation: "batch_read_values";
|
|
475
476
|
success: boolean;
|
|
476
477
|
error: string;
|
|
477
|
-
operation: "batch_read_values";
|
|
478
478
|
value_ranges?: {
|
|
479
|
-
values: (string | number | boolean)[][];
|
|
480
479
|
range: string;
|
|
480
|
+
values: (string | number | boolean)[][];
|
|
481
481
|
majorDimension?: "ROWS" | "COLUMNS" | undefined;
|
|
482
482
|
}[] | undefined;
|
|
483
483
|
}>, import("zod").ZodObject<{
|
|
@@ -505,9 +505,9 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
505
505
|
}>, "many">>;
|
|
506
506
|
error: import("zod").ZodString;
|
|
507
507
|
}, "strip", import("zod").ZodTypeAny, {
|
|
508
|
+
operation: "batch_update_values";
|
|
508
509
|
success: boolean;
|
|
509
510
|
error: string;
|
|
510
|
-
operation: "batch_update_values";
|
|
511
511
|
total_updated_rows?: number | undefined;
|
|
512
512
|
total_updated_columns?: number | undefined;
|
|
513
513
|
total_updated_cells?: number | undefined;
|
|
@@ -519,9 +519,9 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
519
519
|
updated_cells?: number | undefined;
|
|
520
520
|
}[] | undefined;
|
|
521
521
|
}, {
|
|
522
|
+
operation: "batch_update_values";
|
|
522
523
|
success: boolean;
|
|
523
524
|
error: string;
|
|
524
|
-
operation: "batch_update_values";
|
|
525
525
|
total_updated_rows?: number | undefined;
|
|
526
526
|
total_updated_columns?: number | undefined;
|
|
527
527
|
total_updated_cells?: number | undefined;
|
|
@@ -657,9 +657,9 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
657
657
|
}>>;
|
|
658
658
|
error: import("zod").ZodString;
|
|
659
659
|
}, "strip", import("zod").ZodTypeAny, {
|
|
660
|
+
operation: "get_spreadsheet_info";
|
|
660
661
|
success: boolean;
|
|
661
662
|
error: string;
|
|
662
|
-
operation: "get_spreadsheet_info";
|
|
663
663
|
spreadsheet?: {
|
|
664
664
|
spreadsheetId: string;
|
|
665
665
|
properties?: {
|
|
@@ -683,9 +683,9 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
683
683
|
spreadsheetUrl?: string | undefined;
|
|
684
684
|
} | undefined;
|
|
685
685
|
}, {
|
|
686
|
+
operation: "get_spreadsheet_info";
|
|
686
687
|
success: boolean;
|
|
687
688
|
error: string;
|
|
688
|
-
operation: "get_spreadsheet_info";
|
|
689
689
|
spreadsheet?: {
|
|
690
690
|
spreadsheetId: string;
|
|
691
691
|
properties?: {
|
|
@@ -833,9 +833,9 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
833
833
|
}>>;
|
|
834
834
|
error: import("zod").ZodString;
|
|
835
835
|
}, "strip", import("zod").ZodTypeAny, {
|
|
836
|
+
operation: "create_spreadsheet";
|
|
836
837
|
success: boolean;
|
|
837
838
|
error: string;
|
|
838
|
-
operation: "create_spreadsheet";
|
|
839
839
|
spreadsheet?: {
|
|
840
840
|
spreadsheetId: string;
|
|
841
841
|
properties?: {
|
|
@@ -859,9 +859,9 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
859
859
|
spreadsheetUrl?: string | undefined;
|
|
860
860
|
} | undefined;
|
|
861
861
|
}, {
|
|
862
|
+
operation: "create_spreadsheet";
|
|
862
863
|
success: boolean;
|
|
863
864
|
error: string;
|
|
864
|
-
operation: "create_spreadsheet";
|
|
865
865
|
spreadsheet?: {
|
|
866
866
|
spreadsheetId: string;
|
|
867
867
|
properties?: {
|
|
@@ -891,15 +891,15 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
891
891
|
sheet_title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
892
892
|
error: import("zod").ZodString;
|
|
893
893
|
}, "strip", import("zod").ZodTypeAny, {
|
|
894
|
+
operation: "add_sheet";
|
|
894
895
|
success: boolean;
|
|
895
896
|
error: string;
|
|
896
|
-
operation: "add_sheet";
|
|
897
897
|
sheet_title?: string | undefined;
|
|
898
898
|
sheet_id?: number | undefined;
|
|
899
899
|
}, {
|
|
900
|
+
operation: "add_sheet";
|
|
900
901
|
success: boolean;
|
|
901
902
|
error: string;
|
|
902
|
-
operation: "add_sheet";
|
|
903
903
|
sheet_title?: string | undefined;
|
|
904
904
|
sheet_id?: number | undefined;
|
|
905
905
|
}>, import("zod").ZodObject<{
|
|
@@ -908,14 +908,14 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
908
908
|
deleted_sheet_id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
909
909
|
error: import("zod").ZodString;
|
|
910
910
|
}, "strip", import("zod").ZodTypeAny, {
|
|
911
|
+
operation: "delete_sheet";
|
|
911
912
|
success: boolean;
|
|
912
913
|
error: string;
|
|
913
|
-
operation: "delete_sheet";
|
|
914
914
|
deleted_sheet_id?: number | undefined;
|
|
915
915
|
}, {
|
|
916
|
+
operation: "delete_sheet";
|
|
916
917
|
success: boolean;
|
|
917
918
|
error: string;
|
|
918
|
-
operation: "delete_sheet";
|
|
919
919
|
deleted_sheet_id?: number | undefined;
|
|
920
920
|
}>]>;
|
|
921
921
|
static readonly shortDescription = "Google Sheets integration for spreadsheet operations";
|