@bubblelab/bubble-core 0.1.20 → 0.1.22

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.
Files changed (51) hide show
  1. package/dist/bubble-bundle.d.ts +60 -60
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +96 -96
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +56 -56
  4. package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +27 -27
  6. package/dist/bubbles/service-bubble/eleven-labs.d.ts +32 -32
  7. package/dist/bubbles/service-bubble/firecrawl.d.ts +811 -811
  8. package/dist/bubbles/service-bubble/followupboss.d.ts +156 -156
  9. package/dist/bubbles/service-bubble/github.d.ts +216 -216
  10. package/dist/bubbles/service-bubble/gmail.d.ts +584 -584
  11. package/dist/bubbles/service-bubble/google-calendar.d.ts +482 -482
  12. package/dist/bubbles/service-bubble/google-drive.d.ts +139 -66
  13. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  14. package/dist/bubbles/service-bubble/google-drive.js +343 -0
  15. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  16. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
  17. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  18. package/dist/bubbles/service-bubble/http.d.ts +16 -16
  19. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/notion/notion.d.ts +1278 -1278
  21. package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
  22. package/dist/bubbles/service-bubble/resend.d.ts +28 -28
  23. package/dist/bubbles/service-bubble/slack/slack.d.ts +369 -363
  24. package/dist/bubbles/service-bubble/slack/slack.d.ts.map +1 -1
  25. package/dist/bubbles/service-bubble/slack/slack.js +89 -2
  26. package/dist/bubbles/service-bubble/slack/slack.js.map +1 -1
  27. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  28. package/dist/bubbles/service-bubble/telegram.d.ts +1289 -1289
  29. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
  30. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +12 -12
  31. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
  32. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +14 -14
  35. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
  36. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  37. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
  39. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +64 -64
  40. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
  41. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
  42. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
  43. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +36 -36
  44. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  45. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +74 -74
  46. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  47. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
  48. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
  49. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
  50. package/dist/bubbles.json +2 -2
  51. package/package.json +2 -2
@@ -10,13 +10,13 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
10
10
  }, "strip", z.ZodTypeAny, {
11
11
  operation: "list_calendars";
12
12
  max_results: number;
13
- page_token?: string | undefined;
14
13
  credentials?: Partial<Record<CredentialType, string>> | undefined;
14
+ page_token?: string | undefined;
15
15
  }, {
16
16
  operation: "list_calendars";
17
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
17
18
  max_results?: number | undefined;
18
19
  page_token?: string | undefined;
19
- credentials?: Partial<Record<CredentialType, string>> | undefined;
20
20
  }>, z.ZodObject<{
21
21
  operation: z.ZodLiteral<"list_events">;
22
22
  calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -31,25 +31,25 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
31
31
  }, "strip", z.ZodTypeAny, {
32
32
  operation: "list_events";
33
33
  max_results: number;
34
+ order_by: "updated" | "startTime";
34
35
  calendar_id: string;
35
36
  single_events: boolean;
36
- order_by: "startTime" | "updated";
37
- page_token?: string | undefined;
38
37
  credentials?: Partial<Record<CredentialType, string>> | undefined;
38
+ q?: string | undefined;
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
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
44
45
  max_results?: number | undefined;
46
+ order_by?: "updated" | "startTime" | undefined;
47
+ q?: string | undefined;
45
48
  page_token?: string | undefined;
46
- credentials?: Partial<Record<CredentialType, string>> | undefined;
47
49
  calendar_id?: string | undefined;
48
50
  time_min?: string | undefined;
49
51
  time_max?: string | undefined;
50
- q?: string | undefined;
51
52
  single_events?: boolean | undefined;
52
- order_by?: "startTime" | "updated" | undefined;
53
53
  }>, z.ZodObject<{
54
54
  operation: z.ZodLiteral<"get_event">;
55
55
  calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -77,12 +77,12 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
77
77
  timeZone: z.ZodOptional<z.ZodString>;
78
78
  }, "strip", z.ZodTypeAny, {
79
79
  date?: string | undefined;
80
- dateTime?: string | undefined;
81
80
  timeZone?: string | undefined;
81
+ dateTime?: string | undefined;
82
82
  }, {
83
83
  date?: string | undefined;
84
- dateTime?: string | undefined;
85
84
  timeZone?: string | undefined;
85
+ dateTime?: string | undefined;
86
86
  }>;
87
87
  end: z.ZodObject<{
88
88
  dateTime: z.ZodOptional<z.ZodString>;
@@ -90,12 +90,12 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
90
90
  timeZone: z.ZodOptional<z.ZodString>;
91
91
  }, "strip", z.ZodTypeAny, {
92
92
  date?: string | undefined;
93
- dateTime?: string | undefined;
94
93
  timeZone?: string | undefined;
94
+ dateTime?: string | undefined;
95
95
  }, {
96
96
  date?: string | undefined;
97
- dateTime?: string | undefined;
98
97
  timeZone?: string | undefined;
98
+ dateTime?: string | undefined;
99
99
  }>;
100
100
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
101
101
  email: z.ZodString;
@@ -104,64 +104,64 @@ 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;
107
108
  optional?: boolean | undefined;
108
109
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
109
- displayName?: string | undefined;
110
110
  }, {
111
111
  email: string;
112
+ displayName?: string | undefined;
112
113
  optional?: boolean | undefined;
113
114
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
114
- displayName?: string | undefined;
115
115
  }>, "many">>;
116
116
  conference: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
117
117
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
118
118
  }, "strip", z.ZodTypeAny, {
119
119
  operation: "create_event";
120
- calendar_id: string;
121
120
  summary: string;
122
121
  start: {
123
122
  date?: string | undefined;
124
- dateTime?: string | undefined;
125
123
  timeZone?: string | undefined;
124
+ dateTime?: string | undefined;
126
125
  };
127
126
  end: {
128
127
  date?: string | undefined;
129
- dateTime?: string | undefined;
130
128
  timeZone?: string | undefined;
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;
138
139
  optional?: boolean | undefined;
139
140
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
140
- displayName?: string | undefined;
141
141
  }[] | undefined;
142
142
  }, {
143
143
  operation: "create_event";
144
144
  summary: string;
145
145
  start: {
146
146
  date?: string | undefined;
147
- dateTime?: string | undefined;
148
147
  timeZone?: string | undefined;
148
+ dateTime?: string | undefined;
149
149
  };
150
150
  end: {
151
151
  date?: string | undefined;
152
- dateTime?: string | undefined;
153
152
  timeZone?: string | undefined;
153
+ dateTime?: string | undefined;
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;
160
+ displayName?: string | undefined;
161
161
  optional?: boolean | undefined;
162
162
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
163
- displayName?: string | 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">;
@@ -176,12 +176,12 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
176
176
  timeZone: z.ZodOptional<z.ZodString>;
177
177
  }, "strip", z.ZodTypeAny, {
178
178
  date?: string | undefined;
179
- dateTime?: string | undefined;
180
179
  timeZone?: string | undefined;
180
+ dateTime?: string | undefined;
181
181
  }, {
182
182
  date?: string | undefined;
183
- dateTime?: string | undefined;
184
183
  timeZone?: string | undefined;
184
+ dateTime?: string | undefined;
185
185
  }>>;
186
186
  end: z.ZodOptional<z.ZodObject<{
187
187
  dateTime: z.ZodOptional<z.ZodString>;
@@ -189,12 +189,12 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
189
189
  timeZone: z.ZodOptional<z.ZodString>;
190
190
  }, "strip", z.ZodTypeAny, {
191
191
  date?: string | undefined;
192
- dateTime?: string | undefined;
193
192
  timeZone?: string | undefined;
193
+ dateTime?: string | undefined;
194
194
  }, {
195
195
  date?: string | undefined;
196
- dateTime?: string | undefined;
197
196
  timeZone?: string | undefined;
197
+ dateTime?: string | undefined;
198
198
  }>>;
199
199
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
200
200
  email: z.ZodString;
@@ -203,14 +203,14 @@ 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;
206
207
  optional?: boolean | undefined;
207
208
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
208
- displayName?: string | undefined;
209
209
  }, {
210
210
  email: string;
211
+ displayName?: string | undefined;
211
212
  optional?: boolean | undefined;
212
213
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
213
- displayName?: string | undefined;
214
214
  }>, "many">>;
215
215
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
216
216
  }, "strip", z.ZodTypeAny, {
@@ -220,47 +220,47 @@ 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
- dateTime?: string | undefined;
227
225
  timeZone?: string | undefined;
226
+ dateTime?: string | undefined;
228
227
  } | undefined;
228
+ location?: string | undefined;
229
229
  end?: {
230
230
  date?: string | undefined;
231
- dateTime?: string | undefined;
232
231
  timeZone?: string | undefined;
232
+ dateTime?: string | undefined;
233
233
  } | undefined;
234
234
  attendees?: {
235
235
  email: string;
236
+ displayName?: string | undefined;
236
237
  optional?: boolean | undefined;
237
238
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
238
- displayName?: string | undefined;
239
239
  }[] | undefined;
240
240
  }, {
241
241
  operation: "update_event";
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
- dateTime?: string | undefined;
251
248
  timeZone?: string | undefined;
249
+ dateTime?: string | undefined;
252
250
  } | undefined;
251
+ location?: string | undefined;
253
252
  end?: {
254
253
  date?: string | undefined;
255
- dateTime?: string | undefined;
256
254
  timeZone?: string | undefined;
255
+ dateTime?: string | undefined;
257
256
  } | undefined;
258
257
  attendees?: {
259
258
  email: string;
259
+ displayName?: string | undefined;
260
260
  optional?: boolean | undefined;
261
261
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
262
- displayName?: string | 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>>;
@@ -271,14 +271,14 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
271
271
  operation: "delete_event";
272
272
  calendar_id: string;
273
273
  event_id: string;
274
- send_updates: "all" | "externalOnly" | "none";
274
+ send_updates: "none" | "all" | "externalOnly";
275
275
  credentials?: Partial<Record<CredentialType, string>> | undefined;
276
276
  }, {
277
277
  operation: "delete_event";
278
278
  event_id: string;
279
279
  credentials?: Partial<Record<CredentialType, string>> | undefined;
280
280
  calendar_id?: string | undefined;
281
- send_updates?: "all" | "externalOnly" | "none" | undefined;
281
+ send_updates?: "none" | "all" | "externalOnly" | undefined;
282
282
  }>]>;
283
283
  declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
284
284
  operation: z.ZodLiteral<"list_calendars">;
@@ -311,6 +311,7 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
311
311
  operation: "list_calendars";
312
312
  success: boolean;
313
313
  error: string;
314
+ next_page_token?: string | undefined;
314
315
  calendars?: z.objectOutputType<{
315
316
  id: z.ZodString;
316
317
  summary: z.ZodOptional<z.ZodString>;
@@ -319,11 +320,11 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
319
320
  selected: z.ZodOptional<z.ZodBoolean>;
320
321
  accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
321
322
  }, z.ZodTypeAny, "passthrough">[] | undefined;
322
- next_page_token?: string | undefined;
323
323
  }, {
324
324
  operation: "list_calendars";
325
325
  success: boolean;
326
326
  error: string;
327
+ next_page_token?: string | undefined;
327
328
  calendars?: z.objectInputType<{
328
329
  id: z.ZodString;
329
330
  summary: z.ZodOptional<z.ZodString>;
@@ -332,7 +333,6 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
332
333
  selected: z.ZodOptional<z.ZodBoolean>;
333
334
  accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
334
335
  }, z.ZodTypeAny, "passthrough">[] | undefined;
335
- next_page_token?: string | undefined;
336
336
  }>, z.ZodObject<{
337
337
  operation: z.ZodLiteral<"list_events">;
338
338
  success: z.ZodBoolean;
@@ -351,12 +351,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
351
351
  timeZone: z.ZodOptional<z.ZodString>;
352
352
  }, "strip", z.ZodTypeAny, {
353
353
  date?: string | undefined;
354
- dateTime?: string | undefined;
355
354
  timeZone?: string | undefined;
355
+ dateTime?: string | undefined;
356
356
  }, {
357
357
  date?: string | undefined;
358
- dateTime?: string | undefined;
359
358
  timeZone?: string | undefined;
359
+ dateTime?: string | undefined;
360
360
  }>>;
361
361
  end: z.ZodOptional<z.ZodObject<{
362
362
  dateTime: z.ZodOptional<z.ZodString>;
@@ -364,12 +364,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
364
364
  timeZone: z.ZodOptional<z.ZodString>;
365
365
  }, "strip", z.ZodTypeAny, {
366
366
  date?: string | undefined;
367
- dateTime?: string | undefined;
368
367
  timeZone?: string | undefined;
368
+ dateTime?: string | undefined;
369
369
  }, {
370
370
  date?: string | undefined;
371
- dateTime?: string | undefined;
372
371
  timeZone?: string | undefined;
372
+ dateTime?: string | undefined;
373
373
  }>>;
374
374
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
375
375
  email: z.ZodString;
@@ -378,14 +378,14 @@ 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;
381
382
  optional?: boolean | undefined;
382
383
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
383
- displayName?: string | undefined;
384
384
  }, {
385
385
  email: string;
386
+ displayName?: string | undefined;
386
387
  optional?: boolean | undefined;
387
388
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
388
- displayName?: string | undefined;
389
389
  }>, "many">>;
390
390
  organizer: z.ZodOptional<z.ZodObject<{
391
391
  email: z.ZodOptional<z.ZodString>;
@@ -407,15 +407,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
407
407
  iconLink: z.ZodOptional<z.ZodString>;
408
408
  }, "strip", z.ZodTypeAny, {
409
409
  title?: string | undefined;
410
- fileId?: string | undefined;
411
- fileUrl?: string | undefined;
412
410
  mimeType?: string | undefined;
411
+ fileUrl?: string | undefined;
412
+ fileId?: string | undefined;
413
413
  iconLink?: string | undefined;
414
414
  }, {
415
415
  title?: string | undefined;
416
- fileId?: string | undefined;
417
- fileUrl?: string | undefined;
418
416
  mimeType?: string | undefined;
417
+ fileUrl?: string | undefined;
418
+ fileId?: string | undefined;
419
419
  iconLink?: string | undefined;
420
420
  }>, "many">>;
421
421
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -434,12 +434,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
434
434
  timeZone: z.ZodOptional<z.ZodString>;
435
435
  }, "strip", z.ZodTypeAny, {
436
436
  date?: string | undefined;
437
- dateTime?: string | undefined;
438
437
  timeZone?: string | undefined;
438
+ dateTime?: string | undefined;
439
439
  }, {
440
440
  date?: string | undefined;
441
- dateTime?: string | undefined;
442
441
  timeZone?: string | undefined;
442
+ dateTime?: string | undefined;
443
443
  }>>;
444
444
  end: z.ZodOptional<z.ZodObject<{
445
445
  dateTime: z.ZodOptional<z.ZodString>;
@@ -447,12 +447,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
447
447
  timeZone: z.ZodOptional<z.ZodString>;
448
448
  }, "strip", z.ZodTypeAny, {
449
449
  date?: string | undefined;
450
- dateTime?: string | undefined;
451
450
  timeZone?: string | undefined;
451
+ dateTime?: string | undefined;
452
452
  }, {
453
453
  date?: string | undefined;
454
- dateTime?: string | undefined;
455
454
  timeZone?: string | undefined;
455
+ dateTime?: string | undefined;
456
456
  }>>;
457
457
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
458
458
  email: z.ZodString;
@@ -461,14 +461,14 @@ 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;
464
465
  optional?: boolean | undefined;
465
466
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
466
- displayName?: string | undefined;
467
467
  }, {
468
468
  email: string;
469
+ displayName?: string | undefined;
469
470
  optional?: boolean | undefined;
470
471
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
471
- displayName?: string | undefined;
472
472
  }>, "many">>;
