File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
components/google_calendar
sources/new-or-updated-event-instant Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @pipedream/google_calendar" ,
3- "version" : " 0.5.9 " ,
3+ "version" : " 0.5.10 " ,
44 "description" : " Pipedream Google_calendar Components" ,
55 "main" : " google_calendar.app.mjs" ,
66 "keywords" : [
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export default {
88 type : "source" ,
99 name : "New Created or Updated Event (Instant)" ,
1010 description : "Emit new event when a Google Calendar events is created or updated (does not emit cancelled events)" ,
11- version : "0.1.15 " ,
11+ version : "0.1.16 " ,
1212 dedupe : "unique" ,
1313 props : {
1414 googleCalendar,
@@ -48,6 +48,7 @@ export default {
4848 const params = {
4949 maxResults : 25 ,
5050 orderBy : "updated" ,
51+ timeMin : new Date ( new Date ( ) . setMonth ( new Date ( ) . getMonth ( ) - 1 ) ) . toISOString ( ) , // 1 month ago
5152 } ;
5253 for ( const calendarId of this . calendarIds ) {
5354 params . calendarId = calendarId ;
You can’t perform that action at this time.
0 commit comments