@bubblelab/bubble-core 0.1.67 → 0.1.68
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 +100 -100
- package/dist/bubbles/service-bubble/agi-inc.d.ts +88 -88
- package/dist/bubbles/service-bubble/ai-agent.d.ts +16 -16
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +4 -3
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +130 -130
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +98 -98
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +102 -102
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +26 -26
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +52 -52
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +755 -755
- package/dist/bubbles/service-bubble/followupboss.d.ts +140 -140
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +68 -68
- package/dist/bubbles/service-bubble/github.d.ts +160 -160
- package/dist/bubbles/service-bubble/gmail.d.ts +140 -140
- package/dist/bubbles/service-bubble/google-calendar.d.ts +218 -218
- package/dist/bubbles/service-bubble/google-drive.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +22 -22
- package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1634 -1634
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +28 -28
- package/dist/bubbles/service-bubble/slack/slack.d.ts +332 -332
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +94 -94
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
- package/dist/bubbles/service-bubble/telegram.d.ts +1537 -1537
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +13 -13
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +62 -62
- 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 +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +40 -40
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +122 -122
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +54 -54
- 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 +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- 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 +104 -104
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +34 -34
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +86 -86
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- 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;
|
|
38
39
|
page_token?: string | undefined;
|
|
39
40
|
time_min?: string | undefined;
|
|
40
41
|
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;
|
|
47
48
|
page_token?: string | undefined;
|
|
48
49
|
calendar_id?: string | undefined;
|
|
49
50
|
time_min?: string | undefined;
|
|
50
51
|
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,49 +104,49 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
104
104
|
displayName: z.ZodOptional<z.ZodString>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
106
|
email: string;
|
|
107
|
-
displayName?: string | undefined;
|
|
108
107
|
optional?: boolean | undefined;
|
|
108
|
+
displayName?: string | undefined;
|
|
109
109
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
110
110
|
}, {
|
|
111
111
|
email: string;
|
|
112
|
-
displayName?: string | undefined;
|
|
113
112
|
optional?: boolean | undefined;
|
|
113
|
+
displayName?: string | 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
|
-
operation: "create_event";
|
|
120
|
-
calendar_id: string;
|
|
121
119
|
summary: string;
|
|
122
120
|
start: {
|
|
123
121
|
date?: string | undefined;
|
|
124
122
|
timeZone?: string | undefined;
|
|
125
123
|
dateTime?: string | undefined;
|
|
126
124
|
};
|
|
125
|
+
operation: "create_event";
|
|
127
126
|
end: {
|
|
128
127
|
date?: string | undefined;
|
|
129
128
|
timeZone?: string | undefined;
|
|
130
129
|
dateTime?: string | undefined;
|
|
131
130
|
};
|
|
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
|
-
displayName?: string | undefined;
|
|
139
138
|
optional?: boolean | undefined;
|
|
139
|
+
displayName?: string | undefined;
|
|
140
140
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
141
141
|
}[] | undefined;
|
|
142
142
|
}, {
|
|
143
|
-
operation: "create_event";
|
|
144
143
|
summary: string;
|
|
145
144
|
start: {
|
|
146
145
|
date?: string | undefined;
|
|
147
146
|
timeZone?: string | undefined;
|
|
148
147
|
dateTime?: string | undefined;
|
|
149
148
|
};
|
|
149
|
+
operation: "create_event";
|
|
150
150
|
end: {
|
|
151
151
|
date?: string | undefined;
|
|
152
152
|
timeZone?: string | undefined;
|
|
@@ -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;
|
|
158
157
|
location?: string | undefined;
|
|
159
158
|
attendees?: {
|
|
160
159
|
email: string;
|
|
161
|
-
displayName?: string | undefined;
|
|
162
160
|
optional?: boolean | undefined;
|
|
161
|
+
displayName?: string | undefined;
|
|
163
162
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
164
163
|
}[] | 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
|
-
displayName?: string | undefined;
|
|
207
206
|
optional?: boolean | undefined;
|
|
207
|
+
displayName?: string | undefined;
|
|
208
208
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
209
209
|
}, {
|
|
210
210
|
email: string;
|
|
211
|
-
displayName?: string | undefined;
|
|
212
211
|
optional?: boolean | undefined;
|
|
212
|
+
displayName?: string | 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;
|
|
224
223
|
start?: {
|
|
225
224
|
date?: string | undefined;
|
|
226
225
|
timeZone?: string | undefined;
|
|
227
226
|
dateTime?: string | undefined;
|
|
228
227
|
} | 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
|
-
displayName?: string | undefined;
|
|
237
236
|
optional?: boolean | undefined;
|
|
237
|
+
displayName?: string | undefined;
|
|
238
238
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
239
239
|
}[] | undefined;
|
|
240
240
|
}, {
|
|
@@ -242,14 +242,13 @@ 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;
|
|
246
245
|
summary?: string | undefined;
|
|
247
|
-
location?: string | undefined;
|
|
248
246
|
start?: {
|
|
249
247
|
date?: string | undefined;
|
|
250
248
|
timeZone?: string | undefined;
|
|
251
249
|
dateTime?: string | undefined;
|
|
252
250
|
} | undefined;
|
|
251
|
+
location?: string | undefined;
|
|
253
252
|
end?: {
|
|
254
253
|
date?: string | undefined;
|
|
255
254
|
timeZone?: string | undefined;
|
|
@@ -257,10 +256,11 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
257
256
|
} | undefined;
|
|
258
257
|
attendees?: {
|
|
259
258
|
email: string;
|
|
260
|
-
displayName?: string | undefined;
|
|
261
259
|
optional?: boolean | undefined;
|
|
260
|
+
displayName?: string | undefined;
|
|
262
261
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
263
262
|
}[] | 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,8 +308,8 @@ 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
|
-
success: boolean;
|
|
312
311
|
error: string;
|
|
312
|
+
success: boolean;
|
|
313
313
|
operation: "list_calendars";
|
|
314
314
|
next_page_token?: string | undefined;
|
|
315
315
|
calendars?: z.objectOutputType<{
|
|
@@ -321,8 +321,8 @@ 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
|
-
success: boolean;
|
|
325
324
|
error: string;
|
|
325
|
+
success: boolean;
|
|
326
326
|
operation: "list_calendars";
|
|
327
327
|
next_page_token?: string | undefined;
|
|
328
328
|
calendars?: z.objectInputType<{
|
|
@@ -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
|
-
displayName?: string | undefined;
|
|
382
381
|
optional?: boolean | undefined;
|
|
382
|
+
displayName?: string | undefined;
|
|
383
383
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
384
384
|
}, {
|
|
385
385
|
email: string;
|
|
386
|
-
displayName?: string | undefined;
|
|
387
386
|
optional?: boolean | undefined;
|
|
387
|
+
displayName?: string | undefined;
|
|
388
388
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
389
389
|
}>, "many">>;
|
|
390
390
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -406,14 +406,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
406
406
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
407
407
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
408
408
|
}, "strip", z.ZodTypeAny, {
|
|
409
|
-
title?: string | undefined;
|
|
410
409
|
mimeType?: string | undefined;
|
|
410
|
+
title?: string | undefined;
|
|
411
411
|
fileUrl?: string | undefined;
|
|
412
412
|
fileId?: string | undefined;
|
|
413
413
|
iconLink?: string | undefined;
|
|
414
414
|
}, {
|
|
415
|
-
title?: string | undefined;
|
|
416
415
|
mimeType?: string | undefined;
|
|
416
|
+
title?: string | undefined;
|
|
417
417
|
fileUrl?: string | undefined;
|
|
418
418
|
fileId?: string | undefined;
|
|
419
419
|
iconLink?: string | undefined;
|
|
@@ -461,13 +461,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
461
461
|
displayName: z.ZodOptional<z.ZodString>;
|
|
462
462
|
}, "strip", z.ZodTypeAny, {
|
|
463
463
|
email: string;
|
|
464
|
-
displayName?: string | undefined;
|
|
465
464
|
optional?: boolean | undefined;
|
|
465
|
+
displayName?: string | undefined;
|
|
466
466
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
467
467
|
}, {
|
|
468
468
|
email: string;
|
|
469
|
-
displayName?: string | undefined;
|
|
470
469
|
optional?: boolean | undefined;
|
|
470
|
+
displayName?: string | undefined;
|
|
471
471
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
472
472
|
}>, "many">>;
|
|
473
473
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -489,14 +489,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
489
489
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
490
490
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
491
491
|
}, "strip", z.ZodTypeAny, {
|
|
492
|
-
title?: string | undefined;
|
|
493
492
|
mimeType?: string | undefined;
|
|
493
|
+
title?: string | undefined;
|
|
494
494
|
fileUrl?: string | undefined;
|
|
495
495
|
fileId?: string | undefined;
|
|
496
496
|
iconLink?: string | undefined;
|
|
497
497
|
}, {
|
|
498
|
-
title?: string | undefined;
|
|
499
498
|
mimeType?: string | undefined;
|
|
499
|
+
title?: string | undefined;
|
|
500
500
|
fileUrl?: string | undefined;
|
|
501
501
|
fileId?: string | undefined;
|
|
502
502
|
iconLink?: string | undefined;
|
|
@@ -544,13 +544,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
544
544
|
displayName: z.ZodOptional<z.ZodString>;
|
|
545
545
|
}, "strip", z.ZodTypeAny, {
|
|
546
546
|
email: string;
|
|
547
|
-
displayName?: string | undefined;
|
|
548
547
|
optional?: boolean | undefined;
|
|
548
|
+
displayName?: string | undefined;
|
|
549
549
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
550
550
|
}, {
|
|
551
551
|
email: string;
|
|
552
|
-
displayName?: string | undefined;
|
|
553
552
|
optional?: boolean | undefined;
|
|
553
|
+
displayName?: string | undefined;
|
|
554
554
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
555
555
|
}>, "many">>;
|
|
556
556
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -572,14 +572,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
572
572
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
573
573
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
|
-
title?: string | undefined;
|
|
576
575
|
mimeType?: string | undefined;
|
|
576
|
+
title?: string | undefined;
|
|
577
577
|
fileUrl?: string | undefined;
|
|
578
578
|
fileId?: string | undefined;
|
|
579
579
|
iconLink?: string | undefined;
|
|
580
580
|
}, {
|
|
581
|
-
title?: string | undefined;
|
|
582
581
|
mimeType?: string | undefined;
|
|
582
|
+
title?: string | undefined;
|
|
583
583
|
fileUrl?: string | undefined;
|
|
584
584
|
fileId?: string | undefined;
|
|
585
585
|
iconLink?: string | undefined;
|
|
@@ -589,8 +589,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
589
589
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
590
590
|
error: z.ZodString;
|
|
591
591
|
}, "strip", z.ZodTypeAny, {
|
|
592
|
-
success: boolean;
|
|
593
592
|
error: string;
|
|
593
|
+
success: boolean;
|
|
594
594
|
operation: "list_events";
|
|
595
595
|
next_page_token?: string | undefined;
|
|
596
596
|
events?: z.objectOutputType<{
|
|
@@ -635,13 +635,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
635
635
|
displayName: z.ZodOptional<z.ZodString>;
|
|
636
636
|
}, "strip", z.ZodTypeAny, {
|
|
637
637
|
email: string;
|
|
638
|
-
displayName?: string | undefined;
|
|
639
638
|
optional?: boolean | undefined;
|
|
639
|
+
displayName?: string | undefined;
|
|
640
640
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
641
641
|
}, {
|
|
642
642
|
email: string;
|
|
643
|
-
displayName?: string | undefined;
|
|
644
643
|
optional?: boolean | undefined;
|
|
644
|
+
displayName?: string | undefined;
|
|
645
645
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
646
646
|
}>, "many">>;
|
|
647
647
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -663,14 +663,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
663
663
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
664
664
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
665
665
|
}, "strip", z.ZodTypeAny, {
|
|
666
|
-
title?: string | undefined;
|
|
667
666
|
mimeType?: string | undefined;
|
|
667
|
+
title?: string | undefined;
|
|
668
668
|
fileUrl?: string | undefined;
|
|
669
669
|
fileId?: string | undefined;
|
|
670
670
|
iconLink?: string | undefined;
|
|
671
671
|
}, {
|
|
672
|
-
title?: string | undefined;
|
|
673
672
|
mimeType?: string | undefined;
|
|
673
|
+
title?: string | undefined;
|
|
674
674
|
fileUrl?: string | undefined;
|
|
675
675
|
fileId?: string | undefined;
|
|
676
676
|
iconLink?: string | undefined;
|
|
@@ -678,8 +678,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
678
678
|
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
679
679
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
680
680
|
}, {
|
|
681
|
-
success: boolean;
|
|
682
681
|
error: string;
|
|
682
|
+
success: boolean;
|
|
683
683
|
operation: "list_events";
|
|
684
684
|
next_page_token?: string | undefined;
|
|
685
685
|
events?: z.objectInputType<{
|
|
@@ -724,13 +724,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
724
724
|
displayName: z.ZodOptional<z.ZodString>;
|
|
725
725
|
}, "strip", z.ZodTypeAny, {
|
|
726
726
|
email: string;
|
|
727
|
-
displayName?: string | undefined;
|
|
728
727
|
optional?: boolean | undefined;
|
|
728
|
+
displayName?: string | undefined;
|
|
729
729
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
730
730
|
}, {
|
|
731
731
|
email: string;
|
|
732
|
-
displayName?: string | undefined;
|
|
733
732
|
optional?: boolean | undefined;
|
|
733
|
+
displayName?: string | undefined;
|
|
734
734
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
735
735
|
}>, "many">>;
|
|
736
736
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -752,14 +752,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
752
752
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
753
753
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
754
754
|
}, "strip", z.ZodTypeAny, {
|
|
755
|
-
title?: string | undefined;
|
|
756
755
|
mimeType?: string | undefined;
|
|
756
|
+
title?: string | undefined;
|
|
757
757
|
fileUrl?: string | undefined;
|
|
758
758
|
fileId?: string | undefined;
|
|
759
759
|
iconLink?: string | undefined;
|
|
760
760
|
}, {
|
|
761
|
-
title?: string | undefined;
|
|
762
761
|
mimeType?: string | undefined;
|
|
762
|
+
title?: string | undefined;
|
|
763
763
|
fileUrl?: string | undefined;
|
|
764
764
|
fileId?: string | undefined;
|
|
765
765
|
iconLink?: string | undefined;
|
|
@@ -811,13 +811,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
811
811
|
displayName: z.ZodOptional<z.ZodString>;
|
|
812
812
|
}, "strip", z.ZodTypeAny, {
|
|
813
813
|
email: string;
|
|
814
|
-
displayName?: string | undefined;
|
|
815
814
|
optional?: boolean | undefined;
|
|
815
|
+
displayName?: string | undefined;
|
|
816
816
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
817
817
|
}, {
|
|
818
818
|
email: string;
|
|
819
|
-
displayName?: string | undefined;
|
|
820
819
|
optional?: boolean | undefined;
|
|
820
|
+
displayName?: string | undefined;
|
|
821
821
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
822
822
|
}>, "many">>;
|
|
823
823
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -839,14 +839,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
839
839
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
840
840
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
841
841
|
}, "strip", z.ZodTypeAny, {
|
|
842
|
-
title?: string | undefined;
|
|
843
842
|
mimeType?: string | undefined;
|
|
843
|
+
title?: string | undefined;
|
|
844
844
|
fileUrl?: string | undefined;
|
|
845
845
|
fileId?: string | undefined;
|
|
846
846
|
iconLink?: string | undefined;
|
|
847
847
|
}, {
|
|
848
|
-
title?: string | undefined;
|
|
849
848
|
mimeType?: string | undefined;
|
|
849
|
+
title?: string | undefined;
|
|
850
850
|
fileUrl?: string | undefined;
|
|
851
851
|
fileId?: string | undefined;
|
|
852
852
|
iconLink?: string | undefined;
|
|
@@ -894,13 +894,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
894
894
|
displayName: z.ZodOptional<z.ZodString>;
|
|
895
895
|
}, "strip", z.ZodTypeAny, {
|
|
896
896
|
email: string;
|
|
897
|
-
displayName?: string | undefined;
|
|
898
897
|
optional?: boolean | undefined;
|
|
898
|
+
displayName?: string | undefined;
|
|
899
899
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
900
900
|
}, {
|
|
901
901
|
email: string;
|
|
902
|
-
displayName?: string | undefined;
|
|
903
902
|
optional?: boolean | undefined;
|
|
903
|
+
displayName?: string | undefined;
|
|
904
904
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
905
905
|
}>, "many">>;
|
|
906
906
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -922,14 +922,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
922
922
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
923
923
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
924
924
|
}, "strip", z.ZodTypeAny, {
|
|
925
|
-
title?: string | undefined;
|
|
926
925
|
mimeType?: string | undefined;
|
|
926
|
+
title?: string | undefined;
|
|
927
927
|
fileUrl?: string | undefined;
|
|
928
928
|
fileId?: string | undefined;
|
|
929
929
|
iconLink?: string | undefined;
|
|
930
930
|
}, {
|
|
931
|
-
title?: string | undefined;
|
|
932
931
|
mimeType?: string | undefined;
|
|
932
|
+
title?: string | undefined;
|
|
933
933
|
fileUrl?: string | undefined;
|
|
934
934
|
fileId?: string | undefined;
|
|
935
935
|
iconLink?: string | undefined;
|
|
@@ -977,13 +977,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
977
977
|
displayName: z.ZodOptional<z.ZodString>;
|
|
978
978
|
}, "strip", z.ZodTypeAny, {
|
|
979
979
|
email: string;
|
|
980
|
-
displayName?: string | undefined;
|
|
981
980
|
optional?: boolean | undefined;
|
|
981
|
+
displayName?: string | undefined;
|
|
982
982
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
983
983
|
}, {
|
|
984
984
|
email: string;
|
|
985
|
-
displayName?: string | undefined;
|
|
986
985
|
optional?: boolean | undefined;
|
|
986
|
+
displayName?: string | undefined;
|
|
987
987
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
988
988
|
}>, "many">>;
|
|
989
989
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1005,14 +1005,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1005
1005
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1006
1006
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1007
1007
|
}, "strip", z.ZodTypeAny, {
|
|
1008
|
-
title?: string | undefined;
|
|
1009
1008
|
mimeType?: string | undefined;
|
|
1009
|
+
title?: string | undefined;
|
|
1010
1010
|
fileUrl?: string | undefined;
|
|
1011
1011
|
fileId?: string | undefined;
|
|
1012
1012
|
iconLink?: string | undefined;
|
|
1013
1013
|
}, {
|
|
1014
|
-
title?: string | undefined;
|
|
1015
1014
|
mimeType?: string | undefined;
|
|
1015
|
+
title?: string | undefined;
|
|
1016
1016
|
fileUrl?: string | undefined;
|
|
1017
1017
|
fileId?: string | undefined;
|
|
1018
1018
|
iconLink?: string | undefined;
|
|
@@ -1021,8 +1021,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1021
1021
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1022
1022
|
error: z.ZodString;
|
|
1023
1023
|
}, "strip", z.ZodTypeAny, {
|
|
1024
|
-
success: boolean;
|
|
1025
1024
|
error: string;
|
|
1025
|
+
success: boolean;
|
|
1026
1026
|
operation: "get_event";
|
|
1027
1027
|
event?: z.objectOutputType<{
|
|
1028
1028
|
id: z.ZodString;
|
|
@@ -1066,13 +1066,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1066
1066
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1067
1067
|
}, "strip", z.ZodTypeAny, {
|
|
1068
1068
|
email: string;
|
|
1069
|
-
displayName?: string | undefined;
|
|
1070
1069
|
optional?: boolean | undefined;
|
|
1070
|
+
displayName?: string | undefined;
|
|
1071
1071
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1072
1072
|
}, {
|
|
1073
1073
|
email: string;
|
|
1074
|
-
displayName?: string | undefined;
|
|
1075
1074
|
optional?: boolean | undefined;
|
|
1075
|
+
displayName?: string | undefined;
|
|
1076
1076
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1077
1077
|
}>, "many">>;
|
|
1078
1078
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1094,14 +1094,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1094
1094
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1095
1095
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1096
1096
|
}, "strip", z.ZodTypeAny, {
|
|
1097
|
-
title?: string | undefined;
|
|
1098
1097
|
mimeType?: string | undefined;
|
|
1098
|
+
title?: string | undefined;
|
|
1099
1099
|
fileUrl?: string | undefined;
|
|
1100
1100
|
fileId?: string | undefined;
|
|
1101
1101
|
iconLink?: string | undefined;
|
|
1102
1102
|
}, {
|
|
1103
|
-
title?: string | undefined;
|
|
1104
1103
|
mimeType?: string | undefined;
|
|
1104
|
+
title?: string | undefined;
|
|
1105
1105
|
fileUrl?: string | undefined;
|
|
1106
1106
|
fileId?: string | undefined;
|
|
1107
1107
|
iconLink?: string | undefined;
|
|
@@ -1109,8 +1109,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1109
1109
|
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1110
1110
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1111
1111
|
}, {
|
|
1112
|
-
success: boolean;
|
|
1113
1112
|
error: string;
|
|
1113
|
+
success: boolean;
|
|
1114
1114
|
operation: "get_event";
|
|
1115
1115
|
event?: z.objectInputType<{
|
|
1116
1116
|
id: z.ZodString;
|
|
@@ -1154,13 +1154,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1154
1154
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1155
1155
|
}, "strip", z.ZodTypeAny, {
|
|
1156
1156
|
email: string;
|
|
1157
|
-
displayName?: string | undefined;
|
|
1158
1157
|
optional?: boolean | undefined;
|
|
1158
|
+
displayName?: string | undefined;
|
|
1159
1159
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1160
1160
|
}, {
|
|
1161
1161
|
email: string;
|
|
1162
|
-
displayName?: string | undefined;
|
|
1163
1162
|
optional?: boolean | undefined;
|
|
1163
|
+
displayName?: string | undefined;
|
|
1164
1164
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1165
1165
|
}>, "many">>;
|
|
1166
1166
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1182,14 +1182,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1182
1182
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1183
1183
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1184
1184
|
}, "strip", z.ZodTypeAny, {
|
|
1185
|
-
title?: string | undefined;
|
|
1186
1185
|
mimeType?: string | undefined;
|
|
1186
|
+
title?: string | undefined;
|
|
1187
1187
|
fileUrl?: string | undefined;
|
|
1188
1188
|
fileId?: string | undefined;
|
|
1189
1189
|
iconLink?: string | undefined;
|
|
1190
1190
|
}, {
|
|
1191
|
-
title?: string | undefined;
|
|
1192
1191
|
mimeType?: string | undefined;
|
|
1192
|
+
title?: string | undefined;
|
|
1193
1193
|
fileUrl?: string | undefined;
|
|
1194
1194
|
fileId?: string | undefined;
|
|
1195
1195
|
iconLink?: string | undefined;
|
|
@@ -1241,13 +1241,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1241
1241
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1242
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1243
1243
|
email: string;
|
|
1244
|
-
displayName?: string | undefined;
|
|
1245
1244
|
optional?: boolean | undefined;
|
|
1245
|
+
displayName?: string | undefined;
|
|
1246
1246
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1247
1247
|
}, {
|
|
1248
1248
|
email: string;
|
|
1249
|
-
displayName?: string | undefined;
|
|
1250
1249
|
optional?: boolean | undefined;
|
|
1250
|
+
displayName?: string | undefined;
|
|
1251
1251
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1252
1252
|
}>, "many">>;
|
|
1253
1253
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1269,14 +1269,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1269
1269
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1270
1270
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1271
1271
|
}, "strip", z.ZodTypeAny, {
|
|
1272
|
-
title?: string | undefined;
|
|
1273
1272
|
mimeType?: string | undefined;
|
|
1273
|
+
title?: string | undefined;
|
|
1274
1274
|
fileUrl?: string | undefined;
|
|
1275
1275
|
fileId?: string | undefined;
|
|
1276
1276
|
iconLink?: string | undefined;
|
|
1277
1277
|
}, {
|
|
1278
|
-
title?: string | undefined;
|
|
1279
1278
|
mimeType?: string | undefined;
|
|
1279
|
+
title?: string | undefined;
|
|
1280
1280
|
fileUrl?: string | undefined;
|
|
1281
1281
|
fileId?: string | undefined;
|
|
1282
1282
|
iconLink?: string | undefined;
|
|
@@ -1324,13 +1324,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1324
1324
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1325
1325
|
}, "strip", z.ZodTypeAny, {
|
|
1326
1326
|
email: string;
|
|
1327
|
-
displayName?: string | undefined;
|
|
1328
1327
|
optional?: boolean | undefined;
|
|
1328
|
+
displayName?: string | undefined;
|
|
1329
1329
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1330
1330
|
}, {
|
|
1331
1331
|
email: string;
|
|
1332
|
-
displayName?: string | undefined;
|
|
1333
1332
|
optional?: boolean | undefined;
|
|
1333
|
+
displayName?: string | undefined;
|
|
1334
1334
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1335
1335
|
}>, "many">>;
|
|
1336
1336
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1352,14 +1352,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1352
1352
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1353
1353
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1354
1354
|
}, "strip", z.ZodTypeAny, {
|
|
1355
|
-
title?: string | undefined;
|
|
1356
1355
|
mimeType?: string | undefined;
|
|
1356
|
+
title?: string | undefined;
|
|
1357
1357
|
fileUrl?: string | undefined;
|
|
1358
1358
|
fileId?: string | undefined;
|
|
1359
1359
|
iconLink?: string | undefined;
|
|
1360
1360
|
}, {
|
|
1361
|
-
title?: string | undefined;
|
|
1362
1361
|
mimeType?: string | undefined;
|
|
1362
|
+
title?: string | undefined;
|
|
1363
1363
|
fileUrl?: string | undefined;
|
|
1364
1364
|
fileId?: string | undefined;
|
|
1365
1365
|
iconLink?: string | undefined;
|
|
@@ -1407,13 +1407,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1407
1407
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1408
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1409
1409
|
email: string;
|
|
1410
|
-
displayName?: string | undefined;
|
|
1411
1410
|
optional?: boolean | undefined;
|
|
1411
|
+
displayName?: string | undefined;
|
|
1412
1412
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1413
1413
|
}, {
|
|
1414
1414
|
email: string;
|
|
1415
|
-
displayName?: string | undefined;
|
|
1416
1415
|
optional?: boolean | undefined;
|
|
1416
|
+
displayName?: string | undefined;
|
|
1417
1417
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1418
1418
|
}>, "many">>;
|
|
1419
1419
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1435,14 +1435,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1435
1435
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1436
1436
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1437
1437
|
}, "strip", z.ZodTypeAny, {
|
|
1438
|
-
title?: string | undefined;
|
|
1439
1438
|
mimeType?: string | undefined;
|
|
1439
|
+
title?: string | undefined;
|
|
1440
1440
|
fileUrl?: string | undefined;
|
|
1441
1441
|
fileId?: string | undefined;
|
|
1442
1442
|
iconLink?: string | undefined;
|
|
1443
1443
|
}, {
|
|
1444
|
-
title?: string | undefined;
|
|
1445
1444
|
mimeType?: string | undefined;
|
|
1445
|
+
title?: string | undefined;
|
|
1446
1446
|
fileUrl?: string | undefined;
|
|
1447
1447
|
fileId?: string | undefined;
|
|
1448
1448
|
iconLink?: string | undefined;
|
|
@@ -1451,8 +1451,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1451
1451
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1452
1452
|
error: z.ZodString;
|
|
1453
1453
|
}, "strip", z.ZodTypeAny, {
|
|
1454
|
-
success: boolean;
|
|
1455
1454
|
error: string;
|
|
1455
|
+
success: boolean;
|
|
1456
1456
|
operation: "create_event";
|
|
1457
1457
|
event?: z.objectOutputType<{
|
|
1458
1458
|
id: z.ZodString;
|
|
@@ -1496,13 +1496,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1496
1496
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1497
1497
|
}, "strip", z.ZodTypeAny, {
|
|
1498
1498
|
email: string;
|
|
1499
|
-
displayName?: string | undefined;
|
|
1500
1499
|
optional?: boolean | undefined;
|
|
1500
|
+
displayName?: string | undefined;
|
|
1501
1501
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1502
1502
|
}, {
|
|
1503
1503
|
email: string;
|
|
1504
|
-
displayName?: string | undefined;
|
|
1505
1504
|
optional?: boolean | undefined;
|
|
1505
|
+
displayName?: string | undefined;
|
|
1506
1506
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1507
1507
|
}>, "many">>;
|
|
1508
1508
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1524,14 +1524,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1524
1524
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1525
1525
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1526
1526
|
}, "strip", z.ZodTypeAny, {
|
|
1527
|
-
title?: string | undefined;
|
|
1528
1527
|
mimeType?: string | undefined;
|
|
1528
|
+
title?: string | undefined;
|
|
1529
1529
|
fileUrl?: string | undefined;
|
|
1530
1530
|
fileId?: string | undefined;
|
|
1531
1531
|
iconLink?: string | undefined;
|
|
1532
1532
|
}, {
|
|
1533
|
-
title?: string | undefined;
|
|
1534
1533
|
mimeType?: string | undefined;
|
|
1534
|
+
title?: string | undefined;
|
|
1535
1535
|
fileUrl?: string | undefined;
|
|
1536
1536
|
fileId?: string | undefined;
|
|
1537
1537
|
iconLink?: string | undefined;
|
|
@@ -1539,8 +1539,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1539
1539
|
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1540
1540
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1541
1541
|
}, {
|
|
1542
|
-
success: boolean;
|
|
1543
1542
|
error: string;
|
|
1543
|
+
success: boolean;
|
|
1544
1544
|
operation: "create_event";
|
|
1545
1545
|
event?: z.objectInputType<{
|
|
1546
1546
|
id: z.ZodString;
|
|
@@ -1584,13 +1584,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1584
1584
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1585
1585
|
}, "strip", z.ZodTypeAny, {
|
|
1586
1586
|
email: string;
|
|
1587
|
-
displayName?: string | undefined;
|
|
1588
1587
|
optional?: boolean | undefined;
|
|
1588
|
+
displayName?: string | undefined;
|
|
1589
1589
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1590
1590
|
}, {
|
|
1591
1591
|
email: string;
|
|
1592
|
-
displayName?: string | undefined;
|
|
1593
1592
|
optional?: boolean | undefined;
|
|
1593
|
+
displayName?: string | undefined;
|
|
1594
1594
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1595
1595
|
}>, "many">>;
|
|
1596
1596
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1612,14 +1612,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1612
1612
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1613
1613
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1614
1614
|
}, "strip", z.ZodTypeAny, {
|
|
1615
|
-
title?: string | undefined;
|
|
1616
1615
|
mimeType?: string | undefined;
|
|
1616
|
+
title?: string | undefined;
|
|
1617
1617
|
fileUrl?: string | undefined;
|
|
1618
1618
|
fileId?: string | undefined;
|
|
1619
1619
|
iconLink?: string | undefined;
|
|
1620
1620
|
}, {
|
|
1621
|
-
title?: string | undefined;
|
|
1622
1621
|
mimeType?: string | undefined;
|
|
1622
|
+
title?: string | undefined;
|
|
1623
1623
|
fileUrl?: string | undefined;
|
|
1624
1624
|
fileId?: string | undefined;
|
|
1625
1625
|
iconLink?: string | undefined;
|
|
@@ -1671,13 +1671,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1671
1671
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1672
1672
|
}, "strip", z.ZodTypeAny, {
|
|
1673
1673
|
email: string;
|
|
1674
|
-
displayName?: string | undefined;
|
|
1675
1674
|
optional?: boolean | undefined;
|
|
1675
|
+
displayName?: string | undefined;
|
|
1676
1676
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1677
1677
|
}, {
|
|
1678
1678
|
email: string;
|
|
1679
|
-
displayName?: string | undefined;
|
|
1680
1679
|
optional?: boolean | undefined;
|
|
1680
|
+
displayName?: string | undefined;
|
|
1681
1681
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1682
1682
|
}>, "many">>;
|
|
1683
1683
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1699,14 +1699,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1699
1699
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1700
1700
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1701
1701
|
}, "strip", z.ZodTypeAny, {
|
|
1702
|
-
title?: string | undefined;
|
|
1703
1702
|
mimeType?: string | undefined;
|
|
1703
|
+
title?: string | undefined;
|
|
1704
1704
|
fileUrl?: string | undefined;
|
|
1705
1705
|
fileId?: string | undefined;
|
|
1706
1706
|
iconLink?: string | undefined;
|
|
1707
1707
|
}, {
|
|
1708
|
-
title?: string | undefined;
|
|
1709
1708
|
mimeType?: string | undefined;
|
|
1709
|
+
title?: string | undefined;
|
|
1710
1710
|
fileUrl?: string | undefined;
|
|
1711
1711
|
fileId?: string | undefined;
|
|
1712
1712
|
iconLink?: string | undefined;
|
|
@@ -1754,13 +1754,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1754
1754
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1755
1755
|
}, "strip", z.ZodTypeAny, {
|
|
1756
1756
|
email: string;
|
|
1757
|
-
displayName?: string | undefined;
|
|
1758
1757
|
optional?: boolean | undefined;
|
|
1758
|
+
displayName?: string | undefined;
|
|
1759
1759
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1760
1760
|
}, {
|
|
1761
1761
|
email: string;
|
|
1762
|
-
displayName?: string | undefined;
|
|
1763
1762
|
optional?: boolean | undefined;
|
|
1763
|
+
displayName?: string | undefined;
|
|
1764
1764
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1765
1765
|
}>, "many">>;
|
|
1766
1766
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1782,14 +1782,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1782
1782
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1783
1783
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1784
1784
|
}, "strip", z.ZodTypeAny, {
|
|
1785
|
-
title?: string | undefined;
|
|
1786
1785
|
mimeType?: string | undefined;
|
|
1786
|
+
title?: string | undefined;
|
|
1787
1787
|
fileUrl?: string | undefined;
|
|
1788
1788
|
fileId?: string | undefined;
|
|
1789
1789
|
iconLink?: string | undefined;
|
|
1790
1790
|
}, {
|
|
1791
|
-
title?: string | undefined;
|
|
1792
1791
|
mimeType?: string | undefined;
|
|
1792
|
+
title?: string | undefined;
|
|
1793
1793
|
fileUrl?: string | undefined;
|
|
1794
1794
|
fileId?: string | undefined;
|
|
1795
1795
|
iconLink?: string | undefined;
|
|
@@ -1837,13 +1837,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1837
1837
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1838
1838
|
}, "strip", z.ZodTypeAny, {
|
|
1839
1839
|
email: string;
|
|
1840
|
-
displayName?: string | undefined;
|
|
1841
1840
|
optional?: boolean | undefined;
|
|
1841
|
+
displayName?: string | undefined;
|
|
1842
1842
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1843
1843
|
}, {
|
|
1844
1844
|
email: string;
|
|
1845
|
-
displayName?: string | undefined;
|
|
1846
1845
|
optional?: boolean | undefined;
|
|
1846
|
+
displayName?: string | undefined;
|
|
1847
1847
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1848
1848
|
}>, "many">>;
|
|
1849
1849
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1865,14 +1865,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1865
1865
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1866
1866
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1867
1867
|
}, "strip", z.ZodTypeAny, {
|
|
1868
|
-
title?: string | undefined;
|
|
1869
1868
|
mimeType?: string | undefined;
|
|
1869
|
+
title?: string | undefined;
|
|
1870
1870
|
fileUrl?: string | undefined;
|
|
1871
1871
|
fileId?: string | undefined;
|
|
1872
1872
|
iconLink?: string | undefined;
|
|
1873
1873
|
}, {
|
|
1874
|
-
title?: string | undefined;
|
|
1875
1874
|
mimeType?: string | undefined;
|
|
1875
|
+
title?: string | undefined;
|
|
1876
1876
|
fileUrl?: string | undefined;
|
|
1877
1877
|
fileId?: string | undefined;
|
|
1878
1878
|
iconLink?: string | undefined;
|
|
@@ -1881,8 +1881,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1881
1881
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1882
1882
|
error: z.ZodString;
|
|
1883
1883
|
}, "strip", z.ZodTypeAny, {
|
|
1884
|
-
success: boolean;
|
|
1885
1884
|
error: string;
|
|
1885
|
+
success: boolean;
|
|
1886
1886
|
operation: "update_event";
|
|
1887
1887
|
event?: z.objectOutputType<{
|
|
1888
1888
|
id: z.ZodString;
|
|
@@ -1926,13 +1926,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1926
1926
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1927
1927
|
}, "strip", z.ZodTypeAny, {
|
|
1928
1928
|
email: string;
|
|
1929
|
-
displayName?: string | undefined;
|
|
1930
1929
|
optional?: boolean | undefined;
|
|
1930
|
+
displayName?: string | undefined;
|
|
1931
1931
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1932
1932
|
}, {
|
|
1933
1933
|
email: string;
|
|
1934
|
-
displayName?: string | undefined;
|
|
1935
1934
|
optional?: boolean | undefined;
|
|
1935
|
+
displayName?: string | undefined;
|
|
1936
1936
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1937
1937
|
}>, "many">>;
|
|
1938
1938
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1954,14 +1954,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1954
1954
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1955
1955
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
1956
1956
|
}, "strip", z.ZodTypeAny, {
|
|
1957
|
-
title?: string | undefined;
|
|
1958
1957
|
mimeType?: string | undefined;
|
|
1958
|
+
title?: string | undefined;
|
|
1959
1959
|
fileUrl?: string | undefined;
|
|
1960
1960
|
fileId?: string | undefined;
|
|
1961
1961
|
iconLink?: string | undefined;
|
|
1962
1962
|
}, {
|
|
1963
|
-
title?: string | undefined;
|
|
1964
1963
|
mimeType?: string | undefined;
|
|
1964
|
+
title?: string | undefined;
|
|
1965
1965
|
fileUrl?: string | undefined;
|
|
1966
1966
|
fileId?: string | undefined;
|
|
1967
1967
|
iconLink?: string | undefined;
|
|
@@ -1969,8 +1969,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1969
1969
|
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1970
1970
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1971
1971
|
}, {
|
|
1972
|
-
success: boolean;
|
|
1973
1972
|
error: string;
|
|
1973
|
+
success: boolean;
|
|
1974
1974
|
operation: "update_event";
|
|
1975
1975
|
event?: z.objectInputType<{
|
|
1976
1976
|
id: z.ZodString;
|
|
@@ -2014,13 +2014,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
2014
2014
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2015
2015
|
}, "strip", z.ZodTypeAny, {
|
|
2016
2016
|
email: string;
|
|
2017
|
-
displayName?: string | undefined;
|
|
2018
2017
|
optional?: boolean | undefined;
|
|
2018
|
+
displayName?: string | undefined;
|
|
2019
2019
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2020
2020
|
}, {
|
|
2021
2021
|
email: string;
|
|
2022
|
-
displayName?: string | undefined;
|
|
2023
2022
|
optional?: boolean | undefined;
|
|
2023
|
+
displayName?: string | undefined;
|
|
2024
2024
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2025
2025
|
}>, "many">>;
|
|
2026
2026
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2042,14 +2042,14 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
2042
2042
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
2043
2043
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
2044
2044
|
}, "strip", z.ZodTypeAny, {
|
|
2045
|
-
title?: string | undefined;
|
|
2046
2045
|
mimeType?: string | undefined;
|
|
2046
|
+
title?: string | undefined;
|
|
2047
2047
|
fileUrl?: string | undefined;
|
|
2048
2048
|
fileId?: string | undefined;
|
|
2049
2049
|
iconLink?: string | undefined;
|
|
2050
2050
|
}, {
|
|
2051
|
-
title?: string | undefined;
|
|
2052
2051
|
mimeType?: string | undefined;
|
|
2052
|
+
title?: string | undefined;
|
|
2053
2053
|
fileUrl?: string | undefined;
|
|
2054
2054
|
fileId?: string | undefined;
|
|
2055
2055
|
iconLink?: string | undefined;
|
|
@@ -2062,13 +2062,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
2062
2062
|
deleted: z.ZodOptional<z.ZodBoolean>;
|
|
2063
2063
|
error: z.ZodString;
|
|
2064
2064
|
}, "strip", z.ZodTypeAny, {
|
|
2065
|
-
success: boolean;
|
|
2066
2065
|
error: string;
|
|
2066
|
+
success: boolean;
|
|
2067
2067
|
operation: "delete_event";
|
|
2068
2068
|
deleted?: boolean | undefined;
|
|
2069
2069
|
}, {
|
|
2070
|
-
success: boolean;
|
|
2071
2070
|
error: string;
|
|
2071
|
+
success: boolean;
|
|
2072
2072
|
operation: "delete_event";
|
|
2073
2073
|
deleted?: boolean | undefined;
|
|
2074
2074
|
}>]>;
|
|
@@ -2118,20 +2118,20 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2118
2118
|
calendar_id: string;
|
|
2119
2119
|
single_events: boolean;
|
|
2120
2120
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2121
|
+
q?: string | undefined;
|
|
2121
2122
|
page_token?: string | undefined;
|
|
2122
2123
|
time_min?: string | undefined;
|
|
2123
2124
|
time_max?: string | undefined;
|
|
2124
|
-
q?: string | undefined;
|
|
2125
2125
|
}, {
|
|
2126
2126
|
operation: "list_events";
|
|
2127
2127
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2128
2128
|
max_results?: number | undefined;
|
|
2129
2129
|
order_by?: "updated" | "startTime" | undefined;
|
|
2130
|
+
q?: string | undefined;
|
|
2130
2131
|
page_token?: string | undefined;
|
|
2131
2132
|
calendar_id?: string | undefined;
|
|
2132
2133
|
time_min?: string | undefined;
|
|
2133
2134
|
time_max?: string | undefined;
|
|
2134
|
-
q?: string | undefined;
|
|
2135
2135
|
single_events?: boolean | undefined;
|
|
2136
2136
|
}>, z.ZodObject<{
|
|
2137
2137
|
operation: z.ZodLiteral<"get_event">;
|
|
@@ -2187,49 +2187,49 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2187
2187
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2188
2188
|
}, "strip", z.ZodTypeAny, {
|
|
2189
2189
|
email: string;
|
|
2190
|
-
displayName?: string | undefined;
|
|
2191
2190
|
optional?: boolean | undefined;
|
|
2191
|
+
displayName?: string | undefined;
|
|
2192
2192
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2193
2193
|
}, {
|
|
2194
2194
|
email: string;
|
|
2195
|
-
displayName?: string | undefined;
|
|
2196
2195
|
optional?: boolean | undefined;
|
|
2196
|
+
displayName?: string | undefined;
|
|
2197
2197
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2198
2198
|
}>, "many">>;
|
|
2199
2199
|
conference: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2200
2200
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
2201
2201
|
}, "strip", z.ZodTypeAny, {
|
|
2202
|
-
operation: "create_event";
|
|
2203
|
-
calendar_id: string;
|
|
2204
2202
|
summary: string;
|
|
2205
2203
|
start: {
|
|
2206
2204
|
date?: string | undefined;
|
|
2207
2205
|
timeZone?: string | undefined;
|
|
2208
2206
|
dateTime?: string | undefined;
|
|
2209
2207
|
};
|
|
2208
|
+
operation: "create_event";
|
|
2210
2209
|
end: {
|
|
2211
2210
|
date?: string | undefined;
|
|
2212
2211
|
timeZone?: string | undefined;
|
|
2213
2212
|
dateTime?: string | undefined;
|
|
2214
2213
|
};
|
|
2214
|
+
calendar_id: string;
|
|
2215
2215
|
conference: boolean;
|
|
2216
2216
|
description?: string | undefined;
|
|
2217
2217
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2218
2218
|
location?: string | undefined;
|
|
2219
2219
|
attendees?: {
|
|
2220
2220
|
email: string;
|
|
2221
|
-
displayName?: string | undefined;
|
|
2222
2221
|
optional?: boolean | undefined;
|
|
2222
|
+
displayName?: string | undefined;
|
|
2223
2223
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2224
2224
|
}[] | undefined;
|
|
2225
2225
|
}, {
|
|
2226
|
-
operation: "create_event";
|
|
2227
2226
|
summary: string;
|
|
2228
2227
|
start: {
|
|
2229
2228
|
date?: string | undefined;
|
|
2230
2229
|
timeZone?: string | undefined;
|
|
2231
2230
|
dateTime?: string | undefined;
|
|
2232
2231
|
};
|
|
2232
|
+
operation: "create_event";
|
|
2233
2233
|
end: {
|
|
2234
2234
|
date?: string | undefined;
|
|
2235
2235
|
timeZone?: string | undefined;
|
|
@@ -2237,14 +2237,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2237
2237
|
};
|
|
2238
2238
|
description?: string | undefined;
|
|
2239
2239
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2240
|
-
calendar_id?: string | undefined;
|
|
2241
2240
|
location?: string | undefined;
|
|
2242
2241
|
attendees?: {
|
|
2243
2242
|
email: string;
|
|
2244
|
-
displayName?: string | undefined;
|
|
2245
2243
|
optional?: boolean | undefined;
|
|
2244
|
+
displayName?: string | undefined;
|
|
2246
2245
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2247
2246
|
}[] | undefined;
|
|
2247
|
+
calendar_id?: string | undefined;
|
|
2248
2248
|
conference?: boolean | undefined;
|
|
2249
2249
|
}>, z.ZodObject<{
|
|
2250
2250
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -2286,13 +2286,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2286
2286
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2287
2287
|
}, "strip", z.ZodTypeAny, {
|
|
2288
2288
|
email: string;
|
|
2289
|
-
displayName?: string | undefined;
|
|
2290
2289
|
optional?: boolean | undefined;
|
|
2290
|
+
displayName?: string | undefined;
|
|
2291
2291
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2292
2292
|
}, {
|
|
2293
2293
|
email: string;
|
|
2294
|
-
displayName?: string | undefined;
|
|
2295
2294
|
optional?: boolean | undefined;
|
|
2295
|
+
displayName?: string | undefined;
|
|
2296
2296
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2297
2297
|
}>, "many">>;
|
|
2298
2298
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -2303,12 +2303,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2303
2303
|
description?: string | undefined;
|
|
2304
2304
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2305
2305
|
summary?: string | undefined;
|
|
2306
|
-
location?: string | undefined;
|
|
2307
2306
|
start?: {
|
|
2308
2307
|
date?: string | undefined;
|
|
2309
2308
|
timeZone?: string | undefined;
|
|
2310
2309
|
dateTime?: string | undefined;
|
|
2311
2310
|
} | undefined;
|
|
2311
|
+
location?: string | undefined;
|
|
2312
2312
|
end?: {
|
|
2313
2313
|
date?: string | undefined;
|
|
2314
2314
|
timeZone?: string | undefined;
|
|
@@ -2316,8 +2316,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2316
2316
|
} | undefined;
|
|
2317
2317
|
attendees?: {
|
|
2318
2318
|
email: string;
|
|
2319
|
-
displayName?: string | undefined;
|
|
2320
2319
|
optional?: boolean | undefined;
|
|
2320
|
+
displayName?: string | undefined;
|
|
2321
2321
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2322
2322
|
}[] | undefined;
|
|
2323
2323
|
}, {
|
|
@@ -2325,14 +2325,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2325
2325
|
event_id: string;
|
|
2326
2326
|
description?: string | undefined;
|
|
2327
2327
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2328
|
-
calendar_id?: string | undefined;
|
|
2329
2328
|
summary?: string | undefined;
|
|
2330
|
-
location?: string | undefined;
|
|
2331
2329
|
start?: {
|
|
2332
2330
|
date?: string | undefined;
|
|
2333
2331
|
timeZone?: string | undefined;
|
|
2334
2332
|
dateTime?: string | undefined;
|
|
2335
2333
|
} | undefined;
|
|
2334
|
+
location?: string | undefined;
|
|
2336
2335
|
end?: {
|
|
2337
2336
|
date?: string | undefined;
|
|
2338
2337
|
timeZone?: string | undefined;
|
|
@@ -2340,10 +2339,11 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2340
2339
|
} | undefined;
|
|
2341
2340
|
attendees?: {
|
|
2342
2341
|
email: string;
|
|
2343
|
-
displayName?: string | undefined;
|
|
2344
2342
|
optional?: boolean | undefined;
|
|
2343
|
+
displayName?: string | undefined;
|
|
2345
2344
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2346
2345
|
}[] | undefined;
|
|
2346
|
+
calendar_id?: string | undefined;
|
|
2347
2347
|
}>, z.ZodObject<{
|
|
2348
2348
|
operation: z.ZodLiteral<"delete_event">;
|
|
2349
2349
|
calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -2391,8 +2391,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2391
2391
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
2392
2392
|
error: z.ZodString;
|
|
2393
2393
|
}, "strip", z.ZodTypeAny, {
|
|
2394
|
-
success: boolean;
|
|
2395
2394
|
error: string;
|
|
2395
|
+
success: boolean;
|
|
2396
2396
|
operation: "list_calendars";
|
|
2397
2397
|
next_page_token?: string | undefined;
|
|
2398
2398
|
calendars?: z.objectOutputType<{
|
|
@@ -2404,8 +2404,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2404
2404
|
accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
|
|
2405
2405
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2406
2406
|
}, {
|
|
2407
|
-
success: boolean;
|
|
2408
2407
|
error: string;
|
|
2408
|
+
success: boolean;
|
|
2409
2409
|
operation: "list_calendars";
|
|
2410
2410
|
next_page_token?: string | undefined;
|
|
2411
2411
|
calendars?: z.objectInputType<{
|
|
@@ -2461,13 +2461,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2461
2461
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2462
2462
|
}, "strip", z.ZodTypeAny, {
|
|
2463
2463
|
email: string;
|
|
2464
|
-
displayName?: string | undefined;
|
|
2465
2464
|
optional?: boolean | undefined;
|
|
2465
|
+
displayName?: string | undefined;
|
|
2466
2466
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2467
2467
|
}, {
|
|
2468
2468
|
email: string;
|
|
2469
|
-
displayName?: string | undefined;
|
|
2470
2469
|
optional?: boolean | undefined;
|
|
2470
|
+
displayName?: string | undefined;
|
|
2471
2471
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2472
2472
|
}>, "many">>;
|
|
2473
2473
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2489,14 +2489,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2489
2489
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
2490
2490
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
2491
2491
|
}, "strip", z.ZodTypeAny, {
|
|
2492
|
-
title?: string | undefined;
|
|
2493
2492
|
mimeType?: string | undefined;
|
|
2493
|
+
title?: string | undefined;
|
|
2494
2494
|
fileUrl?: string | undefined;
|
|
2495
2495
|
fileId?: string | undefined;
|
|
2496
2496
|
iconLink?: string | undefined;
|
|
2497
2497
|
}, {
|
|
2498
|
-
title?: string | undefined;
|
|
2499
2498
|
mimeType?: string | undefined;
|
|
2499
|
+
title?: string | undefined;
|
|
2500
2500
|
fileUrl?: string | undefined;
|
|
2501
2501
|
fileId?: string | undefined;
|
|
2502
2502
|
iconLink?: string | undefined;
|
|
@@ -2544,13 +2544,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2544
2544
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2545
2545
|
}, "strip", z.ZodTypeAny, {
|
|
2546
2546
|
email: string;
|
|
2547
|
-
displayName?: string | undefined;
|
|
2548
2547
|
optional?: boolean | undefined;
|
|
2548
|
+
displayName?: string | undefined;
|
|
2549
2549
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2550
2550
|
}, {
|
|
2551
2551
|
email: string;
|
|
2552
|
-
displayName?: string | undefined;
|
|
2553
2552
|
optional?: boolean | undefined;
|
|
2553
|
+
displayName?: string | undefined;
|
|
2554
2554
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2555
2555
|
}>, "many">>;
|
|
2556
2556
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2572,14 +2572,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2572
2572
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
2573
2573
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
2574
2574
|
}, "strip", z.ZodTypeAny, {
|
|
2575
|
-
title?: string | undefined;
|
|
2576
2575
|
mimeType?: string | undefined;
|
|
2576
|
+
title?: string | undefined;
|
|
2577
2577
|
fileUrl?: string | undefined;
|
|
2578
2578
|
fileId?: string | undefined;
|
|
2579
2579
|
iconLink?: string | undefined;
|
|
2580
2580
|
}, {
|
|
2581
|
-
title?: string | undefined;
|
|
2582
2581
|
mimeType?: string | undefined;
|
|
2582
|
+
title?: string | undefined;
|
|
2583
2583
|
fileUrl?: string | undefined;
|
|
2584
2584
|
fileId?: string | undefined;
|
|
2585
2585
|
iconLink?: string | undefined;
|
|
@@ -2627,13 +2627,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2627
2627
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2628
2628
|
}, "strip", z.ZodTypeAny, {
|
|
2629
2629
|
email: string;
|
|
2630
|
-
displayName?: string | undefined;
|
|
2631
2630
|
optional?: boolean | undefined;
|
|
2631
|
+
displayName?: string | undefined;
|
|
2632
2632
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2633
2633
|
}, {
|
|
2634
2634
|
email: string;
|
|
2635
|
-
displayName?: string | undefined;
|
|
2636
2635
|
optional?: boolean | undefined;
|
|
2636
|
+
displayName?: string | undefined;
|
|
2637
2637
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2638
2638
|
}>, "many">>;
|
|
2639
2639
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2655,14 +2655,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2655
2655
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
2656
2656
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
2657
2657
|
}, "strip", z.ZodTypeAny, {
|
|
2658
|
-
title?: string | undefined;
|
|
2659
2658
|
mimeType?: string | undefined;
|
|
2659
|
+
title?: string | undefined;
|
|
2660
2660
|
fileUrl?: string | undefined;
|
|
2661
2661
|
fileId?: string | undefined;
|
|
2662
2662
|
iconLink?: string | undefined;
|
|
2663
2663
|
}, {
|
|
2664
|
-
title?: string | undefined;
|
|
2665
2664
|
mimeType?: string | undefined;
|
|
2665
|
+
title?: string | undefined;
|
|
2666
2666
|
fileUrl?: string | undefined;
|
|
2667
2667
|
fileId?: string | undefined;
|
|
2668
2668
|
iconLink?: string | undefined;
|
|
@@ -2672,8 +2672,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2672
2672
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
2673
2673
|
error: z.ZodString;
|
|
2674
2674
|
}, "strip", z.ZodTypeAny, {
|
|
2675
|
-
success: boolean;
|
|
2676
2675
|
error: string;
|
|
2676
|
+
success: boolean;
|
|
2677
2677
|
operation: "list_events";
|
|
2678
2678
|
next_page_token?: string | undefined;
|
|
2679
2679
|
events?: z.objectOutputType<{
|
|
@@ -2718,13 +2718,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2718
2718
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2719
2719
|
}, "strip", z.ZodTypeAny, {
|
|
2720
2720
|
email: string;
|
|
2721
|
-
displayName?: string | undefined;
|
|
2722
2721
|
optional?: boolean | undefined;
|
|
2722
|
+
displayName?: string | undefined;
|
|
2723
2723
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2724
2724
|
}, {
|
|
2725
2725
|
email: string;
|
|
2726
|
-
displayName?: string | undefined;
|
|
2727
2726
|
optional?: boolean | undefined;
|
|
2727
|
+
displayName?: string | undefined;
|
|
2728
2728
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2729
2729
|
}>, "many">>;
|
|
2730
2730
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2746,14 +2746,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2746
2746
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
2747
2747
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
2748
2748
|
}, "strip", z.ZodTypeAny, {
|
|
2749
|
-
title?: string | undefined;
|
|
2750
2749
|
mimeType?: string | undefined;
|
|
2750
|
+
title?: string | undefined;
|
|
2751
2751
|
fileUrl?: string | undefined;
|
|
2752
2752
|
fileId?: string | undefined;
|
|
2753
2753
|
iconLink?: string | undefined;
|
|
2754
2754
|
}, {
|
|
2755
|
-
title?: string | undefined;
|
|
2756
2755
|
mimeType?: string | undefined;
|
|
2756
|
+
title?: string | undefined;
|
|
2757
2757
|
fileUrl?: string | undefined;
|
|
2758
2758
|
fileId?: string | undefined;
|
|
2759
2759
|
iconLink?: string | undefined;
|
|
@@ -2761,8 +2761,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2761
2761
|
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2762
2762
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2763
2763
|
}, {
|
|
2764
|
-
success: boolean;
|
|
2765
2764
|
error: string;
|
|
2765
|
+
success: boolean;
|
|
2766
2766
|
operation: "list_events";
|
|
2767
2767
|
next_page_token?: string | undefined;
|
|
2768
2768
|
events?: z.objectInputType<{
|
|
@@ -2807,13 +2807,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2807
2807
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2808
2808
|
}, "strip", z.ZodTypeAny, {
|
|
2809
2809
|
email: string;
|
|
2810
|
-
displayName?: string | undefined;
|
|
2811
2810
|
optional?: boolean | undefined;
|
|
2811
|
+
displayName?: string | undefined;
|
|
2812
2812
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2813
2813
|
}, {
|
|
2814
2814
|
email: string;
|
|
2815
|
-
displayName?: string | undefined;
|
|
2816
2815
|
optional?: boolean | undefined;
|
|
2816
|
+
displayName?: string | undefined;
|
|
2817
2817
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2818
2818
|
}>, "many">>;
|
|
2819
2819
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2835,14 +2835,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2835
2835
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
2836
2836
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
2837
2837
|
}, "strip", z.ZodTypeAny, {
|
|
2838
|
-
title?: string | undefined;
|
|
2839
2838
|
mimeType?: string | undefined;
|
|
2839
|
+
title?: string | undefined;
|
|
2840
2840
|
fileUrl?: string | undefined;
|
|
2841
2841
|
fileId?: string | undefined;
|
|
2842
2842
|
iconLink?: string | undefined;
|
|
2843
2843
|
}, {
|
|
2844
|
-
title?: string | undefined;
|
|
2845
2844
|
mimeType?: string | undefined;
|
|
2845
|
+
title?: string | undefined;
|
|
2846
2846
|
fileUrl?: string | undefined;
|
|
2847
2847
|
fileId?: string | undefined;
|
|
2848
2848
|
iconLink?: string | undefined;
|
|
@@ -2894,13 +2894,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2894
2894
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2895
2895
|
}, "strip", z.ZodTypeAny, {
|
|
2896
2896
|
email: string;
|
|
2897
|
-
displayName?: string | undefined;
|
|
2898
2897
|
optional?: boolean | undefined;
|
|
2898
|
+
displayName?: string | undefined;
|
|
2899
2899
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2900
2900
|
}, {
|
|
2901
2901
|
email: string;
|
|
2902
|
-
displayName?: string | undefined;
|
|
2903
2902
|
optional?: boolean | undefined;
|
|
2903
|
+
displayName?: string | undefined;
|
|
2904
2904
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2905
2905
|
}>, "many">>;
|
|
2906
2906
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -2922,14 +2922,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2922
2922
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
2923
2923
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
2924
2924
|
}, "strip", z.ZodTypeAny, {
|
|
2925
|
-
title?: string | undefined;
|
|
2926
2925
|
mimeType?: string | undefined;
|
|
2926
|
+
title?: string | undefined;
|
|
2927
2927
|
fileUrl?: string | undefined;
|
|
2928
2928
|
fileId?: string | undefined;
|
|
2929
2929
|
iconLink?: string | undefined;
|
|
2930
2930
|
}, {
|
|
2931
|
-
title?: string | undefined;
|
|
2932
2931
|
mimeType?: string | undefined;
|
|
2932
|
+
title?: string | undefined;
|
|
2933
2933
|
fileUrl?: string | undefined;
|
|
2934
2934
|
fileId?: string | undefined;
|
|
2935
2935
|
iconLink?: string | undefined;
|
|
@@ -2977,13 +2977,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2977
2977
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2978
2978
|
}, "strip", z.ZodTypeAny, {
|
|
2979
2979
|
email: string;
|
|
2980
|
-
displayName?: string | undefined;
|
|
2981
2980
|
optional?: boolean | undefined;
|
|
2981
|
+
displayName?: string | undefined;
|
|
2982
2982
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2983
2983
|
}, {
|
|
2984
2984
|
email: string;
|
|
2985
|
-
displayName?: string | undefined;
|
|
2986
2985
|
optional?: boolean | undefined;
|
|
2986
|
+
displayName?: string | undefined;
|
|
2987
2987
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2988
2988
|
}>, "many">>;
|
|
2989
2989
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3005,14 +3005,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3005
3005
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3006
3006
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3007
3007
|
}, "strip", z.ZodTypeAny, {
|
|
3008
|
-
title?: string | undefined;
|
|
3009
3008
|
mimeType?: string | undefined;
|
|
3009
|
+
title?: string | undefined;
|
|
3010
3010
|
fileUrl?: string | undefined;
|
|
3011
3011
|
fileId?: string | undefined;
|
|
3012
3012
|
iconLink?: string | undefined;
|
|
3013
3013
|
}, {
|
|
3014
|
-
title?: string | undefined;
|
|
3015
3014
|
mimeType?: string | undefined;
|
|
3015
|
+
title?: string | undefined;
|
|
3016
3016
|
fileUrl?: string | undefined;
|
|
3017
3017
|
fileId?: string | undefined;
|
|
3018
3018
|
iconLink?: string | undefined;
|
|
@@ -3060,13 +3060,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3060
3060
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3061
3061
|
}, "strip", z.ZodTypeAny, {
|
|
3062
3062
|
email: string;
|
|
3063
|
-
displayName?: string | undefined;
|
|
3064
3063
|
optional?: boolean | undefined;
|
|
3064
|
+
displayName?: string | undefined;
|
|
3065
3065
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3066
3066
|
}, {
|
|
3067
3067
|
email: string;
|
|
3068
|
-
displayName?: string | undefined;
|
|
3069
3068
|
optional?: boolean | undefined;
|
|
3069
|
+
displayName?: string | undefined;
|
|
3070
3070
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3071
3071
|
}>, "many">>;
|
|
3072
3072
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3088,14 +3088,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3088
3088
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3089
3089
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3090
3090
|
}, "strip", z.ZodTypeAny, {
|
|
3091
|
-
title?: string | undefined;
|
|
3092
3091
|
mimeType?: string | undefined;
|
|
3092
|
+
title?: string | undefined;
|
|
3093
3093
|
fileUrl?: string | undefined;
|
|
3094
3094
|
fileId?: string | undefined;
|
|
3095
3095
|
iconLink?: string | undefined;
|
|
3096
3096
|
}, {
|
|
3097
|
-
title?: string | undefined;
|
|
3098
3097
|
mimeType?: string | undefined;
|
|
3098
|
+
title?: string | undefined;
|
|
3099
3099
|
fileUrl?: string | undefined;
|
|
3100
3100
|
fileId?: string | undefined;
|
|
3101
3101
|
iconLink?: string | undefined;
|
|
@@ -3104,8 +3104,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3104
3104
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3105
3105
|
error: z.ZodString;
|
|
3106
3106
|
}, "strip", z.ZodTypeAny, {
|
|
3107
|
-
success: boolean;
|
|
3108
3107
|
error: string;
|
|
3108
|
+
success: boolean;
|
|
3109
3109
|
operation: "get_event";
|
|
3110
3110
|
event?: z.objectOutputType<{
|
|
3111
3111
|
id: z.ZodString;
|
|
@@ -3149,13 +3149,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3149
3149
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3150
3150
|
}, "strip", z.ZodTypeAny, {
|
|
3151
3151
|
email: string;
|
|
3152
|
-
displayName?: string | undefined;
|
|
3153
3152
|
optional?: boolean | undefined;
|
|
3153
|
+
displayName?: string | undefined;
|
|
3154
3154
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3155
3155
|
}, {
|
|
3156
3156
|
email: string;
|
|
3157
|
-
displayName?: string | undefined;
|
|
3158
3157
|
optional?: boolean | undefined;
|
|
3158
|
+
displayName?: string | undefined;
|
|
3159
3159
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3160
3160
|
}>, "many">>;
|
|
3161
3161
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3177,14 +3177,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3177
3177
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3178
3178
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3179
3179
|
}, "strip", z.ZodTypeAny, {
|
|
3180
|
-
title?: string | undefined;
|
|
3181
3180
|
mimeType?: string | undefined;
|
|
3181
|
+
title?: string | undefined;
|
|
3182
3182
|
fileUrl?: string | undefined;
|
|
3183
3183
|
fileId?: string | undefined;
|
|
3184
3184
|
iconLink?: string | undefined;
|
|
3185
3185
|
}, {
|
|
3186
|
-
title?: string | undefined;
|
|
3187
3186
|
mimeType?: string | undefined;
|
|
3187
|
+
title?: string | undefined;
|
|
3188
3188
|
fileUrl?: string | undefined;
|
|
3189
3189
|
fileId?: string | undefined;
|
|
3190
3190
|
iconLink?: string | undefined;
|
|
@@ -3192,8 +3192,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3192
3192
|
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3193
3193
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3194
3194
|
}, {
|
|
3195
|
-
success: boolean;
|
|
3196
3195
|
error: string;
|
|
3196
|
+
success: boolean;
|
|
3197
3197
|
operation: "get_event";
|
|
3198
3198
|
event?: z.objectInputType<{
|
|
3199
3199
|
id: z.ZodString;
|
|
@@ -3237,13 +3237,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3237
3237
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3238
3238
|
}, "strip", z.ZodTypeAny, {
|
|
3239
3239
|
email: string;
|
|
3240
|
-
displayName?: string | undefined;
|
|
3241
3240
|
optional?: boolean | undefined;
|
|
3241
|
+
displayName?: string | undefined;
|
|
3242
3242
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3243
3243
|
}, {
|
|
3244
3244
|
email: string;
|
|
3245
|
-
displayName?: string | undefined;
|
|
3246
3245
|
optional?: boolean | undefined;
|
|
3246
|
+
displayName?: string | undefined;
|
|
3247
3247
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3248
3248
|
}>, "many">>;
|
|
3249
3249
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3265,14 +3265,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3265
3265
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3266
3266
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3267
3267
|
}, "strip", z.ZodTypeAny, {
|
|
3268
|
-
title?: string | undefined;
|
|
3269
3268
|
mimeType?: string | undefined;
|
|
3269
|
+
title?: string | undefined;
|
|
3270
3270
|
fileUrl?: string | undefined;
|
|
3271
3271
|
fileId?: string | undefined;
|
|
3272
3272
|
iconLink?: string | undefined;
|
|
3273
3273
|
}, {
|
|
3274
|
-
title?: string | undefined;
|
|
3275
3274
|
mimeType?: string | undefined;
|
|
3275
|
+
title?: string | undefined;
|
|
3276
3276
|
fileUrl?: string | undefined;
|
|
3277
3277
|
fileId?: string | undefined;
|
|
3278
3278
|
iconLink?: string | undefined;
|
|
@@ -3324,13 +3324,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3324
3324
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3325
3325
|
}, "strip", z.ZodTypeAny, {
|
|
3326
3326
|
email: string;
|
|
3327
|
-
displayName?: string | undefined;
|
|
3328
3327
|
optional?: boolean | undefined;
|
|
3328
|
+
displayName?: string | undefined;
|
|
3329
3329
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3330
3330
|
}, {
|
|
3331
3331
|
email: string;
|
|
3332
|
-
displayName?: string | undefined;
|
|
3333
3332
|
optional?: boolean | undefined;
|
|
3333
|
+
displayName?: string | undefined;
|
|
3334
3334
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3335
3335
|
}>, "many">>;
|
|
3336
3336
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3352,14 +3352,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3352
3352
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3353
3353
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3354
3354
|
}, "strip", z.ZodTypeAny, {
|
|
3355
|
-
title?: string | undefined;
|
|
3356
3355
|
mimeType?: string | undefined;
|
|
3356
|
+
title?: string | undefined;
|
|
3357
3357
|
fileUrl?: string | undefined;
|
|
3358
3358
|
fileId?: string | undefined;
|
|
3359
3359
|
iconLink?: string | undefined;
|
|
3360
3360
|
}, {
|
|
3361
|
-
title?: string | undefined;
|
|
3362
3361
|
mimeType?: string | undefined;
|
|
3362
|
+
title?: string | undefined;
|
|
3363
3363
|
fileUrl?: string | undefined;
|
|
3364
3364
|
fileId?: string | undefined;
|
|
3365
3365
|
iconLink?: string | undefined;
|
|
@@ -3407,13 +3407,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3407
3407
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3408
3408
|
}, "strip", z.ZodTypeAny, {
|
|
3409
3409
|
email: string;
|
|
3410
|
-
displayName?: string | undefined;
|
|
3411
3410
|
optional?: boolean | undefined;
|
|
3411
|
+
displayName?: string | undefined;
|
|
3412
3412
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3413
3413
|
}, {
|
|
3414
3414
|
email: string;
|
|
3415
|
-
displayName?: string | undefined;
|
|
3416
3415
|
optional?: boolean | undefined;
|
|
3416
|
+
displayName?: string | undefined;
|
|
3417
3417
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3418
3418
|
}>, "many">>;
|
|
3419
3419
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3435,14 +3435,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3435
3435
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3436
3436
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3437
3437
|
}, "strip", z.ZodTypeAny, {
|
|
3438
|
-
title?: string | undefined;
|
|
3439
3438
|
mimeType?: string | undefined;
|
|
3439
|
+
title?: string | undefined;
|
|
3440
3440
|
fileUrl?: string | undefined;
|
|
3441
3441
|
fileId?: string | undefined;
|
|
3442
3442
|
iconLink?: string | undefined;
|
|
3443
3443
|
}, {
|
|
3444
|
-
title?: string | undefined;
|
|
3445
3444
|
mimeType?: string | undefined;
|
|
3445
|
+
title?: string | undefined;
|
|
3446
3446
|
fileUrl?: string | undefined;
|
|
3447
3447
|
fileId?: string | undefined;
|
|
3448
3448
|
iconLink?: string | undefined;
|
|
@@ -3490,13 +3490,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3490
3490
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3491
3491
|
}, "strip", z.ZodTypeAny, {
|
|
3492
3492
|
email: string;
|
|
3493
|
-
displayName?: string | undefined;
|
|
3494
3493
|
optional?: boolean | undefined;
|
|
3494
|
+
displayName?: string | undefined;
|
|
3495
3495
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3496
3496
|
}, {
|
|
3497
3497
|
email: string;
|
|
3498
|
-
displayName?: string | undefined;
|
|
3499
3498
|
optional?: boolean | undefined;
|
|
3499
|
+
displayName?: string | undefined;
|
|
3500
3500
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3501
3501
|
}>, "many">>;
|
|
3502
3502
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3518,14 +3518,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3518
3518
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3519
3519
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3520
3520
|
}, "strip", z.ZodTypeAny, {
|
|
3521
|
-
title?: string | undefined;
|
|
3522
3521
|
mimeType?: string | undefined;
|
|
3522
|
+
title?: string | undefined;
|
|
3523
3523
|
fileUrl?: string | undefined;
|
|
3524
3524
|
fileId?: string | undefined;
|
|
3525
3525
|
iconLink?: string | undefined;
|
|
3526
3526
|
}, {
|
|
3527
|
-
title?: string | undefined;
|
|
3528
3527
|
mimeType?: string | undefined;
|
|
3528
|
+
title?: string | undefined;
|
|
3529
3529
|
fileUrl?: string | undefined;
|
|
3530
3530
|
fileId?: string | undefined;
|
|
3531
3531
|
iconLink?: string | undefined;
|
|
@@ -3534,8 +3534,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3534
3534
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3535
3535
|
error: z.ZodString;
|
|
3536
3536
|
}, "strip", z.ZodTypeAny, {
|
|
3537
|
-
success: boolean;
|
|
3538
3537
|
error: string;
|
|
3538
|
+
success: boolean;
|
|
3539
3539
|
operation: "create_event";
|
|
3540
3540
|
event?: z.objectOutputType<{
|
|
3541
3541
|
id: z.ZodString;
|
|
@@ -3579,13 +3579,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3579
3579
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3580
3580
|
}, "strip", z.ZodTypeAny, {
|
|
3581
3581
|
email: string;
|
|
3582
|
-
displayName?: string | undefined;
|
|
3583
3582
|
optional?: boolean | undefined;
|
|
3583
|
+
displayName?: string | undefined;
|
|
3584
3584
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3585
3585
|
}, {
|
|
3586
3586
|
email: string;
|
|
3587
|
-
displayName?: string | undefined;
|
|
3588
3587
|
optional?: boolean | undefined;
|
|
3588
|
+
displayName?: string | undefined;
|
|
3589
3589
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3590
3590
|
}>, "many">>;
|
|
3591
3591
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3607,14 +3607,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3607
3607
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3608
3608
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3609
3609
|
}, "strip", z.ZodTypeAny, {
|
|
3610
|
-
title?: string | undefined;
|
|
3611
3610
|
mimeType?: string | undefined;
|
|
3611
|
+
title?: string | undefined;
|
|
3612
3612
|
fileUrl?: string | undefined;
|
|
3613
3613
|
fileId?: string | undefined;
|
|
3614
3614
|
iconLink?: string | undefined;
|
|
3615
3615
|
}, {
|
|
3616
|
-
title?: string | undefined;
|
|
3617
3616
|
mimeType?: string | undefined;
|
|
3617
|
+
title?: string | undefined;
|
|
3618
3618
|
fileUrl?: string | undefined;
|
|
3619
3619
|
fileId?: string | undefined;
|
|
3620
3620
|
iconLink?: string | undefined;
|
|
@@ -3622,8 +3622,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3622
3622
|
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3623
3623
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3624
3624
|
}, {
|
|
3625
|
-
success: boolean;
|
|
3626
3625
|
error: string;
|
|
3626
|
+
success: boolean;
|
|
3627
3627
|
operation: "create_event";
|
|
3628
3628
|
event?: z.objectInputType<{
|
|
3629
3629
|
id: z.ZodString;
|
|
@@ -3667,13 +3667,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3667
3667
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3668
3668
|
}, "strip", z.ZodTypeAny, {
|
|
3669
3669
|
email: string;
|
|
3670
|
-
displayName?: string | undefined;
|
|
3671
3670
|
optional?: boolean | undefined;
|
|
3671
|
+
displayName?: string | undefined;
|
|
3672
3672
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3673
3673
|
}, {
|
|
3674
3674
|
email: string;
|
|
3675
|
-
displayName?: string | undefined;
|
|
3676
3675
|
optional?: boolean | undefined;
|
|
3676
|
+
displayName?: string | undefined;
|
|
3677
3677
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3678
3678
|
}>, "many">>;
|
|
3679
3679
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3695,14 +3695,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3695
3695
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3696
3696
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3697
3697
|
}, "strip", z.ZodTypeAny, {
|
|
3698
|
-
title?: string | undefined;
|
|
3699
3698
|
mimeType?: string | undefined;
|
|
3699
|
+
title?: string | undefined;
|
|
3700
3700
|
fileUrl?: string | undefined;
|
|
3701
3701
|
fileId?: string | undefined;
|
|
3702
3702
|
iconLink?: string | undefined;
|
|
3703
3703
|
}, {
|
|
3704
|
-
title?: string | undefined;
|
|
3705
3704
|
mimeType?: string | undefined;
|
|
3705
|
+
title?: string | undefined;
|
|
3706
3706
|
fileUrl?: string | undefined;
|
|
3707
3707
|
fileId?: string | undefined;
|
|
3708
3708
|
iconLink?: string | undefined;
|
|
@@ -3754,13 +3754,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3754
3754
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3755
3755
|
}, "strip", z.ZodTypeAny, {
|
|
3756
3756
|
email: string;
|
|
3757
|
-
displayName?: string | undefined;
|
|
3758
3757
|
optional?: boolean | undefined;
|
|
3758
|
+
displayName?: string | undefined;
|
|
3759
3759
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3760
3760
|
}, {
|
|
3761
3761
|
email: string;
|
|
3762
|
-
displayName?: string | undefined;
|
|
3763
3762
|
optional?: boolean | undefined;
|
|
3763
|
+
displayName?: string | undefined;
|
|
3764
3764
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3765
3765
|
}>, "many">>;
|
|
3766
3766
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3782,14 +3782,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3782
3782
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3783
3783
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3784
3784
|
}, "strip", z.ZodTypeAny, {
|
|
3785
|
-
title?: string | undefined;
|
|
3786
3785
|
mimeType?: string | undefined;
|
|
3786
|
+
title?: string | undefined;
|
|
3787
3787
|
fileUrl?: string | undefined;
|
|
3788
3788
|
fileId?: string | undefined;
|
|
3789
3789
|
iconLink?: string | undefined;
|
|
3790
3790
|
}, {
|
|
3791
|
-
title?: string | undefined;
|
|
3792
3791
|
mimeType?: string | undefined;
|
|
3792
|
+
title?: string | undefined;
|
|
3793
3793
|
fileUrl?: string | undefined;
|
|
3794
3794
|
fileId?: string | undefined;
|
|
3795
3795
|
iconLink?: string | undefined;
|
|
@@ -3837,13 +3837,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3837
3837
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3838
3838
|
}, "strip", z.ZodTypeAny, {
|
|
3839
3839
|
email: string;
|
|
3840
|
-
displayName?: string | undefined;
|
|
3841
3840
|
optional?: boolean | undefined;
|
|
3841
|
+
displayName?: string | undefined;
|
|
3842
3842
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3843
3843
|
}, {
|
|
3844
3844
|
email: string;
|
|
3845
|
-
displayName?: string | undefined;
|
|
3846
3845
|
optional?: boolean | undefined;
|
|
3846
|
+
displayName?: string | undefined;
|
|
3847
3847
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3848
3848
|
}>, "many">>;
|
|
3849
3849
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3865,14 +3865,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3865
3865
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3866
3866
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3867
3867
|
}, "strip", z.ZodTypeAny, {
|
|
3868
|
-
title?: string | undefined;
|
|
3869
3868
|
mimeType?: string | undefined;
|
|
3869
|
+
title?: string | undefined;
|
|
3870
3870
|
fileUrl?: string | undefined;
|
|
3871
3871
|
fileId?: string | undefined;
|
|
3872
3872
|
iconLink?: string | undefined;
|
|
3873
3873
|
}, {
|
|
3874
|
-
title?: string | undefined;
|
|
3875
3874
|
mimeType?: string | undefined;
|
|
3875
|
+
title?: string | undefined;
|
|
3876
3876
|
fileUrl?: string | undefined;
|
|
3877
3877
|
fileId?: string | undefined;
|
|
3878
3878
|
iconLink?: string | undefined;
|
|
@@ -3920,13 +3920,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3920
3920
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3921
3921
|
}, "strip", z.ZodTypeAny, {
|
|
3922
3922
|
email: string;
|
|
3923
|
-
displayName?: string | undefined;
|
|
3924
3923
|
optional?: boolean | undefined;
|
|
3924
|
+
displayName?: string | undefined;
|
|
3925
3925
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3926
3926
|
}, {
|
|
3927
3927
|
email: string;
|
|
3928
|
-
displayName?: string | undefined;
|
|
3929
3928
|
optional?: boolean | undefined;
|
|
3929
|
+
displayName?: string | undefined;
|
|
3930
3930
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3931
3931
|
}>, "many">>;
|
|
3932
3932
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3948,14 +3948,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3948
3948
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
3949
3949
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
3950
3950
|
}, "strip", z.ZodTypeAny, {
|
|
3951
|
-
title?: string | undefined;
|
|
3952
3951
|
mimeType?: string | undefined;
|
|
3952
|
+
title?: string | undefined;
|
|
3953
3953
|
fileUrl?: string | undefined;
|
|
3954
3954
|
fileId?: string | undefined;
|
|
3955
3955
|
iconLink?: string | undefined;
|
|
3956
3956
|
}, {
|
|
3957
|
-
title?: string | undefined;
|
|
3958
3957
|
mimeType?: string | undefined;
|
|
3958
|
+
title?: string | undefined;
|
|
3959
3959
|
fileUrl?: string | undefined;
|
|
3960
3960
|
fileId?: string | undefined;
|
|
3961
3961
|
iconLink?: string | undefined;
|
|
@@ -3964,8 +3964,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3964
3964
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3965
3965
|
error: z.ZodString;
|
|
3966
3966
|
}, "strip", z.ZodTypeAny, {
|
|
3967
|
-
success: boolean;
|
|
3968
3967
|
error: string;
|
|
3968
|
+
success: boolean;
|
|
3969
3969
|
operation: "update_event";
|
|
3970
3970
|
event?: z.objectOutputType<{
|
|
3971
3971
|
id: z.ZodString;
|
|
@@ -4009,13 +4009,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
4009
4009
|
displayName: z.ZodOptional<z.ZodString>;
|
|
4010
4010
|
}, "strip", z.ZodTypeAny, {
|
|
4011
4011
|
email: string;
|
|
4012
|
-
displayName?: string | undefined;
|
|
4013
4012
|
optional?: boolean | undefined;
|
|
4013
|
+
displayName?: string | undefined;
|
|
4014
4014
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
4015
4015
|
}, {
|
|
4016
4016
|
email: string;
|
|
4017
|
-
displayName?: string | undefined;
|
|
4018
4017
|
optional?: boolean | undefined;
|
|
4018
|
+
displayName?: string | undefined;
|
|
4019
4019
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
4020
4020
|
}>, "many">>;
|
|
4021
4021
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -4037,14 +4037,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
4037
4037
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
4038
4038
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
4039
4039
|
}, "strip", z.ZodTypeAny, {
|
|
4040
|
-
title?: string | undefined;
|
|
4041
4040
|
mimeType?: string | undefined;
|
|
4041
|
+
title?: string | undefined;
|
|
4042
4042
|
fileUrl?: string | undefined;
|
|
4043
4043
|
fileId?: string | undefined;
|
|
4044
4044
|
iconLink?: string | undefined;
|
|
4045
4045
|
}, {
|
|
4046
|
-
title?: string | undefined;
|
|
4047
4046
|
mimeType?: string | undefined;
|
|
4047
|
+
title?: string | undefined;
|
|
4048
4048
|
fileUrl?: string | undefined;
|
|
4049
4049
|
fileId?: string | undefined;
|
|
4050
4050
|
iconLink?: string | undefined;
|
|
@@ -4052,8 +4052,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
4052
4052
|
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4053
4053
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4054
4054
|
}, {
|
|
4055
|
-
success: boolean;
|
|
4056
4055
|
error: string;
|
|
4056
|
+
success: boolean;
|
|
4057
4057
|
operation: "update_event";
|
|
4058
4058
|
event?: z.objectInputType<{
|
|
4059
4059
|
id: z.ZodString;
|
|
@@ -4097,13 +4097,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
4097
4097
|
displayName: z.ZodOptional<z.ZodString>;
|
|
4098
4098
|
}, "strip", z.ZodTypeAny, {
|
|
4099
4099
|
email: string;
|
|
4100
|
-
displayName?: string | undefined;
|
|
4101
4100
|
optional?: boolean | undefined;
|
|
4101
|
+
displayName?: string | undefined;
|
|
4102
4102
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
4103
4103
|
}, {
|
|
4104
4104
|
email: string;
|
|
4105
|
-
displayName?: string | undefined;
|
|
4106
4105
|
optional?: boolean | undefined;
|
|
4106
|
+
displayName?: string | undefined;
|
|
4107
4107
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
4108
4108
|
}>, "many">>;
|
|
4109
4109
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
@@ -4125,14 +4125,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
4125
4125
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
4126
4126
|
iconLink: z.ZodOptional<z.ZodString>;
|
|
4127
4127
|
}, "strip", z.ZodTypeAny, {
|
|
4128
|
-
title?: string | undefined;
|
|
4129
4128
|
mimeType?: string | undefined;
|
|
4129
|
+
title?: string | undefined;
|
|
4130
4130
|
fileUrl?: string | undefined;
|
|
4131
4131
|
fileId?: string | undefined;
|
|
4132
4132
|
iconLink?: string | undefined;
|
|
4133
4133
|
}, {
|
|
4134
|
-
title?: string | undefined;
|
|
4135
4134
|
mimeType?: string | undefined;
|
|
4135
|
+
title?: string | undefined;
|
|
4136
4136
|
fileUrl?: string | undefined;
|
|
4137
4137
|
fileId?: string | undefined;
|
|
4138
4138
|
iconLink?: string | undefined;
|
|
@@ -4145,13 +4145,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
4145
4145
|
deleted: z.ZodOptional<z.ZodBoolean>;
|
|
4146
4146
|
error: z.ZodString;
|
|
4147
4147
|
}, "strip", z.ZodTypeAny, {
|
|
4148
|
-
success: boolean;
|
|
4149
4148
|
error: string;
|
|
4149
|
+
success: boolean;
|
|
4150
4150
|
operation: "delete_event";
|
|
4151
4151
|
deleted?: boolean | undefined;
|
|
4152
4152
|
}, {
|
|
4153
|
-
success: boolean;
|
|
4154
4153
|
error: string;
|
|
4154
|
+
success: boolean;
|
|
4155
4155
|
operation: "delete_event";
|
|
4156
4156
|
deleted?: boolean | undefined;
|
|
4157
4157
|
}>]>;
|