473
473
  organizer: z.ZodOptional<z.ZodObject<{
474
474
  email: z.ZodOptional<z.ZodString>;
@@ -490,15 +490,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
490
490
  iconLink: z.ZodOptional<z.ZodString>;
491
491
  }, "strip", z.ZodTypeAny, {
492
492
  title?: string | undefined;
493
- fileId?: string | undefined;
494
- fileUrl?: string | undefined;
495
493
  mimeType?: string | undefined;
494
+ fileUrl?: string | undefined;
495
+ fileId?: string | undefined;
496
496
  iconLink?: string | undefined;
497
497
  }, {
498
498
  title?: string | undefined;
499
- fileId?: string | undefined;
500
- fileUrl?: string | undefined;
501
499
  mimeType?: string | undefined;
500
+ fileUrl?: string | undefined;
501
+ fileId?: string | undefined;
502
502
  iconLink?: string | undefined;
503
503
  }>, "many">>;
504
504
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -517,12 +517,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
517
517
  timeZone: z.ZodOptional<z.ZodString>;
518
518
  }, "strip", z.ZodTypeAny, {
519
519
  date?: string | undefined;
520
- dateTime?: string | undefined;
521
520
  timeZone?: string | undefined;
521
+ dateTime?: string | undefined;
522
522
  }, {
523
523
  date?: string | undefined;
524
- dateTime?: string | undefined;
525
524
  timeZone?: string | undefined;
525
+ dateTime?: string | undefined;
526
526
  }>>;
527
527
  end: z.ZodOptional<z.ZodObject<{
528
528
  dateTime: z.ZodOptional<z.ZodString>;
@@ -530,12 +530,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
530
530
  timeZone: z.ZodOptional<z.ZodString>;
531
531
  }, "strip", z.ZodTypeAny, {
532
532
  date?: string | undefined;
533
- dateTime?: string | undefined;
534
533
  timeZone?: string | undefined;
534
+ dateTime?: string | undefined;
535
535
  }, {
536
536
  date?: string | undefined;
537
- dateTime?: string | undefined;
538
537
  timeZone?: string | undefined;
538
+ dateTime?: string | undefined;
539
539
  }>>;
540
540
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
541
541
  email: z.ZodString;
@@ -544,14 +544,14 @@ 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;
547
548
  optional?: boolean | undefined;
548
549
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
549
- displayName?: string | undefined;
550
550
  }, {
551
551
  email: string;
552
+ displayName?: string | undefined;
552
553
  optional?: boolean | undefined;
553
554
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
554
- displayName?: string | undefined;
555
555
  }>, "many">>;
556
556
  organizer: z.ZodOptional<z.ZodObject<{
557
557
  email: z.ZodOptional<z.ZodString>;
@@ -573,15 +573,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
573
573
  iconLink: z.ZodOptional<z.ZodString>;
574
574
  }, "strip", z.ZodTypeAny, {
575
575
  title?: string | undefined;
576
- fileId?: string | undefined;
577
- fileUrl?: string | undefined;
578
576
  mimeType?: string | undefined;
577
+ fileUrl?: string | undefined;
578
+ fileId?: string | undefined;
579
579
  iconLink?: string | undefined;
580
580
  }, {
581
581
  title?: string | undefined;
582
- fileId?: string | undefined;
583
- fileUrl?: string | undefined;
584
582
  mimeType?: string | undefined;
583
+ fileUrl?: string | undefined;
584
+ fileId?: string | undefined;
585
585
  iconLink?: string | undefined;
586
586
  }>, "many">>;
587
587
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -608,12 +608,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
608
608
  timeZone: z.ZodOptional<z.ZodString>;
609
609
  }, "strip", z.ZodTypeAny, {
610
610
  date?: string | undefined;
611
- dateTime?: string | undefined;
612
611
  timeZone?: string | undefined;
612
+ dateTime?: string | undefined;
613
613
  }, {
614
614
  date?: string | undefined;
615
- dateTime?: string | undefined;
616
615
  timeZone?: string | undefined;
616
+ dateTime?: string | undefined;
617
617
  }>>;
618
618
  end: z.ZodOptional<z.ZodObject<{
619
619
  dateTime: z.ZodOptional<z.ZodString>;
@@ -621,12 +621,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
621
621
  timeZone: z.ZodOptional<z.ZodString>;
622
622
  }, "strip", z.ZodTypeAny, {
623
623
  date?: string | undefined;
624
- dateTime?: string | undefined;
625
624
  timeZone?: string | undefined;
625
+ dateTime?: string | undefined;
626
626
  }, {
627
627
  date?: string | undefined;
628
- dateTime?: string | undefined;
629
628
  timeZone?: string | undefined;
629
+ dateTime?: string | undefined;
630
630
  }>>;
631
631
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
632
632
  email: z.ZodString;
@@ -635,14 +635,14 @@ 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;
638
639
  optional?: boolean | undefined;
639
640
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
640
- displayName?: string | undefined;
641
641
  }, {
642
642
  email: string;
643
+ displayName?: string | undefined;
643
644
  optional?: boolean | undefined;
644
645
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
645
- displayName?: string | undefined;
646
646
  }>, "many">>;
647
647
  organizer: z.ZodOptional<z.ZodObject<{
648
648
  email: z.ZodOptional<z.ZodString>;
@@ -664,15 +664,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
664
664
  iconLink: z.ZodOptional<z.ZodString>;
665
665
  }, "strip", z.ZodTypeAny, {
666
666
  title?: string | undefined;
667
- fileId?: string | undefined;
668
- fileUrl?: string | undefined;
669
667
  mimeType?: string | undefined;
668
+ fileUrl?: string | undefined;
669
+ fileId?: string | undefined;
670
670
  iconLink?: string | undefined;
671
671
  }, {
672
672
  title?: string | undefined;
673
- fileId?: string | undefined;
674
- fileUrl?: string | undefined;
675
673
  mimeType?: string | undefined;
674
+ fileUrl?: string | undefined;
675
+ fileId?: string | undefined;
676
676
  iconLink?: string | undefined;
677
677
  }>, "many">>;
678
678
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -697,12 +697,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
697
697
  timeZone: z.ZodOptional<z.ZodString>;
698
698
  }, "strip", z.ZodTypeAny, {
699
699
  date?: string | undefined;
700
- dateTime?: string | undefined;
701
700
  timeZone?: string | undefined;
701
+ dateTime?: string | undefined;
702
702
  }, {
703
703
  date?: string | undefined;
704
- dateTime?: string | undefined;
705
704
  timeZone?: string | undefined;
705
+ dateTime?: string | undefined;
706
706
  }>>;
707
707
  end: z.ZodOptional<z.ZodObject<{
708
708
  dateTime: z.ZodOptional<z.ZodString>;
@@ -710,12 +710,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
710
710
  timeZone: z.ZodOptional<z.ZodString>;
711
711
  }, "strip", z.ZodTypeAny, {
712
712
  date?: string | undefined;
713
- dateTime?: string | undefined;
714
713
  timeZone?: string | undefined;
714
+ dateTime?: string | undefined;
715
715
  }, {
716
716
  date?: string | undefined;
717
- dateTime?: string | undefined;
718
717
  timeZone?: string | undefined;
718
+ dateTime?: string | undefined;
719
719
  }>>;
720
720
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
721
721
  email: z.ZodString;
@@ -724,14 +724,14 @@ 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;
727
728
  optional?: boolean | undefined;
728
729
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
729
- displayName?: string | undefined;
730
730
  }, {
731
731
  email: string;
732
+ displayName?: string | undefined;
732
733
  optional?: boolean | undefined;
733
734
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
734
- displayName?: string | undefined;
735
735
  }>, "many">>;
736
736
  organizer: z.ZodOptional<z.ZodObject<{
737
737
  email: z.ZodOptional<z.ZodString>;
@@ -753,15 +753,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
753
753
  iconLink: z.ZodOptional<z.ZodString>;
754
754
  }, "strip", z.ZodTypeAny, {
755
755
  title?: string | undefined;
756
- fileId?: string | undefined;
757
- fileUrl?: string | undefined;
758
756
  mimeType?: string | undefined;
757
+ fileUrl?: string | undefined;
758
+ fileId?: string | undefined;
759
759
  iconLink?: string | undefined;
760
760
  }, {
761
761
  title?: string | undefined;
762
- fileId?: string | undefined;
763
- fileUrl?: string | undefined;
764
762
  mimeType?: string | undefined;
763
+ fileUrl?: string | undefined;
764
+ fileId?: string | undefined;
765
765
  iconLink?: string | undefined;
766
766
  }>, "many">>;
767
767
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -784,12 +784,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
784
784
  timeZone: z.ZodOptional<z.ZodString>;
785
785
  }, "strip", z.ZodTypeAny, {
786
786
  date?: string | undefined;
787
- dateTime?: string | undefined;
788
787
  timeZone?: string | undefined;
788
+ dateTime?: string | undefined;
789
789
  }, {
790
790
  date?: string | undefined;
791
- dateTime?: string | undefined;
792
791
  timeZone?: string | undefined;
792
+ dateTime?: string | undefined;
793
793
  }>>;
794
794
  end: z.ZodOptional<z.ZodObject<{
795
795
  dateTime: z.ZodOptional<z.ZodString>;
@@ -797,12 +797,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
797
797
  timeZone: z.ZodOptional<z.ZodString>;
798
798
  }, "strip", z.ZodTypeAny, {
799
799
  date?: string | undefined;
800
- dateTime?: string | undefined;
801
800
  timeZone?: string | undefined;
801
+ dateTime?: string | undefined;
802
802
  }, {
803
803
  date?: string | undefined;
804
- dateTime?: string | undefined;
805
804
  timeZone?: string | undefined;
805
+ dateTime?: string | undefined;
806
806
  }>>;
807
807
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
808
808
  email: z.ZodString;
@@ -811,14 +811,14 @@ 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;
814
815
  optional?: boolean | undefined;
815
816
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
816
- displayName?: string | undefined;
817
817
  }, {
818
818
  email: string;
819
+ displayName?: string | undefined;
819
820
  optional?: boolean | undefined;
820
821
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
821
- displayName?: string | undefined;
822
822
  }>, "many">>;
823
823
  organizer: z.ZodOptional<z.ZodObject<{
824
824
  email: z.ZodOptional<z.ZodString>;
@@ -840,15 +840,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
840
840
  iconLink: z.ZodOptional<z.ZodString>;
841
841
  }, "strip", z.ZodTypeAny, {
842
842
  title?: string | undefined;
843
- fileId?: string | undefined;
844
- fileUrl?: string | undefined;
845
843
  mimeType?: string | undefined;
844
+ fileUrl?: string | undefined;
845
+ fileId?: string | undefined;
846
846
  iconLink?: string | undefined;
847
847
  }, {
848
848
  title?: string | undefined;
849
- fileId?: string | undefined;
850
- fileUrl?: string | undefined;
851
849
  mimeType?: string | undefined;
850
+ fileUrl?: string | undefined;
851
+ fileId?: string | undefined;
852
852
  iconLink?: string | undefined;
853
853
  }>, "many">>;
854
854
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -867,12 +867,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
867
867
  timeZone: z.ZodOptional<z.ZodString>;
868
868
  }, "strip", z.ZodTypeAny, {
869
869
  date?: string | undefined;
870
- dateTime?: string | undefined;
871
870
  timeZone?: string | undefined;
871
+ dateTime?: string | undefined;
872
872
  }, {
873
873
  date?: string | undefined;
874
- dateTime?: string | undefined;
875
874
  timeZone?: string | undefined;
875
+ dateTime?: string | undefined;
876
876
  }>>;
877
877
  end: z.ZodOptional<z.ZodObject<{
878
878
  dateTime: z.ZodOptional<z.ZodString>;
@@ -880,12 +880,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
880
880
  timeZone: z.ZodOptional<z.ZodString>;
881
881
  }, "strip", z.ZodTypeAny, {
882
882
  date?: string | undefined;
883
- dateTime?: string | undefined;
884
883
  timeZone?: string | undefined;
884
+ dateTime?: string | undefined;
885
885
  }, {
886
886
  date?: string | undefined;
887
- dateTime?: string | undefined;
888
887
  timeZone?: string | undefined;
888
+ dateTime?: string | undefined;
889
889
  }>>;
890
890
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
891
891
  email: z.ZodString;
@@ -894,14 +894,14 @@ 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;
897
898
  optional?: boolean | undefined;
898
899
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
899
- displayName?: string | undefined;
900
900
  }, {
901
901
  email: string;
902
+ displayName?: string | undefined;
902
903
  optional?: boolean | undefined;
903
904
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
904
- displayName?: string | undefined;
905
905
  }>, "many">>;
906
906
  organizer: z.ZodOptional<z.ZodObject<{
907
907
  email: z.ZodOptional<z.ZodString>;
@@ -923,15 +923,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
923
923
  iconLink: z.ZodOptional<z.ZodString>;
924
924
  }, "strip", z.ZodTypeAny, {
925
925
  title?: string | undefined;
926
- fileId?: string | undefined;
927
- fileUrl?: string | undefined;
928
926
  mimeType?: string | undefined;
927
+ fileUrl?: string | undefined;
928
+ fileId?: string | undefined;
929
929
  iconLink?: string | undefined;
930
930
  }, {
931
931
  title?: string | undefined;
932
- fileId?: string | undefined;
933
- fileUrl?: string | undefined;
934
932
  mimeType?: string | undefined;
933
+ fileUrl?: string | undefined;
934
+ fileId?: string | undefined;
935
935
  iconLink?: string | undefined;
936
936
  }>, "many">>;
937
937
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -950,12 +950,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
950
950
  timeZone: z.ZodOptional<z.ZodString>;
951
951
  }, "strip", z.ZodTypeAny, {
952
952
  date?: string | undefined;
953
- dateTime?: string | undefined;
954
953
  timeZone?: string | undefined;
954
+ dateTime?: string | undefined;
955
955
  }, {
956
956
  date?: string | undefined;
957
- dateTime?: string | undefined;
958
957
  timeZone?: string | undefined;
958
+ dateTime?: string | undefined;
959
959
  }>>;
960
960
  end: z.ZodOptional<z.ZodObject<{
961
961
  dateTime: z.ZodOptional<z.ZodString>;
@@ -963,12 +963,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
963
963
  timeZone: z.ZodOptional<z.ZodString>;
964
964
  }, "strip", z.ZodTypeAny, {
965
965
  date?: string | undefined;
966
- dateTime?: string | undefined;
967
966
  timeZone?: string | undefined;
967
+ dateTime?: string | undefined;
968
968
  }, {
969
969
  date?: string | undefined;
970
- dateTime?: string | undefined;
971
970
  timeZone?: string | undefined;
971
+ dateTime?: string | undefined;
972
972
  }>>;
973
973
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
974
974
  email: z.ZodString;
@@ -977,14 +977,14 @@ 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;
980
981
  optional?: boolean | undefined;
981
982
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
982
- displayName?: string | undefined;
983
983
  }, {
984
984
  email: string;
985
+ displayName?: string | undefined;
985
986
  optional?: boolean | undefined;
986
987
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
987
- displayName?: string | undefined;
988
988
  }>, "many">>;
989
989
  organizer: z.ZodOptional<z.ZodObject<{
990
990
  email: z.ZodOptional<z.ZodString>;
@@ -1006,15 +1006,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1006
1006
  iconLink: z.ZodOptional<z.ZodString>;
1007
1007
  }, "strip", z.ZodTypeAny, {
1008
1008
  title?: string | undefined;
1009
- fileId?: string | undefined;
1010
- fileUrl?: string | undefined;
1011
1009
  mimeType?: string | undefined;
1010
+ fileUrl?: string | undefined;
1011
+ fileId?: string | undefined;
1012
1012
  iconLink?: string | undefined;
1013
1013
  }, {
1014
1014
  title?: string | undefined;
1015
- fileId?: string | undefined;
1016
- fileUrl?: string | undefined;
1017
1015
  mimeType?: string | undefined;
1016
+ fileUrl?: string | undefined;
1017
+ fileId?: string | undefined;
1018
1018
  iconLink?: string | undefined;
1019
1019
  }>, "many">>;
1020
1020
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1039,12 +1039,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1039
1039
  timeZone: z.ZodOptional<z.ZodString>;
1040
1040
  }, "strip", z.ZodTypeAny, {
1041
1041
  date?: string | undefined;
1042
- dateTime?: string | undefined;
1043
1042
  timeZone?: string | undefined;
1043
+ dateTime?: string | undefined;
1044
1044
  }, {
1045
1045
  date?: string | undefined;
1046
- dateTime?: string | undefined;
1047
1046
  timeZone?: string | undefined;
1047
+ dateTime?: string | undefined;
1048
1048
  }>>;
1049
1049
  end: z.ZodOptional<z.ZodObject<{
1050
1050
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1052,12 +1052,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1052
1052
  timeZone: z.ZodOptional<z.ZodString>;
1053
1053
  }, "strip", z.ZodTypeAny, {
1054
1054
  date?: string | undefined;
1055
- dateTime?: string | undefined;
1056
1055
  timeZone?: string | undefined;
1056
+ dateTime?: string | undefined;
1057
1057
  }, {
1058
1058
  date?: string | undefined;
1059
- dateTime?: string | undefined;
1060
1059
  timeZone?: string | undefined;
1060
+ dateTime?: string | undefined;
1061
1061
  }>>;
1062
1062
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1063
1063
  email: z.ZodString;
@@ -1066,14 +1066,14 @@ 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;
1069
1070
  optional?: boolean | undefined;
1070
1071
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1071
- displayName?: string | undefined;
1072
1072
  }, {
1073
1073
  email: string;
1074
+ displayName?: string | undefined;
1074
1075
  optional?: boolean | undefined;
1075
1076
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1076
- displayName?: string | undefined;
1077
1077
  }>, "many">>;
1078
1078
  organizer: z.ZodOptional<z.ZodObject<{
1079
1079
  email: z.ZodOptional<z.ZodString>;
@@ -1095,15 +1095,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1095
1095
  iconLink: z.ZodOptional<z.ZodString>;
1096
1096
  }, "strip", z.ZodTypeAny, {
1097
1097
  title?: string | undefined;
1098
- fileId?: string | undefined;
1099
- fileUrl?: string | undefined;
1100
1098
  mimeType?: string | undefined;
1099
+ fileUrl?: string | undefined;
1100
+ fileId?: string | undefined;
1101
1101
  iconLink?: string | undefined;
1102
1102
  }, {
1103
1103
  title?: string | undefined;
1104
- fileId?: string | undefined;
1105
- fileUrl?: string | undefined;
1106
1104
  mimeType?: string | undefined;
1105
+ fileUrl?: string | undefined;
1106
+ fileId?: string | undefined;
1107
1107
  iconLink?: string | undefined;
1108
1108
  }>, "many">>;
1109
1109
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1127,12 +1127,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1127
1127
  timeZone: z.ZodOptional<z.ZodString>;
1128
1128
  }, "strip", z.ZodTypeAny, {
1129
1129
  date?: string | undefined;
1130
- dateTime?: string | undefined;
1131
1130
  timeZone?: string | undefined;
1131
+ dateTime?: string | undefined;
1132
1132
  }, {
1133
1133
  date?: string | undefined;
1134
- dateTime?: string | undefined;
1135
1134
  timeZone?: string | undefined;
1135
+ dateTime?: string | undefined;
1136
1136
  }>>;
1137
1137
  end: z.ZodOptional<z.ZodObject<{
1138
1138
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1140,12 +1140,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1140
1140
  timeZone: z.ZodOptional<z.ZodString>;
1141
1141
  }, "strip", z.ZodTypeAny, {
1142
1142
  date?: string | undefined;
1143
- dateTime?: string | undefined;
1144
1143
  timeZone?: string | undefined;
1144
+ dateTime?: string | undefined;
1145
1145
  }, {
1146
1146
  date?: string | undefined;
1147
- dateTime?: string | undefined;
1148
1147
  timeZone?: string | undefined;
1148
+ dateTime?: string | undefined;
1149
1149
  }>>;
1150
1150
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1151
1151
  email: z.ZodString;
@@ -1154,14 +1154,14 @@ 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;
1157
1158
  optional?: boolean | undefined;
1158
1159
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1159
- displayName?: string | undefined;
1160
1160
  }, {
1161
1161
  email: string;
1162
+ displayName?: string | undefined;
1162
1163
  optional?: boolean | undefined;
1163
1164
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1164
- displayName?: string | undefined;
1165
1165
  }>, "many">>;
1166
1166
  organizer: z.ZodOptional<z.ZodObject<{
1167
1167
  email: z.ZodOptional<z.ZodString>;
@@ -1183,15 +1183,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1183
1183
  iconLink: z.ZodOptional<z.ZodString>;
1184
1184
  }, "strip", z.ZodTypeAny, {
1185
1185
  title?: string | undefined;
1186
- fileId?: string | undefined;
1187
- fileUrl?: string | undefined;
1188
1186
  mimeType?: string | undefined;
1187
+ fileUrl?: string | undefined;
1188
+ fileId?: string | undefined;
1189
1189
  iconLink?: string | undefined;
1190
1190
  }, {
1191
1191
  title?: string | undefined;
1192
- fileId?: string | undefined;
1193
- fileUrl?: string | undefined;
1194
1192
  mimeType?: string | undefined;
1193
+ fileUrl?: string | undefined;
1194
+ fileId?: string | undefined;
1195
1195
  iconLink?: string | undefined;
1196
1196
  }>, "many">>;
1197
1197
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1214,12 +1214,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1214
1214
  timeZone: z.ZodOptional<z.ZodString>;
1215
1215
  }, "strip", z.ZodTypeAny, {
1216
1216
  date?: string | undefined;
1217
- dateTime?: string | undefined;
1218
1217
  timeZone?: string | undefined;
1218
+ dateTime?: string | undefined;
1219
1219
  }, {
1220
1220
  date?: string | undefined;
1221
- dateTime?: string | undefined;
1222
1221
  timeZone?: string | undefined;
1222
+ dateTime?: string | undefined;
1223
1223
  }>>;
1224
1224
  end: z.ZodOptional<z.ZodObject<{
1225
1225
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1227,12 +1227,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1227
1227
  timeZone: z.ZodOptional<z.ZodString>;
1228
1228
  }, "strip", z.ZodTypeAny, {
1229
1229
  date?: string | undefined;
1230
- dateTime?: string | undefined;
1231
1230
  timeZone?: string | undefined;
1231
+ dateTime?: string | undefined;
1232
1232
  }, {
1233
1233
  date?: string | undefined;
1234
- dateTime?: string | undefined;
1235
1234
  timeZone?: string | undefined;
1235
+ dateTime?: string | undefined;
1236
1236
  }>>;
1237
1237
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1238
1238
  email: z.ZodString;
@@ -1241,14 +1241,14 @@ 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;
1244
1245
  optional?: boolean | undefined;
1245
1246
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1246
- displayName?: string | undefined;
1247
1247
  }, {
1248
1248
  email: string;
1249
+ displayName?: string | undefined;
1249
1250
  optional?: boolean | undefined;
1250
1251
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1251
- displayName?: string | undefined;
1252
1252
  }>, "many">>;
1253
1253
  organizer: z.ZodOptional<z.ZodObject<{
1254
1254
  email: z.ZodOptional<z.ZodString>;
@@ -1270,15 +1270,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1270
1270
  iconLink: z.ZodOptional<z.ZodString>;
1271
1271
  }, "strip", z.ZodTypeAny, {
1272
1272
  title?: string | undefined;
1273
- fileId?: string | undefined;
1274
- fileUrl?: string | undefined;
1275
1273
  mimeType?: string | undefined;
1274
+ fileUrl?: string | undefined;
1275
+ fileId?: string | undefined;
1276
1276
  iconLink?: string | undefined;
1277
1277
  }, {
1278
1278
  title?: string | undefined;
1279
- fileId?: string | undefined;
1280
- fileUrl?: string | undefined;
1281
1279
  mimeType?: string | undefined;
1280
+ fileUrl?: string | undefined;
1281
+ fileId?: string | undefined;
1282
1282
  iconLink?: string | undefined;
1283
1283
  }>, "many">>;
1284
1284
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1297,12 +1297,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1297
1297
  timeZone: z.ZodOptional<z.ZodString>;
1298
1298
  }, "strip", z.ZodTypeAny, {
1299
1299
  date?: string | undefined;
1300
- dateTime?: string | undefined;
1301
1300
  timeZone?: string | undefined;
1301
+ dateTime?: string | undefined;
1302
1302
  }, {
1303
1303
  date?: string | undefined;
1304
- dateTime?: string | undefined;
1305
1304
  timeZone?: string | undefined;
1305
+ dateTime?: string | undefined;
1306
1306
  }>>;
1307
1307
  end: z.ZodOptional<z.ZodObject<{
1308
1308
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1310,12 +1310,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1310
1310
  timeZone: z.ZodOptional<z.ZodString>;
1311
1311
  }, "strip", z.ZodTypeAny, {
1312
1312
  date?: string | undefined;
1313
- dateTime?: string | undefined;
1314
1313
  timeZone?: string | undefined;
1314
+ dateTime?: string | undefined;
1315
1315
  }, {
1316
1316
  date?: string | undefined;
1317
- dateTime?: string | undefined;
1318
1317
  timeZone?: string | undefined;
1318
+ dateTime?: string | undefined;
1319
1319
  }>>;
1320
1320
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1321
1321
  email: z.ZodString;
@@ -1324,14 +1324,14 @@ 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;
1327
1328
  optional?: boolean | undefined;
1328
1329
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1329
- displayName?: string | undefined;
1330
1330
  }, {
1331
1331
  email: string;
1332
+ displayName?: string | undefined;
1332
1333
  optional?: boolean | undefined;
1333
1334
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1334
- displayName?: string | undefined;
1335
1335
  }>, "many">>;
1336
1336
  organizer: z.ZodOptional<z.ZodObject<{
1337
1337
  email: z.ZodOptional<z.ZodString>;
@@ -1353,15 +1353,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1353
1353
  iconLink: z.ZodOptional<z.ZodString>;
1354
1354
  }, "strip", z.ZodTypeAny, {
1355
1355
  title?: string | undefined;
1356
- fileId?: string | undefined;
1357
- fileUrl?: string | undefined;
1358
1356
  mimeType?: string | undefined;
1357
+ fileUrl?: string | undefined;
1358
+ fileId?: string | undefined;
1359
1359
  iconLink?: string | undefined;
1360
1360
  }, {
1361
1361
  title?: string | undefined;
1362
- fileId?: string | undefined;
1363
- fileUrl?: string | undefined;
1364
1362
  mimeType?: string | undefined;
1363
+ fileUrl?: string | undefined;
1364
+ fileId?: string | undefined;
1365
1365
  iconLink?: string | undefined;
1366
1366
  }>, "many">>;
1367
1367
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1380,12 +1380,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1380
1380
  timeZone: z.ZodOptional<z.ZodString>;
1381
1381
  }, "strip", z.ZodTypeAny, {
1382
1382
  date?: string | undefined;
1383
- dateTime?: string | undefined;
1384
1383
  timeZone?: string | undefined;
1384
+ dateTime?: string | undefined;
1385
1385
  }, {
1386
1386
  date?: string | undefined;
1387
- dateTime?: string | undefined;
1388
1387
  timeZone?: string | undefined;
1388
+ dateTime?: string | undefined;
1389
1389
  }>>;
1390
1390
  end: z.ZodOptional<z.ZodObject<{
1391
1391
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1393,12 +1393,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1393
1393
  timeZone: z.ZodOptional<z.ZodString>;
1394
1394
  }, "strip", z.ZodTypeAny, {
1395
1395
  date?: string | undefined;
1396
- dateTime?: string | undefined;
1397
1396
  timeZone?: string | undefined;
1397
+ dateTime?: string | undefined;
1398
1398
  }, {
1399
1399
  date?: string | undefined;
1400
- dateTime?: string | undefined;
1401
1400
  timeZone?: string | undefined;
1401
+ dateTime?: string | undefined;
1402
1402
  }>>;
1403
1403
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1404
1404
  email: z.ZodString;
@@ -1407,14 +1407,14 @@ 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;
1410
1411
  optional?: boolean | undefined;
1411
1412
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1412
- displayName?: string | undefined;
1413
1413
  }, {
1414
1414
  email: string;
1415
+ displayName?: string | undefined;
1415
1416
  optional?: boolean | undefined;
1416
1417
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1417
- displayName?: string | undefined;
1418
1418
  }>, "many">>;
1419
1419
  organizer: z.ZodOptional<z.ZodObject<{
1420
1420
  email: z.ZodOptional<z.ZodString>;
@@ -1436,15 +1436,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1436
1436
  iconLink: z.ZodOptional<z.ZodString>;
1437
1437
  }, "strip", z.ZodTypeAny, {
1438
1438
  title?: string | undefined;
1439
- fileId?: string | undefined;
1440
- fileUrl?: string | undefined;
1441
1439
  mimeType?: string | undefined;
1440
+ fileUrl?: string | undefined;
1441
+ fileId?: string | undefined;
1442
1442
  iconLink?: string | undefined;
1443
1443
  }, {
1444
1444
  title?: string | undefined;
1445
- fileId?: string | undefined;
1446
- fileUrl?: string | undefined;
1447
1445
  mimeType?: string | undefined;
1446
+ fileUrl?: string | undefined;
1447
+ fileId?: string | undefined;
1448
1448
  iconLink?: string | undefined;
1449
1449
  }>, "many">>;
1450
1450
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1469,12 +1469,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1469
1469
  timeZone: z.ZodOptional<z.ZodString>;
1470
1470
  }, "strip", z.ZodTypeAny, {
1471
1471
  date?: string | undefined;
1472
- dateTime?: string | undefined;
1473
1472
  timeZone?: string | undefined;
1473
+ dateTime?: string | undefined;
1474
1474
  }, {
1475
1475
  date?: string | undefined;
1476
- dateTime?: string | undefined;
1477
1476
  timeZone?: string | undefined;
1477
+ dateTime?: string | undefined;
1478
1478
  }>>;
1479
1479
  end: z.ZodOptional<z.ZodObject<{
1480
1480
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1482,12 +1482,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1482
1482
  timeZone: z.ZodOptional<z.ZodString>;
1483
1483
  }, "strip", z.ZodTypeAny, {
1484
1484
  date?: string | undefined;
1485
- dateTime?: string | undefined;
1486
1485
  timeZone?: string | undefined;
1486
+ dateTime?: string | undefined;
1487
1487
  }, {
1488
1488
  date?: string | undefined;
1489
- dateTime?: string | undefined;
1490
1489
  timeZone?: string | undefined;
1490
+ dateTime?: string | undefined;
1491
1491
  }>>;
1492
1492
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1493
1493
  email: z.ZodString;
@@ -1496,14 +1496,14 @@ 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;
1499
1500
  optional?: boolean | undefined;
1500
1501
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1501
- displayName?: string | undefined;
1502
1502
  }, {
1503
1503
  email: string;
1504
+ displayName?: string | undefined;
1504
1505
  optional?: boolean | undefined;
1505
1506
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1506
- displayName?: string | undefined;
1507
1507
  }>, "many">>;
1508
1508
  organizer: z.ZodOptional<z.ZodObject<{
1509
1509
  email: z.ZodOptional<z.ZodString>;
@@ -1525,15 +1525,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1525
1525
  iconLink: z.ZodOptional<z.ZodString>;
1526
1526
  }, "strip", z.ZodTypeAny, {
1527
1527
  title?: string | undefined;
1528
- fileId?: string | undefined;
1529
- fileUrl?: string | undefined;
1530
1528
  mimeType?: string | undefined;
1529
+ fileUrl?: string | undefined;
1530
+ fileId?: string | undefined;
1531
1531
  iconLink?: string | undefined;
1532
1532
  }, {
1533
1533
  title?: string | undefined;
1534
- fileId?: string | undefined;
1535
- fileUrl?: string | undefined;
1536
1534
  mimeType?: string | undefined;
1535
+ fileUrl?: string | undefined;
1536
+ fileId?: string | undefined;
1537
1537
  iconLink?: string | undefined;
1538
1538
  }>, "many">>;
1539
1539
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1557,12 +1557,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1557
1557
  timeZone: z.ZodOptional<z.ZodString>;
