@@ -274,12 +274,12 @@ export const quickAddV2Tool: ToolConfig<
274274 id : finalEventData . id ,
275275 htmlLink : finalEventData . htmlLink ,
276276 status : finalEventData . status ,
277- summary : finalEventData . summary ,
278- description : finalEventData . description ,
279- location : finalEventData . location ,
277+ summary : finalEventData . summary ?? null ,
278+ description : finalEventData . description ?? null ,
279+ location : finalEventData . location ?? null ,
280280 start : finalEventData . start ,
281281 end : finalEventData . end ,
282- attendees : finalEventData . attendees ,
282+ attendees : finalEventData . attendees ?? null ,
283283 creator : finalEventData . creator ,
284284 organizer : finalEventData . organizer ,
285285 } ,
@@ -289,12 +289,12 @@ export const quickAddV2Tool: ToolConfig<
289289 id : { type : 'string' , description : 'Event ID' } ,
290290 htmlLink : { type : 'string' , description : 'Event link' } ,
291291 status : { type : 'string' , description : 'Event status' } ,
292- summary : { type : 'string' , description : 'Event title' } ,
293- description : { type : 'string' , description : 'Event description' } ,
294- location : { type : 'string' , description : 'Event location' } ,
292+ summary : { type : 'string' , description : 'Event title' , optional : true } ,
293+ description : { type : 'string' , description : 'Event description' , optional : true } ,
294+ location : { type : 'string' , description : 'Event location' , optional : true } ,
295295 start : { type : 'json' , description : 'Event start' } ,
296296 end : { type : 'json' , description : 'Event end' } ,
297- attendees : { type : 'json' , description : 'Event attendees' } ,
297+ attendees : { type : 'json' , description : 'Event attendees' , optional : true } ,
298298 creator : { type : 'json' , description : 'Event creator' } ,
299299 organizer : { type : 'json' , description : 'Event organizer' } ,
300300 } ,
0 commit comments