Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,13 @@
type: "string",
label: `Title of Date ${i + 1}`,
description: `The title of Date ${i + 1}`,
optional:true

Check failure on line 151 in components/add_to_calendar_pro/actions/update-event/update-event.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Missing trailing comma

Check failure on line 151 in components/add_to_calendar_pro/actions/update-event/update-event.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Missing space before value for key 'optional'
};
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

Check failure on line 157 in components/add_to_calendar_pro/actions/update-event/update-event.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Missing trailing comma

Check failure on line 157 in components/add_to_calendar_pro/actions/update-event/update-event.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Missing space before value for key 'optional'
};
props[`startTime${i}`] = {
type: "string",
Expand Down
18 changes: 9 additions & 9 deletions components/add_to_calendar_pro/add_to_calendar_pro.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default {
},
},
styleId: {
type: "string",
type: "integer",
label: "Style ID",
description: "The ID of a style",
optional: true,
Expand All @@ -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() {
Expand All @@ -42,7 +42,7 @@ export default {
},
},
rsvpTemplateId: {
type: "string",
type: "integer",
label: "RSVP Template ID",
description: "The ID of an RSVP template",
async options() {
Expand All @@ -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() {
Expand All @@ -78,7 +78,7 @@ export default {
},
},
customDomainId: {
type: "string",
type: "integer",
label: "Custom Domain ID",
description: "The ID of a custom domain",
async options() {
Expand All @@ -90,7 +90,7 @@ export default {
},
},
emailTemplateId: {
type: "string",
type: "integer",
label: "Email Template ID",
description: "The ID of an email template",
optional: true,
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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": "[email protected]",
"prokey": "c6510c06-a277-4e1c-9baf-deec9c5507c7",
"amount": 1,
"payload": {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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": "[email protected]",
"prokey": "c6510c06-a277-4e1c-9baf-deec9c5507c7",
"amount": 2,
"payload": {}
Expand Down
Loading