@@ -32,12 +32,48 @@ module CalendarV3
3232 # See, edit, share, and permanently delete all the calendars you can access using Google Calendar
3333 AUTH_CALENDAR = 'https://www.googleapis.com/auth/calendar'
3434
35+ # See and change the sharing permissions of Google calendars you own
36+ AUTH_CALENDAR_ACLS = 'https://www.googleapis.com/auth/calendar.acls'
37+
38+ # See the sharing permissions of Google calendars you own
39+ AUTH_CALENDAR_ACLS_READONLY = 'https://www.googleapis.com/auth/calendar.acls.readonly'
40+
41+ # Make secondary Google calendars, and see, create, change, and delete events on them
42+ AUTH_CALENDAR_APP_CREATED = 'https://www.googleapis.com/auth/calendar.app.created'
43+
44+ # See, add, and remove Google calendars you’re subscribed to
45+ AUTH_CALENDAR_CALENDARLIST = 'https://www.googleapis.com/auth/calendar.calendarlist'
46+
47+ # See the list of Google calendars you’re subscribed to
48+ AUTH_CALENDAR_CALENDARLIST_READONLY = 'https://www.googleapis.com/auth/calendar.calendarlist.readonly'
49+
50+ # See and change the properties of Google calendars you have access to, and create secondary calendars
51+ AUTH_CALENDAR_CALENDARS = 'https://www.googleapis.com/auth/calendar.calendars'
52+
53+ # See the title, description, default time zone, and other properties of Google calendars you have access to
54+ AUTH_CALENDAR_CALENDARS_READONLY = 'https://www.googleapis.com/auth/calendar.calendars.readonly'
55+
3556 # View and edit events on all your calendars
3657 AUTH_CALENDAR_EVENTS = 'https://www.googleapis.com/auth/calendar.events'
3758
59+ # See the availability on Google calendars you have access to
60+ AUTH_CALENDAR_EVENTS_FREEBUSY = 'https://www.googleapis.com/auth/calendar.events.freebusy'
61+
62+ # See, create, change, and delete events on Google calendars you own
63+ AUTH_CALENDAR_EVENTS_OWNED = 'https://www.googleapis.com/auth/calendar.events.owned'
64+
65+ # See the events on Google calendars you own
66+ AUTH_CALENDAR_EVENTS_OWNED_READONLY = 'https://www.googleapis.com/auth/calendar.events.owned.readonly'
67+
68+ # See the events on public calendars
69+ AUTH_CALENDAR_EVENTS_PUBLIC_READONLY = 'https://www.googleapis.com/auth/calendar.events.public.readonly'
70+
3871 # View events on all your calendars
3972 AUTH_CALENDAR_EVENTS_READONLY = 'https://www.googleapis.com/auth/calendar.events.readonly'
4073
74+ # View your availability in your calendars
75+ AUTH_CALENDAR_FREEBUSY = 'https://www.googleapis.com/auth/calendar.freebusy'
76+
4177 # See and download any calendar you can access using your Google Calendar
4278 AUTH_CALENDAR_READONLY = 'https://www.googleapis.com/auth/calendar.readonly'
4379
0 commit comments