1558
1558
  }, "strip", z.ZodTypeAny, {
1559
1559
  date?: string | undefined;
1560
- dateTime?: string | undefined;
1561
1560
  timeZone?: string | undefined;
1561
+ dateTime?: string | undefined;
1562
1562
  }, {
1563
1563
  date?: string | undefined;
1564
- dateTime?: string | undefined;
1565
1564
  timeZone?: string | undefined;
1565
+ dateTime?: string | undefined;
1566
1566
  }>>;
1567
1567
  end: z.ZodOptional<z.ZodObject<{
1568
1568
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1570,12 +1570,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1570
1570
  timeZone: z.ZodOptional<z.ZodString>;
1571
1571
  }, "strip", z.ZodTypeAny, {
1572
1572
  date?: string | undefined;
1573
- dateTime?: string | undefined;
1574
1573
  timeZone?: string | undefined;
1574
+ dateTime?: string | undefined;
1575
1575
  }, {
1576
1576
  date?: string | undefined;
1577
- dateTime?: string | undefined;
1578
1577
  timeZone?: string | undefined;
1578
+ dateTime?: string | undefined;
1579
1579
  }>>;
1580
1580
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1581
1581
  email: z.ZodString;
@@ -1584,14 +1584,14 @@ 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;
1587
1588
  optional?: boolean | undefined;
1588
1589
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1589
- displayName?: string | undefined;
1590
1590
  }, {
1591
1591
  email: string;
1592
+ displayName?: string | undefined;
1592
1593
  optional?: boolean | undefined;
1593
1594
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1594
- displayName?: string | undefined;
1595
1595
  }>, "many">>;
1596
1596
  organizer: z.ZodOptional<z.ZodObject<{
1597
1597
  email: z.ZodOptional<z.ZodString>;
@@ -1613,15 +1613,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1613
1613
  iconLink: z.ZodOptional<z.ZodString>;
1614
1614
  }, "strip", z.ZodTypeAny, {
1615
1615
  title?: string | undefined;
1616
- fileId?: string | undefined;
1617
- fileUrl?: string | undefined;
1618
1616
  mimeType?: string | undefined;
1617
+ fileUrl?: string | undefined;
1618
+ fileId?: string | undefined;
1619
1619
  iconLink?: string | undefined;
1620
1620
  }, {
1621
1621
  title?: string | undefined;
1622
- fileId?: string | undefined;
1623
- fileUrl?: string | undefined;
1624
1622
  mimeType?: string | undefined;
1623
+ fileUrl?: string | undefined;
1624
+ fileId?: string | undefined;
1625
1625
  iconLink?: string | undefined;
1626
1626
  }>, "many">>;
1627
1627
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1644,12 +1644,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1644
1644
  timeZone: z.ZodOptional<z.ZodString>;
1645
1645
  }, "strip", z.ZodTypeAny, {
1646
1646
  date?: string | undefined;
1647
- dateTime?: string | undefined;
1648
1647
  timeZone?: string | undefined;
1648
+ dateTime?: string | undefined;
1649
1649
  }, {
1650
1650
  date?: string | undefined;
1651
- dateTime?: string | undefined;
1652
1651
  timeZone?: string | undefined;
1652
+ dateTime?: string | undefined;
1653
1653
  }>>;
1654
1654
  end: z.ZodOptional<z.ZodObject<{
1655
1655
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1657,12 +1657,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1657
1657
  timeZone: z.ZodOptional<z.ZodString>;
1658
1658
  }, "strip", z.ZodTypeAny, {
1659
1659
  date?: string | undefined;
1660
- dateTime?: string | undefined;
1661
1660
  timeZone?: string | undefined;
1661
+ dateTime?: string | undefined;
1662
1662
  }, {
1663
1663
  date?: string | undefined;
1664
- dateTime?: string | undefined;
1665
1664
  timeZone?: string | undefined;
1665
+ dateTime?: string | undefined;
1666
1666
  }>>;
1667
1667
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1668
1668
  email: z.ZodString;
@@ -1671,14 +1671,14 @@ 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;
1674
1675
  optional?: boolean | undefined;
1675
1676
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1676
- displayName?: string | undefined;
1677
1677
  }, {
1678
1678
  email: string;
1679
+ displayName?: string | undefined;
1679
1680
  optional?: boolean | undefined;
1680
1681
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1681
- displayName?: string | undefined;
1682
1682
  }>, "many">>;
1683
1683
  organizer: z.ZodOptional<z.ZodObject<{
1684
1684
  email: z.ZodOptional<z.ZodString>;
@@ -1700,15 +1700,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1700
1700
  iconLink: z.ZodOptional<z.ZodString>;
1701
1701
  }, "strip", z.ZodTypeAny, {
1702
1702
  title?: string | undefined;
1703
- fileId?: string | undefined;
1704
- fileUrl?: string | undefined;
1705
1703
  mimeType?: string | undefined;
1704
+ fileUrl?: string | undefined;
1705
+ fileId?: string | undefined;
1706
1706
  iconLink?: string | undefined;
1707
1707
  }, {
1708
1708
  title?: string | undefined;
1709
- fileId?: string | undefined;
1710
- fileUrl?: string | undefined;
1711
1709
  mimeType?: string | undefined;
1710
+ fileUrl?: string | undefined;
1711
+ fileId?: string | undefined;
1712
1712
  iconLink?: string | undefined;
1713
1713
  }>, "many">>;
1714
1714
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1727,12 +1727,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1727
1727
  timeZone: z.ZodOptional<z.ZodString>;
1728
1728
  }, "strip", z.ZodTypeAny, {
1729
1729
  date?: string | undefined;
1730
- dateTime?: string | undefined;
1731
1730
  timeZone?: string | undefined;
1731
+ dateTime?: string | undefined;
1732
1732
  }, {
1733
1733
  date?: string | undefined;
1734
- dateTime?: string | undefined;
1735
1734
  timeZone?: string | undefined;
1735
+ dateTime?: string | undefined;
1736
1736
  }>>;
1737
1737
  end: z.ZodOptional<z.ZodObject<{
1738
1738
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1740,12 +1740,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1740
1740
  timeZone: z.ZodOptional<z.ZodString>;
1741
1741
  }, "strip", z.ZodTypeAny, {
1742
1742
  date?: string | undefined;
1743
- dateTime?: string | undefined;
1744
1743
  timeZone?: string | undefined;
1744
+ dateTime?: string | undefined;
1745
1745
  }, {
1746
1746
  date?: string | undefined;
1747
- dateTime?: string | undefined;
1748
1747
  timeZone?: string | undefined;
1748
+ dateTime?: string | undefined;
1749
1749
  }>>;
1750
1750
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1751
1751
  email: z.ZodString;
@@ -1754,14 +1754,14 @@ 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;
1757
1758
  optional?: boolean | undefined;
1758
1759
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1759
- displayName?: string | undefined;
1760
1760
  }, {
1761
1761
  email: string;
1762
+ displayName?: string | undefined;
1762
1763
  optional?: boolean | undefined;
1763
1764
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1764
- displayName?: string | undefined;
1765
1765
  }>, "many">>;
1766
1766
  organizer: z.ZodOptional<z.ZodObject<{
1767
1767
  email: z.ZodOptional<z.ZodString>;
@@ -1783,15 +1783,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1783
1783
  iconLink: z.ZodOptional<z.ZodString>;
1784
1784
  }, "strip", z.ZodTypeAny, {
1785
1785
  title?: string | undefined;
1786
- fileId?: string | undefined;
1787
- fileUrl?: string | undefined;
1788
1786
  mimeType?: string | undefined;
1787
+ fileUrl?: string | undefined;
1788
+ fileId?: string | undefined;
1789
1789
  iconLink?: string | undefined;
1790
1790
  }, {
1791
1791
  title?: string | undefined;
1792
- fileId?: string | undefined;
1793
- fileUrl?: string | undefined;
1794
1792
  mimeType?: string | undefined;
1793
+ fileUrl?: string | undefined;
1794
+ fileId?: string | undefined;
1795
1795
  iconLink?: string | undefined;
1796
1796
  }>, "many">>;
1797
1797
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1810,12 +1810,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1810
1810
  timeZone: z.ZodOptional<z.ZodString>;
1811
1811
  }, "strip", z.ZodTypeAny, {
1812
1812
  date?: string | undefined;
1813
- dateTime?: string | undefined;
1814
1813
  timeZone?: string | undefined;
1814
+ dateTime?: string | undefined;
1815
1815
  }, {
1816
1816
  date?: string | undefined;
1817
- dateTime?: string | undefined;
1818
1817
  timeZone?: string | undefined;
1818
+ dateTime?: string | undefined;
1819
1819
  }>>;
1820
1820
  end: z.ZodOptional<z.ZodObject<{
1821
1821
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1823,12 +1823,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1823
1823
  timeZone: z.ZodOptional<z.ZodString>;
1824
1824
  }, "strip", z.ZodTypeAny, {
1825
1825
  date?: string | undefined;
1826
- dateTime?: string | undefined;
1827
1826
  timeZone?: string | undefined;
1827
+ dateTime?: string | undefined;
1828
1828
  }, {
1829
1829
  date?: string | undefined;
1830
- dateTime?: string | undefined;
1831
1830
  timeZone?: string | undefined;
1831
+ dateTime?: string | undefined;
1832
1832
  }>>;
1833
1833
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1834
1834
  email: z.ZodString;
@@ -1837,14 +1837,14 @@ 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;
1840
1841
  optional?: boolean | undefined;
1841
1842
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1842
- displayName?: string | undefined;
1843
1843
  }, {
1844
1844
  email: string;
1845
+ displayName?: string | undefined;
1845
1846
  optional?: boolean | undefined;
1846
1847
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1847
- displayName?: string | undefined;
1848
1848
  }>, "many">>;
1849
1849
  organizer: z.ZodOptional<z.ZodObject<{
1850
1850
  email: z.ZodOptional<z.ZodString>;
@@ -1866,15 +1866,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1866
1866
  iconLink: z.ZodOptional<z.ZodString>;
1867
1867
  }, "strip", z.ZodTypeAny, {
1868
1868
  title?: string | undefined;
1869
- fileId?: string | undefined;
1870
- fileUrl?: string | undefined;
1871
1869
  mimeType?: string | undefined;
1870
+ fileUrl?: string | undefined;
1871
+ fileId?: string | undefined;
1872
1872
  iconLink?: string | undefined;
1873
1873
  }, {
1874
1874
  title?: string | undefined;
1875
- fileId?: string | undefined;
1876
- fileUrl?: string | undefined;
1877
1875
  mimeType?: string | undefined;
1876
+ fileUrl?: string | undefined;
1877
+ fileId?: string | undefined;
1878
1878
  iconLink?: string | undefined;
1879
1879
  }>, "many">>;
1880
1880
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1899,12 +1899,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1899
1899
  timeZone: z.ZodOptional<z.ZodString>;
1900
1900
  }, "strip", z.ZodTypeAny, {
1901
1901
  date?: string | undefined;
1902
- dateTime?: string | undefined;
1903
1902
  timeZone?: string | undefined;
1903
+ dateTime?: string | undefined;
1904
1904
  }, {
1905
1905
  date?: string | undefined;
1906
- dateTime?: string | undefined;
1907
1906
  timeZone?: string | undefined;
1907
+ dateTime?: string | undefined;
1908
1908
  }>>;
1909
1909
  end: z.ZodOptional<z.ZodObject<{
1910
1910
  dateTime: z.ZodOptional<z.ZodString>;
@@ -1912,12 +1912,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1912
1912
  timeZone: z.ZodOptional<z.ZodString>;
1913
1913
  }, "strip", z.ZodTypeAny, {
1914
1914
  date?: string | undefined;
1915
- dateTime?: string | undefined;
1916
1915
  timeZone?: string | undefined;
1916
+ dateTime?: string | undefined;
1917
1917
  }, {
1918
1918
  date?: string | undefined;
1919
- dateTime?: string | undefined;
1920
1919
  timeZone?: string | undefined;
1920
+ dateTime?: string | undefined;
1921
1921
  }>>;
1922
1922
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
1923
1923
  email: z.ZodString;
@@ -1926,14 +1926,14 @@ 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;
1929
1930
  optional?: boolean | undefined;
1930
1931
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1931
- displayName?: string | undefined;
1932
1932
  }, {
1933
1933
  email: string;
1934
+ displayName?: string | undefined;
1934
1935
  optional?: boolean | undefined;
1935
1936
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
1936
- displayName?: string | undefined;
1937
1937
  }>, "many">>;
1938
1938
  organizer: z.ZodOptional<z.ZodObject<{
1939
1939
  email: z.ZodOptional<z.ZodString>;
@@ -1955,15 +1955,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1955
1955
  iconLink: z.ZodOptional<z.ZodString>;
1956
1956
  }, "strip", z.ZodTypeAny, {
1957
1957
  title?: string | undefined;
1958
- fileId?: string | undefined;
1959
- fileUrl?: string | undefined;
1960
1958
  mimeType?: string | undefined;
1959
+ fileUrl?: string | undefined;
1960
+ fileId?: string | undefined;
1961
1961
  iconLink?: string | undefined;
1962
1962
  }, {
1963
1963
  title?: string | undefined;
1964
- fileId?: string | undefined;
1965
- fileUrl?: string | undefined;
1966
1964
  mimeType?: string | undefined;
1965
+ fileUrl?: string | undefined;
1966
+ fileId?: string | undefined;
1967
1967
  iconLink?: string | undefined;
1968
1968
  }>, "many">>;
1969
1969
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1987,12 +1987,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
1987
1987
  timeZone: z.ZodOptional<z.ZodString>;
1988
1988
  }, "strip", z.ZodTypeAny, {
1989
1989
  date?: string | undefined;
1990
- dateTime?: string | undefined;
1991
1990
  timeZone?: string | undefined;
1991
+ dateTime?: string | undefined;
1992
1992
  }, {
1993
1993
  date?: string | undefined;
1994
- dateTime?: string | undefined;
1995
1994
  timeZone?: string | undefined;
1995
+ dateTime?: string | undefined;
1996
1996
  }>>;
1997
1997
  end: z.ZodOptional<z.ZodObject<{
1998
1998
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2000,12 +2000,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
2000
2000
  timeZone: z.ZodOptional<z.ZodString>;
2001
2001
  }, "strip", z.ZodTypeAny, {
2002
2002
  date?: string | undefined;
2003
- dateTime?: string | undefined;
2004
2003
  timeZone?: string | undefined;
2004
+ dateTime?: string | undefined;
2005
2005
  }, {
2006
2006
  date?: string | undefined;
2007
- dateTime?: string | undefined;
2008
2007
  timeZone?: string | undefined;
2008
+ dateTime?: string | undefined;
2009
2009
  }>>;
2010
2010
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2011
2011
  email: z.ZodString;
@@ -2014,14 +2014,14 @@ 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;
2017
2018
  optional?: boolean | undefined;
2018
2019
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2019
- displayName?: string | undefined;
2020
2020
  }, {
2021
2021
  email: string;
2022
+ displayName?: string | undefined;
2022
2023
  optional?: boolean | undefined;
2023
2024
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2024
- displayName?: string | undefined;
2025
2025
  }>, "many">>;
2026
2026
  organizer: z.ZodOptional<z.ZodObject<{
2027
2027
  email: z.ZodOptional<z.ZodString>;
@@ -2043,15 +2043,15 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
2043
2043
  iconLink: z.ZodOptional<z.ZodString>;
2044
2044
  }, "strip", z.ZodTypeAny, {
2045
2045
  title?: string | undefined;
2046
- fileId?: string | undefined;
2047
- fileUrl?: string | undefined;
2048
2046
  mimeType?: string | undefined;
2047
+ fileUrl?: string | undefined;
2048
+ fileId?: string | undefined;
2049
2049
  iconLink?: string | undefined;
2050
2050
  }, {
2051
2051
  title?: string | undefined;
2052
- fileId?: string | undefined;
2053
- fileUrl?: string | undefined;
2054
2052
  mimeType?: string | undefined;
2053
+ fileUrl?: string | undefined;
2054
+ fileId?: string | undefined;
2055
2055
  iconLink?: string | undefined;
2056
2056
  }>, "many">>;
2057
2057
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2093,13 +2093,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2093
2093
  }, "strip", z.ZodTypeAny, {
2094
2094
  operation: "list_calendars";
2095
2095
  max_results: number;
2096
- page_token?: string | undefined;
2097
2096
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2097
+ page_token?: string | undefined;
2098
2098
  }, {
2099
2099
  operation: "list_calendars";
2100
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2100
2101
  max_results?: number | undefined;
2101
2102
  page_token?: string | undefined;
2102
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2103
2103
  }>, z.ZodObject<{
2104
2104
  operation: z.ZodLiteral<"list_events">;
2105
2105
  calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -2114,25 +2114,25 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2114
2114
  }, "strip", z.ZodTypeAny, {
2115
2115
  operation: "list_events";
2116
2116
  max_results: number;
2117
+ order_by: "updated" | "startTime";
2117
2118
  calendar_id: string;
2118
2119
  single_events: boolean;
2119
- order_by: "startTime" | "updated";
2120
- page_token?: string | undefined;
2121
2120
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2121
+ q?: string | undefined;
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
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2127
2128
  max_results?: number | undefined;
2129
+ order_by?: "updated" | "startTime" | undefined;
2130
+ q?: string | undefined;
2128
2131
  page_token?: string | undefined;
2129
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2130
2132
  calendar_id?: string | undefined;
2131
2133
  time_min?: string | undefined;
2132
2134
  time_max?: string | undefined;
2133
- q?: string | undefined;
2134
2135
  single_events?: boolean | undefined;
2135
- order_by?: "startTime" | "updated" | undefined;
2136
2136
  }>, z.ZodObject<{
2137
2137
  operation: z.ZodLiteral<"get_event">;
2138
2138
  calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -2160,12 +2160,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2160
2160
  timeZone: z.ZodOptional<z.ZodString>;
2161
2161
  }, "strip", z.ZodTypeAny, {
2162
2162
  date?: string | undefined;
2163
- dateTime?: string | undefined;
2164
2163
  timeZone?: string | undefined;
2164
+ dateTime?: string | undefined;
2165
2165
  }, {
2166
2166
  date?: string | undefined;
2167
- dateTime?: string | undefined;
2168
2167
  timeZone?: string | undefined;
2168
+ dateTime?: string | undefined;
2169
2169
  }>;
2170
2170
  end: z.ZodObject<{
2171
2171
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2173,12 +2173,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2173
2173
  timeZone: z.ZodOptional<z.ZodString>;
2174
2174
  }, "strip", z.ZodTypeAny, {
2175
2175
  date?: string | undefined;
2176
- dateTime?: string | undefined;
2177
2176
  timeZone?: string | undefined;
2177
+ dateTime?: string | undefined;
2178
2178
  }, {
2179
2179
  date?: string | undefined;
2180
- dateTime?: string | undefined;
2181
2180
  timeZone?: string | undefined;
2181
+ dateTime?: string | undefined;
2182
2182
  }>;
2183
2183
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2184
2184
  email: z.ZodString;
@@ -2187,64 +2187,64 @@ 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;
2190
2191
  optional?: boolean | undefined;
2191
2192
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2192
- displayName?: string | undefined;
2193
2193
  }, {
2194
2194
  email: string;
2195
+ displayName?: string | undefined;
2195
2196
  optional?: boolean | undefined;
2196
2197
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2197
- displayName?: string | 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
2202
  operation: "create_event";
2203
- calendar_id: string;
2204
2203
  summary: string;
2205
2204
  start: {
2206
2205
  date?: string | undefined;
2207
- dateTime?: string | undefined;
2208
2206
  timeZone?: string | undefined;
2207
+ dateTime?: string | undefined;
2209
2208
  };
2210
2209
  end: {
2211
2210
  date?: string | undefined;
2212
- dateTime?: string | undefined;
2213
2211
  timeZone?: string | undefined;
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;
2221
2222
  optional?: boolean | undefined;
2222
2223
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2223
- displayName?: string | undefined;
2224
2224
  }[] | undefined;
2225
2225
  }, {
2226
2226
  operation: "create_event";
2227
2227
  summary: string;
2228
2228
  start: {
2229
2229
  date?: string | undefined;
2230
- dateTime?: string | undefined;
2231
2230
  timeZone?: string | undefined;
2231
+ dateTime?: string | undefined;
2232
2232
  };
2233
2233
  end: {
2234
2234
  date?: string | undefined;
2235
- dateTime?: string | undefined;
2236
2235
  timeZone?: string | undefined;
2236
+ dateTime?: string | undefined;
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;
2243
+ displayName?: string | undefined;
2244
2244
  optional?: boolean | undefined;
2245
2245
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2246
- displayName?: string | 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">;
@@ -2259,12 +2259,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2259
2259
  timeZone: z.ZodOptional<z.ZodString>;
2260
2260
  }, "strip", z.ZodTypeAny, {
2261
2261
  date?: string | undefined;
2262
- dateTime?: string | undefined;
2263
2262
  timeZone?: string | undefined;
2263
+ dateTime?: string | undefined;
2264
2264
  }, {
2265
2265
  date?: string | undefined;
2266
- dateTime?: string | undefined;
2267
2266
  timeZone?: string | undefined;
2267
+ dateTime?: string | undefined;
2268
2268
  }>>;
2269
2269
  end: z.ZodOptional<z.ZodObject<{
2270
2270
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2272,12 +2272,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2272
2272
  timeZone: z.ZodOptional<z.ZodString>;
2273
2273
  }, "strip", z.ZodTypeAny, {
2274
2274
  date?: string | undefined;
2275
- dateTime?: string | undefined;
2276
2275
  timeZone?: string | undefined;
2276
+ dateTime?: string | undefined;
2277
2277
  }, {
2278
2278
  date?: string | undefined;
2279
- dateTime?: string | undefined;
2280
2279
  timeZone?: string | undefined;
2280
+ dateTime?: string | undefined;
2281
2281
  }>>;
2282
2282
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2283
2283
  email: z.ZodString;
@@ -2286,14 +2286,14 @@ 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;
2289
2290
  optional?: boolean | undefined;
2290
2291
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2291
- displayName?: string | undefined;
2292
2292
  }, {
2293
2293
  email: string;
2294
+ displayName?: string | undefined;
2294
2295
  optional?: boolean | undefined;
2295
2296
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2296
- displayName?: string | undefined;
2297
2297
  }>, "many">>;
2298
2298
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2299
2299
  }, "strip", z.ZodTypeAny, {
@@ -2303,47 +2303,47 @@ 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
- dateTime?: string | undefined;
2310
2308
  timeZone?: string | undefined;
2309
+ dateTime?: string | undefined;
2311
2310
  } | undefined;
2311
+ location?: string | undefined;
2312
2312
  end?: {
2313
2313
  date?: string | undefined;
2314
- dateTime?: string | undefined;
2315
2314
  timeZone?: string | undefined;
2315
+ dateTime?: string | undefined;
2316
2316
  } | undefined;
2317
2317
  attendees?: {
2318
2318
  email: string;
2319
+ displayName?: string | undefined;
2319
2320
  optional?: boolean | undefined;
2320
2321
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2321
- displayName?: string | undefined;
2322
2322
  }[] | undefined;
2323
2323
  }, {
2324
2324
  operation: "update_event";
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
- dateTime?: string | undefined;
2334
2331
  timeZone?: string | undefined;
2332
+ dateTime?: string | undefined;
2335
2333
  } | undefined;
2334
+ location?: string | undefined;
2336
2335
  end?: {
2337
2336
  date?: string | undefined;
2338
- dateTime?: string | undefined;
2339
2337
  timeZone?: string | undefined;
2338
+ dateTime?: string | undefined;
2340
2339
  } | undefined;
2341
2340
  attendees?: {
2342
2341
  email: string;
2342
+ displayName?: string | undefined;
2343
2343
  optional?: boolean | undefined;
2344
2344
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2345
- displayName?: string | 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>>;
@@ -2354,14 +2354,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2354
2354
  operation: "delete_event";
2355
2355
  calendar_id: string;
2356
2356
  event_id: string;
2357
- send_updates: "all" | "externalOnly" | "none";
2357
+ send_updates: "none" | "all" | "externalOnly";
2358
2358
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2359
2359
  }, {
2360
2360
  operation: "delete_event";
2361
2361
  event_id: string;
2362
2362
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2363
2363
  calendar_id?: string | undefined;
2364
- send_updates?: "all" | "externalOnly" | "none" | undefined;
2364
+ send_updates?: "none" | "all" | "externalOnly" | undefined;
2365
2365
  }>]>;
2366
2366
  static readonly resultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
2367
2367
  operation: z.ZodLiteral<"list_calendars">;
@@ -2394,6 +2394,7 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2394
2394
  operation: "list_calendars";
2395
2395
  success: boolean;
2396
2396
  error: string;
2397
+ next_page_token?: string | undefined;
2397
2398
  calendars?: z.objectOutputType<{
2398
2399
  id: z.ZodString;
2399
2400
  summary: z.ZodOptional<z.ZodString>;
@@ -2402,11 +2403,11 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2402
2403
  selected: z.ZodOptional<z.ZodBoolean>;
2403
2404
  accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
2404
2405
  }, z.ZodTypeAny, "passthrough">[] | undefined;
2405
- next_page_token?: string | undefined;
2406
2406
  }, {
2407
2407
  operation: "list_calendars";
2408
2408
  success: boolean;
2409
2409
  error: string;
2410
+ next_page_token?: string | undefined;
2410
2411
  calendars?: z.objectInputType<{
2411
2412
  id: z.ZodString;
2412
2413
  summary: z.ZodOptional<z.ZodString>;
@@ -2415,7 +2416,6 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2415
2416
  selected: z.ZodOptional<z.ZodBoolean>;
2416
2417
  accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
2417
2418
  }, z.ZodTypeAny, "passthrough">[] | undefined;
2418
- next_page_token?: string | undefined;
2419
2419
  }>, z.ZodObject<{
2420
2420
  operation: z.ZodLiteral<"list_events">;
2421
2421
  success: z.ZodBoolean;
@@ -2434,12 +2434,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2434
2434
  timeZone: z.ZodOptional<z.ZodString>;
2435
2435
  }, "strip", z.ZodTypeAny, {
2436
2436
  date?: string | undefined;
2437
- dateTime?: string | undefined;
2438
2437
  timeZone?: string | undefined;
2438
+ dateTime?: string | undefined;
2439
2439
  }, {
2440
2440
  date?: string | undefined;
2441
- dateTime?: string | undefined;
2442
2441
  timeZone?: string | undefined;
2442
+ dateTime?: string | undefined;
2443
2443
  }>>;
2444
2444
  end: z.ZodOptional<z.ZodObject<{
2445
2445
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2447,12 +2447,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2447
2447
  timeZone: z.ZodOptional<z.ZodString>;
2448
2448
  }, "strip", z.ZodTypeAny, {
2449
2449
  date?: string | undefined;
2450
- dateTime?: string | undefined;
2451
2450
  timeZone?: string | undefined;
2451
+ dateTime?: string | undefined;
2452
2452
  }, {
2453
2453
  date?: string | undefined;
2454
- dateTime?: string | undefined;
2455
2454
  timeZone?: string | undefined;
2455
+ dateTime?: string | undefined;
2456
2456
  }>>;
2457
2457
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2458
2458
  email: z.ZodString;
@@ -2461,14 +2461,14 @@ 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;
2464
2465
  optional?: boolean | undefined;
2465
2466
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2466
- displayName?: string | undefined;
2467
2467
  }, {
2468
2468
  email: string;
2469
+ displayName?: string | undefined;
2469
2470
  optional?: boolean | undefined;
2470
2471
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2471
- displayName?: string | undefined;
2472
2472
  }>, "many">>;
2473
2473
  organizer: z.ZodOptional<z.ZodObject<{
2474
2474
  email: z.ZodOptional<z.ZodString>;
@@ -2490,15 +2490,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2490
2490
  iconLink: z.ZodOptional<z.ZodString>;
2491
2491
  }, "strip", z.ZodTypeAny, {
2492
2492
  title?: string | undefined;
2493
- fileId?: string | undefined;
2494
- fileUrl?: string | undefined;
2495
2493
  mimeType?: string | undefined;
2494
+ fileUrl?: string | undefined;
2495
+ fileId?: string | undefined;
2496
2496
  iconLink?: string | undefined;
2497
2497
  }, {
2498
2498
  title?: string | undefined;
2499
- fileId?: string | undefined;
2500
- fileUrl?: string | undefined;
2501
2499
  mimeType?: string | undefined;
2500
+ fileUrl?: string | undefined;
2501
+ fileId?: string | undefined;
2502
2502
  iconLink?: string | undefined;
2503
2503
  }>, "many">>;
2504
2504
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2517,12 +2517,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2517
2517
  timeZone: z.ZodOptional<z.ZodString>;
2518
2518
  }, "strip", z.ZodTypeAny, {
2519
2519
  date?: string | undefined;
2520
- dateTime?: string | undefined;
2521
2520
  timeZone?: string | undefined;
2521
+ dateTime?: string | undefined;
2522
2522
  }, {
2523
2523
  date?: string | undefined;
2524
- dateTime?: string | undefined;
2525
2524
  timeZone?: string | undefined;
2525
+ dateTime?: string | undefined;
2526
2526
  }>>;
2527
2527
  end: z.ZodOptional<z.ZodObject<{
2528
2528
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2530,12 +2530,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2530
2530
  timeZone: z.ZodOptional<z.ZodString>;
2531
2531
  }, "strip", z.ZodTypeAny, {
2532
2532
  date?: string | undefined;
2533
- dateTime?: string | undefined;
2534
2533
  timeZone?: string | undefined;
2534
+ dateTime?: string | undefined;
2535
2535
  }, {
2536
2536
  date?: string | undefined;
2537
- dateTime?: string | undefined;
2538
2537
  timeZone?: string | undefined;
2538
+ dateTime?: string | undefined;
2539
2539
  }>>;
2540
2540
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2541
2541
  email: z.ZodString;
@@ -2544,14 +2544,14 @@ 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;
2547
2548
  optional?: boolean | undefined;
2548
2549
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2549
- displayName?: string | undefined;
2550
2550
  }, {
2551
2551
  email: string;
2552
+ displayName?: string | undefined;
2552
2553
  optional?: boolean | undefined;
2553
2554
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2554
- displayName?: string | undefined;
2555
2555
  }>, "many">>;
2556
2556
  organizer: z.ZodOptional<z.ZodObject<{
2557
2557
  email: z.ZodOptional<z.ZodString>;
@@ -2573,15 +2573,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2573
2573
  iconLink: z.ZodOptional<z.ZodString>;
2574
2574
  }, "strip", z.ZodTypeAny, {
2575
2575
  title?: string | undefined;
2576
- fileId?: string | undefined;
2577
- fileUrl?: string | undefined;
2578
2576
  mimeType?: string | undefined;
2577
+ fileUrl?: string | undefined;
2578
+ fileId?: string | undefined;
2579
2579
  iconLink?: string | undefined;
2580
2580
  }, {
2581
2581
  title?: string | undefined;
2582
- fileId?: string | undefined;
2583
- fileUrl?: string | undefined;
2584
2582
  mimeType?: string | undefined;
2583
+ fileUrl?: string | undefined;
2584
+ fileId?: string | undefined;
2585
2585
  iconLink?: string | undefined;
2586
2586
  }>, "many">>;
2587
2587
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2600,12 +2600,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2600
2600
  timeZone: z.ZodOptional<z.ZodString>;
2601
2601
  }, "strip", z.ZodTypeAny, {
2602
2602
  date?: string | undefined;
2603
- dateTime?: string | undefined;
2604
2603
  timeZone?: string | undefined;
2604
+ dateTime?: string | undefined;
2605
2605
  }, {
2606
2606
  date?: string | undefined;
2607
- dateTime?: string | undefined;
2608
2607
  timeZone?: string | undefined;
2608
+ dateTime?: string | undefined;
2609
2609
  }>>;
2610
2610
  end: z.ZodOptional<z.ZodObject<{
2611
2611
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2613,12 +2613,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2613
2613
  timeZone: z.ZodOptional<z.ZodString>;
2614
2614
  }, "strip", z.ZodTypeAny, {
2615
2615
  date?: string | undefined;
2616
- dateTime?: string | undefined;
2617
2616
  timeZone?: string | undefined;
2617
+ dateTime?: string | undefined;
2618
2618
  }, {
2619
2619
  date?: string | undefined;
2620
- dateTime?: string | undefined;
2621
2620
  timeZone?: string | undefined;
2621
+ dateTime?: string | undefined;
2622
2622
  }>>;
2623
2623
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2624
2624
  email: z.ZodString;
@@ -2627,14 +2627,14 @@ 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;
2630
2631
  optional?: boolean | undefined;
2631
2632
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2632
- displayName?: string | undefined;
2633
2633
  }, {
2634
2634
  email: string;
2635
+ displayName?: string | undefined;
2635
2636
  optional?: boolean | undefined;
2636
2637
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2637
- displayName?: string | undefined;
2638
2638
  }>, "many">>;
2639
2639
  organizer: z.ZodOptional<z.ZodObject<{
2640
2640
  email: z.ZodOptional<z.ZodString>;
@@ -2656,15 +2656,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2656
2656
  iconLink: z.ZodOptional<z.ZodString>;
2657
2657
  }, "strip", z.ZodTypeAny, {
2658
2658
  title?: string | undefined;
2659
- fileId?: string | undefined;
2660
- fileUrl?: string | undefined;
2661
2659
  mimeType?: string | undefined;
2660
+ fileUrl?: string | undefined;
2661
+ fileId?: string | undefined;
2662
2662
  iconLink?: string | undefined;
2663
2663
  }, {
2664
2664
  title?: string | undefined;
2665
- fileId?: string | undefined;
2666
- fileUrl?: string | undefined;
2667
2665
  mimeType?: string | undefined;
2666
+ fileUrl?: string | undefined;
2667
+ fileId?: string | undefined;
2668
2668
  iconLink?: string | undefined;
2669
2669
  }>, "many">>;
2670
2670
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2691,12 +2691,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2691
2691
  timeZone: z.ZodOptional<z.ZodString>;
2692
2692
  }, "strip", z.ZodTypeAny, {
2693
2693
  date?: string | undefined;
2694
- dateTime?: string | undefined;
2695
2694
  timeZone?: string | undefined;
2695
+ dateTime?: string | undefined;
2696
2696
  }, {
2697
2697
  date?: string | undefined;
2698
- dateTime?: string | undefined;
2699
2698
  timeZone?: string | undefined;
2699
+ dateTime?: string | undefined;
2700
2700
  }>>;
2701
2701
  end: z.ZodOptional<z.ZodObject<{
2702
2702
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2704,12 +2704,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2704
2704
  timeZone: z.ZodOptional<z.ZodString>;
2705
2705
  }, "strip", z.ZodTypeAny, {
2706
2706
  date?: string | undefined;
2707
- dateTime?: string | undefined;
2708
2707
  timeZone?: string | undefined;
2708
+ dateTime?: string | undefined;
2709
2709
  }, {
2710
2710
  date?: string | undefined;
2711
- dateTime?: string | undefined;
2712
2711
  timeZone?: string | undefined;
2712
+ dateTime?: string | undefined;
2713
2713
  }>>;
2714
2714
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2715
2715
  email: z.ZodString;
@@ -2718,14 +2718,14 @@ 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;
2721
2722
  optional?: boolean | undefined;
2722
2723
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2723
- displayName?: string | undefined;
2724
2724
  }, {
2725
2725
  email: string;
2726
+ displayName?: string | undefined;
2726
2727
  optional?: boolean | undefined;
2727
2728
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2728
- displayName?: string | undefined;
2729
2729
  }>, "many">>;
2730
2730
  organizer: z.ZodOptional<z.ZodObject<{
2731
2731
  email: z.ZodOptional<z.ZodString>;
@@ -2747,15 +2747,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2747
2747
  iconLink: z.ZodOptional<z.ZodString>;
2748
2748
  }, "strip", z.ZodTypeAny, {
2749
2749
  title?: string | undefined;
2750
- fileId?: string | undefined;
2751
- fileUrl?: string | undefined;
2752
2750
  mimeType?: string | undefined;
2751
+ fileUrl?: string | undefined;
2752
+ fileId?: string | undefined;
2753
2753
  iconLink?: string | undefined;
2754
2754
  }, {
2755
2755
  title?: string | undefined;
2756
- fileId?: string | undefined;
2757
- fileUrl?: string | undefined;
2758
2756
  mimeType?: string | undefined;
2757
+ fileUrl?: string | undefined;
2758
+ fileId?: string | undefined;
2759
2759
  iconLink?: string | undefined;
2760
2760
  }>, "many">>;
2761
2761
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2780,12 +2780,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2780
2780
  timeZone: z.ZodOptional<z.ZodString>;
2781
2781
  }, "strip", z.ZodTypeAny, {
2782
2782
  date?: string | undefined;
2783
- dateTime?: string | undefined;
2784
2783
  timeZone?: string | undefined;
2784
+ dateTime?: string | undefined;
2785
2785
  }, {
2786
2786
  date?: string | undefined;
2787
- dateTime?: string | undefined;
2788
2787
  timeZone?: string | undefined;
2788
+ dateTime?: string | undefined;
2789
2789
  }>>;
2790
2790
  end: z.ZodOptional<z.ZodObject<{
2791
2791
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2793,12 +2793,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2793
2793
  timeZone: z.ZodOptional<z.ZodString>;
2794
2794
  }, "strip", z.ZodTypeAny, {
2795
2795
  date?: string | undefined;
2796
- dateTime?: string | undefined;
2797
2796
  timeZone?: string | undefined;
2797
+ dateTime?: string | undefined;
2798
2798
  }, {
2799
2799
  date?: string | undefined;
2800
- dateTime?: string | undefined;
2801
2800
  timeZone?: string | undefined;
2801
+ dateTime?: string | undefined;
2802
2802
  }>>;
2803
2803
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2804
2804
  email: z.ZodString;
@@ -2807,14 +2807,14 @@ 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;
2810
2811
  optional?: boolean | undefined;
2811
2812
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2812
- displayName?: string | undefined;
2813
2813
  }, {
2814
2814
  email: string;
2815
+ displayName?: string | undefined;
2815
2816
  optional?: boolean | undefined;
2816
2817
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2817
- displayName?: string | undefined;
2818
2818
  }>, "many">>;
2819
2819
  organizer: z.ZodOptional<z.ZodObject<{
2820
2820
  email: z.ZodOptional<z.ZodString>;
@@ -2836,15 +2836,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2836
2836
  iconLink: z.ZodOptional<z.ZodString>;
2837
2837
  }, "strip", z.ZodTypeAny, {
2838
2838
  title?: string | undefined;
2839
- fileId?: string | undefined;
2840
- fileUrl?: string | undefined;
2841
2839
  mimeType?: string | undefined;
2840
+ fileUrl?: string | undefined;
2841
+ fileId?: string | undefined;
2842
2842
  iconLink?: string | undefined;
2843
2843
  }, {
2844
2844
  title?: string | undefined;
2845
- fileId?: string | undefined;
2846
- fileUrl?: string | undefined;
2847
2845
  mimeType?: string | undefined;
2846
+ fileUrl?: string | undefined;
2847
+ fileId?: string | undefined;
2848
2848
  iconLink?: string | undefined;
2849
2849
  }>, "many">>;
2850
2850
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2867,12 +2867,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2867
2867
  timeZone: z.ZodOptional<z.ZodString>;
2868
2868
  }, "strip", z.ZodTypeAny, {
2869
2869
  date?: string | undefined;
2870
- dateTime?: string | undefined;
2871
2870
  timeZone?: string | undefined;
2871
+ dateTime?: string | undefined;
2872
2872
  }, {
2873
2873
  date?: string | undefined;
2874
- dateTime?: string | undefined;
2875
2874
  timeZone?: string | undefined;
2875
+ dateTime?: string | undefined;
2876
2876
  }>>;
2877
2877
  end: z.ZodOptional<z.ZodObject<{
2878
2878
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2880,12 +2880,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2880
2880
  timeZone: z.ZodOptional<z.ZodString>;
2881
2881
  }, "strip", z.ZodTypeAny, {
2882
2882
  date?: string | undefined;
2883
- dateTime?: string | undefined;
2884
2883
  timeZone?: string | undefined;
2884
+ dateTime?: string | undefined;
2885
2885
  }, {
2886
2886
  date?: string | undefined;
2887
- dateTime?: string | undefined;
2888
2887
  timeZone?: string | undefined;
2888
+ dateTime?: string | undefined;
2889
2889
  }>>;
2890
2890
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2891
2891
  email: z.ZodString;
@@ -2894,14 +2894,14 @@ 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;
2897
2898
  optional?: boolean | undefined;
2898
2899
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2899
- displayName?: string | undefined;
2900
2900
  }, {
2901
2901
  email: string;
2902
+ displayName?: string | undefined;
2902
2903
  optional?: boolean | undefined;
2903
2904
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2904
- displayName?: string | undefined;
2905
2905
  }>, "many">>;
2906
2906
  organizer: z.ZodOptional<z.ZodObject<{
2907
2907
  email: z.ZodOptional<z.ZodString>;
@@ -2923,15 +2923,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2923
2923
  iconLink: z.ZodOptional<z.ZodString>;
2924
2924
  }, "strip", z.ZodTypeAny, {
2925
2925
  title?: string | undefined;
2926
- fileId?: string | undefined;
2927
- fileUrl?: string | undefined;
2928
2926
  mimeType?: string | undefined;
2927
+ fileUrl?: string | undefined;
2928
+ fileId?: string | undefined;
2929
2929
  iconLink?: string | undefined;
2930
2930
  }, {
2931
2931
  title?: string | undefined;
2932
- fileId?: string | undefined;
2933
- fileUrl?: string | undefined;
2934
2932
  mimeType?: string | undefined;
2933
+ fileUrl?: string | undefined;
2934
+ fileId?: string | undefined;
2935
2935
  iconLink?: string | undefined;
2936
2936
  }>, "many">>;
2937
2937
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2950,12 +2950,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2950
2950
  timeZone: z.ZodOptional<z.ZodString>;
2951
2951
  }, "strip", z.ZodTypeAny, {
2952
2952
  date?: string | undefined;
2953
- dateTime?: string | undefined;
2954
2953
  timeZone?: string | undefined;
2954
+ dateTime?: string | undefined;
2955
2955
  }, {
2956
2956
  date?: string | undefined;
2957
- dateTime?: string | undefined;
2958
2957
  timeZone?: string | undefined;
2958
+ dateTime?: string | undefined;
2959
2959
  }>>;
2960
2960
  end: z.ZodOptional<z.ZodObject<{
2961
2961
  dateTime: z.ZodOptional<z.ZodString>;
@@ -2963,12 +2963,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2963
2963
  timeZone: z.ZodOptional<z.ZodString>;
2964
2964
  }, "strip", z.ZodTypeAny, {
2965
2965
  date?: string | undefined;
2966
- dateTime?: string | undefined;
2967
2966
  timeZone?: string | undefined;
2967
+ dateTime?: string | undefined;
2968
2968
  }, {
2969
2969
  date?: string | undefined;
2970
- dateTime?: string | undefined;
2971
2970
  timeZone?: string | undefined;
2971
+ dateTime?: string | undefined;
2972
2972
  }>>;
2973
2973
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2974
2974
  email: z.ZodString;
@@ -2977,14 +2977,14 @@ 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;
2980
2981
  optional?: boolean | undefined;
2981
2982
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2982
- displayName?: string | undefined;
2983
2983
  }, {
2984
2984
  email: string;
2985
+ displayName?: string | undefined;
2985
2986
  optional?: boolean | undefined;
2986
2987
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2987
- displayName?: string | undefined;
2988
2988
  }>, "many">>;
2989
2989
  organizer: z.ZodOptional<z.ZodObject<{
2990
2990
  email: z.ZodOptional<z.ZodString>;
@@ -3006,15 +3006,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3006
3006
  iconLink: z.ZodOptional<z.ZodString>;
3007
3007
  }, "strip", z.ZodTypeAny, {
3008
3008
  title?: string | undefined;
3009
- fileId?: string | undefined;
3010
- fileUrl?: string | undefined;
3011
3009
  mimeType?: string | undefined;
3010
+ fileUrl?: string | undefined;
3011
+ fileId?: string | undefined;
3012
3012
  iconLink?: string | undefined;
3013
3013
  }, {
3014
3014
  title?: string | undefined;
3015
- fileId?: string | undefined;
3016
- fileUrl?: string | undefined;
3017
3015
  mimeType?: string | undefined;
3016
+ fileUrl?: string | undefined;
3017
+ fileId?: string | undefined;
3018
3018
  iconLink?: string | undefined;
3019
3019
  }>, "many">>;
3020
3020
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3033,12 +3033,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3033
3033
  timeZone: z.ZodOptional<z.ZodString>;
3034
3034
  }, "strip", z.ZodTypeAny, {
3035
3035
  date?: string | undefined;
3036
- dateTime?: string | undefined;
3037
3036
  timeZone?: string | undefined;
3037
+ dateTime?: string | undefined;
3038
3038
  }, {
3039
3039
  date?: string | undefined;
3040
- dateTime?: string | undefined;
3041
3040
  timeZone?: string | undefined;
3041
+ dateTime?: string | undefined;
3042
3042
  }>>;
3043
3043
  end: z.ZodOptional<z.ZodObject<{
3044
3044
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3046,12 +3046,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3046
3046
  timeZone: z.ZodOptional<z.ZodString>;
3047
3047
  }, "strip", z.ZodTypeAny, {
3048
3048
  date?: string | undefined;
3049
- dateTime?: string | undefined;
3050
3049
  timeZone?: string | undefined;
3050
+ dateTime?: string | undefined;
3051
3051
  }, {
3052
3052
  date?: string | undefined;
3053
- dateTime?: string | undefined;
3054
3053
  timeZone?: string | undefined;
3054
+ dateTime?: string | undefined;
3055
3055
  }>>;
3056
3056
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3057
3057
  email: z.ZodString;
@@ -3060,14 +3060,14 @@ 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;
3063
3064
  optional?: boolean | undefined;
3064
3065
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3065
- displayName?: string | undefined;
3066
3066
  }, {
3067
3067
  email: string;
3068
+ displayName?: string | undefined;
3068
3069
  optional?: boolean | undefined;
3069
3070
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3070
- displayName?: string | undefined;
3071
3071
  }>, "many">>;
3072
3072
  organizer: z.ZodOptional<z.ZodObject<{
3073
3073
  email: z.ZodOptional<z.ZodString>;
@@ -3089,15 +3089,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3089
3089
  iconLink: z.ZodOptional<z.ZodString>;
3090
3090
  }, "strip", z.ZodTypeAny, {
3091
3091
  title?: string | undefined;
3092
- fileId?: string | undefined;
3093
- fileUrl?: string | undefined;
3094
3092
  mimeType?: string | undefined;
3093
+ fileUrl?: string | undefined;
3094
+ fileId?: string | undefined;
3095
3095
  iconLink?: string | undefined;
3096
3096
  }, {
3097
3097
  title?: string | undefined;
3098
- fileId?: string | undefined;
3099
- fileUrl?: string | undefined;
3100
3098
  mimeType?: string | undefined;
3099
+ fileUrl?: string | undefined;
3100
+ fileId?: string | undefined;
3101
3101
  iconLink?: string | undefined;
3102
3102
  }>, "many">>;
3103
3103
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3122,12 +3122,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3122
3122
  timeZone: z.ZodOptional<z.ZodString>;
3123
3123
  }, "strip", z.ZodTypeAny, {
3124
3124
  date?: string | undefined;
3125
- dateTime?: string | undefined;
3126
3125
  timeZone?: string | undefined;
3126
+ dateTime?: string | undefined;
3127
3127
  }, {
3128
3128
  date?: string | undefined;
3129
- dateTime?: string | undefined;
3130
3129
  timeZone?: string | undefined;
3130
+ dateTime?: string | undefined;
3131
3131
  }>>;
