@pipedream/google_calendar 0.5.9 → 0.5.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/google_calendar",
3
- "version": "0.5.9",
3
+ "version": "0.5.10",
4
4
  "description": "Pipedream Google_calendar Components",
5
5
  "main": "google_calendar.app.mjs",
6
6
  "keywords": [
@@ -8,7 +8,7 @@ export default {
8
8
  type: "source",
9
9
  name: "New Created or Updated Event (Instant)",
10
10
  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",
12
12
  dedupe: "unique",
13
13
  props: {
14
14
  googleCalendar,
@@ -48,6 +48,7 @@ export default {
48
48
  const params = {
49
49
  maxResults: 25,
50
50
  orderBy: "updated",
51
+ timeMin: new Date(new Date().setMonth(new Date().getMonth() - 1)).toISOString(), // 1 month ago
51
52
  };
52
53
  for (const calendarId of this.calendarIds) {
53
54
  params.calendarId = calendarId;