Skip to content

Commit 544d8c8

Browse files
authored
Google Calendar - new-or-updated-event-instant update (#18024)
* update deploy * pnpm-lock.yaml
1 parent 26bbe6a commit 544d8c8

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
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;

pnpm-lock.yaml

Lines changed: 4 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)