Skip to content

Commit 497cb75

Browse files
committed
versions, lint fix
1 parent d2a9579 commit 497cb75

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
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.6",
3+
"version": "0.5.7",
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: 4 additions & 2 deletions
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.13",
11+
version: "0.1.14",
1212
dedupe: "unique",
1313
props: {
1414
googleCalendar,
@@ -255,7 +255,9 @@ export default {
255255

256256
// Fetch and emit events
257257
const checkCalendarIds = calendarId
258-
? [calendarId]
258+
? [
259+
calendarId,
260+
]
259261
: this.calendarIds;
260262
for (const calendarId of checkCalendarIds) {
261263
const syncToken = this.getNextSyncToken(calendarId);

0 commit comments

Comments
 (0)