Skip to content

Commit 2a252e5

Browse files
committed
feat: MCP annotations batch 43/65 (100 components)
1 parent 61d0151 commit 2a252e5

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/planview_leankit/actions/move-cards-to-another-board/move-cards-to-another-board.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs";
33
export default {
44
key: "planview_leankit-move-cards-to-another-board",
55
name: "Move Cards To Another Board",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
description: "Move cards to other boards. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/move)",
813
type: "action",
914
props: {

components/planview_leankit/actions/remove-connection-from-card/remove-connection-from-card.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs";
44
export default {
55
key: "planview_leankit-remove-connection-from-card",
66
name: "Remove Parent/Child Connection",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: true,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
description: "Remove parent or child connection from a card. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/connections/delete-many)",
914
type: "action",
1015
props: {

components/planview_leankit/actions/remove-tags-from-card/remove-tags-from-card.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs";
44
export default {
55
key: "planview_leankit-remove-tags-from-card",
66
name: "Remove Tags From Card",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: true,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
description: "Remove tags from a card or task. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)",
914
type: "action",
1015
props: {

components/planview_leankit/actions/start-task/start-task.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs";
33
export default {
44
key: "planview_leankit-start-task",
55
name: "Start Task",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
description: "Move a task to `inProcess` lane. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/move)",
813
type: "action",
914
props: {

components/planview_leankit/actions/unassign-user/unassign-user.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs";
44
export default {
55
key: "planview_leankit-unassign-user",
66
name: "Unassign User",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: true,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
description: "Unassign an user from a card or a task. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)",
914
type: "action",
1015
props: {

components/planview_leankit/actions/unblock-card/unblock-card.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs";
33
export default {
44
key: "planview_leankit-unblock-card",
55
name: "Unblock Card (Or Task)",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: true,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
description: "Unlock a card or a task. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)",
813
type: "action",
914
props: {

components/planview_leankit/actions/update-card/update-card.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ import { prepareData } from "../common/utils.mjs";
55
export default {
66
key: "planview_leankit-update-card",
77
name: "Update Card (Or Task)",
8-
version: "0.0.1",
8+
version: "0.0.2",
9+
annotations: {
10+
destructiveHint: true,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
description: "Update a card or task's fields. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)",
1015
type: "action",
1116
props: {

components/planview_leankit/actions/update-custom-field-value/update-custom-field-value.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs";
44
export default {
55
key: "planview_leankit-update-custom-field-value",
66
name: "Update Custom Field Value",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: true,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
description: "Update custom field value on a card. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)",
914
type: "action",
1015
props: {

components/planyo_online_booking/actions/create-reservation/create-reservation.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
name: "Create Reservation",
66
key: "planyo_online_booking-create-reservation",
77
description: "Enters a new reservation into the system. [See Docs](https://www.planyo.com/api.php?topic=make_reservation)",
8-
version: "0.0.1",
8+
version: "0.0.2",
9+
annotations: {
10+
destructiveHint: false,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
type: "action",
1015
props: {
1116
planyo,

components/planyo_online_booking/actions/create-user/create-user.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
name: "Create User",
55
key: "planyo_online_booking-create-user",
66
description: "Inserts a new user associated with your Planyo site. [See Docs](https://www.planyo.com/api.php?topic=add_user)",
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
planyo,

0 commit comments

Comments
 (0)