You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code in solutions/automations/vacation-calendar/Code.js uses lastRun to constrain the event search, but only imports events that are timed between now and MONTHS_IN_ADVANCE months from now.
Hence, these events never get imported because when they satisfy the updatedMin parameter constraint in the Calendar.Events.list call, they fail the timeMin and timeMax constraint.
Expected Behavior
The code would import events, even events created a long time ago, if they occur within the search period (now, now+MONTHS_IN_ADVANCE).
The code only imports events if they were created within MONTHS_IN_ADVANCE of their occurrence. Other events are skipped entirely.
Steps to Reproduce the Problem
Create a vacation event for a date 4 months from now.
Let the script run.
Notice that the event is not imported and is never imported.
Proposal
While the optSince parameter in findEvents is useful in further demonstrating the Calendar.Events.list API call, and generally reduces execution cost, it seems to prevent one important expected behavior for a team vacation populator---that events planned far in advance will show up in the team calendar. I suggest three alternatives:
Remove the updatedMin parameter in the findEvents body. That way, the code will still add upcoming events, but will add redundant events that get de-duplicated.
Set the default MONTHS_IN_ADVANCE relatively large, e.g., 12, 18 or more, so that the problem only manifests for events created much farther in advance.
Add a warning comment in the code that alerts the developer to the nature of these skipped imports and let the developer implement solution if desired.
The text was updated successfully, but these errors were encountered:
Summary
The code in solutions/automations/vacation-calendar/Code.js uses
lastRun
to constrain the event search, but only imports events that are timed betweennow
and MONTHS_IN_ADVANCE months fromnow
.Hence, these events never get imported because when they satisfy the
updatedMin
parameter constraint in theCalendar.Events.list
call, they fail thetimeMin
andtimeMax
constraint.Expected Behavior
The code would import events, even events created a long time ago, if they occur within the search period (now, now+MONTHS_IN_ADVANCE).
Sample URL: https://github.com/googleworkspace/apps-script-samples/blob/main/solutions/automations/vacation-calendar/Code.js
Description:
Actual Behavior
The code only imports events if they were created within MONTHS_IN_ADVANCE of their occurrence. Other events are skipped entirely.
Steps to Reproduce the Problem
Proposal
While the optSince parameter in findEvents is useful in further demonstrating the
Calendar.Events.list
API call, and generally reduces execution cost, it seems to prevent one important expected behavior for a team vacation populator---that events planned far in advance will show up in the team calendar. I suggest three alternatives:updatedMin
parameter in thefindEvents
body. That way, the code will still add upcoming events, but will add redundant events that get de-duplicated.The text was updated successfully, but these errors were encountered: