Skip to content

Commit cd3bf4d

Browse files
committed
feat: MCP annotations batch 9/65 (100 components)
1 parent 61d0151 commit cd3bf4d

File tree

100 files changed

+600
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+600
-100
lines changed

components/campaign_monitor/actions/send-smart-transactional-email/send-smart-transactional-email.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "campaign_monitor-send-smart-transactional-email",
55
name: "Send Smart Transactional Email",
66
description: "Sends an intelligent transactional email to a specified recipient. [See the documentation](https://www.campaignmonitor.com/api/v3-3/transactional/#send-smart-email)",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
type: "action",
914
props: {
1015
campaignMonitor,

components/campaign_monitor/actions/unsubscribe/unsubscribe.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "campaign_monitor-unsubscribe",
55
name: "Unsubscribe",
66
description: "Removes a subscriber from a mailing list given their email address. [See the documentation](https://www.campaignmonitor.com/api/v3-3/subscribers/#unsubscribing-a-subscriber)",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: true,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
type: "action",
914
props: {
1015
campaignMonitor,

components/campaignhq/actions/create-contact/create-contact.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
name: "Create Contact",
55
description: "Create Contact [See the documentation](https://campaignhq.docs.apiary.io/#reference/0/contacts-collection/create-a-new-contact).",
66
key: "campaignhq-create-contact",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
type: "action",
914
props: {
1015
app,

components/campaignhq/actions/create-list/create-list.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
name: "Create List",
55
description: "Create List [See the documentation](https://campaignhq.docs.apiary.io/#reference/0/lists-collection/create-a-new-list).",
66
key: "campaignhq-create-list",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
type: "action",
914
props: {
1015
app,

components/campaignhq/actions/get-all-contacts/get-all-contacts.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
name: "Get all Contacts",
55
description: "Get all contacts from a list [See the documentation](https://campaignhq.docs.apiary.io/#reference/0/contacts-collection/get-all-contacts).",
66
key: "campaignhq-get-all-contacts",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: true,
12+
},
813
type: "action",
914
props: {
1015
app,

components/campaignhq/actions/get-all-lists/get-all-lists.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
name: "Get all Lists",
55
description: "Get all lists [See the documentation](https://campaignhq.docs.apiary.io/#reference/0/lists-collection/get-all-lists).",
66
key: "campaignhq-get-all-lists",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: true,
12+
},
813
type: "action",
914
props: {
1015
app,

components/campayn/actions/create-contact/create-contact.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "campayn-create-contact",
55
name: "Create Contact",
66
description: "Creates a new contact. [See the docs](https://github.com/nebojsac/Campayn-API/blob/master/endpoints/contacts.md#add-a-contact)",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
type: "action",
914
props: {
1015
campayn,

components/campayn/actions/get-contact/get-contact.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "campayn-get-contact",
55
name: "Get Contact",
66
description: "Retrieves an existing contact. [See the docs](https://github.com/nebojsac/Campayn-API/blob/master/endpoints/contacts.md#get-a-contact)",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: true,
12+
},
813
type: "action",
914
props: {
1015
campayn,

components/campayn/actions/unsubscribe-contact/unsubscribe-contact.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "campayn-unsubscribe-contact",
66
name: "Unsubscribe Contact",
77
description: "Unsubscribes a contact from a list. [See the docs](https://github.com/nebojsac/Campayn-API/blob/master/endpoints/lists.md#unsubscribe-contact)",
8-
version: "0.0.1",
8+
version: "0.0.2",
9+
annotations: {
10+
destructiveHint: true,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
type: "action",
1015
props: {
1116
campayn,

components/canva/actions/create-design-import-job/create-design-import-job.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "canva-create-design-import-job",
66
name: "Create Design Import Job",
77
description: "Starts a new job to import an external file as a new design in Canva. [See the documentation](https://www.canva.dev/docs/connect/api-reference/design-imports/create-design-import-job/)",
8-
version: "0.1.1",
8+
version: "0.1.2",
9+
annotations: {
10+
destructiveHint: false,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
type: "action",
1015
props: {
1116
canva,

0 commit comments

Comments
 (0)