Skip to content

Commit 3ab6ba1

Browse files
committed
updates
1 parent 0bd6461 commit 3ab6ba1

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

components/add_to_calendar_pro/actions/update-event-group/update-event-group.mjs

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,15 @@ export default {
5959
$,
6060
groupProKey: this.groupProKey,
6161
data: {
62-
data: {
63-
name: this.eventGroupName,
64-
internal_note: this.internalNote,
65-
subscription: this.subscriptionCallUrl
66-
? "external"
67-
: "no",
68-
subscription_call_url: this.subscriptionCallUrl,
69-
cta: this.cta,
70-
layout: this.styleId,
71-
landingpage: this.landingPageTemplateId,
72-
},
62+
name: this.eventGroupName,
63+
internal_note: this.internalNote,
64+
subscription: this.subscriptionCallUrl
65+
? "external"
66+
: "no",
67+
subscription_call_url: this.subscriptionCallUrl,
68+
cta: this.cta,
69+
layout: this.styleId,
70+
landingpage: this.landingPageTemplateId,
7371
},
7472
});
7573
$.export("$summary", "Successfully updated event group.");

components/add_to_calendar_pro/add_to_calendar_pro.app.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ export default {
292292
fields: {
293293
type: "string[]",
294294
label: "Fields",
295-
description: "The fields of the RSVP template. Example: `[{ \"type\": \"text\", \"name\": \"additional_info\", \"label\": \"Additional note\", \"required\": false, \"placeholder\": \"Type here...\", \"default\": \"Call me maybe\" }] [See the documentation](https://docs.add-to-calendar-pro.com/api/rsvp#add-an-rsvp-template) for more information.`",
295+
description: "The fields of the RSVP template. Example: `[{ \"type\": \"text\", \"name\": \"additional_info\", \"label\": \"Additional note\", \"required\": false, \"placeholder\": \"Type here...\", \"default\": \"Call me maybe\" }]` [See the documentation](https://docs.add-to-calendar-pro.com/api/rsvp#add-an-rsvp-template) for more information.",
296296
optional: true,
297297
},
298298
},
@@ -314,6 +314,7 @@ export default {
314314
} catch (error) {
315315
if (error.status === 404 && JSON.parse(error.message)?.message?.includes("No entry found")) {
316316
console.log("No entry found");
317+
return null;
317318
} else {
318319
throw error;
319320
}

components/add_to_calendar_pro/sources/event-group-deleted-instant/event-group-deleted-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...common,
66
key: "add_to_calendar_pro-event-group-deleted-instant",
77
name: "Event Group Deleted (Instant)",
8-
description: "Emit new event when a new event is deleted in the system",
8+
description: "Emit new event when a new event group is deleted in the system",
99
version: "0.0.1",
1010
type: "source",
1111
dedupe: "unique",

components/add_to_calendar_pro/sources/event-group-updated-instant/event-group-updated-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...common,
66
key: "add_to_calendar_pro-event-group-updated-instant",
77
name: "Event Group Updated (Instant)",
8-
description: "Emit new event when a new event is updated in the system",
8+
description: "Emit new event when a new event group is updated in the system",
99
version: "0.0.1",
1010
type: "source",
1111
dedupe: "unique",

components/add_to_calendar_pro/sources/rsvp-answer-updated-instant/test-event.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export default {
33
"status": "confirmed",
44
"date_created": "2025-06-26T19:04:30.237Z",
55
"date_updated": "2025-06-26T19:30:09.868Z",
6-
"email": "[email protected]",
6+
"email": "",
77
"prokey": "c6510c06-a277-4e1c-9baf-deec9c5507c7",
88
"amount": 2,
99
"payload": {}

0 commit comments

Comments
 (0)