From a452378c2c037c4f69df3baa5fc1bb40dd6d6577 Mon Sep 17 00:00:00 2001 From: Atharva Patil Date: Thu, 17 Jul 2025 08:34:43 +0530 Subject: [PATCH 1/6] Fix(add-to-calendar-pro): Update component props and actions --- .../actions/get-ics-data/get-ics-data.mjs | 1 + .../actions/update-event/update-event.mjs | 2 ++ .../add_to_calendar_pro.app.mjs | 18 +++++++++--------- .../new-rsvp-answer-instant/test-event.mjs | 2 +- .../rsvp-answer-updated-instant/test-event.mjs | 2 +- 5 files changed, 14 insertions(+), 11 deletions(-) diff --git a/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs b/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs index d63ece0764ed4..5e832c6debc4f 100644 --- a/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs +++ b/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs @@ -19,6 +19,7 @@ export default { const response = await this.addToCalendarPro.getIcsData({ $, eventProKey: this.eventProKey, + responseType: "object", }); $.export("$summary", "Successfully retrieved ICS data."); return response; diff --git a/components/add_to_calendar_pro/actions/update-event/update-event.mjs b/components/add_to_calendar_pro/actions/update-event/update-event.mjs index ddcae0c6f13e6..49800cb5ce5fd 100644 --- a/components/add_to_calendar_pro/actions/update-event/update-event.mjs +++ b/components/add_to_calendar_pro/actions/update-event/update-event.mjs @@ -148,11 +148,13 @@ export default { type: "string", label: `Title of Date ${i + 1}`, description: `The title of Date ${i + 1}`, + optional:true }; props[`startDate${i}`] = { type: "string", label: `Start Date of Date ${i + 1}`, description: `The start date of Date ${i + 1} in format YYYY-MM-DD`, + optional:true }; props[`startTime${i}`] = { type: "string", diff --git a/components/add_to_calendar_pro/add_to_calendar_pro.app.mjs b/components/add_to_calendar_pro/add_to_calendar_pro.app.mjs index 493ecea5de976..c7c0142af68c7 100644 --- a/components/add_to_calendar_pro/add_to_calendar_pro.app.mjs +++ b/components/add_to_calendar_pro/add_to_calendar_pro.app.mjs @@ -17,7 +17,7 @@ export default { }, }, styleId: { - type: "string", + type: "integer", label: "Style ID", description: "The ID of a style", optional: true, @@ -30,7 +30,7 @@ export default { }, }, landingPageTemplateId: { - type: "string", + type: "integer", label: "Landing Page Template ID", description: "The ID of a landing page template", async options() { @@ -42,7 +42,7 @@ export default { }, }, rsvpTemplateId: { - type: "string", + type: "integer", label: "RSVP Template ID", description: "The ID of an RSVP template", async options() { @@ -54,7 +54,7 @@ export default { }, }, ctaTemplateId: { - type: "string", + type: "integer", label: "CTA Template ID", description: "The ID of a Call to Action template", async options() { @@ -78,7 +78,7 @@ export default { }, }, customDomainId: { - type: "string", + type: "integer", label: "Custom Domain ID", description: "The ID of a custom domain", async options() { @@ -90,7 +90,7 @@ export default { }, }, emailTemplateId: { - type: "string", + type: "integer", label: "Email Template ID", description: "The ID of an email template", optional: true, @@ -119,13 +119,13 @@ export default { recurrence: { type: "string", label: "Recurrence", - description: "The recurrence of the event", + description: "An RRULE. Use in combination with \"Simplified Recurrence\" being set to false.", optional: true, }, recurrenceSimpleType: { type: "string", label: "Recurrence Simple Type", - description: "The type of recurrence", + description: "Use in combination with \"Simplified Recurrence\" being set to true.", options: [ "daily", "weekly", @@ -285,7 +285,7 @@ export default { optional: true, }, metaRobotsOverride: { - type: "string", + type: "boolean", label: "Meta Robots Override", description: "If true, Add to Calendar Pro will set \"norobots, noindex\"", optional: true, diff --git a/components/add_to_calendar_pro/sources/new-rsvp-answer-instant/test-event.mjs b/components/add_to_calendar_pro/sources/new-rsvp-answer-instant/test-event.mjs index de3356c3e45c5..30aa0c125b8a0 100644 --- a/components/add_to_calendar_pro/sources/new-rsvp-answer-instant/test-event.mjs +++ b/components/add_to_calendar_pro/sources/new-rsvp-answer-instant/test-event.mjs @@ -3,7 +3,7 @@ export default { "status": "confirmed", "date_created": "2025-06-26T19:04:30.237Z", "date_updated": "2025-06-26T19:05:00.137Z", - "email": "", + "email": "john.doe@email.com", "prokey": "c6510c06-a277-4e1c-9baf-deec9c5507c7", "amount": 1, "payload": {} diff --git a/components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/test-event.mjs b/components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/test-event.mjs index 325597099c181..d1eaf486ee182 100644 --- a/components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/test-event.mjs +++ b/components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/test-event.mjs @@ -3,7 +3,7 @@ export default { "status": "confirmed", "date_created": "2025-06-26T19:04:30.237Z", "date_updated": "2025-06-26T19:30:09.868Z", - "email": "", + "email": "john.doe@email.com", "prokey": "c6510c06-a277-4e1c-9baf-deec9c5507c7", "amount": 2, "payload": {} From 5880a4485ba49ca6fd6c96c9c5605706cc1a3907 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Thu, 17 Jul 2025 10:43:17 -0400 Subject: [PATCH 2/6] versions, formatting --- .../actions/create-event-group/create-event-group.mjs | 2 +- .../actions/create-event/create-event.mjs | 2 +- .../create-landing-page-template.mjs | 2 +- .../create-rsvp-template/create-rsvp-template.mjs | 2 +- .../actions/delete-event-group/delete-event-group.mjs | 2 +- .../actions/delete-event/delete-event.mjs | 2 +- .../delete-landing-page-template.mjs | 2 +- .../delete-rsvp-template/delete-rsvp-template.mjs | 2 +- .../actions/get-event-group/get-event-group.mjs | 2 +- .../actions/get-event/get-event.mjs | 2 +- .../actions/get-ics-data/get-ics-data.mjs | 2 +- .../get-landing-page-template.mjs | 2 +- .../actions/get-rsvp-template/get-rsvp-template.mjs | 2 +- .../actions/update-event-group/update-event-group.mjs | 2 +- .../actions/update-event/update-event.mjs | 6 +++--- .../update-landing-page-template.mjs | 2 +- .../update-rsvp-template/update-rsvp-template.mjs | 2 +- components/add_to_calendar_pro/package.json | 2 +- .../event-deleted-instant/event-deleted-instant.mjs | 2 +- .../event-group-deleted-instant.mjs | 2 +- .../event-group-updated-instant.mjs | 2 +- .../event-updated-instant/event-updated-instant.mjs | 2 +- .../new-event-created-instant.mjs | 2 +- .../new-event-group-created-instant.mjs | 2 +- .../new-rsvp-answer-instant.mjs | 2 +- .../rsvp-answer-updated-instant.mjs | 2 +- pnpm-lock.yaml | 11 +++++------ 27 files changed, 33 insertions(+), 34 deletions(-) diff --git a/components/add_to_calendar_pro/actions/create-event-group/create-event-group.mjs b/components/add_to_calendar_pro/actions/create-event-group/create-event-group.mjs index 3458765f7df8d..1ec8fbb9586e2 100644 --- a/components/add_to_calendar_pro/actions/create-event-group/create-event-group.mjs +++ b/components/add_to_calendar_pro/actions/create-event-group/create-event-group.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-create-event-group", name: "Create Event Group", description: "Create an event group. [See the documentation](https://docs.add-to-calendar-pro.com/api/groups#add-a-group)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/create-event/create-event.mjs b/components/add_to_calendar_pro/actions/create-event/create-event.mjs index 77605d1d81afa..ef1a7913be90f 100644 --- a/components/add_to_calendar_pro/actions/create-event/create-event.mjs +++ b/components/add_to_calendar_pro/actions/create-event/create-event.mjs @@ -5,7 +5,7 @@ export default { key: "add_to_calendar_pro-create-event", name: "Create Event", description: "Create an event in a group. [See the documentation](https://docs.add-to-calendar-pro.com/api/events#add-an-event)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/create-landing-page-template/create-landing-page-template.mjs b/components/add_to_calendar_pro/actions/create-landing-page-template/create-landing-page-template.mjs index 184947f2a7f84..3aa467e4ea05e 100644 --- a/components/add_to_calendar_pro/actions/create-landing-page-template/create-landing-page-template.mjs +++ b/components/add_to_calendar_pro/actions/create-landing-page-template/create-landing-page-template.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-create-landing-page-template", name: "Create Landing Page Template", description: "Create a landing page template. [See the documentation](https://docs.add-to-calendar-pro.com/api/landingpages#add-a-landing-page-template)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/create-rsvp-template/create-rsvp-template.mjs b/components/add_to_calendar_pro/actions/create-rsvp-template/create-rsvp-template.mjs index 482371fe83cf5..1ccaeaeddc2f6 100644 --- a/components/add_to_calendar_pro/actions/create-rsvp-template/create-rsvp-template.mjs +++ b/components/add_to_calendar_pro/actions/create-rsvp-template/create-rsvp-template.mjs @@ -5,7 +5,7 @@ export default { key: "add_to_calendar_pro-create-rsvp-template", name: "Create RSVP Template", description: "Create an RSVP template. [See the documentation](https://docs.add-to-calendar-pro.com/api/rsvp#add-an-rsvp-template)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/delete-event-group/delete-event-group.mjs b/components/add_to_calendar_pro/actions/delete-event-group/delete-event-group.mjs index 5debbab0748cb..6d1290135d634 100644 --- a/components/add_to_calendar_pro/actions/delete-event-group/delete-event-group.mjs +++ b/components/add_to_calendar_pro/actions/delete-event-group/delete-event-group.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-delete-event-group", name: "Delete Event Group", description: "Delete an event group. [See the documentation](https://docs.add-to-calendar-pro.com/api/groups#delete-a-group)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/delete-event/delete-event.mjs b/components/add_to_calendar_pro/actions/delete-event/delete-event.mjs index 45fc5e37dcd3e..b6e9edb216040 100644 --- a/components/add_to_calendar_pro/actions/delete-event/delete-event.mjs +++ b/components/add_to_calendar_pro/actions/delete-event/delete-event.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-delete-event", name: "Delete Event", description: "Delete an event. [See the documentation](https://docs.add-to-calendar-pro.com/api/events#delete-an-event)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/delete-landing-page-template/delete-landing-page-template.mjs b/components/add_to_calendar_pro/actions/delete-landing-page-template/delete-landing-page-template.mjs index e5eb25e2b07e9..c517db8934310 100644 --- a/components/add_to_calendar_pro/actions/delete-landing-page-template/delete-landing-page-template.mjs +++ b/components/add_to_calendar_pro/actions/delete-landing-page-template/delete-landing-page-template.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-delete-landing-page-template", name: "Delete Landing Page Template", description: "Delete a landing page template. [See the documentation](https://docs.add-to-calendar-pro.com/api/landingpages#delete-a-landing-page-template)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/delete-rsvp-template/delete-rsvp-template.mjs b/components/add_to_calendar_pro/actions/delete-rsvp-template/delete-rsvp-template.mjs index 11b4a4d604ad4..9901f4793202a 100644 --- a/components/add_to_calendar_pro/actions/delete-rsvp-template/delete-rsvp-template.mjs +++ b/components/add_to_calendar_pro/actions/delete-rsvp-template/delete-rsvp-template.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-delete-rsvp-template", name: "Delete RSVP Template", description: "Delete an RSVP template. [See the documentation](https://docs.add-to-calendar-pro.com/api/rsvp#delete-an-rsvp-template)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/get-event-group/get-event-group.mjs b/components/add_to_calendar_pro/actions/get-event-group/get-event-group.mjs index 56a6f48c4691f..1a7480bac6509 100644 --- a/components/add_to_calendar_pro/actions/get-event-group/get-event-group.mjs +++ b/components/add_to_calendar_pro/actions/get-event-group/get-event-group.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-get-event-group", name: "Get Event Group", description: "Get an event group. [See the documentation](https://docs.add-to-calendar-pro.com/api/groups#get-one-group)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/get-event/get-event.mjs b/components/add_to_calendar_pro/actions/get-event/get-event.mjs index 36645cdd6648c..ee3e78a56a124 100644 --- a/components/add_to_calendar_pro/actions/get-event/get-event.mjs +++ b/components/add_to_calendar_pro/actions/get-event/get-event.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-get-event", name: "Get Event", description: "Get an event. [See the documentation](https://docs.add-to-calendar-pro.com/api/events#get-one-event)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs b/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs index 5e832c6debc4f..76ab19ccbc8e2 100644 --- a/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs +++ b/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-get-ics-data", name: "Get ICS Data", description: "Retrieve the ics file for a provided event to be typically used as an attachment within an email. [See the documentation](https://docs.add-to-calendar-pro.com/api/miscellaneous#retrieve-ics-file-body)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/get-landing-page-template/get-landing-page-template.mjs b/components/add_to_calendar_pro/actions/get-landing-page-template/get-landing-page-template.mjs index 25107eb5e026b..ae020a042a759 100644 --- a/components/add_to_calendar_pro/actions/get-landing-page-template/get-landing-page-template.mjs +++ b/components/add_to_calendar_pro/actions/get-landing-page-template/get-landing-page-template.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-get-landing-page-template", name: "Get Landing Page Template", description: "Get a landing page template. [See the documentation](https://docs.add-to-calendar-pro.com/api/landingpages#get-one-landing-page-template)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/get-rsvp-template/get-rsvp-template.mjs b/components/add_to_calendar_pro/actions/get-rsvp-template/get-rsvp-template.mjs index b9ae050b1b318..77730234227e7 100644 --- a/components/add_to_calendar_pro/actions/get-rsvp-template/get-rsvp-template.mjs +++ b/components/add_to_calendar_pro/actions/get-rsvp-template/get-rsvp-template.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-get-rsvp-template", name: "Get RSVP Template", description: "Get an RSVP template. [See the documentation](https://docs.add-to-calendar-pro.com/api/rsvp#get-one-rsvp-template)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/update-event-group/update-event-group.mjs b/components/add_to_calendar_pro/actions/update-event-group/update-event-group.mjs index 84603c13b5f43..1b05c41f4c547 100644 --- a/components/add_to_calendar_pro/actions/update-event-group/update-event-group.mjs +++ b/components/add_to_calendar_pro/actions/update-event-group/update-event-group.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-update-event-group", name: "Update Event Group", description: "Update an event group. [See the documentation](https://docs.add-to-calendar-pro.com/api/groups#update-a-group)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/update-event/update-event.mjs b/components/add_to_calendar_pro/actions/update-event/update-event.mjs index 49800cb5ce5fd..b4d4b21c08f7d 100644 --- a/components/add_to_calendar_pro/actions/update-event/update-event.mjs +++ b/components/add_to_calendar_pro/actions/update-event/update-event.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-update-event", name: "Update Event", description: "Update an event in a group. [See the documentation](https://docs.add-to-calendar-pro.com/api/events#update-an-event)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, @@ -148,13 +148,13 @@ export default { type: "string", label: `Title of Date ${i + 1}`, description: `The title of Date ${i + 1}`, - optional:true + optional: true, }; props[`startDate${i}`] = { type: "string", label: `Start Date of Date ${i + 1}`, description: `The start date of Date ${i + 1} in format YYYY-MM-DD`, - optional:true + optional: true, }; props[`startTime${i}`] = { type: "string", diff --git a/components/add_to_calendar_pro/actions/update-landing-page-template/update-landing-page-template.mjs b/components/add_to_calendar_pro/actions/update-landing-page-template/update-landing-page-template.mjs index a41fa9962db2f..91c19c77e2107 100644 --- a/components/add_to_calendar_pro/actions/update-landing-page-template/update-landing-page-template.mjs +++ b/components/add_to_calendar_pro/actions/update-landing-page-template/update-landing-page-template.mjs @@ -4,7 +4,7 @@ export default { key: "add_to_calendar_pro-update-landing-page-template", name: "Update Landing Page Template", description: "Update a landing page template. [See the documentation](https://docs.add-to-calendar-pro.com/api/landingpages#update-a-landing-page-template)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/actions/update-rsvp-template/update-rsvp-template.mjs b/components/add_to_calendar_pro/actions/update-rsvp-template/update-rsvp-template.mjs index 0adf294b2c407..809550b59c531 100644 --- a/components/add_to_calendar_pro/actions/update-rsvp-template/update-rsvp-template.mjs +++ b/components/add_to_calendar_pro/actions/update-rsvp-template/update-rsvp-template.mjs @@ -5,7 +5,7 @@ export default { key: "add_to_calendar_pro-update-rsvp-template", name: "Update RSVP Template", description: "Update an RSVP template. [See the documentation](https://docs.add-to-calendar-pro.com/api/rsvp#update-an-rsvp-template)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { addToCalendarPro, diff --git a/components/add_to_calendar_pro/package.json b/components/add_to_calendar_pro/package.json index 0066f9a52ef18..dd0196d690d4e 100644 --- a/components/add_to_calendar_pro/package.json +++ b/components/add_to_calendar_pro/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/add_to_calendar_pro", - "version": "0.1.1", + "version": "0.1.2", "description": "Pipedream Add to Calendar PRO Components", "main": "add_to_calendar_pro.app.mjs", "keywords": [ diff --git a/components/add_to_calendar_pro/sources/event-deleted-instant/event-deleted-instant.mjs b/components/add_to_calendar_pro/sources/event-deleted-instant/event-deleted-instant.mjs index aca2b94f6f595..2013b97bcfba8 100644 --- a/components/add_to_calendar_pro/sources/event-deleted-instant/event-deleted-instant.mjs +++ b/components/add_to_calendar_pro/sources/event-deleted-instant/event-deleted-instant.mjs @@ -6,7 +6,7 @@ export default { key: "add_to_calendar_pro-event-deleted-instant", name: "Event Deleted (Instant)", description: "Emit new event when a new event is deleted in the system", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/add_to_calendar_pro/sources/event-group-deleted-instant/event-group-deleted-instant.mjs b/components/add_to_calendar_pro/sources/event-group-deleted-instant/event-group-deleted-instant.mjs index ced19907cd470..f7df1d43748f0 100644 --- a/components/add_to_calendar_pro/sources/event-group-deleted-instant/event-group-deleted-instant.mjs +++ b/components/add_to_calendar_pro/sources/event-group-deleted-instant/event-group-deleted-instant.mjs @@ -6,7 +6,7 @@ export default { key: "add_to_calendar_pro-event-group-deleted-instant", name: "Event Group Deleted (Instant)", description: "Emit new event when a new event group is deleted in the system", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/add_to_calendar_pro/sources/event-group-updated-instant/event-group-updated-instant.mjs b/components/add_to_calendar_pro/sources/event-group-updated-instant/event-group-updated-instant.mjs index a430099cf3788..ab2c3e0a2ecc0 100644 --- a/components/add_to_calendar_pro/sources/event-group-updated-instant/event-group-updated-instant.mjs +++ b/components/add_to_calendar_pro/sources/event-group-updated-instant/event-group-updated-instant.mjs @@ -6,7 +6,7 @@ export default { key: "add_to_calendar_pro-event-group-updated-instant", name: "Event Group Updated (Instant)", description: "Emit new event when a new event group is updated in the system", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/add_to_calendar_pro/sources/event-updated-instant/event-updated-instant.mjs b/components/add_to_calendar_pro/sources/event-updated-instant/event-updated-instant.mjs index 81ff3eb727454..315709bbf70e1 100644 --- a/components/add_to_calendar_pro/sources/event-updated-instant/event-updated-instant.mjs +++ b/components/add_to_calendar_pro/sources/event-updated-instant/event-updated-instant.mjs @@ -6,7 +6,7 @@ export default { key: "add_to_calendar_pro-event-updated-instant", name: "Event Updated (Instant)", description: "Emit new event when a new event is updated in the system", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/add_to_calendar_pro/sources/new-event-created-instant/new-event-created-instant.mjs b/components/add_to_calendar_pro/sources/new-event-created-instant/new-event-created-instant.mjs index f705d2465252c..cc453ef57a0d3 100644 --- a/components/add_to_calendar_pro/sources/new-event-created-instant/new-event-created-instant.mjs +++ b/components/add_to_calendar_pro/sources/new-event-created-instant/new-event-created-instant.mjs @@ -6,7 +6,7 @@ export default { key: "add_to_calendar_pro-new-event-created-instant", name: "New Event Created (Instant)", description: "Emit new event when a new event is created in the system", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/add_to_calendar_pro/sources/new-event-group-created-instant/new-event-group-created-instant.mjs b/components/add_to_calendar_pro/sources/new-event-group-created-instant/new-event-group-created-instant.mjs index 4e47968062e35..57420acede62a 100644 --- a/components/add_to_calendar_pro/sources/new-event-group-created-instant/new-event-group-created-instant.mjs +++ b/components/add_to_calendar_pro/sources/new-event-group-created-instant/new-event-group-created-instant.mjs @@ -6,7 +6,7 @@ export default { key: "add_to_calendar_pro-new-event-group-created-instant", name: "New Event Group Created (Instant)", description: "Emit new event when a new event group is created in the system", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/add_to_calendar_pro/sources/new-rsvp-answer-instant/new-rsvp-answer-instant.mjs b/components/add_to_calendar_pro/sources/new-rsvp-answer-instant/new-rsvp-answer-instant.mjs index 11abb5c32a5cb..5b4684dcaeeb8 100644 --- a/components/add_to_calendar_pro/sources/new-rsvp-answer-instant/new-rsvp-answer-instant.mjs +++ b/components/add_to_calendar_pro/sources/new-rsvp-answer-instant/new-rsvp-answer-instant.mjs @@ -6,7 +6,7 @@ export default { key: "add_to_calendar_pro-new-rsvp-answer-instant", name: "New RSVP Answer (Instant)", description: "Emit new RSVP answer when a new RSVP answer is created in the system", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/rsvp-answer-updated-instant.mjs b/components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/rsvp-answer-updated-instant.mjs index 783fa633cfd38..95be0ba71d862 100644 --- a/components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/rsvp-answer-updated-instant.mjs +++ b/components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/rsvp-answer-updated-instant.mjs @@ -6,7 +6,7 @@ export default { key: "add_to_calendar_pro-rsvp-answer-updated-instant", name: "RSVP Answer Updated (Instant)", description: "Emit new RSVP answer when a new RSVP answer is updated in the system", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a96771e8bc739..875779eb9f92c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10159,8 +10159,7 @@ importers: specifier: ^6.11.1 version: 6.13.1 - components/pingback: - specifiers: {} + components/pingback: {} components/pingbell: dependencies: @@ -29920,22 +29919,22 @@ packages: superagent@3.8.1: resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==} engines: {node: '>= 4.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@4.1.0: resolution: {integrity: sha512-FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==} engines: {node: '>= 6.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@5.3.1: resolution: {integrity: sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==} engines: {node: '>= 7.0.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@7.1.6: resolution: {integrity: sha512-gZkVCQR1gy/oUXr+kxJMLDjla434KmSOKbx5iGD30Ql+AkJQ/YlPKECJy2nhqOsHLjGHzoDTXNSjhnvWhzKk7g==} engines: {node: '>=6.4.0 <13 || >=14'} - deprecated: Please downgrade to v7.1.5 if you need IE/ActiveXObject support OR upgrade to v8.0.0 as we no longer support IE and published an incorrect patch version (see https://github.com/visionmedia/superagent/issues/1731) + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net supports-color@2.0.0: resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} From 7141f7f1475c8913677c9f5e1dc5371b6d805202 Mon Sep 17 00:00:00 2001 From: Leo Vu Date: Fri, 18 Jul 2025 08:51:47 +0700 Subject: [PATCH 3/6] Update components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs --- .../add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs b/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs index 76ab19ccbc8e2..8e82d02a3e9ee 100644 --- a/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs +++ b/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs @@ -19,7 +19,9 @@ export default { const response = await this.addToCalendarPro.getIcsData({ $, eventProKey: this.eventProKey, - responseType: "object", + params: { + responseType: "object" + } }); $.export("$summary", "Successfully retrieved ICS data."); return response; From bf14c8fba4e0261b2fc2e8a68d4f9d1b61899030 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Fri, 18 Jul 2025 10:31:29 -0400 Subject: [PATCH 4/6] eslint fix --- .../add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs b/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs index 8e82d02a3e9ee..1cea0a38cc54b 100644 --- a/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs +++ b/components/add_to_calendar_pro/actions/get-ics-data/get-ics-data.mjs @@ -20,8 +20,8 @@ export default { $, eventProKey: this.eventProKey, params: { - responseType: "object" - } + responseType: "object", + }, }); $.export("$summary", "Successfully retrieved ICS data."); return response; From 567c522ed915c43b88a0c6711da03d9660e55e81 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Fri, 18 Jul 2025 10:32:01 -0400 Subject: [PATCH 5/6] pnpm-lock.yaml --- pnpm-lock.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 875779eb9f92c..2e726f753aa94 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16096,7 +16096,7 @@ importers: version: 3.1.7 ts-jest: specifier: ^29.2.5 - version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0))(typescript@5.7.2) + version: 29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0))(typescript@5.7.2) tsup: specifier: ^8.3.6 version: 8.3.6(@microsoft/api-extractor@7.47.12(@types/node@20.17.30))(jiti@2.4.2)(postcss@8.4.49)(tsx@4.19.4)(typescript@5.7.2)(yaml@2.6.1) @@ -16139,7 +16139,7 @@ importers: version: 3.1.0 jest: specifier: ^29.1.2 - version: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0) + version: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0) type-fest: specifier: ^4.15.0 version: 4.27.0 @@ -51320,7 +51320,7 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0))(typescript@5.7.2): + ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0))(typescript@5.7.2): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -51334,10 +51334,10 @@ snapshots: typescript: 5.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.26.0 + '@babel/core': 8.0.0-alpha.13 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.0) + babel-jest: 29.7.0(@babel/core@8.0.0-alpha.13) ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3): dependencies: From c1a78c087c3e15aa1e4c4e60ae8416ed14f32900 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Fri, 18 Jul 2025 10:32:29 -0400 Subject: [PATCH 6/6] pnpm-lock.yaml --- pnpm-lock.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2e726f753aa94..875779eb9f92c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16096,7 +16096,7 @@ importers: version: 3.1.7 ts-jest: specifier: ^29.2.5 - version: 29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0))(typescript@5.7.2) + version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0))(typescript@5.7.2) tsup: specifier: ^8.3.6 version: 8.3.6(@microsoft/api-extractor@7.47.12(@types/node@20.17.30))(jiti@2.4.2)(postcss@8.4.49)(tsx@4.19.4)(typescript@5.7.2)(yaml@2.6.1) @@ -16139,7 +16139,7 @@ importers: version: 3.1.0 jest: specifier: ^29.1.2 - version: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0) + version: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0) type-fest: specifier: ^4.15.0 version: 4.27.0 @@ -51320,7 +51320,7 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0))(typescript@5.7.2): + ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0))(typescript@5.7.2): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -51334,10 +51334,10 @@ snapshots: typescript: 5.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 8.0.0-alpha.13 + '@babel/core': 7.26.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@8.0.0-alpha.13) + babel-jest: 29.7.0(@babel/core@7.26.0) ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3): dependencies: