@bubblelab/bubble-core 0.1.19 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bubble-bundle.d.ts +70 -70
- package/dist/bubbles/service-bubble/agi-inc.d.ts +140 -140
- package/dist/bubbles/service-bubble/ai-agent.d.ts +58 -58
- package/dist/bubbles/service-bubble/airtable.d.ts +106 -106
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +47 -47
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +730 -730
- package/dist/bubbles/service-bubble/followupboss.d.ts +282 -282
- package/dist/bubbles/service-bubble/github.d.ts +196 -196
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +1148 -346
- package/dist/bubbles/service-bubble/google-calendar.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.js +51 -9
- package/dist/bubbles/service-bubble/google-calendar.js.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.d.ts +259 -114
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +95 -0
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
- package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +987 -987
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +40 -40
- package/dist/bubbles/service-bubble/slack/slack.d.ts +314 -314
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +30 -30
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +68 -68
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +106 -106
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +92 -92
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +3 -3
- package/package.json +2 -2
|
@@ -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
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
14
13
|
page_token?: string | undefined;
|
|
14
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
15
15
|
}, {
|
|
16
16
|
operation: "list_calendars";
|
|
17
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18
17
|
max_results?: number | undefined;
|
|
19
18
|
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";
|
|
35
34
|
calendar_id: string;
|
|
36
35
|
single_events: boolean;
|
|
37
|
-
|
|
38
|
-
q?: string | undefined;
|
|
36
|
+
order_by: "startTime" | "updated";
|
|
39
37
|
page_token?: string | undefined;
|
|
38
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
40
39
|
time_min?: string | undefined;
|
|
41
40
|
time_max?: string | undefined;
|
|
41
|
+
q?: string | undefined;
|
|
42
42
|
}, {
|
|
43
43
|
operation: "list_events";
|
|
44
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
45
44
|
max_results?: number | undefined;
|
|
46
|
-
order_by?: "updated" | "startTime" | undefined;
|
|
47
|
-
q?: string | undefined;
|
|
48
45
|
page_token?: string | undefined;
|
|
46
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
49
47
|
calendar_id?: string | undefined;
|
|
50
48
|
time_min?: string | undefined;
|
|
51
49
|
time_max?: string | undefined;
|
|
50
|
+
q?: string | undefined;
|
|
52
51
|
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
|
-
timeZone?: string | undefined;
|
|
81
80
|
dateTime?: string | undefined;
|
|
81
|
+
timeZone?: string | undefined;
|
|
82
82
|
}, {
|
|
83
83
|
date?: string | undefined;
|
|
84
|
-
timeZone?: string | undefined;
|
|
85
84
|
dateTime?: string | undefined;
|
|
85
|
+
timeZone?: 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
|
-
timeZone?: string | undefined;
|
|
94
93
|
dateTime?: string | undefined;
|
|
94
|
+
timeZone?: string | undefined;
|
|
95
95
|
}, {
|
|
96
96
|
date?: string | undefined;
|
|
97
|
-
timeZone?: string | undefined;
|
|
98
97
|
dateTime?: string | undefined;
|
|
98
|
+
timeZone?: string | undefined;
|
|
99
99
|
}>;
|
|
100
100
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
101
101
|
email: z.ZodString;
|
|
@@ -105,30 +105,30 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
106
|
email: string;
|
|
107
107
|
optional?: boolean | undefined;
|
|
108
|
-
displayName?: string | undefined;
|
|
109
108
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
109
|
+
displayName?: string | undefined;
|
|
110
110
|
}, {
|
|
111
111
|
email: string;
|
|
112
112
|
optional?: boolean | undefined;
|
|
113
|
-
displayName?: string | undefined;
|
|
114
113
|
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;
|
|
120
121
|
summary: string;
|
|
121
122
|
start: {
|
|
122
123
|
date?: string | undefined;
|
|
123
|
-
timeZone?: string | undefined;
|
|
124
124
|
dateTime?: string | undefined;
|
|
125
|
+
timeZone?: string | undefined;
|
|
125
126
|
};
|
|
126
127
|
end: {
|
|
127
128
|
date?: string | undefined;
|
|
128
|
-
timeZone?: string | undefined;
|
|
129
129
|
dateTime?: string | undefined;
|
|
130
|
+
timeZone?: string | undefined;
|
|
130
131
|
};
|
|
131
|
-
calendar_id: string;
|
|
132
132
|
conference: boolean;
|
|
133
133
|
description?: string | undefined;
|
|
134
134
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -136,32 +136,32 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
136
136
|
attendees?: {
|
|
137
137
|
email: string;
|
|
138
138
|
optional?: boolean | undefined;
|
|
139
|
-
displayName?: string | undefined;
|
|
140
139
|
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
|
-
timeZone?: string | undefined;
|
|
148
147
|
dateTime?: string | undefined;
|
|
148
|
+
timeZone?: string | undefined;
|
|
149
149
|
};
|
|
150
150
|
end: {
|
|
151
151
|
date?: string | undefined;
|
|
152
|
-
timeZone?: string | undefined;
|
|
153
152
|
dateTime?: string | undefined;
|
|
153
|
+
timeZone?: string | undefined;
|
|
154
154
|
};
|
|
155
155
|
description?: string | undefined;
|
|
156
156
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
157
|
+
calendar_id?: string | undefined;
|
|
157
158
|
location?: string | undefined;
|
|
158
159
|
attendees?: {
|
|
159
160
|
email: string;
|
|
160
161
|
optional?: boolean | undefined;
|
|
161
|
-
displayName?: string | undefined;
|
|
162
162
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
163
|
+
displayName?: string | undefined;
|
|
163
164
|
}[] | undefined;
|
|
164
|
-
calendar_id?: string | undefined;
|
|
165
165
|
conference?: boolean | undefined;
|
|
166
166
|
}>, z.ZodObject<{
|
|
167
167
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -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
|
-
timeZone?: string | undefined;
|
|
180
179
|
dateTime?: string | undefined;
|
|
180
|
+
timeZone?: string | undefined;
|
|
181
181
|
}, {
|
|
182
182
|
date?: string | undefined;
|
|
183
|
-
timeZone?: string | undefined;
|
|
184
183
|
dateTime?: string | undefined;
|
|
184
|
+
timeZone?: 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
|
-
timeZone?: string | undefined;
|
|
193
192
|
dateTime?: string | undefined;
|
|
193
|
+
timeZone?: string | undefined;
|
|
194
194
|
}, {
|
|
195
195
|
date?: string | undefined;
|
|
196
|
-
timeZone?: string | undefined;
|
|
197
196
|
dateTime?: string | undefined;
|
|
197
|
+
timeZone?: string | undefined;
|
|
198
198
|
}>>;
|
|
199
199
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
200
200
|
email: z.ZodString;
|
|
@@ -204,13 +204,13 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
email: string;
|
|
206
206
|
optional?: boolean | undefined;
|
|
207
|
-
displayName?: string | undefined;
|
|
208
207
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
208
|
+
displayName?: string | undefined;
|
|
209
209
|
}, {
|
|
210
210
|
email: string;
|
|
211
211
|
optional?: boolean | undefined;
|
|
212
|
-
displayName?: string | undefined;
|
|
213
212
|
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;
|
|
223
224
|
start?: {
|
|
224
225
|
date?: string | undefined;
|
|
225
|
-
timeZone?: string | undefined;
|
|
226
226
|
dateTime?: string | undefined;
|
|
227
|
+
timeZone?: string | undefined;
|
|
227
228
|
} | undefined;
|
|
228
|
-
location?: string | undefined;
|
|
229
229
|
end?: {
|
|
230
230
|
date?: string | undefined;
|
|
231
|
-
timeZone?: string | undefined;
|
|
232
231
|
dateTime?: string | undefined;
|
|
232
|
+
timeZone?: string | undefined;
|
|
233
233
|
} | undefined;
|
|
234
234
|
attendees?: {
|
|
235
235
|
email: string;
|
|
236
236
|
optional?: boolean | undefined;
|
|
237
|
-
displayName?: string | undefined;
|
|
238
237
|
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;
|
|
245
246
|
summary?: string | undefined;
|
|
247
|
+
location?: string | undefined;
|
|
246
248
|
start?: {
|
|
247
249
|
date?: string | undefined;
|
|
248
|
-
timeZone?: string | undefined;
|
|
249
250
|
dateTime?: string | undefined;
|
|
251
|
+
timeZone?: string | undefined;
|
|
250
252
|
} | undefined;
|
|
251
|
-
location?: string | undefined;
|
|
252
253
|
end?: {
|
|
253
254
|
date?: string | undefined;
|
|
254
|
-
timeZone?: string | undefined;
|
|
255
255
|
dateTime?: string | undefined;
|
|
256
|
+
timeZone?: string | undefined;
|
|
256
257
|
} | undefined;
|
|
257
258
|
attendees?: {
|
|
258
259
|
email: string;
|
|
259
260
|
optional?: boolean | undefined;
|
|
260
|
-
displayName?: string | undefined;
|
|
261
261
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
262
|
+
displayName?: string | undefined;
|
|
262
263
|
}[] | undefined;
|
|
263
|
-
calendar_id?: string | undefined;
|
|
264
264
|
}>, z.ZodObject<{
|
|
265
265
|
operation: z.ZodLiteral<"delete_event">;
|
|
266
266
|
calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -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: "
|
|
274
|
+
send_updates: "all" | "externalOnly" | "none";
|
|
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?: "
|
|
281
|
+
send_updates?: "all" | "externalOnly" | "none" | undefined;
|
|
282
282
|
}>]>;
|
|
283
283
|
declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
|
|
284
284
|
operation: z.ZodLiteral<"list_calendars">;
|
|
@@ -309,9 +309,8 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
309
309
|
error: z.ZodString;
|
|
310
310
|
}, "strip", z.ZodTypeAny, {
|
|
311
311
|
operation: "list_calendars";
|
|
312
|
-
error: string;
|
|
313
312
|
success: boolean;
|
|
314
|
-
|
|
313
|
+
error: string;
|
|
315
314
|
calendars?: z.objectOutputType<{
|
|
316
315
|
id: z.ZodString;
|
|
317
316
|
summary: z.ZodOptional<z.ZodString>;
|
|
@@ -320,11 +319,11 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
320
319
|
selected: z.ZodOptional<z.ZodBoolean>;
|
|
321
320
|
accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
|
|
322
321
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
322
|
+
next_page_token?: string | undefined;
|
|
323
323
|
}, {
|
|
324
324
|
operation: "list_calendars";
|
|
325
|
-
error: string;
|
|
326
325
|
success: boolean;
|
|
327
|
-
|
|
326
|
+
error: string;
|
|
328
327
|
calendars?: z.objectInputType<{
|
|
329
328
|
id: z.ZodString;
|
|
330
329
|
summary: z.ZodOptional<z.ZodString>;
|
|
@@ -333,6 +332,7 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
333
332
|
selected: z.ZodOptional<z.ZodBoolean>;
|
|
334
333
|
accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
|
|
335
334
|
}, 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
|
-
timeZone?: string | undefined;
|
|
355
354
|
dateTime?: string | undefined;
|
|
355
|
+
timeZone?: string | undefined;
|
|
356
356
|
}, {
|
|
357
357
|
date?: string | undefined;
|
|
358
|
-
timeZone?: string | undefined;
|
|
359
358
|
dateTime?: string | undefined;
|
|
359
|
+
timeZone?: 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
|
-
timeZone?: string | undefined;
|
|
368
367
|
dateTime?: string | undefined;
|
|
368
|
+
timeZone?: string | undefined;
|
|
369
369
|
}, {
|
|
370
370
|
date?: string | undefined;
|
|
371
|
-
timeZone?: string | undefined;
|
|
372
371
|
dateTime?: string | undefined;
|
|
372
|
+
timeZone?: string | undefined;
|
|
373
373
|
}>>;
|
|
374
374
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
375
375
|
email: z.ZodString;
|
|
@@ -379,13 +379,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
379
379
|
}, "strip", z.ZodTypeAny, {
|
|
380
380
|
email: string;
|
|
381
381
|
optional?: boolean | undefined;
|
|
382
|
-
displayName?: string | undefined;
|
|
383
382
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
383
|
+
displayName?: string | undefined;
|
|
384
384
|
}, {
|
|
385
385
|
email: string;
|
|
386
386
|
optional?: boolean | undefined;
|
|
387
|
-
displayName?: string | undefined;
|
|
388
387
|
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>;
|
|
@@ -399,6 +399,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
399
399
|
}>>;
|
|
400
400
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
401
401
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
402
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
403
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
404
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
405
|
+
title: z.ZodOptional<z.ZodString>;
|
|
406
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
407
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
408
|
+
}, "strip", z.ZodTypeAny, {
|
|
409
|
+
title?: string | undefined;
|
|
410
|
+
fileId?: string | undefined;
|
|
411
|
+
fileUrl?: string | undefined;
|
|
412
|
+
mimeType?: string | undefined;
|
|
413
|
+
iconLink?: string | undefined;
|
|
414
|
+
}, {
|
|
415
|
+
title?: string | undefined;
|
|
416
|
+
fileId?: string | undefined;
|
|
417
|
+
fileUrl?: string | undefined;
|
|
418
|
+
mimeType?: string | undefined;
|
|
419
|
+
iconLink?: string | undefined;
|
|
420
|
+
}>, "many">>;
|
|
421
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
402
422
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
403
423
|
id: z.ZodString;
|
|
404
424
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -414,12 +434,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
414
434
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
415
435
|
}, "strip", z.ZodTypeAny, {
|
|
416
436
|
date?: string | undefined;
|
|
417
|
-
timeZone?: string | undefined;
|
|
418
437
|
dateTime?: string | undefined;
|
|
438
|
+
timeZone?: string | undefined;
|
|
419
439
|
}, {
|
|
420
440
|
date?: string | undefined;
|
|
421
|
-
timeZone?: string | undefined;
|
|
422
441
|
dateTime?: string | undefined;
|
|
442
|
+
timeZone?: string | undefined;
|
|
423
443
|
}>>;
|
|
424
444
|
end: z.ZodOptional<z.ZodObject<{
|
|
425
445
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -427,12 +447,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
427
447
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
428
448
|
}, "strip", z.ZodTypeAny, {
|
|
429
449
|
date?: string | undefined;
|
|
430
|
-
timeZone?: string | undefined;
|
|
431
450
|
dateTime?: string | undefined;
|
|
451
|
+
timeZone?: string | undefined;
|
|
432
452
|
}, {
|
|
433
453
|
date?: string | undefined;
|
|
434
|
-
timeZone?: string | undefined;
|
|
435
454
|
dateTime?: string | undefined;
|
|
455
|
+
timeZone?: string | undefined;
|
|
436
456
|
}>>;
|
|
437
457
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
438
458
|
email: z.ZodString;
|
|
@@ -442,13 +462,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
442
462
|
}, "strip", z.ZodTypeAny, {
|
|
443
463
|
email: string;
|
|
444
464
|
optional?: boolean | undefined;
|
|
445
|
-
displayName?: string | undefined;
|
|
446
465
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
466
|
+
displayName?: string | undefined;
|
|
447
467
|
}, {
|
|
448
468
|
email: string;
|
|
449
469
|
optional?: boolean | undefined;
|
|
450
|
-
displayName?: string | undefined;
|
|
451
470
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
471
|
+
displayName?: string | undefined;
|
|
452
472
|
}>, "many">>;
|
|
453
473
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
454
474
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -462,6 +482,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
462
482
|
}>>;
|
|
463
483
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
464
484
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
485
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
486
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
487
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
488
|
+
title: z.ZodOptional<z.ZodString>;
|
|
489
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
490
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
491
|
+
}, "strip", z.ZodTypeAny, {
|
|
492
|
+
title?: string | undefined;
|
|
493
|
+
fileId?: string | undefined;
|
|
494
|
+
fileUrl?: string | undefined;
|
|
495
|
+
mimeType?: string | undefined;
|
|
496
|
+
iconLink?: string | undefined;
|
|
497
|
+
}, {
|
|
498
|
+
title?: string | undefined;
|
|
499
|
+
fileId?: string | undefined;
|
|
500
|
+
fileUrl?: string | undefined;
|
|
501
|
+
mimeType?: string | undefined;
|
|
502
|
+
iconLink?: string | undefined;
|
|
503
|
+
}>, "many">>;
|
|
504
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
465
505
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
466
506
|
id: z.ZodString;
|
|
467
507
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -477,12 +517,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
477
517
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
478
518
|
}, "strip", z.ZodTypeAny, {
|
|
479
519
|
date?: string | undefined;
|
|
480
|
-
timeZone?: string | undefined;
|
|
481
520
|
dateTime?: string | undefined;
|
|
521
|
+
timeZone?: string | undefined;
|
|
482
522
|
}, {
|
|
483
523
|
date?: string | undefined;
|
|
484
|
-
timeZone?: string | undefined;
|
|
485
524
|
dateTime?: string | undefined;
|
|
525
|
+
timeZone?: string | undefined;
|
|
486
526
|
}>>;
|
|
487
527
|
end: z.ZodOptional<z.ZodObject<{
|
|
488
528
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -490,12 +530,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
490
530
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
491
531
|
}, "strip", z.ZodTypeAny, {
|
|
492
532
|
date?: string | undefined;
|
|
493
|
-
timeZone?: string | undefined;
|
|
494
533
|
dateTime?: string | undefined;
|
|
534
|
+
timeZone?: string | undefined;
|
|
495
535
|
}, {
|
|
496
536
|
date?: string | undefined;
|
|
497
|
-
timeZone?: string | undefined;
|
|
498
537
|
dateTime?: string | undefined;
|
|
538
|
+
timeZone?: string | undefined;
|
|
499
539
|
}>>;
|
|
500
540
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
501
541
|
email: z.ZodString;
|
|
@@ -505,13 +545,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
505
545
|
}, "strip", z.ZodTypeAny, {
|
|
506
546
|
email: string;
|
|
507
547
|
optional?: boolean | undefined;
|
|
508
|
-
displayName?: string | undefined;
|
|
509
548
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
549
|
+
displayName?: string | undefined;
|
|
510
550
|
}, {
|
|
511
551
|
email: string;
|
|
512
552
|
optional?: boolean | undefined;
|
|
513
|
-
displayName?: string | undefined;
|
|
514
553
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
554
|
+
displayName?: string | undefined;
|
|
515
555
|
}>, "many">>;
|
|
516
556
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
517
557
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -525,13 +565,33 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
525
565
|
}>>;
|
|
526
566
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
527
567
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
568
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
569
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
570
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
571
|
+
title: z.ZodOptional<z.ZodString>;
|
|
572
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
573
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
574
|
+
}, "strip", z.ZodTypeAny, {
|
|
575
|
+
title?: string | undefined;
|
|
576
|
+
fileId?: string | undefined;
|
|
577
|
+
fileUrl?: string | undefined;
|
|
578
|
+
mimeType?: string | undefined;
|
|
579
|
+
iconLink?: string | undefined;
|
|
580
|
+
}, {
|
|
581
|
+
title?: string | undefined;
|
|
582
|
+
fileId?: string | undefined;
|
|
583
|
+
fileUrl?: string | undefined;
|
|
584
|
+
mimeType?: string | undefined;
|
|
585
|
+
iconLink?: string | undefined;
|
|
586
|
+
}>, "many">>;
|
|
587
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
528
588
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
529
589
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
530
590
|
error: z.ZodString;
|
|
531
591
|
}, "strip", z.ZodTypeAny, {
|
|
532
592
|
operation: "list_events";
|
|
533
|
-
error: string;
|
|
534
593
|
success: boolean;
|
|
594
|
+
error: string;
|
|
535
595
|
next_page_token?: string | undefined;
|
|
536
596
|
events?: z.objectOutputType<{
|
|
537
597
|
id: z.ZodString;
|
|
@@ -548,12 +608,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
548
608
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
549
609
|
}, "strip", z.ZodTypeAny, {
|
|
550
610
|
date?: string | undefined;
|
|
551
|
-
timeZone?: string | undefined;
|
|
552
611
|
dateTime?: string | undefined;
|
|
612
|
+
timeZone?: string | undefined;
|
|
553
613
|
}, {
|
|
554
614
|
date?: string | undefined;
|
|
555
|
-
timeZone?: string | undefined;
|
|
556
615
|
dateTime?: string | undefined;
|
|
616
|
+
timeZone?: string | undefined;
|
|
557
617
|
}>>;
|
|
558
618
|
end: z.ZodOptional<z.ZodObject<{
|
|
559
619
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -561,12 +621,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
561
621
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
562
622
|
}, "strip", z.ZodTypeAny, {
|
|
563
623
|
date?: string | undefined;
|
|
564
|
-
timeZone?: string | undefined;
|
|
565
624
|
dateTime?: string | undefined;
|
|
625
|
+
timeZone?: string | undefined;
|
|
566
626
|
}, {
|
|
567
627
|
date?: string | undefined;
|
|
568
|
-
timeZone?: string | undefined;
|
|
569
628
|
dateTime?: string | undefined;
|
|
629
|
+
timeZone?: string | undefined;
|
|
570
630
|
}>>;
|
|
571
631
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
572
632
|
email: z.ZodString;
|
|
@@ -576,13 +636,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
576
636
|
}, "strip", z.ZodTypeAny, {
|
|
577
637
|
email: string;
|
|
578
638
|
optional?: boolean | undefined;
|
|
579
|
-
displayName?: string | undefined;
|
|
580
639
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
640
|
+
displayName?: string | undefined;
|
|
581
641
|
}, {
|
|
582
642
|
email: string;
|
|
583
643
|
optional?: boolean | undefined;
|
|
584
|
-
displayName?: string | undefined;
|
|
585
644
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
645
|
+
displayName?: string | undefined;
|
|
586
646
|
}>, "many">>;
|
|
587
647
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
588
648
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -596,11 +656,31 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
596
656
|
}>>;
|
|
597
657
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
598
658
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
659
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
660
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
661
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
662
|
+
title: z.ZodOptional<z.ZodString>;
|
|
663
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
664
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
665
|
+
}, "strip", z.ZodTypeAny, {
|
|
666
|
+
title?: string | undefined;
|
|
667
|
+
fileId?: string | undefined;
|
|
668
|
+
fileUrl?: string | undefined;
|
|
669
|
+
mimeType?: string | undefined;
|
|
670
|
+
iconLink?: string | undefined;
|
|
671
|
+
}, {
|
|
672
|
+
title?: string | undefined;
|
|
673
|
+
fileId?: string | undefined;
|
|
674
|
+
fileUrl?: string | undefined;
|
|
675
|
+
mimeType?: string | undefined;
|
|
676
|
+
iconLink?: string | undefined;
|
|
677
|
+
}>, "many">>;
|
|
678
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
599
679
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
600
680
|
}, {
|
|
601
681
|
operation: "list_events";
|
|
602
|
-
error: string;
|
|
603
682
|
success: boolean;
|
|
683
|
+
error: string;
|
|
604
684
|
next_page_token?: string | undefined;
|
|
605
685
|
events?: z.objectInputType<{
|
|
606
686
|
id: z.ZodString;
|
|
@@ -617,12 +697,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
617
697
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
618
698
|
}, "strip", z.ZodTypeAny, {
|
|
619
699
|
date?: string | undefined;
|
|
620
|
-
timeZone?: string | undefined;
|
|
621
700
|
dateTime?: string | undefined;
|
|
701
|
+
timeZone?: string | undefined;
|
|
622
702
|
}, {
|
|
623
703
|
date?: string | undefined;
|
|
624
|
-
timeZone?: string | undefined;
|
|
625
704
|
dateTime?: string | undefined;
|
|
705
|
+
timeZone?: string | undefined;
|
|
626
706
|
}>>;
|
|
627
707
|
end: z.ZodOptional<z.ZodObject<{
|
|
628
708
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -630,12 +710,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
630
710
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
631
711
|
}, "strip", z.ZodTypeAny, {
|
|
632
712
|
date?: string | undefined;
|
|
633
|
-
timeZone?: string | undefined;
|
|
634
713
|
dateTime?: string | undefined;
|
|
714
|
+
timeZone?: string | undefined;
|
|
635
715
|
}, {
|
|
636
716
|
date?: string | undefined;
|
|
637
|
-
timeZone?: string | undefined;
|
|
638
717
|
dateTime?: string | undefined;
|
|
718
|
+
timeZone?: string | undefined;
|
|
639
719
|
}>>;
|
|
640
720
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
641
721
|
email: z.ZodString;
|
|
@@ -645,13 +725,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
645
725
|
}, "strip", z.ZodTypeAny, {
|
|
646
726
|
email: string;
|
|
647
727
|
optional?: boolean | undefined;
|
|
648
|
-
displayName?: string | undefined;
|
|
649
728
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
729
|
+
displayName?: string | undefined;
|
|
650
730
|
}, {
|
|
651
731
|
email: string;
|
|
652
732
|
optional?: boolean | undefined;
|
|
653
|
-
displayName?: string | undefined;
|
|
654
733
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
734
|
+
displayName?: string | undefined;
|
|
655
735
|
}>, "many">>;
|
|
656
736
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
657
737
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -665,6 +745,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
665
745
|
}>>;
|
|
666
746
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
667
747
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
748
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
749
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
750
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
751
|
+
title: z.ZodOptional<z.ZodString>;
|
|
752
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
753
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
754
|
+
}, "strip", z.ZodTypeAny, {
|
|
755
|
+
title?: string | undefined;
|
|
756
|
+
fileId?: string | undefined;
|
|
757
|
+
fileUrl?: string | undefined;
|
|
758
|
+
mimeType?: string | undefined;
|
|
759
|
+
iconLink?: string | undefined;
|
|
760
|
+
}, {
|
|
761
|
+
title?: string | undefined;
|
|
762
|
+
fileId?: string | undefined;
|
|
763
|
+
fileUrl?: string | undefined;
|
|
764
|
+
mimeType?: string | undefined;
|
|
765
|
+
iconLink?: string | undefined;
|
|
766
|
+
}>, "many">>;
|
|
767
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
668
768
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
669
769
|
}>, z.ZodObject<{
|
|
670
770
|
operation: z.ZodLiteral<"get_event">;
|
|
@@ -684,12 +784,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
684
784
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
685
785
|
}, "strip", z.ZodTypeAny, {
|
|
686
786
|
date?: string | undefined;
|
|
687
|
-
timeZone?: string | undefined;
|
|
688
787
|
dateTime?: string | undefined;
|
|
788
|
+
timeZone?: string | undefined;
|
|
689
789
|
}, {
|
|
690
790
|
date?: string | undefined;
|
|
691
|
-
timeZone?: string | undefined;
|
|
692
791
|
dateTime?: string | undefined;
|
|
792
|
+
timeZone?: string | undefined;
|
|
693
793
|
}>>;
|
|
694
794
|
end: z.ZodOptional<z.ZodObject<{
|
|
695
795
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -697,12 +797,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
697
797
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
698
798
|
}, "strip", z.ZodTypeAny, {
|
|
699
799
|
date?: string | undefined;
|
|
700
|
-
timeZone?: string | undefined;
|
|
701
800
|
dateTime?: string | undefined;
|
|
801
|
+
timeZone?: string | undefined;
|
|
702
802
|
}, {
|
|
703
803
|
date?: string | undefined;
|
|
704
|
-
timeZone?: string | undefined;
|
|
705
804
|
dateTime?: string | undefined;
|
|
805
|
+
timeZone?: string | undefined;
|
|
706
806
|
}>>;
|
|
707
807
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
708
808
|
email: z.ZodString;
|
|
@@ -712,13 +812,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
712
812
|
}, "strip", z.ZodTypeAny, {
|
|
713
813
|
email: string;
|
|
714
814
|
optional?: boolean | undefined;
|
|
715
|
-
displayName?: string | undefined;
|
|
716
815
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
816
|
+
displayName?: string | undefined;
|
|
717
817
|
}, {
|
|
718
818
|
email: string;
|
|
719
819
|
optional?: boolean | undefined;
|
|
720
|
-
displayName?: string | undefined;
|
|
721
820
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
821
|
+
displayName?: string | undefined;
|
|
722
822
|
}>, "many">>;
|
|
723
823
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
724
824
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -732,6 +832,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
732
832
|
}>>;
|
|
733
833
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
734
834
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
835
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
836
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
837
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
838
|
+
title: z.ZodOptional<z.ZodString>;
|
|
839
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
840
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
841
|
+
}, "strip", z.ZodTypeAny, {
|
|
842
|
+
title?: string | undefined;
|
|
843
|
+
fileId?: string | undefined;
|
|
844
|
+
fileUrl?: string | undefined;
|
|
845
|
+
mimeType?: string | undefined;
|
|
846
|
+
iconLink?: string | undefined;
|
|
847
|
+
}, {
|
|
848
|
+
title?: string | undefined;
|
|
849
|
+
fileId?: string | undefined;
|
|
850
|
+
fileUrl?: string | undefined;
|
|
851
|
+
mimeType?: string | undefined;
|
|
852
|
+
iconLink?: string | undefined;
|
|
853
|
+
}>, "many">>;
|
|
854
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
735
855
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
736
856
|
id: z.ZodString;
|
|
737
857
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -747,12 +867,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
747
867
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
748
868
|
}, "strip", z.ZodTypeAny, {
|
|
749
869
|
date?: string | undefined;
|
|
750
|
-
timeZone?: string | undefined;
|
|
751
870
|
dateTime?: string | undefined;
|
|
871
|
+
timeZone?: string | undefined;
|
|
752
872
|
}, {
|
|
753
873
|
date?: string | undefined;
|
|
754
|
-
timeZone?: string | undefined;
|
|
755
874
|
dateTime?: string | undefined;
|
|
875
|
+
timeZone?: string | undefined;
|
|
756
876
|
}>>;
|
|
757
877
|
end: z.ZodOptional<z.ZodObject<{
|
|
758
878
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -760,12 +880,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
760
880
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
761
881
|
}, "strip", z.ZodTypeAny, {
|
|
762
882
|
date?: string | undefined;
|
|
763
|
-
timeZone?: string | undefined;
|
|
764
883
|
dateTime?: string | undefined;
|
|
884
|
+
timeZone?: string | undefined;
|
|
765
885
|
}, {
|
|
766
886
|
date?: string | undefined;
|
|
767
|
-
timeZone?: string | undefined;
|
|
768
887
|
dateTime?: string | undefined;
|
|
888
|
+
timeZone?: string | undefined;
|
|
769
889
|
}>>;
|
|
770
890
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
771
891
|
email: z.ZodString;
|
|
@@ -775,13 +895,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
775
895
|
}, "strip", z.ZodTypeAny, {
|
|
776
896
|
email: string;
|
|
777
897
|
optional?: boolean | undefined;
|
|
778
|
-
displayName?: string | undefined;
|
|
779
898
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
899
|
+
displayName?: string | undefined;
|
|
780
900
|
}, {
|
|
781
901
|
email: string;
|
|
782
902
|
optional?: boolean | undefined;
|
|
783
|
-
displayName?: string | undefined;
|
|
784
903
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
904
|
+
displayName?: string | undefined;
|
|
785
905
|
}>, "many">>;
|
|
786
906
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
787
907
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -795,6 +915,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
795
915
|
}>>;
|
|
796
916
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
797
917
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
918
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
919
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
920
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
921
|
+
title: z.ZodOptional<z.ZodString>;
|
|
922
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
923
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
924
|
+
}, "strip", z.ZodTypeAny, {
|
|
925
|
+
title?: string | undefined;
|
|
926
|
+
fileId?: string | undefined;
|
|
927
|
+
fileUrl?: string | undefined;
|
|
928
|
+
mimeType?: string | undefined;
|
|
929
|
+
iconLink?: string | undefined;
|
|
930
|
+
}, {
|
|
931
|
+
title?: string | undefined;
|
|
932
|
+
fileId?: string | undefined;
|
|
933
|
+
fileUrl?: string | undefined;
|
|
934
|
+
mimeType?: string | undefined;
|
|
935
|
+
iconLink?: string | undefined;
|
|
936
|
+
}>, "many">>;
|
|
937
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
798
938
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
799
939
|
id: z.ZodString;
|
|
800
940
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -810,12 +950,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
810
950
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
811
951
|
}, "strip", z.ZodTypeAny, {
|
|
812
952
|
date?: string | undefined;
|
|
813
|
-
timeZone?: string | undefined;
|
|
814
953
|
dateTime?: string | undefined;
|
|
954
|
+
timeZone?: string | undefined;
|
|
815
955
|
}, {
|
|
816
956
|
date?: string | undefined;
|
|
817
|
-
timeZone?: string | undefined;
|
|
818
957
|
dateTime?: string | undefined;
|
|
958
|
+
timeZone?: string | undefined;
|
|
819
959
|
}>>;
|
|
820
960
|
end: z.ZodOptional<z.ZodObject<{
|
|
821
961
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -823,12 +963,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
823
963
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
824
964
|
}, "strip", z.ZodTypeAny, {
|
|
825
965
|
date?: string | undefined;
|
|
826
|
-
timeZone?: string | undefined;
|
|
827
966
|
dateTime?: string | undefined;
|
|
967
|
+
timeZone?: string | undefined;
|
|
828
968
|
}, {
|
|
829
969
|
date?: string | undefined;
|
|
830
|
-
timeZone?: string | undefined;
|
|
831
970
|
dateTime?: string | undefined;
|
|
971
|
+
timeZone?: string | undefined;
|
|
832
972
|
}>>;
|
|
833
973
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
834
974
|
email: z.ZodString;
|
|
@@ -838,13 +978,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
838
978
|
}, "strip", z.ZodTypeAny, {
|
|
839
979
|
email: string;
|
|
840
980
|
optional?: boolean | undefined;
|
|
841
|
-
displayName?: string | undefined;
|
|
842
981
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
982
|
+
displayName?: string | undefined;
|
|
843
983
|
}, {
|
|
844
984
|
email: string;
|
|
845
985
|
optional?: boolean | undefined;
|
|
846
|
-
displayName?: string | undefined;
|
|
847
986
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
987
|
+
displayName?: string | undefined;
|
|
848
988
|
}>, "many">>;
|
|
849
989
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
850
990
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -858,12 +998,32 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
858
998
|
}>>;
|
|
859
999
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
860
1000
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1001
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1002
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1004
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1005
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1006
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1007
|
+
}, "strip", z.ZodTypeAny, {
|
|
1008
|
+
title?: string | undefined;
|
|
1009
|
+
fileId?: string | undefined;
|
|
1010
|
+
fileUrl?: string | undefined;
|
|
1011
|
+
mimeType?: string | undefined;
|
|
1012
|
+
iconLink?: string | undefined;
|
|
1013
|
+
}, {
|
|
1014
|
+
title?: string | undefined;
|
|
1015
|
+
fileId?: string | undefined;
|
|
1016
|
+
fileUrl?: string | undefined;
|
|
1017
|
+
mimeType?: string | undefined;
|
|
1018
|
+
iconLink?: string | undefined;
|
|
1019
|
+
}>, "many">>;
|
|
1020
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
861
1021
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
862
1022
|
error: z.ZodString;
|
|
863
1023
|
}, "strip", z.ZodTypeAny, {
|
|
864
1024
|
operation: "get_event";
|
|
865
|
-
error: string;
|
|
866
1025
|
success: boolean;
|
|
1026
|
+
error: string;
|
|
867
1027
|
event?: z.objectOutputType<{
|
|
868
1028
|
id: z.ZodString;
|
|
869
1029
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -879,12 +1039,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
879
1039
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
880
1040
|
}, "strip", z.ZodTypeAny, {
|
|
881
1041
|
date?: string | undefined;
|
|
882
|
-
timeZone?: string | undefined;
|
|
883
1042
|
dateTime?: string | undefined;
|
|
1043
|
+
timeZone?: string | undefined;
|
|
884
1044
|
}, {
|
|
885
1045
|
date?: string | undefined;
|
|
886
|
-
timeZone?: string | undefined;
|
|
887
1046
|
dateTime?: string | undefined;
|
|
1047
|
+
timeZone?: string | undefined;
|
|
888
1048
|
}>>;
|
|
889
1049
|
end: z.ZodOptional<z.ZodObject<{
|
|
890
1050
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -892,12 +1052,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
892
1052
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
893
1053
|
}, "strip", z.ZodTypeAny, {
|
|
894
1054
|
date?: string | undefined;
|
|
895
|
-
timeZone?: string | undefined;
|
|
896
1055
|
dateTime?: string | undefined;
|
|
1056
|
+
timeZone?: string | undefined;
|
|
897
1057
|
}, {
|
|
898
1058
|
date?: string | undefined;
|
|
899
|
-
timeZone?: string | undefined;
|
|
900
1059
|
dateTime?: string | undefined;
|
|
1060
|
+
timeZone?: string | undefined;
|
|
901
1061
|
}>>;
|
|
902
1062
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
903
1063
|
email: z.ZodString;
|
|
@@ -907,13 +1067,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
907
1067
|
}, "strip", z.ZodTypeAny, {
|
|
908
1068
|
email: string;
|
|
909
1069
|
optional?: boolean | undefined;
|
|
910
|
-
displayName?: string | undefined;
|
|
911
1070
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1071
|
+
displayName?: string | undefined;
|
|
912
1072
|
}, {
|
|
913
1073
|
email: string;
|
|
914
1074
|
optional?: boolean | undefined;
|
|
915
|
-
displayName?: string | undefined;
|
|
916
1075
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1076
|
+
displayName?: string | undefined;
|
|
917
1077
|
}>, "many">>;
|
|
918
1078
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
919
1079
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -927,11 +1087,31 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
927
1087
|
}>>;
|
|
928
1088
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
929
1089
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1090
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1091
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1092
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1093
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1094
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1095
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1096
|
+
}, "strip", z.ZodTypeAny, {
|
|
1097
|
+
title?: string | undefined;
|
|
1098
|
+
fileId?: string | undefined;
|
|
1099
|
+
fileUrl?: string | undefined;
|
|
1100
|
+
mimeType?: string | undefined;
|
|
1101
|
+
iconLink?: string | undefined;
|
|
1102
|
+
}, {
|
|
1103
|
+
title?: string | undefined;
|
|
1104
|
+
fileId?: string | undefined;
|
|
1105
|
+
fileUrl?: string | undefined;
|
|
1106
|
+
mimeType?: string | undefined;
|
|
1107
|
+
iconLink?: string | undefined;
|
|
1108
|
+
}>, "many">>;
|
|
1109
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
930
1110
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
931
1111
|
}, {
|
|
932
1112
|
operation: "get_event";
|
|
933
|
-
error: string;
|
|
934
1113
|
success: boolean;
|
|
1114
|
+
error: string;
|
|
935
1115
|
event?: z.objectInputType<{
|
|
936
1116
|
id: z.ZodString;
|
|
937
1117
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -947,12 +1127,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
947
1127
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
948
1128
|
}, "strip", z.ZodTypeAny, {
|
|
949
1129
|
date?: string | undefined;
|
|
950
|
-
timeZone?: string | undefined;
|
|
951
1130
|
dateTime?: string | undefined;
|
|
1131
|
+
timeZone?: string | undefined;
|
|
952
1132
|
}, {
|
|
953
1133
|
date?: string | undefined;
|
|
954
|
-
timeZone?: string | undefined;
|
|
955
1134
|
dateTime?: string | undefined;
|
|
1135
|
+
timeZone?: string | undefined;
|
|
956
1136
|
}>>;
|
|
957
1137
|
end: z.ZodOptional<z.ZodObject<{
|
|
958
1138
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -960,12 +1140,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
960
1140
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
961
1141
|
}, "strip", z.ZodTypeAny, {
|
|
962
1142
|
date?: string | undefined;
|
|
963
|
-
timeZone?: string | undefined;
|
|
964
1143
|
dateTime?: string | undefined;
|
|
1144
|
+
timeZone?: string | undefined;
|
|
965
1145
|
}, {
|
|
966
1146
|
date?: string | undefined;
|
|
967
|
-
timeZone?: string | undefined;
|
|
968
1147
|
dateTime?: string | undefined;
|
|
1148
|
+
timeZone?: string | undefined;
|
|
969
1149
|
}>>;
|
|
970
1150
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
971
1151
|
email: z.ZodString;
|
|
@@ -975,13 +1155,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
975
1155
|
}, "strip", z.ZodTypeAny, {
|
|
976
1156
|
email: string;
|
|
977
1157
|
optional?: boolean | undefined;
|
|
978
|
-
displayName?: string | undefined;
|
|
979
1158
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1159
|
+
displayName?: string | undefined;
|
|
980
1160
|
}, {
|
|
981
1161
|
email: string;
|
|
982
1162
|
optional?: boolean | undefined;
|
|
983
|
-
displayName?: string | undefined;
|
|
984
1163
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1164
|
+
displayName?: string | undefined;
|
|
985
1165
|
}>, "many">>;
|
|
986
1166
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
987
1167
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -995,6 +1175,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
995
1175
|
}>>;
|
|
996
1176
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
997
1177
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1178
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1179
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1183
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
}, "strip", z.ZodTypeAny, {
|
|
1185
|
+
title?: string | undefined;
|
|
1186
|
+
fileId?: string | undefined;
|
|
1187
|
+
fileUrl?: string | undefined;
|
|
1188
|
+
mimeType?: string | undefined;
|
|
1189
|
+
iconLink?: string | undefined;
|
|
1190
|
+
}, {
|
|
1191
|
+
title?: string | undefined;
|
|
1192
|
+
fileId?: string | undefined;
|
|
1193
|
+
fileUrl?: string | undefined;
|
|
1194
|
+
mimeType?: string | undefined;
|
|
1195
|
+
iconLink?: string | undefined;
|
|
1196
|
+
}>, "many">>;
|
|
1197
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
998
1198
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
999
1199
|
}>, z.ZodObject<{
|
|
1000
1200
|
operation: z.ZodLiteral<"create_event">;
|
|
@@ -1014,12 +1214,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1014
1214
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1015
1215
|
}, "strip", z.ZodTypeAny, {
|
|
1016
1216
|
date?: string | undefined;
|
|
1017
|
-
timeZone?: string | undefined;
|
|
1018
1217
|
dateTime?: string | undefined;
|
|
1218
|
+
timeZone?: string | undefined;
|
|
1019
1219
|
}, {
|
|
1020
1220
|
date?: string | undefined;
|
|
1021
|
-
timeZone?: string | undefined;
|
|
1022
1221
|
dateTime?: string | undefined;
|
|
1222
|
+
timeZone?: string | undefined;
|
|
1023
1223
|
}>>;
|
|
1024
1224
|
end: z.ZodOptional<z.ZodObject<{
|
|
1025
1225
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1027,12 +1227,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1027
1227
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1028
1228
|
}, "strip", z.ZodTypeAny, {
|
|
1029
1229
|
date?: string | undefined;
|
|
1030
|
-
timeZone?: string | undefined;
|
|
1031
1230
|
dateTime?: string | undefined;
|
|
1231
|
+
timeZone?: string | undefined;
|
|
1032
1232
|
}, {
|
|
1033
1233
|
date?: string | undefined;
|
|
1034
|
-
timeZone?: string | undefined;
|
|
1035
1234
|
dateTime?: string | undefined;
|
|
1235
|
+
timeZone?: string | undefined;
|
|
1036
1236
|
}>>;
|
|
1037
1237
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1038
1238
|
email: z.ZodString;
|
|
@@ -1042,13 +1242,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1042
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1043
1243
|
email: string;
|
|
1044
1244
|
optional?: boolean | undefined;
|
|
1045
|
-
displayName?: string | undefined;
|
|
1046
1245
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1246
|
+
displayName?: string | undefined;
|
|
1047
1247
|
}, {
|
|
1048
1248
|
email: string;
|
|
1049
1249
|
optional?: boolean | undefined;
|
|
1050
|
-
displayName?: string | undefined;
|
|
1051
1250
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1251
|
+
displayName?: string | undefined;
|
|
1052
1252
|
}>, "many">>;
|
|
1053
1253
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1054
1254
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1062,6 +1262,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1062
1262
|
}>>;
|
|
1063
1263
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1064
1264
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1265
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1266
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1267
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1270
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1271
|
+
}, "strip", z.ZodTypeAny, {
|
|
1272
|
+
title?: string | undefined;
|
|
1273
|
+
fileId?: string | undefined;
|
|
1274
|
+
fileUrl?: string | undefined;
|
|
1275
|
+
mimeType?: string | undefined;
|
|
1276
|
+
iconLink?: string | undefined;
|
|
1277
|
+
}, {
|
|
1278
|
+
title?: string | undefined;
|
|
1279
|
+
fileId?: string | undefined;
|
|
1280
|
+
fileUrl?: string | undefined;
|
|
1281
|
+
mimeType?: string | undefined;
|
|
1282
|
+
iconLink?: string | undefined;
|
|
1283
|
+
}>, "many">>;
|
|
1284
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1065
1285
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1066
1286
|
id: z.ZodString;
|
|
1067
1287
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1077,12 +1297,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1077
1297
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1078
1298
|
}, "strip", z.ZodTypeAny, {
|
|
1079
1299
|
date?: string | undefined;
|
|
1080
|
-
timeZone?: string | undefined;
|
|
1081
1300
|
dateTime?: string | undefined;
|
|
1301
|
+
timeZone?: string | undefined;
|
|
1082
1302
|
}, {
|
|
1083
1303
|
date?: string | undefined;
|
|
1084
|
-
timeZone?: string | undefined;
|
|
1085
1304
|
dateTime?: string | undefined;
|
|
1305
|
+
timeZone?: string | undefined;
|
|
1086
1306
|
}>>;
|
|
1087
1307
|
end: z.ZodOptional<z.ZodObject<{
|
|
1088
1308
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1090,12 +1310,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1090
1310
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1091
1311
|
}, "strip", z.ZodTypeAny, {
|
|
1092
1312
|
date?: string | undefined;
|
|
1093
|
-
timeZone?: string | undefined;
|
|
1094
1313
|
dateTime?: string | undefined;
|
|
1314
|
+
timeZone?: string | undefined;
|
|
1095
1315
|
}, {
|
|
1096
1316
|
date?: string | undefined;
|
|
1097
|
-
timeZone?: string | undefined;
|
|
1098
1317
|
dateTime?: string | undefined;
|
|
1318
|
+
timeZone?: string | undefined;
|
|
1099
1319
|
}>>;
|
|
1100
1320
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1101
1321
|
email: z.ZodString;
|
|
@@ -1105,13 +1325,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1105
1325
|
}, "strip", z.ZodTypeAny, {
|
|
1106
1326
|
email: string;
|
|
1107
1327
|
optional?: boolean | undefined;
|
|
1108
|
-
displayName?: string | undefined;
|
|
1109
1328
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1329
|
+
displayName?: string | undefined;
|
|
1110
1330
|
}, {
|
|
1111
1331
|
email: string;
|
|
1112
1332
|
optional?: boolean | undefined;
|
|
1113
|
-
displayName?: string | undefined;
|
|
1114
1333
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1334
|
+
displayName?: string | undefined;
|
|
1115
1335
|
}>, "many">>;
|
|
1116
1336
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1117
1337
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1125,6 +1345,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1125
1345
|
}>>;
|
|
1126
1346
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1127
1347
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1348
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1349
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1350
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1351
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1352
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1353
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1354
|
+
}, "strip", z.ZodTypeAny, {
|
|
1355
|
+
title?: string | undefined;
|
|
1356
|
+
fileId?: string | undefined;
|
|
1357
|
+
fileUrl?: string | undefined;
|
|
1358
|
+
mimeType?: string | undefined;
|
|
1359
|
+
iconLink?: string | undefined;
|
|
1360
|
+
}, {
|
|
1361
|
+
title?: string | undefined;
|
|
1362
|
+
fileId?: string | undefined;
|
|
1363
|
+
fileUrl?: string | undefined;
|
|
1364
|
+
mimeType?: string | undefined;
|
|
1365
|
+
iconLink?: string | undefined;
|
|
1366
|
+
}>, "many">>;
|
|
1367
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1128
1368
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1129
1369
|
id: z.ZodString;
|
|
1130
1370
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1140,12 +1380,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1140
1380
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1141
1381
|
}, "strip", z.ZodTypeAny, {
|
|
1142
1382
|
date?: string | undefined;
|
|
1143
|
-
timeZone?: string | undefined;
|
|
1144
1383
|
dateTime?: string | undefined;
|
|
1384
|
+
timeZone?: string | undefined;
|
|
1145
1385
|
}, {
|
|
1146
1386
|
date?: string | undefined;
|
|
1147
|
-
timeZone?: string | undefined;
|
|
1148
1387
|
dateTime?: string | undefined;
|
|
1388
|
+
timeZone?: string | undefined;
|
|
1149
1389
|
}>>;
|
|
1150
1390
|
end: z.ZodOptional<z.ZodObject<{
|
|
1151
1391
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1153,12 +1393,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1153
1393
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1154
1394
|
}, "strip", z.ZodTypeAny, {
|
|
1155
1395
|
date?: string | undefined;
|
|
1156
|
-
timeZone?: string | undefined;
|
|
1157
1396
|
dateTime?: string | undefined;
|
|
1397
|
+
timeZone?: string | undefined;
|
|
1158
1398
|
}, {
|
|
1159
1399
|
date?: string | undefined;
|
|
1160
|
-
timeZone?: string | undefined;
|
|
1161
1400
|
dateTime?: string | undefined;
|
|
1401
|
+
timeZone?: string | undefined;
|
|
1162
1402
|
}>>;
|
|
1163
1403
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1164
1404
|
email: z.ZodString;
|
|
@@ -1168,13 +1408,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1168
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1169
1409
|
email: string;
|
|
1170
1410
|
optional?: boolean | undefined;
|
|
1171
|
-
displayName?: string | undefined;
|
|
1172
1411
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1412
|
+
displayName?: string | undefined;
|
|
1173
1413
|
}, {
|
|
1174
1414
|
email: string;
|
|
1175
1415
|
optional?: boolean | undefined;
|
|
1176
|
-
displayName?: string | undefined;
|
|
1177
1416
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1417
|
+
displayName?: string | undefined;
|
|
1178
1418
|
}>, "many">>;
|
|
1179
1419
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1180
1420
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1188,12 +1428,32 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1188
1428
|
}>>;
|
|
1189
1429
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1190
1430
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1431
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1432
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1433
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1436
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1437
|
+
}, "strip", z.ZodTypeAny, {
|
|
1438
|
+
title?: string | undefined;
|
|
1439
|
+
fileId?: string | undefined;
|
|
1440
|
+
fileUrl?: string | undefined;
|
|
1441
|
+
mimeType?: string | undefined;
|
|
1442
|
+
iconLink?: string | undefined;
|
|
1443
|
+
}, {
|
|
1444
|
+
title?: string | undefined;
|
|
1445
|
+
fileId?: string | undefined;
|
|
1446
|
+
fileUrl?: string | undefined;
|
|
1447
|
+
mimeType?: string | undefined;
|
|
1448
|
+
iconLink?: string | undefined;
|
|
1449
|
+
}>, "many">>;
|
|
1450
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1191
1451
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1192
1452
|
error: z.ZodString;
|
|
1193
1453
|
}, "strip", z.ZodTypeAny, {
|
|
1194
1454
|
operation: "create_event";
|
|
1195
|
-
error: string;
|
|
1196
1455
|
success: boolean;
|
|
1456
|
+
error: string;
|
|
1197
1457
|
event?: z.objectOutputType<{
|
|
1198
1458
|
id: z.ZodString;
|
|
1199
1459
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1209,12 +1469,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1209
1469
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1210
1470
|
}, "strip", z.ZodTypeAny, {
|
|
1211
1471
|
date?: string | undefined;
|
|
1212
|
-
timeZone?: string | undefined;
|
|
1213
1472
|
dateTime?: string | undefined;
|
|
1473
|
+
timeZone?: string | undefined;
|
|
1214
1474
|
}, {
|
|
1215
1475
|
date?: string | undefined;
|
|
1216
|
-
timeZone?: string | undefined;
|
|
1217
1476
|
dateTime?: string | undefined;
|
|
1477
|
+
timeZone?: string | undefined;
|
|
1218
1478
|
}>>;
|
|
1219
1479
|
end: z.ZodOptional<z.ZodObject<{
|
|
1220
1480
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1222,12 +1482,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1222
1482
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1223
1483
|
}, "strip", z.ZodTypeAny, {
|
|
1224
1484
|
date?: string | undefined;
|
|
1225
|
-
timeZone?: string | undefined;
|
|
1226
1485
|
dateTime?: string | undefined;
|
|
1486
|
+
timeZone?: string | undefined;
|
|
1227
1487
|
}, {
|
|
1228
1488
|
date?: string | undefined;
|
|
1229
|
-
timeZone?: string | undefined;
|
|
1230
1489
|
dateTime?: string | undefined;
|
|
1490
|
+
timeZone?: string | undefined;
|
|
1231
1491
|
}>>;
|
|
1232
1492
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1233
1493
|
email: z.ZodString;
|
|
@@ -1237,13 +1497,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1237
1497
|
}, "strip", z.ZodTypeAny, {
|
|
1238
1498
|
email: string;
|
|
1239
1499
|
optional?: boolean | undefined;
|
|
1240
|
-
displayName?: string | undefined;
|
|
1241
1500
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1501
|
+
displayName?: string | undefined;
|
|
1242
1502
|
}, {
|
|
1243
1503
|
email: string;
|
|
1244
1504
|
optional?: boolean | undefined;
|
|
1245
|
-
displayName?: string | undefined;
|
|
1246
1505
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1506
|
+
displayName?: string | undefined;
|
|
1247
1507
|
}>, "many">>;
|
|
1248
1508
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1249
1509
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1257,11 +1517,31 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1257
1517
|
}>>;
|
|
1258
1518
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1259
1519
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1520
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1521
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1522
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1523
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1524
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1525
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1526
|
+
}, "strip", z.ZodTypeAny, {
|
|
1527
|
+
title?: string | undefined;
|
|
1528
|
+
fileId?: string | undefined;
|
|
1529
|
+
fileUrl?: string | undefined;
|
|
1530
|
+
mimeType?: string | undefined;
|
|
1531
|
+
iconLink?: string | undefined;
|
|
1532
|
+
}, {
|
|
1533
|
+
title?: string | undefined;
|
|
1534
|
+
fileId?: string | undefined;
|
|
1535
|
+
fileUrl?: string | undefined;
|
|
1536
|
+
mimeType?: string | undefined;
|
|
1537
|
+
iconLink?: string | undefined;
|
|
1538
|
+
}>, "many">>;
|
|
1539
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1260
1540
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1261
1541
|
}, {
|
|
1262
1542
|
operation: "create_event";
|
|
1263
|
-
error: string;
|
|
1264
1543
|
success: boolean;
|
|
1544
|
+
error: string;
|
|
1265
1545
|
event?: z.objectInputType<{
|
|
1266
1546
|
id: z.ZodString;
|
|
1267
1547
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1277,12 +1557,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1277
1557
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1278
1558
|
}, "strip", z.ZodTypeAny, {
|
|
1279
1559
|
date?: string | undefined;
|
|
1280
|
-
timeZone?: string | undefined;
|
|
1281
1560
|
dateTime?: string | undefined;
|
|
1561
|
+
timeZone?: string | undefined;
|
|
1282
1562
|
}, {
|
|
1283
1563
|
date?: string | undefined;
|
|
1284
|
-
timeZone?: string | undefined;
|
|
1285
1564
|
dateTime?: string | undefined;
|
|
1565
|
+
timeZone?: string | undefined;
|
|
1286
1566
|
}>>;
|
|
1287
1567
|
end: z.ZodOptional<z.ZodObject<{
|
|
1288
1568
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1290,12 +1570,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1290
1570
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1291
1571
|
}, "strip", z.ZodTypeAny, {
|
|
1292
1572
|
date?: string | undefined;
|
|
1293
|
-
timeZone?: string | undefined;
|
|
1294
1573
|
dateTime?: string | undefined;
|
|
1574
|
+
timeZone?: string | undefined;
|
|
1295
1575
|
}, {
|
|
1296
1576
|
date?: string | undefined;
|
|
1297
|
-
timeZone?: string | undefined;
|
|
1298
1577
|
dateTime?: string | undefined;
|
|
1578
|
+
timeZone?: string | undefined;
|
|
1299
1579
|
}>>;
|
|
1300
1580
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1301
1581
|
email: z.ZodString;
|
|
@@ -1305,13 +1585,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1305
1585
|
}, "strip", z.ZodTypeAny, {
|
|
1306
1586
|
email: string;
|
|
1307
1587
|
optional?: boolean | undefined;
|
|
1308
|
-
displayName?: string | undefined;
|
|
1309
1588
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1589
|
+
displayName?: string | undefined;
|
|
1310
1590
|
}, {
|
|
1311
1591
|
email: string;
|
|
1312
1592
|
optional?: boolean | undefined;
|
|
1313
|
-
displayName?: string | undefined;
|
|
1314
1593
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1594
|
+
displayName?: string | undefined;
|
|
1315
1595
|
}>, "many">>;
|
|
1316
1596
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1317
1597
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1325,6 +1605,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1325
1605
|
}>>;
|
|
1326
1606
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1327
1607
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1608
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1609
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1610
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1611
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1612
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1613
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1614
|
+
}, "strip", z.ZodTypeAny, {
|
|
1615
|
+
title?: string | undefined;
|
|
1616
|
+
fileId?: string | undefined;
|
|
1617
|
+
fileUrl?: string | undefined;
|
|
1618
|
+
mimeType?: string | undefined;
|
|
1619
|
+
iconLink?: string | undefined;
|
|
1620
|
+
}, {
|
|
1621
|
+
title?: string | undefined;
|
|
1622
|
+
fileId?: string | undefined;
|
|
1623
|
+
fileUrl?: string | undefined;
|
|
1624
|
+
mimeType?: string | undefined;
|
|
1625
|
+
iconLink?: string | undefined;
|
|
1626
|
+
}>, "many">>;
|
|
1627
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1328
1628
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1329
1629
|
}>, z.ZodObject<{
|
|
1330
1630
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -1344,12 +1644,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1344
1644
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1345
1645
|
}, "strip", z.ZodTypeAny, {
|
|
1346
1646
|
date?: string | undefined;
|
|
1347
|
-
timeZone?: string | undefined;
|
|
1348
1647
|
dateTime?: string | undefined;
|
|
1648
|
+
timeZone?: string | undefined;
|
|
1349
1649
|
}, {
|
|
1350
1650
|
date?: string | undefined;
|
|
1351
|
-
timeZone?: string | undefined;
|
|
1352
1651
|
dateTime?: string | undefined;
|
|
1652
|
+
timeZone?: string | undefined;
|
|
1353
1653
|
}>>;
|
|
1354
1654
|
end: z.ZodOptional<z.ZodObject<{
|
|
1355
1655
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1357,12 +1657,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1357
1657
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1358
1658
|
}, "strip", z.ZodTypeAny, {
|
|
1359
1659
|
date?: string | undefined;
|
|
1360
|
-
timeZone?: string | undefined;
|
|
1361
1660
|
dateTime?: string | undefined;
|
|
1661
|
+
timeZone?: string | undefined;
|
|
1362
1662
|
}, {
|
|
1363
1663
|
date?: string | undefined;
|
|
1364
|
-
timeZone?: string | undefined;
|
|
1365
1664
|
dateTime?: string | undefined;
|
|
1665
|
+
timeZone?: string | undefined;
|
|
1366
1666
|
}>>;
|
|
1367
1667
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1368
1668
|
email: z.ZodString;
|
|
@@ -1372,13 +1672,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1372
1672
|
}, "strip", z.ZodTypeAny, {
|
|
1373
1673
|
email: string;
|
|
1374
1674
|
optional?: boolean | undefined;
|
|
1375
|
-
displayName?: string | undefined;
|
|
1376
1675
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1676
|
+
displayName?: string | undefined;
|
|
1377
1677
|
}, {
|
|
1378
1678
|
email: string;
|
|
1379
1679
|
optional?: boolean | undefined;
|
|
1380
|
-
displayName?: string | undefined;
|
|
1381
1680
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1681
|
+
displayName?: string | undefined;
|
|
1382
1682
|
}>, "many">>;
|
|
1383
1683
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1384
1684
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1392,6 +1692,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1392
1692
|
}>>;
|
|
1393
1693
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1394
1694
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1695
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1696
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1698
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1699
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1700
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1701
|
+
}, "strip", z.ZodTypeAny, {
|
|
1702
|
+
title?: string | undefined;
|
|
1703
|
+
fileId?: string | undefined;
|
|
1704
|
+
fileUrl?: string | undefined;
|
|
1705
|
+
mimeType?: string | undefined;
|
|
1706
|
+
iconLink?: string | undefined;
|
|
1707
|
+
}, {
|
|
1708
|
+
title?: string | undefined;
|
|
1709
|
+
fileId?: string | undefined;
|
|
1710
|
+
fileUrl?: string | undefined;
|
|
1711
|
+
mimeType?: string | undefined;
|
|
1712
|
+
iconLink?: string | undefined;
|
|
1713
|
+
}>, "many">>;
|
|
1714
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1395
1715
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1396
1716
|
id: z.ZodString;
|
|
1397
1717
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1407,12 +1727,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1407
1727
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1408
1728
|
}, "strip", z.ZodTypeAny, {
|
|
1409
1729
|
date?: string | undefined;
|
|
1410
|
-
timeZone?: string | undefined;
|
|
1411
1730
|
dateTime?: string | undefined;
|
|
1731
|
+
timeZone?: string | undefined;
|
|
1412
1732
|
}, {
|
|
1413
1733
|
date?: string | undefined;
|
|
1414
|
-
timeZone?: string | undefined;
|
|
1415
1734
|
dateTime?: string | undefined;
|
|
1735
|
+
timeZone?: string | undefined;
|
|
1416
1736
|
}>>;
|
|
1417
1737
|
end: z.ZodOptional<z.ZodObject<{
|
|
1418
1738
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1420,12 +1740,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1420
1740
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1421
1741
|
}, "strip", z.ZodTypeAny, {
|
|
1422
1742
|
date?: string | undefined;
|
|
1423
|
-
timeZone?: string | undefined;
|
|
1424
1743
|
dateTime?: string | undefined;
|
|
1744
|
+
timeZone?: string | undefined;
|
|
1425
1745
|
}, {
|
|
1426
1746
|
date?: string | undefined;
|
|
1427
|
-
timeZone?: string | undefined;
|
|
1428
1747
|
dateTime?: string | undefined;
|
|
1748
|
+
timeZone?: string | undefined;
|
|
1429
1749
|
}>>;
|
|
1430
1750
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1431
1751
|
email: z.ZodString;
|
|
@@ -1435,13 +1755,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1435
1755
|
}, "strip", z.ZodTypeAny, {
|
|
1436
1756
|
email: string;
|
|
1437
1757
|
optional?: boolean | undefined;
|
|
1438
|
-
displayName?: string | undefined;
|
|
1439
1758
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1759
|
+
displayName?: string | undefined;
|
|
1440
1760
|
}, {
|
|
1441
1761
|
email: string;
|
|
1442
1762
|
optional?: boolean | undefined;
|
|
1443
|
-
displayName?: string | undefined;
|
|
1444
1763
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1764
|
+
displayName?: string | undefined;
|
|
1445
1765
|
}>, "many">>;
|
|
1446
1766
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1447
1767
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1455,6 +1775,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1455
1775
|
}>>;
|
|
1456
1776
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1457
1777
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1778
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1779
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1780
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1781
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1782
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1783
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1784
|
+
}, "strip", z.ZodTypeAny, {
|
|
1785
|
+
title?: string | undefined;
|
|
1786
|
+
fileId?: string | undefined;
|
|
1787
|
+
fileUrl?: string | undefined;
|
|
1788
|
+
mimeType?: string | undefined;
|
|
1789
|
+
iconLink?: string | undefined;
|
|
1790
|
+
}, {
|
|
1791
|
+
title?: string | undefined;
|
|
1792
|
+
fileId?: string | undefined;
|
|
1793
|
+
fileUrl?: string | undefined;
|
|
1794
|
+
mimeType?: string | undefined;
|
|
1795
|
+
iconLink?: string | undefined;
|
|
1796
|
+
}>, "many">>;
|
|
1797
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1458
1798
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1459
1799
|
id: z.ZodString;
|
|
1460
1800
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1470,12 +1810,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1470
1810
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1471
1811
|
}, "strip", z.ZodTypeAny, {
|
|
1472
1812
|
date?: string | undefined;
|
|
1473
|
-
timeZone?: string | undefined;
|
|
1474
1813
|
dateTime?: string | undefined;
|
|
1814
|
+
timeZone?: string | undefined;
|
|
1475
1815
|
}, {
|
|
1476
1816
|
date?: string | undefined;
|
|
1477
|
-
timeZone?: string | undefined;
|
|
1478
1817
|
dateTime?: string | undefined;
|
|
1818
|
+
timeZone?: string | undefined;
|
|
1479
1819
|
}>>;
|
|
1480
1820
|
end: z.ZodOptional<z.ZodObject<{
|
|
1481
1821
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1483,12 +1823,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1483
1823
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1484
1824
|
}, "strip", z.ZodTypeAny, {
|
|
1485
1825
|
date?: string | undefined;
|
|
1486
|
-
timeZone?: string | undefined;
|
|
1487
1826
|
dateTime?: string | undefined;
|
|
1827
|
+
timeZone?: string | undefined;
|
|
1488
1828
|
}, {
|
|
1489
1829
|
date?: string | undefined;
|
|
1490
|
-
timeZone?: string | undefined;
|
|
1491
1830
|
dateTime?: string | undefined;
|
|
1831
|
+
timeZone?: string | undefined;
|
|
1492
1832
|
}>>;
|
|
1493
1833
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1494
1834
|
email: z.ZodString;
|
|
@@ -1498,13 +1838,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1498
1838
|
}, "strip", z.ZodTypeAny, {
|
|
1499
1839
|
email: string;
|
|
1500
1840
|
optional?: boolean | undefined;
|
|
1501
|
-
displayName?: string | undefined;
|
|
1502
1841
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1842
|
+
displayName?: string | undefined;
|
|
1503
1843
|
}, {
|
|
1504
1844
|
email: string;
|
|
1505
1845
|
optional?: boolean | undefined;
|
|
1506
|
-
displayName?: string | undefined;
|
|
1507
1846
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1847
|
+
displayName?: string | undefined;
|
|
1508
1848
|
}>, "many">>;
|
|
1509
1849
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1510
1850
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1518,12 +1858,32 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1518
1858
|
}>>;
|
|
1519
1859
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1520
1860
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1861
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1862
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1863
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1864
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1865
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1866
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1867
|
+
}, "strip", z.ZodTypeAny, {
|
|
1868
|
+
title?: string | undefined;
|
|
1869
|
+
fileId?: string | undefined;
|
|
1870
|
+
fileUrl?: string | undefined;
|
|
1871
|
+
mimeType?: string | undefined;
|
|
1872
|
+
iconLink?: string | undefined;
|
|
1873
|
+
}, {
|
|
1874
|
+
title?: string | undefined;
|
|
1875
|
+
fileId?: string | undefined;
|
|
1876
|
+
fileUrl?: string | undefined;
|
|
1877
|
+
mimeType?: string | undefined;
|
|
1878
|
+
iconLink?: string | undefined;
|
|
1879
|
+
}>, "many">>;
|
|
1880
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1521
1881
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1522
1882
|
error: z.ZodString;
|
|
1523
1883
|
}, "strip", z.ZodTypeAny, {
|
|
1524
1884
|
operation: "update_event";
|
|
1525
|
-
error: string;
|
|
1526
1885
|
success: boolean;
|
|
1886
|
+
error: string;
|
|
1527
1887
|
event?: z.objectOutputType<{
|
|
1528
1888
|
id: z.ZodString;
|
|
1529
1889
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1539,12 +1899,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1539
1899
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1540
1900
|
}, "strip", z.ZodTypeAny, {
|
|
1541
1901
|
date?: string | undefined;
|
|
1542
|
-
timeZone?: string | undefined;
|
|
1543
1902
|
dateTime?: string | undefined;
|
|
1903
|
+
timeZone?: string | undefined;
|
|
1544
1904
|
}, {
|
|
1545
1905
|
date?: string | undefined;
|
|
1546
|
-
timeZone?: string | undefined;
|
|
1547
1906
|
dateTime?: string | undefined;
|
|
1907
|
+
timeZone?: string | undefined;
|
|
1548
1908
|
}>>;
|
|
1549
1909
|
end: z.ZodOptional<z.ZodObject<{
|
|
1550
1910
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1552,12 +1912,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1552
1912
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1553
1913
|
}, "strip", z.ZodTypeAny, {
|
|
1554
1914
|
date?: string | undefined;
|
|
1555
|
-
timeZone?: string | undefined;
|
|
1556
1915
|
dateTime?: string | undefined;
|
|
1916
|
+
timeZone?: string | undefined;
|
|
1557
1917
|
}, {
|
|
1558
1918
|
date?: string | undefined;
|
|
1559
|
-
timeZone?: string | undefined;
|
|
1560
1919
|
dateTime?: string | undefined;
|
|
1920
|
+
timeZone?: string | undefined;
|
|
1561
1921
|
}>>;
|
|
1562
1922
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1563
1923
|
email: z.ZodString;
|
|
@@ -1567,13 +1927,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1567
1927
|
}, "strip", z.ZodTypeAny, {
|
|
1568
1928
|
email: string;
|
|
1569
1929
|
optional?: boolean | undefined;
|
|
1570
|
-
displayName?: string | undefined;
|
|
1571
1930
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1931
|
+
displayName?: string | undefined;
|
|
1572
1932
|
}, {
|
|
1573
1933
|
email: string;
|
|
1574
1934
|
optional?: boolean | undefined;
|
|
1575
|
-
displayName?: string | undefined;
|
|
1576
1935
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
1936
|
+
displayName?: string | undefined;
|
|
1577
1937
|
}>, "many">>;
|
|
1578
1938
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1579
1939
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1587,11 +1947,31 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1587
1947
|
}>>;
|
|
1588
1948
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1589
1949
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
1950
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1951
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
1952
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
1953
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
1955
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
1956
|
+
}, "strip", z.ZodTypeAny, {
|
|
1957
|
+
title?: string | undefined;
|
|
1958
|
+
fileId?: string | undefined;
|
|
1959
|
+
fileUrl?: string | undefined;
|
|
1960
|
+
mimeType?: string | undefined;
|
|
1961
|
+
iconLink?: string | undefined;
|
|
1962
|
+
}, {
|
|
1963
|
+
title?: string | undefined;
|
|
1964
|
+
fileId?: string | undefined;
|
|
1965
|
+
fileUrl?: string | undefined;
|
|
1966
|
+
mimeType?: string | undefined;
|
|
1967
|
+
iconLink?: string | undefined;
|
|
1968
|
+
}>, "many">>;
|
|
1969
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1590
1970
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1591
1971
|
}, {
|
|
1592
1972
|
operation: "update_event";
|
|
1593
|
-
error: string;
|
|
1594
1973
|
success: boolean;
|
|
1974
|
+
error: string;
|
|
1595
1975
|
event?: z.objectInputType<{
|
|
1596
1976
|
id: z.ZodString;
|
|
1597
1977
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -1607,12 +1987,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1607
1987
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1608
1988
|
}, "strip", z.ZodTypeAny, {
|
|
1609
1989
|
date?: string | undefined;
|
|
1610
|
-
timeZone?: string | undefined;
|
|
1611
1990
|
dateTime?: string | undefined;
|
|
1991
|
+
timeZone?: string | undefined;
|
|
1612
1992
|
}, {
|
|
1613
1993
|
date?: string | undefined;
|
|
1614
|
-
timeZone?: string | undefined;
|
|
1615
1994
|
dateTime?: string | undefined;
|
|
1995
|
+
timeZone?: string | undefined;
|
|
1616
1996
|
}>>;
|
|
1617
1997
|
end: z.ZodOptional<z.ZodObject<{
|
|
1618
1998
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1620,12 +2000,12 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1620
2000
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1621
2001
|
}, "strip", z.ZodTypeAny, {
|
|
1622
2002
|
date?: string | undefined;
|
|
1623
|
-
timeZone?: string | undefined;
|
|
1624
2003
|
dateTime?: string | undefined;
|
|
2004
|
+
timeZone?: string | undefined;
|
|
1625
2005
|
}, {
|
|
1626
2006
|
date?: string | undefined;
|
|
1627
|
-
timeZone?: string | undefined;
|
|
1628
2007
|
dateTime?: string | undefined;
|
|
2008
|
+
timeZone?: string | undefined;
|
|
1629
2009
|
}>>;
|
|
1630
2010
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1631
2011
|
email: z.ZodString;
|
|
@@ -1635,13 +2015,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1635
2015
|
}, "strip", z.ZodTypeAny, {
|
|
1636
2016
|
email: string;
|
|
1637
2017
|
optional?: boolean | undefined;
|
|
1638
|
-
displayName?: string | undefined;
|
|
1639
2018
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2019
|
+
displayName?: string | undefined;
|
|
1640
2020
|
}, {
|
|
1641
2021
|
email: string;
|
|
1642
2022
|
optional?: boolean | undefined;
|
|
1643
|
-
displayName?: string | undefined;
|
|
1644
2023
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2024
|
+
displayName?: string | undefined;
|
|
1645
2025
|
}>, "many">>;
|
|
1646
2026
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
1647
2027
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1655,6 +2035,26 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1655
2035
|
}>>;
|
|
1656
2036
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
1657
2037
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2038
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2039
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2040
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2041
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2042
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2043
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2044
|
+
}, "strip", z.ZodTypeAny, {
|
|
2045
|
+
title?: string | undefined;
|
|
2046
|
+
fileId?: string | undefined;
|
|
2047
|
+
fileUrl?: string | undefined;
|
|
2048
|
+
mimeType?: string | undefined;
|
|
2049
|
+
iconLink?: string | undefined;
|
|
2050
|
+
}, {
|
|
2051
|
+
title?: string | undefined;
|
|
2052
|
+
fileId?: string | undefined;
|
|
2053
|
+
fileUrl?: string | undefined;
|
|
2054
|
+
mimeType?: string | undefined;
|
|
2055
|
+
iconLink?: string | undefined;
|
|
2056
|
+
}>, "many">>;
|
|
2057
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1658
2058
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1659
2059
|
}>, z.ZodObject<{
|
|
1660
2060
|
operation: z.ZodLiteral<"delete_event">;
|
|
@@ -1663,13 +2063,13 @@ declare const GoogleCalendarResultSchema: z.ZodDiscriminatedUnion<"operation", [
|
|
|
1663
2063
|
error: z.ZodString;
|
|
1664
2064
|
}, "strip", z.ZodTypeAny, {
|
|
1665
2065
|
operation: "delete_event";
|
|
1666
|
-
error: string;
|
|
1667
2066
|
success: boolean;
|
|
2067
|
+
error: string;
|
|
1668
2068
|
deleted?: boolean | undefined;
|
|
1669
2069
|
}, {
|
|
1670
2070
|
operation: "delete_event";
|
|
1671
|
-
error: string;
|
|
1672
2071
|
success: boolean;
|
|
2072
|
+
error: string;
|
|
1673
2073
|
deleted?: boolean | undefined;
|
|
1674
2074
|
}>]>;
|
|
1675
2075
|
type GoogleCalendarResult = z.output<typeof GoogleCalendarResultSchema>;
|
|
@@ -1693,13 +2093,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1693
2093
|
}, "strip", z.ZodTypeAny, {
|
|
1694
2094
|
operation: "list_calendars";
|
|
1695
2095
|
max_results: number;
|
|
1696
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1697
2096
|
page_token?: string | undefined;
|
|
2097
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1698
2098
|
}, {
|
|
1699
2099
|
operation: "list_calendars";
|
|
1700
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1701
2100
|
max_results?: number | undefined;
|
|
1702
2101
|
page_token?: string | undefined;
|
|
2102
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1703
2103
|
}>, z.ZodObject<{
|
|
1704
2104
|
operation: z.ZodLiteral<"list_events">;
|
|
1705
2105
|
calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1714,25 +2114,25 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1714
2114
|
}, "strip", z.ZodTypeAny, {
|
|
1715
2115
|
operation: "list_events";
|
|
1716
2116
|
max_results: number;
|
|
1717
|
-
order_by: "updated" | "startTime";
|
|
1718
2117
|
calendar_id: string;
|
|
1719
2118
|
single_events: boolean;
|
|
1720
|
-
|
|
1721
|
-
q?: string | undefined;
|
|
2119
|
+
order_by: "startTime" | "updated";
|
|
1722
2120
|
page_token?: string | undefined;
|
|
2121
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1723
2122
|
time_min?: string | undefined;
|
|
1724
2123
|
time_max?: string | undefined;
|
|
2124
|
+
q?: string | undefined;
|
|
1725
2125
|
}, {
|
|
1726
2126
|
operation: "list_events";
|
|
1727
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1728
2127
|
max_results?: number | undefined;
|
|
1729
|
-
order_by?: "updated" | "startTime" | undefined;
|
|
1730
|
-
q?: string | undefined;
|
|
1731
2128
|
page_token?: string | undefined;
|
|
2129
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1732
2130
|
calendar_id?: string | undefined;
|
|
1733
2131
|
time_min?: string | undefined;
|
|
1734
2132
|
time_max?: string | undefined;
|
|
2133
|
+
q?: string | undefined;
|
|
1735
2134
|
single_events?: boolean | undefined;
|
|
2135
|
+
order_by?: "startTime" | "updated" | undefined;
|
|
1736
2136
|
}>, z.ZodObject<{
|
|
1737
2137
|
operation: z.ZodLiteral<"get_event">;
|
|
1738
2138
|
calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1760,12 +2160,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1760
2160
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1761
2161
|
}, "strip", z.ZodTypeAny, {
|
|
1762
2162
|
date?: string | undefined;
|
|
1763
|
-
timeZone?: string | undefined;
|
|
1764
2163
|
dateTime?: string | undefined;
|
|
2164
|
+
timeZone?: string | undefined;
|
|
1765
2165
|
}, {
|
|
1766
2166
|
date?: string | undefined;
|
|
1767
|
-
timeZone?: string | undefined;
|
|
1768
2167
|
dateTime?: string | undefined;
|
|
2168
|
+
timeZone?: string | undefined;
|
|
1769
2169
|
}>;
|
|
1770
2170
|
end: z.ZodObject<{
|
|
1771
2171
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1773,12 +2173,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1773
2173
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1774
2174
|
}, "strip", z.ZodTypeAny, {
|
|
1775
2175
|
date?: string | undefined;
|
|
1776
|
-
timeZone?: string | undefined;
|
|
1777
2176
|
dateTime?: string | undefined;
|
|
2177
|
+
timeZone?: string | undefined;
|
|
1778
2178
|
}, {
|
|
1779
2179
|
date?: string | undefined;
|
|
1780
|
-
timeZone?: string | undefined;
|
|
1781
2180
|
dateTime?: string | undefined;
|
|
2181
|
+
timeZone?: string | undefined;
|
|
1782
2182
|
}>;
|
|
1783
2183
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1784
2184
|
email: z.ZodString;
|
|
@@ -1788,30 +2188,30 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1788
2188
|
}, "strip", z.ZodTypeAny, {
|
|
1789
2189
|
email: string;
|
|
1790
2190
|
optional?: boolean | undefined;
|
|
1791
|
-
displayName?: string | undefined;
|
|
1792
2191
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2192
|
+
displayName?: string | undefined;
|
|
1793
2193
|
}, {
|
|
1794
2194
|
email: string;
|
|
1795
2195
|
optional?: boolean | undefined;
|
|
1796
|
-
displayName?: string | undefined;
|
|
1797
2196
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2197
|
+
displayName?: string | undefined;
|
|
1798
2198
|
}>, "many">>;
|
|
1799
2199
|
conference: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1800
2200
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1801
2201
|
}, "strip", z.ZodTypeAny, {
|
|
1802
2202
|
operation: "create_event";
|
|
2203
|
+
calendar_id: string;
|
|
1803
2204
|
summary: string;
|
|
1804
2205
|
start: {
|
|
1805
2206
|
date?: string | undefined;
|
|
1806
|
-
timeZone?: string | undefined;
|
|
1807
2207
|
dateTime?: string | undefined;
|
|
2208
|
+
timeZone?: string | undefined;
|
|
1808
2209
|
};
|
|
1809
2210
|
end: {
|
|
1810
2211
|
date?: string | undefined;
|
|
1811
|
-
timeZone?: string | undefined;
|
|
1812
2212
|
dateTime?: string | undefined;
|
|
2213
|
+
timeZone?: string | undefined;
|
|
1813
2214
|
};
|
|
1814
|
-
calendar_id: string;
|
|
1815
2215
|
conference: boolean;
|
|
1816
2216
|
description?: string | undefined;
|
|
1817
2217
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1819,32 +2219,32 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1819
2219
|
attendees?: {
|
|
1820
2220
|
email: string;
|
|
1821
2221
|
optional?: boolean | undefined;
|
|
1822
|
-
displayName?: string | undefined;
|
|
1823
2222
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2223
|
+
displayName?: string | undefined;
|
|
1824
2224
|
}[] | undefined;
|
|
1825
2225
|
}, {
|
|
1826
2226
|
operation: "create_event";
|
|
1827
2227
|
summary: string;
|
|
1828
2228
|
start: {
|
|
1829
2229
|
date?: string | undefined;
|
|
1830
|
-
timeZone?: string | undefined;
|
|
1831
2230
|
dateTime?: string | undefined;
|
|
2231
|
+
timeZone?: string | undefined;
|
|
1832
2232
|
};
|
|
1833
2233
|
end: {
|
|
1834
2234
|
date?: string | undefined;
|
|
1835
|
-
timeZone?: string | undefined;
|
|
1836
2235
|
dateTime?: string | undefined;
|
|
2236
|
+
timeZone?: string | undefined;
|
|
1837
2237
|
};
|
|
1838
2238
|
description?: string | undefined;
|
|
1839
2239
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2240
|
+
calendar_id?: string | undefined;
|
|
1840
2241
|
location?: string | undefined;
|
|
1841
2242
|
attendees?: {
|
|
1842
2243
|
email: string;
|
|
1843
2244
|
optional?: boolean | undefined;
|
|
1844
|
-
displayName?: string | undefined;
|
|
1845
2245
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2246
|
+
displayName?: string | undefined;
|
|
1846
2247
|
}[] | undefined;
|
|
1847
|
-
calendar_id?: string | undefined;
|
|
1848
2248
|
conference?: boolean | undefined;
|
|
1849
2249
|
}>, z.ZodObject<{
|
|
1850
2250
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -1859,12 +2259,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1859
2259
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1860
2260
|
}, "strip", z.ZodTypeAny, {
|
|
1861
2261
|
date?: string | undefined;
|
|
1862
|
-
timeZone?: string | undefined;
|
|
1863
2262
|
dateTime?: string | undefined;
|
|
2263
|
+
timeZone?: string | undefined;
|
|
1864
2264
|
}, {
|
|
1865
2265
|
date?: string | undefined;
|
|
1866
|
-
timeZone?: string | undefined;
|
|
1867
2266
|
dateTime?: string | undefined;
|
|
2267
|
+
timeZone?: string | undefined;
|
|
1868
2268
|
}>>;
|
|
1869
2269
|
end: z.ZodOptional<z.ZodObject<{
|
|
1870
2270
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -1872,12 +2272,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1872
2272
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
1873
2273
|
}, "strip", z.ZodTypeAny, {
|
|
1874
2274
|
date?: string | undefined;
|
|
1875
|
-
timeZone?: string | undefined;
|
|
1876
2275
|
dateTime?: string | undefined;
|
|
2276
|
+
timeZone?: string | undefined;
|
|
1877
2277
|
}, {
|
|
1878
2278
|
date?: string | undefined;
|
|
1879
|
-
timeZone?: string | undefined;
|
|
1880
2279
|
dateTime?: string | undefined;
|
|
2280
|
+
timeZone?: string | undefined;
|
|
1881
2281
|
}>>;
|
|
1882
2282
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1883
2283
|
email: z.ZodString;
|
|
@@ -1887,13 +2287,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1887
2287
|
}, "strip", z.ZodTypeAny, {
|
|
1888
2288
|
email: string;
|
|
1889
2289
|
optional?: boolean | undefined;
|
|
1890
|
-
displayName?: string | undefined;
|
|
1891
2290
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2291
|
+
displayName?: string | undefined;
|
|
1892
2292
|
}, {
|
|
1893
2293
|
email: string;
|
|
1894
2294
|
optional?: boolean | undefined;
|
|
1895
|
-
displayName?: string | undefined;
|
|
1896
2295
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2296
|
+
displayName?: string | undefined;
|
|
1897
2297
|
}>, "many">>;
|
|
1898
2298
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1899
2299
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1903,47 +2303,47 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1903
2303
|
description?: string | undefined;
|
|
1904
2304
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1905
2305
|
summary?: string | undefined;
|
|
2306
|
+
location?: string | undefined;
|
|
1906
2307
|
start?: {
|
|
1907
2308
|
date?: string | undefined;
|
|
1908
|
-
timeZone?: string | undefined;
|
|
1909
2309
|
dateTime?: string | undefined;
|
|
2310
|
+
timeZone?: string | undefined;
|
|
1910
2311
|
} | undefined;
|
|
1911
|
-
location?: string | undefined;
|
|
1912
2312
|
end?: {
|
|
1913
2313
|
date?: string | undefined;
|
|
1914
|
-
timeZone?: string | undefined;
|
|
1915
2314
|
dateTime?: string | undefined;
|
|
2315
|
+
timeZone?: string | undefined;
|
|
1916
2316
|
} | undefined;
|
|
1917
2317
|
attendees?: {
|
|
1918
2318
|
email: string;
|
|
1919
2319
|
optional?: boolean | undefined;
|
|
1920
|
-
displayName?: string | undefined;
|
|
1921
2320
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2321
|
+
displayName?: string | undefined;
|
|
1922
2322
|
}[] | undefined;
|
|
1923
2323
|
}, {
|
|
1924
2324
|
operation: "update_event";
|
|
1925
2325
|
event_id: string;
|
|
1926
2326
|
description?: string | undefined;
|
|
1927
2327
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
2328
|
+
calendar_id?: string | undefined;
|
|
1928
2329
|
summary?: string | undefined;
|
|
2330
|
+
location?: string | undefined;
|
|
1929
2331
|
start?: {
|
|
1930
2332
|
date?: string | undefined;
|
|
1931
|
-
timeZone?: string | undefined;
|
|
1932
2333
|
dateTime?: string | undefined;
|
|
2334
|
+
timeZone?: string | undefined;
|
|
1933
2335
|
} | undefined;
|
|
1934
|
-
location?: string | undefined;
|
|
1935
2336
|
end?: {
|
|
1936
2337
|
date?: string | undefined;
|
|
1937
|
-
timeZone?: string | undefined;
|
|
1938
2338
|
dateTime?: string | undefined;
|
|
2339
|
+
timeZone?: string | undefined;
|
|
1939
2340
|
} | undefined;
|
|
1940
2341
|
attendees?: {
|
|
1941
2342
|
email: string;
|
|
1942
2343
|
optional?: boolean | undefined;
|
|
1943
|
-
displayName?: string | undefined;
|
|
1944
2344
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2345
|
+
displayName?: string | undefined;
|
|
1945
2346
|
}[] | undefined;
|
|
1946
|
-
calendar_id?: string | undefined;
|
|
1947
2347
|
}>, z.ZodObject<{
|
|
1948
2348
|
operation: z.ZodLiteral<"delete_event">;
|
|
1949
2349
|
calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -1954,14 +2354,14 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1954
2354
|
operation: "delete_event";
|
|
1955
2355
|
calendar_id: string;
|
|
1956
2356
|
event_id: string;
|
|
1957
|
-
send_updates: "
|
|
2357
|
+
send_updates: "all" | "externalOnly" | "none";
|
|
1958
2358
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1959
2359
|
}, {
|
|
1960
2360
|
operation: "delete_event";
|
|
1961
2361
|
event_id: string;
|
|
1962
2362
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1963
2363
|
calendar_id?: string | undefined;
|
|
1964
|
-
send_updates?: "
|
|
2364
|
+
send_updates?: "all" | "externalOnly" | "none" | undefined;
|
|
1965
2365
|
}>]>;
|
|
1966
2366
|
static readonly resultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
|
|
1967
2367
|
operation: z.ZodLiteral<"list_calendars">;
|
|
@@ -1992,9 +2392,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
1992
2392
|
error: z.ZodString;
|
|
1993
2393
|
}, "strip", z.ZodTypeAny, {
|
|
1994
2394
|
operation: "list_calendars";
|
|
1995
|
-
error: string;
|
|
1996
2395
|
success: boolean;
|
|
1997
|
-
|
|
2396
|
+
error: string;
|
|
1998
2397
|
calendars?: z.objectOutputType<{
|
|
1999
2398
|
id: z.ZodString;
|
|
2000
2399
|
summary: z.ZodOptional<z.ZodString>;
|
|
@@ -2003,11 +2402,11 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2003
2402
|
selected: z.ZodOptional<z.ZodBoolean>;
|
|
2004
2403
|
accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
|
|
2005
2404
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2405
|
+
next_page_token?: string | undefined;
|
|
2006
2406
|
}, {
|
|
2007
2407
|
operation: "list_calendars";
|
|
2008
|
-
error: string;
|
|
2009
2408
|
success: boolean;
|
|
2010
|
-
|
|
2409
|
+
error: string;
|
|
2011
2410
|
calendars?: z.objectInputType<{
|
|
2012
2411
|
id: z.ZodString;
|
|
2013
2412
|
summary: z.ZodOptional<z.ZodString>;
|
|
@@ -2016,6 +2415,7 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2016
2415
|
selected: z.ZodOptional<z.ZodBoolean>;
|
|
2017
2416
|
accessRole: z.ZodOptional<z.ZodEnum<["freeBusyReader", "reader", "writer", "owner"]>>;
|
|
2018
2417
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2418
|
+
next_page_token?: string | undefined;
|
|
2019
2419
|
}>, z.ZodObject<{
|
|
2020
2420
|
operation: z.ZodLiteral<"list_events">;
|
|
2021
2421
|
success: z.ZodBoolean;
|
|
@@ -2034,12 +2434,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2034
2434
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2035
2435
|
}, "strip", z.ZodTypeAny, {
|
|
2036
2436
|
date?: string | undefined;
|
|
2037
|
-
timeZone?: string | undefined;
|
|
2038
2437
|
dateTime?: string | undefined;
|
|
2438
|
+
timeZone?: string | undefined;
|
|
2039
2439
|
}, {
|
|
2040
2440
|
date?: string | undefined;
|
|
2041
|
-
timeZone?: string | undefined;
|
|
2042
2441
|
dateTime?: string | undefined;
|
|
2442
|
+
timeZone?: string | undefined;
|
|
2043
2443
|
}>>;
|
|
2044
2444
|
end: z.ZodOptional<z.ZodObject<{
|
|
2045
2445
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2047,12 +2447,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2047
2447
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2048
2448
|
}, "strip", z.ZodTypeAny, {
|
|
2049
2449
|
date?: string | undefined;
|
|
2050
|
-
timeZone?: string | undefined;
|
|
2051
2450
|
dateTime?: string | undefined;
|
|
2451
|
+
timeZone?: string | undefined;
|
|
2052
2452
|
}, {
|
|
2053
2453
|
date?: string | undefined;
|
|
2054
|
-
timeZone?: string | undefined;
|
|
2055
2454
|
dateTime?: string | undefined;
|
|
2455
|
+
timeZone?: string | undefined;
|
|
2056
2456
|
}>>;
|
|
2057
2457
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2058
2458
|
email: z.ZodString;
|
|
@@ -2062,13 +2462,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2062
2462
|
}, "strip", z.ZodTypeAny, {
|
|
2063
2463
|
email: string;
|
|
2064
2464
|
optional?: boolean | undefined;
|
|
2065
|
-
displayName?: string | undefined;
|
|
2066
2465
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2466
|
+
displayName?: string | undefined;
|
|
2067
2467
|
}, {
|
|
2068
2468
|
email: string;
|
|
2069
2469
|
optional?: boolean | undefined;
|
|
2070
|
-
displayName?: string | undefined;
|
|
2071
2470
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2471
|
+
displayName?: string | undefined;
|
|
2072
2472
|
}>, "many">>;
|
|
2073
2473
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2074
2474
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2082,6 +2482,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2082
2482
|
}>>;
|
|
2083
2483
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2084
2484
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2485
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2486
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2487
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2488
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2489
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2490
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2491
|
+
}, "strip", z.ZodTypeAny, {
|
|
2492
|
+
title?: string | undefined;
|
|
2493
|
+
fileId?: string | undefined;
|
|
2494
|
+
fileUrl?: string | undefined;
|
|
2495
|
+
mimeType?: string | undefined;
|
|
2496
|
+
iconLink?: string | undefined;
|
|
2497
|
+
}, {
|
|
2498
|
+
title?: string | undefined;
|
|
2499
|
+
fileId?: string | undefined;
|
|
2500
|
+
fileUrl?: string | undefined;
|
|
2501
|
+
mimeType?: string | undefined;
|
|
2502
|
+
iconLink?: string | undefined;
|
|
2503
|
+
}>, "many">>;
|
|
2504
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2085
2505
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2086
2506
|
id: z.ZodString;
|
|
2087
2507
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2097,12 +2517,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2097
2517
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2098
2518
|
}, "strip", z.ZodTypeAny, {
|
|
2099
2519
|
date?: string | undefined;
|
|
2100
|
-
timeZone?: string | undefined;
|
|
2101
2520
|
dateTime?: string | undefined;
|
|
2521
|
+
timeZone?: string | undefined;
|
|
2102
2522
|
}, {
|
|
2103
2523
|
date?: string | undefined;
|
|
2104
|
-
timeZone?: string | undefined;
|
|
2105
2524
|
dateTime?: string | undefined;
|
|
2525
|
+
timeZone?: string | undefined;
|
|
2106
2526
|
}>>;
|
|
2107
2527
|
end: z.ZodOptional<z.ZodObject<{
|
|
2108
2528
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2110,12 +2530,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2110
2530
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2111
2531
|
}, "strip", z.ZodTypeAny, {
|
|
2112
2532
|
date?: string | undefined;
|
|
2113
|
-
timeZone?: string | undefined;
|
|
2114
2533
|
dateTime?: string | undefined;
|
|
2534
|
+
timeZone?: string | undefined;
|
|
2115
2535
|
}, {
|
|
2116
2536
|
date?: string | undefined;
|
|
2117
|
-
timeZone?: string | undefined;
|
|
2118
2537
|
dateTime?: string | undefined;
|
|
2538
|
+
timeZone?: string | undefined;
|
|
2119
2539
|
}>>;
|
|
2120
2540
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2121
2541
|
email: z.ZodString;
|
|
@@ -2125,13 +2545,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2125
2545
|
}, "strip", z.ZodTypeAny, {
|
|
2126
2546
|
email: string;
|
|
2127
2547
|
optional?: boolean | undefined;
|
|
2128
|
-
displayName?: string | undefined;
|
|
2129
2548
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2549
|
+
displayName?: string | undefined;
|
|
2130
2550
|
}, {
|
|
2131
2551
|
email: string;
|
|
2132
2552
|
optional?: boolean | undefined;
|
|
2133
|
-
displayName?: string | undefined;
|
|
2134
2553
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2554
|
+
displayName?: string | undefined;
|
|
2135
2555
|
}>, "many">>;
|
|
2136
2556
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2137
2557
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2145,6 +2565,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2145
2565
|
}>>;
|
|
2146
2566
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2147
2567
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2568
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2569
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2570
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2571
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2572
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2573
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2574
|
+
}, "strip", z.ZodTypeAny, {
|
|
2575
|
+
title?: string | undefined;
|
|
2576
|
+
fileId?: string | undefined;
|
|
2577
|
+
fileUrl?: string | undefined;
|
|
2578
|
+
mimeType?: string | undefined;
|
|
2579
|
+
iconLink?: string | undefined;
|
|
2580
|
+
}, {
|
|
2581
|
+
title?: string | undefined;
|
|
2582
|
+
fileId?: string | undefined;
|
|
2583
|
+
fileUrl?: string | undefined;
|
|
2584
|
+
mimeType?: string | undefined;
|
|
2585
|
+
iconLink?: string | undefined;
|
|
2586
|
+
}>, "many">>;
|
|
2587
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2148
2588
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2149
2589
|
id: z.ZodString;
|
|
2150
2590
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2160,12 +2600,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2160
2600
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2161
2601
|
}, "strip", z.ZodTypeAny, {
|
|
2162
2602
|
date?: string | undefined;
|
|
2163
|
-
timeZone?: string | undefined;
|
|
2164
2603
|
dateTime?: string | undefined;
|
|
2604
|
+
timeZone?: string | undefined;
|
|
2165
2605
|
}, {
|
|
2166
2606
|
date?: string | undefined;
|
|
2167
|
-
timeZone?: string | undefined;
|
|
2168
2607
|
dateTime?: string | undefined;
|
|
2608
|
+
timeZone?: string | undefined;
|
|
2169
2609
|
}>>;
|
|
2170
2610
|
end: z.ZodOptional<z.ZodObject<{
|
|
2171
2611
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2173,12 +2613,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2173
2613
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2174
2614
|
}, "strip", z.ZodTypeAny, {
|
|
2175
2615
|
date?: string | undefined;
|
|
2176
|
-
timeZone?: string | undefined;
|
|
2177
2616
|
dateTime?: string | undefined;
|
|
2617
|
+
timeZone?: string | undefined;
|
|
2178
2618
|
}, {
|
|
2179
2619
|
date?: string | undefined;
|
|
2180
|
-
timeZone?: string | undefined;
|
|
2181
2620
|
dateTime?: string | undefined;
|
|
2621
|
+
timeZone?: string | undefined;
|
|
2182
2622
|
}>>;
|
|
2183
2623
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2184
2624
|
email: z.ZodString;
|
|
@@ -2188,13 +2628,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2188
2628
|
}, "strip", z.ZodTypeAny, {
|
|
2189
2629
|
email: string;
|
|
2190
2630
|
optional?: boolean | undefined;
|
|
2191
|
-
displayName?: string | undefined;
|
|
2192
2631
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2632
|
+
displayName?: string | undefined;
|
|
2193
2633
|
}, {
|
|
2194
2634
|
email: string;
|
|
2195
2635
|
optional?: boolean | undefined;
|
|
2196
|
-
displayName?: string | undefined;
|
|
2197
2636
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2637
|
+
displayName?: string | undefined;
|
|
2198
2638
|
}>, "many">>;
|
|
2199
2639
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2200
2640
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2208,13 +2648,33 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2208
2648
|
}>>;
|
|
2209
2649
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2210
2650
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2651
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2652
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2653
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2654
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2655
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2656
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2657
|
+
}, "strip", z.ZodTypeAny, {
|
|
2658
|
+
title?: string | undefined;
|
|
2659
|
+
fileId?: string | undefined;
|
|
2660
|
+
fileUrl?: string | undefined;
|
|
2661
|
+
mimeType?: string | undefined;
|
|
2662
|
+
iconLink?: string | undefined;
|
|
2663
|
+
}, {
|
|
2664
|
+
title?: string | undefined;
|
|
2665
|
+
fileId?: string | undefined;
|
|
2666
|
+
fileUrl?: string | undefined;
|
|
2667
|
+
mimeType?: string | undefined;
|
|
2668
|
+
iconLink?: string | undefined;
|
|
2669
|
+
}>, "many">>;
|
|
2670
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2211
2671
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2212
2672
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
2213
2673
|
error: z.ZodString;
|
|
2214
2674
|
}, "strip", z.ZodTypeAny, {
|
|
2215
2675
|
operation: "list_events";
|
|
2216
|
-
error: string;
|
|
2217
2676
|
success: boolean;
|
|
2677
|
+
error: string;
|
|
2218
2678
|
next_page_token?: string | undefined;
|
|
2219
2679
|
events?: z.objectOutputType<{
|
|
2220
2680
|
id: z.ZodString;
|
|
@@ -2231,12 +2691,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2231
2691
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2232
2692
|
}, "strip", z.ZodTypeAny, {
|
|
2233
2693
|
date?: string | undefined;
|
|
2234
|
-
timeZone?: string | undefined;
|
|
2235
2694
|
dateTime?: string | undefined;
|
|
2695
|
+
timeZone?: string | undefined;
|
|
2236
2696
|
}, {
|
|
2237
2697
|
date?: string | undefined;
|
|
2238
|
-
timeZone?: string | undefined;
|
|
2239
2698
|
dateTime?: string | undefined;
|
|
2699
|
+
timeZone?: string | undefined;
|
|
2240
2700
|
}>>;
|
|
2241
2701
|
end: z.ZodOptional<z.ZodObject<{
|
|
2242
2702
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2244,12 +2704,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2244
2704
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2245
2705
|
}, "strip", z.ZodTypeAny, {
|
|
2246
2706
|
date?: string | undefined;
|
|
2247
|
-
timeZone?: string | undefined;
|
|
2248
2707
|
dateTime?: string | undefined;
|
|
2708
|
+
timeZone?: string | undefined;
|
|
2249
2709
|
}, {
|
|
2250
2710
|
date?: string | undefined;
|
|
2251
|
-
timeZone?: string | undefined;
|
|
2252
2711
|
dateTime?: string | undefined;
|
|
2712
|
+
timeZone?: string | undefined;
|
|
2253
2713
|
}>>;
|
|
2254
2714
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2255
2715
|
email: z.ZodString;
|
|
@@ -2259,13 +2719,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2259
2719
|
}, "strip", z.ZodTypeAny, {
|
|
2260
2720
|
email: string;
|
|
2261
2721
|
optional?: boolean | undefined;
|
|
2262
|
-
displayName?: string | undefined;
|
|
2263
2722
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2723
|
+
displayName?: string | undefined;
|
|
2264
2724
|
}, {
|
|
2265
2725
|
email: string;
|
|
2266
2726
|
optional?: boolean | undefined;
|
|
2267
|
-
displayName?: string | undefined;
|
|
2268
2727
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2728
|
+
displayName?: string | undefined;
|
|
2269
2729
|
}>, "many">>;
|
|
2270
2730
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2271
2731
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2279,11 +2739,31 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2279
2739
|
}>>;
|
|
2280
2740
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2281
2741
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2742
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2743
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2744
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2745
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2746
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2747
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2748
|
+
}, "strip", z.ZodTypeAny, {
|
|
2749
|
+
title?: string | undefined;
|
|
2750
|
+
fileId?: string | undefined;
|
|
2751
|
+
fileUrl?: string | undefined;
|
|
2752
|
+
mimeType?: string | undefined;
|
|
2753
|
+
iconLink?: string | undefined;
|
|
2754
|
+
}, {
|
|
2755
|
+
title?: string | undefined;
|
|
2756
|
+
fileId?: string | undefined;
|
|
2757
|
+
fileUrl?: string | undefined;
|
|
2758
|
+
mimeType?: string | undefined;
|
|
2759
|
+
iconLink?: string | undefined;
|
|
2760
|
+
}>, "many">>;
|
|
2761
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2282
2762
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2283
2763
|
}, {
|
|
2284
2764
|
operation: "list_events";
|
|
2285
|
-
error: string;
|
|
2286
2765
|
success: boolean;
|
|
2766
|
+
error: string;
|
|
2287
2767
|
next_page_token?: string | undefined;
|
|
2288
2768
|
events?: z.objectInputType<{
|
|
2289
2769
|
id: z.ZodString;
|
|
@@ -2300,12 +2780,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2300
2780
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2301
2781
|
}, "strip", z.ZodTypeAny, {
|
|
2302
2782
|
date?: string | undefined;
|
|
2303
|
-
timeZone?: string | undefined;
|
|
2304
2783
|
dateTime?: string | undefined;
|
|
2784
|
+
timeZone?: string | undefined;
|
|
2305
2785
|
}, {
|
|
2306
2786
|
date?: string | undefined;
|
|
2307
|
-
timeZone?: string | undefined;
|
|
2308
2787
|
dateTime?: string | undefined;
|
|
2788
|
+
timeZone?: string | undefined;
|
|
2309
2789
|
}>>;
|
|
2310
2790
|
end: z.ZodOptional<z.ZodObject<{
|
|
2311
2791
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2313,12 +2793,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2313
2793
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2314
2794
|
}, "strip", z.ZodTypeAny, {
|
|
2315
2795
|
date?: string | undefined;
|
|
2316
|
-
timeZone?: string | undefined;
|
|
2317
2796
|
dateTime?: string | undefined;
|
|
2797
|
+
timeZone?: string | undefined;
|
|
2318
2798
|
}, {
|
|
2319
2799
|
date?: string | undefined;
|
|
2320
|
-
timeZone?: string | undefined;
|
|
2321
2800
|
dateTime?: string | undefined;
|
|
2801
|
+
timeZone?: string | undefined;
|
|
2322
2802
|
}>>;
|
|
2323
2803
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2324
2804
|
email: z.ZodString;
|
|
@@ -2328,13 +2808,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2328
2808
|
}, "strip", z.ZodTypeAny, {
|
|
2329
2809
|
email: string;
|
|
2330
2810
|
optional?: boolean | undefined;
|
|
2331
|
-
displayName?: string | undefined;
|
|
2332
2811
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2812
|
+
displayName?: string | undefined;
|
|
2333
2813
|
}, {
|
|
2334
2814
|
email: string;
|
|
2335
2815
|
optional?: boolean | undefined;
|
|
2336
|
-
displayName?: string | undefined;
|
|
2337
2816
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2817
|
+
displayName?: string | undefined;
|
|
2338
2818
|
}>, "many">>;
|
|
2339
2819
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2340
2820
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2348,6 +2828,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2348
2828
|
}>>;
|
|
2349
2829
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2350
2830
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2831
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2832
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2833
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2834
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2835
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2836
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2837
|
+
}, "strip", z.ZodTypeAny, {
|
|
2838
|
+
title?: string | undefined;
|
|
2839
|
+
fileId?: string | undefined;
|
|
2840
|
+
fileUrl?: string | undefined;
|
|
2841
|
+
mimeType?: string | undefined;
|
|
2842
|
+
iconLink?: string | undefined;
|
|
2843
|
+
}, {
|
|
2844
|
+
title?: string | undefined;
|
|
2845
|
+
fileId?: string | undefined;
|
|
2846
|
+
fileUrl?: string | undefined;
|
|
2847
|
+
mimeType?: string | undefined;
|
|
2848
|
+
iconLink?: string | undefined;
|
|
2849
|
+
}>, "many">>;
|
|
2850
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2351
2851
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2352
2852
|
}>, z.ZodObject<{
|
|
2353
2853
|
operation: z.ZodLiteral<"get_event">;
|
|
@@ -2367,12 +2867,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2367
2867
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2368
2868
|
}, "strip", z.ZodTypeAny, {
|
|
2369
2869
|
date?: string | undefined;
|
|
2370
|
-
timeZone?: string | undefined;
|
|
2371
2870
|
dateTime?: string | undefined;
|
|
2871
|
+
timeZone?: string | undefined;
|
|
2372
2872
|
}, {
|
|
2373
2873
|
date?: string | undefined;
|
|
2374
|
-
timeZone?: string | undefined;
|
|
2375
2874
|
dateTime?: string | undefined;
|
|
2875
|
+
timeZone?: string | undefined;
|
|
2376
2876
|
}>>;
|
|
2377
2877
|
end: z.ZodOptional<z.ZodObject<{
|
|
2378
2878
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2380,12 +2880,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2380
2880
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2381
2881
|
}, "strip", z.ZodTypeAny, {
|
|
2382
2882
|
date?: string | undefined;
|
|
2383
|
-
timeZone?: string | undefined;
|
|
2384
2883
|
dateTime?: string | undefined;
|
|
2884
|
+
timeZone?: string | undefined;
|
|
2385
2885
|
}, {
|
|
2386
2886
|
date?: string | undefined;
|
|
2387
|
-
timeZone?: string | undefined;
|
|
2388
2887
|
dateTime?: string | undefined;
|
|
2888
|
+
timeZone?: string | undefined;
|
|
2389
2889
|
}>>;
|
|
2390
2890
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2391
2891
|
email: z.ZodString;
|
|
@@ -2395,13 +2895,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2395
2895
|
}, "strip", z.ZodTypeAny, {
|
|
2396
2896
|
email: string;
|
|
2397
2897
|
optional?: boolean | undefined;
|
|
2398
|
-
displayName?: string | undefined;
|
|
2399
2898
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2899
|
+
displayName?: string | undefined;
|
|
2400
2900
|
}, {
|
|
2401
2901
|
email: string;
|
|
2402
2902
|
optional?: boolean | undefined;
|
|
2403
|
-
displayName?: string | undefined;
|
|
2404
2903
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2904
|
+
displayName?: string | undefined;
|
|
2405
2905
|
}>, "many">>;
|
|
2406
2906
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2407
2907
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2415,6 +2915,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2415
2915
|
}>>;
|
|
2416
2916
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2417
2917
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
2918
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2919
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
2920
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
2921
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2922
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
2923
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
2924
|
+
}, "strip", z.ZodTypeAny, {
|
|
2925
|
+
title?: string | undefined;
|
|
2926
|
+
fileId?: string | undefined;
|
|
2927
|
+
fileUrl?: string | undefined;
|
|
2928
|
+
mimeType?: string | undefined;
|
|
2929
|
+
iconLink?: string | undefined;
|
|
2930
|
+
}, {
|
|
2931
|
+
title?: string | undefined;
|
|
2932
|
+
fileId?: string | undefined;
|
|
2933
|
+
fileUrl?: string | undefined;
|
|
2934
|
+
mimeType?: string | undefined;
|
|
2935
|
+
iconLink?: string | undefined;
|
|
2936
|
+
}>, "many">>;
|
|
2937
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2418
2938
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2419
2939
|
id: z.ZodString;
|
|
2420
2940
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2430,12 +2950,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2430
2950
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2431
2951
|
}, "strip", z.ZodTypeAny, {
|
|
2432
2952
|
date?: string | undefined;
|
|
2433
|
-
timeZone?: string | undefined;
|
|
2434
2953
|
dateTime?: string | undefined;
|
|
2954
|
+
timeZone?: string | undefined;
|
|
2435
2955
|
}, {
|
|
2436
2956
|
date?: string | undefined;
|
|
2437
|
-
timeZone?: string | undefined;
|
|
2438
2957
|
dateTime?: string | undefined;
|
|
2958
|
+
timeZone?: string | undefined;
|
|
2439
2959
|
}>>;
|
|
2440
2960
|
end: z.ZodOptional<z.ZodObject<{
|
|
2441
2961
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2443,12 +2963,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2443
2963
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2444
2964
|
}, "strip", z.ZodTypeAny, {
|
|
2445
2965
|
date?: string | undefined;
|
|
2446
|
-
timeZone?: string | undefined;
|
|
2447
2966
|
dateTime?: string | undefined;
|
|
2967
|
+
timeZone?: string | undefined;
|
|
2448
2968
|
}, {
|
|
2449
2969
|
date?: string | undefined;
|
|
2450
|
-
timeZone?: string | undefined;
|
|
2451
2970
|
dateTime?: string | undefined;
|
|
2971
|
+
timeZone?: string | undefined;
|
|
2452
2972
|
}>>;
|
|
2453
2973
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2454
2974
|
email: z.ZodString;
|
|
@@ -2458,13 +2978,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2458
2978
|
}, "strip", z.ZodTypeAny, {
|
|
2459
2979
|
email: string;
|
|
2460
2980
|
optional?: boolean | undefined;
|
|
2461
|
-
displayName?: string | undefined;
|
|
2462
2981
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2982
|
+
displayName?: string | undefined;
|
|
2463
2983
|
}, {
|
|
2464
2984
|
email: string;
|
|
2465
2985
|
optional?: boolean | undefined;
|
|
2466
|
-
displayName?: string | undefined;
|
|
2467
2986
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
2987
|
+
displayName?: string | undefined;
|
|
2468
2988
|
}>, "many">>;
|
|
2469
2989
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2470
2990
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2478,6 +2998,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2478
2998
|
}>>;
|
|
2479
2999
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2480
3000
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3001
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3002
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3003
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3004
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3005
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3006
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3007
|
+
}, "strip", z.ZodTypeAny, {
|
|
3008
|
+
title?: string | undefined;
|
|
3009
|
+
fileId?: string | undefined;
|
|
3010
|
+
fileUrl?: string | undefined;
|
|
3011
|
+
mimeType?: string | undefined;
|
|
3012
|
+
iconLink?: string | undefined;
|
|
3013
|
+
}, {
|
|
3014
|
+
title?: string | undefined;
|
|
3015
|
+
fileId?: string | undefined;
|
|
3016
|
+
fileUrl?: string | undefined;
|
|
3017
|
+
mimeType?: string | undefined;
|
|
3018
|
+
iconLink?: string | undefined;
|
|
3019
|
+
}>, "many">>;
|
|
3020
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2481
3021
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2482
3022
|
id: z.ZodString;
|
|
2483
3023
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2493,12 +3033,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2493
3033
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2494
3034
|
}, "strip", z.ZodTypeAny, {
|
|
2495
3035
|
date?: string | undefined;
|
|
2496
|
-
timeZone?: string | undefined;
|
|
2497
3036
|
dateTime?: string | undefined;
|
|
3037
|
+
timeZone?: string | undefined;
|
|
2498
3038
|
}, {
|
|
2499
3039
|
date?: string | undefined;
|
|
2500
|
-
timeZone?: string | undefined;
|
|
2501
3040
|
dateTime?: string | undefined;
|
|
3041
|
+
timeZone?: string | undefined;
|
|
2502
3042
|
}>>;
|
|
2503
3043
|
end: z.ZodOptional<z.ZodObject<{
|
|
2504
3044
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2506,12 +3046,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2506
3046
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2507
3047
|
}, "strip", z.ZodTypeAny, {
|
|
2508
3048
|
date?: string | undefined;
|
|
2509
|
-
timeZone?: string | undefined;
|
|
2510
3049
|
dateTime?: string | undefined;
|
|
3050
|
+
timeZone?: string | undefined;
|
|
2511
3051
|
}, {
|
|
2512
3052
|
date?: string | undefined;
|
|
2513
|
-
timeZone?: string | undefined;
|
|
2514
3053
|
dateTime?: string | undefined;
|
|
3054
|
+
timeZone?: string | undefined;
|
|
2515
3055
|
}>>;
|
|
2516
3056
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2517
3057
|
email: z.ZodString;
|
|
@@ -2521,13 +3061,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2521
3061
|
}, "strip", z.ZodTypeAny, {
|
|
2522
3062
|
email: string;
|
|
2523
3063
|
optional?: boolean | undefined;
|
|
2524
|
-
displayName?: string | undefined;
|
|
2525
3064
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3065
|
+
displayName?: string | undefined;
|
|
2526
3066
|
}, {
|
|
2527
3067
|
email: string;
|
|
2528
3068
|
optional?: boolean | undefined;
|
|
2529
|
-
displayName?: string | undefined;
|
|
2530
3069
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3070
|
+
displayName?: string | undefined;
|
|
2531
3071
|
}>, "many">>;
|
|
2532
3072
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2533
3073
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2541,12 +3081,32 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2541
3081
|
}>>;
|
|
2542
3082
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2543
3083
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3084
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3085
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3086
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3087
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3088
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3089
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3090
|
+
}, "strip", z.ZodTypeAny, {
|
|
3091
|
+
title?: string | undefined;
|
|
3092
|
+
fileId?: string | undefined;
|
|
3093
|
+
fileUrl?: string | undefined;
|
|
3094
|
+
mimeType?: string | undefined;
|
|
3095
|
+
iconLink?: string | undefined;
|
|
3096
|
+
}, {
|
|
3097
|
+
title?: string | undefined;
|
|
3098
|
+
fileId?: string | undefined;
|
|
3099
|
+
fileUrl?: string | undefined;
|
|
3100
|
+
mimeType?: string | undefined;
|
|
3101
|
+
iconLink?: string | undefined;
|
|
3102
|
+
}>, "many">>;
|
|
3103
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2544
3104
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2545
3105
|
error: z.ZodString;
|
|
2546
3106
|
}, "strip", z.ZodTypeAny, {
|
|
2547
3107
|
operation: "get_event";
|
|
2548
|
-
error: string;
|
|
2549
3108
|
success: boolean;
|
|
3109
|
+
error: string;
|
|
2550
3110
|
event?: z.objectOutputType<{
|
|
2551
3111
|
id: z.ZodString;
|
|
2552
3112
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2562,12 +3122,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2562
3122
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2563
3123
|
}, "strip", z.ZodTypeAny, {
|
|
2564
3124
|
date?: string | undefined;
|
|
2565
|
-
timeZone?: string | undefined;
|
|
2566
3125
|
dateTime?: string | undefined;
|
|
3126
|
+
timeZone?: string | undefined;
|
|
2567
3127
|
}, {
|
|
2568
3128
|
date?: string | undefined;
|
|
2569
|
-
timeZone?: string | undefined;
|
|
2570
3129
|
dateTime?: string | undefined;
|
|
3130
|
+
timeZone?: string | undefined;
|
|
2571
3131
|
}>>;
|
|
2572
3132
|
end: z.ZodOptional<z.ZodObject<{
|
|
2573
3133
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2575,12 +3135,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2575
3135
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2576
3136
|
}, "strip", z.ZodTypeAny, {
|
|
2577
3137
|
date?: string | undefined;
|
|
2578
|
-
timeZone?: string | undefined;
|
|
2579
3138
|
dateTime?: string | undefined;
|
|
3139
|
+
timeZone?: string | undefined;
|
|
2580
3140
|
}, {
|
|
2581
3141
|
date?: string | undefined;
|
|
2582
|
-
timeZone?: string | undefined;
|
|
2583
3142
|
dateTime?: string | undefined;
|
|
3143
|
+
timeZone?: string | undefined;
|
|
2584
3144
|
}>>;
|
|
2585
3145
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2586
3146
|
email: z.ZodString;
|
|
@@ -2590,13 +3150,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2590
3150
|
}, "strip", z.ZodTypeAny, {
|
|
2591
3151
|
email: string;
|
|
2592
3152
|
optional?: boolean | undefined;
|
|
2593
|
-
displayName?: string | undefined;
|
|
2594
3153
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3154
|
+
displayName?: string | undefined;
|
|
2595
3155
|
}, {
|
|
2596
3156
|
email: string;
|
|
2597
3157
|
optional?: boolean | undefined;
|
|
2598
|
-
displayName?: string | undefined;
|
|
2599
3158
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3159
|
+
displayName?: string | undefined;
|
|
2600
3160
|
}>, "many">>;
|
|
2601
3161
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2602
3162
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2610,11 +3170,31 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2610
3170
|
}>>;
|
|
2611
3171
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2612
3172
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3173
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3174
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3175
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3176
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3177
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3178
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3179
|
+
}, "strip", z.ZodTypeAny, {
|
|
3180
|
+
title?: string | undefined;
|
|
3181
|
+
fileId?: string | undefined;
|
|
3182
|
+
fileUrl?: string | undefined;
|
|
3183
|
+
mimeType?: string | undefined;
|
|
3184
|
+
iconLink?: string | undefined;
|
|
3185
|
+
}, {
|
|
3186
|
+
title?: string | undefined;
|
|
3187
|
+
fileId?: string | undefined;
|
|
3188
|
+
fileUrl?: string | undefined;
|
|
3189
|
+
mimeType?: string | undefined;
|
|
3190
|
+
iconLink?: string | undefined;
|
|
3191
|
+
}>, "many">>;
|
|
3192
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2613
3193
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2614
3194
|
}, {
|
|
2615
3195
|
operation: "get_event";
|
|
2616
|
-
error: string;
|
|
2617
3196
|
success: boolean;
|
|
3197
|
+
error: string;
|
|
2618
3198
|
event?: z.objectInputType<{
|
|
2619
3199
|
id: z.ZodString;
|
|
2620
3200
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2630,12 +3210,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2630
3210
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2631
3211
|
}, "strip", z.ZodTypeAny, {
|
|
2632
3212
|
date?: string | undefined;
|
|
2633
|
-
timeZone?: string | undefined;
|
|
2634
3213
|
dateTime?: string | undefined;
|
|
3214
|
+
timeZone?: string | undefined;
|
|
2635
3215
|
}, {
|
|
2636
3216
|
date?: string | undefined;
|
|
2637
|
-
timeZone?: string | undefined;
|
|
2638
3217
|
dateTime?: string | undefined;
|
|
3218
|
+
timeZone?: string | undefined;
|
|
2639
3219
|
}>>;
|
|
2640
3220
|
end: z.ZodOptional<z.ZodObject<{
|
|
2641
3221
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2643,12 +3223,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2643
3223
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2644
3224
|
}, "strip", z.ZodTypeAny, {
|
|
2645
3225
|
date?: string | undefined;
|
|
2646
|
-
timeZone?: string | undefined;
|
|
2647
3226
|
dateTime?: string | undefined;
|
|
3227
|
+
timeZone?: string | undefined;
|
|
2648
3228
|
}, {
|
|
2649
3229
|
date?: string | undefined;
|
|
2650
|
-
timeZone?: string | undefined;
|
|
2651
3230
|
dateTime?: string | undefined;
|
|
3231
|
+
timeZone?: string | undefined;
|
|
2652
3232
|
}>>;
|
|
2653
3233
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2654
3234
|
email: z.ZodString;
|
|
@@ -2658,13 +3238,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2658
3238
|
}, "strip", z.ZodTypeAny, {
|
|
2659
3239
|
email: string;
|
|
2660
3240
|
optional?: boolean | undefined;
|
|
2661
|
-
displayName?: string | undefined;
|
|
2662
3241
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3242
|
+
displayName?: string | undefined;
|
|
2663
3243
|
}, {
|
|
2664
3244
|
email: string;
|
|
2665
3245
|
optional?: boolean | undefined;
|
|
2666
|
-
displayName?: string | undefined;
|
|
2667
3246
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3247
|
+
displayName?: string | undefined;
|
|
2668
3248
|
}>, "many">>;
|
|
2669
3249
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2670
3250
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2678,6 +3258,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2678
3258
|
}>>;
|
|
2679
3259
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2680
3260
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3261
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3262
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3263
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3264
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3265
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3266
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3267
|
+
}, "strip", z.ZodTypeAny, {
|
|
3268
|
+
title?: string | undefined;
|
|
3269
|
+
fileId?: string | undefined;
|
|
3270
|
+
fileUrl?: string | undefined;
|
|
3271
|
+
mimeType?: string | undefined;
|
|
3272
|
+
iconLink?: string | undefined;
|
|
3273
|
+
}, {
|
|
3274
|
+
title?: string | undefined;
|
|
3275
|
+
fileId?: string | undefined;
|
|
3276
|
+
fileUrl?: string | undefined;
|
|
3277
|
+
mimeType?: string | undefined;
|
|
3278
|
+
iconLink?: string | undefined;
|
|
3279
|
+
}>, "many">>;
|
|
3280
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2681
3281
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2682
3282
|
}>, z.ZodObject<{
|
|
2683
3283
|
operation: z.ZodLiteral<"create_event">;
|
|
@@ -2697,12 +3297,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2697
3297
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2698
3298
|
}, "strip", z.ZodTypeAny, {
|
|
2699
3299
|
date?: string | undefined;
|
|
2700
|
-
timeZone?: string | undefined;
|
|
2701
3300
|
dateTime?: string | undefined;
|
|
3301
|
+
timeZone?: string | undefined;
|
|
2702
3302
|
}, {
|
|
2703
3303
|
date?: string | undefined;
|
|
2704
|
-
timeZone?: string | undefined;
|
|
2705
3304
|
dateTime?: string | undefined;
|
|
3305
|
+
timeZone?: string | undefined;
|
|
2706
3306
|
}>>;
|
|
2707
3307
|
end: z.ZodOptional<z.ZodObject<{
|
|
2708
3308
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2710,12 +3310,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2710
3310
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2711
3311
|
}, "strip", z.ZodTypeAny, {
|
|
2712
3312
|
date?: string | undefined;
|
|
2713
|
-
timeZone?: string | undefined;
|
|
2714
3313
|
dateTime?: string | undefined;
|
|
3314
|
+
timeZone?: string | undefined;
|
|
2715
3315
|
}, {
|
|
2716
3316
|
date?: string | undefined;
|
|
2717
|
-
timeZone?: string | undefined;
|
|
2718
3317
|
dateTime?: string | undefined;
|
|
3318
|
+
timeZone?: string | undefined;
|
|
2719
3319
|
}>>;
|
|
2720
3320
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2721
3321
|
email: z.ZodString;
|
|
@@ -2725,13 +3325,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2725
3325
|
}, "strip", z.ZodTypeAny, {
|
|
2726
3326
|
email: string;
|
|
2727
3327
|
optional?: boolean | undefined;
|
|
2728
|
-
displayName?: string | undefined;
|
|
2729
3328
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3329
|
+
displayName?: string | undefined;
|
|
2730
3330
|
}, {
|
|
2731
3331
|
email: string;
|
|
2732
3332
|
optional?: boolean | undefined;
|
|
2733
|
-
displayName?: string | undefined;
|
|
2734
3333
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3334
|
+
displayName?: string | undefined;
|
|
2735
3335
|
}>, "many">>;
|
|
2736
3336
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2737
3337
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2745,6 +3345,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2745
3345
|
}>>;
|
|
2746
3346
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2747
3347
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3348
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3349
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3350
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3351
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3352
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3353
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3354
|
+
}, "strip", z.ZodTypeAny, {
|
|
3355
|
+
title?: string | undefined;
|
|
3356
|
+
fileId?: string | undefined;
|
|
3357
|
+
fileUrl?: string | undefined;
|
|
3358
|
+
mimeType?: string | undefined;
|
|
3359
|
+
iconLink?: string | undefined;
|
|
3360
|
+
}, {
|
|
3361
|
+
title?: string | undefined;
|
|
3362
|
+
fileId?: string | undefined;
|
|
3363
|
+
fileUrl?: string | undefined;
|
|
3364
|
+
mimeType?: string | undefined;
|
|
3365
|
+
iconLink?: string | undefined;
|
|
3366
|
+
}>, "many">>;
|
|
3367
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2748
3368
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2749
3369
|
id: z.ZodString;
|
|
2750
3370
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2760,12 +3380,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2760
3380
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2761
3381
|
}, "strip", z.ZodTypeAny, {
|
|
2762
3382
|
date?: string | undefined;
|
|
2763
|
-
timeZone?: string | undefined;
|
|
2764
3383
|
dateTime?: string | undefined;
|
|
3384
|
+
timeZone?: string | undefined;
|
|
2765
3385
|
}, {
|
|
2766
3386
|
date?: string | undefined;
|
|
2767
|
-
timeZone?: string | undefined;
|
|
2768
3387
|
dateTime?: string | undefined;
|
|
3388
|
+
timeZone?: string | undefined;
|
|
2769
3389
|
}>>;
|
|
2770
3390
|
end: z.ZodOptional<z.ZodObject<{
|
|
2771
3391
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2773,12 +3393,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2773
3393
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2774
3394
|
}, "strip", z.ZodTypeAny, {
|
|
2775
3395
|
date?: string | undefined;
|
|
2776
|
-
timeZone?: string | undefined;
|
|
2777
3396
|
dateTime?: string | undefined;
|
|
3397
|
+
timeZone?: string | undefined;
|
|
2778
3398
|
}, {
|
|
2779
3399
|
date?: string | undefined;
|
|
2780
|
-
timeZone?: string | undefined;
|
|
2781
3400
|
dateTime?: string | undefined;
|
|
3401
|
+
timeZone?: string | undefined;
|
|
2782
3402
|
}>>;
|
|
2783
3403
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2784
3404
|
email: z.ZodString;
|
|
@@ -2788,13 +3408,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2788
3408
|
}, "strip", z.ZodTypeAny, {
|
|
2789
3409
|
email: string;
|
|
2790
3410
|
optional?: boolean | undefined;
|
|
2791
|
-
displayName?: string | undefined;
|
|
2792
3411
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3412
|
+
displayName?: string | undefined;
|
|
2793
3413
|
}, {
|
|
2794
3414
|
email: string;
|
|
2795
3415
|
optional?: boolean | undefined;
|
|
2796
|
-
displayName?: string | undefined;
|
|
2797
3416
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3417
|
+
displayName?: string | undefined;
|
|
2798
3418
|
}>, "many">>;
|
|
2799
3419
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2800
3420
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2808,6 +3428,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2808
3428
|
}>>;
|
|
2809
3429
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2810
3430
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3431
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3432
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3433
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3434
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3435
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3436
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3437
|
+
}, "strip", z.ZodTypeAny, {
|
|
3438
|
+
title?: string | undefined;
|
|
3439
|
+
fileId?: string | undefined;
|
|
3440
|
+
fileUrl?: string | undefined;
|
|
3441
|
+
mimeType?: string | undefined;
|
|
3442
|
+
iconLink?: string | undefined;
|
|
3443
|
+
}, {
|
|
3444
|
+
title?: string | undefined;
|
|
3445
|
+
fileId?: string | undefined;
|
|
3446
|
+
fileUrl?: string | undefined;
|
|
3447
|
+
mimeType?: string | undefined;
|
|
3448
|
+
iconLink?: string | undefined;
|
|
3449
|
+
}>, "many">>;
|
|
3450
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2811
3451
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2812
3452
|
id: z.ZodString;
|
|
2813
3453
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2823,12 +3463,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2823
3463
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2824
3464
|
}, "strip", z.ZodTypeAny, {
|
|
2825
3465
|
date?: string | undefined;
|
|
2826
|
-
timeZone?: string | undefined;
|
|
2827
3466
|
dateTime?: string | undefined;
|
|
3467
|
+
timeZone?: string | undefined;
|
|
2828
3468
|
}, {
|
|
2829
3469
|
date?: string | undefined;
|
|
2830
|
-
timeZone?: string | undefined;
|
|
2831
3470
|
dateTime?: string | undefined;
|
|
3471
|
+
timeZone?: string | undefined;
|
|
2832
3472
|
}>>;
|
|
2833
3473
|
end: z.ZodOptional<z.ZodObject<{
|
|
2834
3474
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2836,12 +3476,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2836
3476
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2837
3477
|
}, "strip", z.ZodTypeAny, {
|
|
2838
3478
|
date?: string | undefined;
|
|
2839
|
-
timeZone?: string | undefined;
|
|
2840
3479
|
dateTime?: string | undefined;
|
|
3480
|
+
timeZone?: string | undefined;
|
|
2841
3481
|
}, {
|
|
2842
3482
|
date?: string | undefined;
|
|
2843
|
-
timeZone?: string | undefined;
|
|
2844
3483
|
dateTime?: string | undefined;
|
|
3484
|
+
timeZone?: string | undefined;
|
|
2845
3485
|
}>>;
|
|
2846
3486
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2847
3487
|
email: z.ZodString;
|
|
@@ -2851,13 +3491,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2851
3491
|
}, "strip", z.ZodTypeAny, {
|
|
2852
3492
|
email: string;
|
|
2853
3493
|
optional?: boolean | undefined;
|
|
2854
|
-
displayName?: string | undefined;
|
|
2855
3494
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3495
|
+
displayName?: string | undefined;
|
|
2856
3496
|
}, {
|
|
2857
3497
|
email: string;
|
|
2858
3498
|
optional?: boolean | undefined;
|
|
2859
|
-
displayName?: string | undefined;
|
|
2860
3499
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3500
|
+
displayName?: string | undefined;
|
|
2861
3501
|
}>, "many">>;
|
|
2862
3502
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2863
3503
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2871,12 +3511,32 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2871
3511
|
}>>;
|
|
2872
3512
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2873
3513
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3514
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3515
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3516
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3517
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3518
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3519
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3520
|
+
}, "strip", z.ZodTypeAny, {
|
|
3521
|
+
title?: string | undefined;
|
|
3522
|
+
fileId?: string | undefined;
|
|
3523
|
+
fileUrl?: string | undefined;
|
|
3524
|
+
mimeType?: string | undefined;
|
|
3525
|
+
iconLink?: string | undefined;
|
|
3526
|
+
}, {
|
|
3527
|
+
title?: string | undefined;
|
|
3528
|
+
fileId?: string | undefined;
|
|
3529
|
+
fileUrl?: string | undefined;
|
|
3530
|
+
mimeType?: string | undefined;
|
|
3531
|
+
iconLink?: string | undefined;
|
|
3532
|
+
}>, "many">>;
|
|
3533
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2874
3534
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2875
3535
|
error: z.ZodString;
|
|
2876
3536
|
}, "strip", z.ZodTypeAny, {
|
|
2877
3537
|
operation: "create_event";
|
|
2878
|
-
error: string;
|
|
2879
3538
|
success: boolean;
|
|
3539
|
+
error: string;
|
|
2880
3540
|
event?: z.objectOutputType<{
|
|
2881
3541
|
id: z.ZodString;
|
|
2882
3542
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2892,12 +3552,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2892
3552
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2893
3553
|
}, "strip", z.ZodTypeAny, {
|
|
2894
3554
|
date?: string | undefined;
|
|
2895
|
-
timeZone?: string | undefined;
|
|
2896
3555
|
dateTime?: string | undefined;
|
|
3556
|
+
timeZone?: string | undefined;
|
|
2897
3557
|
}, {
|
|
2898
3558
|
date?: string | undefined;
|
|
2899
|
-
timeZone?: string | undefined;
|
|
2900
3559
|
dateTime?: string | undefined;
|
|
3560
|
+
timeZone?: string | undefined;
|
|
2901
3561
|
}>>;
|
|
2902
3562
|
end: z.ZodOptional<z.ZodObject<{
|
|
2903
3563
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2905,12 +3565,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2905
3565
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2906
3566
|
}, "strip", z.ZodTypeAny, {
|
|
2907
3567
|
date?: string | undefined;
|
|
2908
|
-
timeZone?: string | undefined;
|
|
2909
3568
|
dateTime?: string | undefined;
|
|
3569
|
+
timeZone?: string | undefined;
|
|
2910
3570
|
}, {
|
|
2911
3571
|
date?: string | undefined;
|
|
2912
|
-
timeZone?: string | undefined;
|
|
2913
3572
|
dateTime?: string | undefined;
|
|
3573
|
+
timeZone?: string | undefined;
|
|
2914
3574
|
}>>;
|
|
2915
3575
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2916
3576
|
email: z.ZodString;
|
|
@@ -2920,13 +3580,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2920
3580
|
}, "strip", z.ZodTypeAny, {
|
|
2921
3581
|
email: string;
|
|
2922
3582
|
optional?: boolean | undefined;
|
|
2923
|
-
displayName?: string | undefined;
|
|
2924
3583
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3584
|
+
displayName?: string | undefined;
|
|
2925
3585
|
}, {
|
|
2926
3586
|
email: string;
|
|
2927
3587
|
optional?: boolean | undefined;
|
|
2928
|
-
displayName?: string | undefined;
|
|
2929
3588
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3589
|
+
displayName?: string | undefined;
|
|
2930
3590
|
}>, "many">>;
|
|
2931
3591
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
2932
3592
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2940,11 +3600,31 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2940
3600
|
}>>;
|
|
2941
3601
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
2942
3602
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3603
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3604
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3605
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3606
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3607
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3608
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3609
|
+
}, "strip", z.ZodTypeAny, {
|
|
3610
|
+
title?: string | undefined;
|
|
3611
|
+
fileId?: string | undefined;
|
|
3612
|
+
fileUrl?: string | undefined;
|
|
3613
|
+
mimeType?: string | undefined;
|
|
3614
|
+
iconLink?: string | undefined;
|
|
3615
|
+
}, {
|
|
3616
|
+
title?: string | undefined;
|
|
3617
|
+
fileId?: string | undefined;
|
|
3618
|
+
fileUrl?: string | undefined;
|
|
3619
|
+
mimeType?: string | undefined;
|
|
3620
|
+
iconLink?: string | undefined;
|
|
3621
|
+
}>, "many">>;
|
|
3622
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2943
3623
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2944
3624
|
}, {
|
|
2945
3625
|
operation: "create_event";
|
|
2946
|
-
error: string;
|
|
2947
3626
|
success: boolean;
|
|
3627
|
+
error: string;
|
|
2948
3628
|
event?: z.objectInputType<{
|
|
2949
3629
|
id: z.ZodString;
|
|
2950
3630
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -2960,12 +3640,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2960
3640
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2961
3641
|
}, "strip", z.ZodTypeAny, {
|
|
2962
3642
|
date?: string | undefined;
|
|
2963
|
-
timeZone?: string | undefined;
|
|
2964
3643
|
dateTime?: string | undefined;
|
|
3644
|
+
timeZone?: string | undefined;
|
|
2965
3645
|
}, {
|
|
2966
3646
|
date?: string | undefined;
|
|
2967
|
-
timeZone?: string | undefined;
|
|
2968
3647
|
dateTime?: string | undefined;
|
|
3648
|
+
timeZone?: string | undefined;
|
|
2969
3649
|
}>>;
|
|
2970
3650
|
end: z.ZodOptional<z.ZodObject<{
|
|
2971
3651
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -2973,12 +3653,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2973
3653
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
2974
3654
|
}, "strip", z.ZodTypeAny, {
|
|
2975
3655
|
date?: string | undefined;
|
|
2976
|
-
timeZone?: string | undefined;
|
|
2977
3656
|
dateTime?: string | undefined;
|
|
3657
|
+
timeZone?: string | undefined;
|
|
2978
3658
|
}, {
|
|
2979
3659
|
date?: string | undefined;
|
|
2980
|
-
timeZone?: string | undefined;
|
|
2981
3660
|
dateTime?: string | undefined;
|
|
3661
|
+
timeZone?: string | undefined;
|
|
2982
3662
|
}>>;
|
|
2983
3663
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2984
3664
|
email: z.ZodString;
|
|
@@ -2988,13 +3668,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
2988
3668
|
}, "strip", z.ZodTypeAny, {
|
|
2989
3669
|
email: string;
|
|
2990
3670
|
optional?: boolean | undefined;
|
|
2991
|
-
displayName?: string | undefined;
|
|
2992
3671
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3672
|
+
displayName?: string | undefined;
|
|
2993
3673
|
}, {
|
|
2994
3674
|
email: string;
|
|
2995
3675
|
optional?: boolean | undefined;
|
|
2996
|
-
displayName?: string | undefined;
|
|
2997
3676
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3677
|
+
displayName?: string | undefined;
|
|
2998
3678
|
}>, "many">>;
|
|
2999
3679
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
3000
3680
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -3008,6 +3688,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3008
3688
|
}>>;
|
|
3009
3689
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3010
3690
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3691
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3692
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3693
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3694
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3695
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3696
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3697
|
+
}, "strip", z.ZodTypeAny, {
|
|
3698
|
+
title?: string | undefined;
|
|
3699
|
+
fileId?: string | undefined;
|
|
3700
|
+
fileUrl?: string | undefined;
|
|
3701
|
+
mimeType?: string | undefined;
|
|
3702
|
+
iconLink?: string | undefined;
|
|
3703
|
+
}, {
|
|
3704
|
+
title?: string | undefined;
|
|
3705
|
+
fileId?: string | undefined;
|
|
3706
|
+
fileUrl?: string | undefined;
|
|
3707
|
+
mimeType?: string | undefined;
|
|
3708
|
+
iconLink?: string | undefined;
|
|
3709
|
+
}>, "many">>;
|
|
3710
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3011
3711
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3012
3712
|
}>, z.ZodObject<{
|
|
3013
3713
|
operation: z.ZodLiteral<"update_event">;
|
|
@@ -3027,12 +3727,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3027
3727
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3028
3728
|
}, "strip", z.ZodTypeAny, {
|
|
3029
3729
|
date?: string | undefined;
|
|
3030
|
-
timeZone?: string | undefined;
|
|
3031
3730
|
dateTime?: string | undefined;
|
|
3731
|
+
timeZone?: string | undefined;
|
|
3032
3732
|
}, {
|
|
3033
3733
|
date?: string | undefined;
|
|
3034
|
-
timeZone?: string | undefined;
|
|
3035
3734
|
dateTime?: string | undefined;
|
|
3735
|
+
timeZone?: string | undefined;
|
|
3036
3736
|
}>>;
|
|
3037
3737
|
end: z.ZodOptional<z.ZodObject<{
|
|
3038
3738
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -3040,12 +3740,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3040
3740
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3041
3741
|
}, "strip", z.ZodTypeAny, {
|
|
3042
3742
|
date?: string | undefined;
|
|
3043
|
-
timeZone?: string | undefined;
|
|
3044
3743
|
dateTime?: string | undefined;
|
|
3744
|
+
timeZone?: string | undefined;
|
|
3045
3745
|
}, {
|
|
3046
3746
|
date?: string | undefined;
|
|
3047
|
-
timeZone?: string | undefined;
|
|
3048
3747
|
dateTime?: string | undefined;
|
|
3748
|
+
timeZone?: string | undefined;
|
|
3049
3749
|
}>>;
|
|
3050
3750
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3051
3751
|
email: z.ZodString;
|
|
@@ -3055,13 +3755,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3055
3755
|
}, "strip", z.ZodTypeAny, {
|
|
3056
3756
|
email: string;
|
|
3057
3757
|
optional?: boolean | undefined;
|
|
3058
|
-
displayName?: string | undefined;
|
|
3059
3758
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3759
|
+
displayName?: string | undefined;
|
|
3060
3760
|
}, {
|
|
3061
3761
|
email: string;
|
|
3062
3762
|
optional?: boolean | undefined;
|
|
3063
|
-
displayName?: string | undefined;
|
|
3064
3763
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3764
|
+
displayName?: string | undefined;
|
|
3065
3765
|
}>, "many">>;
|
|
3066
3766
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
3067
3767
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -3075,6 +3775,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3075
3775
|
}>>;
|
|
3076
3776
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3077
3777
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3778
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3779
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3780
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3781
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3782
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3783
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3784
|
+
}, "strip", z.ZodTypeAny, {
|
|
3785
|
+
title?: string | undefined;
|
|
3786
|
+
fileId?: string | undefined;
|
|
3787
|
+
fileUrl?: string | undefined;
|
|
3788
|
+
mimeType?: string | undefined;
|
|
3789
|
+
iconLink?: string | undefined;
|
|
3790
|
+
}, {
|
|
3791
|
+
title?: string | undefined;
|
|
3792
|
+
fileId?: string | undefined;
|
|
3793
|
+
fileUrl?: string | undefined;
|
|
3794
|
+
mimeType?: string | undefined;
|
|
3795
|
+
iconLink?: string | undefined;
|
|
3796
|
+
}>, "many">>;
|
|
3797
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3078
3798
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3079
3799
|
id: z.ZodString;
|
|
3080
3800
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -3090,12 +3810,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3090
3810
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3091
3811
|
}, "strip", z.ZodTypeAny, {
|
|
3092
3812
|
date?: string | undefined;
|
|
3093
|
-
timeZone?: string | undefined;
|
|
3094
3813
|
dateTime?: string | undefined;
|
|
3814
|
+
timeZone?: string | undefined;
|
|
3095
3815
|
}, {
|
|
3096
3816
|
date?: string | undefined;
|
|
3097
|
-
timeZone?: string | undefined;
|
|
3098
3817
|
dateTime?: string | undefined;
|
|
3818
|
+
timeZone?: string | undefined;
|
|
3099
3819
|
}>>;
|
|
3100
3820
|
end: z.ZodOptional<z.ZodObject<{
|
|
3101
3821
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -3103,12 +3823,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3103
3823
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3104
3824
|
}, "strip", z.ZodTypeAny, {
|
|
3105
3825
|
date?: string | undefined;
|
|
3106
|
-
timeZone?: string | undefined;
|
|
3107
3826
|
dateTime?: string | undefined;
|
|
3827
|
+
timeZone?: string | undefined;
|
|
3108
3828
|
}, {
|
|
3109
3829
|
date?: string | undefined;
|
|
3110
|
-
timeZone?: string | undefined;
|
|
3111
3830
|
dateTime?: string | undefined;
|
|
3831
|
+
timeZone?: string | undefined;
|
|
3112
3832
|
}>>;
|
|
3113
3833
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3114
3834
|
email: z.ZodString;
|
|
@@ -3118,13 +3838,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3118
3838
|
}, "strip", z.ZodTypeAny, {
|
|
3119
3839
|
email: string;
|
|
3120
3840
|
optional?: boolean | undefined;
|
|
3121
|
-
displayName?: string | undefined;
|
|
3122
3841
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3842
|
+
displayName?: string | undefined;
|
|
3123
3843
|
}, {
|
|
3124
3844
|
email: string;
|
|
3125
3845
|
optional?: boolean | undefined;
|
|
3126
|
-
displayName?: string | undefined;
|
|
3127
3846
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3847
|
+
displayName?: string | undefined;
|
|
3128
3848
|
}>, "many">>;
|
|
3129
3849
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
3130
3850
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -3138,6 +3858,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3138
3858
|
}>>;
|
|
3139
3859
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3140
3860
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3861
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3862
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3863
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3864
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3865
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3866
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3867
|
+
}, "strip", z.ZodTypeAny, {
|
|
3868
|
+
title?: string | undefined;
|
|
3869
|
+
fileId?: string | undefined;
|
|
3870
|
+
fileUrl?: string | undefined;
|
|
3871
|
+
mimeType?: string | undefined;
|
|
3872
|
+
iconLink?: string | undefined;
|
|
3873
|
+
}, {
|
|
3874
|
+
title?: string | undefined;
|
|
3875
|
+
fileId?: string | undefined;
|
|
3876
|
+
fileUrl?: string | undefined;
|
|
3877
|
+
mimeType?: string | undefined;
|
|
3878
|
+
iconLink?: string | undefined;
|
|
3879
|
+
}>, "many">>;
|
|
3880
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3141
3881
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3142
3882
|
id: z.ZodString;
|
|
3143
3883
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -3153,12 +3893,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3153
3893
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3154
3894
|
}, "strip", z.ZodTypeAny, {
|
|
3155
3895
|
date?: string | undefined;
|
|
3156
|
-
timeZone?: string | undefined;
|
|
3157
3896
|
dateTime?: string | undefined;
|
|
3897
|
+
timeZone?: string | undefined;
|
|
3158
3898
|
}, {
|
|
3159
3899
|
date?: string | undefined;
|
|
3160
|
-
timeZone?: string | undefined;
|
|
3161
3900
|
dateTime?: string | undefined;
|
|
3901
|
+
timeZone?: string | undefined;
|
|
3162
3902
|
}>>;
|
|
3163
3903
|
end: z.ZodOptional<z.ZodObject<{
|
|
3164
3904
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -3166,12 +3906,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3166
3906
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3167
3907
|
}, "strip", z.ZodTypeAny, {
|
|
3168
3908
|
date?: string | undefined;
|
|
3169
|
-
timeZone?: string | undefined;
|
|
3170
3909
|
dateTime?: string | undefined;
|
|
3910
|
+
timeZone?: string | undefined;
|
|
3171
3911
|
}, {
|
|
3172
3912
|
date?: string | undefined;
|
|
3173
|
-
timeZone?: string | undefined;
|
|
3174
3913
|
dateTime?: string | undefined;
|
|
3914
|
+
timeZone?: string | undefined;
|
|
3175
3915
|
}>>;
|
|
3176
3916
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3177
3917
|
email: z.ZodString;
|
|
@@ -3181,13 +3921,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3181
3921
|
}, "strip", z.ZodTypeAny, {
|
|
3182
3922
|
email: string;
|
|
3183
3923
|
optional?: boolean | undefined;
|
|
3184
|
-
displayName?: string | undefined;
|
|
3185
3924
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3925
|
+
displayName?: string | undefined;
|
|
3186
3926
|
}, {
|
|
3187
3927
|
email: string;
|
|
3188
3928
|
optional?: boolean | undefined;
|
|
3189
|
-
displayName?: string | undefined;
|
|
3190
3929
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
3930
|
+
displayName?: string | undefined;
|
|
3191
3931
|
}>, "many">>;
|
|
3192
3932
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
3193
3933
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -3201,12 +3941,32 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3201
3941
|
}>>;
|
|
3202
3942
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3203
3943
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
3944
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3945
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
3946
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
3947
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3948
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
3949
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
3950
|
+
}, "strip", z.ZodTypeAny, {
|
|
3951
|
+
title?: string | undefined;
|
|
3952
|
+
fileId?: string | undefined;
|
|
3953
|
+
fileUrl?: string | undefined;
|
|
3954
|
+
mimeType?: string | undefined;
|
|
3955
|
+
iconLink?: string | undefined;
|
|
3956
|
+
}, {
|
|
3957
|
+
title?: string | undefined;
|
|
3958
|
+
fileId?: string | undefined;
|
|
3959
|
+
fileUrl?: string | undefined;
|
|
3960
|
+
mimeType?: string | undefined;
|
|
3961
|
+
iconLink?: string | undefined;
|
|
3962
|
+
}>, "many">>;
|
|
3963
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3204
3964
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3205
3965
|
error: z.ZodString;
|
|
3206
3966
|
}, "strip", z.ZodTypeAny, {
|
|
3207
3967
|
operation: "update_event";
|
|
3208
|
-
error: string;
|
|
3209
3968
|
success: boolean;
|
|
3969
|
+
error: string;
|
|
3210
3970
|
event?: z.objectOutputType<{
|
|
3211
3971
|
id: z.ZodString;
|
|
3212
3972
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -3222,12 +3982,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3222
3982
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3223
3983
|
}, "strip", z.ZodTypeAny, {
|
|
3224
3984
|
date?: string | undefined;
|
|
3225
|
-
timeZone?: string | undefined;
|
|
3226
3985
|
dateTime?: string | undefined;
|
|
3986
|
+
timeZone?: string | undefined;
|
|
3227
3987
|
}, {
|
|
3228
3988
|
date?: string | undefined;
|
|
3229
|
-
timeZone?: string | undefined;
|
|
3230
3989
|
dateTime?: string | undefined;
|
|
3990
|
+
timeZone?: string | undefined;
|
|
3231
3991
|
}>>;
|
|
3232
3992
|
end: z.ZodOptional<z.ZodObject<{
|
|
3233
3993
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -3235,12 +3995,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3235
3995
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3236
3996
|
}, "strip", z.ZodTypeAny, {
|
|
3237
3997
|
date?: string | undefined;
|
|
3238
|
-
timeZone?: string | undefined;
|
|
3239
3998
|
dateTime?: string | undefined;
|
|
3999
|
+
timeZone?: string | undefined;
|
|
3240
4000
|
}, {
|
|
3241
4001
|
date?: string | undefined;
|
|
3242
|
-
timeZone?: string | undefined;
|
|
3243
4002
|
dateTime?: string | undefined;
|
|
4003
|
+
timeZone?: string | undefined;
|
|
3244
4004
|
}>>;
|
|
3245
4005
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3246
4006
|
email: z.ZodString;
|
|
@@ -3250,13 +4010,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3250
4010
|
}, "strip", z.ZodTypeAny, {
|
|
3251
4011
|
email: string;
|
|
3252
4012
|
optional?: boolean | undefined;
|
|
3253
|
-
displayName?: string | undefined;
|
|
3254
4013
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
4014
|
+
displayName?: string | undefined;
|
|
3255
4015
|
}, {
|
|
3256
4016
|
email: string;
|
|
3257
4017
|
optional?: boolean | undefined;
|
|
3258
|
-
displayName?: string | undefined;
|
|
3259
4018
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
4019
|
+
displayName?: string | undefined;
|
|
3260
4020
|
}>, "many">>;
|
|
3261
4021
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
3262
4022
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -3270,11 +4030,31 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3270
4030
|
}>>;
|
|
3271
4031
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3272
4032
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
4033
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4034
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
4035
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
4036
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4037
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
4038
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
4039
|
+
}, "strip", z.ZodTypeAny, {
|
|
4040
|
+
title?: string | undefined;
|
|
4041
|
+
fileId?: string | undefined;
|
|
4042
|
+
fileUrl?: string | undefined;
|
|
4043
|
+
mimeType?: string | undefined;
|
|
4044
|
+
iconLink?: string | undefined;
|
|
4045
|
+
}, {
|
|
4046
|
+
title?: string | undefined;
|
|
4047
|
+
fileId?: string | undefined;
|
|
4048
|
+
fileUrl?: string | undefined;
|
|
4049
|
+
mimeType?: string | undefined;
|
|
4050
|
+
iconLink?: string | undefined;
|
|
4051
|
+
}>, "many">>;
|
|
4052
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3273
4053
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3274
4054
|
}, {
|
|
3275
4055
|
operation: "update_event";
|
|
3276
|
-
error: string;
|
|
3277
4056
|
success: boolean;
|
|
4057
|
+
error: string;
|
|
3278
4058
|
event?: z.objectInputType<{
|
|
3279
4059
|
id: z.ZodString;
|
|
3280
4060
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -3290,12 +4070,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3290
4070
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3291
4071
|
}, "strip", z.ZodTypeAny, {
|
|
3292
4072
|
date?: string | undefined;
|
|
3293
|
-
timeZone?: string | undefined;
|
|
3294
4073
|
dateTime?: string | undefined;
|
|
4074
|
+
timeZone?: string | undefined;
|
|
3295
4075
|
}, {
|
|
3296
4076
|
date?: string | undefined;
|
|
3297
|
-
timeZone?: string | undefined;
|
|
3298
4077
|
dateTime?: string | undefined;
|
|
4078
|
+
timeZone?: string | undefined;
|
|
3299
4079
|
}>>;
|
|
3300
4080
|
end: z.ZodOptional<z.ZodObject<{
|
|
3301
4081
|
dateTime: z.ZodOptional<z.ZodString>;
|
|
@@ -3303,12 +4083,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3303
4083
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
3304
4084
|
}, "strip", z.ZodTypeAny, {
|
|
3305
4085
|
date?: string | undefined;
|
|
3306
|
-
timeZone?: string | undefined;
|
|
3307
4086
|
dateTime?: string | undefined;
|
|
4087
|
+
timeZone?: string | undefined;
|
|
3308
4088
|
}, {
|
|
3309
4089
|
date?: string | undefined;
|
|
3310
|
-
timeZone?: string | undefined;
|
|
3311
4090
|
dateTime?: string | undefined;
|
|
4091
|
+
timeZone?: string | undefined;
|
|
3312
4092
|
}>>;
|
|
3313
4093
|
attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3314
4094
|
email: z.ZodString;
|
|
@@ -3318,13 +4098,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3318
4098
|
}, "strip", z.ZodTypeAny, {
|
|
3319
4099
|
email: string;
|
|
3320
4100
|
optional?: boolean | undefined;
|
|
3321
|
-
displayName?: string | undefined;
|
|
3322
4101
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
4102
|
+
displayName?: string | undefined;
|
|
3323
4103
|
}, {
|
|
3324
4104
|
email: string;
|
|
3325
4105
|
optional?: boolean | undefined;
|
|
3326
|
-
displayName?: string | undefined;
|
|
3327
4106
|
responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
|
|
4107
|
+
displayName?: string | undefined;
|
|
3328
4108
|
}>, "many">>;
|
|
3329
4109
|
organizer: z.ZodOptional<z.ZodObject<{
|
|
3330
4110
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -3338,6 +4118,26 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3338
4118
|
}>>;
|
|
3339
4119
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
3340
4120
|
conferenceData: z.ZodOptional<z.ZodAny>;
|
|
4121
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4122
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
4123
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
4124
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4125
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
4126
|
+
iconLink: z.ZodOptional<z.ZodString>;
|
|
4127
|
+
}, "strip", z.ZodTypeAny, {
|
|
4128
|
+
title?: string | undefined;
|
|
4129
|
+
fileId?: string | undefined;
|
|
4130
|
+
fileUrl?: string | undefined;
|
|
4131
|
+
mimeType?: string | undefined;
|
|
4132
|
+
iconLink?: string | undefined;
|
|
4133
|
+
}, {
|
|
4134
|
+
title?: string | undefined;
|
|
4135
|
+
fileId?: string | undefined;
|
|
4136
|
+
fileUrl?: string | undefined;
|
|
4137
|
+
mimeType?: string | undefined;
|
|
4138
|
+
iconLink?: string | undefined;
|
|
4139
|
+
}>, "many">>;
|
|
4140
|
+
driveAttachmentFileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3341
4141
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3342
4142
|
}>, z.ZodObject<{
|
|
3343
4143
|
operation: z.ZodLiteral<"delete_event">;
|
|
@@ -3346,13 +4146,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3346
4146
|
error: z.ZodString;
|
|
3347
4147
|
}, "strip", z.ZodTypeAny, {
|
|
3348
4148
|
operation: "delete_event";
|
|
3349
|
-
error: string;
|
|
3350
4149
|
success: boolean;
|
|
4150
|
+
error: string;
|
|
3351
4151
|
deleted?: boolean | undefined;
|
|
3352
4152
|
}, {
|
|
3353
4153
|
operation: "delete_event";
|
|
3354
|
-
error: string;
|
|
3355
4154
|
success: boolean;
|
|
4155
|
+
error: string;
|
|
3356
4156
|
deleted?: boolean | undefined;
|
|
3357
4157
|
}>]>;
|
|
3358
4158
|
static readonly shortDescription = "Google Calendar integration for managing events";
|
|
@@ -3360,6 +4160,8 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
|
|
|
3360
4160
|
static readonly alias = "gcal";
|
|
3361
4161
|
constructor(params?: T, context?: BubbleContext);
|
|
3362
4162
|
testCredential(): Promise<boolean>;
|
|
4163
|
+
private extractDriveAttachmentFileIds;
|
|
4164
|
+
private processEventWithDriveAttachments;
|
|
3363
4165
|
private makeCalendarApiRequest;
|
|
3364
4166
|
protected performAction(context?: BubbleContext): Promise<Extract<GoogleCalendarResult, {
|
|
3365
4167
|
operation: T['operation'];
|