diff --git a/components/planview_leankit/actions/move-cards-to-another-board/move-cards-to-another-board.mjs b/components/planview_leankit/actions/move-cards-to-another-board/move-cards-to-another-board.mjs index 431fe0370fb31..bf6a476a088a4 100644 --- a/components/planview_leankit/actions/move-cards-to-another-board/move-cards-to-another-board.mjs +++ b/components/planview_leankit/actions/move-cards-to-another-board/move-cards-to-another-board.mjs @@ -3,7 +3,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs"; export default { key: "planview_leankit-move-cards-to-another-board", name: "Move Cards To Another Board", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Move cards to other boards. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/move)", type: "action", props: { diff --git a/components/planview_leankit/actions/remove-connection-from-card/remove-connection-from-card.mjs b/components/planview_leankit/actions/remove-connection-from-card/remove-connection-from-card.mjs index d825d746c1789..6a0f2bd3972e6 100644 --- a/components/planview_leankit/actions/remove-connection-from-card/remove-connection-from-card.mjs +++ b/components/planview_leankit/actions/remove-connection-from-card/remove-connection-from-card.mjs @@ -4,7 +4,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs"; export default { key: "planview_leankit-remove-connection-from-card", name: "Remove Parent/Child Connection", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, 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)", type: "action", props: { diff --git a/components/planview_leankit/actions/remove-tags-from-card/remove-tags-from-card.mjs b/components/planview_leankit/actions/remove-tags-from-card/remove-tags-from-card.mjs index ba58fa2cf5b75..8021c74c43ccf 100644 --- a/components/planview_leankit/actions/remove-tags-from-card/remove-tags-from-card.mjs +++ b/components/planview_leankit/actions/remove-tags-from-card/remove-tags-from-card.mjs @@ -4,7 +4,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs"; export default { key: "planview_leankit-remove-tags-from-card", name: "Remove Tags From Card", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Remove tags from a card or task. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)", type: "action", props: { diff --git a/components/planview_leankit/actions/start-task/start-task.mjs b/components/planview_leankit/actions/start-task/start-task.mjs index 28cc1bc87ee66..422aaa5703fbb 100644 --- a/components/planview_leankit/actions/start-task/start-task.mjs +++ b/components/planview_leankit/actions/start-task/start-task.mjs @@ -3,7 +3,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs"; export default { key: "planview_leankit-start-task", name: "Start Task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Move a task to `inProcess` lane. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/move)", type: "action", props: { diff --git a/components/planview_leankit/actions/unassign-user/unassign-user.mjs b/components/planview_leankit/actions/unassign-user/unassign-user.mjs index 18ffbfcc1a5bd..2f1d3e99844a4 100644 --- a/components/planview_leankit/actions/unassign-user/unassign-user.mjs +++ b/components/planview_leankit/actions/unassign-user/unassign-user.mjs @@ -4,7 +4,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs"; export default { key: "planview_leankit-unassign-user", name: "Unassign User", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, 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)", type: "action", props: { diff --git a/components/planview_leankit/actions/unblock-card/unblock-card.mjs b/components/planview_leankit/actions/unblock-card/unblock-card.mjs index 7b037b3d07638..4fcea32e8c511 100644 --- a/components/planview_leankit/actions/unblock-card/unblock-card.mjs +++ b/components/planview_leankit/actions/unblock-card/unblock-card.mjs @@ -3,7 +3,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs"; export default { key: "planview_leankit-unblock-card", name: "Unblock Card (Or Task)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Unlock a card or a task. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)", type: "action", props: { diff --git a/components/planview_leankit/actions/update-card/update-card.mjs b/components/planview_leankit/actions/update-card/update-card.mjs index 5df54d125f81e..83b126442b618 100644 --- a/components/planview_leankit/actions/update-card/update-card.mjs +++ b/components/planview_leankit/actions/update-card/update-card.mjs @@ -5,7 +5,12 @@ import { prepareData } from "../common/utils.mjs"; export default { key: "planview_leankit-update-card", name: "Update Card (Or Task)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update a card or task's fields. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)", type: "action", props: { diff --git a/components/planview_leankit/actions/update-custom-field-value/update-custom-field-value.mjs b/components/planview_leankit/actions/update-custom-field-value/update-custom-field-value.mjs index f82116f4981ea..66b477d47da31 100644 --- a/components/planview_leankit/actions/update-custom-field-value/update-custom-field-value.mjs +++ b/components/planview_leankit/actions/update-custom-field-value/update-custom-field-value.mjs @@ -4,7 +4,12 @@ import planviewLeankit from "../../planview_leankit.app.mjs"; export default { key: "planview_leankit-update-custom-field-value", name: "Update Custom Field Value", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update custom field value on a card. [See the docs here](https://success.planview.com/Planview_AgilePlace/AgilePlace_API/01_v2/card/update)", type: "action", props: { diff --git a/components/planyo_online_booking/actions/create-reservation/create-reservation.mjs b/components/planyo_online_booking/actions/create-reservation/create-reservation.mjs index 6e4f3999bf24a..9212d00ca8a8c 100644 --- a/components/planyo_online_booking/actions/create-reservation/create-reservation.mjs +++ b/components/planyo_online_booking/actions/create-reservation/create-reservation.mjs @@ -5,7 +5,12 @@ export default { name: "Create Reservation", key: "planyo_online_booking-create-reservation", description: "Enters a new reservation into the system. [See Docs](https://www.planyo.com/api.php?topic=make_reservation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { planyo, diff --git a/components/planyo_online_booking/actions/create-user/create-user.mjs b/components/planyo_online_booking/actions/create-user/create-user.mjs index a75f2475ed4aa..dc515a34564f2 100644 --- a/components/planyo_online_booking/actions/create-user/create-user.mjs +++ b/components/planyo_online_booking/actions/create-user/create-user.mjs @@ -4,7 +4,12 @@ export default { name: "Create User", key: "planyo_online_booking-create-user", description: "Inserts a new user associated with your Planyo site. [See Docs](https://www.planyo.com/api.php?topic=add_user)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { planyo, diff --git a/components/planyo_online_booking/actions/create-vacation/create-vacation.mjs b/components/planyo_online_booking/actions/create-vacation/create-vacation.mjs index 5c5292c7a4c10..c76acbc6e9188 100644 --- a/components/planyo_online_booking/actions/create-vacation/create-vacation.mjs +++ b/components/planyo_online_booking/actions/create-vacation/create-vacation.mjs @@ -4,7 +4,12 @@ export default { name: "Create Vacation", key: "planyo_online_booking-create-vacation", description: "Adds a new one-time vacation for given resource or entire Planyo site. [See Docs](https://www.planyo.com/api.php?topic=add_vacation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { planyo, diff --git a/components/platerecognizer/actions/run-recognition/run-recognition.mjs b/components/platerecognizer/actions/run-recognition/run-recognition.mjs index ea5d6b87e3418..ca477ed48fe33 100644 --- a/components/platerecognizer/actions/run-recognition/run-recognition.mjs +++ b/components/platerecognizer/actions/run-recognition/run-recognition.mjs @@ -5,7 +5,12 @@ export default { key: "platerecognizer-run-recognition", name: "Run Recognition", description: "Triggers a recognition process using the Plate Recognizer SDK.", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { platerecognizer, diff --git a/components/playwright/actions/get-page-html/get-page-html.mjs b/components/playwright/actions/get-page-html/get-page-html.mjs index bf543337c70bd..f4564486db317 100644 --- a/components/playwright/actions/get-page-html/get-page-html.mjs +++ b/components/playwright/actions/get-page-html/get-page-html.mjs @@ -4,7 +4,12 @@ export default { key: "playwright-get-page-html", name: "Get Page HTML", description: "Returns the page's html. [See the documentation](https://playwright.dev/docs/api/class-page#page-content)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { playwright, diff --git a/components/playwright/actions/get-page-title/get-page-title.mjs b/components/playwright/actions/get-page-title/get-page-title.mjs index e90fef84e978f..c4ae75b585724 100644 --- a/components/playwright/actions/get-page-title/get-page-title.mjs +++ b/components/playwright/actions/get-page-title/get-page-title.mjs @@ -4,7 +4,12 @@ export default { key: "playwright-get-page-title", name: "Get Page Title", description: "Returns the page's title. [See the documentation](https://playwright.dev/docs/api/class-page#page-title)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { playwright, diff --git a/components/playwright/actions/page-pdf/page-pdf.mjs b/components/playwright/actions/page-pdf/page-pdf.mjs index 7c342b643d417..fc7af4d1298d6 100644 --- a/components/playwright/actions/page-pdf/page-pdf.mjs +++ b/components/playwright/actions/page-pdf/page-pdf.mjs @@ -4,7 +4,12 @@ export default { key: "playwright-page-pdf", name: "Page PDF", description: "Generates a pdf of the page and store it on /tmp directory. [See the documentation](https://playwright.dev/docs/api/class-page#page-pdf)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { playwright, diff --git a/components/playwright/actions/take-screenshot/take-screenshot.mjs b/components/playwright/actions/take-screenshot/take-screenshot.mjs index f9bdcbda8eacb..0d4e3297f34f0 100644 --- a/components/playwright/actions/take-screenshot/take-screenshot.mjs +++ b/components/playwright/actions/take-screenshot/take-screenshot.mjs @@ -4,7 +4,12 @@ export default { key: "playwright-take-screenshot", name: "Take Screenshot", description: "Store a new screenshot file on /tmp directory. [See the documentation](https://playwright.dev/docs/screenshots)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { playwright, diff --git a/components/plecto/actions/create-registration/create-registration.mjs b/components/plecto/actions/create-registration/create-registration.mjs index 412751d02ecd9..a99f73ff2c384 100644 --- a/components/plecto/actions/create-registration/create-registration.mjs +++ b/components/plecto/actions/create-registration/create-registration.mjs @@ -4,7 +4,12 @@ export default { key: "plecto-create-registration", name: "Create Registration", description: "Creates a new registration in Plecto. [See the documentation](https://docs.plecto.com/kb/guide/en/overview-of-plecto-api-endpoints-Qvm3c3ucy1/Steps/3879885,3896454)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/plentyone/actions/add-order-note/add-order-note.mjs b/components/plentyone/actions/add-order-note/add-order-note.mjs index 663f434b8edd7..960b0090ae237 100644 --- a/components/plentyone/actions/add-order-note/add-order-note.mjs +++ b/components/plentyone/actions/add-order-note/add-order-note.mjs @@ -4,7 +4,12 @@ export default { key: "plentyone-add-order-note", name: "Add Order Note", description: "Adds a note to an order in PlentyONE. [See the documentation](https://developers.plentymarkets.com/en-gb/plentymarkets-rest-api/index.html#/Comment/post_rest_comments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { plentyone, diff --git a/components/plentyone/actions/create-order/create-order.mjs b/components/plentyone/actions/create-order/create-order.mjs index 2d2a62eeff836..66f7f8ae63bd7 100644 --- a/components/plentyone/actions/create-order/create-order.mjs +++ b/components/plentyone/actions/create-order/create-order.mjs @@ -10,7 +10,12 @@ export default { key: "plentyone-create-order", name: "Create Order", description: "Creates a new order in PlentyONE. [See the documentation](https://developers.plentymarkets.com/en-gb/plentymarkets-rest-api/index.html#/Order/post_rest_orders)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { plentyone, diff --git a/components/plentyone/actions/get-order-documents/get-order-documents.mjs b/components/plentyone/actions/get-order-documents/get-order-documents.mjs index 3d2d63f46f679..d1775e84eeee9 100644 --- a/components/plentyone/actions/get-order-documents/get-order-documents.mjs +++ b/components/plentyone/actions/get-order-documents/get-order-documents.mjs @@ -4,7 +4,12 @@ export default { key: "plentyone-get-order-documents", name: "Get Order Documents", description: "Retrieves documents for a specific order from PlentyONE. [See the documentation](https://developers.plentymarkets.com/en-gb/plentymarkets-rest-api/index.html#/Document/get_rest_orders_documents_find)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { plentyone, diff --git a/components/plentyone/actions/get-order-items/get-order-items.mjs b/components/plentyone/actions/get-order-items/get-order-items.mjs index a1d02ab9fc706..486d1a22bfc53 100644 --- a/components/plentyone/actions/get-order-items/get-order-items.mjs +++ b/components/plentyone/actions/get-order-items/get-order-items.mjs @@ -4,7 +4,12 @@ export default { key: "plentyone-get-order-items", name: "Get Order Items", description: "Retrieves items for a specific order from PlentyONE [See the documentation](https://developers.plentymarkets.com/en-gb/plentymarkets-rest-api/index.html#/Order/get_rest_orders__orderId_)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { plentyone, diff --git a/components/plentyone/actions/get-order-properties/get-order-properties.mjs b/components/plentyone/actions/get-order-properties/get-order-properties.mjs index f4030a4665902..c486706ce00b9 100644 --- a/components/plentyone/actions/get-order-properties/get-order-properties.mjs +++ b/components/plentyone/actions/get-order-properties/get-order-properties.mjs @@ -4,7 +4,12 @@ export default { key: "plentyone-get-order-properties", name: "Get Order Properties", description: "Retrieves properties for a specific order from PlentyONE [See the documentation](https://developers.plentymarkets.com/en-gb/plentymarkets-rest-api/index.html#/Order/get_rest_orders__orderId_)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { plentyone, diff --git a/components/plentyone/actions/get-order/get-order.mjs b/components/plentyone/actions/get-order/get-order.mjs index 38c5b98b6577a..e75d07ec7d4f0 100644 --- a/components/plentyone/actions/get-order/get-order.mjs +++ b/components/plentyone/actions/get-order/get-order.mjs @@ -4,7 +4,12 @@ export default { key: "plentyone-get-order", name: "Get Order", description: "Retrieves a specific order by ID from PlentyONE. [See the documentation](https://developers.plentymarkets.com/en-gb/plentymarkets-rest-api/index.html#/Order/get_rest_orders__orderId_)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { plentyone, diff --git a/components/plentyone/actions/get-orders/get-orders.mjs b/components/plentyone/actions/get-orders/get-orders.mjs index 20c7c8bfe3a44..f3d84366c933b 100644 --- a/components/plentyone/actions/get-orders/get-orders.mjs +++ b/components/plentyone/actions/get-orders/get-orders.mjs @@ -10,7 +10,12 @@ export default { key: "plentyone-get-orders", name: "Get Orders", description: "Retrieves a list of orders from PlentyONE. [See the documentation](https://developers.plentymarkets.com/en-gb/plentymarkets-rest-api/index.html#/Order/get_rest_orders)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { plentyone, diff --git a/components/plivo/actions/make-call/make-call.mjs b/components/plivo/actions/make-call/make-call.mjs index 6401cabe703ec..49d976544aea3 100644 --- a/components/plivo/actions/make-call/make-call.mjs +++ b/components/plivo/actions/make-call/make-call.mjs @@ -6,7 +6,12 @@ export default { name: "Make A Call", description: "Makes a call. [See the docs](https://www.plivo.com/docs/voice/api/call#make-a-call).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, from: { diff --git a/components/plivo/actions/play-audio/play-audio.mjs b/components/plivo/actions/play-audio/play-audio.mjs index 16c4c1125881d..94325111f2d97 100644 --- a/components/plivo/actions/play-audio/play-audio.mjs +++ b/components/plivo/actions/play-audio/play-audio.mjs @@ -5,7 +5,12 @@ export default { name: "Plays An Audio", description: "Plays audio on a call. [See the docs](https://www.plivo.com/docs/voice/api/call/play-audio-on-calls#play-audio-on-a-call).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, callUuid: { diff --git a/components/plivo/actions/send-mms/send-mms.mjs b/components/plivo/actions/send-mms/send-mms.mjs index fa5dcfa22e546..831cda55dfd8d 100644 --- a/components/plivo/actions/send-mms/send-mms.mjs +++ b/components/plivo/actions/send-mms/send-mms.mjs @@ -6,7 +6,12 @@ export default { name: "Send MMS", description: "Sends an MMS message to a phone number. [See the docs](https://www.plivo.com/docs/sms/api/message#send-a-message).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, src: { diff --git a/components/plivo/actions/send-sms/send-sms.mjs b/components/plivo/actions/send-sms/send-sms.mjs index f305b960d1849..cfe18ff046d69 100644 --- a/components/plivo/actions/send-sms/send-sms.mjs +++ b/components/plivo/actions/send-sms/send-sms.mjs @@ -5,7 +5,12 @@ export default { name: "Send SMS", description: "Sends an SMS message to a phone number. [See the docs](https://www.plivo.com/docs/sms/api/message#send-a-message).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, src: { diff --git a/components/plivo/actions/speak-text/speak-text.mjs b/components/plivo/actions/speak-text/speak-text.mjs index 84dcd1cb9ce8b..17fc80ef3ef87 100644 --- a/components/plivo/actions/speak-text/speak-text.mjs +++ b/components/plivo/actions/speak-text/speak-text.mjs @@ -5,7 +5,12 @@ export default { name: "Speak Text", description: "Speaks a text to the caller. [See the docs](https://www.plivo.com/docs/voice/api/call/speak-text-on-calls#speak-text-on-a-call).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, callUuid: { diff --git a/components/pocket/actions/save-to-later/save-to-later.mjs b/components/pocket/actions/save-to-later/save-to-later.mjs index 7919224a21e46..26e05cdb7bbbb 100644 --- a/components/pocket/actions/save-to-later/save-to-later.mjs +++ b/components/pocket/actions/save-to-later/save-to-later.mjs @@ -2,7 +2,12 @@ import pocket from "../../pocket.app.mjs"; export default { name: "Save To Later", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "pocket-save-to-later", description: "Save articles, videos, images and URLs to your Pocket list. [See docs here](https://getpocket.com/developer/docs/v3/add)", type: "action", diff --git a/components/podio/actions/attach-file/attach-file.mjs b/components/podio/actions/attach-file/attach-file.mjs index ebfd2b3777f4d..4b7dbe528624a 100644 --- a/components/podio/actions/attach-file/attach-file.mjs +++ b/components/podio/actions/attach-file/attach-file.mjs @@ -4,7 +4,12 @@ export default { key: "podio-attach-file", name: "Attach File", description: "Attaches an uploaded file to the given object. [See the documentation](https://developers.podio.com/doc/files/attach-file-22518)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/podio/actions/create-item/create-item.mjs b/components/podio/actions/create-item/create-item.mjs index dcebb6861734d..8942f053f4210 100644 --- a/components/podio/actions/create-item/create-item.mjs +++ b/components/podio/actions/create-item/create-item.mjs @@ -6,7 +6,12 @@ delete props.itemId; export default { type: "action", key: "podio-create-item", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create an Item", description: "Adds a new item to the given app. [See the documentation](https://developers.podio.com/doc/items/add-new-item-22362)", ...common, diff --git a/components/podio/actions/create-status/create-status.mjs b/components/podio/actions/create-status/create-status.mjs index 9361308b5a7b0..4a9c89942251a 100644 --- a/components/podio/actions/create-status/create-status.mjs +++ b/components/podio/actions/create-status/create-status.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "podio-create-status", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Status", description: "Creates a status to the given workspace. [See the documentation](https://developers.podio.com/doc/status/add-new-status-message-22336)", props: { diff --git a/components/podio/actions/create-task/create-task.mjs b/components/podio/actions/create-task/create-task.mjs index 3b3f4c726967a..592b765acbdc3 100644 --- a/components/podio/actions/create-task/create-task.mjs +++ b/components/podio/actions/create-task/create-task.mjs @@ -3,7 +3,12 @@ import app from "../../podio.app.mjs"; export default { type: "action", key: "podio-create-task", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Task", description: "Creates a task to the given workspace. [See the documentation](https://developers.podio.com/doc/tasks/create-task-22419)", props: { diff --git a/components/podio/actions/find-item/find-item.mjs b/components/podio/actions/find-item/find-item.mjs index 2e63e10462106..a75fd1649ae25 100644 --- a/components/podio/actions/find-item/find-item.mjs +++ b/components/podio/actions/find-item/find-item.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "podio-find-item", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Find Item", description: "Filters items for the given app. [See the documentation](https://developers.podio.com/doc/items/filter-items-4496747)", props: { diff --git a/components/podio/actions/update-item/update-item.mjs b/components/podio/actions/update-item/update-item.mjs index 8568dce8b897a..f435e4884ff55 100644 --- a/components/podio/actions/update-item/update-item.mjs +++ b/components/podio/actions/update-item/update-item.mjs @@ -3,7 +3,12 @@ import common from "../common/common-item.mjs"; export default { type: "action", key: "podio-update-item", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Update an Item", description: "Updates an item. [See the documentation](https://developers.podio.com/doc/items/update-item-22363)", ...common, diff --git a/components/podio/actions/upload-file/upload-file.mjs b/components/podio/actions/upload-file/upload-file.mjs index c51cd4f46a8e0..01483c3b2e70e 100644 --- a/components/podio/actions/upload-file/upload-file.mjs +++ b/components/podio/actions/upload-file/upload-file.mjs @@ -6,7 +6,12 @@ export default { key: "podio-upload-file", name: "Upload File", description: "Uploads a new file to Podio. [See the documentation](https://developers.podio.com/doc/files/upload-file-1004361)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/podio/actions/upload-from-url/upload-from-url.mjs b/components/podio/actions/upload-from-url/upload-from-url.mjs index 1efbf0a81a6a5..179d3fcfaede9 100644 --- a/components/podio/actions/upload-from-url/upload-from-url.mjs +++ b/components/podio/actions/upload-from-url/upload-from-url.mjs @@ -4,7 +4,12 @@ export default { key: "podio-upload-from-url", name: "Upload From URL", description: "Uploads a file from a URL to Podio. [See the documentation](https://github.com/podio/podio-rb/blob/6c77c92792c3ae79d487a997909122e90e544bf1/lib/podio/models/file_attachment.rb#L62)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pointagram/actions/add-points-to-player/add-points-to-player.mjs b/components/pointagram/actions/add-points-to-player/add-points-to-player.mjs index 004e53c4dcb43..a743a23a40328 100644 --- a/components/pointagram/actions/add-points-to-player/add-points-to-player.mjs +++ b/components/pointagram/actions/add-points-to-player/add-points-to-player.mjs @@ -5,7 +5,12 @@ export default { key: "pointagram-add-points-to-player", name: "Add Points to Player", description: "Add points to a player. [See docs here](https://www.pointagram.com/points-score-series/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, playerId: { diff --git a/components/pointagram/actions/create-player/create-player.mjs b/components/pointagram/actions/create-player/create-player.mjs index 0448220bff749..c3931a13abd99 100644 --- a/components/pointagram/actions/create-player/create-player.mjs +++ b/components/pointagram/actions/create-player/create-player.mjs @@ -5,7 +5,12 @@ export default { key: "pointagram-create-player", name: "Create Player", description: "Create a new player. [See the docs here](https://www.pointagram.com/custom-integration-gamification/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/pointagram/actions/list-players/list-players.mjs b/components/pointagram/actions/list-players/list-players.mjs index 3f97c9ce46cd9..70e8ba06a5ba3 100644 --- a/components/pointagram/actions/list-players/list-players.mjs +++ b/components/pointagram/actions/list-players/list-players.mjs @@ -6,7 +6,12 @@ export default { key: "pointagram-list-players", name: "List Players", description: "List all players. [See the docs here](https://www.pointagram.com/custom-integration-gamification/)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, searchBy: { diff --git a/components/polygon/actions/get-company-financials/get-company-financials.mjs b/components/polygon/actions/get-company-financials/get-company-financials.mjs index 8db7b40ad0e2c..1733536a9e90c 100644 --- a/components/polygon/actions/get-company-financials/get-company-financials.mjs +++ b/components/polygon/actions/get-company-financials/get-company-financials.mjs @@ -8,7 +8,12 @@ export default { key: "polygon-get-company-financials", name: "Get Company Financials", description: "Retrieves financial details for a specific company by stock ticker. [See the documentation](https://polygon.io/docs/stocks/get_vx_reference_financials).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { polygon, diff --git a/components/polygon/actions/get-historical-prices/get-historical-prices.mjs b/components/polygon/actions/get-historical-prices/get-historical-prices.mjs index a65c1d7cc79cf..389164cd93c29 100644 --- a/components/polygon/actions/get-historical-prices/get-historical-prices.mjs +++ b/components/polygon/actions/get-historical-prices/get-historical-prices.mjs @@ -8,7 +8,12 @@ export default { key: "polygon-get-historical-prices", name: "Get Historical Prices", description: "Fetches historical price data for a specified stock ticker within a date range. [See the documentation](https://polygon.io/docs/stocks/get_v2_aggs_ticker__stocksticker__range__multiplier___timespan___from___to)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { polygon, diff --git a/components/polygon/actions/get-stock-price/get-stock-price.mjs b/components/polygon/actions/get-stock-price/get-stock-price.mjs index f4c92f5df8439..b1fc654751297 100644 --- a/components/polygon/actions/get-stock-price/get-stock-price.mjs +++ b/components/polygon/actions/get-stock-price/get-stock-price.mjs @@ -4,7 +4,12 @@ export default { key: "polygon-get-stock-price", name: "Get Stock Price", description: "Get the open, close and afterhours prices of a stock symbol on a certain date. [See the documentation](https://polygon.io/docs/stocks/get_v1_open-close__stocksticker___date)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { polygon, diff --git a/components/polygonscan/actions/get-account-balance/get-account-balance.mjs b/components/polygonscan/actions/get-account-balance/get-account-balance.mjs index bda1896bf1cb6..f580d53557220 100644 --- a/components/polygonscan/actions/get-account-balance/get-account-balance.mjs +++ b/components/polygonscan/actions/get-account-balance/get-account-balance.mjs @@ -4,7 +4,12 @@ export default { key: "polygonscan-get-account-balance", name: "Get Account Balance", description: "Retrieves the balance of a specific address within the Polygon network. [See the documentation](https://docs.polygonscan.com/api-endpoints/accounts#get-matic-balance-for-a-single-address)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { polygonscan, diff --git a/components/polygonscan/actions/query-contract-abi/query-contract-abi.mjs b/components/polygonscan/actions/query-contract-abi/query-contract-abi.mjs index 57221516d58b7..2862bec7b38f2 100644 --- a/components/polygonscan/actions/query-contract-abi/query-contract-abi.mjs +++ b/components/polygonscan/actions/query-contract-abi/query-contract-abi.mjs @@ -4,7 +4,12 @@ export default { key: "polygonscan-query-contract-abi", name: "Query Contract ABI", description: "Obtains the contract ABI of a smart contract on the Polygon network. [See the documentation](https://docs.polygonscan.com/api-endpoints/contracts)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { polygonscan, diff --git a/components/polygonscan/actions/retrieve-transaction-details/retrieve-transaction-details.mjs b/components/polygonscan/actions/retrieve-transaction-details/retrieve-transaction-details.mjs index f140f5acef841..406712a896a1c 100644 --- a/components/polygonscan/actions/retrieve-transaction-details/retrieve-transaction-details.mjs +++ b/components/polygonscan/actions/retrieve-transaction-details/retrieve-transaction-details.mjs @@ -4,7 +4,12 @@ export default { key: "polygonscan-retrieve-transaction-details", name: "Retrieve Transaction Details", description: "Fetches the details of a specific transaction by its transaction hash. [See the documentation](https://docs.polygonscan.com/api-endpoints/stats)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { polygonscan, diff --git a/components/poof/actions/create-deposit-address/create-deposit-address.mjs b/components/poof/actions/create-deposit-address/create-deposit-address.mjs index 8c958f31a2fb7..6c6c61a1348ab 100644 --- a/components/poof/actions/create-deposit-address/create-deposit-address.mjs +++ b/components/poof/actions/create-deposit-address/create-deposit-address.mjs @@ -4,7 +4,12 @@ export default { key: "poof-create-deposit-address", name: "Create Deposit Address", description: "Creates a new deposit address in Poof. [See the documentation](https://docs.poof.io/reference/create_address)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { poof, diff --git a/components/poof/actions/list-transactions/list-transactions.mjs b/components/poof/actions/list-transactions/list-transactions.mjs index 3115a29c0e55a..519fbfd362550 100644 --- a/components/poof/actions/list-transactions/list-transactions.mjs +++ b/components/poof/actions/list-transactions/list-transactions.mjs @@ -4,7 +4,12 @@ export default { key: "poof-list-transactions", name: "List Transactions", description: "Retrieve a list of transactions in Poof. [See the documentation](https://docs.poof.io/reference/fetch-transaction-list)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { poof, diff --git a/components/poof/actions/send-transaction/send-transaction.mjs b/components/poof/actions/send-transaction/send-transaction.mjs index 53ae2a0627a15..eea12653f3551 100644 --- a/components/poof/actions/send-transaction/send-transaction.mjs +++ b/components/poof/actions/send-transaction/send-transaction.mjs @@ -4,7 +4,12 @@ export default { key: "poof-send-transaction", name: "Send Transaction", description: "Sends a transaction in Poof. [See the documentation](https://docs.poof.io/reference/sendtransaction)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { poof, diff --git a/components/postalytics/actions/create-contact/create-contact.mjs b/components/postalytics/actions/create-contact/create-contact.mjs index 143420fc935da..ed064207a9eb6 100644 --- a/components/postalytics/actions/create-contact/create-contact.mjs +++ b/components/postalytics/actions/create-contact/create-contact.mjs @@ -5,7 +5,12 @@ export default { key: "postalytics-create-contact", name: "Create Contact", description: "Creates a new contact in Postalytics. [See the documentation](https://postalytics.docs.apiary.io/#reference/contact-api/contact-list-collection/add-contact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/postalytics/actions/list-contacts/list-contacts.mjs b/components/postalytics/actions/list-contacts/list-contacts.mjs index a49d15df89a83..8c42129a1d74e 100644 --- a/components/postalytics/actions/list-contacts/list-contacts.mjs +++ b/components/postalytics/actions/list-contacts/list-contacts.mjs @@ -4,7 +4,12 @@ export default { key: "postalytics-list-contacts", name: "List Contacts", description: "Displays a list of contacts in Postalytics. [See the documentation](https://postalytics.docs.apiary.io/#reference/contact-api/contact-collection/get-all-contacts-on-a-list)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postalytics, diff --git a/components/postalytics/actions/send-track-postcard-letter/send-track-postcard-letter.mjs b/components/postalytics/actions/send-track-postcard-letter/send-track-postcard-letter.mjs index b5b8403616ef8..8b6aedefa159e 100644 --- a/components/postalytics/actions/send-track-postcard-letter/send-track-postcard-letter.mjs +++ b/components/postalytics/actions/send-track-postcard-letter/send-track-postcard-letter.mjs @@ -5,7 +5,12 @@ export default { key: "postalytics-send-track-postcard-letter", name: "Send and Track Postcard or Letter", description: "Send a postcard or letter with the capability of tracking delivery and response. [See the documentation](https://postalytics.docs.apiary.io/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/postgresql/actions/delete-rows/delete-rows.mjs b/components/postgresql/actions/delete-rows/delete-rows.mjs index 994e05ec9f591..df96593b3650f 100644 --- a/components/postgresql/actions/delete-rows/delete-rows.mjs +++ b/components/postgresql/actions/delete-rows/delete-rows.mjs @@ -4,7 +4,12 @@ export default { name: "Delete Row(s)", key: "postgresql-delete-rows", description: "Deletes a row or rows from a table. [See the documentation](https://node-postgres.com/features/queries)", - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postgresql, diff --git a/components/postgresql/actions/execute-custom-query/execute-custom-query.mjs b/components/postgresql/actions/execute-custom-query/execute-custom-query.mjs index 14603357eb1ea..9a1d6129f5bf6 100644 --- a/components/postgresql/actions/execute-custom-query/execute-custom-query.mjs +++ b/components/postgresql/actions/execute-custom-query/execute-custom-query.mjs @@ -4,7 +4,12 @@ export default { name: "Execute SQL Query", key: "postgresql-execute-custom-query", description: "Execute a custom PostgreSQL query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.", - version: "3.0.4", + version: "3.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postgresql, diff --git a/components/postgresql/actions/find-row-custom-query/find-row-custom-query.mjs b/components/postgresql/actions/find-row-custom-query/find-row-custom-query.mjs index cbde0262543e3..9ea8c4e1abf87 100644 --- a/components/postgresql/actions/find-row-custom-query/find-row-custom-query.mjs +++ b/components/postgresql/actions/find-row-custom-query/find-row-custom-query.mjs @@ -4,7 +4,12 @@ export default { name: "Find Row With Custom Query", key: "postgresql-find-row-custom-query", description: "Finds a row in a table via a custom query. [See the documentation](https://node-postgres.com/features/queries)", - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postgresql, diff --git a/components/postgresql/actions/find-row/find-row.mjs b/components/postgresql/actions/find-row/find-row.mjs index 9a982aea0a3cf..aeefb359363c7 100644 --- a/components/postgresql/actions/find-row/find-row.mjs +++ b/components/postgresql/actions/find-row/find-row.mjs @@ -4,7 +4,12 @@ export default { name: "Find Row", key: "postgresql-find-row", description: "Finds a row in a table via a lookup column. [See the documentation](https://node-postgres.com/features/queries)", - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postgresql, diff --git a/components/postgresql/actions/insert-row/insert-row.mjs b/components/postgresql/actions/insert-row/insert-row.mjs index f09d8fc04a82e..fa204248452e4 100644 --- a/components/postgresql/actions/insert-row/insert-row.mjs +++ b/components/postgresql/actions/insert-row/insert-row.mjs @@ -5,7 +5,12 @@ export default { name: "Insert Row", key: "postgresql-insert-row", description: "Adds a new row. [See the documentation](https://node-postgres.com/features/queries)", - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postgresql, diff --git a/components/postgresql/actions/update-row/update-row.mjs b/components/postgresql/actions/update-row/update-row.mjs index a1b75cedcdeed..5f10c1f22bac8 100644 --- a/components/postgresql/actions/update-row/update-row.mjs +++ b/components/postgresql/actions/update-row/update-row.mjs @@ -5,7 +5,12 @@ export default { name: "Update Row", key: "postgresql-update-row", description: "Updates an existing row. [See the documentation](https://node-postgres.com/features/queries)", - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postgresql, diff --git a/components/postgresql/actions/upsert-row/upsert-row.mjs b/components/postgresql/actions/upsert-row/upsert-row.mjs index b56a747bf435e..9125e39c3ef95 100644 --- a/components/postgresql/actions/upsert-row/upsert-row.mjs +++ b/components/postgresql/actions/upsert-row/upsert-row.mjs @@ -5,7 +5,12 @@ export default { name: "Upsert Row", key: "postgresql-upsert-row", description: "Adds a new row or updates an existing row. [See the documentation](https://node-postgres.com/features/queries)", - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postgresql, diff --git a/components/postgrid/actions/create-contact/create-contact.mjs b/components/postgrid/actions/create-contact/create-contact.mjs index 3518b16bb46f8..dae83f424d75e 100644 --- a/components/postgrid/actions/create-contact/create-contact.mjs +++ b/components/postgrid/actions/create-contact/create-contact.mjs @@ -4,7 +4,12 @@ export default { key: "postgrid-create-contact", name: "Create Contact", description: "Create a new contact in PostGrid. [See the documentation](https://docs.postgrid.com/#3ac81e66-c5be-4bb6-93c1-fd8a6f0a24b3)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postgrid, diff --git a/components/postgrid/actions/create-letter/create-letter.mjs b/components/postgrid/actions/create-letter/create-letter.mjs index 748cab08cdc8b..23cf4b1514b07 100644 --- a/components/postgrid/actions/create-letter/create-letter.mjs +++ b/components/postgrid/actions/create-letter/create-letter.mjs @@ -5,7 +5,12 @@ export default { key: "postgrid-create-letter", name: "Create Letter", description: "Creates a new letter in PostGrid. [See the documentation](https://docs.postgrid.com/#3359155b-f225-4f6a-b08a-eafe7a52b54d)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postgrid, diff --git a/components/postgrid/actions/create-postcard/create-postcard.mjs b/components/postgrid/actions/create-postcard/create-postcard.mjs index c44d8ac979592..9d1083f31dab2 100644 --- a/components/postgrid/actions/create-postcard/create-postcard.mjs +++ b/components/postgrid/actions/create-postcard/create-postcard.mjs @@ -5,7 +5,12 @@ export default { key: "postgrid-create-postcard", name: "Create Postcard", description: "Creates a new postcard in PostGrid. [See the documentation](https://docs.postgrid.com/#fe8c4cd6-7617-4023-9437-669fa847ccc1)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postgrid, diff --git a/components/postgrid_verify/actions/parse-address/parse-address.mjs b/components/postgrid_verify/actions/parse-address/parse-address.mjs index 61fd606d650ad..6acec65cea3ce 100644 --- a/components/postgrid_verify/actions/parse-address/parse-address.mjs +++ b/components/postgrid_verify/actions/parse-address/parse-address.mjs @@ -4,7 +4,12 @@ export default { name: "Parse Address", description: "Break an address apart into its components. [See the documentation](https://avdocs.postgrid.com/#cd929454-227c-4a31-9a0b-7896099e52d1).", key: "postgrid_verify-parse-address", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/postgrid_verify/actions/verify-address/verify-address.mjs b/components/postgrid_verify/actions/verify-address/verify-address.mjs index 520a29e259f96..24a23f1e74922 100644 --- a/components/postgrid_verify/actions/verify-address/verify-address.mjs +++ b/components/postgrid_verify/actions/verify-address/verify-address.mjs @@ -4,7 +4,12 @@ export default { name: "Verify Address", description: "Verify, standardize, and correct an address written on a single line. Ensure that you add the ISO 2-letter country code to the end of the line for best results. [See the documentation](https://avdocs.postgrid.com/#1061f2ea-00ee-4977-99da-a54872de28c2).", key: "postgrid_verify-verify-address", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/posthog/actions/capture-event/capture-event.mjs b/components/posthog/actions/capture-event/capture-event.mjs index 28a557be82696..328370ac7582a 100644 --- a/components/posthog/actions/capture-event/capture-event.mjs +++ b/components/posthog/actions/capture-event/capture-event.mjs @@ -5,6 +5,11 @@ export default { name: "Capture Event", description: "Captures a given event within the PostHog system. [See the documentation](https://posthog.com/docs/api/post-only-endpoints#single-event)", version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { posthog, diff --git a/components/posthog/actions/create-query/create-query.mjs b/components/posthog/actions/create-query/create-query.mjs index 6d629599e7978..6b876c1567d0d 100644 --- a/components/posthog/actions/create-query/create-query.mjs +++ b/components/posthog/actions/create-query/create-query.mjs @@ -5,6 +5,11 @@ export default { name: "Create Query", description: "Create a HogQLQuery and return the results. [See the documentation](https://posthog.com/docs/api/queries#creating-a-query)", version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { posthog, diff --git a/components/posthog/actions/get-cohorts/get-cohorts.mjs b/components/posthog/actions/get-cohorts/get-cohorts.mjs index a30c73219ace9..06756ca1e180b 100644 --- a/components/posthog/actions/get-cohorts/get-cohorts.mjs +++ b/components/posthog/actions/get-cohorts/get-cohorts.mjs @@ -5,6 +5,11 @@ export default { name: "Get Cohorts", description: "Retrieve a list of cohorts. [See the documentation](https://posthog.com/docs/api/cohorts#get-api-projects-project_id-cohorts)", version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { posthog, diff --git a/components/posthog/actions/get-persons/get-persons.mjs b/components/posthog/actions/get-persons/get-persons.mjs index c373d0b811ea1..134188603308e 100644 --- a/components/posthog/actions/get-persons/get-persons.mjs +++ b/components/posthog/actions/get-persons/get-persons.mjs @@ -5,6 +5,11 @@ export default { name: "Get Persons", description: "Retrieve a list of persons. [See the documentation](https://posthog.com/docs/api/persons#get-api-projects-project_id-persons)", version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { posthog, diff --git a/components/posthog/actions/get-surveys/get-surveys.mjs b/components/posthog/actions/get-surveys/get-surveys.mjs index ead80c57913e6..22ee7cf140bad 100644 --- a/components/posthog/actions/get-surveys/get-surveys.mjs +++ b/components/posthog/actions/get-surveys/get-surveys.mjs @@ -5,6 +5,11 @@ export default { name: "Get Surveys", description: "Retrieve a list of surveys. [See the documentation](https://posthog.com/docs/api/surveys#get-api-projects-project_id-surveys)", version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { posthog, diff --git a/components/postman/actions/create-environment/create-environment.mjs b/components/postman/actions/create-environment/create-environment.mjs index ec8efa9b5e3c0..f49237f54a95a 100644 --- a/components/postman/actions/create-environment/create-environment.mjs +++ b/components/postman/actions/create-environment/create-environment.mjs @@ -4,7 +4,12 @@ export default { key: "postman-create-environment", name: "Create Environment", description: "Creates a new environment in Postman. [See the documentation](https://learning.postman.com/docs/developer/postman-api/intro-api/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postman, diff --git a/components/postman/actions/run-monitor/run-monitor.mjs b/components/postman/actions/run-monitor/run-monitor.mjs index 2a661d94f1ac9..77693e5cbc4ef 100644 --- a/components/postman/actions/run-monitor/run-monitor.mjs +++ b/components/postman/actions/run-monitor/run-monitor.mjs @@ -4,7 +4,12 @@ export default { key: "postman-run-monitor", name: "Run Monitor", description: "Run a specific monitor in Postman. [See the documentation](https://learning.postman.com/docs/developer/postman-api/intro-api/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postman, diff --git a/components/postman/actions/update-variable/update-variable.mjs b/components/postman/actions/update-variable/update-variable.mjs index 7372578e465c6..7a9c1a9b82516 100644 --- a/components/postman/actions/update-variable/update-variable.mjs +++ b/components/postman/actions/update-variable/update-variable.mjs @@ -4,7 +4,12 @@ export default { key: "postman-update-variable", name: "Update Environment Variable", description: "Updates a specific environment variable in Postman. [See the documentation](https://learning.postman.com/docs/developer/postman-api/intro-api/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postman, diff --git a/components/postmark/actions/create-domain/create-domain.mjs b/components/postmark/actions/create-domain/create-domain.mjs index ea3154682769c..4d87493216362 100644 --- a/components/postmark/actions/create-domain/create-domain.mjs +++ b/components/postmark/actions/create-domain/create-domain.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-create-domain", name: "Create Domain", description: "Create a new domain. [See the documentation](https://postmarkapp.com/developer/api/domains-api#create-domain)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/create-signature/create-signature.mjs b/components/postmark/actions/create-signature/create-signature.mjs index 8dff1b93f6aeb..0a1639826d162 100644 --- a/components/postmark/actions/create-signature/create-signature.mjs +++ b/components/postmark/actions/create-signature/create-signature.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-create-signature", name: "Create Sender Signature", description: "Create a new sender signature. [See the documentation](https://postmarkapp.com/developer/api/signatures-api#create-signature)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/delete-domain/delete-domain.mjs b/components/postmark/actions/delete-domain/delete-domain.mjs index f87f4adf08402..74583ff654251 100644 --- a/components/postmark/actions/delete-domain/delete-domain.mjs +++ b/components/postmark/actions/delete-domain/delete-domain.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-delete-domain", name: "Delete Domain", description: "Delete a specific domain. [See the documentation](https://postmarkapp.com/developer/api/domains-api#delete-domain)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/delete-signature/delete-signature.mjs b/components/postmark/actions/delete-signature/delete-signature.mjs index d0e0f54bd4d43..94ae64d544592 100644 --- a/components/postmark/actions/delete-signature/delete-signature.mjs +++ b/components/postmark/actions/delete-signature/delete-signature.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-delete-signature", name: "Delete Sender Signature", description: "Delete a specific sender signature. [See the documentation](https://postmarkapp.com/developer/api/signatures-api#delete-signature)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-bounce-counts/get-bounce-counts.mjs b/components/postmark/actions/get-bounce-counts/get-bounce-counts.mjs index 94eaef54442a7..553885de2a250 100644 --- a/components/postmark/actions/get-bounce-counts/get-bounce-counts.mjs +++ b/components/postmark/actions/get-bounce-counts/get-bounce-counts.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-bounce-counts", name: "Get Bounce Counts", description: "Gets total counts of emails you've sent out that have been returned as bounced. [See the documentation](https://postmarkapp.com/developer/api/stats-api#bounce-counts)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-browser-usage/get-browser-usage.mjs b/components/postmark/actions/get-browser-usage/get-browser-usage.mjs index b4d985c736d15..e9a98f288b361 100644 --- a/components/postmark/actions/get-browser-usage/get-browser-usage.mjs +++ b/components/postmark/actions/get-browser-usage/get-browser-usage.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-browser-usage", name: "Get Browser Usage", description: "Gets an overview of the browsers used to open links in your emails. This is only recorded when Link Tracking is enabled for that email. [See the documentation](https://postmarkapp.com/developer/api/stats-api#browser-usage)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-click-counts/get-click-counts.mjs b/components/postmark/actions/get-click-counts/get-click-counts.mjs index 85addbe853f41..86a9a007a44ee 100644 --- a/components/postmark/actions/get-click-counts/get-click-counts.mjs +++ b/components/postmark/actions/get-click-counts/get-click-counts.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-click-counts", name: "Get Click Counts", description: "Gets total counts of unique links that were clicked. [See the documentation](https://postmarkapp.com/developer/api/stats-api#click-counts)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-domain/get-domain.mjs b/components/postmark/actions/get-domain/get-domain.mjs index c027b0a6b89fd..d9f5ccf2a12f3 100644 --- a/components/postmark/actions/get-domain/get-domain.mjs +++ b/components/postmark/actions/get-domain/get-domain.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-domain", name: "Get Domain", description: "Gets all the details for a specific domain. [See the documentation](https://postmarkapp.com/developer/api/domains-api#domain)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-email-open-counts/get-email-open-counts.mjs b/components/postmark/actions/get-email-open-counts/get-email-open-counts.mjs index 7e35f2fd92211..b487b2d08e9c7 100644 --- a/components/postmark/actions/get-email-open-counts/get-email-open-counts.mjs +++ b/components/postmark/actions/get-email-open-counts/get-email-open-counts.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-email-open-counts", name: "Get Email Open Counts", description: "Gets total counts of recipients who opened your emails. This is only recorded when open tracking is enabled for that email. [See the documentation](https://postmarkapp.com/developer/api/stats-api#email-open-counts)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-email-platform-usage/get-email-platform-usage.mjs b/components/postmark/actions/get-email-platform-usage/get-email-platform-usage.mjs index 33bc07d98075e..e8de8afe15316 100644 --- a/components/postmark/actions/get-email-platform-usage/get-email-platform-usage.mjs +++ b/components/postmark/actions/get-email-platform-usage/get-email-platform-usage.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-email-platform-usage", name: "Get Email Platform Usage", description: "Gets an overview of the platforms used to open your emails. This is only recorded when open tracking is enabled for that email. [See the documentation](https://postmarkapp.com/developer/api/stats-api#email-platform-usage)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-outbound-overview/get-outbound-overview.mjs b/components/postmark/actions/get-outbound-overview/get-outbound-overview.mjs index bc1ba33be61f1..7ba769054956e 100644 --- a/components/postmark/actions/get-outbound-overview/get-outbound-overview.mjs +++ b/components/postmark/actions/get-outbound-overview/get-outbound-overview.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-outbound-overview", name: "Get Outbound Overview", description: "Gets a brief overview of statistics for all of your outbound email. [See the documentation](https://postmarkapp.com/developer/api/stats-api#overview)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-sent-counts/get-sent-counts.mjs b/components/postmark/actions/get-sent-counts/get-sent-counts.mjs index 70ea58fd6891c..b91b44728c871 100644 --- a/components/postmark/actions/get-sent-counts/get-sent-counts.mjs +++ b/components/postmark/actions/get-sent-counts/get-sent-counts.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-sent-counts", name: "Get Sent Counts", description: "Gets a total count of emails you've sent out. [See the documentation](https://postmarkapp.com/developer/api/stats-api#sent-counts)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-spam-complaints/get-spam-complaints.mjs b/components/postmark/actions/get-spam-complaints/get-spam-complaints.mjs index 8d6e7a5be8e0e..25004dfce1235 100644 --- a/components/postmark/actions/get-spam-complaints/get-spam-complaints.mjs +++ b/components/postmark/actions/get-spam-complaints/get-spam-complaints.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-spam-complaints", name: "Get Spam Complaints", description: "Gets a total count of recipients who have marked your email as spam. [See the documentation](https://postmarkapp.com/developer/api/stats-api#spam-complaints)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/get-tracked-email-counts/get-tracked-email-counts.mjs b/components/postmark/actions/get-tracked-email-counts/get-tracked-email-counts.mjs index 6dc3f8320bd1b..8986f10305fdc 100644 --- a/components/postmark/actions/get-tracked-email-counts/get-tracked-email-counts.mjs +++ b/components/postmark/actions/get-tracked-email-counts/get-tracked-email-counts.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-get-tracked-email-counts", name: "Get Tracked Email Counts", description: "Gets a total count of emails you've sent with open tracking or link tracking enabled. [See the documentation](https://postmarkapp.com/developer/api/stats-api#email-tracked-count)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/list-domains/list-domains.mjs b/components/postmark/actions/list-domains/list-domains.mjs index 85d64fe76ef95..906ba9b2c2c6f 100644 --- a/components/postmark/actions/list-domains/list-domains.mjs +++ b/components/postmark/actions/list-domains/list-domains.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-list-domains", name: "List Domains", description: "Gets a list of domains containing an overview of the domain and authentication status. [See the documentation](https://postmarkapp.com/developer/api/domains-api#list-domains)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/list-sender-signatures/list-sender-signatures.mjs b/components/postmark/actions/list-sender-signatures/list-sender-signatures.mjs index 7f57496261f0b..a2181a76427ea 100644 --- a/components/postmark/actions/list-sender-signatures/list-sender-signatures.mjs +++ b/components/postmark/actions/list-sender-signatures/list-sender-signatures.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-list-sender-signatures", name: "List Sender Signatures", description: "Gets a list of sender signatures containing brief details associated with your account. [See the documentation](https://postmarkapp.com/developer/api/signatures-api#list-sender-signatures)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/resend-confirmation/resend-confirmation.mjs b/components/postmark/actions/resend-confirmation/resend-confirmation.mjs index 291daa7e555e5..b89063adfdf52 100644 --- a/components/postmark/actions/resend-confirmation/resend-confirmation.mjs +++ b/components/postmark/actions/resend-confirmation/resend-confirmation.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-resend-confirmation", name: "Resend Confirmation", description: "Resend a confirmation email for a specific sender signature. [See the documentation](https://postmarkapp.com/developer/api/signatures-api#resend-confirmation)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/rotate-dkim-keys/rotate-dkim-keys.mjs b/components/postmark/actions/rotate-dkim-keys/rotate-dkim-keys.mjs index 0b898ea6af166..8264656ace7c6 100644 --- a/components/postmark/actions/rotate-dkim-keys/rotate-dkim-keys.mjs +++ b/components/postmark/actions/rotate-dkim-keys/rotate-dkim-keys.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-rotate-dkim-keys", name: "Rotate DKIM Keys", description: "Creates a new DKIM key to replace your current key. Until the new DNS entries are confirmed, the pending values will be in DKIMPendingHost and DKIMPendingTextValue fields. After the new DKIM value is verified in DNS, the pending values will migrate to DKIMTextValue and DKIMPendingTextValue and Postmark will begin to sign emails with the new DKIM key. [See the documentation](https://postmarkapp.com/developer/api/domains-api#rotate-dkim)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/send-batch-with-templates/send-batch-with-templates.mjs b/components/postmark/actions/send-batch-with-templates/send-batch-with-templates.mjs index c760873756963..6c89a1f59c229 100644 --- a/components/postmark/actions/send-batch-with-templates/send-batch-with-templates.mjs +++ b/components/postmark/actions/send-batch-with-templates/send-batch-with-templates.mjs @@ -9,7 +9,12 @@ export default { key: "postmark-send-batch-with-templates", name: "Send Batch With Templates", description: "Send a batch of emails using a template [See the documentation](https://postmarkapp.com/developer/api/templates-api#send-batch-with-templates)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/send-email-with-template/send-email-with-template.mjs b/components/postmark/actions/send-email-with-template/send-email-with-template.mjs index f35b212131368..01b69727233eb 100644 --- a/components/postmark/actions/send-email-with-template/send-email-with-template.mjs +++ b/components/postmark/actions/send-email-with-template/send-email-with-template.mjs @@ -9,7 +9,12 @@ export default { key: "postmark-send-email-with-template", name: "Send Email With Template", description: "Send a single email with Postmark using a template [See the documentation](https://postmarkapp.com/developer/api/templates-api#email-with-template)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/send-single-email/send-single-email.mjs b/components/postmark/actions/send-single-email/send-single-email.mjs index 2b6fcd4d07880..a1b20bbd6d933 100644 --- a/components/postmark/actions/send-single-email/send-single-email.mjs +++ b/components/postmark/actions/send-single-email/send-single-email.mjs @@ -9,7 +9,12 @@ export default { key: "postmark-send-single-email", name: "Send Single Email", description: "Send a single email with Postmark [See the documentation](https://postmarkapp.com/developer/api/email-api#send-a-single-email)", - version: "0.2.3", + version: "0.2.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/update-signature/update-signature.mjs b/components/postmark/actions/update-signature/update-signature.mjs index 3b7d3df8409b9..1e78820b6c1bc 100644 --- a/components/postmark/actions/update-signature/update-signature.mjs +++ b/components/postmark/actions/update-signature/update-signature.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-update-signature", name: "Update Sender Signature", description: "Create a new sender signature. [See the documentation](https://postmarkapp.com/developer/api/signatures-api#create-signature)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/verify-dkim/verify-dkim.mjs b/components/postmark/actions/verify-dkim/verify-dkim.mjs index 0f4a660d8107a..dfa4ddd32fcf7 100644 --- a/components/postmark/actions/verify-dkim/verify-dkim.mjs +++ b/components/postmark/actions/verify-dkim/verify-dkim.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-verify-dkim", name: "Verify DKIM", description: "Verify DKIM keys for the specified domain. [See the documentation](https://postmarkapp.com/developer/api/domains-api#domains-verify-dkim)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postmark/actions/verify-return-path/verify-return-path.mjs b/components/postmark/actions/verify-return-path/verify-return-path.mjs index 3e36054d45ac9..b4b116b5843a4 100644 --- a/components/postmark/actions/verify-return-path/verify-return-path.mjs +++ b/components/postmark/actions/verify-return-path/verify-return-path.mjs @@ -4,7 +4,12 @@ export default { key: "postmark-verify-return-path", name: "Verify Return-Path DNS", description: "Verify Return-Path DNS record for the specified domain. [See the documentation](https://postmarkapp.com/developer/api/domains-api#domains-verify-return-path)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { postmark, diff --git a/components/postnl/actions/get-status-by-barcode/get-status-by-barcode.mjs b/components/postnl/actions/get-status-by-barcode/get-status-by-barcode.mjs index 55246b59bdf51..009ba1f40b788 100644 --- a/components/postnl/actions/get-status-by-barcode/get-status-by-barcode.mjs +++ b/components/postnl/actions/get-status-by-barcode/get-status-by-barcode.mjs @@ -5,7 +5,12 @@ export default { name: "Get Status By Barcode", description: "Retrieve the status of a shipment using its barcode. [See the documentation](https://developer.postnl.nl/docs/#/http/api-endpoints/send-track/shippingstatus/get-status-by-barcode)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, barcode: { diff --git a/components/postnl/actions/get-status-by-reference/get-status-by-reference.mjs b/components/postnl/actions/get-status-by-reference/get-status-by-reference.mjs index 2e328c5a6befa..63619fe9f02ad 100644 --- a/components/postnl/actions/get-status-by-reference/get-status-by-reference.mjs +++ b/components/postnl/actions/get-status-by-reference/get-status-by-reference.mjs @@ -5,7 +5,12 @@ export default { name: "Get Status By Reference", description: "Retrieve the status of a shipment using a reference number. [See the documentation](https://developer.postnl.nl/docs/#/http/api-endpoints/send-track/shippingstatus/get-status-by-reference)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, customerCode: { diff --git a/components/precisefp/actions/create-account/create-account.mjs b/components/precisefp/actions/create-account/create-account.mjs index 6e204e80506c5..362f5289fbf43 100644 --- a/components/precisefp/actions/create-account/create-account.mjs +++ b/components/precisefp/actions/create-account/create-account.mjs @@ -5,7 +5,12 @@ export default { name: "Create Account", description: "Create a new account. [See the documentation](https://documenter.getpostman.com/view/6125750/UyrDEFnd#b6db56e1-2767-499e-9928-38c82f3bd3e6)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, accountType: {