@bubblelab/bubble-core 0.1.19 → 0.1.21
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 +70 -70
- package/dist/bubbles/service-bubble/agi-inc.d.ts +140 -140
- package/dist/bubbles/service-bubble/ai-agent.d.ts +58 -58
- package/dist/bubbles/service-bubble/airtable.d.ts +106 -106
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +47 -47
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +730 -730
- package/dist/bubbles/service-bubble/followupboss.d.ts +282 -282
- package/dist/bubbles/service-bubble/github.d.ts +196 -196
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +960 -158
- package/dist/bubbles/service-bubble/google-calendar.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.js +51 -9
- package/dist/bubbles/service-bubble/google-calendar.js.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.d.ts +310 -92
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +438 -0
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
- package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +987 -987
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +40 -40
- package/dist/bubbles/service-bubble/slack/slack.d.ts +314 -314
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +30 -30
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +68 -68
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +106 -106
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +92 -92
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +3 -3
- package/package.json +2 -2
|
@@ -35,20 +35,20 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
35
35
|
calendar_id: string;
|
|
36
36
|
single_events: boolean;
|
|
37
37
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
38
|
-
q?: string | undefined;
|
|
39
38
|
page_token?: string | undefined;
|
|
40
39
|
time_min?: string | undefined;
|
|
41
40
|
time_max?: string | undefined;
|
|
41
|
+
q?: string | undefined;
|
|
42
42
|
}, {
|
|
43
43
|
operation: "list_events";
|
|
44
44
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
45
45
|
max_results?: number | undefined;
|
|
46
46
|
order_by?: "updated" | "startTime" | undefined;
|
|
47
|
-
q?: string | undefined;
|
|
48
47
|
page_token?: string | undefined;
|
|
49
48
|
calendar_id?: string | undefined;
|
|
50
49
|
time_min?: string | undefined;
|
|
51
50
|
time_max?: string | undefined;
|
|
51
|
+
q?: string | undefined;
|
|
52
52
|
single_events?: boolean | undefined;
|
|
53
53
|
}>, z.ZodObject<{
|
|
54
54
|
operation: z.ZodLiteral<"get_event">;
|
|
@@ -104,19 +104,20 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
104
104
|
displayName: z.ZodOptional<z.ZodString>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
106
|
email: string;
|
|
107
|
-
optional?: boolean | undefined;
|
|
108
107
|
displayName?: string | undefined;
|
|
108
|
+
optional?: boolean | undefined;
|
|
109
109
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
110
110
|
}, {
|
|
111
111
|
email: string;
|
|
112
|
-
optional?: boolean | undefined;
|
|
113
112
|
displayName?: string | undefined;
|
|
113
|
+
optional?: boolean | undefined;
|
|
114
114
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
115
115
|
}>, "many">>;
|
|
116
116
|
conference: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
117
117
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
118
118
|
}, "strip", z.ZodTypeAny, {
|
|
119
119
|
operation: "create_event";
|
|
120
|
+
calendar_id: string;
|
|
120
121
|
summary: string;
|
|
121
122
|
start: {
|
|
122
123
|
date?: string | undefined;
|
|
@@ -128,15 +129,14 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
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;
|
|
135
135
|
location?: string | undefined;
|
|
136
136
|
attendees?: {
|
|
137
137
|
email: string;
|
|
138
|
-
optional?: boolean | undefined;
|
|
139
138
|
displayName?: string | undefined;
|
|
139
|
+
optional?: boolean | undefined;
|
|
140
140
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
141
141
|
}[] | undefined;
|
|
142
142
|
}, {
|
|
@@ -154,14 +154,14 @@ 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;
|
|
160
|
-
optional?: boolean | undefined;
|
|
161
161
|
displayName?: string | undefined;
|
|
162
|
+
optional?: boolean | 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">;
|
|
@@ -203,13 +203,13 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
203
203
|
displayName: z.ZodOptional<z.ZodString>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
email: string;
|
|
206
|
-
optional?: boolean | undefined;
|
|
207
206
|
displayName?: string | undefined;
|
|
207
|
+
optional?: boolean | undefined;
|
|
208
208
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
209
209
|
}, {
|
|
210
210
|
email: string;
|
|
211
|
-
optional?: boolean | undefined;
|
|
212
211
|
displayName?: string | undefined;
|
|
212
|
+
optional?: boolean | undefined;
|
|
213
213
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
214
214
|
}>, "many">>;
|
|
215
215
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -220,12 +220,12 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
220
220
|
description?: string | undefined;
|
|
221
221
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
222
222
|
summary?: string | undefined;
|
|
223
|
+
location?: string | undefined;
|
|
223
224
|
start?: {
|
|
224
225
|
date?: string | undefined;
|
|
225
226
|
timeZone?: string | undefined;
|
|
226
227
|
dateTime?: string | undefined;
|
|
227
228
|
} | undefined;
|
|
228
|
-
location?: string | undefined;
|
|
229
229
|
end?: {
|
|
230
230
|
date?: string | undefined;
|
|
231
231
|
timeZone?: string | undefined;
|
|
@@ -233,8 +233,8 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
233
233
|
} | undefined;
|
|
234
234
|
attendees?: {
|
|
235
235
|
email: string;
|
|
236
|
-
optional?: boolean | undefined;
|
|
237
236
|
displayName?: string | undefined;
|
|
237
|
+
optional?: boolean | undefined;
|
|
238
238
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
239
239
|
}[] | undefined;
|
|
240
240
|
}, {
|
|
@@ -242,13 +242,14 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
242
242
|
event_id: string;
|
|
243
243
|
description?: string | undefined;
|
|
244
244
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
245
|
+
calendar_id?: string | undefined;
|
|
245
246
|
summary?: string | undefined;
|
|
247
|
+
location?: string | undefined;
|
|
246
248
|
start?: {
|
|
247
249
|
date?: string | undefined;
|
|
248
250
|
timeZone?: string | undefined;
|
|
249
251
|
dateTime?: string | undefined;
|
|
250
252
|
} | undefined;
|
|
251
|
-
location?: string | undefined;
|
|
252
253
|
end?: {
|
|
253
254
|
date?: string | undefined;
|
|
254
255
|
timeZone?: string | undefined;
|
|
@@ -256,11 +257,10 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
256
257
|
} | undefined;
|
|
257
258
|
attendees?: {
|
|
258
259
|
email: string;
|
|
259
|
-
optional?: boolean | undefined;
|
|
260
260
|
displayName?: string | undefined;
|
|
261
|
+
optional?: boolean | 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>>;
|
|
@@ -308,9 +308,9 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
308
308
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
309
309
|
error: z.ZodString;
|
|
310
310
|
}, "strip", z.ZodTypeAny, {
|
|
311
|
-
operation: "list_calendars";
|
|
312
|
-
error: string;
|
|
313
311
|
success: boolean;
|
|
312
|
+
error: string;
|
|
313
|
+
operation: "list_calendars";
|
|
314
314
|
next_page_token?: string | undefined;
|
|
315
315
|
calendars?: z.objectOutputType<{
|
|
316
316
|
id: z.ZodString;
|
|
@@ -321,9 +321,9 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
321
321
|
accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
|
|
322
322
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
323
323
|
}, {
|
|
324
|
-
operation: "list_calendars";
|
|
325
|
-
error: string;
|
|
326
324
|
success: boolean;
|
|
325
|
+
error: string;
|
|
326
|
+
operation: "list_calendars";
|
|
327
327
|
next_page_token?: string | undefined;
|
|
328
328
|
calendars?: z.objectInputType<{
|
|
329
329
|
id: z.ZodString;
|
|
@@ -378,13 +378,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
378
378
|
displayName: z.ZodOptional<z.ZodString>;
|
|
379
379
|
}, "strip", z.ZodTypeAny, {
|
|
380
380
|
email: string;
|
|
381
|
-
optional?: boolean | undefined;
|
|
382
381
|
displayName?: string | undefined;
|
|
382
|
+
optional?: boolean | undefined;
|
|
383
383
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
384
384
|
}, {
|
|
385
385
|
email: string;
|
|
386
|
-
optional?: boolean | undefined;
|
|
387
386
|
displayName?: string | undefined;
|
|
387
|
+
optional?: boolean | undefined;
|
|
388
388
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
389
389
|
}>, "many">>;
|
|
390
390
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -399,6 +399,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
399
399
|
}>>;
|
|
400
400
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
401
401
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
402
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
403
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
404
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
405
|
+
title: z.ZodOptional<z.ZodString>;
|
|
406
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
407
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
408
|
+
}, "strip", z.ZodTypeAny, {
|
|
409
|
+
title?: string | undefined;
|
|
410
|
+
mimeType?: string | undefined;
|
|
411
|
+
fileUrl?: string | undefined;
|
|
412
|
+
fileId?: string | undefined;
|
|
413
|
+
iconLink?: string | undefined;
|
|
414
|
+
}, {
|
|
415
|
+
title?: string | undefined;
|
|
416
|
+
mimeType?: string | undefined;
|
|
417
|
+
fileUrl?: string | undefined;
|
|
418
|
+
fileId?: string | undefined;
|
|
419
|
+
iconLink?: string | undefined;
|
|
420
|
+
}>, "many">>;
|
|
421
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
402
422
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
403
423
|
id: z.ZodString;
|
|
404
424
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -441,13 +461,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
441
461
|
displayName: z.ZodOptional<z.ZodString>;
|
|
442
462
|
}, "strip", z.ZodTypeAny, {
|
|
443
463
|
email: string;
|
|
444
|
-
optional?: boolean | undefined;
|
|
445
464
|
displayName?: string | undefined;
|
|
465
|
+
optional?: boolean | undefined;
|
|
446
466
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
447
467
|
}, {
|
|
448
468
|
email: string;
|
|
449
|
-
optional?: boolean | undefined;
|
|
450
469
|
displayName?: string | undefined;
|
|
470
|
+
optional?: boolean | undefined;
|
|
451
471
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
452
472
|
}>, "many">>;
|
|
453
473
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -462,6 +482,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
462
482
|
}>>;
|
|
463
483
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
464
484
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
485
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
486
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
487
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
488
|
+
title: z.ZodOptional<z.ZodString>;
|
|
489
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
490
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
491
|
+
}, "strip", z.ZodTypeAny, {
|
|
492
|
+
title?: string | undefined;
|
|
493
|
+
mimeType?: string | undefined;
|
|
494
|
+
fileUrl?: string | undefined;
|
|
495
|
+
fileId?: string | undefined;
|
|
496
|
+
iconLink?: string | undefined;
|
|
497
|
+
}, {
|
|
498
|
+
title?: string | undefined;
|
|
499
|
+
mimeType?: string | undefined;
|
|
500
|
+
fileUrl?: string | undefined;
|
|
501
|
+
fileId?: string | undefined;
|
|
502
|
+
iconLink?: string | undefined;
|
|
503
|
+
}>, "many">>;
|
|
504
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
465
505
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
466
506
|
id: z.ZodString;
|
|
467
507
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -504,13 +544,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
504
544
|
displayName: z.ZodOptional<z.ZodString>;
|
|
505
545
|
}, "strip", z.ZodTypeAny, {
|
|
506
546
|
email: string;
|
|
507
|
-
optional?: boolean | undefined;
|
|
508
547
|
displayName?: string | undefined;
|
|
548
|
+
optional?: boolean | undefined;
|
|
509
549
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
510
550
|
}, {
|
|
511
551
|
email: string;
|
|
512
|
-
optional?: boolean | undefined;
|
|
513
552
|
displayName?: string | undefined;
|
|
553
|
+
optional?: boolean | undefined;
|
|
514
554
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
515
555
|
}>, "many">>;
|
|
516
556
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -525,13 +565,33 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
525
565
|
}>>;
|
|
526
566
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
527
567
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
568
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
569
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
570
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
571
|
+
title: z.ZodOptional<z.ZodString>;
|
|
572
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
573
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
574
|
+
}, "strip", z.ZodTypeAny, {
|
|
575
|
+
title?: string | undefined;
|
|
576
|
+
mimeType?: string | undefined;
|
|
577
|
+
fileUrl?: string | undefined;
|
|
578
|
+
fileId?: string | undefined;
|
|
579
|
+
iconLink?: string | undefined;
|
|
580
|
+
}, {
|
|
581
|
+
title?: string | undefined;
|
|
582
|
+
mimeType?: string | undefined;
|
|
583
|
+
fileUrl?: string | undefined;
|
|
584
|
+
fileId?: string | undefined;
|
|
585
|
+
iconLink?: string | undefined;
|
|
586
|
+
}>, "many">>;
|
|
587
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
528
588
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
529
589
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
530
590
|
error: z.ZodString;
|
|
531
591
|
}, "strip", z.ZodTypeAny, {
|
|
532
|
-
operation: "list_events";
|
|
533
|
-
error: string;
|
|
534
592
|
success: boolean;
|
|
593
|
+
error: string;
|
|
594
|
+
operation: "list_events";
|
|
535
595
|
next_page_token?: string | undefined;
|
|
536
596
|
events?: z.objectOutputType<{
|
|
537
597
|
id: z.ZodString;
|
|
@@ -575,13 +635,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
575
635
|
displayName: z.ZodOptional<z.ZodString>;
|
|
576
636
|
}, "strip", z.ZodTypeAny, {
|
|
577
637
|
email: string;
|
|
578
|
-
optional?: boolean | undefined;
|
|
579
638
|
displayName?: string | undefined;
|
|
639
|
+
optional?: boolean | undefined;
|
|
580
640
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
581
641
|
}, {
|
|
582
642
|
email: string;
|
|
583
|
-
optional?: boolean | undefined;
|
|
584
643
|
displayName?: string | undefined;
|
|
644
|
+
optional?: boolean | undefined;
|
|
585
645
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
586
646
|
}>, "many">>;
|
|
587
647
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -596,11 +656,31 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
596
656
|
}>>;
|
|
597
657
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
598
658
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
659
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
660
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
661
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
662
|
+
title: z.ZodOptional<z.ZodString>;
|
|
663
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
664
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
665
|
+
}, "strip", z.ZodTypeAny, {
|
|
666
|
+
title?: string | undefined;
|
|
667
|
+
mimeType?: string | undefined;
|
|
668
|
+
fileUrl?: string | undefined;
|
|
669
|
+
fileId?: string | undefined;
|
|
670
|
+
iconLink?: string | undefined;
|
|
671
|
+
}, {
|
|
672
|
+
title?: string | undefined;
|
|
673
|
+
mimeType?: string | undefined;
|
|
674
|
+
fileUrl?: string | undefined;
|
|
675
|
+
fileId?: string | undefined;
|
|
676
|
+
iconLink?: string | undefined;
|
|
677
|
+
}>, "many">>;
|
|
678
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
599
679
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
600
680
|
}, {
|
|
601
|
-
operation: "list_events";
|
|
602
|
-
error: string;
|
|
603
681
|
success: boolean;
|
|
682
|
+
error: string;
|
|
683
|
+
operation: "list_events";
|
|
604
684
|
next_page_token?: string | undefined;
|
|
605
685
|
events?: z.objectInputType<{
|
|
606
686
|
id: z.ZodString;
|
|
@@ -644,13 +724,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
644
724
|
displayName: z.ZodOptional<z.ZodString>;
|
|
645
725
|
}, "strip", z.ZodTypeAny, {
|
|
646
726
|
email: string;
|
|
647
|
-
optional?: boolean | undefined;
|
|
648
727
|
displayName?: string | undefined;
|
|
728
|
+
optional?: boolean | undefined;
|
|
649
729
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
650
730
|
}, {
|
|
651
731
|
email: string;
|
|
652
|
-
optional?: boolean | undefined;
|
|
653
732
|
displayName?: string | undefined;
|
|
733
|
+
optional?: boolean | undefined;
|
|
654
734
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
655
735
|
}>, "many">>;
|
|
656
736
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -665,6 +745,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
665
745
|
}>>;
|
|
666
746
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
667
747
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
748
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
749
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
750
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
751
|
+
title: z.ZodOptional<z.ZodString>;
|
|
752
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
753
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
754
|
+
}, "strip", z.ZodTypeAny, {
|
|
755
|
+
title?: string | undefined;
|
|
756
|
+
mimeType?: string | undefined;
|
|
757
|
+
fileUrl?: string | undefined;
|
|
758
|
+
fileId?: string | undefined;
|
|
759
|
+
iconLink?: string | undefined;
|
|
760
|
+
}, {
|
|
761
|
+
title?: string | undefined;
|
|
762
|
+
mimeType?: string | undefined;
|
|
763
|
+
fileUrl?: string | undefined;
|
|
764
|
+
fileId?: string | undefined;
|
|
765
|
+
iconLink?: string | undefined;
|
|
766
|
+
}>, "many">>;
|
|
767
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
668
768
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
669
769
|
}>, z.ZodObject<{
|
|
670
770
|
operation: z.ZodLiteral<"get_event">;
|
|
@@ -711,13 +811,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
711
811
|
displayName: z.ZodOptional<z.ZodString>;
|
|
712
812
|
}, "strip", z.ZodTypeAny, {
|
|
713
813
|
email: string;
|
|
714
|
-
optional?: boolean | undefined;
|
|
715
814
|
displayName?: string | undefined;
|
|
815
|
+
optional?: boolean | undefined;
|
|
716
816
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
717
817
|
}, {
|
|
718
818
|
email: string;
|
|
719
|
-
optional?: boolean | undefined;
|
|
720
819
|
displayName?: string | undefined;
|
|
820
|
+
optional?: boolean | undefined;
|
|
721
821
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
722
822
|
}>, "many">>;
|
|
723
823
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -732,6 +832,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
732
832
|
}>>;
|
|
733
833
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
734
834
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
835
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
836
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
837
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
838
|
+
title: z.ZodOptional<z.ZodString>;
|
|
839
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
840
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
841
|
+
}, "strip", z.ZodTypeAny, {
|
|
842
|
+
title?: string | undefined;
|
|
843
|
+
mimeType?: string | undefined;
|
|
844
|
+
fileUrl?: string | undefined;
|
|
845
|
+
fileId?: string | undefined;
|
|
846
|
+
iconLink?: string | undefined;
|
|
847
|
+
}, {
|
|
848
|
+
title?: string | undefined;
|
|
849
|
+
mimeType?: string | undefined;
|
|
850
|
+
fileUrl?: string | undefined;
|
|
851
|
+
fileId?: string | undefined;
|
|
852
|
+
iconLink?: string | undefined;
|
|
853
|
+
}>, "many">>;
|
|
854
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
735
855
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
736
856
|
id: z.ZodString;
|
|
737
857
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -774,13 +894,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
774
894
|
displayName: z.ZodOptional<z.ZodString>;
|
|
775
895
|
}, "strip", z.ZodTypeAny, {
|
|
776
896
|
email: string;
|
|
777
|
-
optional?: boolean | undefined;
|
|
778
897
|
displayName?: string | undefined;
|
|
898
|
+
optional?: boolean | undefined;
|
|
779
899
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
780
900
|
}, {
|
|
781
901
|
email: string;
|
|
782
|
-
optional?: boolean | undefined;
|
|
783
902
|
displayName?: string | undefined;
|
|
903
|
+
optional?: boolean | undefined;
|
|
784
904
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
785
905
|
}>, "many">>;
|
|
786
906
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -795,6 +915,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
795
915
|
}>>;
|
|
796
916
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
797
917
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
918
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
919
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
920
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
921
|
+
title: z.ZodOptional<z.ZodString>;
|
|
922
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
923
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
924
|
+
}, "strip", z.ZodTypeAny, {
|
|
925
|
+
title?: string | undefined;
|
|
926
|
+
mimeType?: string | undefined;
|
|
927
|
+
fileUrl?: string | undefined;
|
|
928
|
+
fileId?: string | undefined;
|
|
929
|
+
iconLink?: string | undefined;
|
|
930
|
+
}, {
|
|
931
|
+
title?: string | undefined;
|
|
932
|
+
mimeType?: string | undefined;
|
|
933
|
+
fileUrl?: string | undefined;
|
|
934
|
+
fileId?: string | undefined;
|
|
935
|
+
iconLink?: string | undefined;
|
|
936
|
+
}>, "many">>;
|
|
937
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
798
938
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
799
939
|
id: z.ZodString;
|
|
800
940
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -837,13 +977,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
837
977
|
displayName: z.ZodOptional<z.ZodString>;
|
|
838
978
|
}, "strip", z.ZodTypeAny, {
|
|
839
979
|
email: string;
|
|
840
|
-
optional?: boolean | undefined;
|
|
841
980
|
displayName?: string | undefined;
|
|
981
|
+
optional?: boolean | undefined;
|
|
842
982
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
843
983
|
}, {
|
|
844
984
|
email: string;
|
|
845
|
-
optional?: boolean | undefined;
|
|
846
985
|
displayName?: string | undefined;
|
|
986
|
+
optional?: boolean | undefined;
|
|
847
987
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
848
988
|
}>, "many">>;
|
|
849
989
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -858,12 +998,32 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
858
998
|
}>>;
|
|
859
999
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
860
1000
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1001
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1002
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1004
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1005
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1006
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1007
|
+
}, "strip", z.ZodTypeAny, {
|
|
1008
|
+
title?: string | undefined;
|
|
1009
|
+
mimeType?: string | undefined;
|
|
1010
|
+
fileUrl?: string | undefined;
|
|
1011
|
+
fileId?: string | undefined;
|
|
1012
|
+
iconLink?: string | undefined;
|
|
1013
|
+
}, {
|
|
1014
|
+
title?: string | undefined;
|
|
1015
|
+
mimeType?: string | undefined;
|
|
1016
|
+
fileUrl?: string | undefined;
|
|
1017
|
+
fileId?: string | undefined;
|
|
1018
|
+
iconLink?: string | undefined;
|
|
1019
|
+
}>, "many">>;
|
|
1020
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
861
1021
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
862
1022
|
error: z.ZodString;
|
|
863
1023
|
}, "strip", z.ZodTypeAny, {
|
|
864
|
-
operation: "get_event";
|
|
865
|
-
error: string;
|
|
866
1024
|
success: boolean;
|
|
1025
|
+
error: string;
|
|
1026
|
+
operation: "get_event";
|
|
867
1027
|
event?: z.objectOutputType<{
|
|
868
1028
|
id: z.ZodString;
|
|
869
1029
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -906,13 +1066,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
906
1066
|
displayName: z.ZodOptional<z.ZodString>;
|
|
907
1067
|
}, "strip", z.ZodTypeAny, {
|
|
908
1068
|
email: string;
|
|
909
|
-
optional?: boolean | undefined;
|
|
910
1069
|
displayName?: string | undefined;
|
|
1070
|
+
optional?: boolean | undefined;
|
|
911
1071
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
912
1072
|
}, {
|
|
913
1073
|
email: string;
|
|
914
|
-
optional?: boolean | undefined;
|
|
915
1074
|
displayName?: string | undefined;
|
|
1075
|
+
optional?: boolean | undefined;
|
|
916
1076
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
917
1077
|
}>, "many">>;
|
|
918
1078
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -927,11 +1087,31 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
927
1087
|
}>>;
|
|
928
1088
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
929
1089
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1090
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1091
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1092
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1093
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1094
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1095
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1096
|
+
}, "strip", z.ZodTypeAny, {
|
|
1097
|
+
title?: string | undefined;
|
|
1098
|
+
mimeType?: string | undefined;
|
|
1099
|
+
fileUrl?: string | undefined;
|
|
1100
|
+
fileId?: string | undefined;
|
|
1101
|
+
iconLink?: string | undefined;
|
|
1102
|
+
}, {
|
|
1103
|
+
title?: string | undefined;
|
|
1104
|
+
mimeType?: string | undefined;
|
|
1105
|
+
fileUrl?: string | undefined;
|
|
1106
|
+
fileId?: string | undefined;
|
|
1107
|
+
iconLink?: string | undefined;
|
|
1108
|
+
}>, "many">>;
|
|
1109
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
930
1110
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
931
1111
|
}, {
|
|
932
|
-
operation: "get_event";
|
|
933
|
-
error: string;
|
|
934
1112
|
success: boolean;
|
|
1113
|
+
error: string;
|
|
1114
|
+
operation: "get_event";
|
|
935
1115
|
event?: z.objectInputType<{
|
|
936
1116
|
id: z.ZodString;
|
|
937
1117
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -974,13 +1154,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
974
1154
|
displayName: z.ZodOptional<z.ZodString>;
|
|
975
1155
|
}, "strip", z.ZodTypeAny, {
|
|
976
1156
|
email: string;
|
|
977
|
-
optional?: boolean | undefined;
|
|
978
1157
|
displayName?: string | undefined;
|
|
1158
|
+
optional?: boolean | undefined;
|
|
979
1159
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
980
1160
|
}, {
|
|
981
1161
|
email: string;
|
|
982
|
-
optional?: boolean | undefined;
|
|
983
1162
|
displayName?: string | undefined;
|
|
1163
|
+
optional?: boolean | undefined;
|
|
984
1164
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
985
1165
|
}>, "many">>;
|
|
986
1166
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -995,6 +1175,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
995
1175
|
}>>;
|
|
996
1176
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
997
1177
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1178
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1179
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1183
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
}, "strip", z.ZodTypeAny, {
|
|
1185
|
+
title?: string | undefined;
|
|
1186
|
+
mimeType?: string | undefined;
|
|
1187
|
+
fileUrl?: string | undefined;
|
|
1188
|
+
fileId?: string | undefined;
|
|
1189
|
+
iconLink?: string | undefined;
|
|
1190
|
+
}, {
|
|
1191
|
+
title?: string | undefined;
|
|
1192
|
+
mimeType?: string | undefined;
|
|
1193
|
+
fileUrl?: string | undefined;
|
|
1194
|
+
fileId?: string | undefined;
|
|
1195
|
+
iconLink?: string | undefined;
|
|
1196
|
+
}>, "many">>;
|
|
1197
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
998
1198
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
999
1199
|
}>, z.ZodObject<{
|
|
1000
1200
|
operation: z.ZodLiteral<"create_event">;
|
|
@@ -1041,13 +1241,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1041
1241
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1042
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1043
1243
|
email: string;
|
|
1044
|
-
optional?: boolean | undefined;
|
|
1045
1244
|
displayName?: string | undefined;
|
|
1245
|
+
optional?: boolean | undefined;
|
|
1046
1246
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1047
1247
|
}, {
|
|
1048
1248
|
email: string;
|
|
1049
|
-
optional?: boolean | undefined;
|
|
1050
1249
|
displayName?: string | undefined;
|
|
1250
|
+
optional?: boolean | undefined;
|
|
1051
1251
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1052
1252
|
}>, "many">>;
|
|
1053
1253
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1062,6 +1262,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1062
1262
|
}>>;
|
|
1063
1263
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1064
1264
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1265
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1266
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1267
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1270
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1271
|
+
}, "strip", z.ZodTypeAny, {
|
|
1272
|
+
title?: string | undefined;
|
|
1273
|
+
mimeType?: string | undefined;
|
|
1274
|
+
fileUrl?: string | undefined;
|
|
1275
|
+
fileId?: string | undefined;
|
|
1276
|
+
iconLink?: string | undefined;
|
|
1277
|
+
}, {
|
|
1278
|
+
title?: string | undefined;
|
|
1279
|
+
mimeType?: string | undefined;
|
|
1280
|
+
fileUrl?: string | undefined;
|
|
1281
|
+
fileId?: string | undefined;
|
|
1282
|
+
iconLink?: string | undefined;
|
|
1283
|
+
}>, "many">>;
|
|
1284
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1065
1285
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1066
1286
|
id: z.ZodString;
|
|
1067
1287
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1104,13 +1324,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1104
1324
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1105
1325
|
}, "strip", z.ZodTypeAny, {
|
|
1106
1326
|
email: string;
|
|
1107
|
-
optional?: boolean | undefined;
|
|
1108
1327
|
displayName?: string | undefined;
|
|
1328
|
+
optional?: boolean | undefined;
|
|
1109
1329
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1110
1330
|
}, {
|
|
1111
1331
|
email: string;
|
|
1112
|
-
optional?: boolean | undefined;
|
|
1113
1332
|
displayName?: string | undefined;
|
|
1333
|
+
optional?: boolean | undefined;
|
|
1114
1334
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1115
1335
|
}>, "many">>;
|
|
1116
1336
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1125,6 +1345,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1125
1345
|
}>>;
|
|
1126
1346
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1127
1347
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1348
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1349
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1350
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1351
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1352
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1353
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1354
|
+
}, "strip", z.ZodTypeAny, {
|
|
1355
|
+
title?: string | undefined;
|
|
1356
|
+
mimeType?: string | undefined;
|
|
1357
|
+
fileUrl?: string | undefined;
|
|
1358
|
+
fileId?: string | undefined;
|
|
1359
|
+
iconLink?: string | undefined;
|
|
1360
|
+
}, {
|
|
1361
|
+
title?: string | undefined;
|
|
1362
|
+
mimeType?: string | undefined;
|
|
1363
|
+
fileUrl?: string | undefined;
|
|
1364
|
+
fileId?: string | undefined;
|
|
1365
|
+
iconLink?: string | undefined;
|
|
1366
|
+
}>, "many">>;
|
|
1367
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1128
1368
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1129
1369
|
id: z.ZodString;
|
|
1130
1370
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1167,13 +1407,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1167
1407
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1168
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1169
1409
|
email: string;
|
|
1170
|
-
optional?: boolean | undefined;
|
|
1171
1410
|
displayName?: string | undefined;
|
|
1411
|
+
optional?: boolean | undefined;
|
|
1172
1412
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1173
1413
|
}, {
|
|
1174
1414
|
email: string;
|
|
1175
|
-
optional?: boolean | undefined;
|
|
1176
1415
|
displayName?: string | undefined;
|
|
1416
|
+
optional?: boolean | undefined;
|
|
1177
1417
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1178
1418
|
}>, "many">>;
|
|
1179
1419
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1188,12 +1428,32 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1188
1428
|
}>>;
|
|
1189
1429
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1190
1430
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1431
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1432
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1433
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1436
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1437
|
+
}, "strip", z.ZodTypeAny, {
|
|
1438
|
+
title?: string | undefined;
|
|
1439
|
+
mimeType?: string | undefined;
|
|
1440
|
+
fileUrl?: string | undefined;
|
|
1441
|
+
fileId?: string | undefined;
|
|
1442
|
+
iconLink?: string | undefined;
|
|
1443
|
+
}, {
|
|
1444
|
+
title?: string | undefined;
|
|
1445
|
+
mimeType?: string | undefined;
|
|
1446
|
+
fileUrl?: string | undefined;
|
|
1447
|
+
fileId?: string | undefined;
|
|
1448
|
+
iconLink?: string | undefined;
|
|
1449
|
+
}>, "many">>;
|
|
1450
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1191
1451
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1192
1452
|
error: z.ZodString;
|
|
1193
1453
|
}, "strip", z.ZodTypeAny, {
|
|
1194
|
-
operation: "create_event";
|
|
1195
|
-
error: string;
|
|
1196
1454
|
success: boolean;
|
|
1455
|
+
error: string;
|
|
1456
|
+
operation: "create_event";
|
|
1197
1457
|
event?: z.objectOutputType<{
|
|
1198
1458
|
id: z.ZodString;
|
|
1199
1459
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1236,13 +1496,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1236
1496
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1237
1497
|
}, "strip", z.ZodTypeAny, {
|
|
1238
1498
|
email: string;
|
|
1239
|
-
optional?: boolean | undefined;
|
|
1240
1499
|
displayName?: string | undefined;
|
|
1500
|
+
optional?: boolean | undefined;
|
|
1241
1501
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1242
1502
|
}, {
|
|
1243
1503
|
email: string;
|
|
1244
|
-
optional?: boolean | undefined;
|
|
1245
1504
|
displayName?: string | undefined;
|
|
1505
|
+
optional?: boolean | undefined;
|
|
1246
1506
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1247
1507
|
}>, "many">>;
|
|
1248
1508
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1257,11 +1517,31 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1257
1517
|
}>>;
|
|
1258
1518
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1259
1519
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1520
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1521
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1522
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1523
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1524
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1525
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1526
|
+
}, "strip", z.ZodTypeAny, {
|
|
1527
|
+
title?: string | undefined;
|
|
1528
|
+
mimeType?: string | undefined;
|
|
1529
|
+
fileUrl?: string | undefined;
|
|
1530
|
+
fileId?: string | undefined;
|
|
1531
|
+
iconLink?: string | undefined;
|
|
1532
|
+
}, {
|
|
1533
|
+
title?: string | undefined;
|
|
1534
|
+
mimeType?: string | undefined;
|
|
1535
|
+
fileUrl?: string | undefined;
|
|
1536
|
+
fileId?: string | undefined;
|
|
1537
|
+
iconLink?: string | undefined;
|
|
1538
|
+
}>, "many">>;
|
|
1539
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1260
1540
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1261
1541
|
}, {
|
|
1262
|
-
operation: "create_event";
|
|
1263
|
-
error: string;
|
|
1264
1542
|
success: boolean;
|
|
1543
|
+
error: string;
|
|
1544
|
+
operation: "create_event";
|
|
1265
1545
|
event?: z.objectInputType<{
|
|
1266
1546
|
id: z.ZodString;
|
|
1267
1547
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1304,13 +1584,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1304
1584
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1305
1585
|
}, "strip", z.ZodTypeAny, {
|
|
1306
1586
|
email: string;
|
|
1307
|
-
optional?: boolean | undefined;
|
|
1308
1587
|
displayName?: string | undefined;
|
|
1588
|
+
optional?: boolean | undefined;
|
|
1309
1589
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1310
1590
|
}, {
|
|
1311
1591
|
email: string;
|
|
1312
|
-
optional?: boolean | undefined;
|
|
1313
1592
|
displayName?: string | undefined;
|
|
1593
|
+
optional?: boolean | undefined;
|
|
1314
1594
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1315
1595
|
}>, "many">>;
|
|
1316
1596
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1325,6 +1605,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1325
1605
|
}>>;
|
|
1326
1606
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1327
1607
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1608
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1609
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1610
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1611
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1612
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1613
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1614
|
+
}, "strip", z.ZodTypeAny, {
|
|
1615
|
+
title?: string | undefined;
|
|
1616
|
+
mimeType?: string | undefined;
|
|
1617
|
+
fileUrl?: string | undefined;
|
|
1618
|
+
fileId?: string | undefined;
|
|
1619
|
+
iconLink?: string | undefined;
|
|
1620
|
+
}, {
|
|
1621
|
+
title?: string | undefined;
|
|
1622
|
+
mimeType?: string | undefined;
|
|
1623
|
+
fileUrl?: string | undefined;
|
|
1624
|
+
fileId?: string | undefined;
|
|
1625
|
+
iconLink?: string | undefined;
|
|
1626
|
+
}>, "many">>;
|
|
1627
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1328
1628
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1329
1629
|
}>, z.ZodObject<{
|
|
1330
1630
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -1371,13 +1671,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1371
1671
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1372
1672
|
}, "strip", z.ZodTypeAny, {
|
|
1373
1673
|
email: string;
|
|
1374
|
-
optional?: boolean | undefined;
|
|
1375
1674
|
displayName?: string | undefined;
|
|
1675
|
+
optional?: boolean | undefined;
|
|
1376
1676
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1377
1677
|
}, {
|
|
1378
1678
|
email: string;
|
|
1379
|
-
optional?: boolean | undefined;
|
|
1380
1679
|
displayName?: string | undefined;
|
|
1680
|
+
optional?: boolean | undefined;
|
|
1381
1681
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1382
1682
|
}>, "many">>;
|
|
1383
1683
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1392,6 +1692,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1392
1692
|
}>>;
|
|
1393
1693
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1394
1694
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1695
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1696
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1698
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1699
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1700
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1701
|
+
}, "strip", z.ZodTypeAny, {
|
|
1702
|
+
title?: string | undefined;
|
|
1703
|
+
mimeType?: string | undefined;
|
|
1704
|
+
fileUrl?: string | undefined;
|
|
1705
|
+
fileId?: string | undefined;
|
|
1706
|
+
iconLink?: string | undefined;
|
|
1707
|
+
}, {
|
|
1708
|
+
title?: string | undefined;
|
|
1709
|
+
mimeType?: string | undefined;
|
|
1710
|
+
fileUrl?: string | undefined;
|
|
1711
|
+
fileId?: string | undefined;
|
|
1712
|
+
iconLink?: string | undefined;
|
|
1713
|
+
}>, "many">>;
|
|
1714
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1395
1715
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1396
1716
|
id: z.ZodString;
|
|
1397
1717
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1434,13 +1754,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1434
1754
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1435
1755
|
}, "strip", z.ZodTypeAny, {
|
|
1436
1756
|
email: string;
|
|
1437
|
-
optional?: boolean | undefined;
|
|
1438
1757
|
displayName?: string | undefined;
|
|
1758
|
+
optional?: boolean | undefined;
|
|
1439
1759
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1440
1760
|
}, {
|
|
1441
1761
|
email: string;
|
|
1442
|
-
optional?: boolean | undefined;
|
|
1443
1762
|
displayName?: string | undefined;
|
|
1763
|
+
optional?: boolean | undefined;
|
|
1444
1764
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1445
1765
|
}>, "many">>;
|
|
1446
1766
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1455,6 +1775,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1455
1775
|
}>>;
|
|
1456
1776
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1457
1777
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1778
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1779
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1780
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1781
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1782
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1783
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1784
|
+
}, "strip", z.ZodTypeAny, {
|
|
1785
|
+
title?: string | undefined;
|
|
1786
|
+
mimeType?: string | undefined;
|
|
1787
|
+
fileUrl?: string | undefined;
|
|
1788
|
+
fileId?: string | undefined;
|
|
1789
|
+
iconLink?: string | undefined;
|
|
1790
|
+
}, {
|
|
1791
|
+
title?: string | undefined;
|
|
1792
|
+
mimeType?: string | undefined;
|
|
1793
|
+
fileUrl?: string | undefined;
|
|
1794
|
+
fileId?: string | undefined;
|
|
1795
|
+
iconLink?: string | undefined;
|
|
1796
|
+
}>, "many">>;
|
|
1797
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1458
1798
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1459
1799
|
id: z.ZodString;
|
|
1460
1800
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1497,13 +1837,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1497
1837
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1498
1838
|
}, "strip", z.ZodTypeAny, {
|
|
1499
1839
|
email: string;
|
|
1500
|
-
optional?: boolean | undefined;
|
|
1501
1840
|
displayName?: string | undefined;
|
|
1841
|
+
optional?: boolean | undefined;
|
|
1502
1842
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1503
1843
|
}, {
|
|
1504
1844
|
email: string;
|
|
1505
|
-
optional?: boolean | undefined;
|
|
1506
1845
|
displayName?: string | undefined;
|
|
1846
|
+
optional?: boolean | undefined;
|
|
1507
1847
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1508
1848
|
}>, "many">>;
|
|
1509
1849
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1518,12 +1858,32 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1518
1858
|
}>>;
|
|
1519
1859
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1520
1860
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1861
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1862
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1863
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1864
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1865
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1866
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1867
|
+
}, "strip", z.ZodTypeAny, {
|
|
1868
|
+
title?: string | undefined;
|
|
1869
|
+
mimeType?: string | undefined;
|
|
1870
|
+
fileUrl?: string | undefined;
|
|
1871
|
+
fileId?: string | undefined;
|
|
1872
|
+
iconLink?: string | undefined;
|
|
1873
|
+
}, {
|
|
1874
|
+
title?: string | undefined;
|
|
1875
|
+
mimeType?: string | undefined;
|
|
1876
|
+
fileUrl?: string | undefined;
|
|
1877
|
+
fileId?: string | undefined;
|
|
1878
|
+
iconLink?: string | undefined;
|
|
1879
|
+
}>, "many">>;
|
|
1880
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1521
1881
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1522
1882
|
error: z.ZodString;
|
|
1523
1883
|
}, "strip", z.ZodTypeAny, {
|
|
1524
|
-
operation: "update_event";
|
|
1525
|
-
error: string;
|
|
1526
1884
|
success: boolean;
|
|
1885
|
+
error: string;
|
|
1886
|
+
operation: "update_event";
|
|
1527
1887
|
event?: z.objectOutputType<{
|
|
1528
1888
|
id: z.ZodString;
|
|
1529
1889
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1566,13 +1926,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1566
1926
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1567
1927
|
}, "strip", z.ZodTypeAny, {
|
|
1568
1928
|
email: string;
|
|
1569
|
-
optional?: boolean | undefined;
|
|
1570
1929
|
displayName?: string | undefined;
|
|
1930
|
+
optional?: boolean | undefined;
|
|
1571
1931
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1572
1932
|
}, {
|
|
1573
1933
|
email: string;
|
|
1574
|
-
optional?: boolean | undefined;
|
|
1575
1934
|
displayName?: string | undefined;
|
|
1935
|
+
optional?: boolean | undefined;
|
|
1576
1936
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1577
1937
|
}>, "many">>;
|
|
1578
1938
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1587,11 +1947,31 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1587
1947
|
}>>;
|
|
1588
1948
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1589
1949
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1950
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1951
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1952
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1953
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1955
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1956
|
+
}, "strip", z.ZodTypeAny, {
|
|
1957
|
+
title?: string | undefined;
|
|
1958
|
+
mimeType?: string | undefined;
|
|
1959
|
+
fileUrl?: string | undefined;
|
|
1960
|
+
fileId?: string | undefined;
|
|
1961
|
+
iconLink?: string | undefined;
|
|
1962
|
+
}, {
|
|
1963
|
+
title?: string | undefined;
|
|
1964
|
+
mimeType?: string | undefined;
|
|
1965
|
+
fileUrl?: string | undefined;
|
|
1966
|
+
fileId?: string | undefined;
|
|
1967
|
+
iconLink?: string | undefined;
|
|
1968
|
+
}>, "many">>;
|
|
1969
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1590
1970
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1591
1971
|
}, {
|
|
1592
|
-
operation: "update_event";
|
|
1593
|
-
error: string;
|
|
1594
1972
|
success: boolean;
|
|
1973
|
+
error: string;
|
|
1974
|
+
operation: "update_event";
|
|
1595
1975
|
event?: z.objectInputType<{
|
|
1596
1976
|
id: z.ZodString;
|
|
1597
1977
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1634,13 +2014,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1634
2014
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1635
2015
|
}, "strip", z.ZodTypeAny, {
|
|
1636
2016
|
email: string;
|
|
1637
|
-
optional?: boolean | undefined;
|
|
1638
2017
|
displayName?: string | undefined;
|
|
2018
|
+
optional?: boolean | undefined;
|
|
1639
2019
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1640
2020
|
}, {
|
|
1641
2021
|
email: string;
|
|
1642
|
-
optional?: boolean | undefined;
|
|
1643
2022
|
displayName?: string | undefined;
|
|
2023
|
+
optional?: boolean | undefined;
|
|
1644
2024
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1645
2025
|
}>, "many">>;
|
|
1646
2026
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1655,6 +2035,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1655
2035
|
}>>;
|
|
1656
2036
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1657
2037
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2038
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2039
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2040
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2041
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2042
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2043
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2044
|
+
}, "strip", z.ZodTypeAny, {
|
|
2045
|
+
title?: string | undefined;
|
|
2046
|
+
mimeType?: string | undefined;
|
|
2047
|
+
fileUrl?: string | undefined;
|
|
2048
|
+
fileId?: string | undefined;
|
|
2049
|
+
iconLink?: string | undefined;
|
|
2050
|
+
}, {
|
|
2051
|
+
title?: string | undefined;
|
|
2052
|
+
mimeType?: string | undefined;
|
|
2053
|
+
fileUrl?: string | undefined;
|
|
2054
|
+
fileId?: string | undefined;
|
|
2055
|
+
iconLink?: string | undefined;
|
|
2056
|
+
}>, "many">>;
|
|
2057
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1658
2058
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1659
2059
|
}>, z.ZodObject<{
|
|
1660
2060
|
operation: z.ZodLiteral<"delete_event">;
|
|
@@ -1662,14 +2062,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1662
2062
|
deleted: z.ZodOptional<z.ZodBoolean>;
|
|
1663
2063
|
error: z.ZodString;
|
|
1664
2064
|
}, "strip", z.ZodTypeAny, {
|
|
1665
|
-
operation: "delete_event";
|
|
1666
|
-
error: string;
|
|
1667
2065
|
success: boolean;
|
|
2066
|
+
error: string;
|
|
2067
|
+
operation: "delete_event";
|
|
1668
2068
|
deleted?: boolean | undefined;
|
|
1669
2069
|
}, {
|
|
1670
|
-
operation: "delete_event";
|
|
1671
|
-
error: string;
|
|
1672
2070
|
success: boolean;
|
|
2071
|
+
error: string;
|
|
2072
|
+
operation: "delete_event";
|
|
1673
2073
|
deleted?: boolean | undefined;
|
|
1674
2074
|
}>]>;
|
|
1675
2075
|
type GoogleCalendarResult = z.output<typeof GoogleCalendarResultSchema>;
|
|
@@ -1718,20 +2118,20 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1718
2118
|
calendar_id: string;
|
|
1719
2119
|
single_events: boolean;
|
|
1720
2120
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1721
|
-
q?: string | undefined;
|
|
1722
2121
|
page_token?: string | undefined;
|
|
1723
2122
|
time_min?: string | undefined;
|
|
1724
2123
|
time_max?: string | undefined;
|
|
2124
|
+
q?: string | undefined;
|
|
1725
2125
|
}, {
|
|
1726
2126
|
operation: "list_events";
|
|
1727
2127
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1728
2128
|
max_results?: number | undefined;
|
|
1729
2129
|
order_by?: "updated" | "startTime" | undefined;
|
|
1730
|
-
q?: string | undefined;
|
|
1731
2130
|
page_token?: string | undefined;
|
|
1732
2131
|
calendar_id?: string | undefined;
|
|
1733
2132
|
time_min?: string | undefined;
|
|
1734
2133
|
time_max?: string | undefined;
|
|
2134
|
+
q?: string | undefined;
|
|
1735
2135
|
single_events?: boolean | undefined;
|
|
1736
2136
|
}>, z.ZodObject<{
|
|
1737
2137
|
operation: z.ZodLiteral<"get_event">;
|
|
@@ -1787,19 +2187,20 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1787
2187
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1788
2188
|
}, "strip", z.ZodTypeAny, {
|
|
1789
2189
|
email: string;
|
|
1790
|
-
optional?: boolean | undefined;
|
|
1791
2190
|
displayName?: string | undefined;
|
|
2191
|
+
optional?: boolean | undefined;
|
|
1792
2192
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1793
2193
|
}, {
|
|
1794
2194
|
email: string;
|
|
1795
|
-
optional?: boolean | undefined;
|
|
1796
2195
|
displayName?: string | undefined;
|
|
2196
|
+
optional?: boolean | undefined;
|
|
1797
2197
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1798
2198
|
}>, "many">>;
|
|
1799
2199
|
conference: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1800
2200
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1801
2201
|
}, "strip", z.ZodTypeAny, {
|
|
1802
2202
|
operation: "create_event";
|
|
2203
|
+
calendar_id: string;
|
|
1803
2204
|
summary: string;
|
|
1804
2205
|
start: {
|
|
1805
2206
|
date?: string | undefined;
|
|
@@ -1811,15 +2212,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1811
2212
|
timeZone?: string | undefined;
|
|
1812
2213
|
dateTime?: string | undefined;
|
|
1813
2214
|
};
|
|
1814
|
-
calendar_id: string;
|
|
1815
2215
|
conference: boolean;
|
|
1816
2216
|
description?: string | undefined;
|
|
1817
2217
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1818
2218
|
location?: string | undefined;
|
|
1819
2219
|
attendees?: {
|
|
1820
2220
|
email: string;
|
|
1821
|
-
optional?: boolean | undefined;
|
|
1822
2221
|
displayName?: string | undefined;
|
|
2222
|
+
optional?: boolean | undefined;
|
|
1823
2223
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1824
2224
|
}[] | undefined;
|
|
1825
2225
|
}, {
|
|
@@ -1837,14 +2237,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1837
2237
|
};
|
|
1838
2238
|
description?: string | undefined;
|
|
1839
2239
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2240
|
+
calendar_id?: string | undefined;
|
|
1840
2241
|
location?: string | undefined;
|
|
1841
2242
|
attendees?: {
|
|
1842
2243
|
email: string;
|
|
1843
|
-
optional?: boolean | undefined;
|
|
1844
2244
|
displayName?: string | undefined;
|
|
2245
|
+
optional?: boolean | undefined;
|
|
1845
2246
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1846
2247
|
}[] | undefined;
|
|
1847
|
-
calendar_id?: string | undefined;
|
|
1848
2248
|
conference?: boolean | undefined;
|
|
1849
2249
|
}>, z.ZodObject<{
|
|
1850
2250
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -1886,13 +2286,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1886
2286
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1887
2287
|
}, "strip", z.ZodTypeAny, {
|
|
1888
2288
|
email: string;
|
|
1889
|
-
optional?: boolean | undefined;
|
|
1890
2289
|
displayName?: string | undefined;
|
|
2290
|
+
optional?: boolean | undefined;
|
|
1891
2291
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1892
2292
|
}, {
|
|
1893
2293
|
email: string;
|
|
1894
|
-
optional?: boolean | undefined;
|
|
1895
2294
|
displayName?: string | undefined;
|
|
2295
|
+
optional?: boolean | undefined;
|
|
1896
2296
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1897
2297
|
}>, "many">>;
|
|
1898
2298
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -1903,12 +2303,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1903
2303
|
description?: string | undefined;
|
|
1904
2304
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1905
2305
|
summary?: string | undefined;
|
|
2306
|
+
location?: string | undefined;
|
|
1906
2307
|
start?: {
|
|
1907
2308
|
date?: string | undefined;
|
|
1908
2309
|
timeZone?: string | undefined;
|
|
1909
2310
|
dateTime?: string | undefined;
|
|
1910
2311
|
} | undefined;
|
|
1911
|
-
location?: string | undefined;
|
|
1912
2312
|
end?: {
|
|
1913
2313
|
date?: string | undefined;
|
|
1914
2314
|
timeZone?: string | undefined;
|
|
@@ -1916,8 +2316,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1916
2316
|
} | undefined;
|
|
1917
2317
|
attendees?: {
|
|
1918
2318
|
email: string;
|
|
1919
|
-
optional?: boolean | undefined;
|
|
1920
2319
|
displayName?: string | undefined;
|
|
2320
|
+
optional?: boolean | undefined;
|
|
1921
2321
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1922
2322
|
}[] | undefined;
|
|
1923
2323
|
}, {
|
|
@@ -1925,13 +2325,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1925
2325
|
event_id: string;
|
|
1926
2326
|
description?: string | undefined;
|
|
1927
2327
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2328
|
+
calendar_id?: string | undefined;
|
|
1928
2329
|
summary?: string | undefined;
|
|
2330
|
+
location?: string | undefined;
|
|
1929
2331
|
start?: {
|
|
1930
2332
|
date?: string | undefined;
|
|
1931
2333
|
timeZone?: string | undefined;
|
|
1932
2334
|
dateTime?: string | undefined;
|
|
1933
2335
|
} | undefined;
|
|
1934
|
-
location?: string | undefined;
|
|
1935
2336
|
end?: {
|
|
1936
2337
|
date?: string | undefined;
|
|
1937
2338
|
timeZone?: string | undefined;
|
|
@@ -1939,11 +2340,10 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1939
2340
|
} | undefined;
|
|
1940
2341
|
attendees?: {
|
|
1941
2342
|
email: string;
|
|
1942
|
-
optional?: boolean | undefined;
|
|
1943
2343
|
displayName?: string | undefined;
|
|
2344
|
+
optional?: boolean | undefined;
|
|
1944
2345
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1945
2346
|
}[] | undefined;
|
|
1946
|
-
calendar_id?: string | undefined;
|
|
1947
2347
|
}>, z.ZodObject<{
|
|
1948
2348
|
operation: z.ZodLiteral<"delete_event">;
|
|
1949
2349
|
calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1991,9 +2391,9 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1991
2391
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
1992
2392
|
error: z.ZodString;
|
|
1993
2393
|
}, "strip", z.ZodTypeAny, {
|
|
1994
|
-
operation: "list_calendars";
|
|
1995
|
-
error: string;
|
|
1996
2394
|
success: boolean;
|
|
2395
|
+
error: string;
|
|
2396
|
+
operation: "list_calendars";
|
|
1997
2397
|
next_page_token?: string | undefined;
|
|
1998
2398
|
calendars?: z.objectOutputType<{
|
|
1999
2399
|
id: z.ZodString;
|
|
@@ -2004,9 +2404,9 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2004
2404
|
accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
|
|
2005
2405
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2006
2406
|
}, {
|
|
2007
|
-
operation: "list_calendars";
|
|
2008
|
-
error: string;
|
|
2009
2407
|
success: boolean;
|
|
2408
|
+
error: string;
|
|
2409
|
+
operation: "list_calendars";
|
|
2010
2410
|
next_page_token?: string | undefined;
|
|
2011
2411
|
calendars?: z.objectInputType<{
|
|
2012
2412
|
id: z.ZodString;
|
|
@@ -2061,13 +2461,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2061
2461
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2062
2462
|
}, "strip", z.ZodTypeAny, {
|
|
2063
2463
|
email: string;
|
|
2064
|
-
optional?: boolean | undefined;
|
|
2065
2464
|
displayName?: string | undefined;
|
|
2465
|
+
optional?: boolean | undefined;
|
|
2066
2466
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2067
2467
|
}, {
|
|
2068
2468
|
email: string;
|
|
2069
|
-
optional?: boolean | undefined;
|
|
2070
2469
|
displayName?: string | undefined;
|
|
2470
|
+
optional?: boolean | undefined;
|
|
2071
2471
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2072
2472
|
}>, "many">>;
|
|
2073
2473
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2082,6 +2482,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2082
2482
|
}>>;
|
|
2083
2483
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2084
2484
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2485
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2486
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2487
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2488
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2489
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2490
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2491
|
+
}, "strip", z.ZodTypeAny, {
|
|
2492
|
+
title?: string | undefined;
|
|
2493
|
+
mimeType?: string | undefined;
|
|
2494
|
+
fileUrl?: string | undefined;
|
|
2495
|
+
fileId?: string | undefined;
|
|
2496
|
+
iconLink?: string | undefined;
|
|
2497
|
+
}, {
|
|
2498
|
+
title?: string | undefined;
|
|
2499
|
+
mimeType?: string | undefined;
|
|
2500
|
+
fileUrl?: string | undefined;
|
|
2501
|
+
fileId?: string | undefined;
|
|
2502
|
+
iconLink?: string | undefined;
|
|
2503
|
+
}>, "many">>;
|
|
2504
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2085
2505
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2086
2506
|
id: z.ZodString;
|
|
2087
2507
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2124,13 +2544,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2124
2544
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2125
2545
|
}, "strip", z.ZodTypeAny, {
|
|
2126
2546
|
email: string;
|
|
2127
|
-
optional?: boolean | undefined;
|
|
2128
2547
|
displayName?: string | undefined;
|
|
2548
|
+
optional?: boolean | undefined;
|
|
2129
2549
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2130
2550
|
}, {
|
|
2131
2551
|
email: string;
|
|
2132
|
-
optional?: boolean | undefined;
|
|
2133
2552
|
displayName?: string | undefined;
|
|
2553
|
+
optional?: boolean | undefined;
|
|
2134
2554
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2135
2555
|
}>, "many">>;
|
|
2136
2556
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2145,6 +2565,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2145
2565
|
}>>;
|
|
2146
2566
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2147
2567
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2568
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2569
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2570
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2571
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2572
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2573
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2574
|
+
}, "strip", z.ZodTypeAny, {
|
|
2575
|
+
title?: string | undefined;
|
|
2576
|
+
mimeType?: string | undefined;
|
|
2577
|
+
fileUrl?: string | undefined;
|
|
2578
|
+
fileId?: string | undefined;
|
|
2579
|
+
iconLink?: string | undefined;
|
|
2580
|
+
}, {
|
|
2581
|
+
title?: string | undefined;
|
|
2582
|
+
mimeType?: string | undefined;
|
|
2583
|
+
fileUrl?: string | undefined;
|
|
2584
|
+
fileId?: string | undefined;
|
|
2585
|
+
iconLink?: string | undefined;
|
|
2586
|
+
}>, "many">>;
|
|
2587
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2148
2588
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2149
2589
|
id: z.ZodString;
|
|
2150
2590
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2187,13 +2627,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2187
2627
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2188
2628
|
}, "strip", z.ZodTypeAny, {
|
|
2189
2629
|
email: string;
|
|
2190
|
-
optional?: boolean | undefined;
|
|
2191
2630
|
displayName?: string | undefined;
|
|
2631
|
+
optional?: boolean | undefined;
|
|
2192
2632
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2193
2633
|
}, {
|
|
2194
2634
|
email: string;
|
|
2195
|
-
optional?: boolean | undefined;
|
|
2196
2635
|
displayName?: string | undefined;
|
|
2636
|
+
optional?: boolean | undefined;
|
|
2197
2637
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2198
2638
|
}>, "many">>;
|
|
2199
2639
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2208,13 +2648,33 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2208
2648
|
}>>;
|
|
2209
2649
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2210
2650
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2651
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2652
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2653
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2654
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2655
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2656
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2657
|
+
}, "strip", z.ZodTypeAny, {
|
|
2658
|
+
title?: string | undefined;
|
|
2659
|
+
mimeType?: string | undefined;
|
|
2660
|
+
fileUrl?: string | undefined;
|
|
2661
|
+
fileId?: string | undefined;
|
|
2662
|
+
iconLink?: string | undefined;
|
|
2663
|
+
}, {
|
|
2664
|
+
title?: string | undefined;
|
|
2665
|
+
mimeType?: string | undefined;
|
|
2666
|
+
fileUrl?: string | undefined;
|
|
2667
|
+
fileId?: string | undefined;
|
|
2668
|
+
iconLink?: string | undefined;
|
|
2669
|
+
}>, "many">>;
|
|
2670
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2211
2671
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2212
2672
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
2213
2673
|
error: z.ZodString;
|
|
2214
2674
|
}, "strip", z.ZodTypeAny, {
|
|
2215
|
-
operation: "list_events";
|
|
2216
|
-
error: string;
|
|
2217
2675
|
success: boolean;
|
|
2676
|
+
error: string;
|
|
2677
|
+
operation: "list_events";
|
|
2218
2678
|
next_page_token?: string | undefined;
|
|
2219
2679
|
events?: z.objectOutputType<{
|
|
2220
2680
|
id: z.ZodString;
|
|
@@ -2258,13 +2718,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2258
2718
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2259
2719
|
}, "strip", z.ZodTypeAny, {
|
|
2260
2720
|
email: string;
|
|
2261
|
-
optional?: boolean | undefined;
|
|
2262
2721
|
displayName?: string | undefined;
|
|
2722
|
+
optional?: boolean | undefined;
|
|
2263
2723
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2264
2724
|
}, {
|
|
2265
2725
|
email: string;
|
|
2266
|
-
optional?: boolean | undefined;
|
|
2267
2726
|
displayName?: string | undefined;
|
|
2727
|
+
optional?: boolean | undefined;
|
|
2268
2728
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2269
2729
|
}>, "many">>;
|
|
2270
2730
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2279,11 +2739,31 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2279
2739
|
}>>;
|
|
2280
2740
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2281
2741
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2742
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2743
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2744
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2745
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2746
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2747
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2748
|
+
}, "strip", z.ZodTypeAny, {
|
|
2749
|
+
title?: string | undefined;
|
|
2750
|
+
mimeType?: string | undefined;
|
|
2751
|
+
fileUrl?: string | undefined;
|
|
2752
|
+
fileId?: string | undefined;
|
|
2753
|
+
iconLink?: string | undefined;
|
|
2754
|
+
}, {
|
|
2755
|
+
title?: string | undefined;
|
|
2756
|
+
mimeType?: string | undefined;
|
|
2757
|
+
fileUrl?: string | undefined;
|
|
2758
|
+
fileId?: string | undefined;
|
|
2759
|
+
iconLink?: string | undefined;
|
|
2760
|
+
}>, "many">>;
|
|
2761
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2282
2762
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2283
2763
|
}, {
|
|
2284
|
-
operation: "list_events";
|
|
2285
|
-
error: string;
|
|
2286
2764
|
success: boolean;
|
|
2765
|
+
error: string;
|
|
2766
|
+
operation: "list_events";
|
|
2287
2767
|
next_page_token?: string | undefined;
|
|
2288
2768
|
events?: z.objectInputType<{
|
|
2289
2769
|
id: z.ZodString;
|
|
@@ -2327,13 +2807,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2327
2807
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2328
2808
|
}, "strip", z.ZodTypeAny, {
|
|
2329
2809
|
email: string;
|
|
2330
|
-
optional?: boolean | undefined;
|
|
2331
2810
|
displayName?: string | undefined;
|
|
2811
|
+
optional?: boolean | undefined;
|
|
2332
2812
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2333
2813
|
}, {
|
|
2334
2814
|
email: string;
|
|
2335
|
-
optional?: boolean | undefined;
|
|
2336
2815
|
displayName?: string | undefined;
|
|
2816
|
+
optional?: boolean | undefined;
|
|
2337
2817
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2338
2818
|
}>, "many">>;
|
|
2339
2819
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2348,6 +2828,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2348
2828
|
}>>;
|
|
2349
2829
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2350
2830
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2831
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2832
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2833
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2834
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2835
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2836
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2837
|
+
}, "strip", z.ZodTypeAny, {
|
|
2838
|
+
title?: string | undefined;
|
|
2839
|
+
mimeType?: string | undefined;
|
|
2840
|
+
fileUrl?: string | undefined;
|
|
2841
|
+
fileId?: string | undefined;
|
|
2842
|
+
iconLink?: string | undefined;
|
|
2843
|
+
}, {
|
|
2844
|
+
title?: string | undefined;
|
|
2845
|
+
mimeType?: string | undefined;
|
|
2846
|
+
fileUrl?: string | undefined;
|
|
2847
|
+
fileId?: string | undefined;
|
|
2848
|
+
iconLink?: string | undefined;
|
|
2849
|
+
}>, "many">>;
|
|
2850
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2351
2851
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2352
2852
|
}>, z.ZodObject<{
|
|
2353
2853
|
operation: z.ZodLiteral<"get_event">;
|
|
@@ -2394,13 +2894,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2394
2894
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2395
2895
|
}, "strip", z.ZodTypeAny, {
|
|
2396
2896
|
email: string;
|
|
2397
|
-
optional?: boolean | undefined;
|
|
2398
2897
|
displayName?: string | undefined;
|
|
2898
|
+
optional?: boolean | undefined;
|
|
2399
2899
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2400
2900
|
}, {
|
|
2401
2901
|
email: string;
|
|
2402
|
-
optional?: boolean | undefined;
|
|
2403
2902
|
displayName?: string | undefined;
|
|
2903
|
+
optional?: boolean | undefined;
|
|
2404
2904
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2405
2905
|
}>, "many">>;
|
|
2406
2906
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2415,6 +2915,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2415
2915
|
}>>;
|
|
2416
2916
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2417
2917
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2918
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2919
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2920
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2921
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2922
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2923
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2924
|
+
}, "strip", z.ZodTypeAny, {
|
|
2925
|
+
title?: string | undefined;
|
|
2926
|
+
mimeType?: string | undefined;
|
|
2927
|
+
fileUrl?: string | undefined;
|
|
2928
|
+
fileId?: string | undefined;
|
|
2929
|
+
iconLink?: string | undefined;
|
|
2930
|
+
}, {
|
|
2931
|
+
title?: string | undefined;
|
|
2932
|
+
mimeType?: string | undefined;
|
|
2933
|
+
fileUrl?: string | undefined;
|
|
2934
|
+
fileId?: string | undefined;
|
|
2935
|
+
iconLink?: string | undefined;
|
|
2936
|
+
}>, "many">>;
|
|
2937
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2418
2938
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2419
2939
|
id: z.ZodString;
|
|
2420
2940
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2457,13 +2977,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2457
2977
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2458
2978
|
}, "strip", z.ZodTypeAny, {
|
|
2459
2979
|
email: string;
|
|
2460
|
-
optional?: boolean | undefined;
|
|
2461
2980
|
displayName?: string | undefined;
|
|
2981
|
+
optional?: boolean | undefined;
|
|
2462
2982
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2463
2983
|
}, {
|
|
2464
2984
|
email: string;
|
|
2465
|
-
optional?: boolean | undefined;
|
|
2466
2985
|
displayName?: string | undefined;
|
|
2986
|
+
optional?: boolean | undefined;
|
|
2467
2987
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2468
2988
|
}>, "many">>;
|
|
2469
2989
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2478,6 +2998,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2478
2998
|
}>>;
|
|
2479
2999
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2480
3000
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3001
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3002
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3003
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3004
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3005
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3006
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3007
|
+
}, "strip", z.ZodTypeAny, {
|
|
3008
|
+
title?: string | undefined;
|
|
3009
|
+
mimeType?: string | undefined;
|
|
3010
|
+
fileUrl?: string | undefined;
|
|
3011
|
+
fileId?: string | undefined;
|
|
3012
|
+
iconLink?: string | undefined;
|
|
3013
|
+
}, {
|
|
3014
|
+
title?: string | undefined;
|
|
3015
|
+
mimeType?: string | undefined;
|
|
3016
|
+
fileUrl?: string | undefined;
|
|
3017
|
+
fileId?: string | undefined;
|
|
3018
|
+
iconLink?: string | undefined;
|
|
3019
|
+
}>, "many">>;
|
|
3020
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2481
3021
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2482
3022
|
id: z.ZodString;
|
|
2483
3023
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2520,13 +3060,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2520
3060
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2521
3061
|
}, "strip", z.ZodTypeAny, {
|
|
2522
3062
|
email: string;
|
|
2523
|
-
optional?: boolean | undefined;
|
|
2524
3063
|
displayName?: string | undefined;
|
|
3064
|
+
optional?: boolean | undefined;
|
|
2525
3065
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2526
3066
|
}, {
|
|
2527
3067
|
email: string;
|
|
2528
|
-
optional?: boolean | undefined;
|
|
2529
3068
|
displayName?: string | undefined;
|
|
3069
|
+
optional?: boolean | undefined;
|
|
2530
3070
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2531
3071
|
}>, "many">>;
|
|
2532
3072
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2541,12 +3081,32 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2541
3081
|
}>>;
|
|
2542
3082
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2543
3083
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3084
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3085
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3086
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3087
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3088
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3089
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3090
|
+
}, "strip", z.ZodTypeAny, {
|
|
3091
|
+
title?: string | undefined;
|
|
3092
|
+
mimeType?: string | undefined;
|
|
3093
|
+
fileUrl?: string | undefined;
|
|
3094
|
+
fileId?: string | undefined;
|
|
3095
|
+
iconLink?: string | undefined;
|
|
3096
|
+
}, {
|
|
3097
|
+
title?: string | undefined;
|
|
3098
|
+
mimeType?: string | undefined;
|
|
3099
|
+
fileUrl?: string | undefined;
|
|
3100
|
+
fileId?: string | undefined;
|
|
3101
|
+
iconLink?: string | undefined;
|
|
3102
|
+
}>, "many">>;
|
|
3103
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2544
3104
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2545
3105
|
error: z.ZodString;
|
|
2546
3106
|
}, "strip", z.ZodTypeAny, {
|
|
2547
|
-
operation: "get_event";
|
|
2548
|
-
error: string;
|
|
2549
3107
|
success: boolean;
|
|
3108
|
+
error: string;
|
|
3109
|
+
operation: "get_event";
|
|
2550
3110
|
event?: z.objectOutputType<{
|
|
2551
3111
|
id: z.ZodString;
|
|
2552
3112
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2589,13 +3149,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2589
3149
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2590
3150
|
}, "strip", z.ZodTypeAny, {
|
|
2591
3151
|
email: string;
|
|
2592
|
-
optional?: boolean | undefined;
|
|
2593
3152
|
displayName?: string | undefined;
|
|
3153
|
+
optional?: boolean | undefined;
|
|
2594
3154
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2595
3155
|
}, {
|
|
2596
3156
|
email: string;
|
|
2597
|
-
optional?: boolean | undefined;
|
|
2598
3157
|
displayName?: string | undefined;
|
|
3158
|
+
optional?: boolean | undefined;
|
|
2599
3159
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2600
3160
|
}>, "many">>;
|
|
2601
3161
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2610,11 +3170,31 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2610
3170
|
}>>;
|
|
2611
3171
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2612
3172
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3173
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3174
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3175
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3176
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3177
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3178
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3179
|
+
}, "strip", z.ZodTypeAny, {
|
|
3180
|
+
title?: string | undefined;
|
|
3181
|
+
mimeType?: string | undefined;
|
|
3182
|
+
fileUrl?: string | undefined;
|
|
3183
|
+
fileId?: string | undefined;
|
|
3184
|
+
iconLink?: string | undefined;
|
|
3185
|
+
}, {
|
|
3186
|
+
title?: string | undefined;
|
|
3187
|
+
mimeType?: string | undefined;
|
|
3188
|
+
fileUrl?: string | undefined;
|
|
3189
|
+
fileId?: string | undefined;
|
|
3190
|
+
iconLink?: string | undefined;
|
|
3191
|
+
}>, "many">>;
|
|
3192
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2613
3193
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2614
3194
|
}, {
|
|
2615
|
-
operation: "get_event";
|
|
2616
|
-
error: string;
|
|
2617
3195
|
success: boolean;
|
|
3196
|
+
error: string;
|
|
3197
|
+
operation: "get_event";
|
|
2618
3198
|
event?: z.objectInputType<{
|
|
2619
3199
|
id: z.ZodString;
|
|
2620
3200
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2657,13 +3237,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2657
3237
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2658
3238
|
}, "strip", z.ZodTypeAny, {
|
|
2659
3239
|
email: string;
|
|
2660
|
-
optional?: boolean | undefined;
|
|
2661
3240
|
displayName?: string | undefined;
|
|
3241
|
+
optional?: boolean | undefined;
|
|
2662
3242
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2663
3243
|
}, {
|
|
2664
3244
|
email: string;
|
|
2665
|
-
optional?: boolean | undefined;
|
|
2666
3245
|
displayName?: string | undefined;
|
|
3246
|
+
optional?: boolean | undefined;
|
|
2667
3247
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2668
3248
|
}>, "many">>;
|
|
2669
3249
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2678,6 +3258,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2678
3258
|
}>>;
|
|
2679
3259
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2680
3260
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3261
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3262
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3263
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3264
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3265
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3266
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3267
|
+
}, "strip", z.ZodTypeAny, {
|
|
3268
|
+
title?: string | undefined;
|
|
3269
|
+
mimeType?: string | undefined;
|
|
3270
|
+
fileUrl?: string | undefined;
|
|
3271
|
+
fileId?: string | undefined;
|
|
3272
|
+
iconLink?: string | undefined;
|
|
3273
|
+
}, {
|
|
3274
|
+
title?: string | undefined;
|
|
3275
|
+
mimeType?: string | undefined;
|
|
3276
|
+
fileUrl?: string | undefined;
|
|
3277
|
+
fileId?: string | undefined;
|
|
3278
|
+
iconLink?: string | undefined;
|
|
3279
|
+
}>, "many">>;
|
|
3280
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2681
3281
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2682
3282
|
}>, z.ZodObject<{
|
|
2683
3283
|
operation: z.ZodLiteral<"create_event">;
|
|
@@ -2724,13 +3324,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2724
3324
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2725
3325
|
}, "strip", z.ZodTypeAny, {
|
|
2726
3326
|
email: string;
|
|
2727
|
-
optional?: boolean | undefined;
|
|
2728
3327
|
displayName?: string | undefined;
|
|
3328
|
+
optional?: boolean | undefined;
|
|
2729
3329
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2730
3330
|
}, {
|
|
2731
3331
|
email: string;
|
|
2732
|
-
optional?: boolean | undefined;
|
|
2733
3332
|
displayName?: string | undefined;
|
|
3333
|
+
optional?: boolean | undefined;
|
|
2734
3334
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2735
3335
|
}>, "many">>;
|
|
2736
3336
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2745,6 +3345,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2745
3345
|
}>>;
|
|
2746
3346
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2747
3347
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3348
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3349
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3350
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3351
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3352
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3353
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3354
|
+
}, "strip", z.ZodTypeAny, {
|
|
3355
|
+
title?: string | undefined;
|
|
3356
|
+
mimeType?: string | undefined;
|
|
3357
|
+
fileUrl?: string | undefined;
|
|
3358
|
+
fileId?: string | undefined;
|
|
3359
|
+
iconLink?: string | undefined;
|
|
3360
|
+
}, {
|
|
3361
|
+
title?: string | undefined;
|
|
3362
|
+
mimeType?: string | undefined;
|
|
3363
|
+
fileUrl?: string | undefined;
|
|
3364
|
+
fileId?: string | undefined;
|
|
3365
|
+
iconLink?: string | undefined;
|
|
3366
|
+
}>, "many">>;
|
|
3367
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2748
3368
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2749
3369
|
id: z.ZodString;
|
|
2750
3370
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2787,13 +3407,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2787
3407
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2788
3408
|
}, "strip", z.ZodTypeAny, {
|
|
2789
3409
|
email: string;
|
|
2790
|
-
optional?: boolean | undefined;
|
|
2791
3410
|
displayName?: string | undefined;
|
|
3411
|
+
optional?: boolean | undefined;
|
|
2792
3412
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2793
3413
|
}, {
|
|
2794
3414
|
email: string;
|
|
2795
|
-
optional?: boolean | undefined;
|
|
2796
3415
|
displayName?: string | undefined;
|
|
3416
|
+
optional?: boolean | undefined;
|
|
2797
3417
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2798
3418
|
}>, "many">>;
|
|
2799
3419
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2808,6 +3428,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2808
3428
|
}>>;
|
|
2809
3429
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2810
3430
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3431
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3432
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3433
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3434
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3435
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3436
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3437
|
+
}, "strip", z.ZodTypeAny, {
|
|
3438
|
+
title?: string | undefined;
|
|
3439
|
+
mimeType?: string | undefined;
|
|
3440
|
+
fileUrl?: string | undefined;
|
|
3441
|
+
fileId?: string | undefined;
|
|
3442
|
+
iconLink?: string | undefined;
|
|
3443
|
+
}, {
|
|
3444
|
+
title?: string | undefined;
|
|
3445
|
+
mimeType?: string | undefined;
|
|
3446
|
+
fileUrl?: string | undefined;
|
|
3447
|
+
fileId?: string | undefined;
|
|
3448
|
+
iconLink?: string | undefined;
|
|
3449
|
+
}>, "many">>;
|
|
3450
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2811
3451
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2812
3452
|
id: z.ZodString;
|
|
2813
3453
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2850,13 +3490,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2850
3490
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2851
3491
|
}, "strip", z.ZodTypeAny, {
|
|
2852
3492
|
email: string;
|
|
2853
|
-
optional?: boolean | undefined;
|
|
2854
3493
|
displayName?: string | undefined;
|
|
3494
|
+
optional?: boolean | undefined;
|
|
2855
3495
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2856
3496
|
}, {
|
|
2857
3497
|
email: string;
|
|
2858
|
-
optional?: boolean | undefined;
|
|
2859
3498
|
displayName?: string | undefined;
|
|
3499
|
+
optional?: boolean | undefined;
|
|
2860
3500
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2861
3501
|
}>, "many">>;
|
|
2862
3502
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2871,12 +3511,32 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2871
3511
|
}>>;
|
|
2872
3512
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2873
3513
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3514
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3515
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3516
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3517
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3518
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3519
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3520
|
+
}, "strip", z.ZodTypeAny, {
|
|
3521
|
+
title?: string | undefined;
|
|
3522
|
+
mimeType?: string | undefined;
|
|
3523
|
+
fileUrl?: string | undefined;
|
|
3524
|
+
fileId?: string | undefined;
|
|
3525
|
+
iconLink?: string | undefined;
|
|
3526
|
+
}, {
|
|
3527
|
+
title?: string | undefined;
|
|
3528
|
+
mimeType?: string | undefined;
|
|
3529
|
+
fileUrl?: string | undefined;
|
|
3530
|
+
fileId?: string | undefined;
|
|
3531
|
+
iconLink?: string | undefined;
|
|
3532
|
+
}>, "many">>;
|
|
3533
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2874
3534
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2875
3535
|
error: z.ZodString;
|
|
2876
3536
|
}, "strip", z.ZodTypeAny, {
|
|
2877
|
-
operation: "create_event";
|
|
2878
|
-
error: string;
|
|
2879
3537
|
success: boolean;
|
|
3538
|
+
error: string;
|
|
3539
|
+
operation: "create_event";
|
|
2880
3540
|
event?: z.objectOutputType<{
|
|
2881
3541
|
id: z.ZodString;
|
|
2882
3542
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2919,13 +3579,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2919
3579
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2920
3580
|
}, "strip", z.ZodTypeAny, {
|
|
2921
3581
|
email: string;
|
|
2922
|
-
optional?: boolean | undefined;
|
|
2923
3582
|
displayName?: string | undefined;
|
|
3583
|
+
optional?: boolean | undefined;
|
|
2924
3584
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2925
3585
|
}, {
|
|
2926
3586
|
email: string;
|
|
2927
|
-
optional?: boolean | undefined;
|
|
2928
3587
|
displayName?: string | undefined;
|
|
3588
|
+
optional?: boolean | undefined;
|
|
2929
3589
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2930
3590
|
}>, "many">>;
|
|
2931
3591
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2940,11 +3600,31 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2940
3600
|
}>>;
|
|
2941
3601
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2942
3602
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3603
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3604
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3605
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3606
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3607
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3608
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3609
|
+
}, "strip", z.ZodTypeAny, {
|
|
3610
|
+
title?: string | undefined;
|
|
3611
|
+
mimeType?: string | undefined;
|
|
3612
|
+
fileUrl?: string | undefined;
|
|
3613
|
+
fileId?: string | undefined;
|
|
3614
|
+
iconLink?: string | undefined;
|
|
3615
|
+
}, {
|
|
3616
|
+
title?: string | undefined;
|
|
3617
|
+
mimeType?: string | undefined;
|
|
3618
|
+
fileUrl?: string | undefined;
|
|
3619
|
+
fileId?: string | undefined;
|
|
3620
|
+
iconLink?: string | undefined;
|
|
3621
|
+
}>, "many">>;
|
|
3622
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2943
3623
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2944
3624
|
}, {
|
|
2945
|
-
operation: "create_event";
|
|
2946
|
-
error: string;
|
|
2947
3625
|
success: boolean;
|
|
3626
|
+
error: string;
|
|
3627
|
+
operation: "create_event";
|
|
2948
3628
|
event?: z.objectInputType<{
|
|
2949
3629
|
id: z.ZodString;
|
|
2950
3630
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2987,13 +3667,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2987
3667
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2988
3668
|
}, "strip", z.ZodTypeAny, {
|
|
2989
3669
|
email: string;
|
|
2990
|
-
optional?: boolean | undefined;
|
|
2991
3670
|
displayName?: string | undefined;
|
|
3671
|
+
optional?: boolean | undefined;
|
|
2992
3672
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2993
3673
|
}, {
|
|
2994
3674
|
email: string;
|
|
2995
|
-
optional?: boolean | undefined;
|
|
2996
3675
|
displayName?: string | undefined;
|
|
3676
|
+
optional?: boolean | undefined;
|
|
2997
3677
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2998
3678
|
}>, "many">>;
|
|
2999
3679
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3008,6 +3688,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3008
3688
|
}>>;
|
|
3009
3689
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3010
3690
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3691
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3692
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3693
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3694
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3695
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3696
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3697
|
+
}, "strip", z.ZodTypeAny, {
|
|
3698
|
+
title?: string | undefined;
|
|
3699
|
+
mimeType?: string | undefined;
|
|
3700
|
+
fileUrl?: string | undefined;
|
|
3701
|
+
fileId?: string | undefined;
|
|
3702
|
+
iconLink?: string | undefined;
|
|
3703
|
+
}, {
|
|
3704
|
+
title?: string | undefined;
|
|
3705
|
+
mimeType?: string | undefined;
|
|
3706
|
+
fileUrl?: string | undefined;
|
|
3707
|
+
fileId?: string | undefined;
|
|
3708
|
+
iconLink?: string | undefined;
|
|
3709
|
+
}>, "many">>;
|
|
3710
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3011
3711
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3012
3712
|
}>, z.ZodObject<{
|
|
3013
3713
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -3054,13 +3754,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3054
3754
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3055
3755
|
}, "strip", z.ZodTypeAny, {
|
|
3056
3756
|
email: string;
|
|
3057
|
-
optional?: boolean | undefined;
|
|
3058
3757
|
displayName?: string | undefined;
|
|
3758
|
+
optional?: boolean | undefined;
|
|
3059
3759
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3060
3760
|
}, {
|
|
3061
3761
|
email: string;
|
|
3062
|
-
optional?: boolean | undefined;
|
|
3063
3762
|
displayName?: string | undefined;
|
|
3763
|
+
optional?: boolean | undefined;
|
|
3064
3764
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3065
3765
|
}>, "many">>;
|
|
3066
3766
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3075,6 +3775,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3075
3775
|
}>>;
|
|
3076
3776
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3077
3777
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3778
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3779
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3780
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3781
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3782
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3783
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3784
|
+
}, "strip", z.ZodTypeAny, {
|
|
3785
|
+
title?: string | undefined;
|
|
3786
|
+
mimeType?: string | undefined;
|
|
3787
|
+
fileUrl?: string | undefined;
|
|
3788
|
+
fileId?: string | undefined;
|
|
3789
|
+
iconLink?: string | undefined;
|
|
3790
|
+
}, {
|
|
3791
|
+
title?: string | undefined;
|
|
3792
|
+
mimeType?: string | undefined;
|
|
3793
|
+
fileUrl?: string | undefined;
|
|
3794
|
+
fileId?: string | undefined;
|
|
3795
|
+
iconLink?: string | undefined;
|
|
3796
|
+
}>, "many">>;
|
|
3797
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3078
3798
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3079
3799
|
id: z.ZodString;
|
|
3080
3800
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -3117,13 +3837,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3117
3837
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3118
3838
|
}, "strip", z.ZodTypeAny, {
|
|
3119
3839
|
email: string;
|
|
3120
|
-
optional?: boolean | undefined;
|
|
3121
3840
|
displayName?: string | undefined;
|
|
3841
|
+
optional?: boolean | undefined;
|
|
3122
3842
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3123
3843
|
}, {
|
|
3124
3844
|
email: string;
|
|
3125
|
-
optional?: boolean | undefined;
|
|
3126
3845
|
displayName?: string | undefined;
|
|
3846
|
+
optional?: boolean | undefined;
|
|
3127
3847
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3128
3848
|
}>, "many">>;
|
|
3129
3849
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3138,6 +3858,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3138
3858
|
}>>;
|
|
3139
3859
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3140
3860
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3861
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3862
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3863
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3864
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3865
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3866
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3867
|
+
}, "strip", z.ZodTypeAny, {
|
|
3868
|
+
title?: string | undefined;
|
|
3869
|
+
mimeType?: string | undefined;
|
|
3870
|
+
fileUrl?: string | undefined;
|
|
3871
|
+
fileId?: string | undefined;
|
|
3872
|
+
iconLink?: string | undefined;
|
|
3873
|
+
}, {
|
|
3874
|
+
title?: string | undefined;
|
|
3875
|
+
mimeType?: string | undefined;
|
|
3876
|
+
fileUrl?: string | undefined;
|
|
3877
|
+
fileId?: string | undefined;
|
|
3878
|
+
iconLink?: string | undefined;
|
|
3879
|
+
}>, "many">>;
|
|
3880
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3141
3881
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3142
3882
|
id: z.ZodString;
|
|
3143
3883
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -3180,13 +3920,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3180
3920
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3181
3921
|
}, "strip", z.ZodTypeAny, {
|
|
3182
3922
|
email: string;
|
|
3183
|
-
optional?: boolean | undefined;
|
|
3184
3923
|
displayName?: string | undefined;
|
|
3924
|
+
optional?: boolean | undefined;
|
|
3185
3925
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3186
3926
|
}, {
|
|
3187
3927
|
email: string;
|
|
3188
|
-
optional?: boolean | undefined;
|
|
3189
3928
|
displayName?: string | undefined;
|
|
3929
|
+
optional?: boolean | undefined;
|
|
3190
3930
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3191
3931
|
}>, "many">>;
|
|
3192
3932
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3201,12 +3941,32 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3201
3941
|
}>>;
|
|
3202
3942
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3203
3943
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3944
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3945
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3946
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3947
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3948
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3949
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3950
|
+
}, "strip", z.ZodTypeAny, {
|
|
3951
|
+
title?: string | undefined;
|
|
3952
|
+
mimeType?: string | undefined;
|
|
3953
|
+
fileUrl?: string | undefined;
|
|
3954
|
+
fileId?: string | undefined;
|
|
3955
|
+
iconLink?: string | undefined;
|
|
3956
|
+
}, {
|
|
3957
|
+
title?: string | undefined;
|
|
3958
|
+
mimeType?: string | undefined;
|
|
3959
|
+
fileUrl?: string | undefined;
|
|
3960
|
+
fileId?: string | undefined;
|
|
3961
|
+
iconLink?: string | undefined;
|
|
3962
|
+
}>, "many">>;
|
|
3963
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3204
3964
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3205
3965
|
error: z.ZodString;
|
|
3206
3966
|
}, "strip", z.ZodTypeAny, {
|
|
3207
|
-
operation: "update_event";
|
|
3208
|
-
error: string;
|
|
3209
3967
|
success: boolean;
|
|
3968
|
+
error: string;
|
|
3969
|
+
operation: "update_event";
|
|
3210
3970
|
event?: z.objectOutputType<{
|
|
3211
3971
|
id: z.ZodString;
|
|
3212
3972
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -3249,13 +4009,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3249
4009
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3250
4010
|
}, "strip", z.ZodTypeAny, {
|
|
3251
4011
|
email: string;
|
|
3252
|
-
optional?: boolean | undefined;
|
|
3253
4012
|
displayName?: string | undefined;
|
|
4013
|
+
optional?: boolean | undefined;
|
|
3254
4014
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3255
4015
|
}, {
|
|
3256
4016
|
email: string;
|
|
3257
|
-
optional?: boolean | undefined;
|
|
3258
4017
|
displayName?: string | undefined;
|
|
4018
|
+
optional?: boolean | undefined;
|
|
3259
4019
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3260
4020
|
}>, "many">>;
|
|
3261
4021
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3270,11 +4030,31 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3270
4030
|
}>>;
|
|
3271
4031
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3272
4032
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
4033
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4034
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
4035
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
4036
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4037
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
4038
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
4039
|
+
}, "strip", z.ZodTypeAny, {
|
|
4040
|
+
title?: string | undefined;
|
|
4041
|
+
mimeType?: string | undefined;
|
|
4042
|
+
fileUrl?: string | undefined;
|
|
4043
|
+
fileId?: string | undefined;
|
|
4044
|
+
iconLink?: string | undefined;
|
|
4045
|
+
}, {
|
|
4046
|
+
title?: string | undefined;
|
|
4047
|
+
mimeType?: string | undefined;
|
|
4048
|
+
fileUrl?: string | undefined;
|
|
4049
|
+
fileId?: string | undefined;
|
|
4050
|
+
iconLink?: string | undefined;
|
|
4051
|
+
}>, "many">>;
|
|
4052
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3273
4053
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3274
4054
|
}, {
|
|
3275
|
-
operation: "update_event";
|
|
3276
|
-
error: string;
|
|
3277
4055
|
success: boolean;
|
|
4056
|
+
error: string;
|
|
4057
|
+
operation: "update_event";
|
|
3278
4058
|
event?: z.objectInputType<{
|
|
3279
4059
|
id: z.ZodString;
|
|
3280
4060
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -3317,13 +4097,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3317
4097
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3318
4098
|
}, "strip", z.ZodTypeAny, {
|
|
3319
4099
|
email: string;
|
|
3320
|
-
optional?: boolean | undefined;
|
|
3321
4100
|
displayName?: string | undefined;
|
|
4101
|
+
optional?: boolean | undefined;
|
|
3322
4102
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3323
4103
|
}, {
|
|
3324
4104
|
email: string;
|
|
3325
|
-
optional?: boolean | undefined;
|
|
3326
4105
|
displayName?: string | undefined;
|
|
4106
|
+
optional?: boolean | undefined;
|
|
3327
4107
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3328
4108
|
}>, "many">>;
|
|
3329
4109
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3338,6 +4118,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3338
4118
|
}>>;
|
|
3339
4119
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3340
4120
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
4121
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4122
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
4123
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
4124
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4125
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
4126
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
4127
|
+
}, "strip", z.ZodTypeAny, {
|
|
4128
|
+
title?: string | undefined;
|
|
4129
|
+
mimeType?: string | undefined;
|
|
4130
|
+
fileUrl?: string | undefined;
|
|
4131
|
+
fileId?: string | undefined;
|
|
4132
|
+
iconLink?: string | undefined;
|
|
4133
|
+
}, {
|
|
4134
|
+
title?: string | undefined;
|
|
4135
|
+
mimeType?: string | undefined;
|
|
4136
|
+
fileUrl?: string | undefined;
|
|
4137
|
+
fileId?: string | undefined;
|
|
4138
|
+
iconLink?: string | undefined;
|
|
4139
|
+
}>, "many">>;
|
|
4140
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3341
4141
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3342
4142
|
}>, z.ZodObject<{
|
|
3343
4143
|
operation: z.ZodLiteral<"delete_event">;
|
|
@@ -3345,14 +4145,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3345
4145
|
deleted: z.ZodOptional<z.ZodBoolean>;
|
|
3346
4146
|
error: z.ZodString;
|
|
3347
4147
|
}, "strip", z.ZodTypeAny, {
|
|
3348
|
-
operation: "delete_event";
|
|
3349
|
-
error: string;
|
|
3350
4148
|
success: boolean;
|
|
4149
|
+
error: string;
|
|
4150
|
+
operation: "delete_event";
|
|
3351
4151
|
deleted?: boolean | undefined;
|
|
3352
4152
|
}, {
|
|
3353
|
-
operation: "delete_event";
|
|
3354
|
-
error: string;
|
|
3355
4153
|
success: boolean;
|
|
4154
|
+
error: string;
|
|
4155
|
+
operation: "delete_event";
|
|
3356
4156
|
deleted?: boolean | undefined;
|
|
3357
4157
|
}>]>;
|
|
3358
4158
|
static readonly shortDescription = "Google Calendar integration for managing events";
|
|
@@ -3360,6 +4160,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3360
4160
|
static readonly alias = "gcal";
|
|
3361
4161
|
constructor(params?: T, context?: BubbleContext);
|
|
3362
4162
|
testCredential(): Promise<boolean>;
|
|
4163
|
+
private extractDriveAttachmentFileIds;
|
|
4164
|
+
private processEventWithDriveAttachments;
|
|
3363
4165
|
private makeCalendarApiRequest;
|
|
3364
4166
|
protected performAction(context?: BubbleContext): Promise<Extract<GoogleCalendarResult, {
|
|
3365
4167
|
operation: T['operation'];
|