Skip to content

Commit 5847838

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

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/aweber/actions/add-subscriber/add-subscriber.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
name: "Add Subscriber",
77
description: "Add subscribers to the specified account and list. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/post).",
88
type: "action",
9-
version: "0.0.3",
9+
version: "0.0.4",
10+
annotations: {
11+
destructiveHint: false,
12+
openWorldHint: true,
13+
readOnlyHint: false,
14+
},
1015
props: {
1116
aweberApp,
1217
accountId: {

components/aweber/actions/create-or-update-subscriber/create-or-update-subscriber.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
name: "Create Or Update Subscriber",
66
description: "Create subscriber if the subscriber email is not existing or update the information for the specified subscriber by email. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/patch).",
77
type: "action",
8-
version: "0.0.1",
8+
version: "0.0.2",
9+
annotations: {
10+
destructiveHint: true,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
props: {
1015
aweberApp,
1116
accountId: {

components/aweber/actions/get-accounts/get-accounts.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ export default {
77
name: "Get Accounts",
88
description: "Get a paginated collection of accounts. [See the docs here](https://api.aweber.com/#tag/Accounts/paths/~1accounts/get).",
99
type: "action",
10-
version: "0.0.3",
10+
version: "0.0.4",
11+
annotations: {
12+
destructiveHint: false,
13+
openWorldHint: true,
14+
readOnlyHint: true,
15+
},
1116
props: {
1217
aweberApp,
1318
start: {

components/aweber/actions/get-lists/get-lists.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ export default {
77
name: "Get Lists",
88
description: "Get a paginated collection of subscriber lists. [See the docs here](https://api.aweber.com/#tag/Lists/paths/~1accounts~1{accountId}~1lists/get).",
99
type: "action",
10-
version: "0.0.3",
10+
version: "0.0.4",
11+
annotations: {
12+
destructiveHint: false,
13+
openWorldHint: true,
14+
readOnlyHint: true,
15+
},
1116
props: {
1217
aweberApp,
1318
accountId: {

components/aweber/actions/get-subscribers/get-subscribers.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ export default {
77
name: "Get Subscribers",
88
description: "Get a paginated collection of subscribers under the specified account and list. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/get).",
99
type: "action",
10-
version: "0.0.3",
10+
version: "0.0.4",
11+
annotations: {
12+
destructiveHint: false,
13+
openWorldHint: true,
14+
readOnlyHint: true,
15+
},
1116
props: {
1217
aweberApp,
1318
accountId: {

components/aweber/actions/update-subscriber/update-subscriber.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
name: "Update Subscriber",
77
description: "Update the information for the specified subscriber by email. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/patch).",
88
type: "action",
9-
version: "0.0.2",
9+
version: "0.0.3",
10+
annotations: {
11+
destructiveHint: true,
12+
openWorldHint: true,
13+
readOnlyHint: false,
14+
},
1015
props: {
1116
aweberApp,
1217
accountId: {

components/awork/actions/create-client/create-client.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs";
22

33
export default {
44
name: "Create Client",
5-
version: "0.0.2",
5+
version: "0.0.3",
6+
annotations: {
7+
destructiveHint: false,
8+
openWorldHint: true,
9+
readOnlyHint: false,
10+
},
611
key: "awork-create-client",
712
description: "Creates a client. [See docs here](https://openapi.awork.io/#/Companies/post_companies)",
813
type: "action",

components/awork/actions/create-project/create-project.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs";
22

33
export default {
44
name: "Create Project",
5-
version: "0.0.2",
5+
version: "0.0.3",
6+
annotations: {
7+
destructiveHint: false,
8+
openWorldHint: true,
9+
readOnlyHint: false,
10+
},
611
key: "awork-create-project",
712
description: "Creates a project. [See docs here](https://openapi.awork.io/#/Projects/post_projects)",
813
type: "action",

components/awork/actions/find-users-by-email/find-users-by-email.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs";
22

33
export default {
44
name: "Find Users By Email",
5-
version: "0.0.2",
5+
version: "0.0.3",
6+
annotations: {
7+
destructiveHint: false,
8+
openWorldHint: true,
9+
readOnlyHint: true,
10+
},
611
key: "awork-find-users-by-email",
712
description: "Finds a user by email. [See docs here](https://openapi.awork.io/#/Users/get_users)",
813
type: "action",

components/aws/actions/cloudwatch-logs-put-log-event/cloudwatch-logs-put-log-event.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ export default {
99
Uploads a log event to the specified log stream.
1010
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-cloudwatch-logs/classes/putlogeventscommand.html)
1111
`),
12-
version: "0.1.2",
12+
version: "0.1.3",
13+
annotations: {
14+
destructiveHint: false,
15+
openWorldHint: true,
16+
readOnlyHint: false,
17+
},
1318
type: "action",
1419
props: {
1520
aws: common.props.aws,

0 commit comments

Comments
 (0)