@pipedream/google_calendar 0.5.1 → 0.5.2

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.
@@ -42,7 +42,7 @@ export default {
42
42
  recurrence: {
43
43
  label: "Recurrence",
44
44
  type: "string[]",
45
- description: "Recurrence rule(s) for the event. For example, `FREQ=DAILY;INTERVAL=2` means once every two days, `RRULE:FREQ=YEARLY` means annually.\nYou can combine multiple recurrence rules. [See the documentation](https://developers.google.com/calendar/api/concepts/events-calendars#recurrence_rule)",
45
+ description: "Recurrence rule(s) for the event. For example, `RRULE:FREQ=DAILY;INTERVAL=2` means once every two days, `RRULE:FREQ=YEARLY` means annually.\nYou can combine multiple recurrence rules. [See the documentation](https://developers.google.com/calendar/api/concepts/events-calendars#recurrence_rule)",
46
46
  optional: true,
47
47
  },
48
48
  timeZone: {
@@ -5,8 +5,8 @@ import { v4 as uuidv4 } from "uuid";
5
5
  export default {
6
6
  key: "google_calendar-create-event",
7
7
  name: "Create Event",
8
- description: "Create an event to the Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Events.html#insert)",
9
- version: "0.2.1",
8
+ description: "Create an event to the Google Calendar. [See the documentation](https://developers.google.com/calendar/api/v3/reference/events/insert)",
9
+ version: "0.2.2",
10
10
  type: "action",
11
11
  props: {
12
12
  googleCalendar,
@@ -36,7 +36,7 @@ export default {
36
36
  ...createEventCommon.methods,
37
37
  },
38
38
  async run({ $ }) {
39
- const timeZone = this.getTimeZone(this.timeZone);
39
+ const timeZone = await this.getTimeZone(this.timeZone);
40
40
  const attendees = this.formatAttendees(this.attendees);
41
41
 
42
42
  const data = {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "google_calendar-update-event",
6
6
  name: "Update Event",
7
7
  description: "Update an event from Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Events.html#update)",
8
- version: "0.0.6",
8
+ version: "0.0.7",
9
9
  type: "action",
10
10
  props: {
11
11
  googleCalendar,
@@ -37,7 +37,7 @@ export default {
37
37
  eventId: this.eventId,
38
38
  });
39
39
 
40
- const timeZone = this.getTimeZone(this.timeZone || currentEvent.start.timeZone);
40
+ const timeZone = await this.getTimeZone(this.timeZone || currentEvent.start.timeZone);
41
41
  const attendees = this.formatAttendees(this.attendees, currentEvent.attendees);
42
42
 
43
43
  const response = await this.googleCalendar.updateEvent({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/google_calendar",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "Pipedream Google_calendar Components",
5
5
  "main": "google_calendar.app.mjs",
6
6
  "keywords": [