Skip to content

Commit 998de4c

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

File tree

102 files changed

+612
-102
lines changed

Some content is hidden

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

102 files changed

+612
-102
lines changed

components/niftyimages/actions/add-data-store-record/add-data-store-record.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
"Create or update a Data Store Record [See docs here](https://api.niftyimages.com/)",
1212
key: "niftyimages-add-data-store-record",
13-
version: "0.0.1",
13+
version: "0.0.2",
14+
annotations: {
15+
destructiveHint: true,
16+
openWorldHint: true,
17+
readOnlyHint: false,
18+
},
1419
type: "action",
1520
props: {
1621
niftyimages,

components/niftyimages/actions/update-timer-target-date/update-timer-target-date.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ export default defineAction({
77
description:
88
"Create or update a Data Store Record [See docs here](https://api.niftyimages.com/)",
99
key: "niftyimages-update-timer-target-date",
10-
version: "0.0.1",
10+
version: "0.0.2",
11+
annotations: {
12+
destructiveHint: true,
13+
openWorldHint: true,
14+
readOnlyHint: false,
15+
},
1116
type: "action",
1217
props: {
1318
niftyimages,

components/ninox/actions/create-record/create-record.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types";
33

44
export default defineAction({
55
name: "Create Record",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: true,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
key: "ninox-create-record",
813
description: "Creates a record. [See docs here](https://docs.ninox.com/en/api/private-cloud-apis#create-update-multiple-records-with-post)",
914
type: "action",

components/ninox/actions/update-record/update-record.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types";
33

44
export default defineAction({
55
name: "Update Record",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: true,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
key: "ninox-update-record",
813
description: "Updates a record. [See docs here](https://docs.ninox.com/en/api/private-cloud-apis#create-update-multiple-records-with-post)",
914
type: "action",

components/onfleet/actions/create-pickup-dropoff-task/create-pickup-dropoff-task.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ export default {
88
name: "Create Linked Pickup & Dropoff Tasks",
99
description: "Create a pickup task and dropoff task linked with each other. [See the docs here](https://docs.onfleet.com/reference/create-task)",
1010
type: "action",
11-
version: "0.0.1",
11+
version: "0.0.2",
12+
annotations: {
13+
destructiveHint: false,
14+
openWorldHint: true,
15+
readOnlyHint: false,
16+
},
1217
props: {
1318
onfleet,
1419
merchant: {

components/onfleet/actions/create-task-template/create-task-template.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ export default {
88
name: "Create Task (Template Use)",
99
description: "Creates a single task. Used for simple templates only. [See the docs here](https://docs.onfleet.com/reference/create-task)",
1010
type: "action",
11-
version: "0.0.1",
11+
version: "0.0.2",
12+
annotations: {
13+
destructiveHint: false,
14+
openWorldHint: true,
15+
readOnlyHint: false,
16+
},
1217
props: {
1318
onfleet,
1419
merchant: {

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ export default {
88
name: "Create New Task",
99
description: "Create a new task. [See the docs here](https://docs.onfleet.com/reference/create-task)",
1010
type: "action",
11-
version: "0.0.1",
11+
version: "0.0.2",
12+
annotations: {
13+
destructiveHint: false,
14+
openWorldHint: true,
15+
readOnlyHint: false,
16+
},
1217
props: {
1318
onfleet,
1419
merchant: {

components/persistiq/actions/add-do-not-contact-domain/add-do-not-contact-domain.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import app from "../../app/persistiq.app";
33

44
export default defineAction({
55
key: "persistiq-add-do-not-contact-domain",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
name: "Add Do Not Contact Domain",
813
description: "Creates a new DNC domain. [See docs here](https://apidocs.persistiq.com/#create-dnc-domain)",
914
type: "action",

components/persistiq/actions/add-prospect-to-campaign/add-prospect-to-campaign.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import app from "../../app/persistiq.app";
33

44
export default defineAction({
55
key: "persistiq-add-prospect-to-campaign",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
name: "Add Prospect To Campaign",
813
description: "Adds prospect to a campaign. [See docs here](https://apidocs.persistiq.com/#add-lead-to-a-campaign)",
914
type: "action",

components/persistiq/actions/create-or-update-prospect/create-or-update-prospect.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import app from "../../app/persistiq.app";
33

44
export default defineAction({
55
key: "persistiq-create-or-update-prospect",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: true,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
name: "Create Or Update Prospect",
813
description: "Creates a prospect. Updates if there is already a prospect with the given `email`. [See docs here](https://apidocs.persistiq.com/#create-leads)",
914
type: "action",

0 commit comments

Comments
 (0)