diff --git a/components/countdown_api/actions/get-product-data/get-product-data.mjs b/components/countdown_api/actions/get-product-data/get-product-data.mjs index e0b0259e0ba0c..87b9001474d73 100644 --- a/components/countdown_api/actions/get-product-data/get-product-data.mjs +++ b/components/countdown_api/actions/get-product-data/get-product-data.mjs @@ -4,7 +4,12 @@ export default { key: "countdown_api-get-product-data", name: "Get Product Data", description: "Retrieves data for a specific product on eBay using the Countdown API. [See the documentation](https://www.countdownapi.com/docs/ebay-product-data-api/parameters/product)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/countdown_api/actions/get-reviews/get-reviews.mjs b/components/countdown_api/actions/get-reviews/get-reviews.mjs index 56144a1002e1b..a7a2f2d2cd3a8 100644 --- a/components/countdown_api/actions/get-reviews/get-reviews.mjs +++ b/components/countdown_api/actions/get-reviews/get-reviews.mjs @@ -4,7 +4,12 @@ export default { key: "countdown_api-get-reviews", name: "Get Product Reviews", description: "Retrieves customer reviews for a specific product on eBay. [See the documentation](https://www.countdownapi.com/docs/ebay-product-data-api/parameters/reviews)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/countdown_api/actions/get-search-results/get-search-results.mjs b/components/countdown_api/actions/get-search-results/get-search-results.mjs index 2c25c763111d6..26949c7682c59 100644 --- a/components/countdown_api/actions/get-search-results/get-search-results.mjs +++ b/components/countdown_api/actions/get-search-results/get-search-results.mjs @@ -4,7 +4,12 @@ export default { key: "countdown_api-get-search-results", name: "Get Search Results from eBay", description: "Retrieves search results from eBay. [See the documentation](https://www.countdownapi.com/docs/ebay-product-data-api/parameters/search)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/cradl_ai/actions/parse-document-human-in-loop/parse-document-human-in-loop.mjs b/components/cradl_ai/actions/parse-document-human-in-loop/parse-document-human-in-loop.mjs index edb243e3f37c4..eb616dacb9153 100644 --- a/components/cradl_ai/actions/parse-document-human-in-loop/parse-document-human-in-loop.mjs +++ b/components/cradl_ai/actions/parse-document-human-in-loop/parse-document-human-in-loop.mjs @@ -5,7 +5,12 @@ export default { key: "cradl_ai-parse-document-human-in-loop", name: "Parse Document with Human in the Loop", description: "Sends a document to an existing flow for human-in-the-loop processing. [See the documentation](https://docs.cradl.ai/integrations/rest-api)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/cradl_ai/actions/parse-document/parse-document.mjs b/components/cradl_ai/actions/parse-document/parse-document.mjs index b65d210acaaca..96896480c3888 100644 --- a/components/cradl_ai/actions/parse-document/parse-document.mjs +++ b/components/cradl_ai/actions/parse-document/parse-document.mjs @@ -5,7 +5,12 @@ export default { key: "cradl_ai-parse-document", name: "Parse Document", description: "Parses data from a document using a custom selected model. [See the documentation](https://docs.cradl.ai/integrations/rest-api)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/craftboxx/actions/create-article/create-article.mjs b/components/craftboxx/actions/create-article/create-article.mjs index e13c5ec3d9567..32cd335c86944 100644 --- a/components/craftboxx/actions/create-article/create-article.mjs +++ b/components/craftboxx/actions/create-article/create-article.mjs @@ -6,7 +6,12 @@ export default { key: "craftboxx-create-article", name: "Create Article", description: "Creates a new article in Craftboxx. [See the documentation](https://api.craftboxx.de/docs/docs.json)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/craftboxx/actions/create-customer-and-mailing-address/create-customer-and-mailing-address.mjs b/components/craftboxx/actions/create-customer-and-mailing-address/create-customer-and-mailing-address.mjs index df0bdb3dbce67..0bdf2edefc28c 100644 --- a/components/craftboxx/actions/create-customer-and-mailing-address/create-customer-and-mailing-address.mjs +++ b/components/craftboxx/actions/create-customer-and-mailing-address/create-customer-and-mailing-address.mjs @@ -6,7 +6,12 @@ export default { key: "craftboxx-create-customer-and-mailing-address", name: "Create Customer and Mailing Address", description: "Creates a new customer along with their mailing address in Craftboxx. [See the documentation](https://api.craftboxx.de/docs/docs.json)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/craftboxx/actions/update-project-and-appointment/update-project-and-appointment.mjs b/components/craftboxx/actions/update-project-and-appointment/update-project-and-appointment.mjs index c585084d7a43e..d6739d0515eea 100644 --- a/components/craftboxx/actions/update-project-and-appointment/update-project-and-appointment.mjs +++ b/components/craftboxx/actions/update-project-and-appointment/update-project-and-appointment.mjs @@ -5,7 +5,12 @@ export default { key: "craftboxx-update-project-and-appointment", name: "Update Project and Appointment", description: "Applies updates to a project and its corresponding appointment in Craftboxx. [See the documentation](https://api.craftboxx.de/docs/docs.json)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/craftmypdf/actions/create-editor-session/create-editor-session.mjs b/components/craftmypdf/actions/create-editor-session/create-editor-session.mjs index fab1347aa4b4c..0d3b0f8562823 100644 --- a/components/craftmypdf/actions/create-editor-session/create-editor-session.mjs +++ b/components/craftmypdf/actions/create-editor-session/create-editor-session.mjs @@ -3,7 +3,12 @@ import craftmypdf from "../../craftmypdf.app.mjs"; export default { key: "craftmypdf-create-editor-session", name: "Create Editor Session", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a new PDF editor session. The PDF editor url can be embedded into an IFrame. [See the documentation](https://craftmypdf.com/docs/index.html#tag/Template-Management-API/operation/delete-template)", type: "action", props: { diff --git a/components/craftmypdf/actions/create-image/create-image.mjs b/components/craftmypdf/actions/create-image/create-image.mjs index cd9728d957430..31a8f09d1f34c 100644 --- a/components/craftmypdf/actions/create-image/create-image.mjs +++ b/components/craftmypdf/actions/create-image/create-image.mjs @@ -3,7 +3,12 @@ import craftmypdf from "../../craftmypdf.app.mjs"; export default { key: "craftmypdf-create-image", name: "Create Image", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a new image. [See the documentation](https://craftmypdf.com/docs/index.html#tag/PDF-Generation-API/operation/create-parallel)", type: "action", props: { diff --git a/components/craftmypdf/actions/create-pdf/create-pdf.mjs b/components/craftmypdf/actions/create-pdf/create-pdf.mjs index dc9f2c4327378..92107963e7f58 100644 --- a/components/craftmypdf/actions/create-pdf/create-pdf.mjs +++ b/components/craftmypdf/actions/create-pdf/create-pdf.mjs @@ -3,7 +3,12 @@ import craftmypdf from "../../craftmypdf.app.mjs"; export default { key: "craftmypdf-create-pdf", name: "Create PDF", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a new pdf. [See the documentation](https://craftmypdf.com/docs/index.html#tag/PDF-Generation-API/operation/create)", type: "action", props: { diff --git a/components/craftmypdf/actions/merge-pdf/merge-pdf.mjs b/components/craftmypdf/actions/merge-pdf/merge-pdf.mjs index 20dfeb673e1ad..d26421296330f 100644 --- a/components/craftmypdf/actions/merge-pdf/merge-pdf.mjs +++ b/components/craftmypdf/actions/merge-pdf/merge-pdf.mjs @@ -3,7 +3,12 @@ import craftmypdf from "../../craftmypdf.app.mjs"; export default { key: "craftmypdf-merge-pdf", name: "Merge PDF", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a PDF file from multiple templates. It merges all the PDFs into one. [See the documentation](https://craftmypdf.com/docs/index.html#tag/PDF-Generation-API/operation/create-merge)", type: "action", props: { diff --git a/components/credit_repair_cloud/actions/create-client/create-client.mjs b/components/credit_repair_cloud/actions/create-client/create-client.mjs index 07a3e50d95718..2a1d0c4748aa0 100644 --- a/components/credit_repair_cloud/actions/create-client/create-client.mjs +++ b/components/credit_repair_cloud/actions/create-client/create-client.mjs @@ -10,7 +10,12 @@ export default { name: "Create Client", description: "Create Client [See the documentation](https://app.creditrepaircloud.com/webapi/examples).", key: "credit_repair_cloud-create-client", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/credit_repair_cloud/actions/delete-client/delete-client.mjs b/components/credit_repair_cloud/actions/delete-client/delete-client.mjs index 389acc1119466..a96ec6300b058 100644 --- a/components/credit_repair_cloud/actions/delete-client/delete-client.mjs +++ b/components/credit_repair_cloud/actions/delete-client/delete-client.mjs @@ -10,7 +10,12 @@ export default { name: "Delete Client", description: "Delete Client [See the documentation](https://app.creditrepaircloud.com/webapi/examples).", key: "credit_repair_cloud-delete-client", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/credit_repair_cloud/actions/get-client/get-client.mjs b/components/credit_repair_cloud/actions/get-client/get-client.mjs index 150d1e86a28c3..077e1a1b99501 100644 --- a/components/credit_repair_cloud/actions/get-client/get-client.mjs +++ b/components/credit_repair_cloud/actions/get-client/get-client.mjs @@ -10,7 +10,12 @@ export default { name: "Get Client", description: "Get Client [See the documentation](https://app.creditrepaircloud.com/webapi/examples).", key: "credit_repair_cloud-get-client", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/credit_repair_cloud/actions/update-client/update-client.mjs b/components/credit_repair_cloud/actions/update-client/update-client.mjs index d7bbe57ef8a17..219d5460785ab 100644 --- a/components/credit_repair_cloud/actions/update-client/update-client.mjs +++ b/components/credit_repair_cloud/actions/update-client/update-client.mjs @@ -10,7 +10,12 @@ export default { name: "Update Client", description: "Update Client [See the documentation](https://app.creditrepaircloud.com/webapi/examples).", key: "credit_repair_cloud-update-client", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/crimeometer/actions/retrieve-raw-data-coverage/retrieve-raw-data-coverage.mjs b/components/crimeometer/actions/retrieve-raw-data-coverage/retrieve-raw-data-coverage.mjs index 0c8980c51b412..ae2c4b2641f4a 100644 --- a/components/crimeometer/actions/retrieve-raw-data-coverage/retrieve-raw-data-coverage.mjs +++ b/components/crimeometer/actions/retrieve-raw-data-coverage/retrieve-raw-data-coverage.mjs @@ -6,7 +6,12 @@ export default { name: "Retrieve Raw Data Coverage", description: "Provides raw data coverage information grouped by cities. [See the docs](https://www.crimeometer.com/crime-data-api-documentation) and [here](https://documenter.getpostman.com/view/12755833/TzK2auPn#ea645970-96d9-4fbd-8c29-d070f08b1f12).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, }, diff --git a/components/crimeometer/actions/retrieve-raw-data/retrieve-raw-data.mjs b/components/crimeometer/actions/retrieve-raw-data/retrieve-raw-data.mjs index d1a683d58dfa4..d451e86e46ad4 100644 --- a/components/crimeometer/actions/retrieve-raw-data/retrieve-raw-data.mjs +++ b/components/crimeometer/actions/retrieve-raw-data/retrieve-raw-data.mjs @@ -6,7 +6,12 @@ export default { name: "Retrieve Raw Data", description: "Provides incidents raw data. [See the docs](https://www.crimeometer.com/crime-data-api-documentation) and [here](https://documenter.getpostman.com/view/12755833/TzK2auPn#0486d39c-a839-4fa6-a26b-104821b1813f).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, lat: { diff --git a/components/crimeometer/actions/retrieve-stats/retrieve-stats.mjs b/components/crimeometer/actions/retrieve-stats/retrieve-stats.mjs index c87836b673cfd..7793babb5dc60 100644 --- a/components/crimeometer/actions/retrieve-stats/retrieve-stats.mjs +++ b/components/crimeometer/actions/retrieve-stats/retrieve-stats.mjs @@ -6,7 +6,12 @@ export default { name: "Retrieve Stats", description: "Provides incidents statistics. [See the docs](https://www.crimeometer.com/crime-data-api-documentation) and [here](https://documenter.getpostman.com/view/12755833/TzK2auPn#f00742da-8325-4234-bb26-32b4ade34bd3).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, lat: { diff --git a/components/crove_app/actions/complete-document/complete-document.mjs b/components/crove_app/actions/complete-document/complete-document.mjs index c7dfe977cce08..9722f4678485e 100644 --- a/components/crove_app/actions/complete-document/complete-document.mjs +++ b/components/crove_app/actions/complete-document/complete-document.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-complete-document", name: "Complete Document", description: "Mark the document as completed", - version: "1.0.2", + version: "1.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/create-document/create-document.mjs b/components/crove_app/actions/create-document/create-document.mjs index 8f7df068a8725..50b7649e64784 100644 --- a/components/crove_app/actions/create-document/create-document.mjs +++ b/components/crove_app/actions/create-document/create-document.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-create-document", name: "Create Document", description: "Create a new document.", - version: "1.0.2", + version: "1.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/create-invitation-link/create-invitation-link.mjs b/components/crove_app/actions/create-invitation-link/create-invitation-link.mjs index e9ab8390305f0..7dfcbd7482323 100644 --- a/components/crove_app/actions/create-invitation-link/create-invitation-link.mjs +++ b/components/crove_app/actions/create-invitation-link/create-invitation-link.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-create-invitation-link", name: "Create Invitation Link", description: "Create invitation link to fill or sign the document. ", - version: "1.0.2", + version: "1.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/generate-pdf-from-document/generate-pdf-from-document.mjs b/components/crove_app/actions/generate-pdf-from-document/generate-pdf-from-document.mjs index 5accfcf587130..9659697db5e95 100644 --- a/components/crove_app/actions/generate-pdf-from-document/generate-pdf-from-document.mjs +++ b/components/crove_app/actions/generate-pdf-from-document/generate-pdf-from-document.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-generate-pdf-from-document", name: "Generate PDF from Document", description: "Generate PDF of a document and return PDF URL.", - version: "1.0.2", + version: "1.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/generate-template-pdf/generate-template-pdf.mjs b/components/crove_app/actions/generate-template-pdf/generate-template-pdf.mjs index 2f5b40c9030fd..9f3b90ba7d648 100644 --- a/components/crove_app/actions/generate-template-pdf/generate-template-pdf.mjs +++ b/components/crove_app/actions/generate-template-pdf/generate-template-pdf.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-generate-template-pdf", name: "Generate Document PDF From Template", description: "Generate PDF of a document created from the template", - version: "2.0.2", + version: "2.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/get-document-details/get-document-details.mjs b/components/crove_app/actions/get-document-details/get-document-details.mjs index abe39060844e1..79f46114ac303 100644 --- a/components/crove_app/actions/get-document-details/get-document-details.mjs +++ b/components/crove_app/actions/get-document-details/get-document-details.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-get-document-details", name: "Get Document Details", description: "Get details of a document. Example: Name, Current Status, etc.", - version: "1.0.2", + version: "1.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/send-document/send-document.mjs b/components/crove_app/actions/send-document/send-document.mjs index 54d472fb26291..646872bfcabb7 100644 --- a/components/crove_app/actions/send-document/send-document.mjs +++ b/components/crove_app/actions/send-document/send-document.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-send-document", name: "Send Document", description: "Send email invitation link to fill & sign the document. ", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/submit-document/submit-document.mjs b/components/crove_app/actions/submit-document/submit-document.mjs index 1f79c195cca70..c5f728449ae63 100644 --- a/components/crove_app/actions/submit-document/submit-document.mjs +++ b/components/crove_app/actions/submit-document/submit-document.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-submit-document", name: "Submit Document", description: "Submit the document like you do it via Crove form.", - version: "1.0.2", + version: "1.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/update-document-details/update-document-details.mjs b/components/crove_app/actions/update-document-details/update-document-details.mjs index f61e577be40c8..f16c60d5231e5 100644 --- a/components/crove_app/actions/update-document-details/update-document-details.mjs +++ b/components/crove_app/actions/update-document-details/update-document-details.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-update-document-details", name: "Update Document Details", description: "Update details of a document. Example: Name, Current Status, etc.", - version: "1.0.2", + version: "1.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crove_app/actions/update-document/update-document.mjs b/components/crove_app/actions/update-document/update-document.mjs index 23fb6085117aa..1e622a14d5d11 100644 --- a/components/crove_app/actions/update-document/update-document.mjs +++ b/components/crove_app/actions/update-document/update-document.mjs @@ -4,7 +4,12 @@ export default { key: "crove_app-update-document", name: "Update Document", description: "Update values of variables of a document.", - version: "1.0.2", + version: "1.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { croveApp, diff --git a/components/crowdin/actions/add-file/add-file.mjs b/components/crowdin/actions/add-file/add-file.mjs index c6e4d4fd4097c..4fbd942764268 100644 --- a/components/crowdin/actions/add-file/add-file.mjs +++ b/components/crowdin/actions/add-file/add-file.mjs @@ -7,7 +7,12 @@ export default { key: "crowdin-add-file", name: "Add File to Project", description: "Adds a file into the created project. [See the documentation](https://developer.crowdin.com/api/v2/#tag/source-files/operation/api.projects.files.post)", - version: "1.0.1", + version: "1.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { crowdin, diff --git a/components/crowdin/actions/create-project/create-project.mjs b/components/crowdin/actions/create-project/create-project.mjs index 004cd4499cb7f..cb2f676df7415 100644 --- a/components/crowdin/actions/create-project/create-project.mjs +++ b/components/crowdin/actions/create-project/create-project.mjs @@ -11,7 +11,12 @@ export default { key: "crowdin-create-project", name: "Create Project", description: "Creates a new project within Crowdin. [See the documentation](https://support.crowdin.com/developer/api/v2/#/projects-api/create-project)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { crowdin, diff --git a/components/crowdin/actions/translate-via-machine-translation/translate-via-machine-translation.mjs b/components/crowdin/actions/translate-via-machine-translation/translate-via-machine-translation.mjs index e6f46ed2157bc..36d56349c4d1c 100644 --- a/components/crowdin/actions/translate-via-machine-translation/translate-via-machine-translation.mjs +++ b/components/crowdin/actions/translate-via-machine-translation/translate-via-machine-translation.mjs @@ -5,7 +5,12 @@ export default { key: "crowdin-translate-via-machine-translation", name: "Translate via Machine Translation", description: "Performs machine translation of the uploaded files. [See the documentation](https://support.crowdin.com/developer/api/v2/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { crowdin, diff --git a/components/crunchbase/actions/get-organization/get-organization.mjs b/components/crunchbase/actions/get-organization/get-organization.mjs index cc5cfd29ca300..bc28bb2531a47 100644 --- a/components/crunchbase/actions/get-organization/get-organization.mjs +++ b/components/crunchbase/actions/get-organization/get-organization.mjs @@ -4,7 +4,12 @@ export default { key: "crunchbase-get-organization", name: "Get Organization Details", description: "Retrieve details about an organization. [See the documentation](https://data.crunchbase.com/reference/get_data-entities-organizations-entity-id)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { crunchbase, diff --git a/components/crunchbase/actions/search-organizations/search-organizations.mjs b/components/crunchbase/actions/search-organizations/search-organizations.mjs index e6400c11154f7..6ace8b4c996ed 100644 --- a/components/crunchbase/actions/search-organizations/search-organizations.mjs +++ b/components/crunchbase/actions/search-organizations/search-organizations.mjs @@ -6,7 +6,12 @@ export default { key: "crunchbase-search-organizations", name: "Search Organizations", description: "Search for organizations based on specified criteria. [See the documentation](https://data.crunchbase.com/reference/post_data-searches-organizations)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { crunchbase, diff --git a/components/cufinder/actions/find-company-email/find-company-email.mjs b/components/cufinder/actions/find-company-email/find-company-email.mjs index aa8e992351822..0406bea510876 100644 --- a/components/cufinder/actions/find-company-email/find-company-email.mjs +++ b/components/cufinder/actions/find-company-email/find-company-email.mjs @@ -4,7 +4,12 @@ export default { key: "cufinder-find-company-email", name: "Find Company Email", description: "Finds a company's email using the domain. [See the documentation](https://apidoc.cufinder.io/apis/#company-email-finder-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { cufinder, diff --git a/components/cufinder/actions/find-company-phone/find-company-phone.mjs b/components/cufinder/actions/find-company-phone/find-company-phone.mjs index c4eb2da7e2ed4..d1862192576ea 100644 --- a/components/cufinder/actions/find-company-phone/find-company-phone.mjs +++ b/components/cufinder/actions/find-company-phone/find-company-phone.mjs @@ -4,7 +4,12 @@ export default { key: "cufinder-find-company-phone", name: "Find Company Phone", description: "Find a company phone using the domain. [See the documentation](https://apidoc.cufinder.io/apis/#company-phone-finder-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { cufinder, diff --git a/components/cufinder/actions/find-company-website/find-company-website.mjs b/components/cufinder/actions/find-company-website/find-company-website.mjs index 5a8706d904736..d3df73e67719b 100644 --- a/components/cufinder/actions/find-company-website/find-company-website.mjs +++ b/components/cufinder/actions/find-company-website/find-company-website.mjs @@ -4,7 +4,12 @@ export default { key: "cufinder-find-company-website", name: "Find Company Website", description: "Finds a company's website using the company name. [See the documentation](https://apidoc.cufinder.io/apis/#company-website-finder-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { cufinder, diff --git a/components/curated/actions/create-link/create-link.mjs b/components/curated/actions/create-link/create-link.mjs index fe74d93a9035f..38f0cea402cd4 100644 --- a/components/curated/actions/create-link/create-link.mjs +++ b/components/curated/actions/create-link/create-link.mjs @@ -2,7 +2,12 @@ import curated from "../../curated.app.mjs"; export default { name: "Create Link", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "curated-create-link", description: "Creates a link. [See docs here](https://support.curated.co/help/managing-links-with-the-api#h_9993192972131638320427148)", type: "action", diff --git a/components/customer_fields/actions/create-customer/create-customer.mjs b/components/customer_fields/actions/create-customer/create-customer.mjs index 4eebf49b7f6f8..aeb9eaf07e72e 100644 --- a/components/customer_fields/actions/create-customer/create-customer.mjs +++ b/components/customer_fields/actions/create-customer/create-customer.mjs @@ -7,7 +7,12 @@ export default { name: "Create Customer", description: "Create a new customer with detailed attributes using the provided data. [See the documentation](https://docs.customerfields.com/#8a70d5ee-da8f-4ef0-8b08-9c1882b4da04).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, methods: { ...common.methods, createCustomer(args = {}) { diff --git a/components/customer_fields/actions/update-customer/update-customer.mjs b/components/customer_fields/actions/update-customer/update-customer.mjs index 5d8d70b61c367..ac28461d30098 100644 --- a/components/customer_fields/actions/update-customer/update-customer.mjs +++ b/components/customer_fields/actions/update-customer/update-customer.mjs @@ -7,7 +7,12 @@ export default { name: "Update Customer", description: "Update an existing customer's information with new provided data. [See the documentation](https://docs.customerfields.com/#26b4ad8d-2503-4ac9-bc7f-e8eeeaf89947).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { ...common.props, customerId: { diff --git a/components/customer_io/actions/add-customers-to-segment/add-customers-to-segment.mjs b/components/customer_io/actions/add-customers-to-segment/add-customers-to-segment.mjs index b6e0c9d62f290..9b02d36de0645 100644 --- a/components/customer_io/actions/add-customers-to-segment/add-customers-to-segment.mjs +++ b/components/customer_io/actions/add-customers-to-segment/add-customers-to-segment.mjs @@ -5,7 +5,12 @@ export default { key: "customer_io-add-customers-to-segment", name: "Add Customers to Segment", description: "Add people to a manual segment by ID. You are limited to 1000 customer IDs per request. [See the docs here](https://www.customer.io/docs/api/#operation/add_to_segment)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/customer_io/actions/create-or-update-customer/create-or-update-customer.mjs b/components/customer_io/actions/create-or-update-customer/create-or-update-customer.mjs index eaf9ca1e7c7fc..3748c74b231e7 100644 --- a/components/customer_io/actions/create-or-update-customer/create-or-update-customer.mjs +++ b/components/customer_io/actions/create-or-update-customer/create-or-update-customer.mjs @@ -4,7 +4,12 @@ export default { key: "customer_io-create-or-update-customer", name: "Create or Update Customer", description: "Creates or update a customer. [See the docs here](https://customer.io/docs/api/#apitrackcustomerscustomers_update)", - version: "0.2.0", + version: "0.2.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/customer_io/actions/send-event-to-customer-io/send-event-to-customer-io.mjs b/components/customer_io/actions/send-event-to-customer-io/send-event-to-customer-io.mjs index ceb26130d650a..a0911d1afac2e 100644 --- a/components/customer_io/actions/send-event-to-customer-io/send-event-to-customer-io.mjs +++ b/components/customer_io/actions/send-event-to-customer-io/send-event-to-customer-io.mjs @@ -4,7 +4,12 @@ export default { key: "customer_io-send-event-to-customer-io", name: "Send Event To Customer io", description: "Sends, tracks a customer event to Customer io. [See the docs here](https://customer.io/docs/api/#operation/track)", - version: "0.3.0", + version: "0.3.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/customer_io/actions/send-event-to/send-event-to.mjs b/components/customer_io/actions/send-event-to/send-event-to.mjs index 203ada20f8a2e..835301d0ec913 100644 --- a/components/customer_io/actions/send-event-to/send-event-to.mjs +++ b/components/customer_io/actions/send-event-to/send-event-to.mjs @@ -4,7 +4,12 @@ export default { key: "customer_io-send-event-to", name: "Send Event To", description: "Sends an event to Customer.io. [See the docs here](https://customer.io/docs/api/#operation/track)", - version: "0.2.0", + version: "0.2.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/customjs/actions/convert-html-to-pdf/convert-html-to-pdf.mjs b/components/customjs/actions/convert-html-to-pdf/convert-html-to-pdf.mjs index e3dbe1f0e6a8c..1a54c277aa34f 100644 --- a/components/customjs/actions/convert-html-to-pdf/convert-html-to-pdf.mjs +++ b/components/customjs/actions/convert-html-to-pdf/convert-html-to-pdf.mjs @@ -6,7 +6,12 @@ export default { key: "customjs-convert-html-to-pdf", name: "Convert HTML to PDF", description: "Converts an HTML string to a PDF document. [See the documentation](https://www.customjs.space/api/docs#_1-html-to-pdf)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { customjs, diff --git a/components/customjs/actions/convert-html-to-png/convert-html-to-png.mjs b/components/customjs/actions/convert-html-to-png/convert-html-to-png.mjs index c34e04177da14..e62208c621ede 100644 --- a/components/customjs/actions/convert-html-to-png/convert-html-to-png.mjs +++ b/components/customjs/actions/convert-html-to-png/convert-html-to-png.mjs @@ -6,7 +6,12 @@ export default { key: "customjs-convert-html-to-png", name: "Convert HTML to PNG", description: "Converts an HTML string to a PNG image. [See the documentation](https://www.customjs.space/api/docs#_4-html-to-png)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { customjs, diff --git a/components/customjs/actions/create-screenshot/create-screenshot.mjs b/components/customjs/actions/create-screenshot/create-screenshot.mjs index 970c141c4e371..affbeff9fecef 100644 --- a/components/customjs/actions/create-screenshot/create-screenshot.mjs +++ b/components/customjs/actions/create-screenshot/create-screenshot.mjs @@ -6,7 +6,12 @@ export default { key: "customjs-create-screenshot", name: "Create Screenshot", description: "Create a screenshot of a website. [See the documentation](https://www.customjs.space/api/docs#_3-create-screenshot)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { customjs, diff --git a/components/customjs/actions/merge-pdfs/merge-pdfs.mjs b/components/customjs/actions/merge-pdfs/merge-pdfs.mjs index 49cb30bc6c6e1..860df71cfcbbd 100644 --- a/components/customjs/actions/merge-pdfs/merge-pdfs.mjs +++ b/components/customjs/actions/merge-pdfs/merge-pdfs.mjs @@ -6,7 +6,12 @@ export default { key: "customjs-merge-pdfs", name: "Merge PDFs", description: "Merges multiple PDF documents into one. [See the documentation](https://www.customjs.space/api/docs#_2-merge-pdfs)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { customjs, diff --git a/components/customjs/actions/run-puppeteer/run-puppeteer.mjs b/components/customjs/actions/run-puppeteer/run-puppeteer.mjs index 00a791df2ff1f..6f249bece036a 100644 --- a/components/customjs/actions/run-puppeteer/run-puppeteer.mjs +++ b/components/customjs/actions/run-puppeteer/run-puppeteer.mjs @@ -6,7 +6,12 @@ export default { key: "customjs-run-puppeteer", name: "Run Puppeteer", description: "Run Puppeteer. [See the documentation](https://www.customjs.space/api/docs#_5-run-puppeteer)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { customjs, diff --git a/components/cutt_ly/actions/get-url-analytics/get-url-analytics.mjs b/components/cutt_ly/actions/get-url-analytics/get-url-analytics.mjs index 619a42b9c15ac..ba29fea03ca56 100644 --- a/components/cutt_ly/actions/get-url-analytics/get-url-analytics.mjs +++ b/components/cutt_ly/actions/get-url-analytics/get-url-analytics.mjs @@ -4,7 +4,12 @@ export default { key: "cutt_ly-get-url-analytics", name: "Get URL Analytics", description: "Retrieves statistical information about a shortened url. [See the documentation](https://cutt.ly/cuttly-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { cuttLy, diff --git a/components/cutt_ly/actions/shorten-url/shorten-url.mjs b/components/cutt_ly/actions/shorten-url/shorten-url.mjs index 8f0dbb19181d7..c57efde8a494c 100644 --- a/components/cutt_ly/actions/shorten-url/shorten-url.mjs +++ b/components/cutt_ly/actions/shorten-url/shorten-url.mjs @@ -4,7 +4,12 @@ export default { key: "cutt_ly-shorten-url", name: "Shorten URL", description: "Returns a shortened URL when given a target URL as a prop. [See the documentation](https://cutt.ly/cuttly-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { cuttLy, diff --git a/components/cutt_ly/actions/update-source-url/update-source-url.mjs b/components/cutt_ly/actions/update-source-url/update-source-url.mjs index d48154d7b9c60..6458b2d2e4903 100644 --- a/components/cutt_ly/actions/update-source-url/update-source-url.mjs +++ b/components/cutt_ly/actions/update-source-url/update-source-url.mjs @@ -4,7 +4,12 @@ export default { key: "cutt_ly-update-source-url", name: "Update Source URL", description: "Changes the source URL of a previously shortened URL. Requires a Paid Subscription. [See the documentation](https://cutt.ly/cuttly-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { cuttLy, diff --git a/components/d7_networks/actions/send-sms/send-sms.mjs b/components/d7_networks/actions/send-sms/send-sms.mjs index 2691c6ad9632b..6437b953d4c43 100644 --- a/components/d7_networks/actions/send-sms/send-sms.mjs +++ b/components/d7_networks/actions/send-sms/send-sms.mjs @@ -3,7 +3,12 @@ import constants from "../../common/constants.mjs"; export default { name: "Send SMS", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "d7_networks-send-sms", description: "Sending sms via D7 networks! [See the docs](https://d7networks.com/docs/Messages/Send_Message/)", type: "action", diff --git a/components/dachser/actions/get-delivery-order-status/get-delivery-order-status.mjs b/components/dachser/actions/get-delivery-order-status/get-delivery-order-status.mjs index 636db682a4196..4a3f03dd47fc4 100644 --- a/components/dachser/actions/get-delivery-order-status/get-delivery-order-status.mjs +++ b/components/dachser/actions/get-delivery-order-status/get-delivery-order-status.mjs @@ -4,7 +4,12 @@ export default { name: "Get Delivery Order Status", description: "Retrieve the delivery order status using reference and customer details. [See the documentation](https://api-portal.dachser.com/bi.b2b.portal/api/library/deliveryorderstatus?6)", key: "dachser-get-delivery-order-status", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/dachser/actions/get-shipment-history/get-shipment-history.mjs b/components/dachser/actions/get-shipment-history/get-shipment-history.mjs index 5d86615438116..ed1b86e0ffc38 100644 --- a/components/dachser/actions/get-shipment-history/get-shipment-history.mjs +++ b/components/dachser/actions/get-shipment-history/get-shipment-history.mjs @@ -4,7 +4,12 @@ export default { name: "Get Shipment History", description: "Retrieve the full history for a shipment by tracking number and customer ID. [See the documentation](https://api-portal.dachser.com/bi.b2b.portal/api/library/shipmenthistory?5)", key: "dachser-get-shipment-history", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/dachser/actions/get-shipment-status/get-shipment-status.mjs b/components/dachser/actions/get-shipment-status/get-shipment-status.mjs index f572db2e6747b..1ce2eb4d5a13f 100644 --- a/components/dachser/actions/get-shipment-status/get-shipment-status.mjs +++ b/components/dachser/actions/get-shipment-status/get-shipment-status.mjs @@ -4,7 +4,12 @@ export default { name: "Get Shipment Status", description: "Retrieve the current status for a shipment by tracking number and customer ID. [See the documentation](https://api-portal.dachser.com/bi.b2b.portal/api/library/shipmentstatus?1)", key: "dachser-get-shipment-status", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/daffy/actions/create-donation/create-donation.mjs b/components/daffy/actions/create-donation/create-donation.mjs index 2d2d71f0f9ae5..2517fe4aacb81 100644 --- a/components/daffy/actions/create-donation/create-donation.mjs +++ b/components/daffy/actions/create-donation/create-donation.mjs @@ -4,7 +4,12 @@ import daffy from "../../daffy.app.mjs"; export default { key: "daffy-create-donation", name: "Create Donation", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a new donation. [See the documentation](https://docs.daffy.org/ref/donations#create-donation)", type: "action", props: { diff --git a/components/dailybot/actions/give-kudos/give-kudos.mjs b/components/dailybot/actions/give-kudos/give-kudos.mjs index 80b822fc33ed5..69ff33f137924 100644 --- a/components/dailybot/actions/give-kudos/give-kudos.mjs +++ b/components/dailybot/actions/give-kudos/give-kudos.mjs @@ -5,7 +5,12 @@ export default { key: "dailybot-give-kudos", name: "Give Kudos", description: "Sends kudos to selected user(s) using DailyBot. [See the documentation](https://www.dailybot.com/docs/api-methods)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { dailybot, diff --git a/components/dailybot/actions/send-message/send-message.mjs b/components/dailybot/actions/send-message/send-message.mjs index 021993af58208..cff608d859534 100644 --- a/components/dailybot/actions/send-message/send-message.mjs +++ b/components/dailybot/actions/send-message/send-message.mjs @@ -5,7 +5,12 @@ export default { key: "dailybot-send-message", name: "Send Message", description: "Dispatches a message to designated users or groups in DailyBot. Required are the message content and recipients' IDs, and channels or rooms are optional targets. [See the documentation](https://www.dailybot.com/docs/api-methods)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { dailybot, diff --git a/components/dart/actions/create-task/create-task.mjs b/components/dart/actions/create-task/create-task.mjs index 99142908e1917..7a80232be6ea1 100644 --- a/components/dart/actions/create-task/create-task.mjs +++ b/components/dart/actions/create-task/create-task.mjs @@ -4,7 +4,12 @@ export default { key: "dart-create-task", name: "Create Task", description: "Creates a new task within a dartboard. [See the documentation](https://app.itsdart.com/api/v0/docs/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { dart, diff --git a/components/dart/actions/find-or-create-task/find-or-create-task.mjs b/components/dart/actions/find-or-create-task/find-or-create-task.mjs index babda26ed5d4c..d0fd9591561b1 100644 --- a/components/dart/actions/find-or-create-task/find-or-create-task.mjs +++ b/components/dart/actions/find-or-create-task/find-or-create-task.mjs @@ -4,7 +4,12 @@ export default { key: "dart-find-or-create-task", name: "Find or Create Task", description: "Checks for an existing task within a dartboard using the 'task-name'. If it doesn't exist, a new task is created. [See the documentation](https://app.itsdart.com/api/v0/docs/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { dart, diff --git a/components/dart/actions/update-task/update-task.mjs b/components/dart/actions/update-task/update-task.mjs index 0e3d3ccbbd000..166ca6cad5f98 100644 --- a/components/dart/actions/update-task/update-task.mjs +++ b/components/dart/actions/update-task/update-task.mjs @@ -4,7 +4,12 @@ export default { key: "dart-update-task", name: "Update Task", description: "Updates an existing task within a dartboard. [See the documentation](https://app.itsdart.com/api/v0/docs/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { dart, diff --git a/components/data_police_uk/actions/fetch-forces/fetch-forces.mjs b/components/data_police_uk/actions/fetch-forces/fetch-forces.mjs index b4203162b3558..08ea07e6eadcc 100644 --- a/components/data_police_uk/actions/fetch-forces/fetch-forces.mjs +++ b/components/data_police_uk/actions/fetch-forces/fetch-forces.mjs @@ -3,7 +3,12 @@ import dataPoliceUK from "../../data_police_uk.app.mjs"; export default { key: "data_police_uk-fetch-forces", name: "Fetch Forces", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Get a list of police forces and contact information within a particular area. [See the docs here](https://data.police.uk/docs/method/force)", type: "action", props: { diff --git a/components/data_police_uk/actions/obtain-crime-outcomes/obtain-crime-outcomes.mjs b/components/data_police_uk/actions/obtain-crime-outcomes/obtain-crime-outcomes.mjs index 3ca07d9d095a1..b4f0c81044011 100644 --- a/components/data_police_uk/actions/obtain-crime-outcomes/obtain-crime-outcomes.mjs +++ b/components/data_police_uk/actions/obtain-crime-outcomes/obtain-crime-outcomes.mjs @@ -4,7 +4,12 @@ import dataPoliceUK from "../../data_police_uk.app.mjs"; export default { key: "data_police_uk-obtain-crime-outcomes", name: "Obtain Crime Outcomes", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Access the specific outcomes of reported crimes within a given location and date range. [See the docs here](https://data.police.uk/docs/method/outcomes-at-location/)", type: "action", props: { diff --git a/components/data_police_uk/actions/retrieve-crime-data/retrieve-crime-data.mjs b/components/data_police_uk/actions/retrieve-crime-data/retrieve-crime-data.mjs index b8af6d4458bf8..d572fe0555b5b 100644 --- a/components/data_police_uk/actions/retrieve-crime-data/retrieve-crime-data.mjs +++ b/components/data_police_uk/actions/retrieve-crime-data/retrieve-crime-data.mjs @@ -3,7 +3,12 @@ import dataPoliceUK from "../../data_police_uk.app.mjs"; export default { key: "data_police_uk-retrieve-crime-data", name: "Retrieve Crime Data", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Obtain crime data for a specific location and date range. [See the docs here](https://data.police.uk/docs/method/crime-street/)", type: "action", props: { diff --git a/components/data_stores/actions/add-update-multiple-records/add-update-multiple-records.mjs b/components/data_stores/actions/add-update-multiple-records/add-update-multiple-records.mjs index 1927ff7a64564..0fee3702a0a8b 100644 --- a/components/data_stores/actions/add-update-multiple-records/add-update-multiple-records.mjs +++ b/components/data_stores/actions/add-update-multiple-records/add-update-multiple-records.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-add-update-multiple-records", name: "Add or update multiple records", description: "Add or update multiple records to your [Pipedream Data Store](https://pipedream.com/data-stores/).", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/add-update-record/add-update-record.mjs b/components/data_stores/actions/add-update-record/add-update-record.mjs index 490d6403ff2b7..67afe6ba99cf1 100644 --- a/components/data_stores/actions/add-update-record/add-update-record.mjs +++ b/components/data_stores/actions/add-update-record/add-update-record.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-add-update-record", name: "Add or update a single record", description: "Add or update a single record in your [Pipedream Data Store](https://pipedream.com/data-stores/).", - version: "0.0.10", + version: "0.0.11", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/append-to-record/append-to-record.mjs b/components/data_stores/actions/append-to-record/append-to-record.mjs index 42e8a8a403c2d..09da88fa018c7 100644 --- a/components/data_stores/actions/append-to-record/append-to-record.mjs +++ b/components/data_stores/actions/append-to-record/append-to-record.mjs @@ -5,7 +5,12 @@ export default { key: "data_stores-append-to-record", name: "Append to record", description: "Append to a record in your data store [Pipedream Data Store](https://pipedream.com/data-stores/). If the record does not exist, a new record will be created in an array format.", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/delete-all-records/delete-all-records.mjs b/components/data_stores/actions/delete-all-records/delete-all-records.mjs index 3ff3152d6d846..fce5a2bc3de40 100644 --- a/components/data_stores/actions/delete-all-records/delete-all-records.mjs +++ b/components/data_stores/actions/delete-all-records/delete-all-records.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-delete-all-records", name: "Delete All Records", description: "Delete all records in your [Pipedream Data Store](https://pipedream.com/data-stores/).", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/delete-single-record/delete-single-record.mjs b/components/data_stores/actions/delete-single-record/delete-single-record.mjs index 9fcb5eed156e6..ccff00129e0d6 100644 --- a/components/data_stores/actions/delete-single-record/delete-single-record.mjs +++ b/components/data_stores/actions/delete-single-record/delete-single-record.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-delete-single-record", name: "Delete a single record", description: "Delete a single record in your [Pipedream Data Store](https://pipedream.com/data-stores/).", - version: "0.0.10", + version: "0.0.11", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/get-all-records/get-all-records.mjs b/components/data_stores/actions/get-all-records/get-all-records.mjs index d3f36b086efb8..8f85a5647a780 100644 --- a/components/data_stores/actions/get-all-records/get-all-records.mjs +++ b/components/data_stores/actions/get-all-records/get-all-records.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-get-all-records", name: "Get all records", description: "Get all records in your [Pipedream Data Store](https://pipedream.com/data-stores/). The memory consumption of the workflow can be affected, since this action will be exposing, to the workflow, the entire data from the selected datastore.", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/get-difference/get-difference.mjs b/components/data_stores/actions/get-difference/get-difference.mjs index 5ee0eb14315dc..42fcdf81f05ff 100644 --- a/components/data_stores/actions/get-difference/get-difference.mjs +++ b/components/data_stores/actions/get-difference/get-difference.mjs @@ -5,7 +5,12 @@ export default { key: "data_stores-get-difference", name: "Get Difference", description: "Get the difference between two data stores. Result contains key/value pairs where the key exists in one data store, but not the other. [Pipedream Data Stores](https://pipedream.com/data-stores/).", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/get-record-keys/get-record-keys.mjs b/components/data_stores/actions/get-record-keys/get-record-keys.mjs index 511d990c556db..17f1f07ed511a 100644 --- a/components/data_stores/actions/get-record-keys/get-record-keys.mjs +++ b/components/data_stores/actions/get-record-keys/get-record-keys.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-get-record-keys", name: "Get Record Keys", description: "Get all record keys in your [Pipedream Data Store](https://pipedream.com/data-stores/) that matches with your query. The memory consumption of the workflow can be affected, since this action will be exposing, to the workflow, the entire data from the selected datastore", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/get-record-or-create/get-record-or-create.mjs b/components/data_stores/actions/get-record-or-create/get-record-or-create.mjs index 4b587a539d1c4..2f93c67dc9517 100644 --- a/components/data_stores/actions/get-record-or-create/get-record-or-create.mjs +++ b/components/data_stores/actions/get-record-or-create/get-record-or-create.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-get-record-or-create", name: "Get record (or create one if not found)", description: "Get a single record in your [Pipedream Data Store](https://pipedream.com/data-stores/) or create one if it doesn't exist.", - version: "0.0.13", + version: "0.0.14", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/has-key-or-create/has-key-or-create.mjs b/components/data_stores/actions/has-key-or-create/has-key-or-create.mjs index 73196b670db5e..0133842e26871 100644 --- a/components/data_stores/actions/has-key-or-create/has-key-or-create.mjs +++ b/components/data_stores/actions/has-key-or-create/has-key-or-create.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-has-key-or-create", name: "Check for existence of key", description: "Check if a key exists in your [Pipedream Data Store](https://pipedream.com/data-stores/) or create one if it doesn't exist.", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/list-keys/list-keys.mjs b/components/data_stores/actions/list-keys/list-keys.mjs index d91a33689cc8c..eb9bdd13befc3 100644 --- a/components/data_stores/actions/list-keys/list-keys.mjs +++ b/components/data_stores/actions/list-keys/list-keys.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-list-keys", name: "List keys", description: "List all keys in your [Pipedream Data Store](https://pipedream.com/data-stores/).", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/list-records/list-records.mjs b/components/data_stores/actions/list-records/list-records.mjs index 4d267c406402b..e80d57d80dd8c 100644 --- a/components/data_stores/actions/list-records/list-records.mjs +++ b/components/data_stores/actions/list-records/list-records.mjs @@ -6,7 +6,12 @@ export default { key: "data_stores-list-records", name: "List Records", description: "List all records in your [Pipedream Data Store](https://pipedream.com/data-stores/).", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/data_stores/actions/update-ttl/update-ttl.mjs b/components/data_stores/actions/update-ttl/update-ttl.mjs index acfbf47cdcf5f..7d14858ae2307 100644 --- a/components/data_stores/actions/update-ttl/update-ttl.mjs +++ b/components/data_stores/actions/update-ttl/update-ttl.mjs @@ -4,7 +4,12 @@ export default { key: "data_stores-update-ttl", name: "Update Record Expiration", description: "Update the expiration time for a record in your [Pipedream Data Store](https://pipedream.com/data-stores/).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/database/actions/query-sql-database/query-sql-database.mjs b/components/database/actions/query-sql-database/query-sql-database.mjs index 39d5c21a73e78..6e9051e6add6d 100644 --- a/components/database/actions/query-sql-database/query-sql-database.mjs +++ b/components/database/actions/query-sql-database/query-sql-database.mjs @@ -13,7 +13,12 @@ export default { key: "database-query-sql-database", description: "Execute a SQL Query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { database: { diff --git a/components/databox/actions/send-custom-data/send-custom-data.mjs b/components/databox/actions/send-custom-data/send-custom-data.mjs index d27994508cbfb..dc59fc62ac2e2 100644 --- a/components/databox/actions/send-custom-data/send-custom-data.mjs +++ b/components/databox/actions/send-custom-data/send-custom-data.mjs @@ -2,7 +2,12 @@ import databox from "../../databox.app.mjs"; export default { name: "Send Custom Data", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "databox-send-custom-data", description: "Sends custom data. [See docs here](https://developers.databox.com/send-data/)", type: "action", diff --git a/components/databricks/actions/cancel-all-runs/cancel-all-runs.mjs b/components/databricks/actions/cancel-all-runs/cancel-all-runs.mjs index 6cbec9bd8ea1c..105c54738d652 100644 --- a/components/databricks/actions/cancel-all-runs/cancel-all-runs.mjs +++ b/components/databricks/actions/cancel-all-runs/cancel-all-runs.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-cancel-all-runs", name: "Cancel All Runs", description: "Cancel all active runs for a job. The runs are canceled asynchronously, so it doesn't prevent new runs from being started. [See the documentation](https://docs.databricks.com/api/workspace/jobs/cancelallruns)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/databricks/actions/cancel-run/cancel-run.mjs b/components/databricks/actions/cancel-run/cancel-run.mjs index bb54ba37e5d37..c01160e1f3a72 100644 --- a/components/databricks/actions/cancel-run/cancel-run.mjs +++ b/components/databricks/actions/cancel-run/cancel-run.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-cancel-run", name: "Cancel Run", description: "Cancel a job run. The run is canceled asynchronously, so it may still be running when this request completes. [See the documentation](https://docs.databricks.com/api/workspace/jobs/cancelrun)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/databricks/actions/create-endpoint/create-endpoint.mjs b/components/databricks/actions/create-endpoint/create-endpoint.mjs index 046e54bc31dd1..60c6ac78595c7 100644 --- a/components/databricks/actions/create-endpoint/create-endpoint.mjs +++ b/components/databricks/actions/create-endpoint/create-endpoint.mjs @@ -5,7 +5,12 @@ export default { key: "databricks-create-endpoint", name: "Create Endpoint", description: "Create a new vector search endpoint. [See the documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/create-job/create-job.mjs b/components/databricks/actions/create-job/create-job.mjs index 708146085ae73..f539af7c12a7a 100644 --- a/components/databricks/actions/create-job/create-job.mjs +++ b/components/databricks/actions/create-job/create-job.mjs @@ -5,7 +5,12 @@ export default { key: "databricks-create-job", name: "Create Job", description: "Create a job. [See the documentation](https://docs.databricks.com/api/workspace/jobs/create)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/databricks/actions/create-sql-warehouse/create-sql-warehouse.mjs b/components/databricks/actions/create-sql-warehouse/create-sql-warehouse.mjs index 02de4ce9f5c39..e43d445afb5bc 100644 --- a/components/databricks/actions/create-sql-warehouse/create-sql-warehouse.mjs +++ b/components/databricks/actions/create-sql-warehouse/create-sql-warehouse.mjs @@ -7,7 +7,12 @@ export default { key: "databricks-create-sql-warehouse", name: "Create SQL Warehouse", description: "Creates a new SQL Warehouse in Databricks. [See the documentation](https://docs.databricks.com/api/workspace/warehouses/create)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/create-vector-search-index/create-vector-search-index.mjs b/components/databricks/actions/create-vector-search-index/create-vector-search-index.mjs index 492bbca32e0dd..4527c0957fdf6 100644 --- a/components/databricks/actions/create-vector-search-index/create-vector-search-index.mjs +++ b/components/databricks/actions/create-vector-search-index/create-vector-search-index.mjs @@ -7,7 +7,12 @@ export default { name: "Create Vector Search Index", description: "Creates a new vector search index in Databricks. [See the documentation](https://docs.databricks.com/api/workspace/vectorsearchindexes/createindex)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/delete-endpoint/delete-endpoint.mjs b/components/databricks/actions/delete-endpoint/delete-endpoint.mjs index 6750820463af8..23b05e7a7079f 100644 --- a/components/databricks/actions/delete-endpoint/delete-endpoint.mjs +++ b/components/databricks/actions/delete-endpoint/delete-endpoint.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-delete-endpoint", name: "Delete Endpoint", description: "Delete a vector search endpoint. [See the documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/deleteendpoint)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/delete-job/delete-job.mjs b/components/databricks/actions/delete-job/delete-job.mjs index 79b6c528ee93e..1d99eac933dc3 100644 --- a/components/databricks/actions/delete-job/delete-job.mjs +++ b/components/databricks/actions/delete-job/delete-job.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-delete-job", name: "Delete Job", description: "Delete a job. Deleted jobs cannot be recovered. [See the documentation](https://docs.databricks.com/api/workspace/jobs/delete)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/databricks/actions/delete-run/delete-run.mjs b/components/databricks/actions/delete-run/delete-run.mjs index b27836b1cabb5..6a86b669b9433 100644 --- a/components/databricks/actions/delete-run/delete-run.mjs +++ b/components/databricks/actions/delete-run/delete-run.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-delete-run", name: "Delete Run", description: "Delete a non-active run. Returns an error if the run is active. [See the documentation](https://docs.databricks.com/api/workspace/jobs/deleterun)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/databricks/actions/delete-sql-warehouse/delete-sql-warehouse.mjs b/components/databricks/actions/delete-sql-warehouse/delete-sql-warehouse.mjs index 3300848ba3852..58fb6fd9a77fe 100644 --- a/components/databricks/actions/delete-sql-warehouse/delete-sql-warehouse.mjs +++ b/components/databricks/actions/delete-sql-warehouse/delete-sql-warehouse.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-delete-sql-warehouse", name: "Delete SQL Warehouse", description: "Deletes a SQL Warehouse by ID. [See the documentation](https://docs.databricks.com/api/workspace/warehouses/delete)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/delete-vector-search-index-data/delete-vector-search-index-data.mjs b/components/databricks/actions/delete-vector-search-index-data/delete-vector-search-index-data.mjs index b605f15edb7c3..8e1982b4c255c 100644 --- a/components/databricks/actions/delete-vector-search-index-data/delete-vector-search-index-data.mjs +++ b/components/databricks/actions/delete-vector-search-index-data/delete-vector-search-index-data.mjs @@ -6,7 +6,12 @@ export default { name: "Delete Data from Vector Search Index", description: "Deletes rows from a Direct Access vector index by primary-key values. [See the documentation](https://docs.databricks.com/api/workspace/vectorsearchindexes/deletedatavectorindex)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/delete-vector-search-index/delete-vector-search-index.mjs b/components/databricks/actions/delete-vector-search-index/delete-vector-search-index.mjs index 756f529d003b0..dc5d177073c9d 100644 --- a/components/databricks/actions/delete-vector-search-index/delete-vector-search-index.mjs +++ b/components/databricks/actions/delete-vector-search-index/delete-vector-search-index.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-delete-vector-search-index", name: "Delete Vector Search Index", description: "Deletes a vector search index in Databricks. [See the documentation](https://docs.databricks.com/api/workspace/vectorsearchindexes/deleteindex)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/edit-sql-warehouse/edit-sql-warehouse.mjs b/components/databricks/actions/edit-sql-warehouse/edit-sql-warehouse.mjs index b98292e6a5faa..4ab88c4808f63 100644 --- a/components/databricks/actions/edit-sql-warehouse/edit-sql-warehouse.mjs +++ b/components/databricks/actions/edit-sql-warehouse/edit-sql-warehouse.mjs @@ -7,7 +7,12 @@ export default { key: "databricks-edit-sql-warehouse", name: "Edit SQL Warehouse", description: "Edits the configuration of an existing SQL Warehouse. [See the documentation](https://docs.databricks.com/api/workspace/warehouses/edit)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/export-run/export-run.mjs b/components/databricks/actions/export-run/export-run.mjs index 71e8e28fd7ea9..c57fe51f7d071 100644 --- a/components/databricks/actions/export-run/export-run.mjs +++ b/components/databricks/actions/export-run/export-run.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-export-run", name: "Export Run", description: "Export and retrieve the job run task. [See the documentation](https://docs.databricks.com/api/workspace/jobs/exportrun)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/databricks/actions/get-endpoint/get-endpoint.mjs b/components/databricks/actions/get-endpoint/get-endpoint.mjs index 0937ff8482688..1530921c69dc1 100644 --- a/components/databricks/actions/get-endpoint/get-endpoint.mjs +++ b/components/databricks/actions/get-endpoint/get-endpoint.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-get-endpoint", name: "Get Endpoint", description: "Get details of a specific vector search endpoint. [See the documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/getendpoint)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/get-job-permissions/get-job-permissions.mjs b/components/databricks/actions/get-job-permissions/get-job-permissions.mjs index c1e77b0564888..d68799248f2bf 100644 --- a/components/databricks/actions/get-job-permissions/get-job-permissions.mjs +++ b/components/databricks/actions/get-job-permissions/get-job-permissions.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-get-job-permissions", name: "Get Job Permissions", description: "Get permissions of a job. [See the documentation](https://docs.databricks.com/api/workspace/jobs/getpermissions)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/databricks/actions/get-job/get-job.mjs b/components/databricks/actions/get-job/get-job.mjs index fd029c564e3b8..03e7901bf2c8a 100644 --- a/components/databricks/actions/get-job/get-job.mjs +++ b/components/databricks/actions/get-job/get-job.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-get-job", name: "Get Job", description: "Retrieves the details for a single job. [See the documentation](https://docs.databricks.com/api/workspace/jobs/get)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/databricks/actions/get-run-output/get-run-output.mjs b/components/databricks/actions/get-run-output/get-run-output.mjs index 6bc6ee495e0cb..864452ecf3695 100644 --- a/components/databricks/actions/get-run-output/get-run-output.mjs +++ b/components/databricks/actions/get-run-output/get-run-output.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-get-run-output", name: "Get Run Output", description: "Retrieve the output and metadata of a single task run. [See the documentation](https://docs.databricks.com/en/workflows/jobs/jobs-2.0-api.html#runs-get-output)", - version: "0.0.5", + version: "0.0.6", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { databricks, diff --git a/components/databricks/actions/get-run/get-run.mjs b/components/databricks/actions/get-run/get-run.mjs index 607fee72566b8..d9cd6782f5dfd 100644 --- a/components/databricks/actions/get-run/get-run.mjs +++ b/components/databricks/actions/get-run/get-run.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-get-run", name: "Get Run", description: "Retrieve the metadata of a run. [See the documentation](https://docs.databricks.com/api/workspace/jobs/getrun)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/databricks/actions/get-sql-warehouse-config/get-sql-warehouse-config.mjs b/components/databricks/actions/get-sql-warehouse-config/get-sql-warehouse-config.mjs index 3ab986eb06a7a..d8a5efcf60b08 100644 --- a/components/databricks/actions/get-sql-warehouse-config/get-sql-warehouse-config.mjs +++ b/components/databricks/actions/get-sql-warehouse-config/get-sql-warehouse-config.mjs @@ -4,7 +4,12 @@ export default { key: "databricks-get-sql-warehouse-config", name: "Get SQL Warehouse Config", description: "Retrieves the global configuration for SQL Warehouses. [See the documentation](https://docs.databricks.com/api/workspace/warehouses/getworkspacewarehouseconfig)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { databricks,