Skip to content

Commit 5ebb28a

Browse files
committed
update deploy
1 parent 26bbe6a commit 5ebb28a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

components/google_calendar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": [

components/google_calendar/sources/new-or-updated-event-instant/new-or-updated-event-instant.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)