diff --git a/.github/workflows/pull-request-checks.yaml b/.github/workflows/pull-request-checks.yaml index 7cf96454e7179..2a2299ba9a520 100644 --- a/.github/workflows/pull-request-checks.yaml +++ b/.github/workflows/pull-request-checks.yaml @@ -35,7 +35,7 @@ jobs: done echo "files=${files}" >> $GITHUB_ENV - - uses: rojopolis/spellcheck-github-actions@0.40.0 + - uses: rojopolis/spellcheck-github-actions@0.42.0 name: Spellcheck if: ${{ env.files }} with: diff --git a/components/google_calendar/package.json b/components/google_calendar/package.json index 5fb12b964b966..f1bd4a36c36ad 100644 --- a/components/google_calendar/package.json +++ b/components/google_calendar/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/google_calendar", - "version": "0.5.5", + "version": "0.5.6", "description": "Pipedream Google_calendar Components", "main": "google_calendar.app.mjs", "keywords": [ diff --git a/components/google_calendar/sources/upcoming-event-alert/upcoming-event-alert.mjs b/components/google_calendar/sources/upcoming-event-alert/upcoming-event-alert.mjs index 5aacdd5b009d3..7ed35921fd97d 100644 --- a/components/google_calendar/sources/upcoming-event-alert/upcoming-event-alert.mjs +++ b/components/google_calendar/sources/upcoming-event-alert/upcoming-event-alert.mjs @@ -8,7 +8,7 @@ export default { description: `Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. [See the documentation](https://pipedream.com/docs/examples/waiting-to-execute-next-step-of-workflow/#step-1-create-a-task-scheduler-event-source) for more information and instructions for connecting your Pipedream account.`, - version: "0.0.8", + version: "0.0.9", type: "source", props: { pipedream: taskScheduler.props.pipedream, @@ -91,6 +91,7 @@ export default { async getCalendarEvents() { const calendarEvents = []; const params = { + returnOnlyData: false, calendarId: this.calendarId, eventTypes: this.eventTypes, };