3132
3132
  end: z.ZodOptional<z.ZodObject<{
3133
3133
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3135,12 +3135,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3135
3135
  timeZone: z.ZodOptional<z.ZodString>;
3136
3136
  }, "strip", z.ZodTypeAny, {
3137
3137
  date?: string | undefined;
3138
- dateTime?: string | undefined;
3139
3138
  timeZone?: string | undefined;
3139
+ dateTime?: string | undefined;
3140
3140
  }, {
3141
3141
  date?: string | undefined;
3142
- dateTime?: string | undefined;
3143
3142
  timeZone?: string | undefined;
3143
+ dateTime?: string | undefined;
3144
3144
  }>>;
3145
3145
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3146
3146
  email: z.ZodString;
@@ -3149,14 +3149,14 @@ 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;
3152
3153
  optional?: boolean | undefined;
3153
3154
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3154
- displayName?: string | undefined;
3155
3155
  }, {
3156
3156
  email: string;
3157
+ displayName?: string | undefined;
3157
3158
  optional?: boolean | undefined;
3158
3159
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3159
- displayName?: string | undefined;
3160
3160
  }>, "many">>;
3161
3161
  organizer: z.ZodOptional<z.ZodObject<{
3162
3162
  email: z.ZodOptional<z.ZodString>;
@@ -3178,15 +3178,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3178
3178
  iconLink: z.ZodOptional<z.ZodString>;
3179
3179
  }, "strip", z.ZodTypeAny, {
3180
3180
  title?: string | undefined;
3181
- fileId?: string | undefined;
3182
- fileUrl?: string | undefined;
3183
3181
  mimeType?: string | undefined;
3182
+ fileUrl?: string | undefined;
3183
+ fileId?: string | undefined;
3184
3184
  iconLink?: string | undefined;
3185
3185
  }, {
3186
3186
  title?: string | undefined;
3187
- fileId?: string | undefined;
3188
- fileUrl?: string | undefined;
3189
3187
  mimeType?: string | undefined;
3188
+ fileUrl?: string | undefined;
3189
+ fileId?: string | undefined;
3190
3190
  iconLink?: string | undefined;
3191
3191
  }>, "many">>;
3192
3192
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3210,12 +3210,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3210
3210
  timeZone: z.ZodOptional<z.ZodString>;
3211
3211
  }, "strip", z.ZodTypeAny, {
3212
3212
  date?: string | undefined;
3213
- dateTime?: string | undefined;
3214
3213
  timeZone?: string | undefined;
3214
+ dateTime?: string | undefined;
3215
3215
  }, {
3216
3216
  date?: string | undefined;
3217
- dateTime?: string | undefined;
3218
3217
  timeZone?: string | undefined;
3218
+ dateTime?: string | undefined;
3219
3219
  }>>;
3220
3220
  end: z.ZodOptional<z.ZodObject<{
3221
3221
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3223,12 +3223,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3223
3223
  timeZone: z.ZodOptional<z.ZodString>;
3224
3224
  }, "strip", z.ZodTypeAny, {
3225
3225
  date?: string | undefined;
3226
- dateTime?: string | undefined;
3227
3226
  timeZone?: string | undefined;
3227
+ dateTime?: string | undefined;
3228
3228
  }, {
3229
3229
  date?: string | undefined;
3230
- dateTime?: string | undefined;
3231
3230
  timeZone?: string | undefined;
3231
+ dateTime?: string | undefined;
3232
3232
  }>>;
3233
3233
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3234
3234
  email: z.ZodString;
@@ -3237,14 +3237,14 @@ 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;
3240
3241
  optional?: boolean | undefined;
3241
3242
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3242
- displayName?: string | undefined;
3243
3243
  }, {
3244
3244
  email: string;
3245
+ displayName?: string | undefined;
3245
3246
  optional?: boolean | undefined;
3246
3247
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3247
- displayName?: string | undefined;
3248
3248
  }>, "many">>;
3249
3249
  organizer: z.ZodOptional<z.ZodObject<{
3250
3250
  email: z.ZodOptional<z.ZodString>;
@@ -3266,15 +3266,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3266
3266
  iconLink: z.ZodOptional<z.ZodString>;
3267
3267
  }, "strip", z.ZodTypeAny, {
3268
3268
  title?: string | undefined;
3269
- fileId?: string | undefined;
3270
- fileUrl?: string | undefined;
3271
3269
  mimeType?: string | undefined;
3270
+ fileUrl?: string | undefined;
3271
+ fileId?: string | undefined;
3272
3272
  iconLink?: string | undefined;
3273
3273
  }, {
3274
3274
  title?: string | undefined;
3275
- fileId?: string | undefined;
3276
- fileUrl?: string | undefined;
3277
3275
  mimeType?: string | undefined;
3276
+ fileUrl?: string | undefined;
3277
+ fileId?: string | undefined;
3278
3278
  iconLink?: string | undefined;
3279
3279
  }>, "many">>;
3280
3280
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3297,12 +3297,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3297
3297
  timeZone: z.ZodOptional<z.ZodString>;
3298
3298
  }, "strip", z.ZodTypeAny, {
3299
3299
  date?: string | undefined;
3300
- dateTime?: string | undefined;
3301
3300
  timeZone?: string | undefined;
3301
+ dateTime?: string | undefined;
3302
3302
  }, {
3303
3303
  date?: string | undefined;
3304
- dateTime?: string | undefined;
3305
3304
  timeZone?: string | undefined;
3305
+ dateTime?: string | undefined;
3306
3306
  }>>;
3307
3307
  end: z.ZodOptional<z.ZodObject<{
3308
3308
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3310,12 +3310,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3310
3310
  timeZone: z.ZodOptional<z.ZodString>;
3311
3311
  }, "strip", z.ZodTypeAny, {
3312
3312
  date?: string | undefined;
3313
- dateTime?: string | undefined;
3314
3313
  timeZone?: string | undefined;
3314
+ dateTime?: string | undefined;
3315
3315
  }, {
3316
3316
  date?: string | undefined;
3317
- dateTime?: string | undefined;
3318
3317
  timeZone?: string | undefined;
3318
+ dateTime?: string | undefined;
3319
3319
  }>>;
3320
3320
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3321
3321
  email: z.ZodString;
@@ -3324,14 +3324,14 @@ 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;
3327
3328
  optional?: boolean | undefined;
3328
3329
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3329
- displayName?: string | undefined;
3330
3330
  }, {
3331
3331
  email: string;
3332
+ displayName?: string | undefined;
3332
3333
  optional?: boolean | undefined;
3333
3334
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3334
- displayName?: string | undefined;
3335
3335
  }>, "many">>;
3336
3336
  organizer: z.ZodOptional<z.ZodObject<{
3337
3337
  email: z.ZodOptional<z.ZodString>;
@@ -3353,15 +3353,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3353
3353
  iconLink: z.ZodOptional<z.ZodString>;
3354
3354
  }, "strip", z.ZodTypeAny, {
3355
3355
  title?: string | undefined;
3356
- fileId?: string | undefined;
3357
- fileUrl?: string | undefined;
3358
3356
  mimeType?: string | undefined;
3357
+ fileUrl?: string | undefined;
3358
+ fileId?: string | undefined;
3359
3359
  iconLink?: string | undefined;
3360
3360
  }, {
3361
3361
  title?: string | undefined;
3362
- fileId?: string | undefined;
3363
- fileUrl?: string | undefined;
3364
3362
  mimeType?: string | undefined;
3363
+ fileUrl?: string | undefined;
3364
+ fileId?: string | undefined;
3365
3365
  iconLink?: string | undefined;
3366
3366
  }>, "many">>;
3367
3367
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3380,12 +3380,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3380
3380
  timeZone: z.ZodOptional<z.ZodString>;
3381
3381
  }, "strip", z.ZodTypeAny, {
3382
3382
  date?: string | undefined;
3383
- dateTime?: string | undefined;
3384
3383
  timeZone?: string | undefined;
3384
+ dateTime?: string | undefined;
3385
3385
  }, {
3386
3386
  date?: string | undefined;
3387
- dateTime?: string | undefined;
3388
3387
  timeZone?: string | undefined;
3388
+ dateTime?: string | undefined;
3389
3389
  }>>;
3390
3390
  end: z.ZodOptional<z.ZodObject<{
3391
3391
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3393,12 +3393,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3393
3393
  timeZone: z.ZodOptional<z.ZodString>;
3394
3394
  }, "strip", z.ZodTypeAny, {
3395
3395
  date?: string | undefined;
3396
- dateTime?: string | undefined;
3397
3396
  timeZone?: string | undefined;
3397
+ dateTime?: string | undefined;
3398
3398
  }, {
3399
3399
  date?: string | undefined;
3400
- dateTime?: string | undefined;
3401
3400
  timeZone?: string | undefined;
3401
+ dateTime?: string | undefined;
3402
3402
  }>>;
3403
3403
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3404
3404
  email: z.ZodString;
@@ -3407,14 +3407,14 @@ 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;
3410
3411
  optional?: boolean | undefined;
3411
3412
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3412
- displayName?: string | undefined;
3413
3413
  }, {
3414
3414
  email: string;
3415
+ displayName?: string | undefined;
3415
3416
  optional?: boolean | undefined;
3416
3417
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3417
- displayName?: string | undefined;
3418
3418
  }>, "many">>;
3419
3419
  organizer: z.ZodOptional<z.ZodObject<{
3420
3420
  email: z.ZodOptional<z.ZodString>;
@@ -3436,15 +3436,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3436
3436
  iconLink: z.ZodOptional<z.ZodString>;
3437
3437
  }, "strip", z.ZodTypeAny, {
3438
3438
  title?: string | undefined;
3439
- fileId?: string | undefined;
3440
- fileUrl?: string | undefined;
3441
3439
  mimeType?: string | undefined;
3440
+ fileUrl?: string | undefined;
3441
+ fileId?: string | undefined;
3442
3442
  iconLink?: string | undefined;
3443
3443
  }, {
3444
3444
  title?: string | undefined;
3445
- fileId?: string | undefined;
3446
- fileUrl?: string | undefined;
3447
3445
  mimeType?: string | undefined;
3446
+ fileUrl?: string | undefined;
3447
+ fileId?: string | undefined;
3448
3448
  iconLink?: string | undefined;
3449
3449
  }>, "many">>;
3450
3450
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3463,12 +3463,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3463
3463
  timeZone: z.ZodOptional<z.ZodString>;
3464
3464
  }, "strip", z.ZodTypeAny, {
3465
3465
  date?: string | undefined;
3466
- dateTime?: string | undefined;
3467
3466
  timeZone?: string | undefined;
3467
+ dateTime?: string | undefined;
3468
3468
  }, {
3469
3469
  date?: string | undefined;
3470
- dateTime?: string | undefined;
3471
3470
  timeZone?: string | undefined;
3471
+ dateTime?: string | undefined;
3472
3472
  }>>;
3473
3473
  end: z.ZodOptional<z.ZodObject<{
3474
3474
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3476,12 +3476,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3476
3476
  timeZone: z.ZodOptional<z.ZodString>;
3477
3477
  }, "strip", z.ZodTypeAny, {
3478
3478
  date?: string | undefined;
3479
- dateTime?: string | undefined;
3480
3479
  timeZone?: string | undefined;
3480
+ dateTime?: string | undefined;
3481
3481
  }, {
3482
3482
  date?: string | undefined;
3483
- dateTime?: string | undefined;
3484
3483
  timeZone?: string | undefined;
3484
+ dateTime?: string | undefined;
3485
3485
  }>>;
3486
3486
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3487
3487
  email: z.ZodString;
@@ -3490,14 +3490,14 @@ 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;
3493
3494
  optional?: boolean | undefined;
3494
3495
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3495
- displayName?: string | undefined;
3496
3496
  }, {
3497
3497
  email: string;
3498
+ displayName?: string | undefined;
3498
3499
  optional?: boolean | undefined;
3499
3500
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3500
- displayName?: string | undefined;
3501
3501
  }>, "many">>;
3502
3502
  organizer: z.ZodOptional<z.ZodObject<{
3503
3503
  email: z.ZodOptional<z.ZodString>;
@@ -3519,15 +3519,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3519
3519
  iconLink: z.ZodOptional<z.ZodString>;
3520
3520
  }, "strip", z.ZodTypeAny, {
3521
3521
  title?: string | undefined;
3522
- fileId?: string | undefined;
3523
- fileUrl?: string | undefined;
3524
3522
  mimeType?: string | undefined;
3523
+ fileUrl?: string | undefined;
3524
+ fileId?: string | undefined;
3525
3525
  iconLink?: string | undefined;
3526
3526
  }, {
3527
3527
  title?: string | undefined;
3528
- fileId?: string | undefined;
3529
- fileUrl?: string | undefined;
3530
3528
  mimeType?: string | undefined;
3529
+ fileUrl?: string | undefined;
3530
+ fileId?: string | undefined;
3531
3531
  iconLink?: string | undefined;
3532
3532
  }>, "many">>;
3533
3533
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3552,12 +3552,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3552
3552
  timeZone: z.ZodOptional<z.ZodString>;
3553
3553
  }, "strip", z.ZodTypeAny, {
3554
3554
  date?: string | undefined;
3555
- dateTime?: string | undefined;
3556
3555
  timeZone?: string | undefined;
3556
+ dateTime?: string | undefined;
3557
3557
  }, {
3558
3558
  date?: string | undefined;
3559
- dateTime?: string | undefined;
3560
3559
  timeZone?: string | undefined;
3560
+ dateTime?: string | undefined;
3561
3561
  }>>;
3562
3562
  end: z.ZodOptional<z.ZodObject<{
3563
3563
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3565,12 +3565,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3565
3565
  timeZone: z.ZodOptional<z.ZodString>;
3566
3566
  }, "strip", z.ZodTypeAny, {
3567
3567
  date?: string | undefined;
3568
- dateTime?: string | undefined;
3569
3568
  timeZone?: string | undefined;
3569
+ dateTime?: string | undefined;
3570
3570
  }, {
3571
3571
  date?: string | undefined;
3572
- dateTime?: string | undefined;
3573
3572
  timeZone?: string | undefined;
3573
+ dateTime?: string | undefined;
3574
3574
  }>>;
3575
3575
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3576
3576
  email: z.ZodString;
@@ -3579,14 +3579,14 @@ 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;
3582
3583
  optional?: boolean | undefined;
3583
3584
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3584
- displayName?: string | undefined;
3585
3585
  }, {
3586
3586
  email: string;
3587
+ displayName?: string | undefined;
3587
3588
  optional?: boolean | undefined;
3588
3589
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3589
- displayName?: string | undefined;
3590
3590
  }>, "many">>;
3591
3591
  organizer: z.ZodOptional<z.ZodObject<{
3592
3592
  email: z.ZodOptional<z.ZodString>;
@@ -3608,15 +3608,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3608
3608
  iconLink: z.ZodOptional<z.ZodString>;
3609
3609
  }, "strip", z.ZodTypeAny, {
3610
3610
  title?: string | undefined;
3611
- fileId?: string | undefined;
3612
- fileUrl?: string | undefined;
3613
3611
  mimeType?: string | undefined;
3612
+ fileUrl?: string | undefined;
3613
+ fileId?: string | undefined;
3614
3614
  iconLink?: string | undefined;
3615
3615
  }, {
3616
3616
  title?: string | undefined;
3617
- fileId?: string | undefined;
3618
- fileUrl?: string | undefined;
3619
3617
  mimeType?: string | undefined;
3618
+ fileUrl?: string | undefined;
3619
+ fileId?: string | undefined;
3620
3620
  iconLink?: string | undefined;
3621
3621
  }>, "many">>;
3622
3622
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3640,12 +3640,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3640
3640
  timeZone: z.ZodOptional<z.ZodString>;
