diff --git a/components/spreadsheet_com/actions/create-rows/create-rows.mjs b/components/spreadsheet_com/actions/create-rows/create-rows.mjs index 2d96a77936897..637a11fdfa85a 100644 --- a/components/spreadsheet_com/actions/create-rows/create-rows.mjs +++ b/components/spreadsheet_com/actions/create-rows/create-rows.mjs @@ -4,7 +4,12 @@ import spreadsheetCom from "../../spreadsheet_com.app.mjs"; export default { key: "spreadsheet_com-create-rows", name: "Create Rows", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Adds new row(s) after last row that has data. Empty data sets are ignored. Provide data for at least 1 column. [See the documentation](https://developer.spreadsheet.com/#tag/Rows/operation/createRows)", type: "action", props: { diff --git a/components/spreadsheet_com/actions/update-rows/update-rows.mjs b/components/spreadsheet_com/actions/update-rows/update-rows.mjs index 369a6b71a82e1..a10e5950e5527 100644 --- a/components/spreadsheet_com/actions/update-rows/update-rows.mjs +++ b/components/spreadsheet_com/actions/update-rows/update-rows.mjs @@ -4,7 +4,12 @@ import spreadsheetCom from "../../spreadsheet_com.app.mjs"; export default { key: "spreadsheet_com-update-rows", name: "Update Rows", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update existing row(s). [See the documentation](https://developer.spreadsheet.com/#tag/Rows/operation/updateRows)", type: "action", props: { diff --git a/components/sproutgigs/actions/get-categories/get-categories.mjs b/components/sproutgigs/actions/get-categories/get-categories.mjs index c443d2cbc91c9..19391b9705c95 100644 --- a/components/sproutgigs/actions/get-categories/get-categories.mjs +++ b/components/sproutgigs/actions/get-categories/get-categories.mjs @@ -4,7 +4,12 @@ export default { key: "sproutgigs-get-categories", name: "Get Categories", description: "Get a list of categories from Sproutgigs. [See the documentation](https://sproutgigs.com/api/documentation.php#gigs-categories)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/sproutgigs/actions/get-zones/get-zones.mjs b/components/sproutgigs/actions/get-zones/get-zones.mjs index fdd3dfb343e13..f6c1898f15a32 100644 --- a/components/sproutgigs/actions/get-zones/get-zones.mjs +++ b/components/sproutgigs/actions/get-zones/get-zones.mjs @@ -4,7 +4,12 @@ export default { key: "sproutgigs-get-zones", name: "Get Zones", description: "Get the available zones. [See the documentation](https://sproutgigs.com/api/documentation.php#jobs-zones)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/sproutgigs/actions/post-job/post-job.mjs b/components/sproutgigs/actions/post-job/post-job.mjs index 741bf1b85f959..fea30c18a3437 100644 --- a/components/sproutgigs/actions/post-job/post-job.mjs +++ b/components/sproutgigs/actions/post-job/post-job.mjs @@ -4,7 +4,12 @@ export default { key: "sproutgigs-post-job", name: "Post Job", description: "Post a new job to Sproutgigs. [See the documentation](https://sproutgigs.com/api/documentation.php#jobs-post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/square/actions/create-customer/create-customer.mjs b/components/square/actions/create-customer/create-customer.mjs index ce25125989cf9..2fb2aeb78144f 100644 --- a/components/square/actions/create-customer/create-customer.mjs +++ b/components/square/actions/create-customer/create-customer.mjs @@ -6,7 +6,12 @@ export default { description: `Creates a new customer for a business. Must provide at least one of the following: Given Name, Family Name, Company Name, Email Address, or Phone Number. [See the docs](https://developer.squareup.com/reference/square/customers-api/create-customer).`, type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { square, givenName: { diff --git a/components/square/actions/create-invoice/create-invoice.mjs b/components/square/actions/create-invoice/create-invoice.mjs index 2ed37b0fb858d..23056ea681a8f 100644 --- a/components/square/actions/create-invoice/create-invoice.mjs +++ b/components/square/actions/create-invoice/create-invoice.mjs @@ -5,7 +5,12 @@ export default { name: "Create Invoice", description: "Creates a draft invoice for an order. You must send (publish) the invoice before Square can process it. [See the documentation](https://developer.squareup.com/reference/square/invoices-api/create-invoice).", type: "action", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { square, location: { diff --git a/components/square/actions/create-order/create-order.mjs b/components/square/actions/create-order/create-order.mjs index 6ccf3f801ff89..4ae12520469b4 100644 --- a/components/square/actions/create-order/create-order.mjs +++ b/components/square/actions/create-order/create-order.mjs @@ -5,7 +5,12 @@ export default { name: "Create Order", description: "Creates a new order that can include information about products for purchase. [See docs here](https://developer.squareup.com/reference/square/orders-api/create-order).", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { square, location: { diff --git a/components/square/actions/send-invoice/send-invoice.mjs b/components/square/actions/send-invoice/send-invoice.mjs index aff8f36a60721..0fde2e164d3ab 100644 --- a/components/square/actions/send-invoice/send-invoice.mjs +++ b/components/square/actions/send-invoice/send-invoice.mjs @@ -5,7 +5,12 @@ export default { name: "Send Invoice", description: "Publishes the latest version of a specified invoice. [See the docs](https://developer.squareup.com/reference/square/invoices-api/publish-invoice).", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { square, location: { diff --git a/components/squarespace/actions/create-product/create-product.mjs b/components/squarespace/actions/create-product/create-product.mjs index 59f97da1b4ef6..008432c3fae00 100644 --- a/components/squarespace/actions/create-product/create-product.mjs +++ b/components/squarespace/actions/create-product/create-product.mjs @@ -5,7 +5,12 @@ export default { key: "squarespace-create-product", name: "Create Product", description: "Create a new product. [See docs here](https://developers.squarespace.com/commerce-apis/create-product)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { squarespace, diff --git a/components/squarespace/actions/get-order/get-order.mjs b/components/squarespace/actions/get-order/get-order.mjs index ee20fabce4f3d..4527905c3bcc1 100644 --- a/components/squarespace/actions/get-order/get-order.mjs +++ b/components/squarespace/actions/get-order/get-order.mjs @@ -4,7 +4,12 @@ export default { key: "squarespace-get-order", name: "Get Order", description: "Get a specific order. [See docs here](https://developers.squarespace.com/commerce-apis/retrieve-specific-order)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { squarespace, diff --git a/components/squarespace/actions/get-product/get-product.mjs b/components/squarespace/actions/get-product/get-product.mjs index ca0d7b00f75bb..e7ea1d9a6cbb4 100644 --- a/components/squarespace/actions/get-product/get-product.mjs +++ b/components/squarespace/actions/get-product/get-product.mjs @@ -4,7 +4,12 @@ export default { key: "squarespace-get-product", name: "Get Product", description: "Get a specific product. [See docs here](https://developers.squarespace.com/commerce-apis/retrieve-specific-products)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { squarespace, diff --git a/components/ssh/actions/execute-command/execute-command.mjs b/components/ssh/actions/execute-command/execute-command.mjs index e1853b6494175..9ae07185a03b8 100644 --- a/components/ssh/actions/execute-command/execute-command.mjs +++ b/components/ssh/actions/execute-command/execute-command.mjs @@ -5,7 +5,12 @@ export default { key: "ssh-execute-command", name: "Execute a Command", description: "Executes a command on a remote device. [See SSH lib docs here](https://www.npmjs.com/package/node-ssh)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { ssh, command: { diff --git a/components/stammer_ai/actions/message-chatbot/message-chatbot.mjs b/components/stammer_ai/actions/message-chatbot/message-chatbot.mjs index 0cd30c86b5292..881c2b025a30d 100644 --- a/components/stammer_ai/actions/message-chatbot/message-chatbot.mjs +++ b/components/stammer_ai/actions/message-chatbot/message-chatbot.mjs @@ -4,7 +4,12 @@ export default { key: "stammer_ai-message-chatbot", name: "Message Chatbot", description: "Sends a message to your chatbot. [See the documentation](https://app.stammer.ai/en/api-docs/chatbot/message/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { stammerAi, diff --git a/components/stannp/actions/create-campaign/create-campaign.mjs b/components/stannp/actions/create-campaign/create-campaign.mjs index 5d0a341e41fc2..a1b0652a12afc 100644 --- a/components/stannp/actions/create-campaign/create-campaign.mjs +++ b/components/stannp/actions/create-campaign/create-campaign.mjs @@ -9,7 +9,12 @@ export default { key: "stannp-create-campaign", name: "Create a New Campaign", description: "Create a new campaign in Stannp. [See the documentation](https://www.stannp.com/us/direct-mail-api/campaigns)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { stannp, diff --git a/components/stannp/actions/create-recipient/create-recipient.mjs b/components/stannp/actions/create-recipient/create-recipient.mjs index 624b840a2ca28..083074e2d9440 100644 --- a/components/stannp/actions/create-recipient/create-recipient.mjs +++ b/components/stannp/actions/create-recipient/create-recipient.mjs @@ -6,7 +6,12 @@ export default { key: "stannp-create-recipient", name: "Create a New Recipient", description: "Creates a new recipient in a specified group. [See the Stannp documentation](https://www.stannp.com/us/direct-mail-api/recipients)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { stannp, diff --git a/components/stannp/actions/get-campaign/get-campaign.mjs b/components/stannp/actions/get-campaign/get-campaign.mjs index 20bda857509fa..f08a6e949c1a2 100644 --- a/components/stannp/actions/get-campaign/get-campaign.mjs +++ b/components/stannp/actions/get-campaign/get-campaign.mjs @@ -4,7 +4,12 @@ export default { key: "stannp-get-campaign", name: "Get a Single Campaign", description: "Get a single campaign based on the provided campaign ID. [See the documentation](https://www.stannp.com/us/direct-mail-api/campaigns)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { stannp, diff --git a/components/starloop/actions/list-ids/list-ids.mjs b/components/starloop/actions/list-ids/list-ids.mjs index f907ab2a9b3cc..d3e6e334e90e0 100644 --- a/components/starloop/actions/list-ids/list-ids.mjs +++ b/components/starloop/actions/list-ids/list-ids.mjs @@ -4,7 +4,12 @@ export default { key: "starloop-list-ids", name: "List IDs", description: "Returns your business id and a list of all profile id’s and names. [See the documentation](https://help.starloop.com/article/46-api-documentation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/starloop/actions/send-invite/send-invite.mjs b/components/starloop/actions/send-invite/send-invite.mjs index 6f6d7e6810134..ae8bb2ab7de5b 100644 --- a/components/starloop/actions/send-invite/send-invite.mjs +++ b/components/starloop/actions/send-invite/send-invite.mjs @@ -4,7 +4,12 @@ export default { key: "starloop-send-invite", name: "Send Invite", description: "Creates a new recipient and sends a Starloop invite (Email | SMS | both) to your customer to leave a review. [See the documentation](https://help.starloop.com/article/46-api-documentation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/starshipit/actions/create-order/create-order.mjs b/components/starshipit/actions/create-order/create-order.mjs index bae33302df464..63b71fbb75376 100644 --- a/components/starshipit/actions/create-order/create-order.mjs +++ b/components/starshipit/actions/create-order/create-order.mjs @@ -5,7 +5,12 @@ export default { key: "starshipit-create-order", name: "Create Order", description: "Create an outbound order in Starshipit. [See the documentation](https://api-docs.starshipit.com/#b90251d2-1d1c-47b1-ac07-eeeb21cade7b)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { starshipit, diff --git a/components/starshipit/actions/get-tracking/get-tracking.mjs b/components/starshipit/actions/get-tracking/get-tracking.mjs index d0240c7b8a5c4..c29861618e87a 100644 --- a/components/starshipit/actions/get-tracking/get-tracking.mjs +++ b/components/starshipit/actions/get-tracking/get-tracking.mjs @@ -5,7 +5,12 @@ export default { key: "starshipit-get-tracking", name: "Get Tracking Details", description: "Retrieve tracking details using a tracking number or order number. [See the documentation](https://api-docs.starshipit.com/#a655a3b4-ea39-42c4-acb4-d868ad40dc47)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { starshipit, diff --git a/components/starshipit/actions/print-label/print-label.mjs b/components/starshipit/actions/print-label/print-label.mjs index 5785b2717e2f9..d962ef78ec6f5 100644 --- a/components/starshipit/actions/print-label/print-label.mjs +++ b/components/starshipit/actions/print-label/print-label.mjs @@ -5,7 +5,12 @@ export default { key: "starshipit-print-label", name: "Print Shipping Label", description: "Print a shipping label for a specific order. [See the documentation](https://api-docs.starshipit.com/#b6bc3576-a43f-4992-86d8-8fdf57f872f6)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { starshipit, diff --git a/components/status_hero/actions/create-team-holiday/create-team-holiday.mjs b/components/status_hero/actions/create-team-holiday/create-team-holiday.mjs index 7e0a773f89d35..a2c722e252f11 100644 --- a/components/status_hero/actions/create-team-holiday/create-team-holiday.mjs +++ b/components/status_hero/actions/create-team-holiday/create-team-holiday.mjs @@ -3,7 +3,12 @@ import app from "../../status_hero.app.mjs"; export default { type: "action", key: "status_hero-create-team-holiday", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Team Holiday", description: "Creates a team-wide holiday., [See the docs](https://api.statushero.com/#team-absences)", props: { diff --git a/components/status_hero/actions/record-member-absence/record-member-absence.mjs b/components/status_hero/actions/record-member-absence/record-member-absence.mjs index 8457d49090d49..44432c56ff105 100644 --- a/components/status_hero/actions/record-member-absence/record-member-absence.mjs +++ b/components/status_hero/actions/record-member-absence/record-member-absence.mjs @@ -3,7 +3,12 @@ import app from "../../status_hero.app.mjs"; export default { type: "action", key: "status_hero-record-member-absence", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Record Member Absence", description: "Creates a vacation or leave day for an individual team member, [See the docs](https://api.statushero.com/#add-member-absence)", props: { diff --git a/components/statuspage/actions/create-incident/create-incident.mjs b/components/statuspage/actions/create-incident/create-incident.mjs index 021c7b807f285..6d3c336d7f509 100644 --- a/components/statuspage/actions/create-incident/create-incident.mjs +++ b/components/statuspage/actions/create-incident/create-incident.mjs @@ -2,7 +2,12 @@ import statuspage from "../../statuspage.app.mjs"; export default { name: "Create Incident", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "statuspage-create-incident", description: "Creates an incident. [See docs here](https://developer.statuspage.io/#create-an-incident)", type: "action", diff --git a/components/statuspage/actions/update-incident/update-incident.mjs b/components/statuspage/actions/update-incident/update-incident.mjs index c73a7ce0faddf..40a7a65a08686 100644 --- a/components/statuspage/actions/update-incident/update-incident.mjs +++ b/components/statuspage/actions/update-incident/update-incident.mjs @@ -2,7 +2,12 @@ import statuspage from "../../statuspage.app.mjs"; export default { name: "Update Incident", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "statuspage-update-incident", description: "Updates an existing incident. [See docs here](https://developer.statuspage.io/#update-an-incident)", type: "action", diff --git a/components/stiply/actions/send-sign-request/send-sign-request.mjs b/components/stiply/actions/send-sign-request/send-sign-request.mjs index 4d9116a96ce05..bb5dcbbb5ce9c 100644 --- a/components/stiply/actions/send-sign-request/send-sign-request.mjs +++ b/components/stiply/actions/send-sign-request/send-sign-request.mjs @@ -5,7 +5,12 @@ export default { key: "stiply-send-sign-request", name: "Send Sign Request", description: "Send a sign request to a recipient. [See the documentation](https://app.stiply.nl/api-documentation/v2#tag/sign-requests/operation/SendSignRequest)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { stiply, diff --git a/components/storeganise/actions/add-invoice-payment/add-invoice-payment.mjs b/components/storeganise/actions/add-invoice-payment/add-invoice-payment.mjs index 332fff52c97ba..f10c414227ce6 100644 --- a/components/storeganise/actions/add-invoice-payment/add-invoice-payment.mjs +++ b/components/storeganise/actions/add-invoice-payment/add-invoice-payment.mjs @@ -4,7 +4,12 @@ export default { key: "storeganise-add-invoice-payment", name: "Add Invoice Payment", description: "Adds a payment to the targeted invoice. [See the documentation](https://pipedream-dev-trial.storeganise.com/api/docs/admin/invoices#admin_invoices._invoiceId_payments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { storeganise, diff --git a/components/storeganise/actions/mark-invoice-paid/mark-invoice-paid.mjs b/components/storeganise/actions/mark-invoice-paid/mark-invoice-paid.mjs index 483e1ad5db656..e2a353aa5d0bc 100644 --- a/components/storeganise/actions/mark-invoice-paid/mark-invoice-paid.mjs +++ b/components/storeganise/actions/mark-invoice-paid/mark-invoice-paid.mjs @@ -4,7 +4,12 @@ export default { key: "storeganise-mark-invoice-paid", name: "Mark Invoice as Paid", description: "Marks the selected invoice as paid in Storeganise. [See the documentation](https://pipedream-dev-trial.storeganise.com/api/docs/admin/invoices#admin_invoices.PUT_invoiceId)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { storeganise, diff --git a/components/stormboard/actions/new-idea/new-idea.mjs b/components/stormboard/actions/new-idea/new-idea.mjs index bcacfa5d24eb0..4cd074ac3d441 100644 --- a/components/stormboard/actions/new-idea/new-idea.mjs +++ b/components/stormboard/actions/new-idea/new-idea.mjs @@ -4,7 +4,12 @@ import options from "../common/options.mjs"; export default { type: "action", key: "stormboard-new-idea", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "New Idea", description: "Creates a new idea. [See the docs here](https://api.stormboard.com/docs)", props: { diff --git a/components/stormboard/actions/new-storm/new-storm.mjs b/components/stormboard/actions/new-storm/new-storm.mjs index cea7ec8247228..78fc50d393258 100644 --- a/components/stormboard/actions/new-storm/new-storm.mjs +++ b/components/stormboard/actions/new-storm/new-storm.mjs @@ -4,7 +4,12 @@ import options from "../common/options.mjs"; export default { type: "action", key: "stormboard-new-storm", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "New Storm", description: "Creates a new storm. [See the docs here](https://api.stormboard.com/docs)", props: { diff --git a/components/strava/actions/create-activity/create-activity.mjs b/components/strava/actions/create-activity/create-activity.mjs index 57d5d2cefd5da..6defd607d59ef 100644 --- a/components/strava/actions/create-activity/create-activity.mjs +++ b/components/strava/actions/create-activity/create-activity.mjs @@ -4,7 +4,12 @@ export default { name: "Create Activity", description: "Creates a manual activity for an athlete. [See the docs](https://developers.strava.com/docs/reference/#api-Activities-createActivity)", key: "strava-create-activity", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { strava, diff --git a/components/strava/actions/get-activity-by-id/get-activity-by-id.mjs b/components/strava/actions/get-activity-by-id/get-activity-by-id.mjs index de7c667e61c9b..88f50fad913a6 100644 --- a/components/strava/actions/get-activity-by-id/get-activity-by-id.mjs +++ b/components/strava/actions/get-activity-by-id/get-activity-by-id.mjs @@ -4,7 +4,12 @@ export default { name: "Get Activity By ID", description: "Returns the given activity that is owned by the authenticated athlete. [See the docs](https://developers.strava.com/docs/reference/#api-Activities-getActivityById)", key: "strava-get-activity-by-id", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { strava, diff --git a/components/strava/actions/get-stats/get-stats.mjs b/components/strava/actions/get-stats/get-stats.mjs index a3c715f8004be..c3131d2790950 100644 --- a/components/strava/actions/get-stats/get-stats.mjs +++ b/components/strava/actions/get-stats/get-stats.mjs @@ -4,7 +4,12 @@ export default { name: "Get Stats", description: "Returns the activity stats of an athlete. Only includes data from activities set to Everyone visibilty. [See the docs](https://developers.strava.com/docs/reference/#api-Athletes-getStats)", key: "strava-get-stats", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { strava, diff --git a/components/strava/actions/list-activities/list-activities.mjs b/components/strava/actions/list-activities/list-activities.mjs index 4e79969c2e8f7..34443fa28f09f 100644 --- a/components/strava/actions/list-activities/list-activities.mjs +++ b/components/strava/actions/list-activities/list-activities.mjs @@ -4,7 +4,12 @@ export default { name: "Get Activity List", description: "Returns the activities of an athlete for a specific identifier. [See the docs](https://developers.strava.com/docs/reference/#api-Activities-getLoggedInAthleteActivities)", key: "strava-get-activity-list", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { strava, diff --git a/components/strava/actions/update-activity/update-activity.mjs b/components/strava/actions/update-activity/update-activity.mjs index a48c27772cfdf..807b919c7ec08 100644 --- a/components/strava/actions/update-activity/update-activity.mjs +++ b/components/strava/actions/update-activity/update-activity.mjs @@ -4,7 +4,12 @@ export default { name: "Update Activity", description: "Updates the given activity that is owned by the authenticated athlete. [See the docs](https://developers.strava.com/docs/reference/#api-Activities-updateActivityById)", key: "strava-update-activity", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { strava, diff --git a/components/streak/actions/create-box/create-box.mjs b/components/streak/actions/create-box/create-box.mjs index aca88fa41fb8a..e500f1f47f32e 100644 --- a/components/streak/actions/create-box/create-box.mjs +++ b/components/streak/actions/create-box/create-box.mjs @@ -6,7 +6,12 @@ export default { key: "streak-create-box", name: "Create Box", description: `Create a new box in Streak. [See the docs](${docLink})`, - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streak, diff --git a/components/streak/actions/create-task/create-task.mjs b/components/streak/actions/create-task/create-task.mjs index 2de42be43a296..0a754ce2846ca 100644 --- a/components/streak/actions/create-task/create-task.mjs +++ b/components/streak/actions/create-task/create-task.mjs @@ -6,7 +6,12 @@ export default { key: "streak-create-task", name: "Create Task", description: `Create a new task in a box. [See the docs](${docLink})`, - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streak, diff --git a/components/streak/actions/link-boxes/link-boxes.mjs b/components/streak/actions/link-boxes/link-boxes.mjs index 6deb53bf6f439..628a1f2bfeaaa 100644 --- a/components/streak/actions/link-boxes/link-boxes.mjs +++ b/components/streak/actions/link-boxes/link-boxes.mjs @@ -6,7 +6,12 @@ export default { key: "streak-link-boxes", name: "Link Boxes", description: `Link boxes to a specific box. [See the docs](${docLink})`, - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streak, diff --git a/components/streak/actions/update-box-field-value/update-box-field-value.mjs b/components/streak/actions/update-box-field-value/update-box-field-value.mjs index 84292f26a6839..dc6ad6040eb87 100644 --- a/components/streak/actions/update-box-field-value/update-box-field-value.mjs +++ b/components/streak/actions/update-box-field-value/update-box-field-value.mjs @@ -6,7 +6,12 @@ export default { key: "streak-update-box-field-value", name: "Update Box Field Value", description: `Update the values of the fields for a box. [See the docs](${docLink})`, - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streak, diff --git a/components/streak/actions/update-box/update-box.mjs b/components/streak/actions/update-box/update-box.mjs index 3dfcae0c1c4d7..878d0515af019 100644 --- a/components/streak/actions/update-box/update-box.mjs +++ b/components/streak/actions/update-box/update-box.mjs @@ -6,7 +6,12 @@ export default { key: "streak-update-box", name: "Update Box", description: `Update the properties for a box. To update field values use **Update Box Field Value**. [See the docs](${docLink})`, - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streak, diff --git a/components/streamlabs/actions/create-donation/create-donation.mjs b/components/streamlabs/actions/create-donation/create-donation.mjs index f4e6226937400..94bdf0f52a219 100644 --- a/components/streamlabs/actions/create-donation/create-donation.mjs +++ b/components/streamlabs/actions/create-donation/create-donation.mjs @@ -5,7 +5,12 @@ export default { key: "streamlabs-create-donation", name: "Create Donation", description: "Create a donation for the authenticated user. [See the documentation](https://dev.streamlabs.com/reference/donations-1)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streamlabs, diff --git a/components/streamlabs/actions/send-alert/send-alert.mjs b/components/streamlabs/actions/send-alert/send-alert.mjs index 90464f67a3405..ad2c483ce0de5 100644 --- a/components/streamlabs/actions/send-alert/send-alert.mjs +++ b/components/streamlabs/actions/send-alert/send-alert.mjs @@ -4,7 +4,12 @@ export default { key: "streamlabs-send-alert", name: "Send Alert", description: "Sends an alert to the stream overlay with a custom message, image, and sound. [See the documentation](https://dev.streamlabs.com/reference/alerts)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streamlabs, diff --git a/components/streamlabs/actions/send-test-alert/send-test-alert.mjs b/components/streamlabs/actions/send-test-alert/send-test-alert.mjs index 3ededd67bcfb5..3ca06e3703bda 100644 --- a/components/streamlabs/actions/send-test-alert/send-test-alert.mjs +++ b/components/streamlabs/actions/send-test-alert/send-test-alert.mjs @@ -4,7 +4,12 @@ export default { key: "streamlabs-send-test-alert", name: "Send Test Alert", description: "Send a test alert to the stream overlay in StreamLabs. [See the documentation](https://dev.streamlabs.com/reference/alertssend_test_alert)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streamlabs, diff --git a/components/streamtime/actions/create-contact/create-contact.mjs b/components/streamtime/actions/create-contact/create-contact.mjs index da4d996a61534..320d2006ad65f 100644 --- a/components/streamtime/actions/create-contact/create-contact.mjs +++ b/components/streamtime/actions/create-contact/create-contact.mjs @@ -4,7 +4,12 @@ export default { key: "streamtime-create-contact", name: "Create Contact", description: "Create a new contact in Streamtime. [See the documentation](https://documenter.getpostman.com/view/802974/RWgtSwbn?version=latest#5df35cec-ec19-4721-a683-df1e391d6bf0).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streamtime, diff --git a/components/streamtime/actions/create-job/create-job.mjs b/components/streamtime/actions/create-job/create-job.mjs index 69588af7ff314..f5e263a170b23 100644 --- a/components/streamtime/actions/create-job/create-job.mjs +++ b/components/streamtime/actions/create-job/create-job.mjs @@ -4,7 +4,12 @@ export default { key: "streamtime-create-job", name: "Create Job", description: "Create a new job in Streamtime. [See the documentation](https://documenter.getpostman.com/view/802974/RWgtSwbn?version=latest#3c29e1b5-7890-4d03-bc6c-fd3a12c45e84).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streamtime, diff --git a/components/streamtime/actions/update-to-do/update-to-do.mjs b/components/streamtime/actions/update-to-do/update-to-do.mjs index 2b75c2c4bc9a0..88f8f7a43cd5c 100644 --- a/components/streamtime/actions/update-to-do/update-to-do.mjs +++ b/components/streamtime/actions/update-to-do/update-to-do.mjs @@ -4,7 +4,12 @@ export default { key: "streamtime-update-to-do", name: "Update To-Do", description: "Update an existing To Do in Streamtime. [See the documentation](https://documenter.getpostman.com/view/802974/RWgtSwbn?version=latest#5fb593b9-a83c-4e01-8206-5a56f005825a).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { streamtime, diff --git a/components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs b/components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs index 7c27ed16812f1..b4cc574db9ac5 100644 --- a/components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs +++ b/components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-cancel-or-reverse-payout", name: "Cancel Or Reverse A Payout", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Cancel a pending payout or reverse a paid payout. [See the documentation here](https://docs.stripe.com/api/payouts/cancel) and [here](https://docs.stripe.com/api/payouts/reverse)", props: { app, diff --git a/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs b/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs index 2dc5e2ea6c188..c3cba038e2ab0 100644 --- a/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs +++ b/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-cancel-payment-intent", name: "Cancel A Payment Intent", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Cancel a PaymentIntent. [See the documentation](https://stripe.com/docs/payments/payment-intents).", props: { app, diff --git a/components/stripe/actions/cancel-subscription/cancel-subscription.mjs b/components/stripe/actions/cancel-subscription/cancel-subscription.mjs index 2b6bbf0dcd94b..f6fe9898f2c13 100644 --- a/components/stripe/actions/cancel-subscription/cancel-subscription.mjs +++ b/components/stripe/actions/cancel-subscription/cancel-subscription.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-cancel-subscription", name: "Cancel Subscription", description: "Cancel a subscription. [See the documentation](https://docs.stripe.com/api/subscriptions/cancel?lang=node)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { stripe, diff --git a/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs b/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs index 844f422e619a3..2733481e3e4ac 100644 --- a/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs +++ b/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-capture-payment-intent", name: "Capture a Payment Intent", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Capture the funds of an existing uncaptured payment intent. [See the documentation](https://stripe.com/docs/api/payment_intents/capture).", props: { app, diff --git a/components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs b/components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs index c599eaaf9dc05..925829e00c45b 100644 --- a/components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs +++ b/components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-confirm-payment-intent", name: "Confirm A Payment Intent", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Confirm that your customer intends to pay with current or provided payment method. [See the documentation](https://stripe.com/docs/api/payment_intents/confirm).", props: { app, diff --git a/components/stripe/actions/create-billing-meter/create-billing-meter.mjs b/components/stripe/actions/create-billing-meter/create-billing-meter.mjs index 3559bf850c069..82c0671651cd3 100644 --- a/components/stripe/actions/create-billing-meter/create-billing-meter.mjs +++ b/components/stripe/actions/create-billing-meter/create-billing-meter.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-create-billing-meter", name: "Create Billing Meter", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Creates a billing meter. [See the documentation](https://docs.stripe.com/api/billing/meter/create).", props: { app, diff --git a/components/stripe/actions/create-customer/create-customer.mjs b/components/stripe/actions/create-customer/create-customer.mjs index 479a0f1e2f917..0c72f6db086c9 100644 --- a/components/stripe/actions/create-customer/create-customer.mjs +++ b/components/stripe/actions/create-customer/create-customer.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-create-customer", name: "Create a Customer", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a customer. [See the documentation](https://stripe.com/docs/api/customers/create).", props: { app, diff --git a/components/stripe/actions/create-invoice-item/create-invoice-item.mjs b/components/stripe/actions/create-invoice-item/create-invoice-item.mjs index 8171a47e64997..2540f318fc7fa 100644 --- a/components/stripe/actions/create-invoice-item/create-invoice-item.mjs +++ b/components/stripe/actions/create-invoice-item/create-invoice-item.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-create-invoice-item", name: "Create Invoice Line Item", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Add a line item to an invoice. [See the documentation](https://stripe.com/docs/api/invoiceitems/create).", props: { app, diff --git a/components/stripe/actions/create-invoice/create-invoice.mjs b/components/stripe/actions/create-invoice/create-invoice.mjs index 1c57dc7b0212b..506d7ee79067f 100644 --- a/components/stripe/actions/create-invoice/create-invoice.mjs +++ b/components/stripe/actions/create-invoice/create-invoice.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-create-invoice", name: "Create Invoice", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create an invoice. [See the documentation](https://stripe.com/docs/api/invoices/create).", props: { app, diff --git a/components/stripe/actions/create-payment-intent/create-payment-intent.mjs b/components/stripe/actions/create-payment-intent/create-payment-intent.mjs index b8e7d202175bc..8dc44e393e08f 100644 --- a/components/stripe/actions/create-payment-intent/create-payment-intent.mjs +++ b/components/stripe/actions/create-payment-intent/create-payment-intent.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-create-payment-intent", name: "Create a Payment Intent", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a payment intent. [See the documentation](https://stripe.com/docs/api/payment_intents/create).", props: { app, diff --git a/components/stripe/actions/create-payout/create-payout.mjs b/components/stripe/actions/create-payout/create-payout.mjs index e692da58f1eed..eeec1f21d44fb 100644 --- a/components/stripe/actions/create-payout/create-payout.mjs +++ b/components/stripe/actions/create-payout/create-payout.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-create-payout", name: "Create a Payout", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a payout. [See the documentation](https://stripe.com/docs/api/payouts/create).", props: { app, diff --git a/components/stripe/actions/create-price/create-price.mjs b/components/stripe/actions/create-price/create-price.mjs index bba5603fbfd02..5e3ea82d6324f 100644 --- a/components/stripe/actions/create-price/create-price.mjs +++ b/components/stripe/actions/create-price/create-price.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-create-price", name: "Create Price", description: "Creates a new price for an existing product. The price can be recurring or one-time. [See the documentation](https://stripe.com/docs/api/prices/create)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/stripe/actions/create-product/create-product.mjs b/components/stripe/actions/create-product/create-product.mjs index 7ce9a2e3d1db4..7eab3622f50bf 100644 --- a/components/stripe/actions/create-product/create-product.mjs +++ b/components/stripe/actions/create-product/create-product.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-create-product", name: "Create Product", description: "Creates a new product object in Stripe. [See the documentation](https://stripe.com/docs/api/products/create).", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/stripe/actions/create-refund/create-refund.mjs b/components/stripe/actions/create-refund/create-refund.mjs index f38f52fdebb4d..1f785738119d7 100644 --- a/components/stripe/actions/create-refund/create-refund.mjs +++ b/components/stripe/actions/create-refund/create-refund.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-create-refund", name: "Create A Refund", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a refund. [See the documentation](https://stripe.com/docs/api/refunds/create).", props: { app, diff --git a/components/stripe/actions/create-subscription/create-subscription.mjs b/components/stripe/actions/create-subscription/create-subscription.mjs index f5ff3f635b924..f29d9439baedd 100644 --- a/components/stripe/actions/create-subscription/create-subscription.mjs +++ b/components/stripe/actions/create-subscription/create-subscription.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-create-subscription", name: "Create Subscription", type: "action", - version: "0.1.5", + version: "0.1.6", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a subscription. [See the documentation](https://stripe.com/docs/api/subscriptions/create).", props: { app, diff --git a/components/stripe/actions/delete-customer/delete-customer.mjs b/components/stripe/actions/delete-customer/delete-customer.mjs index a40591ab915a5..3fd13402c4f9d 100644 --- a/components/stripe/actions/delete-customer/delete-customer.mjs +++ b/components/stripe/actions/delete-customer/delete-customer.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-delete-customer", name: "Delete a Customer", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Delete a customer. [See the documentation](https://stripe.com/docs/api/customers/delete).", props: { app, diff --git a/components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs b/components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs index 6eb51cc3cf51f..cec8f707aac82 100644 --- a/components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs +++ b/components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-delete-invoice-item", name: "Delete Invoice Line Item", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Delete a line item from an invoice. [See the documentation](https://stripe.com/docs/api/invoiceitems/delete).", props: { app, diff --git a/components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs b/components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs index afa18c31a8b18..380a3c8cedf75 100644 --- a/components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs +++ b/components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-delete-or-void-invoice", name: "Delete Or Void Invoice", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Delete a draft invoice, or void a non-draft or subscription invoice. [See the documentation](https://stripe.com/docs/api/invoiceitems/delete).", props: { app, diff --git a/components/stripe/actions/finalize-invoice/finalize-invoice.mjs b/components/stripe/actions/finalize-invoice/finalize-invoice.mjs index c3dc9136ef7d1..162d1bcb74e7b 100644 --- a/components/stripe/actions/finalize-invoice/finalize-invoice.mjs +++ b/components/stripe/actions/finalize-invoice/finalize-invoice.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-finalize-invoice", name: "Finalize Draft Invoice", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Finalize a draft invoice. [See the documentation](https://stripe.com/docs/api/invoices/finalize).", props: { app, diff --git a/components/stripe/actions/list-balance-history/list-balance-history.mjs b/components/stripe/actions/list-balance-history/list-balance-history.mjs index e7186e2a6ea99..21c459af0a501 100644 --- a/components/stripe/actions/list-balance-history/list-balance-history.mjs +++ b/components/stripe/actions/list-balance-history/list-balance-history.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-list-balance-history", name: "List Balance History", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "List all balance transactions. [See the documentation](https://stripe.com/docs/api/balance_transactions/list).", props: { app, diff --git a/components/stripe/actions/list-customers/list-customers.mjs b/components/stripe/actions/list-customers/list-customers.mjs index 1b44897444b91..d3f43a8955531 100644 --- a/components/stripe/actions/list-customers/list-customers.mjs +++ b/components/stripe/actions/list-customers/list-customers.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-list-customers", name: "List Customers", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Find or list customers. [See the documentation](https://stripe.com/docs/api/customers/list).", props: { app, diff --git a/components/stripe/actions/list-invoices/list-invoices.mjs b/components/stripe/actions/list-invoices/list-invoices.mjs index a8d16713e6f4c..4d468974bb17b 100644 --- a/components/stripe/actions/list-invoices/list-invoices.mjs +++ b/components/stripe/actions/list-invoices/list-invoices.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-list-invoices", name: "List Invoices", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Find or list invoices. [See the documentation](https://stripe.com/docs/api/invoices/list).", props: { app, diff --git a/components/stripe/actions/list-payment-intents/list-payment-intents.mjs b/components/stripe/actions/list-payment-intents/list-payment-intents.mjs index caa7a02b007e9..d498412628a72 100644 --- a/components/stripe/actions/list-payment-intents/list-payment-intents.mjs +++ b/components/stripe/actions/list-payment-intents/list-payment-intents.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-list-payment-intents", name: "List Payment Intents", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieves a list of payment intents that were previously created. [See the documentation](https://stripe.com/docs/api/payment_intents/list).", props: { app, diff --git a/components/stripe/actions/list-payouts/list-payouts.mjs b/components/stripe/actions/list-payouts/list-payouts.mjs index d9d0293dd39a4..ddbd9af207123 100644 --- a/components/stripe/actions/list-payouts/list-payouts.mjs +++ b/components/stripe/actions/list-payouts/list-payouts.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-list-payouts", name: "List Payouts", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Find or list payouts. [See the documentation](https://stripe.com/docs/api/payouts/list).", props: { app, diff --git a/components/stripe/actions/list-refunds/list-refunds.mjs b/components/stripe/actions/list-refunds/list-refunds.mjs index c99475d0ec52d..c4d082ad3f9e7 100644 --- a/components/stripe/actions/list-refunds/list-refunds.mjs +++ b/components/stripe/actions/list-refunds/list-refunds.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-list-refunds", name: "List Refunds", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Find or list refunds. [See the documentation](https://stripe.com/docs/api/refunds/list).", props: { app, diff --git a/components/stripe/actions/retrieve-balance/retrieve-balance.mjs b/components/stripe/actions/retrieve-balance/retrieve-balance.mjs index 06195a7e79105..d1f4221bc0010 100644 --- a/components/stripe/actions/retrieve-balance/retrieve-balance.mjs +++ b/components/stripe/actions/retrieve-balance/retrieve-balance.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-balance", name: "Retrieve the Current Balance", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieves the current account balance, based on the authentication that was used to make the request. [See the documentation](https://stripe.com/docs/api/balance/balance_retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs b/components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs index 63f493b0142bc..b56d3cda9b5e1 100644 --- a/components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs +++ b/components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs @@ -4,7 +4,12 @@ export default { name: "Retrieve Checkout Session Line Items", description: "Given a checkout session ID, retrieve the line items. [See the documentation](https://stripe.com/docs/api/checkout/sessions/line_items).", key: "stripe-retrieve-checkout-session-line-items", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs b/components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs index 683161f6a4e2b..4ea5c1fbc7e3c 100644 --- a/components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs +++ b/components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-checkout-session", name: "Retrieve a Checkout Session", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "A Checkout Session represents your customer's session as they pay for one-time purchases or subscriptions through Stripe Checkout. [See the documentation](https://stripe.com/docs/api/checkout/sessions/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-customer/retrieve-customer.mjs b/components/stripe/actions/retrieve-customer/retrieve-customer.mjs index 18dd6cbb1b856..afff1deee3134 100644 --- a/components/stripe/actions/retrieve-customer/retrieve-customer.mjs +++ b/components/stripe/actions/retrieve-customer/retrieve-customer.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-customer", name: "Retrieve a Customer", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieves the details of an existing customer. [See the documentation](https://stripe.com/docs/api/customers/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs b/components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs index 6d1bc8864cef4..995f96c6ee450 100644 --- a/components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs +++ b/components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-invoice-item", name: "Retrieve Invoice Line Item", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieve a single line item on an invoice. [See the documentation](https://stripe.com/docs/api/invoiceitems/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs b/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs index 73ef7ebb2d76b..eeb6e8750c3df 100644 --- a/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs +++ b/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-invoice", name: "Retrieve an Invoice", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieves the details of an existing invoice. [See the documentation](https://stripe.com/docs/api/invoices/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs b/components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs index 47842c768a7cb..dc49136765d47 100644 --- a/components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs +++ b/components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-payment-intent", name: "Retrieve a Payment Intent", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieves the details of a payment intent that was previously created. [See the documentation](https://stripe.com/docs/api/payment_intents/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-payout/retrieve-payout.mjs b/components/stripe/actions/retrieve-payout/retrieve-payout.mjs index 69281bf41c31c..5c06711a5653e 100644 --- a/components/stripe/actions/retrieve-payout/retrieve-payout.mjs +++ b/components/stripe/actions/retrieve-payout/retrieve-payout.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-payout", name: "Retrieve a Payout", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieves the details of an existing payout. [See the documentation](https://stripe.com/docs/api/payouts/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-price/retrieve-price.mjs b/components/stripe/actions/retrieve-price/retrieve-price.mjs index 06f9a74a22399..85a1db4f44d31 100644 --- a/components/stripe/actions/retrieve-price/retrieve-price.mjs +++ b/components/stripe/actions/retrieve-price/retrieve-price.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-price", name: "Retrieve a Price", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieves the details of an existing product price. [See the documentation](https://stripe.com/docs/api/prices/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-product/retrieve-product.mjs b/components/stripe/actions/retrieve-product/retrieve-product.mjs index 2e9ade7f34147..5805f1ea6226a 100644 --- a/components/stripe/actions/retrieve-product/retrieve-product.mjs +++ b/components/stripe/actions/retrieve-product/retrieve-product.mjs @@ -4,7 +4,12 @@ export default { name: "Retrieve Product", description: "Retrieve a product by ID. [See the documentation](https://stripe.com/docs/api/products/retrieve).", key: "stripe-retrieve-product", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/stripe/actions/retrieve-refund/retrieve-refund.mjs b/components/stripe/actions/retrieve-refund/retrieve-refund.mjs index e3bc81a1ca03a..53a91be9fff02 100644 --- a/components/stripe/actions/retrieve-refund/retrieve-refund.mjs +++ b/components/stripe/actions/retrieve-refund/retrieve-refund.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-retrieve-refund", name: "Retrieve a Refund", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieves the details of an existing refund. [See the documentation](https://stripe.com/docs/api/refunds/retrieve).", props: { app, diff --git a/components/stripe/actions/search-customers/search-customers.mjs b/components/stripe/actions/search-customers/search-customers.mjs index 18a7a83161176..8412631e36ef0 100644 --- a/components/stripe/actions/search-customers/search-customers.mjs +++ b/components/stripe/actions/search-customers/search-customers.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-search-customers", name: "Search Customers", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Search customers by various attributes like email domain, created date, etc. [See the documentation](https://stripe.com/docs/api/customers/search).", props: { app, diff --git a/components/stripe/actions/search-subscriptions/search-subscriptions.mjs b/components/stripe/actions/search-subscriptions/search-subscriptions.mjs index 69487ca5d584e..761cc1e860d2b 100644 --- a/components/stripe/actions/search-subscriptions/search-subscriptions.mjs +++ b/components/stripe/actions/search-subscriptions/search-subscriptions.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-search-subscriptions", name: "Search Subscriptions", description: "Search for subscriptions. [See the documentation](https://docs.stripe.com/api/subscriptions/search?lang=node)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { stripe, diff --git a/components/stripe/actions/send-invoice/send-invoice.mjs b/components/stripe/actions/send-invoice/send-invoice.mjs index f7b51ed43a0fb..bba172a2d9fc8 100644 --- a/components/stripe/actions/send-invoice/send-invoice.mjs +++ b/components/stripe/actions/send-invoice/send-invoice.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-send-invoice", name: "Send Invoice", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Manually send an invoice to your customer out of the normal schedule for payment (note that no emails are actually sent in test mode). [See the documentation](https://stripe.com/docs/api/invoices/send).", props: { app, diff --git a/components/stripe/actions/update-customer/update-customer.mjs b/components/stripe/actions/update-customer/update-customer.mjs index c3714c534bac0..d46c23bbc9d8d 100644 --- a/components/stripe/actions/update-customer/update-customer.mjs +++ b/components/stripe/actions/update-customer/update-customer.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-update-customer", name: "Update a Customer", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update a customer. [See the documentation](https://stripe.com/docs/api/customers/update).", props: { app, diff --git a/components/stripe/actions/update-invoice-item/update-invoice-item.mjs b/components/stripe/actions/update-invoice-item/update-invoice-item.mjs index c32b4a7d1f0b8..c561d30a45060 100644 --- a/components/stripe/actions/update-invoice-item/update-invoice-item.mjs +++ b/components/stripe/actions/update-invoice-item/update-invoice-item.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-update-invoice-item", name: "Update Invoice Line Item", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update an invoice line item. [See the documentation](https://stripe.com/docs/api/invoiceitems/update).", props: { app, diff --git a/components/stripe/actions/update-invoice/update-invoice.mjs b/components/stripe/actions/update-invoice/update-invoice.mjs index e294f2529fe42..ae597900dcaa6 100644 --- a/components/stripe/actions/update-invoice/update-invoice.mjs +++ b/components/stripe/actions/update-invoice/update-invoice.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-update-invoice", name: "Update Invoice", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update an invoice. [See the documentation](https://stripe.com/docs/api/invoices/update).", props: { app, diff --git a/components/stripe/actions/update-payment-intent/update-payment-intent.mjs b/components/stripe/actions/update-payment-intent/update-payment-intent.mjs index 09284970b6b51..7d170f09e6f56 100644 --- a/components/stripe/actions/update-payment-intent/update-payment-intent.mjs +++ b/components/stripe/actions/update-payment-intent/update-payment-intent.mjs @@ -5,7 +5,12 @@ export default { key: "stripe-update-payment-intent", name: "Update a Payment Intent", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update a payment intent. [See the documentation](https://stripe.com/docs/api/payment_intents/update).", props: { app, diff --git a/components/stripe/actions/update-payout/update-payout.mjs b/components/stripe/actions/update-payout/update-payout.mjs index 32f2054bb70eb..6b51e5928bc8f 100644 --- a/components/stripe/actions/update-payout/update-payout.mjs +++ b/components/stripe/actions/update-payout/update-payout.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-update-payout", name: "Update a Payout", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update the metadata on a payout. [See the documentation](https://stripe.com/docs/api/payouts/update).", props: { app, diff --git a/components/stripe/actions/update-refund/update-refund.mjs b/components/stripe/actions/update-refund/update-refund.mjs index e154be31892ae..563e9abd14a0f 100644 --- a/components/stripe/actions/update-refund/update-refund.mjs +++ b/components/stripe/actions/update-refund/update-refund.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-update-refund", name: "Update a Refund", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Update the metadata on a refund. [See the documentation](https://stripe.com/docs/api/refunds/update).", props: { app, diff --git a/components/stripe/actions/void-invoice/void-invoice.mjs b/components/stripe/actions/void-invoice/void-invoice.mjs index 3c2df235ca366..f56524d7d1dfe 100644 --- a/components/stripe/actions/void-invoice/void-invoice.mjs +++ b/components/stripe/actions/void-invoice/void-invoice.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-void-invoice", name: "Void Invoice", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Void an invoice. [See the documentation](https://stripe.com/docs/api/invoices/void).", props: { app, diff --git a/components/stripe/actions/write-off-invoice/write-off-invoice.mjs b/components/stripe/actions/write-off-invoice/write-off-invoice.mjs index f8b4f275659da..0f8836e82df61 100644 --- a/components/stripe/actions/write-off-invoice/write-off-invoice.mjs +++ b/components/stripe/actions/write-off-invoice/write-off-invoice.mjs @@ -4,7 +4,12 @@ export default { key: "stripe-write-off-invoice", name: "Write Off Invoice", type: "action", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Mark an invoice as uncollectible. [See the documentation](https://stripe.com/docs/api/invoices/mark_uncollectible).", props: { app, diff --git a/components/stripo/actions/get-raw-html/get-raw-html.mjs b/components/stripo/actions/get-raw-html/get-raw-html.mjs index f7146d996e402..2f73967de4e58 100644 --- a/components/stripo/actions/get-raw-html/get-raw-html.mjs +++ b/components/stripo/actions/get-raw-html/get-raw-html.mjs @@ -4,7 +4,12 @@ export default { key: "stripo-get-raw-html", name: "Get Raw HTML & CSS", description: "Retrieves the HTML and CSS code of the selected email message in Stripo. [See the documentation](https://api.stripo.email/reference/getrawemail)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { stripo, diff --git a/components/stripo/actions/remove-email/remove-email.mjs b/components/stripo/actions/remove-email/remove-email.mjs index 0572393109732..5e97427eae916 100644 --- a/components/stripo/actions/remove-email/remove-email.mjs +++ b/components/stripo/actions/remove-email/remove-email.mjs @@ -4,7 +4,12 @@ export default { key: "stripo-remove-email", name: "Remove Email", description: "Removes an existing message from the user's project in Stripo. [See the documentation](https://api.stripo.email/reference/deleteemail)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { stripo, diff --git a/components/stripo/actions/search-emails/search-emails.mjs b/components/stripo/actions/search-emails/search-emails.mjs index b9c2a586cb4a5..975384c792d13 100644 --- a/components/stripo/actions/search-emails/search-emails.mjs +++ b/components/stripo/actions/search-emails/search-emails.mjs @@ -4,7 +4,12 @@ export default { key: "stripo-search-emails", name: "Search Emails", description: "Searches existing emails by search query in Stripo. [See the documentation](https://api.stripo.email/reference/findemails)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { stripo, diff --git a/components/suitedash/actions/create-company/create-company.mjs b/components/suitedash/actions/create-company/create-company.mjs index c497119ddf5a0..31f0f0a044fef 100644 --- a/components/suitedash/actions/create-company/create-company.mjs +++ b/components/suitedash/actions/create-company/create-company.mjs @@ -4,7 +4,12 @@ export default { key: "suitedash-create-company", name: "Create Company", description: "Creates a new company in SuiteDash. [See the documentation](https://app.suitedash.com/secure-api/swagger)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { suitedash, diff --git a/components/suitedash/actions/create-contact/create-contact.mjs b/components/suitedash/actions/create-contact/create-contact.mjs index e81198c85fae6..b55f394fbd5d5 100644 --- a/components/suitedash/actions/create-contact/create-contact.mjs +++ b/components/suitedash/actions/create-contact/create-contact.mjs @@ -4,7 +4,12 @@ export default { key: "suitedash-create-contact", name: "Create Contact", description: "Creates a new contact in SuiteDash. [See the documentation](https://app.suitedash.com/secure-api/swagger)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { suitedash, diff --git a/components/suitedash/actions/update-company/update-company.mjs b/components/suitedash/actions/update-company/update-company.mjs index ee0f0959e2182..904d68926d945 100644 --- a/components/suitedash/actions/update-company/update-company.mjs +++ b/components/suitedash/actions/update-company/update-company.mjs @@ -5,7 +5,12 @@ export default { key: "suitedash-update-company", name: "Update Company", description: "Updates an existing company's details in SuiteDash. [See the documentation](https://app.suitedash.com/secure-api/swagger)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { suitedash,