Skip to content

Commit 08192f6

Browse files
committed
Applying MCP annotations to TS components - batch 1/2
1 parent 3f1fc3e commit 08192f6

File tree

103 files changed

+618
-103
lines changed

Some content is hidden

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

103 files changed

+618
-103
lines changed

components/amplenote/actions/create-note/create-note.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import { ConfigurationError } from "@pipedream/platform";
44

55
export default defineAction({
66
name: "Create Note",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
key: "amplenote-create-note",
914
description: "Creates a new note. [See docs here](https://www.amplenote.com/api_documentation#post-/notes)",
1015
type: "action",

components/amplenote/actions/create-task/create-task.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import { ConfigurationError } from "@pipedream/platform";
44

55
export default defineAction({
66
name: "Create Task",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
key: "amplenote-create-task",
914
description: "Creates a new task. [See docs here](https://www.amplenote.com/api_documentation#post-/notes/-uuid-/actions)",
1015
type: "action",

components/apitemplate_io/actions/account-information/account-information.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default defineAction({
55
name: "Account Information",
66
description: "Retrieves information about your account. [See the docs](https://apitemplate.io/apiv2/) for more information",
77
key: "apitemplate_io-account-information",
8-
version: "0.0.1",
8+
version: "0.0.2",
9+
annotations: {
10+
destructiveHint: false,
11+
openWorldHint: true,
12+
readOnlyHint: true,
13+
},
914
type: "action",
1015
props: {
1116
app,

components/apitemplate_io/actions/create-image/create-image.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default defineAction({
66
name: "Create an Image",
77
description: "Create a JPEG file(along with PNG) with JSON data and your template. [See the docs](https://apitemplate.io/apiv2/#tag/API-Integration/operation/create-image) for more information",
88
key: "apitemplate_io-create-image",
9-
version: "0.0.1",
9+
version: "0.0.2",
10+
annotations: {
11+
destructiveHint: false,
12+
openWorldHint: true,
13+
readOnlyHint: false,
14+
},
1015
type: "action",
1116
props: {
1217
app,

components/apitemplate_io/actions/create-pdf/create-pdf.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default defineAction({
55
name: "Create a PDF",
66
description: "Create a PDF file with JSON data and your template. [See the docs](https://apitemplate.io/apiv2/#tag/API-Integration/operation/create-pdf) for more information",
77
key: "apitemplate_io-create-pdf",
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
app,

components/apitemplate_io/actions/delete-object/delete-object.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default defineAction({
55
name: "Delete an Object",
66
description: "Delete a PDF or an image from CDN and mark the transaction as deleted. [See the docs](https://apitemplate.io/apiv2/#tag/API-Integration/operation/delete-object) for more information",
77
key: "apitemplate_io-delete-object",
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
app,

components/apitemplate_io/actions/list-objects/list-objects.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default defineAction({
55
name: "List Generated Objects",
66
description: "Retrieves all the generated PDFs and images. [See the docs](https://apitemplate.io/apiv2/#tag/API-Integration/operation/list-objects) for more information",
77
key: "apitemplate_io-list-objects",
8-
version: "0.0.1",
8+
version: "0.0.2",
9+
annotations: {
10+
destructiveHint: false,
11+
openWorldHint: true,
12+
readOnlyHint: true,
13+
},
914
type: "action",
1015
props: {
1116
app,

components/baserow/actions/create-row/create-row.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ export default defineAction({
1111
name: "Create Row",
1212
description: `Create a row [See docs here](${DOCS_LINK})`,
1313
key: "baserow-create-row",
14-
version: "0.0.3",
14+
version: "0.0.4",
15+
annotations: {
16+
destructiveHint: false,
17+
openWorldHint: true,
18+
readOnlyHint: false,
19+
},
1520
type: "action",
1621
props: {
1722
...common.props,

components/baserow/actions/delete-row/delete-row.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ export default defineAction({
1010
description:
1111
`Delete a row [See docs here](${DOCS_LINK})`,
1212
key: "baserow-delete-row",
13-
version: "0.0.3",
13+
version: "0.0.4",
14+
annotations: {
15+
destructiveHint: true,
16+
openWorldHint: true,
17+
readOnlyHint: false,
18+
},
1419
type: "action",
1520
props: {
1621
...common.props,

components/baserow/actions/get-row/get-row.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ export default defineAction({
1212
description:
1313
`Get a single row [See docs here](${DOCS_LINK})`,
1414
key: "baserow-get-row",
15-
version: "0.0.3",
15+
version: "0.0.4",
16+
annotations: {
17+
destructiveHint: false,
18+
openWorldHint: true,
19+
readOnlyHint: true,
20+
},
1621
type: "action",
1722
props: {
1823
...common.props,

0 commit comments

Comments
 (0)