@pipedream/google_calendar 0.3.17 → 0.3.18

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.
@@ -39,6 +39,12 @@ export default {
39
39
  description: "For all-day events, enter the Event day in the format `yyyy-mm-dd`. For events with time, format according to [RFC3339](https://www.rfc-editor.org/rfc/rfc3339.html#section-1): `yyyy-mm-ddThh:mm:ss+01:00`. A time zone offset is required unless a time zone is explicitly specified in timeZone.",
40
40
  optional: isUpdate,
41
41
  },
42
+ recurrence: {
43
+ label: "Recurrence",
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)",
46
+ optional: true,
47
+ },
42
48
  timeZone: {
43
49
  propDefinition: [
44
50
  googleCalendar,
@@ -6,7 +6,7 @@ export default {
6
6
  key: "google_calendar-create-event",
7
7
  name: "Create Event",
8
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.1.7",
9
+ version: "0.1.8",
10
10
  type: "action",
11
11
  props: {
12
12
  googleCalendar,
@@ -49,6 +49,7 @@ export default {
49
49
  date: this.eventEndDate,
50
50
  timeZone,
51
51
  }),
52
+ recurrence: this.recurrence,
52
53
  attendees,
53
54
  },
54
55
  };
@@ -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.3",
8
+ version: "0.0.4",
9
9
  type: "action",
10
10
  props: {
11
11
  googleCalendar,
@@ -57,6 +57,7 @@ export default {
57
57
  date: this.eventEndDate || currentEvent.end.dateTime,
58
58
  timeZone: timeZone || currentEvent.end.timeZone,
59
59
  }),
60
+ recurrence: this.recurrence,
60
61
  attendees,
61
62
  },
62
63
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/google_calendar",
3
- "version": "0.3.17",
3
+ "version": "0.3.18",
4
4
  "description": "Pipedream Google_calendar Components",
5
5
  "main": "google_calendar.app.mjs",
6
6
  "keywords": [