diff --git a/components/posthog/actions/capture-event/capture-event.mjs b/components/posthog/actions/capture-event/capture-event.mjs index 328370ac7582a..5d1f9e58249c1 100644 --- a/components/posthog/actions/capture-event/capture-event.mjs +++ b/components/posthog/actions/capture-event/capture-event.mjs @@ -4,7 +4,7 @@ export default { key: "posthog-capture-event", name: "Capture Event", description: "Captures a given event within the PostHog system. [See the documentation](https://posthog.com/docs/api/post-only-endpoints#single-event)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/posthog/actions/create-query/create-query.mjs b/components/posthog/actions/create-query/create-query.mjs index 6b876c1567d0d..6fee563928f65 100644 --- a/components/posthog/actions/create-query/create-query.mjs +++ b/components/posthog/actions/create-query/create-query.mjs @@ -4,7 +4,7 @@ export default { key: "posthog-create-query", name: "Create Query", description: "Create a HogQLQuery and return the results. [See the documentation](https://posthog.com/docs/api/queries#creating-a-query)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/posthog/actions/get-cohorts/get-cohorts.mjs b/components/posthog/actions/get-cohorts/get-cohorts.mjs index 06756ca1e180b..3511d6e362e57 100644 --- a/components/posthog/actions/get-cohorts/get-cohorts.mjs +++ b/components/posthog/actions/get-cohorts/get-cohorts.mjs @@ -4,7 +4,7 @@ export default { key: "posthog-get-cohorts", name: "Get Cohorts", description: "Retrieve a list of cohorts. [See the documentation](https://posthog.com/docs/api/cohorts#get-api-projects-project_id-cohorts)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/posthog/actions/get-persons/get-persons.mjs b/components/posthog/actions/get-persons/get-persons.mjs index 134188603308e..58b21002e6334 100644 --- a/components/posthog/actions/get-persons/get-persons.mjs +++ b/components/posthog/actions/get-persons/get-persons.mjs @@ -4,7 +4,7 @@ export default { key: "posthog-get-persons", name: "Get Persons", description: "Retrieve a list of persons. [See the documentation](https://posthog.com/docs/api/persons#get-api-projects-project_id-persons)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/posthog/actions/get-surveys/get-surveys.mjs b/components/posthog/actions/get-surveys/get-surveys.mjs index 22ee7cf140bad..47d8dbedd11c5 100644 --- a/components/posthog/actions/get-surveys/get-surveys.mjs +++ b/components/posthog/actions/get-surveys/get-surveys.mjs @@ -4,7 +4,7 @@ export default { key: "posthog-get-surveys", name: "Get Surveys", description: "Retrieve a list of surveys. [See the documentation](https://posthog.com/docs/api/surveys#get-api-projects-project_id-surveys)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/predictleads/actions/get-technologies/get-technologies.mjs b/components/predictleads/actions/get-technologies/get-technologies.mjs index d1c93167d7636..de7e57a8980af 100644 --- a/components/predictleads/actions/get-technologies/get-technologies.mjs +++ b/components/predictleads/actions/get-technologies/get-technologies.mjs @@ -4,7 +4,12 @@ export default { key: "predictleads-get-technologies", name: "Get Technologies", description: "Retrieve a list of technologies that PredictLeads tracks. [See the documentation](https://docs.predictleads.com/v3/api_endpoints/technologies_dataset/retrieve_all_tracked_technologies)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/predictleads/actions/lookup-company/lookup-company.mjs b/components/predictleads/actions/lookup-company/lookup-company.mjs index 95f9aa61ccebe..882dc217955ca 100644 --- a/components/predictleads/actions/lookup-company/lookup-company.mjs +++ b/components/predictleads/actions/lookup-company/lookup-company.mjs @@ -4,7 +4,12 @@ export default { key: "predictleads-lookup-company", name: "Lookup Company By Domain", description: "Lookup a company by their domain. [See the documentation](https://docs.predictleads.com/v3/api_endpoints/companies_dataset/retrieve_company)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/predictleads/actions/retrieve-companies-by-technology/retrieve-companies-by-technology.mjs b/components/predictleads/actions/retrieve-companies-by-technology/retrieve-companies-by-technology.mjs index 282687b3ca54d..6a304caf77a6e 100644 --- a/components/predictleads/actions/retrieve-companies-by-technology/retrieve-companies-by-technology.mjs +++ b/components/predictleads/actions/retrieve-companies-by-technology/retrieve-companies-by-technology.mjs @@ -4,7 +4,12 @@ export default { key: "predictleads-retrieve-companies-by-technology", name: "Retrieve Companies By Technology", description: "Retrieve companies that use a specific technology. [See the documentation](https://docs.predictleads.com/v3/api_endpoints/technologies_dataset/retrieve_a_single_technology_by_id)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/predictleads/actions/retrieve-news-events-by-domain/retrieve-news-events-by-domain.mjs b/components/predictleads/actions/retrieve-news-events-by-domain/retrieve-news-events-by-domain.mjs index 97f5f1e937632..2165cd8b624bb 100644 --- a/components/predictleads/actions/retrieve-news-events-by-domain/retrieve-news-events-by-domain.mjs +++ b/components/predictleads/actions/retrieve-news-events-by-domain/retrieve-news-events-by-domain.mjs @@ -4,7 +4,12 @@ export default { key: "predictleads-retrieve-news-events-by-domain", name: "Retrieve News Events By Domain", description: "Retrieve news events for a company by domain. [See the documentation](https://docs.predictleads.com/v3/api_endpoints/news_events_dataset/retrieve_company_s_news_events)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pretix/actions/get-order-details/get-order-details.mjs b/components/pretix/actions/get-order-details/get-order-details.mjs index 5d43b9a7108ac..f904e8631bd54 100644 --- a/components/pretix/actions/get-order-details/get-order-details.mjs +++ b/components/pretix/actions/get-order-details/get-order-details.mjs @@ -3,7 +3,12 @@ import pretix from "../../pretix.app.mjs"; export default { key: "pretix-get-order-details", name: "Get Order Details", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Returns information on one order, identified by its order code. [See the documentation](https://docs.pretix.eu/en/latest/api/resources/orders.html#fetching-individual-orders)", type: "action", props: { diff --git a/components/pretix/actions/update-event/update-event.mjs b/components/pretix/actions/update-event/update-event.mjs index 0631488fbb052..db2a6ca991ae3 100644 --- a/components/pretix/actions/update-event/update-event.mjs +++ b/components/pretix/actions/update-event/update-event.mjs @@ -5,7 +5,12 @@ import pretix from "../../pretix.app.mjs"; export default { key: "pretix-update-event", name: "Update Event", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Updates a specific event. [See the documentation](https://docs.pretix.eu/en/latest/api/resources/events.html#patch--api-v1-organizers-(organizer)-events-(event)-)", type: "action", props: { diff --git a/components/printautopilot/actions/add-pdf-to-queue/add-pdf-to-queue.mjs b/components/printautopilot/actions/add-pdf-to-queue/add-pdf-to-queue.mjs index ce60d7d03d0d5..304efbb85ac1c 100644 --- a/components/printautopilot/actions/add-pdf-to-queue/add-pdf-to-queue.mjs +++ b/components/printautopilot/actions/add-pdf-to-queue/add-pdf-to-queue.mjs @@ -5,7 +5,12 @@ export default { key: "printautopilot-add-pdf-to-queue", name: "Add PDF to Print Autopilot Queue", description: "Uploads a PDF document to the print-autopilot queue. [See the documentation](https://documenter.getpostman.com/view/1334461/TW6wJonb#53f82327-4f23-416d-b2f0-ce17b8037933)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { printAutopilot, diff --git a/components/printavo/actions/create-customer/create-customer.mjs b/components/printavo/actions/create-customer/create-customer.mjs index a98e3ece9aab1..1c33e7f49fb2b 100644 --- a/components/printavo/actions/create-customer/create-customer.mjs +++ b/components/printavo/actions/create-customer/create-customer.mjs @@ -4,7 +4,12 @@ export default { name: "Create Customer", description: "Create a new customer. [See the docs here](https://printavo.docs.apiary.io/#reference/customers/customers-collection/customer-create)", key: "printavo-create-customer", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/printavo/actions/delete-customer/delete-customer.mjs b/components/printavo/actions/delete-customer/delete-customer.mjs index 0d11d29789f1a..e4ee0a504d561 100644 --- a/components/printavo/actions/delete-customer/delete-customer.mjs +++ b/components/printavo/actions/delete-customer/delete-customer.mjs @@ -4,7 +4,12 @@ export default { name: "Delete Customer", description: "Delete a customer. [See the docs here](https://printavo.docs.apiary.io/#reference/customers/customer/customer-delete)", key: "printavo-delete-customer", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/printavo/actions/search-customers/search-customers.mjs b/components/printavo/actions/search-customers/search-customers.mjs index 636e0946af3d7..434c0e4ae1319 100644 --- a/components/printavo/actions/search-customers/search-customers.mjs +++ b/components/printavo/actions/search-customers/search-customers.mjs @@ -5,7 +5,12 @@ export default { name: "Search Customers", description: "Search customers. [See the docs here](https://printavo.docs.apiary.io/#reference/customers/customers-collection/customers-search)", key: "printavo-search-customers", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/printavo/actions/update-customer/update-customer.mjs b/components/printavo/actions/update-customer/update-customer.mjs index 3e5bf245d48b8..d9f636aff1702 100644 --- a/components/printavo/actions/update-customer/update-customer.mjs +++ b/components/printavo/actions/update-customer/update-customer.mjs @@ -4,7 +4,12 @@ export default { name: "Update Customer", description: "Update a new customer. [See the docs here](https://printavo.docs.apiary.io/#reference/customers/customer/customer-update)", key: "printavo-update-customer", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/printful/actions/calculate-shipping-rates/calculate-shipping-rates.mjs b/components/printful/actions/calculate-shipping-rates/calculate-shipping-rates.mjs index a2aaeb7dce023..987a67e28f984 100644 --- a/components/printful/actions/calculate-shipping-rates/calculate-shipping-rates.mjs +++ b/components/printful/actions/calculate-shipping-rates/calculate-shipping-rates.mjs @@ -6,7 +6,12 @@ export default { key: "printful-calculate-shipping-rates", name: "Calculate Shipping Rates", description: "Fetches available shipping rates for a given destination. [See the documentation](https://developers.printful.com/docs/#tag/Shipping-Rate-API/operation/calculateShippingRates)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { printful, diff --git a/components/printful/actions/create-order/create-order.mjs b/components/printful/actions/create-order/create-order.mjs index 4338776e08d03..f70cf46a90aa9 100644 --- a/components/printful/actions/create-order/create-order.mjs +++ b/components/printful/actions/create-order/create-order.mjs @@ -3,7 +3,12 @@ import printful from "../../printful.app.mjs"; export default { name: "Create Order", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "printful-create-order", description: "Creates a new order in your Printful account. [See the documentaion](https://developers.printful.com/docs/#operation/createOrder)", type: "action", diff --git a/components/printful/actions/update-product/update-product.mjs b/components/printful/actions/update-product/update-product.mjs index 31843cc4f5f36..39a9e85b72ce8 100644 --- a/components/printful/actions/update-product/update-product.mjs +++ b/components/printful/actions/update-product/update-product.mjs @@ -5,7 +5,12 @@ export default { key: "printful-update-product", name: "Update Product", description: "Updates an existing product in your Printful store. [See the documentation](https://developers.printful.com/docs/#tag/Products-API/operation/updateSyncProduct)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { printful, diff --git a/components/printful_oauth/actions/create-order/create-order.mjs b/components/printful_oauth/actions/create-order/create-order.mjs index 83f4723859aa6..4761a14c6f241 100644 --- a/components/printful_oauth/actions/create-order/create-order.mjs +++ b/components/printful_oauth/actions/create-order/create-order.mjs @@ -2,7 +2,12 @@ import printful_oauth from "../../printful_oauth.app.mjs"; export default { name: "Create Order", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "printful_oauth-create-order", description: "Creates an order. [See docs here](https://developers.printful.com/docs/#operation/createOrder)", type: "action", diff --git a/components/printify/actions/create-product/create-product.mjs b/components/printify/actions/create-product/create-product.mjs index 4fb280dd71082..52228e0e6c2ce 100644 --- a/components/printify/actions/create-product/create-product.mjs +++ b/components/printify/actions/create-product/create-product.mjs @@ -5,7 +5,12 @@ export default { key: "printify-create-product", name: "Create a Product", description: "Creates a new product on Printify. [See the documentation](https://developers.printify.com/#create-a-new-product)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { printify, diff --git a/components/printify/actions/submit-order/submit-order.mjs b/components/printify/actions/submit-order/submit-order.mjs index 33b1451d3f116..4690fb52310f3 100644 --- a/components/printify/actions/submit-order/submit-order.mjs +++ b/components/printify/actions/submit-order/submit-order.mjs @@ -6,7 +6,12 @@ export default { key: "printify-submit-order", name: "Submit Order", description: "Places an order of an existing product on Printify. [See the documentation](https://developers.printify.com/#submit-an-order)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { printify, diff --git a/components/printify/actions/update-product/update-product.mjs b/components/printify/actions/update-product/update-product.mjs index 7ec58c77ac2ea..2e606aa4d79c7 100644 --- a/components/printify/actions/update-product/update-product.mjs +++ b/components/printify/actions/update-product/update-product.mjs @@ -5,7 +5,12 @@ export default { key: "printify-update-product", name: "Update Product", description: "Updates an existing product on Printify. [See the documentation](https://developers.printify.com/#update-a-product)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { printify, diff --git a/components/printnode/actions/get-printer/get-printer.mjs b/components/printnode/actions/get-printer/get-printer.mjs index d8a2a747bed58..c797b428dfeba 100644 --- a/components/printnode/actions/get-printer/get-printer.mjs +++ b/components/printnode/actions/get-printer/get-printer.mjs @@ -4,7 +4,12 @@ export default { key: "printnode-get-printer", name: "Get Printer", description: "Retrieves data about a specific printer. [See the documentation](https://www.printnode.com/en/docs/api/curl#printers)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { printnode, diff --git a/components/printnode/actions/list-print-jobs/list-print-jobs.mjs b/components/printnode/actions/list-print-jobs/list-print-jobs.mjs index 537ce5b50d306..071a42d4813b4 100644 --- a/components/printnode/actions/list-print-jobs/list-print-jobs.mjs +++ b/components/printnode/actions/list-print-jobs/list-print-jobs.mjs @@ -4,7 +4,12 @@ export default { key: "printnode-list-print-jobs", name: "List Print Jobs", description: "Returns a list of all print jobs that have been submitted. [See the documentation](https://www.printnode.com/en/docs/api/curl#printjob-viewing)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { printnode, diff --git a/components/printnode/actions/send-print-job/send-print-job.mjs b/components/printnode/actions/send-print-job/send-print-job.mjs index 97bb9adaac150..00b45407e5328 100644 --- a/components/printnode/actions/send-print-job/send-print-job.mjs +++ b/components/printnode/actions/send-print-job/send-print-job.mjs @@ -5,7 +5,12 @@ export default { key: "printnode-send-print-job", name: "Send Print Job", description: "Sends a print job to a specified printer. [See the documentation](https://www.printnode.com/en/docs/api/curl#creating-print-jobs)", - version: "1.0.1", + version: "1.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { printnode, diff --git a/components/prisma_management_api/actions/create-database-connection-string/create-database-connection-string.mjs b/components/prisma_management_api/actions/create-database-connection-string/create-database-connection-string.mjs index b3a01073e0f48..fabaf3920fc6b 100644 --- a/components/prisma_management_api/actions/create-database-connection-string/create-database-connection-string.mjs +++ b/components/prisma_management_api/actions/create-database-connection-string/create-database-connection-string.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Create Database Connection String", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "prisma_management_api-create-database-connection-string", description: "Creates a new connection string for an existing database via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/create-database/create-database.mjs b/components/prisma_management_api/actions/create-database/create-database.mjs index ba861e95e8d0e..7684616623366 100644 --- a/components/prisma_management_api/actions/create-database/create-database.mjs +++ b/components/prisma_management_api/actions/create-database/create-database.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Create Database", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "prisma_management_api-create-database", description: "Creates a new Postgres database project via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/create-new-database-in-existing-project/create-new-database-in-existing-project.mjs b/components/prisma_management_api/actions/create-new-database-in-existing-project/create-new-database-in-existing-project.mjs index 73b9e19530654..f7194aaa7eb81 100644 --- a/components/prisma_management_api/actions/create-new-database-in-existing-project/create-new-database-in-existing-project.mjs +++ b/components/prisma_management_api/actions/create-new-database-in-existing-project/create-new-database-in-existing-project.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Create New Database in Existing Project", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "prisma_management_api-create-new-database-in-existing-project", description: "Create a new database in an existing Prisma project. Requires Project ID. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/delete-database-by-database-id/delete-database-by-database-id.mjs b/components/prisma_management_api/actions/delete-database-by-database-id/delete-database-by-database-id.mjs index 6abf13e5d175d..38fe7bbf977f3 100644 --- a/components/prisma_management_api/actions/delete-database-by-database-id/delete-database-by-database-id.mjs +++ b/components/prisma_management_api/actions/delete-database-by-database-id/delete-database-by-database-id.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Delete Database by Database ID", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "prisma_management_api-delete-database-by-database-id", description: "Delete a specific database by Database ID via Prisma Management API. This action is irreversible. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/delete-database-connection-string/delete-database-connection-string.mjs b/components/prisma_management_api/actions/delete-database-connection-string/delete-database-connection-string.mjs index eed0b5a4417a7..55084726b11ab 100644 --- a/components/prisma_management_api/actions/delete-database-connection-string/delete-database-connection-string.mjs +++ b/components/prisma_management_api/actions/delete-database-connection-string/delete-database-connection-string.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Delete Database Connection String", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "prisma_management_api-delete-database-connection-string", description: "Deletes a specific database connection string via Prisma Management API. This action is irreversible. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/delete-database/delete-database.mjs b/components/prisma_management_api/actions/delete-database/delete-database.mjs index 8391c34143907..f948c65167f6c 100644 --- a/components/prisma_management_api/actions/delete-database/delete-database.mjs +++ b/components/prisma_management_api/actions/delete-database/delete-database.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Delete Database", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "prisma_management_api-delete-database", description: "Deletes a Postgres database project via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/get-database-details/get-database-details.mjs b/components/prisma_management_api/actions/get-database-details/get-database-details.mjs index 996383f339c1e..80ac64e66630e 100644 --- a/components/prisma_management_api/actions/get-database-details/get-database-details.mjs +++ b/components/prisma_management_api/actions/get-database-details/get-database-details.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Get Database details", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prisma_management_api-get-database-details", description: "Get database details of a particular Prisma Postgres database via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/get-postgres-regions/get-postgres-regions.mjs b/components/prisma_management_api/actions/get-postgres-regions/get-postgres-regions.mjs index 1ac6db5c5bf27..0a406ca88d48e 100644 --- a/components/prisma_management_api/actions/get-postgres-regions/get-postgres-regions.mjs +++ b/components/prisma_management_api/actions/get-postgres-regions/get-postgres-regions.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Get Prisma Postgres Regions", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prisma_management_api-get-postgres-regions", description: "Retrieves a list of all available regions where Prisma Postgres databases can be deployed. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/get-project-details/get-project-details.mjs b/components/prisma_management_api/actions/get-project-details/get-project-details.mjs index 2b760b9fd3380..5237f23deb99a 100644 --- a/components/prisma_management_api/actions/get-project-details/get-project-details.mjs +++ b/components/prisma_management_api/actions/get-project-details/get-project-details.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "Get Project details", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prisma_management_api-get-project-details", description: "Get project details of a particular project in Prisma Workspace via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/list-database-connection-strings/list-database-connection-strings.mjs b/components/prisma_management_api/actions/list-database-connection-strings/list-database-connection-strings.mjs index 3b64745a1fc91..eae7ec06f3943 100644 --- a/components/prisma_management_api/actions/list-database-connection-strings/list-database-connection-strings.mjs +++ b/components/prisma_management_api/actions/list-database-connection-strings/list-database-connection-strings.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "List Database Connection Strings", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prisma_management_api-list-database-connection-strings", description: "Retrieves a list of all connection strings for a specific database via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/list-databases-from-project/list-databases-from-project.mjs b/components/prisma_management_api/actions/list-databases-from-project/list-databases-from-project.mjs index 55b65cfa68cbc..3f015e9144ec9 100644 --- a/components/prisma_management_api/actions/list-databases-from-project/list-databases-from-project.mjs +++ b/components/prisma_management_api/actions/list-databases-from-project/list-databases-from-project.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "List Databases from Project", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prisma_management_api-list-databases-from-project", description: "Retrieves a list of all databases within a specific Prisma project. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/prisma_management_api/actions/list-projects-in-prisma-workspace/list-projects-in-prisma-workspace.mjs b/components/prisma_management_api/actions/list-projects-in-prisma-workspace/list-projects-in-prisma-workspace.mjs index 0e0da4dc52d6a..20a89c73e503f 100644 --- a/components/prisma_management_api/actions/list-projects-in-prisma-workspace/list-projects-in-prisma-workspace.mjs +++ b/components/prisma_management_api/actions/list-projects-in-prisma-workspace/list-projects-in-prisma-workspace.mjs @@ -2,7 +2,12 @@ import app from "../../prisma_management_api.app.mjs"; export default { name: "List Projects in Prisma Workspace", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prisma_management_api-list-projects-in-prisma-workspace", description: "List Projects in a Prisma Workspace via Prisma Management API. [See docs here](https://www.prisma.io/docs/postgres/introduction/management-api)", type: "action", diff --git a/components/pro_ledger/actions/create-record/create-record.mjs b/components/pro_ledger/actions/create-record/create-record.mjs index 058d64ccff5b1..9c1070093bdb1 100644 --- a/components/pro_ledger/actions/create-record/create-record.mjs +++ b/components/pro_ledger/actions/create-record/create-record.mjs @@ -4,7 +4,12 @@ export default { key: "pro_ledger-create-record", name: "Create Record", description: "Create a new record in the Pro Ledger platform. [See the documentation](https://api.pro-ledger.com/redoc#tag/record/operation/create_new_record_api_v1_record_create_new_record_post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pro_ledger/actions/get-accounts/get-accounts.mjs b/components/pro_ledger/actions/get-accounts/get-accounts.mjs index 5b93a6f3deeee..da36dec5b117c 100644 --- a/components/pro_ledger/actions/get-accounts/get-accounts.mjs +++ b/components/pro_ledger/actions/get-accounts/get-accounts.mjs @@ -4,7 +4,12 @@ export default { key: "pro_ledger-get-accounts", name: "Get Accounts", description: "Get accounts setup information. [See the documentation](https://api.pro-ledger.com/redoc#tag/record/operation/get_accounts_api_v1_record_get_accounts_get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pro_ledger/actions/get-categories/get-categories.mjs b/components/pro_ledger/actions/get-categories/get-categories.mjs index 54b53cfe483d5..08b1588673edf 100644 --- a/components/pro_ledger/actions/get-categories/get-categories.mjs +++ b/components/pro_ledger/actions/get-categories/get-categories.mjs @@ -4,7 +4,12 @@ export default { key: "pro_ledger-get-categories", name: "Get Categories", description: "Get categories setup information. [See the documentation](https://api.pro-ledger.com/redoc#tag/record/operation/get_categories_api_v1_record_get_categories_get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pro_ledger/actions/get-classes/get-classes.mjs b/components/pro_ledger/actions/get-classes/get-classes.mjs index 77fced59bfb00..aca75750a53ee 100644 --- a/components/pro_ledger/actions/get-classes/get-classes.mjs +++ b/components/pro_ledger/actions/get-classes/get-classes.mjs @@ -4,7 +4,12 @@ export default { key: "pro_ledger-get-classes", name: "Get Classes", description: "Get classes setup information. [See the documentation](https://api.pro-ledger.com/redoc#tag/record/operation/get_classes_api_v1_record_get_classes_get)", - version: "0.0.{{ts}}", + version: "0.0.NaN", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/proabono/actions/create-customer/create-customer.mjs b/components/proabono/actions/create-customer/create-customer.mjs index b10c720b60c2d..6d23574becd2b 100644 --- a/components/proabono/actions/create-customer/create-customer.mjs +++ b/components/proabono/actions/create-customer/create-customer.mjs @@ -5,7 +5,12 @@ export default { key: "proabono-create-customer", name: "Create or Update a Customer", description: "Creates a new customer or updates an existing one in the ProAbono system. [See the documentation](https://docs.proabono.com/api/#create-a-customer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { proabono, diff --git a/components/proabono/actions/create-subscription/create-subscription.mjs b/components/proabono/actions/create-subscription/create-subscription.mjs index 84e760f85b892..b1c8fe46560e4 100644 --- a/components/proabono/actions/create-subscription/create-subscription.mjs +++ b/components/proabono/actions/create-subscription/create-subscription.mjs @@ -4,7 +4,12 @@ export default { key: "proabono-create-subscription", name: "Create Subscription", description: "Initializes a new subscription for a customer in the ProAbono system. [See the documentation](https://docs.proabono.com/api/#create-a-subscription)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { proabono, diff --git a/components/proabono/actions/retrieve-customer/retrieve-customer.mjs b/components/proabono/actions/retrieve-customer/retrieve-customer.mjs index d1d82f9824787..5ee3632dd2dca 100644 --- a/components/proabono/actions/retrieve-customer/retrieve-customer.mjs +++ b/components/proabono/actions/retrieve-customer/retrieve-customer.mjs @@ -4,7 +4,12 @@ export default { key: "proabono-retrieve-customer", name: "Retrieve Customer", description: "Fetches an existing customer from the proabono system. [See the documentation](https://docs.proabono.com/api/#retrieve-a-customer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { proabono, diff --git a/components/process_street/actions/start-workflow-run/start-workflow-run.mjs b/components/process_street/actions/start-workflow-run/start-workflow-run.mjs index dd16aaf243174..088ca6a3041a2 100644 --- a/components/process_street/actions/start-workflow-run/start-workflow-run.mjs +++ b/components/process_street/actions/start-workflow-run/start-workflow-run.mjs @@ -5,7 +5,12 @@ export default { key: "process_street-start-workflow-run", name: "Start Workflow Run", description: "Starts a workflow run. [See the docs here](https://public-api.process.st/api/v1.1/docs/index.html#operation/createWorkflowRun)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { processStreet, diff --git a/components/procore/actions/create-incident/create-incident.mjs b/components/procore/actions/create-incident/create-incident.mjs index fc2070a593423..fc7e13ea3013f 100644 --- a/components/procore/actions/create-incident/create-incident.mjs +++ b/components/procore/actions/create-incident/create-incident.mjs @@ -4,7 +4,12 @@ export default { key: "procore-create-incident", name: "Create Incident", description: "Create a new incident. [See the documentation](https://developers.procore.com/reference/rest/incidents?version=latest#create-incident).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/procore/actions/create-manpower-log/create-manpower-log.mjs b/components/procore/actions/create-manpower-log/create-manpower-log.mjs index 674419c8f42dc..393e63e1abaa4 100644 --- a/components/procore/actions/create-manpower-log/create-manpower-log.mjs +++ b/components/procore/actions/create-manpower-log/create-manpower-log.mjs @@ -4,7 +4,12 @@ export default { key: "procore-create-manpower-log", name: "Create Manpower Log", description: "Create a new manpower log. [See the documentation](https://developers.procore.com/reference/rest/manpower-logs?version=latest#create-manpower-log).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/procore/actions/create-rfi/create-rfi.mjs b/components/procore/actions/create-rfi/create-rfi.mjs index 22174f083af8a..64f6591a56310 100644 --- a/components/procore/actions/create-rfi/create-rfi.mjs +++ b/components/procore/actions/create-rfi/create-rfi.mjs @@ -4,7 +4,12 @@ export default { key: "procore-create-rfi", name: "Create RFI", description: "Create a new RFI. [See the documentation](https://developers.procore.com/reference/rest/rfis?version=latest#create-rfi).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/procore/actions/create-submittal/create-submittal.mjs b/components/procore/actions/create-submittal/create-submittal.mjs index 0a3ae2ea31f1a..5be750a5003ca 100644 --- a/components/procore/actions/create-submittal/create-submittal.mjs +++ b/components/procore/actions/create-submittal/create-submittal.mjs @@ -5,7 +5,12 @@ export default { key: "procore-create-submittal", name: "Create Submittal", description: "Create a new submittal. [See the documentation](https://developers.procore.com/reference/rest/submittals?version=latest#create-submittal).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/procore/actions/create-timesheet/create-timesheet.mjs b/components/procore/actions/create-timesheet/create-timesheet.mjs index 106f295fd0789..34796c63f76e5 100644 --- a/components/procore/actions/create-timesheet/create-timesheet.mjs +++ b/components/procore/actions/create-timesheet/create-timesheet.mjs @@ -4,7 +4,12 @@ export default { key: "procore-create-timesheet", name: "Create Timesheet", description: "Create a new timesheet. [See the documentation](https://developers.procore.com/reference/rest/timesheets?version=latest#create-timesheet).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/prodpad/actions/create-company/create-company.mjs b/components/prodpad/actions/create-company/create-company.mjs index a33e92b1bafde..dadb67057eeba 100644 --- a/components/prodpad/actions/create-company/create-company.mjs +++ b/components/prodpad/actions/create-company/create-company.mjs @@ -6,7 +6,12 @@ export default { name: "Create Company", description: "Create a new company in the account. This is only available to accounts with an Advanced or higher subscription. If you try on an account without an advanced or higher subscription package it will return a 403. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostCompanies).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/prodpad/actions/create-contact/create-contact.mjs b/components/prodpad/actions/create-contact/create-contact.mjs index 4b59d5453456c..963e8e1e13b3e 100644 --- a/components/prodpad/actions/create-contact/create-contact.mjs +++ b/components/prodpad/actions/create-contact/create-contact.mjs @@ -6,7 +6,12 @@ export default { name: "Create Contact", description: "Creates a contact. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostContacts).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/prodpad/actions/create-feedback/create-feedback.mjs b/components/prodpad/actions/create-feedback/create-feedback.mjs index ae1173fd78d36..3a8edf031557a 100644 --- a/components/prodpad/actions/create-feedback/create-feedback.mjs +++ b/components/prodpad/actions/create-feedback/create-feedback.mjs @@ -7,7 +7,12 @@ export default { name: "Create Feedback", description: "Creates feedback. [See the documentation](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostFeedbacks).", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, feedback: { diff --git a/components/prodpad/actions/create-idea/create-idea.mjs b/components/prodpad/actions/create-idea/create-idea.mjs index 8f77e1d93b0b0..762f02f11faf2 100644 --- a/components/prodpad/actions/create-idea/create-idea.mjs +++ b/components/prodpad/actions/create-idea/create-idea.mjs @@ -6,7 +6,12 @@ export default { name: "Create Idea", description: "Creates an idea. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Ideas/PostIdeas).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, title: { diff --git a/components/prodpad/actions/find-company/find-company.mjs b/components/prodpad/actions/find-company/find-company.mjs index 6153bf2038b11..dba97087b0097 100644 --- a/components/prodpad/actions/find-company/find-company.mjs +++ b/components/prodpad/actions/find-company/find-company.mjs @@ -6,7 +6,12 @@ export default { name: "Find Company", description: "Finds a company. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/GetCompanies).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, name: { diff --git a/components/prodpad/actions/find-contact/find-contact.mjs b/components/prodpad/actions/find-contact/find-contact.mjs index 49c6a7b43648d..c8629cc87732c 100644 --- a/components/prodpad/actions/find-contact/find-contact.mjs +++ b/components/prodpad/actions/find-contact/find-contact.mjs @@ -6,7 +6,12 @@ export default { name: "Find Contact", description: "Finds a contact. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostContacts).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, name: { diff --git a/components/prodpad/actions/find-feedback/find-feedback.mjs b/components/prodpad/actions/find-feedback/find-feedback.mjs index eff64e277d6a0..3e001ae858a67 100644 --- a/components/prodpad/actions/find-feedback/find-feedback.mjs +++ b/components/prodpad/actions/find-feedback/find-feedback.mjs @@ -6,7 +6,12 @@ export default { name: "Find Feedback", description: "Finds a feedback. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/GetFeedbacks).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, state: { diff --git a/components/prodpad/actions/find-idea/find-idea.mjs b/components/prodpad/actions/find-idea/find-idea.mjs index caf9c007c9597..0624a4cbe7029 100644 --- a/components/prodpad/actions/find-idea/find-idea.mjs +++ b/components/prodpad/actions/find-idea/find-idea.mjs @@ -6,7 +6,12 @@ export default { name: "Find Idea", description: "Finds an idea. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Ideas/GetIdeas).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, externalId: { diff --git a/components/prodpad/actions/find-or-create-company/find-or-create-company.mjs b/components/prodpad/actions/find-or-create-company/find-or-create-company.mjs index b56c7b8deeec1..9709af82909be 100644 --- a/components/prodpad/actions/find-or-create-company/find-or-create-company.mjs +++ b/components/prodpad/actions/find-or-create-company/find-or-create-company.mjs @@ -6,7 +6,12 @@ export default { name: "Find or Create Company", description: "Finds or creates a company. See the docs for [find company](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/GetCompanies) and [create company](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostCompanies).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, name: { diff --git a/components/prodpad/actions/find-or-create-contact/find-or-create-contact.mjs b/components/prodpad/actions/find-or-create-contact/find-or-create-contact.mjs index 40e5dfe360bcf..05d40bc3c470b 100644 --- a/components/prodpad/actions/find-or-create-contact/find-or-create-contact.mjs +++ b/components/prodpad/actions/find-or-create-contact/find-or-create-contact.mjs @@ -6,7 +6,12 @@ export default { name: "Find or Create Contact", description: "Finds or creates a contact. See the docs for [find contact](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostContacts) and [create contact](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostContacts).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, name: { diff --git a/components/prodpad/actions/find-or-create-feedback/find-or-create-feedback.mjs b/components/prodpad/actions/find-or-create-feedback/find-or-create-feedback.mjs index 1c266ac830ffe..4c2a798cc0481 100644 --- a/components/prodpad/actions/find-or-create-feedback/find-or-create-feedback.mjs +++ b/components/prodpad/actions/find-or-create-feedback/find-or-create-feedback.mjs @@ -6,7 +6,12 @@ export default { name: "Find or Create Feedback", description: "Finds or creates a feedback. See the docs for [find feedback](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/GetFeedbacks) and [create feedback](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostFeedbacks).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, customer: { diff --git a/components/prodpad/actions/update-company/update-company.mjs b/components/prodpad/actions/update-company/update-company.mjs index c976f4d11493b..a32f5c0da117f 100644 --- a/components/prodpad/actions/update-company/update-company.mjs +++ b/components/prodpad/actions/update-company/update-company.mjs @@ -6,7 +6,12 @@ export default { name: "Update Company", description: "Updates a company. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PutCompany).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, companyId: { diff --git a/components/prodpad/actions/update-contact/update-contact.mjs b/components/prodpad/actions/update-contact/update-contact.mjs index 676e8cb48c47a..fd81e7a4b3f47 100644 --- a/components/prodpad/actions/update-contact/update-contact.mjs +++ b/components/prodpad/actions/update-contact/update-contact.mjs @@ -6,7 +6,12 @@ export default { name: "Update Contact", description: "Updates a contact. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PutContact).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, contactId: { diff --git a/components/prodpad/actions/update-feedback/update-feedback.mjs b/components/prodpad/actions/update-feedback/update-feedback.mjs index 22b12b140508d..e594c1a50cfe3 100644 --- a/components/prodpad/actions/update-feedback/update-feedback.mjs +++ b/components/prodpad/actions/update-feedback/update-feedback.mjs @@ -5,7 +5,12 @@ export default { name: "Update Feedback", description: "Updates a feedback. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PutFeedback).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, feedbackId: { diff --git a/components/prodpad/actions/update-idea-stage/update-idea-stage.mjs b/components/prodpad/actions/update-idea-stage/update-idea-stage.mjs index 64a79e5bab054..9488fe54d1979 100644 --- a/components/prodpad/actions/update-idea-stage/update-idea-stage.mjs +++ b/components/prodpad/actions/update-idea-stage/update-idea-stage.mjs @@ -5,7 +5,12 @@ export default { name: "Update Idea Stage", description: "Updates the stage of an idea. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Ideas/PostIdeaStatus).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, ideaId: { diff --git a/components/productboard/actions/create-feature/create-feature.mjs b/components/productboard/actions/create-feature/create-feature.mjs index b6ee67f32206d..ef4d96cf5b2e8 100644 --- a/components/productboard/actions/create-feature/create-feature.mjs +++ b/components/productboard/actions/create-feature/create-feature.mjs @@ -6,7 +6,12 @@ export default { name: "Create Feature", description: "Create a new feature. [See the docs here](https://developer.productboard.com/#operation/createFeature)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { productboard, name: { diff --git a/components/productboard/actions/create-note/create-note.mjs b/components/productboard/actions/create-note/create-note.mjs index e3063d379c30c..bfd07d8af295f 100644 --- a/components/productboard/actions/create-note/create-note.mjs +++ b/components/productboard/actions/create-note/create-note.mjs @@ -5,7 +5,12 @@ export default { name: "Create Note", description: "Create a new note. [See the docs here](https://developer.productboard.com/#operation/create_note)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { productboard, title: { diff --git a/components/productboard/actions/get-feature/get-feature.mjs b/components/productboard/actions/get-feature/get-feature.mjs index 4722c03e7c288..d9e19d2061eb8 100644 --- a/components/productboard/actions/get-feature/get-feature.mjs +++ b/components/productboard/actions/get-feature/get-feature.mjs @@ -5,7 +5,12 @@ export default { name: "Get Feature", description: "Retrieve a feature by ID. [See the docs here](https://developer.productboard.com/#operation/getFeature)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { productboard, feature: { diff --git a/components/productboard/actions/list-features/list-features.mjs b/components/productboard/actions/list-features/list-features.mjs index 79b53b204aefc..8ff5d886da429 100644 --- a/components/productboard/actions/list-features/list-features.mjs +++ b/components/productboard/actions/list-features/list-features.mjs @@ -5,7 +5,12 @@ export default { name: "List Features", description: "List all features. [See the docs here](https://developer.productboard.com/#operation/getFeatures)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { productboard, parent: { diff --git a/components/productboard/actions/update-feature/update-feature.mjs b/components/productboard/actions/update-feature/update-feature.mjs index 76900122ab8a4..efaacd40740d4 100644 --- a/components/productboard/actions/update-feature/update-feature.mjs +++ b/components/productboard/actions/update-feature/update-feature.mjs @@ -6,7 +6,12 @@ export default { name: "Update Feature", description: "Update an existing feature. [See the docs here](https://developer.productboard.com/#operation/updateFeature)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { productboard, feature: { diff --git a/components/productive_io/actions/create-booking/create-booking.mjs b/components/productive_io/actions/create-booking/create-booking.mjs index 1e476b995f3cd..811a2ba29a7e2 100644 --- a/components/productive_io/actions/create-booking/create-booking.mjs +++ b/components/productive_io/actions/create-booking/create-booking.mjs @@ -7,7 +7,12 @@ export default { key: "productive_io-create-booking", name: "Create Booking", description: "Creates a new booking in Productive. [See the documentation](https://developer.productive.io/bookings.html#bookings-bookings-post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/productive_io/actions/create-contact/create-contact.mjs b/components/productive_io/actions/create-contact/create-contact.mjs index bb6474c2bd907..cd12420637e8e 100644 --- a/components/productive_io/actions/create-contact/create-contact.mjs +++ b/components/productive_io/actions/create-contact/create-contact.mjs @@ -5,7 +5,12 @@ export default { key: "productive_io-create-contact", name: "Create Contact", description: "Creates a new contact entry in Productive.io. [See the documentation](https://developer.productive.io/contact_entries.html#contact-entries-contact-entries-post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/productive_io/actions/create-task/create-task.mjs b/components/productive_io/actions/create-task/create-task.mjs index bc6ea423531b2..9a82ddb134dfd 100644 --- a/components/productive_io/actions/create-task/create-task.mjs +++ b/components/productive_io/actions/create-task/create-task.mjs @@ -4,7 +4,12 @@ export default { key: "productive_io-create-task", name: "Create Task", description: "Creates a new task in Productive. [See the documentation](https://developer.productive.io/tasks.html)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/productlane/actions/create-contact/create-contact.mjs b/components/productlane/actions/create-contact/create-contact.mjs index 674228ec9fafd..e46e14e9c0d27 100644 --- a/components/productlane/actions/create-contact/create-contact.mjs +++ b/components/productlane/actions/create-contact/create-contact.mjs @@ -4,7 +4,12 @@ export default { key: "productlane-create-contact", name: "Create Contact", description: "Creates a new contact with email, name, and an array of segments in Productlane. [See the documentation](https://productlane.com/docs/api-reference/contacts/create-contact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { productlane, diff --git a/components/productlane/actions/create-feedback/create-feedback.mjs b/components/productlane/actions/create-feedback/create-feedback.mjs index d39b4f4cb0e9f..05873b136825b 100644 --- a/components/productlane/actions/create-feedback/create-feedback.mjs +++ b/components/productlane/actions/create-feedback/create-feedback.mjs @@ -8,7 +8,12 @@ export default { name: "Create Feedback", description: "Create new feedback in Productlane. [See the documentation](https://productlane.com/docs/api-reference/portal/create-feedback)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { productlane, diff --git a/components/productlane/actions/upvote-project/upvote-project.mjs b/components/productlane/actions/upvote-project/upvote-project.mjs index ecc627a435d15..fd9659d4f6757 100644 --- a/components/productlane/actions/upvote-project/upvote-project.mjs +++ b/components/productlane/actions/upvote-project/upvote-project.mjs @@ -4,7 +4,12 @@ export default { key: "productlane-upvote-project", name: "Upvote Project", description: "Upvotes a project by ID. [See the documentation](https://productlane.com/docs/api-reference/portal/upvote-project)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { productlane, diff --git a/components/project_broadcast/actions/add-keyword-to-contact/add-keyword-to-contact.mjs b/components/project_broadcast/actions/add-keyword-to-contact/add-keyword-to-contact.mjs index c9721a2a455db..46e5bafb91aad 100644 --- a/components/project_broadcast/actions/add-keyword-to-contact/add-keyword-to-contact.mjs +++ b/components/project_broadcast/actions/add-keyword-to-contact/add-keyword-to-contact.mjs @@ -5,7 +5,12 @@ export default { name: "Add Keyword To Contact", description: "Add a keyword to a contact. [See the documentation](https://www.projectbroadcast.com/apidoc/#api-Contacts-Apply_Keyword)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, contactId: { diff --git a/components/project_broadcast/actions/broadcast-message/broadcast-message.mjs b/components/project_broadcast/actions/broadcast-message/broadcast-message.mjs index b44ea6ead3028..5679a905585ae 100644 --- a/components/project_broadcast/actions/broadcast-message/broadcast-message.mjs +++ b/components/project_broadcast/actions/broadcast-message/broadcast-message.mjs @@ -5,7 +5,12 @@ export default { name: "Broadcast Message", description: "Sends a broadcast message to a list of contacts. [See the documentation](https://www.projectbroadcast.com/apidoc/#api-Broadcast_Messages-CreateBroadcastMessage)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, scheduledAt: { diff --git a/components/project_broadcast/actions/create-contact/create-contact.mjs b/components/project_broadcast/actions/create-contact/create-contact.mjs index 5f3857e329644..1ff4cc5b9b9a3 100644 --- a/components/project_broadcast/actions/create-contact/create-contact.mjs +++ b/components/project_broadcast/actions/create-contact/create-contact.mjs @@ -4,7 +4,12 @@ export default { name: "Create Contact", description: "Create a new contact. [See the documentation](https://www.projectbroadcast.com/apidoc/#api-Contacts-CreateContact)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, phoneNumber: { diff --git a/components/proofly/actions/get-notification-data/get-notification-data.mjs b/components/proofly/actions/get-notification-data/get-notification-data.mjs index 5fa1fb552d854..fb9f15c8e7223 100644 --- a/components/proofly/actions/get-notification-data/get-notification-data.mjs +++ b/components/proofly/actions/get-notification-data/get-notification-data.mjs @@ -4,7 +4,12 @@ export default { key: "proofly-get-notification-data", name: "Get Notification Data", description: "Get data for a notification. [See the documentation here](https://proofly.io/developers)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/proofly/actions/toggle-campaign/toggle-campaign.mjs b/components/proofly/actions/toggle-campaign/toggle-campaign.mjs index 0d0cd72be663b..d4806a734b17e 100644 --- a/components/proofly/actions/toggle-campaign/toggle-campaign.mjs +++ b/components/proofly/actions/toggle-campaign/toggle-campaign.mjs @@ -4,7 +4,12 @@ export default { key: "proofly-toggle-campaign", name: "Toggle Campaign Status", description: "Switch a campaign's status between active and inactive. [See the documentation](https://proofly.io/developers)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/prospeo/actions/extract-data/extract-data.mjs b/components/prospeo/actions/extract-data/extract-data.mjs index 495f9381f6767..9d6fcfa51a5bd 100644 --- a/components/prospeo/actions/extract-data/extract-data.mjs +++ b/components/prospeo/actions/extract-data/extract-data.mjs @@ -3,7 +3,12 @@ import prospeo from "../../prospeo.app.mjs"; export default { name: "Extract Data", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prospeo-extract-data", description: "Extract data from any LinkedIn profile in real-time, as well as all the data from the company page, and also find a valid verified email from the lead. [See the documentation](https://prospeo.io/api/social-url-enrichment)", type: "action", diff --git a/components/prospeo/actions/find-email/find-email.mjs b/components/prospeo/actions/find-email/find-email.mjs index 435802a29befc..d35978d7b7d25 100644 --- a/components/prospeo/actions/find-email/find-email.mjs +++ b/components/prospeo/actions/find-email/find-email.mjs @@ -3,7 +3,12 @@ import prospeo from "../../prospeo.app.mjs"; export default { name: "Find Email", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prospeo-find-email", description: "Find an email address. [See the documentation](https://prospeo.io/api/email-finder)", type: "action", diff --git a/components/prospeo/actions/find-mobile-number/find-mobile-number.mjs b/components/prospeo/actions/find-mobile-number/find-mobile-number.mjs index a7e73dfe38a74..06d62388d8046 100644 --- a/components/prospeo/actions/find-mobile-number/find-mobile-number.mjs +++ b/components/prospeo/actions/find-mobile-number/find-mobile-number.mjs @@ -3,7 +3,12 @@ import prospeo from "../../prospeo.app.mjs"; export default { name: "Find Mobile Number", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prospeo-find-mobile-number", description: "Discover mobile numbers associated with a LinkedIn profile URL. [See the documentation](https://prospeo.io/api/mobile-finder)", type: "action", diff --git a/components/prospeo/actions/search-domain/search-domain.mjs b/components/prospeo/actions/search-domain/search-domain.mjs index d3635778d3157..53131f74a2984 100644 --- a/components/prospeo/actions/search-domain/search-domain.mjs +++ b/components/prospeo/actions/search-domain/search-domain.mjs @@ -4,7 +4,12 @@ import prospeo from "../../prospeo.app.mjs"; export default { name: "Search Domain", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prospeo-search-domain", description: "Discover email addresses associated with a domain name, website, or company name. [See the documentation](https://prospeo.io/api/domain-search)", type: "action", diff --git a/components/prospeo/actions/verify-email/verify-email.mjs b/components/prospeo/actions/verify-email/verify-email.mjs index a156cd9278f2a..a309c93cd5b3b 100644 --- a/components/prospeo/actions/verify-email/verify-email.mjs +++ b/components/prospeo/actions/verify-email/verify-email.mjs @@ -3,7 +3,12 @@ import prospeo from "../../prospeo.app.mjs"; export default { name: "Verify Email", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "prospeo-verify-email", description: "Verify the validity of an email address. [See the documentation](https://prospeo.io/api/email-verifier)", type: "action", diff --git a/components/proworkflow/actions/add-client-to-project/add-client-to-project.mjs b/components/proworkflow/actions/add-client-to-project/add-client-to-project.mjs index 5646057bf0290..2ac515d4f51ef 100644 --- a/components/proworkflow/actions/add-client-to-project/add-client-to-project.mjs +++ b/components/proworkflow/actions/add-client-to-project/add-client-to-project.mjs @@ -5,7 +5,12 @@ export default { name: "Add Client to Project", description: "Adds a client to a project. [See the docs](https://api.proworkflow.net/?documentation#gettingstartedpostsingle).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, projectId: { diff --git a/components/proworkflow/actions/add-contact/add-contact.mjs b/components/proworkflow/actions/add-contact/add-contact.mjs index 61824eb33469f..53cd2a9edde7c 100644 --- a/components/proworkflow/actions/add-contact/add-contact.mjs +++ b/components/proworkflow/actions/add-contact/add-contact.mjs @@ -5,7 +5,12 @@ export default { name: "Add Contact", description: "Adds a contact. [See the docs](https://api.proworkflow.net/?documentation#gettingstartedpostsingle).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, companyId: { diff --git a/components/proworkflow/actions/add-project-task/add-project-task.mjs b/components/proworkflow/actions/add-project-task/add-project-task.mjs index 811eebb5ba255..ef94400f1c2b8 100644 --- a/components/proworkflow/actions/add-project-task/add-project-task.mjs +++ b/components/proworkflow/actions/add-project-task/add-project-task.mjs @@ -5,7 +5,12 @@ export default { name: "Add Project Task", description: "Adds a project task. [See the docs](https://api.proworkflow.net/?documentation#gettingstartedpostsingle).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, projectId: { diff --git a/components/proworkflow/actions/add-project/add-project.mjs b/components/proworkflow/actions/add-project/add-project.mjs index fbee04d60bec2..9401f98a07c43 100644 --- a/components/proworkflow/actions/add-project/add-project.mjs +++ b/components/proworkflow/actions/add-project/add-project.mjs @@ -5,7 +5,12 @@ export default { name: "Add Project", description: "Adds a project. [See the docs](https://api.proworkflow.net/?documentation#gettingstartedpostsingle).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, companyId: { diff --git a/components/proworkflow/actions/delete-project/delete-project.mjs b/components/proworkflow/actions/delete-project/delete-project.mjs index d55d4c17da260..54c3943c15003 100644 --- a/components/proworkflow/actions/delete-project/delete-project.mjs +++ b/components/proworkflow/actions/delete-project/delete-project.mjs @@ -5,7 +5,12 @@ export default { name: "Delete Project", description: "Deletes a project. [See the docs](https://api.proworkflow.net/?documentation#gettingstarteddeletesingle).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, projectId: { diff --git a/components/proworkflow/actions/update-project-task/update-project-task.mjs b/components/proworkflow/actions/update-project-task/update-project-task.mjs index 827709d5e5482..3569bc880481c 100644 --- a/components/proworkflow/actions/update-project-task/update-project-task.mjs +++ b/components/proworkflow/actions/update-project-task/update-project-task.mjs @@ -5,7 +5,12 @@ export default { name: "Update Project Task", description: "Updates a project task. [See the docs](https://api.proworkflow.net/?documentation#gettingstartedputsingle).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, taskId: { diff --git a/components/proxycurl/actions/find-social-media-profiles-from-email/find-social-media-profiles-from-email.mjs b/components/proxycurl/actions/find-social-media-profiles-from-email/find-social-media-profiles-from-email.mjs index 747102310b3a5..05e894584234a 100644 --- a/components/proxycurl/actions/find-social-media-profiles-from-email/find-social-media-profiles-from-email.mjs +++ b/components/proxycurl/actions/find-social-media-profiles-from-email/find-social-media-profiles-from-email.mjs @@ -4,7 +4,12 @@ export default { name: "Find Social Media Profiles from Email", description: "Find Social Media Profiles from Email. Cost: 3 credit/successful request [See the documentation](https://nubela.co/proxycurl/docs#contact-api).", key: "proxycurl-find-social-media-profiles-from-email", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/proxycurl/actions/lookup-email-from-linkedin-profile/lookup-email-from-linkedin-profile.mjs b/components/proxycurl/actions/lookup-email-from-linkedin-profile/lookup-email-from-linkedin-profile.mjs index 9fa99404bfecd..3d863131a9849 100644 --- a/components/proxycurl/actions/lookup-email-from-linkedin-profile/lookup-email-from-linkedin-profile.mjs +++ b/components/proxycurl/actions/lookup-email-from-linkedin-profile/lookup-email-from-linkedin-profile.mjs @@ -4,7 +4,12 @@ export default { name: "Look Up Email from LinkedIn Profile", description: "Lookup work email address of a LinkedIn Person Profile. If you provided a webhook in your request parameter, our application will call your webhook with the result once. Cost: 3 credit/successful request [See the documentation](https://nubela.co/proxycurl/docs#contact-api-work-email-lookup-endpoint).", key: "proxycurl-lookup-email-from-linkedin-profile", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/proxycurl/actions/retrieve-company-metadata-from-linkedin/retrieve-company-metadata-from-linkedin.mjs b/components/proxycurl/actions/retrieve-company-metadata-from-linkedin/retrieve-company-metadata-from-linkedin.mjs index 6988a0f2fa5d5..c2f34cf980281 100644 --- a/components/proxycurl/actions/retrieve-company-metadata-from-linkedin/retrieve-company-metadata-from-linkedin.mjs +++ b/components/proxycurl/actions/retrieve-company-metadata-from-linkedin/retrieve-company-metadata-from-linkedin.mjs @@ -4,7 +4,12 @@ export default { name: "Retrieve Company Metadata from LinkedIn", description: "Retrieve Company Metadata from LinkedIn URL. Cost: 1 credit/successful request [See the documentation](https://nubela.co/proxycurl/docs#company-api-company-profile-endpoint).", key: "proxycurl-retrieve-company-metadata-from-linkedin", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/publisherkit/actions/create-image/create-image.mjs b/components/publisherkit/actions/create-image/create-image.mjs index 511c5a4b38950..05d6e239f641f 100644 --- a/components/publisherkit/actions/create-image/create-image.mjs +++ b/components/publisherkit/actions/create-image/create-image.mjs @@ -4,7 +4,12 @@ export default { key: "publisherkit-create-image", name: "Create Image", description: "Generates a new image within PublisherKit. [See the documentation](https://publisherkit.com/documentation/api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { publisherkit, diff --git a/components/pumble/actions/create-channel/create-channel.mjs b/components/pumble/actions/create-channel/create-channel.mjs index c126ca9864740..7bc52af1bc2e2 100644 --- a/components/pumble/actions/create-channel/create-channel.mjs +++ b/components/pumble/actions/create-channel/create-channel.mjs @@ -4,7 +4,12 @@ export default { key: "pumble-create-channel", name: "Create Channel", description: "Create a new channel in Pumble. [See the documentation](https://pumble.com/help/integrations/add-pumble-apps/api-keys-integration/#create-channel)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pumble, diff --git a/components/pumble/actions/list-messages/list-messages.mjs b/components/pumble/actions/list-messages/list-messages.mjs index c20f51fa00e18..c8efc4b0ce9f3 100644 --- a/components/pumble/actions/list-messages/list-messages.mjs +++ b/components/pumble/actions/list-messages/list-messages.mjs @@ -4,7 +4,12 @@ export default { key: "pumble-list-messages", name: "List Messages", description: "List messages in a channel. [See the documentation](https://pumble.com/help/integrations/add-pumble-apps/api-keys-integration/#list-messages-in-a-channel)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { pumble, diff --git a/components/pumble/actions/send-message/send-message.mjs b/components/pumble/actions/send-message/send-message.mjs index 034be02d08e5a..0363d2e700597 100644 --- a/components/pumble/actions/send-message/send-message.mjs +++ b/components/pumble/actions/send-message/send-message.mjs @@ -4,7 +4,12 @@ export default { key: "pumble-send-message", name: "Send Message", description: "Send a message to a channel in Pumble. [See the documentation](https://pumble.com/help/integrations/add-pumble-apps/api-keys-integration/#send-messages)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pumble, diff --git a/components/puppeteer/actions/get-html/get-html.mjs b/components/puppeteer/actions/get-html/get-html.mjs index 3f58db0c0a772..9c667706e22d6 100644 --- a/components/puppeteer/actions/get-html/get-html.mjs +++ b/components/puppeteer/actions/get-html/get-html.mjs @@ -7,7 +7,12 @@ export default { name: "Get HTML", description: "Get the HTML of a webpage using Puppeteer. [See the documentation](https://pptr.dev/api/puppeteer.page.content) for details.", - version: "1.0.3", + version: "1.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { puppeteer, diff --git a/components/puppeteer/actions/get-page-title/get-page-title.mjs b/components/puppeteer/actions/get-page-title/get-page-title.mjs index b3a70b8a7d704..056cb9e10f416 100644 --- a/components/puppeteer/actions/get-page-title/get-page-title.mjs +++ b/components/puppeteer/actions/get-page-title/get-page-title.mjs @@ -7,7 +7,12 @@ export default { name: "Get Page Title", description: "Get the title of a webpage using Puppeteer. [See the documentation](https://pptr.dev/api/puppeteer.page.title)", - version: "1.0.3", + version: "1.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { puppeteer, diff --git a/components/puppeteer/actions/get-pdf/get-pdf.mjs b/components/puppeteer/actions/get-pdf/get-pdf.mjs index 6dec6eb1e334a..1279057cf8dd6 100644 --- a/components/puppeteer/actions/get-pdf/get-pdf.mjs +++ b/components/puppeteer/actions/get-pdf/get-pdf.mjs @@ -9,7 +9,12 @@ export default { name: "Get PDF", description: "Generate a PDF of a page using Puppeteer. [See the documentation](https://pptr.dev/api/puppeteer.page.pdf)", - version: "1.0.4", + version: "1.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { puppeteer, diff --git a/components/puppeteer/actions/screenshot-page/screenshot-page.mjs b/components/puppeteer/actions/screenshot-page/screenshot-page.mjs index 8a30f3c54129c..54f2fb564482c 100644 --- a/components/puppeteer/actions/screenshot-page/screenshot-page.mjs +++ b/components/puppeteer/actions/screenshot-page/screenshot-page.mjs @@ -10,7 +10,12 @@ export default { name: "Screenshot a Page", description: "Captures a screenshot of a page using Puppeteer. [See the documentation](https://pptr.dev/api/puppeteer.page.screenshot)", - version: "1.0.4", + version: "1.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { puppeteer, diff --git a/components/push_by_techulus/actions/send-push-notification/send-push-notification.mjs b/components/push_by_techulus/actions/send-push-notification/send-push-notification.mjs index d820e2b6cf7e3..4c3a049df241d 100644 --- a/components/push_by_techulus/actions/send-push-notification/send-push-notification.mjs +++ b/components/push_by_techulus/actions/send-push-notification/send-push-notification.mjs @@ -4,7 +4,12 @@ export default { key: "push_by_techulus-send-push-notification", name: "Send Push Notification", description: "Sends a new Push notification to the user. [See the documentation](https://docs.push.techulus.com/api-documentation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pushByTechulus,