Skip to content

Commit

Permalink
Clean up source for new methods
Browse files Browse the repository at this point in the history
  • Loading branch information
ebouck committed Sep 20, 2023
1 parent f5d6610 commit 97cbe81
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 16 deletions.
11 changes: 0 additions & 11 deletions packages/@runlightyear/gcal/src/events/getEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,6 @@ import { HttpProxyResponse } from "@runlightyear/lightyear";
import { EventResource } from "../types/EventResource";
import { GoogleCalendar } from "../GoogleCalendar";

/**
* Parameters
* Parameter name Value Description
* Path parameters
* calendarId string Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.
* eventId string Event identifier.
* Optional query parameters
* alwaysIncludeEmail boolean Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided).
* maxAttendees integer The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.
* timeZone string Time zone used in the response. Optional. The default is the time zone of the calendar.
*/
export interface GetEventProps {
calendarId: "primary" | string;
eventId: string;
Expand Down
6 changes: 1 addition & 5 deletions packages/@runlightyear/gcal/src/events/patchEvent.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import {
EventResource,
EventResourceInput,
EventResourcePatchInput,
} from "../types/EventResource";
import { EventResource, EventResourcePatchInput } from "../types/EventResource";
import { GoogleCalendar } from "../GoogleCalendar";
import { HttpProxyResponse } from "@runlightyear/lightyear";

Expand Down

0 comments on commit 97cbe81

Please sign in to comment.