3641
3641
  }, "strip", z.ZodTypeAny, {
3642
3642
  date?: string | undefined;
3643
- dateTime?: string | undefined;
3644
3643
  timeZone?: string | undefined;
3644
+ dateTime?: string | undefined;
3645
3645
  }, {
3646
3646
  date?: string | undefined;
3647
- dateTime?: string | undefined;
3648
3647
  timeZone?: string | undefined;
3648
+ dateTime?: string | undefined;
3649
3649
  }>>;
3650
3650
  end: z.ZodOptional<z.ZodObject<{
3651
3651
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3653,12 +3653,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3653
3653
  timeZone: z.ZodOptional<z.ZodString>;
3654
3654
  }, "strip", z.ZodTypeAny, {
3655
3655
  date?: string | undefined;
3656
- dateTime?: string | undefined;
3657
3656
  timeZone?: string | undefined;
3657
+ dateTime?: string | undefined;
3658
3658
  }, {
3659
3659
  date?: string | undefined;
3660
- dateTime?: string | undefined;
3661
3660
  timeZone?: string | undefined;
3661
+ dateTime?: string | undefined;
3662
3662
  }>>;
3663
3663
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3664
3664
  email: z.ZodString;
@@ -3667,14 +3667,14 @@ 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;
3670
3671
  optional?: boolean | undefined;
3671
3672
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3672
- displayName?: string | undefined;
3673
3673
  }, {
3674
3674
  email: string;
3675
+ displayName?: string | undefined;
3675
3676
  optional?: boolean | undefined;
3676
3677
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3677
- displayName?: string | undefined;
3678
3678
  }>, "many">>;
3679
3679
  organizer: z.ZodOptional<z.ZodObject<{
3680
3680
  email: z.ZodOptional<z.ZodString>;
@@ -3696,15 +3696,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3696
3696
  iconLink: z.ZodOptional<z.ZodString>;
3697
3697
  }, "strip", z.ZodTypeAny, {
3698
3698
  title?: string | undefined;
3699
- fileId?: string | undefined;
3700
- fileUrl?: string | undefined;
3701
3699
  mimeType?: string | undefined;
3700
+ fileUrl?: string | undefined;
3701
+ fileId?: string | undefined;
3702
3702
  iconLink?: string | undefined;
3703
3703
  }, {
3704
3704
  title?: string | undefined;
3705
- fileId?: string | undefined;
3706
- fileUrl?: string | undefined;
3707
3705
  mimeType?: string | undefined;
3706
+ fileUrl?: string | undefined;
3707
+ fileId?: string | undefined;
3708
3708
  iconLink?: string | undefined;
3709
3709
  }>, "many">>;
3710
3710
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3727,12 +3727,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3727
3727
  timeZone: z.ZodOptional<z.ZodString>;
3728
3728
  }, "strip", z.ZodTypeAny, {
3729
3729
  date?: string | undefined;
3730
- dateTime?: string | undefined;
3731
3730
  timeZone?: string | undefined;
3731
+ dateTime?: string | undefined;
3732
3732
  }, {
3733
3733
  date?: string | undefined;
3734
- dateTime?: string | undefined;
3735
3734
  timeZone?: string | undefined;
3735
+ dateTime?: string | undefined;
3736
3736
  }>>;
3737
3737
  end: z.ZodOptional<z.ZodObject<{
3738
3738
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3740,12 +3740,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3740
3740
  timeZone: z.ZodOptional<z.ZodString>;
3741
3741
  }, "strip", z.ZodTypeAny, {
3742
3742
  date?: string | undefined;
3743
- dateTime?: string | undefined;
3744
3743
  timeZone?: string | undefined;
3744
+ dateTime?: string | undefined;
3745
3745
  }, {
3746
3746
  date?: string | undefined;
3747
- dateTime?: string | undefined;
3748
3747
  timeZone?: string | undefined;
3748
+ dateTime?: string | undefined;
3749
3749
  }>>;
3750
3750
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3751
3751
  email: z.ZodString;
@@ -3754,14 +3754,14 @@ 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;
3757
3758
  optional?: boolean | undefined;
3758
3759
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3759
- displayName?: string | undefined;
3760
3760
  }, {
3761
3761
  email: string;
3762
+ displayName?: string | undefined;
3762
3763
  optional?: boolean | undefined;
3763
3764
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3764
- displayName?: string | undefined;
3765
3765
  }>, "many">>;
3766
3766
  organizer: z.ZodOptional<z.ZodObject<{
3767
3767
  email: z.ZodOptional<z.ZodString>;
@@ -3783,15 +3783,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3783
3783
  iconLink: z.ZodOptional<z.ZodString>;
3784
3784
  }, "strip", z.ZodTypeAny, {
3785
3785
  title?: string | undefined;
3786
- fileId?: string | undefined;
3787
- fileUrl?: string | undefined;
3788
3786
  mimeType?: string | undefined;
3787
+ fileUrl?: string | undefined;
3788
+ fileId?: string | undefined;
3789
3789
  iconLink?: string | undefined;
3790
3790
  }, {
3791
3791
  title?: string | undefined;
3792
- fileId?: string | undefined;
3793
- fileUrl?: string | undefined;
3794
3792
  mimeType?: string | undefined;
3793
+ fileUrl?: string | undefined;
3794
+ fileId?: string | undefined;
3795
3795
  iconLink?: string | undefined;
3796
3796
  }>, "many">>;
3797
3797
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3810,12 +3810,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3810
3810
  timeZone: z.ZodOptional<z.ZodString>;
3811
3811
  }, "strip", z.ZodTypeAny, {
3812
3812
  date?: string | undefined;
3813
- dateTime?: string | undefined;
3814
3813
  timeZone?: string | undefined;
3814
+ dateTime?: string | undefined;
3815
3815
  }, {
3816
3816
  date?: string | undefined;
3817
- dateTime?: string | undefined;
3818
3817
  timeZone?: string | undefined;
3818
+ dateTime?: string | undefined;
3819
3819
  }>>;
3820
3820
  end: z.ZodOptional<z.ZodObject<{
3821
3821
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3823,12 +3823,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3823
3823
  timeZone: z.ZodOptional<z.ZodString>;
3824
3824
  }, "strip", z.ZodTypeAny, {
3825
3825
  date?: string | undefined;
3826
- dateTime?: string | undefined;
3827
3826
  timeZone?: string | undefined;
3827
+ dateTime?: string | undefined;
3828
3828
  }, {
3829
3829
  date?: string | undefined;
3830
- dateTime?: string | undefined;
3831
3830
  timeZone?: string | undefined;
3831
+ dateTime?: string | undefined;
3832
3832
  }>>;
3833
3833
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3834
3834
  email: z.ZodString;
@@ -3837,14 +3837,14 @@ 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;
3840
3841
  optional?: boolean | undefined;
3841
3842
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3842
- displayName?: string | undefined;
3843
3843
  }, {
3844
3844
  email: string;
3845
+ displayName?: string | undefined;
3845
3846
  optional?: boolean | undefined;
3846
3847
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3847
- displayName?: string | undefined;
3848
3848
  }>, "many">>;
3849
3849
  organizer: z.ZodOptional<z.ZodObject<{
3850
3850
  email: z.ZodOptional<z.ZodString>;
@@ -3866,15 +3866,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3866
3866
  iconLink: z.ZodOptional<z.ZodString>;
3867
3867
  }, "strip", z.ZodTypeAny, {
3868
3868
  title?: string | undefined;
3869
- fileId?: string | undefined;
3870
- fileUrl?: string | undefined;
3871
3869
  mimeType?: string | undefined;
3870
+ fileUrl?: string | undefined;
3871
+ fileId?: string | undefined;
3872
3872
  iconLink?: string | undefined;
3873
3873
  }, {
3874
3874
  title?: string | undefined;
3875
- fileId?: string | undefined;
3876
- fileUrl?: string | undefined;
3877
3875
  mimeType?: string | undefined;
3876
+ fileUrl?: string | undefined;
3877
+ fileId?: string | undefined;
3878
3878
  iconLink?: string | undefined;
3879
3879
  }>, "many">>;
3880
3880
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3893,12 +3893,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3893
3893
  timeZone: z.ZodOptional<z.ZodString>;
3894
3894
  }, "strip", z.ZodTypeAny, {
3895
3895
  date?: string | undefined;
3896
- dateTime?: string | undefined;
3897
3896
  timeZone?: string | undefined;
3897
+ dateTime?: string | undefined;
3898
3898
  }, {
3899
3899
  date?: string | undefined;
3900
- dateTime?: string | undefined;
3901
3900
  timeZone?: string | undefined;
3901
+ dateTime?: string | undefined;
3902
3902
  }>>;
3903
3903
  end: z.ZodOptional<z.ZodObject<{
3904
3904
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3906,12 +3906,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3906
3906
  timeZone: z.ZodOptional<z.ZodString>;
3907
3907
  }, "strip", z.ZodTypeAny, {
3908
3908
  date?: string | undefined;
3909
- dateTime?: string | undefined;
3910
3909
  timeZone?: string | undefined;
3910
+ dateTime?: string | undefined;
3911
3911
  }, {
3912
3912
  date?: string | undefined;
3913
- dateTime?: string | undefined;
3914
3913
  timeZone?: string | undefined;
3914
+ dateTime?: string | undefined;
3915
3915
  }>>;
3916
3916
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
3917
3917
  email: z.ZodString;
@@ -3920,14 +3920,14 @@ 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;
3923
3924
  optional?: boolean | undefined;
3924
3925
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3925
- displayName?: string | undefined;
3926
3926
  }, {
3927
3927
  email: string;
3928
+ displayName?: string | undefined;
3928
3929
  optional?: boolean | undefined;
3929
3930
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
3930
- displayName?: string | undefined;
3931
3931
  }>, "many">>;
3932
3932
  organizer: z.ZodOptional<z.ZodObject<{
3933
3933
  email: z.ZodOptional<z.ZodString>;
@@ -3949,15 +3949,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3949
3949
  iconLink: z.ZodOptional<z.ZodString>;
3950
3950
  }, "strip", z.ZodTypeAny, {
3951
3951
  title?: string | undefined;
3952
- fileId?: string | undefined;
3953
- fileUrl?: string | undefined;
3954
3952
  mimeType?: string | undefined;
3953
+ fileUrl?: string | undefined;
3954
+ fileId?: string | undefined;
3955
3955
  iconLink?: string | undefined;
3956
3956
  }, {
3957
3957
  title?: string | undefined;
3958
- fileId?: string | undefined;
3959
- fileUrl?: string | undefined;
3960
3958
  mimeType?: string | undefined;
3959
+ fileUrl?: string | undefined;
3960
+ fileId?: string | undefined;
3961
3961
  iconLink?: string | undefined;
3962
3962
  }>, "many">>;
3963
3963
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3982,12 +3982,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3982
3982
  timeZone: z.ZodOptional<z.ZodString>;
3983
3983
  }, "strip", z.ZodTypeAny, {
3984
3984
  date?: string | undefined;
3985
- dateTime?: string | undefined;
3986
3985
  timeZone?: string | undefined;
3986
+ dateTime?: string | undefined;
3987
3987
  }, {
3988
3988
  date?: string | undefined;
3989
- dateTime?: string | undefined;
3990
3989
  timeZone?: string | undefined;
3990
+ dateTime?: string | undefined;
3991
3991
  }>>;
3992
3992
  end: z.ZodOptional<z.ZodObject<{
3993
3993
  dateTime: z.ZodOptional<z.ZodString>;
@@ -3995,12 +3995,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
3995
3995
  timeZone: z.ZodOptional<z.ZodString>;
3996
3996
  }, "strip", z.ZodTypeAny, {
3997
3997
  date?: string | undefined;
3998
- dateTime?: string | undefined;
3999
3998
  timeZone?: string | undefined;
3999
+ dateTime?: string | undefined;
4000
4000
  }, {
4001
4001
  date?: string | undefined;
4002
- dateTime?: string | undefined;
4003
4002
  timeZone?: string | undefined;
4003
+ dateTime?: string | undefined;
4004
4004
  }>>;
4005
4005
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
4006
4006
  email: z.ZodString;
@@ -4009,14 +4009,14 @@ 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;
4012
4013
  optional?: boolean | undefined;
4013
4014
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
4014
- displayName?: string | undefined;
4015
4015
  }, {
4016
4016
  email: string;
4017
+ displayName?: string | undefined;
4017
4018
  optional?: boolean | undefined;
4018
4019
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
4019
- displayName?: string | undefined;
4020
4020
  }>, "many">>;
4021
4021
  organizer: z.ZodOptional<z.ZodObject<{
4022
4022
  email: z.ZodOptional<z.ZodString>;
@@ -4038,15 +4038,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
4038
4038
  iconLink: z.ZodOptional<z.ZodString>;
4039
4039
  }, "strip", z.ZodTypeAny, {
4040
4040
  title?: string | undefined;
4041
- fileId?: string | undefined;
4042
- fileUrl?: string | undefined;
4043
4041
  mimeType?: string | undefined;
4042
+ fileUrl?: string | undefined;
4043
+ fileId?: string | undefined;
4044
4044
  iconLink?: string | undefined;
4045
4045
  }, {
4046
4046
  title?: string | undefined;
4047
- fileId?: string | undefined;
4048
- fileUrl?: string | undefined;
4049
4047
  mimeType?: string | undefined;
4048
+ fileUrl?: string | undefined;
4049
+ fileId?: string | undefined;
4050
4050
  iconLink?: string | undefined;
4051
4051
  }>, "many">>;
4052
4052
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -4070,12 +4070,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
4070
4070
  timeZone: z.ZodOptional<z.ZodString>;
4071
4071
  }, "strip", z.ZodTypeAny, {
4072
4072
  date?: string | undefined;
4073
- dateTime?: string | undefined;
4074
4073
  timeZone?: string | undefined;
4074
+ dateTime?: string | undefined;
4075
4075
  }, {
4076
4076
  date?: string | undefined;
4077
- dateTime?: string | undefined;
4078
4077
  timeZone?: string | undefined;
4078
+ dateTime?: string | undefined;
4079
4079
  }>>;
4080
4080
  end: z.ZodOptional<z.ZodObject<{
4081
4081
  dateTime: z.ZodOptional<z.ZodString>;
@@ -4083,12 +4083,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
4083
4083
  timeZone: z.ZodOptional<z.ZodString>;
4084
4084
  }, "strip", z.ZodTypeAny, {
4085
4085
  date?: string | undefined;
4086
- dateTime?: string | undefined;
4087
4086
  timeZone?: string | undefined;
4087
+ dateTime?: string | undefined;
4088
4088
  }, {
4089
4089
  date?: string | undefined;
4090
- dateTime?: string | undefined;
4091
4090
  timeZone?: string | undefined;
4091
+ dateTime?: string | undefined;
4092
4092
  }>>;
4093
4093
  attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
4094
4094
  email: z.ZodString;
@@ -4097,14 +4097,14 @@ 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;
4100
4101
  optional?: boolean | undefined;
4101
4102
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
4102
- displayName?: string | undefined;
4103
4103
  }, {
4104
4104
  email: string;
4105
+ displayName?: string | undefined;
4105
4106
  optional?: boolean | undefined;
4106
4107
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
4107
- displayName?: string | undefined;
4108
4108
  }>, "many">>;
4109
4109
  organizer: z.ZodOptional<z.ZodObject<{
4110
4110
  email: z.ZodOptional<z.ZodString>;
@@ -4126,15 +4126,15 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
4126
4126
  iconLink: z.ZodOptional<z.ZodString>;
4127
4127
  }, "strip", z.ZodTypeAny, {
4128
4128
  title?: string | undefined;
4129
- fileId?: string | undefined;
4130
- fileUrl?: string | undefined;
4131
4129
  mimeType?: string | undefined;
4130
+ fileUrl?: string | undefined;
4131
+ fileId?: string | undefined;
4132
4132
  iconLink?: string | undefined;
4133
4133
  }, {
4134
4134
  title?: string | undefined;
4135
- fileId?: string | undefined;
4136
- fileUrl?: string | undefined;
4137
4135
  mimeType?: string | undefined;
4136
+ fileUrl?: string | undefined;
4137
+ fileId?: string | undefined;
4138
4138
  iconLink?: string | undefined;
4139
4139
  }>, "many">>;
4140
4140
  driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;