Skip to content

Commit 40b4605

Browse files
committed
Google Calendar: Fixed error in logs when source is deployed
1 parent 1f177b1 commit 40b4605

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.5",
3+
"version": "0.5.6",
44
"description": "Pipedream Google_calendar Components",
55
"main": "google_calendar.app.mjs",
66
"keywords": [

components/google_calendar/sources/upcoming-event-alert/upcoming-event-alert.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
description: `Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler.
99
[See the documentation](https://pipedream.com/docs/examples/waiting-to-execute-next-step-of-workflow/#step-1-create-a-task-scheduler-event-source)
1010
for more information and instructions for connecting your Pipedream account.`,
11-
version: "0.0.8",
11+
version: "0.0.9",
1212
type: "source",
1313
props: {
1414
pipedream: taskScheduler.props.pipedream,
@@ -91,6 +91,7 @@ export default {
9191
async getCalendarEvents() {
9292
const calendarEvents = [];
9393
const params = {
94+
returnOnlyData: false,
9495
calendarId: this.calendarId,
9596
eventTypes: this.eventTypes,
9697
};

0 commit comments

Comments
 (0)