diff --git a/components/espocrm/actions/create-task/create-task.mjs b/components/espocrm/actions/create-task/create-task.mjs index 5f2de286c326d..3029372092022 100644 --- a/components/espocrm/actions/create-task/create-task.mjs +++ b/components/espocrm/actions/create-task/create-task.mjs @@ -5,7 +5,12 @@ export default { key: "espocrm-create-task", name: "Create Task", description: "This component creates a new task in Espo CRM. [See the documentation](https://docs.espocrm.com/development/api/crud/#create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { espoCrm, diff --git a/components/espocrm/actions/list-accounts/list-accounts.mjs b/components/espocrm/actions/list-accounts/list-accounts.mjs index 859592af6761d..ef4212f91e3fb 100644 --- a/components/espocrm/actions/list-accounts/list-accounts.mjs +++ b/components/espocrm/actions/list-accounts/list-accounts.mjs @@ -4,7 +4,12 @@ export default { key: "espocrm-list-accounts", name: "List Accounts", description: "Retrieves a list of accounts from Espo CRM. [See the documentation](https://docs.espocrm.com/development/api/account/#list)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { espoCrm, diff --git a/components/esputnik/actions/create-contact/create-contact.mjs b/components/esputnik/actions/create-contact/create-contact.mjs index ce443a0978644..9fb2a60bdd9ac 100644 --- a/components/esputnik/actions/create-contact/create-contact.mjs +++ b/components/esputnik/actions/create-contact/create-contact.mjs @@ -4,7 +4,12 @@ export default { key: "esputnik-create-contact", name: "Create Contact", description: "Create a new contact in eSputnik. [See the docs here](https://esputnik.com/api/methods.html#/v1/contact-POST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { esputnik, diff --git a/components/esputnik/actions/send-event/send-event.mjs b/components/esputnik/actions/send-event/send-event.mjs index ab668ee98cb19..6a130b80aabc0 100644 --- a/components/esputnik/actions/send-event/send-event.mjs +++ b/components/esputnik/actions/send-event/send-event.mjs @@ -4,7 +4,12 @@ export default { key: "esputnik-send-event", name: "Send Event", description: "Send an event in eSputnik. [See the docs here](https://esputnik.com/api/methods.html#/v1/event-POST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { esputnik, diff --git a/components/esputnik/actions/subscribe-contact/subscribe-contact.mjs b/components/esputnik/actions/subscribe-contact/subscribe-contact.mjs index 5f6cc802923fb..2c8bd7fdc05b4 100644 --- a/components/esputnik/actions/subscribe-contact/subscribe-contact.mjs +++ b/components/esputnik/actions/subscribe-contact/subscribe-contact.mjs @@ -4,7 +4,12 @@ export default { key: "esputnik-subscribe-contact", name: "Subscribe Contact", description: "Create a new unverified contact in eSputnik. For use with double opt-in implementation. User will need to verify the email to confirm their subscription. [See the docs here](https://esputnik.com/api/methods.html#/v1/contact/subscribe-POST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { esputnik, diff --git a/components/esputnik/actions/update-contact/update-contact.mjs b/components/esputnik/actions/update-contact/update-contact.mjs index 38a043ecd836f..3bc377da549ce 100644 --- a/components/esputnik/actions/update-contact/update-contact.mjs +++ b/components/esputnik/actions/update-contact/update-contact.mjs @@ -4,7 +4,12 @@ export default { key: "esputnik-update-contact", name: "Update Contact", description: "Update an existing contact in eSputnik. [See the docs here](https://esputnik.com/api/methods.html#/v1/contact/{id}-PUT)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { esputnik, diff --git a/components/espy/actions/email-lookup/email-lookup.mjs b/components/espy/actions/email-lookup/email-lookup.mjs index 059ceee5c22f9..a68e4fb4b3868 100644 --- a/components/espy/actions/email-lookup/email-lookup.mjs +++ b/components/espy/actions/email-lookup/email-lookup.mjs @@ -4,7 +4,12 @@ export default { key: "espy-email-lookup", name: "Email Lookup", description: "Request a lookup for the provided email. [See the documentation](https://api-docs.espysys.com/name-socialscan/headers-and-body-request-by-name-lookup)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/espy/actions/get-lookup-results/get-lookup-results.mjs b/components/espy/actions/get-lookup-results/get-lookup-results.mjs index 1a0ce68086f02..64b549a8d4e6d 100644 --- a/components/espy/actions/get-lookup-results/get-lookup-results.mjs +++ b/components/espy/actions/get-lookup-results/get-lookup-results.mjs @@ -4,7 +4,12 @@ export default { key: "espy-get-lookup-results", name: "Get Lookup Results", description: "Get the results of the lookup with the provided ID. [See the documentation](https://api-docs.espysys.com/e-mail-lookup/get-get-lookup-data-for-a-request-by-e-mail-lookup)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/espy/actions/name-lookup/name-lookup.mjs b/components/espy/actions/name-lookup/name-lookup.mjs index 6dfe2da24c66c..932b71bff2cbd 100644 --- a/components/espy/actions/name-lookup/name-lookup.mjs +++ b/components/espy/actions/name-lookup/name-lookup.mjs @@ -4,7 +4,12 @@ export default { key: "espy-name-lookup", name: "Name Lookup", description: "Request a lookup for the provided name. [See the documentation](https://api-docs.espysys.com/name-socialscan/headers-and-body-request-by-name-lookup)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/etsy/actions/create-draft-listing-product/create-draft-listing-product.mjs b/components/etsy/actions/create-draft-listing-product/create-draft-listing-product.mjs index 4ed7233b221a4..964fade5892de 100644 --- a/components/etsy/actions/create-draft-listing-product/create-draft-listing-product.mjs +++ b/components/etsy/actions/create-draft-listing-product/create-draft-listing-product.mjs @@ -6,7 +6,12 @@ export default { name: "Create Draft Listing Product", description: "Creates a physical draft listing product in a shop on the Etsy channel. [See the Documentation](https://developers.etsy.com/documentation/reference#operation/createDraftListing)", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, quantity: { diff --git a/components/etsy/actions/delete-listing/delete-listing.mjs b/components/etsy/actions/delete-listing/delete-listing.mjs index 1c82a403dff41..7c5a6741d7edf 100644 --- a/components/etsy/actions/delete-listing/delete-listing.mjs +++ b/components/etsy/actions/delete-listing/delete-listing.mjs @@ -5,7 +5,12 @@ export default { name: "Delete Listing", description: "Open API V3 endpoint to delete a ShopListing. A ShopListing can be deleted only if the state is one of the following: `SOLD_OUT`, `DRAFT`, `EXPIRED`, `INACTIVE`, `ACTIVE` and `is_available` or `ACTIVE` and has seller flags: `SUPRESSED` (frozen), `VACATION`, `CUSTOM_SHOPS` (pattern), `SELL_ON_FACEBOOK`. [See the Documentation](https://developers.etsy.com/documentation/reference#operation/deleteListing)", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, shopId: { diff --git a/components/etsy/actions/get-listing-inventory/get-listing-inventory.mjs b/components/etsy/actions/get-listing-inventory/get-listing-inventory.mjs index d983e56a9c66d..549c907fd5868 100644 --- a/components/etsy/actions/get-listing-inventory/get-listing-inventory.mjs +++ b/components/etsy/actions/get-listing-inventory/get-listing-inventory.mjs @@ -5,7 +5,12 @@ export default { name: "Get Listing Inventory", description: "Retrieves the inventory record for a listing by listing ID. [See the Documentation](https://developer.etsy.com/documentation/reference/#operation/getListingInventory)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, state: { diff --git a/components/etsy/actions/get-listing/get-listing.mjs b/components/etsy/actions/get-listing/get-listing.mjs index 19b334a6989f1..12d923c7bc661 100644 --- a/components/etsy/actions/get-listing/get-listing.mjs +++ b/components/etsy/actions/get-listing/get-listing.mjs @@ -5,7 +5,12 @@ export default { name: "Get Listing", description: "Retrieves a listing record by listing ID. [See the Documentation](https://developers.etsy.com/documentation/reference#operation/getListing)", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, shopId: { diff --git a/components/etsy/actions/update-listing-inventory/update-listing-inventory.mjs b/components/etsy/actions/update-listing-inventory/update-listing-inventory.mjs index efcab2891ac33..edda5b7eb6fec 100644 --- a/components/etsy/actions/update-listing-inventory/update-listing-inventory.mjs +++ b/components/etsy/actions/update-listing-inventory/update-listing-inventory.mjs @@ -6,7 +6,12 @@ export default { name: "Update Listing Inventory", description: "Updates the inventory for a listing identified by a listing ID. [See the Documentation](https://developer.etsy.com/documentation/reference/#operation/getListingInventory)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, state: { diff --git a/components/etsy/actions/update-listing-property/update-listing-property.mjs b/components/etsy/actions/update-listing-property/update-listing-property.mjs index eaffd051dda20..d837e5081f394 100644 --- a/components/etsy/actions/update-listing-property/update-listing-property.mjs +++ b/components/etsy/actions/update-listing-property/update-listing-property.mjs @@ -6,7 +6,12 @@ export default { name: "Update Listing Property", description: "Updates or populates the properties list defining product offerings for a listing. Each offering requires both a `value` and a `value_id` that are valid for a `scale_id` assigned to the listing or that you assign to the listing with this request. [See the Documentation](https://developers.etsy.com/documentation/reference#operation/updateListingProperty)", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, shopId: { diff --git a/components/eventbrite/actions/create-event/create-event.mjs b/components/eventbrite/actions/create-event/create-event.mjs index 2203189bfe18e..873ad1b1d21c9 100644 --- a/components/eventbrite/actions/create-event/create-event.mjs +++ b/components/eventbrite/actions/create-event/create-event.mjs @@ -5,7 +5,12 @@ export default { key: "eventbrite-create-event", name: "Create Event", description: "Create a new Eventbrite event. [See the documentation](https://www.eventbrite.com/platform/api#/reference/event/create/create-an-event)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { eventbrite, diff --git a/components/eventbrite/actions/get-event-attendees/get-event-attendees.mjs b/components/eventbrite/actions/get-event-attendees/get-event-attendees.mjs index 16f031f98290c..7bc018c559737 100644 --- a/components/eventbrite/actions/get-event-attendees/get-event-attendees.mjs +++ b/components/eventbrite/actions/get-event-attendees/get-event-attendees.mjs @@ -4,7 +4,12 @@ export default { key: "eventbrite-get-event-attendees", name: "Get Event Attendees", description: "Get event attendees for a specified event. [See the documentation](https://www.eventbrite.com/platform/api#/reference/attendee/list/list-attendees-by-event)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { eventbrite, diff --git a/components/eventbrite/actions/get-event-details/get-event-details.mjs b/components/eventbrite/actions/get-event-details/get-event-details.mjs index 2a95d38bdbc87..b9fa7aa40d9a3 100644 --- a/components/eventbrite/actions/get-event-details/get-event-details.mjs +++ b/components/eventbrite/actions/get-event-details/get-event-details.mjs @@ -4,7 +4,12 @@ export default { key: "eventbrite-get-event-details", name: "Get Event Details", description: "Get details for a specified event. [See the documentation](https://www.eventbrite.com/platform/api#/reference/event/retrieve/retrieve-an-event)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { eventbrite, diff --git a/components/eventbrite/actions/get-event-summary/get-event-summary.mjs b/components/eventbrite/actions/get-event-summary/get-event-summary.mjs index ac2913755ffa2..bdffd939cffa4 100644 --- a/components/eventbrite/actions/get-event-summary/get-event-summary.mjs +++ b/components/eventbrite/actions/get-event-summary/get-event-summary.mjs @@ -4,7 +4,12 @@ export default { key: "eventbrite-get-event-summary", name: "Get Event Summary", description: "Get event summary for a specified event. [See the documentation](https://www.eventbrite.com/platform/api#/reference/event/retrieve/retrieve-an-event)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { eventbrite, diff --git a/components/eventbrite/actions/get-my-orders/get-my-orders.mjs b/components/eventbrite/actions/get-my-orders/get-my-orders.mjs index 2d3d97974cd6a..def1949a000ce 100644 --- a/components/eventbrite/actions/get-my-orders/get-my-orders.mjs +++ b/components/eventbrite/actions/get-my-orders/get-my-orders.mjs @@ -4,7 +4,12 @@ export default { key: "eventbrite-get-my-orders", name: "Get My Orders", description: "Get a list of event orders placed by the authenticated user. [See the documentation](https://www.eventbrite.com/platform/docs/order-lookup)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { eventbrite, diff --git a/components/everhour/actions/create-task/create-task.mjs b/components/everhour/actions/create-task/create-task.mjs index af6ce6cea5bdb..b8f697c63d1e4 100644 --- a/components/everhour/actions/create-task/create-task.mjs +++ b/components/everhour/actions/create-task/create-task.mjs @@ -6,7 +6,12 @@ export default { key: "everhour-create-task", name: "Create Task", description: "Creates a new task in Everhour. [See the documentation](https://everhour.docs.apiary.io/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { everhour, diff --git a/components/everhour/actions/start-timer/start-timer.mjs b/components/everhour/actions/start-timer/start-timer.mjs index 81d203782731c..a766ed18f4701 100644 --- a/components/everhour/actions/start-timer/start-timer.mjs +++ b/components/everhour/actions/start-timer/start-timer.mjs @@ -4,7 +4,12 @@ export default { key: "everhour-start-timer", name: "Start Timer", description: "Begins a new timer for a task. [See the documentation](https://everhour.docs.apiary.io/#reference/0/timers/start-timer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { everhour, diff --git a/components/everhour/actions/stop-timer/stop-timer.mjs b/components/everhour/actions/stop-timer/stop-timer.mjs index e533e1afe3c65..0a0baa2a099d5 100644 --- a/components/everhour/actions/stop-timer/stop-timer.mjs +++ b/components/everhour/actions/stop-timer/stop-timer.mjs @@ -4,7 +4,12 @@ export default { key: "everhour-stop-timer", name: "Stop Timer", description: "Halts the current running timer. [See the documentation](https://everhour.docs.apiary.io/#reference/timers/stop-timer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { everhour, diff --git a/components/evernote/actions/create-note/create-note.mjs b/components/evernote/actions/create-note/create-note.mjs index 43caeded0f6cd..b7e2034fa779a 100644 --- a/components/evernote/actions/create-note/create-note.mjs +++ b/components/evernote/actions/create-note/create-note.mjs @@ -6,7 +6,12 @@ export default { key: "evernote-create-note", name: "Create Note", description: "Creates a new note in Evernote. [See the documentation](https://dev.evernote.com/doc/reference/NoteStore.html#Fn_NoteStore_createNote)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { evernote, diff --git a/components/evernote/actions/create-notebook/create-notebook.mjs b/components/evernote/actions/create-notebook/create-notebook.mjs index 56d6c8d83373a..7d020984e92ee 100644 --- a/components/evernote/actions/create-notebook/create-notebook.mjs +++ b/components/evernote/actions/create-notebook/create-notebook.mjs @@ -6,7 +6,12 @@ export default { key: "evernote-create-notebook", name: "Create Notebook", description: "Creates a new notebook in Evernote. [See the documentation](https://dev.evernote.com/doc/reference/NoteStore.html#Fn_NoteStore_createNotebook)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { evernote, diff --git a/components/evernote/actions/update-note/update-note.mjs b/components/evernote/actions/update-note/update-note.mjs index 73578363de24b..2073dea7883a7 100644 --- a/components/evernote/actions/update-note/update-note.mjs +++ b/components/evernote/actions/update-note/update-note.mjs @@ -6,7 +6,12 @@ export default { key: "evernote-update-note", name: "Update Note", description: "Updates an existing note in Evernote. [See the documentation](https://dev.evernote.com/doc/reference/NoteStore.html#Fn_NoteStore_updateNote)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { evernote, diff --git a/components/exhibitday/actions/create-event/create-event.mjs b/components/exhibitday/actions/create-event/create-event.mjs index d7dfb4caf979d..286d2b28f2f2d 100644 --- a/components/exhibitday/actions/create-event/create-event.mjs +++ b/components/exhibitday/actions/create-event/create-event.mjs @@ -4,7 +4,12 @@ export default { key: "exhibitday-create-event", name: "Create Event", description: "Creates a new event in ExhibitDay. [See the documentation](https://api.exhibitday.com/Help/V1?epf=1)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { exhibitday, diff --git a/components/exhibitday/actions/create-task/create-task.mjs b/components/exhibitday/actions/create-task/create-task.mjs index 74f73a9567f29..2425856a1f60d 100644 --- a/components/exhibitday/actions/create-task/create-task.mjs +++ b/components/exhibitday/actions/create-task/create-task.mjs @@ -4,7 +4,12 @@ export default { key: "exhibitday-create-task", name: "Create Task", description: "Creates a new task in ExhibitDay. [See the documentation](https://api.exhibitday.com/Help/V1?epf=2)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { exhibitday, diff --git a/components/exhibitday/actions/update-task/update-task.mjs b/components/exhibitday/actions/update-task/update-task.mjs index dc053c136ba84..9a8c871cf97f1 100644 --- a/components/exhibitday/actions/update-task/update-task.mjs +++ b/components/exhibitday/actions/update-task/update-task.mjs @@ -5,7 +5,12 @@ export default { key: "exhibitday-update-task", name: "Update Task", description: "Updates an existing task in ExhibitDay. [See the documentation](https://api.exhibitday.com/Help/V1?epf=2)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { exhibitday, diff --git a/components/expedy/actions/create-print-job/create-print-job.mjs b/components/expedy/actions/create-print-job/create-print-job.mjs index 250ae6c83e73e..0f3cb8771798c 100644 --- a/components/expedy/actions/create-print-job/create-print-job.mjs +++ b/components/expedy/actions/create-print-job/create-print-job.mjs @@ -4,7 +4,12 @@ export default { key: "expedy-create-print-job", name: "Create Print Job", description: "Sends a print job to the designated thermal printer using its unique identifier (uid). [See the documentation](https://expedy.stoplight.io/docs/api-v2/01132c3490c8b-create-a-print-job)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { expedy, diff --git a/components/explorium/actions/enrich-business/enrich-business.mjs b/components/explorium/actions/enrich-business/enrich-business.mjs index bc209ac776811..a6af815fe93cd 100644 --- a/components/explorium/actions/enrich-business/enrich-business.mjs +++ b/components/explorium/actions/enrich-business/enrich-business.mjs @@ -5,7 +5,12 @@ export default { key: "explorium-enrich-business", name: "Enrich Business", description: "Enrich business data with comprehensive insights for lead generation, risk assessment, and business intelligence. [See the documentation](https://developers.explorium.ai/reference/businesses_enrichments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { explorium, diff --git a/components/explorium/actions/enrich-prospect/enrich-prospect.mjs b/components/explorium/actions/enrich-prospect/enrich-prospect.mjs index b1d12e6f82c2f..44c0810b65b3a 100644 --- a/components/explorium/actions/enrich-prospect/enrich-prospect.mjs +++ b/components/explorium/actions/enrich-prospect/enrich-prospect.mjs @@ -5,7 +5,12 @@ export default { key: "explorium-enrich-prospect", name: "Enrich Prospect", description: "Enrich prospect records with comprehensive professional and contact information to enhance outreach and engagement strategies. [See the documentation](https://developers.explorium.ai/reference/prospects_enrichments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { explorium, diff --git a/components/explorium/actions/fetch-businesses/fetch-businesses.mjs b/components/explorium/actions/fetch-businesses/fetch-businesses.mjs index 16cb17265b4d6..ed569bc1f4021 100644 --- a/components/explorium/actions/fetch-businesses/fetch-businesses.mjs +++ b/components/explorium/actions/fetch-businesses/fetch-businesses.mjs @@ -4,7 +4,12 @@ export default { key: "explorium-fetch-businesses", name: "Fetch Businesses", description: "Fetches business records using filters. [See the documentation](https://developers.explorium.ai/reference/list_businesses)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { explorium, diff --git a/components/explorium/actions/fetch-prospects/fetch-prospects.mjs b/components/explorium/actions/fetch-prospects/fetch-prospects.mjs index 5a4bfc667de6c..070d173f41761 100644 --- a/components/explorium/actions/fetch-prospects/fetch-prospects.mjs +++ b/components/explorium/actions/fetch-prospects/fetch-prospects.mjs @@ -5,7 +5,12 @@ export default { key: "explorium-fetch-prospects", name: "Fetch Prospects", description: "Fetches prospect records using filters. [See the documentation](https://developers.explorium.ai/reference/fetch_prospects)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { explorium, diff --git a/components/explorium/actions/match-business-id/match-business-id.mjs b/components/explorium/actions/match-business-id/match-business-id.mjs index a9e4778e1659a..3ae86047a87a3 100644 --- a/components/explorium/actions/match-business-id/match-business-id.mjs +++ b/components/explorium/actions/match-business-id/match-business-id.mjs @@ -4,7 +4,12 @@ export default { key: "explorium-match-business-id", name: "Match Business ID", description: "Match a businesse to its unique identifier using business name and domain. [See the documentation](https://developers.explorium.ai/reference/match_businesses)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { explorium, diff --git a/components/explorium/actions/match-prospect-id/match-prospect-id.mjs b/components/explorium/actions/match-prospect-id/match-prospect-id.mjs index 47ee1c61b58be..df084b9d17887 100644 --- a/components/explorium/actions/match-prospect-id/match-prospect-id.mjs +++ b/components/explorium/actions/match-prospect-id/match-prospect-id.mjs @@ -4,7 +4,12 @@ export default { key: "explorium-match-prospect-id", name: "Match Prospect ID", description: "Match individual prospects to unique identifiers using email addresses. [See the documentation](https://developers.explorium.ai/reference/match_prospects-1)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { explorium, diff --git a/components/expofp/actions/add-exhibitor-booth/add-exhibitor-booth.mjs b/components/expofp/actions/add-exhibitor-booth/add-exhibitor-booth.mjs index e6c55504b8ee6..409d2815f2388 100644 --- a/components/expofp/actions/add-exhibitor-booth/add-exhibitor-booth.mjs +++ b/components/expofp/actions/add-exhibitor-booth/add-exhibitor-booth.mjs @@ -2,7 +2,12 @@ import expofp from "../../expofp.app.mjs"; export default { name: "Add Exhibitor Booth", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "expofp-add-exhibitor-booth", description: "Adds an exhibitor booth. [See the documentation](https://expofp.docs.apiary.io/#reference/0/add-exhibitor-booth/add-exhibitor-booth)", diff --git a/components/expofp/actions/add-exhibitor/add-exhibitor.mjs b/components/expofp/actions/add-exhibitor/add-exhibitor.mjs index acde918dda1df..0c6da631122ca 100644 --- a/components/expofp/actions/add-exhibitor/add-exhibitor.mjs +++ b/components/expofp/actions/add-exhibitor/add-exhibitor.mjs @@ -3,7 +3,12 @@ import common from "../common/add-or-update-exhibitor.mjs"; export default { ...common, name: "Add Exhibitor", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "expofp-add-exhibitor", description: "Adds an exhibitor. [See the documentation](https://expofp.docs.apiary.io/#reference/0/add-exhibitor/add-exhibitor)", diff --git a/components/expofp/actions/get-booth/get-booth.mjs b/components/expofp/actions/get-booth/get-booth.mjs index a8ea1ec4f6224..b1b8a2eb2444d 100644 --- a/components/expofp/actions/get-booth/get-booth.mjs +++ b/components/expofp/actions/get-booth/get-booth.mjs @@ -2,7 +2,12 @@ import expofp from "../../expofp.app.mjs"; export default { name: "Get Booth", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "expofp-get-booth", description: "Get details of a booth. [See the documentation](https://expofp.docs.apiary.io/#reference/0/get-booth-details/get-booth-details)", type: "action", diff --git a/components/expofp/actions/get-exhibitor/get-exhibitor.mjs b/components/expofp/actions/get-exhibitor/get-exhibitor.mjs index 8d216e11e9170..b80397930913d 100644 --- a/components/expofp/actions/get-exhibitor/get-exhibitor.mjs +++ b/components/expofp/actions/get-exhibitor/get-exhibitor.mjs @@ -2,7 +2,12 @@ import expofp from "../../expofp.app.mjs"; export default { name: "Get Exhibitor", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "expofp-get-exhibitor", description: "Get details of an exhibitor. [See the documentation](https://expofp.docs.apiary.io/#reference/0/get-exhibitor-details/get-exhibitor-details)", type: "action", diff --git a/components/expofp/actions/list-all-events/list-all-events.mjs b/components/expofp/actions/list-all-events/list-all-events.mjs index 6a2ae5a90da10..b9b82dc697ccd 100644 --- a/components/expofp/actions/list-all-events/list-all-events.mjs +++ b/components/expofp/actions/list-all-events/list-all-events.mjs @@ -2,7 +2,12 @@ import expofp from "../../expofp.app.mjs"; export default { name: "List All Events", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "expofp-list-all-events", description: "List all events. [See the documentation](https://expofp.docs.apiary.io/#reference/0/list-all-events/list-all-events)", diff --git a/components/expofp/actions/update-booth/update-booth.mjs b/components/expofp/actions/update-booth/update-booth.mjs index 61ab6933021fd..da34209e8a1df 100644 --- a/components/expofp/actions/update-booth/update-booth.mjs +++ b/components/expofp/actions/update-booth/update-booth.mjs @@ -2,7 +2,12 @@ import expofp from "../../expofp.app.mjs"; export default { name: "Update Booth", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "expofp-update-booth", description: "Updates a booth. [See the documentation](https://expofp.docs.apiary.io/#reference/0/update-booth/update-booth)", type: "action", diff --git a/components/expofp/actions/update-exhibitor/update-exhibitor.mjs b/components/expofp/actions/update-exhibitor/update-exhibitor.mjs index 2d52cbe73fc11..4b21c23532ead 100644 --- a/components/expofp/actions/update-exhibitor/update-exhibitor.mjs +++ b/components/expofp/actions/update-exhibitor/update-exhibitor.mjs @@ -4,7 +4,12 @@ import common from "../common/add-or-update-exhibitor.mjs"; export default { ...common, name: "Update Exhibitor", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "expofp-update-exhibitor", description: "Updates an exhibitor. [See the documentation](https://expofp.docs.apiary.io/#reference/0/update-exhibitor/update-exhibitor)", type: "action", diff --git a/components/ezeep_blue/actions/create-print-job/create-print-job.mjs b/components/ezeep_blue/actions/create-print-job/create-print-job.mjs index 3496eb07c67fd..49e863a22674c 100644 --- a/components/ezeep_blue/actions/create-print-job/create-print-job.mjs +++ b/components/ezeep_blue/actions/create-print-job/create-print-job.mjs @@ -7,7 +7,12 @@ export default { key: "ezeep_blue-create-print-job", name: "Create Print Job", description: "Send a new print job to a specified printer.", - version: "1.0.1", + version: "1.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ezeepBlue, diff --git a/components/ezeep_blue/actions/get-print-job-status/get-print-job-status.mjs b/components/ezeep_blue/actions/get-print-job-status/get-print-job-status.mjs index 141cea9b6ca0b..087855ccc1951 100644 --- a/components/ezeep_blue/actions/get-print-job-status/get-print-job-status.mjs +++ b/components/ezeep_blue/actions/get-print-job-status/get-print-job-status.mjs @@ -4,7 +4,12 @@ export default { key: "ezeep_blue-get-print-job-status", name: "Get Print Job Status", description: "Check the status of a specific print job. [See the documentation](https://apidocs.ezeep.com/ezeepblue/api/printapi/README.html#get-status)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ezeepBlue, diff --git a/components/ezeep_blue/actions/list-printers/list-printers.mjs b/components/ezeep_blue/actions/list-printers/list-printers.mjs index 005228a8b84cf..d1bc87b01108d 100644 --- a/components/ezeep_blue/actions/list-printers/list-printers.mjs +++ b/components/ezeep_blue/actions/list-printers/list-printers.mjs @@ -4,7 +4,12 @@ export default { key: "ezeep_blue-list-printers", name: "List Printers", description: "Retrieve a list of all available printers in the network. [See the documentation](https://apidocs.ezeep.com/ezeepblue/api/rest_api/printers/README.html#list-printers)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ezeep, diff --git a/components/f15five/actions/create-high-five/create-high-five.mjs b/components/f15five/actions/create-high-five/create-high-five.mjs index 812848ded5c1f..da8933f808bdd 100644 --- a/components/f15five/actions/create-high-five/create-high-five.mjs +++ b/components/f15five/actions/create-high-five/create-high-five.mjs @@ -4,7 +4,12 @@ export default { key: "f15five-create-high-five", name: "Create High Five", description: "Create a High five within a company. [See the documentation](https://my.15five.com/api/public/#tag/High-Five/paths/~1api~1public~1high-five~1/post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { f15five, diff --git a/components/f15five/actions/get-checkin-details/get-checkin-details.mjs b/components/f15five/actions/get-checkin-details/get-checkin-details.mjs index 28ea9e3c29b28..cd0e053ad5a27 100644 --- a/components/f15five/actions/get-checkin-details/get-checkin-details.mjs +++ b/components/f15five/actions/get-checkin-details/get-checkin-details.mjs @@ -4,7 +4,12 @@ export default { key: "f15five-get-checkin-details", name: "Get Checkin Details", description: "Get check-in object details. [See the documentation](https://my.15five.com/api/public/#tag/Check-in/paths/~1api~1public~1report~1%7Bid%7D~1/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { f15five, diff --git a/components/f15five/actions/get-user/get-user.mjs b/components/f15five/actions/get-user/get-user.mjs index 7b856944165cb..788a031ac5f40 100644 --- a/components/f15five/actions/get-user/get-user.mjs +++ b/components/f15five/actions/get-user/get-user.mjs @@ -4,7 +4,12 @@ export default { key: "f15five-get-user", name: "Get User", description: "Retrieve a user object. [See the documentation](https://my.15five.com/api/public/#tag/User/paths/~1api~1public~1user~1%7Bid%7D~1/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { f15five, diff --git a/components/facebook_groups/actions/create-post/create-post.mjs b/components/facebook_groups/actions/create-post/create-post.mjs index d14c499b1fd8a..7b78f765d8761 100644 --- a/components/facebook_groups/actions/create-post/create-post.mjs +++ b/components/facebook_groups/actions/create-post/create-post.mjs @@ -7,7 +7,12 @@ export default { key: "facebook_groups-create-post", name: "Create Post", description: "Create a new post in a group. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/v17.0/group/feed)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_groups/actions/get-post/get-post.mjs b/components/facebook_groups/actions/get-post/get-post.mjs index 0c58b647dcfdb..4c05658c36a39 100644 --- a/components/facebook_groups/actions/get-post/get-post.mjs +++ b/components/facebook_groups/actions/get-post/get-post.mjs @@ -6,7 +6,12 @@ export default { key: "facebook_groups-get-post", name: "Get Post", description: "Retrieves post in a group. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/post/)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_groups/actions/list-comments/list-comments.mjs b/components/facebook_groups/actions/list-comments/list-comments.mjs index 2897f3becb184..1d71a87f10d29 100644 --- a/components/facebook_groups/actions/list-comments/list-comments.mjs +++ b/components/facebook_groups/actions/list-comments/list-comments.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_groups-list-comments", name: "List Comments", description: "Retrieves a list of comments on a group post. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/v17.0/comment)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_groups/actions/list-reactions/list-reactions.mjs b/components/facebook_groups/actions/list-reactions/list-reactions.mjs index 45ba8011fca8c..62d3cbe05aa42 100644 --- a/components/facebook_groups/actions/list-reactions/list-reactions.mjs +++ b/components/facebook_groups/actions/list-reactions/list-reactions.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_groups-list-reactions", name: "List Reactions", description: "Retrieves a list of reactions on a group post. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/v17.0/object/reactions)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_groups/actions/post-photo/post-photo.mjs b/components/facebook_groups/actions/post-photo/post-photo.mjs index 135c451b546be..cd7a99883acbc 100644 --- a/components/facebook_groups/actions/post-photo/post-photo.mjs +++ b/components/facebook_groups/actions/post-photo/post-photo.mjs @@ -6,7 +6,12 @@ export default { key: "facebook_groups-post-photo", name: "Post Photo", description: "Post a photo in a group. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/group/photos)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_marketing/actions/add-email-to-custom-audience/add-email-to-custom-audience.mjs b/components/facebook_marketing/actions/add-email-to-custom-audience/add-email-to-custom-audience.mjs index 5a6d656fc6bb6..6b8b58a99eb05 100644 --- a/components/facebook_marketing/actions/add-email-to-custom-audience/add-email-to-custom-audience.mjs +++ b/components/facebook_marketing/actions/add-email-to-custom-audience/add-email-to-custom-audience.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_marketing-add-email-to-custom-audience", name: "Add Email to Custom Audience", description: "Adds an email address to a custom audience segment within Facebook. [See the documentation](https://developers.facebook.com/docs/marketing-api/reference/custom-audience/users/#Updating)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/facebook_marketing/actions/create-custom-audience/create-custom-audience.mjs b/components/facebook_marketing/actions/create-custom-audience/create-custom-audience.mjs index 5042e1722e8aa..b35785f7e287e 100644 --- a/components/facebook_marketing/actions/create-custom-audience/create-custom-audience.mjs +++ b/components/facebook_marketing/actions/create-custom-audience/create-custom-audience.mjs @@ -4,7 +4,12 @@ export default { key: "facebook_marketing-create-custom-audience", name: "Create Custom Audience", description: "Creates a new custom audience in Facebook. [See the documentation](https://developers.facebook.com/docs/marketing-api/audiences/guides/custom-audiences/#build)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/facebook_pages/actions/create-comment/create-comment.mjs b/components/facebook_pages/actions/create-comment/create-comment.mjs index baf619285cfce..de4d55121291e 100644 --- a/components/facebook_pages/actions/create-comment/create-comment.mjs +++ b/components/facebook_pages/actions/create-comment/create-comment.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_pages-create-comment", name: "Create Comment", description: "Create a new comment on a post on a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/object/comments/#publish)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_pages/actions/create-post/create-post.mjs b/components/facebook_pages/actions/create-post/create-post.mjs index eb1ebd60dc410..08bbff4609ea3 100644 --- a/components/facebook_pages/actions/create-post/create-post.mjs +++ b/components/facebook_pages/actions/create-post/create-post.mjs @@ -6,7 +6,12 @@ export default { key: "facebook_pages-create-post", name: "Create Post", description: "Create a new post on a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/page/feed#publish)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_pages/actions/get-comment/get-comment.mjs b/components/facebook_pages/actions/get-comment/get-comment.mjs index e775358014ad9..b7330f1c4af34 100644 --- a/components/facebook_pages/actions/get-comment/get-comment.mjs +++ b/components/facebook_pages/actions/get-comment/get-comment.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_pages-get-comment", name: "Get Comment", description: "Retrieves a comment on a post on a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/comment/#read)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_pages/actions/get-page/get-page.mjs b/components/facebook_pages/actions/get-page/get-page.mjs index 0fdea224298a1..fd44a21d2f5e5 100644 --- a/components/facebook_pages/actions/get-page/get-page.mjs +++ b/components/facebook_pages/actions/get-page/get-page.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_pages-get-page", name: "Get Page", description: "Retrieves a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/page)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", async run({ $ }) { const { data } = await this.facebookPages.listPages({ diff --git a/components/facebook_pages/actions/get-post/get-post.mjs b/components/facebook_pages/actions/get-post/get-post.mjs index c4fb5a70ce8ae..a690706d76561 100644 --- a/components/facebook_pages/actions/get-post/get-post.mjs +++ b/components/facebook_pages/actions/get-post/get-post.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_pages-get-post", name: "Get Post", description: "Retrieves a post on a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/pagepost)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_pages/actions/list-comments/list-comments.mjs b/components/facebook_pages/actions/list-comments/list-comments.mjs index 55a904ec5a13f..63b47580e6307 100644 --- a/components/facebook_pages/actions/list-comments/list-comments.mjs +++ b/components/facebook_pages/actions/list-comments/list-comments.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_pages-list-comments", name: "List Comments", description: "Retrieves a list of comments on a post on a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/comment/#read)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_pages/actions/list-posts/list-posts.mjs b/components/facebook_pages/actions/list-posts/list-posts.mjs index b555e422f6db7..5c12a5071fca6 100644 --- a/components/facebook_pages/actions/list-posts/list-posts.mjs +++ b/components/facebook_pages/actions/list-posts/list-posts.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_pages-list-posts", name: "List Posts", description: "Retrieves a list of posts on a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/v17.0/page/feed)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_pages/actions/update-comment/update-comment.mjs b/components/facebook_pages/actions/update-comment/update-comment.mjs index 11a97141a6182..31fd2501fda54 100644 --- a/components/facebook_pages/actions/update-comment/update-comment.mjs +++ b/components/facebook_pages/actions/update-comment/update-comment.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_pages-update-comment", name: "Update Comment", description: "Updates an existing comment on a post on a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/comment/#updating)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/facebook_pages/actions/update-post/update-post.mjs b/components/facebook_pages/actions/update-post/update-post.mjs index a1087b5420508..3bb2cc16b9712 100644 --- a/components/facebook_pages/actions/update-post/update-post.mjs +++ b/components/facebook_pages/actions/update-post/update-post.mjs @@ -5,7 +5,12 @@ export default { key: "facebook_pages-update-post", name: "Update Post", description: "Update an existing post on a Facebook Page. [See the documentation](https://developers.facebook.com/docs/graph-api/reference/post#updating)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/faktoora/actions/create-invoice/create-invoice.mjs b/components/faktoora/actions/create-invoice/create-invoice.mjs index e42ff751cd352..8aaf14ab458fb 100644 --- a/components/faktoora/actions/create-invoice/create-invoice.mjs +++ b/components/faktoora/actions/create-invoice/create-invoice.mjs @@ -5,7 +5,12 @@ export default { key: "faktoora-create-invoice", name: "Create Invoice", description: "Create a new ZUGFeRD/xrechnung invoice. [See the documentation](https://api.faktoora.com/api/v1/api-docs/static/index.html)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { faktoora, diff --git a/components/faktoora/actions/get-invoice/get-invoice.mjs b/components/faktoora/actions/get-invoice/get-invoice.mjs index 109bc626f6125..3cf9dce561f8c 100644 --- a/components/faktoora/actions/get-invoice/get-invoice.mjs +++ b/components/faktoora/actions/get-invoice/get-invoice.mjs @@ -6,7 +6,12 @@ export default { key: "faktoora-get-invoice", name: "Download Invoice", description: "Download an invoice using the unique invoice number to '/tmp' folder. [See the documentation](https://api.faktoora.com/api/v1/api-docs/static/index.html)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { faktoora, diff --git a/components/fakturoid/actions/cancel-uncancel-invoice/cancel-uncancel-invoice.mjs b/components/fakturoid/actions/cancel-uncancel-invoice/cancel-uncancel-invoice.mjs index 783fc302950e8..0936baa2132ff 100644 --- a/components/fakturoid/actions/cancel-uncancel-invoice/cancel-uncancel-invoice.mjs +++ b/components/fakturoid/actions/cancel-uncancel-invoice/cancel-uncancel-invoice.mjs @@ -5,7 +5,12 @@ export default { key: "fakturoid-cancel-uncancel-invoice", name: "Cancel or Uncancel Invoice", description: "Cancels an existing invoice or revokes previous cancellation. [See the documentation](https://www.fakturoid.cz/api/v3)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fakturoid, diff --git a/components/fakturoid/actions/create-invoice/create-invoice.mjs b/components/fakturoid/actions/create-invoice/create-invoice.mjs index f11db2fb28c54..1b412c1eb2d85 100644 --- a/components/fakturoid/actions/create-invoice/create-invoice.mjs +++ b/components/fakturoid/actions/create-invoice/create-invoice.mjs @@ -5,7 +5,12 @@ export default { key: "fakturoid-create-invoice", name: "Create Invoice", description: "Creates a new invoice. [See the documentation](https://www.fakturoid.cz/api/v3/invoices)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fakturoid, diff --git a/components/fakturoid/actions/pay-remove-payment-invoice/pay-remove-payment-invoice.mjs b/components/fakturoid/actions/pay-remove-payment-invoice/pay-remove-payment-invoice.mjs index 135fa078c2374..b0be8049992e2 100644 --- a/components/fakturoid/actions/pay-remove-payment-invoice/pay-remove-payment-invoice.mjs +++ b/components/fakturoid/actions/pay-remove-payment-invoice/pay-remove-payment-invoice.mjs @@ -5,7 +5,12 @@ export default { key: "fakturoid-pay-remove-payment-invoice", name: "Pay or Remove Payment for Invoice", description: "Executes payment for an invoice or removes an already applied payment. [See the documentation](https://www.fakturoid.cz/api/v3/invoice-payments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fakturoid, diff --git a/components/fal_ai/actions/add-request-to-queue/add-request-to-queue.mjs b/components/fal_ai/actions/add-request-to-queue/add-request-to-queue.mjs index a5e4637a96fb1..f849b96b90c1f 100644 --- a/components/fal_ai/actions/add-request-to-queue/add-request-to-queue.mjs +++ b/components/fal_ai/actions/add-request-to-queue/add-request-to-queue.mjs @@ -4,7 +4,12 @@ export default { key: "fal_ai-add-request-to-queue", name: "Add Request to Queue", description: "Adds a request to the queue for asynchronous processing, including specifying a webhook URL for receiving updates. [See the documentation](https://fal.ai/docs/model-endpoints/queue#queue-endpoints).", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/fal_ai/actions/cancel-request/cancel-request.mjs b/components/fal_ai/actions/cancel-request/cancel-request.mjs index 237e56cff93a3..30d12c9951674 100644 --- a/components/fal_ai/actions/cancel-request/cancel-request.mjs +++ b/components/fal_ai/actions/cancel-request/cancel-request.mjs @@ -4,7 +4,12 @@ export default { key: "fal_ai-cancel-request", name: "Cancel Request", description: "Cancels a request in the queue. This allows you to stop a long-running task if it's no longer needed. [See the documentation](https://fal.ai/docs/model-endpoints/queue#queue-endpoints).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/fal_ai/actions/get-request-response/get-request-response.mjs b/components/fal_ai/actions/get-request-response/get-request-response.mjs index 1869e9d5c2c03..2d2d8ce9357da 100644 --- a/components/fal_ai/actions/get-request-response/get-request-response.mjs +++ b/components/fal_ai/actions/get-request-response/get-request-response.mjs @@ -4,7 +4,12 @@ export default { key: "fal_ai-get-request-response", name: "Get Request Response", description: "Gets the response of a completed request in the queue. This retrieves the results of your asynchronous task. [See the documentation](https://fal.ai/docs/model-endpoints/queue#queue-endpoints).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/fal_ai/actions/get-request-status/get-request-status.mjs b/components/fal_ai/actions/get-request-status/get-request-status.mjs index 9a96f44b7c775..f1683ce0a9868 100644 --- a/components/fal_ai/actions/get-request-status/get-request-status.mjs +++ b/components/fal_ai/actions/get-request-status/get-request-status.mjs @@ -4,7 +4,12 @@ export default { key: "fal_ai-get-request-status", name: "Get Request Status", description: "Gets the status of a request in the queue. This allows you to monitor the progress of your asynchronous tasks. [See the documentation](https://fal.ai/docs/model-endpoints/queue#queue-endpoints).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/faraday/actions/predict/predict.mjs b/components/faraday/actions/predict/predict.mjs index 650b91a27a65b..7cd85ba68e017 100644 --- a/components/faraday/actions/predict/predict.mjs +++ b/components/faraday/actions/predict/predict.mjs @@ -5,7 +5,12 @@ export default { key: "faraday-predict", name: "Predict", description: "Returns a prediction about a single person. [See the documentation](https://faraday.ai/developers/reference/lookupontarget)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { faraday, diff --git a/components/faunadb/actions/execute-graphql-query/execute-graphql-query.mjs b/components/faunadb/actions/execute-graphql-query/execute-graphql-query.mjs index de403968279ce..4cc8ee25a6bd3 100644 --- a/components/faunadb/actions/execute-graphql-query/execute-graphql-query.mjs +++ b/components/faunadb/actions/execute-graphql-query/execute-graphql-query.mjs @@ -4,7 +4,12 @@ export default { key: "faunadb-execute-graphql-query", name: "Execute GraphQL Query", description: "Performs an arbitrary authorized GraphQL query. [See docs here](https://docs.fauna.com/fauna/current/api/graphql/endpoints#graphql)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { faunadb, diff --git a/components/faunadb/actions/import-graphql-schema/import-graphql-schema.mjs b/components/faunadb/actions/import-graphql-schema/import-graphql-schema.mjs index c547173ac546d..f391d09c0f2fd 100644 --- a/components/faunadb/actions/import-graphql-schema/import-graphql-schema.mjs +++ b/components/faunadb/actions/import-graphql-schema/import-graphql-schema.mjs @@ -4,7 +4,12 @@ export default { key: "faunadb-import-graphql-schema", name: "Import GraphQL schema", description: "Import graphQL schema to a database. [See docs here](https://docs.fauna.com/fauna/current/api/graphql/endpoints#import)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { faunadb, diff --git a/components/faunadb/actions/read-from-collection/read-from-collection.mjs b/components/faunadb/actions/read-from-collection/read-from-collection.mjs index efa98184c0b56..64a3f17cd9609 100644 --- a/components/faunadb/actions/read-from-collection/read-from-collection.mjs +++ b/components/faunadb/actions/read-from-collection/read-from-collection.mjs @@ -4,7 +4,12 @@ export default { key: "faunadb-read-from-collection", name: "Read From Fauna Collection", description: "Reads all documents from a given Fauna collection. [See docs here](https://docs.fauna.com/fauna/current/api/fql/functions/documents)", - version: "0.4.4", + version: "0.4.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { faunadb, diff --git a/components/favro/actions/create-organization/create-organization.mjs b/components/favro/actions/create-organization/create-organization.mjs index be5919da3f584..9c320cfc5aec2 100644 --- a/components/favro/actions/create-organization/create-organization.mjs +++ b/components/favro/actions/create-organization/create-organization.mjs @@ -4,7 +4,12 @@ export default { key: "favro-create-organization", name: "Create Organization", description: "Creates a new organization. [See the documentation](https://favro.com/developer/#create-an-organization)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/favro/actions/list-users/list-users.mjs b/components/favro/actions/list-users/list-users.mjs index 103996c652638..b4c2d62cdfa60 100644 --- a/components/favro/actions/list-users/list-users.mjs +++ b/components/favro/actions/list-users/list-users.mjs @@ -5,7 +5,12 @@ export default { name: "List Users", description: "List all users in the organization. [See the documentation](https://favro.com/developer/#get-all-users)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/favro/actions/update-organization/update-organization.mjs b/components/favro/actions/update-organization/update-organization.mjs index bc6e6d133310d..a3e1dd076d0fd 100644 --- a/components/favro/actions/update-organization/update-organization.mjs +++ b/components/favro/actions/update-organization/update-organization.mjs @@ -4,7 +4,12 @@ export default { key: "favro-update-organization", name: "Update Organization", description: "Updates an existing organization. [See the documentation](https://favro.com/developer/#update-an-organization)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/fedex/actions/create-shipment/create-shipment.mjs b/components/fedex/actions/create-shipment/create-shipment.mjs index f71011a2412db..a12d5259fb5ac 100644 --- a/components/fedex/actions/create-shipment/create-shipment.mjs +++ b/components/fedex/actions/create-shipment/create-shipment.mjs @@ -4,7 +4,12 @@ export default { key: "fedex-create-shipment", name: "Create Shipment", description: "Create a new shipment. [See the documentation](https://developer.fedex.com/api/en-us/catalog/ship/docs.html#operation/Create%20Shipment)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fedex, diff --git a/components/fedex/actions/validate-shipment/validate-shipment.mjs b/components/fedex/actions/validate-shipment/validate-shipment.mjs index ad3279129db96..fc010ffa7644d 100644 --- a/components/fedex/actions/validate-shipment/validate-shipment.mjs +++ b/components/fedex/actions/validate-shipment/validate-shipment.mjs @@ -4,7 +4,12 @@ export default { key: "fedex-validate-shipment", name: "Validate Shipment", description: "Validate a shipment. [See the documentation](https://developer.fedex.com/api/en-us/catalog/ship/docs.html#operation/ShipmentPackageValidate)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { fedex, diff --git a/components/feedbin/actions/get-subscriptions/get-subscriptions.mjs b/components/feedbin/actions/get-subscriptions/get-subscriptions.mjs index 987c283772b4c..e2a6e60d89618 100644 --- a/components/feedbin/actions/get-subscriptions/get-subscriptions.mjs +++ b/components/feedbin/actions/get-subscriptions/get-subscriptions.mjs @@ -5,7 +5,12 @@ export default { name: "Get Subscriptions", description: "Return all subscriptions. [See the docs here](https://github.com/feedbin/feedbin-api/blob/master/content/subscriptions.md#get-subscriptions).", type: "action", - version: "0.1.2", + version: "0.1.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { feedbin, }, diff --git a/components/fibery/actions/create-entity-or-update/create-entity-or-update.mjs b/components/fibery/actions/create-entity-or-update/create-entity-or-update.mjs index 9b17d3b9cdca5..070f09a03bac5 100644 --- a/components/fibery/actions/create-entity-or-update/create-entity-or-update.mjs +++ b/components/fibery/actions/create-entity-or-update/create-entity-or-update.mjs @@ -7,7 +7,12 @@ export default { key: "fibery-create-entity-or-update", name: "Create or Update Entity", description: "Creates a new entity or updates if it exists. [See the docs here](https://api.fibery.io/graphql.html#update)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/fibery/actions/create-entity/create-entity.mjs b/components/fibery/actions/create-entity/create-entity.mjs index 1a0210219e1b4..2685a9bbfb0c3 100644 --- a/components/fibery/actions/create-entity/create-entity.mjs +++ b/components/fibery/actions/create-entity/create-entity.mjs @@ -4,7 +4,12 @@ export default { key: "fibery-create-entity", name: "Create Entity", description: "Creates a new entity. [See the docs here](https://api.fibery.io/graphql.html#create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fibery, diff --git a/components/fibery/actions/create-multiple-entities/create-multiple-entities.mjs b/components/fibery/actions/create-multiple-entities/create-multiple-entities.mjs index 170c2c5f38747..ea26e69d91555 100644 --- a/components/fibery/actions/create-multiple-entities/create-multiple-entities.mjs +++ b/components/fibery/actions/create-multiple-entities/create-multiple-entities.mjs @@ -4,7 +4,12 @@ export default { key: "fibery-create-multiple-entities", name: "Create Multiple Entities", description: "Creates entities in batch. [See the docs here](https://api.fibery.io/graphql.html#create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fibery, diff --git a/components/fibery/actions/get-entity-or-create/get-entity-or-create.mjs b/components/fibery/actions/get-entity-or-create/get-entity-or-create.mjs index 2c5a6bfa3443c..1f7c7ad5ad8a2 100644 --- a/components/fibery/actions/get-entity-or-create/get-entity-or-create.mjs +++ b/components/fibery/actions/get-entity-or-create/get-entity-or-create.mjs @@ -5,7 +5,12 @@ export default { key: "fibery-get-entity-or-create", name: "Get or Create Entity", description: "Get an entity or create one if it doesn't exist. [See the docs here](https://api.fibery.io/graphql.html#create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", async run({ $ }) { const entities = await this.findEntities($); diff --git a/components/fibery/actions/list-entities/list-entities.mjs b/components/fibery/actions/list-entities/list-entities.mjs index d77dfbfd92187..1e6b2905e20e7 100644 --- a/components/fibery/actions/list-entities/list-entities.mjs +++ b/components/fibery/actions/list-entities/list-entities.mjs @@ -7,7 +7,12 @@ export default { key: "fibery-list-entities", name: "List Entities", description: "Lists entities for a type. [See the docs here](https://api.fibery.io/graphql.html#list-of-entities)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", async run({ $ }) { return this.findEntities($); diff --git a/components/fibery/actions/list-fields-for-entity-type/list-fields-for-entity-type.mjs b/components/fibery/actions/list-fields-for-entity-type/list-fields-for-entity-type.mjs index 318acb57fe38f..9d0844deef09f 100644 --- a/components/fibery/actions/list-fields-for-entity-type/list-fields-for-entity-type.mjs +++ b/components/fibery/actions/list-fields-for-entity-type/list-fields-for-entity-type.mjs @@ -4,7 +4,12 @@ export default { key: "fibery-list-fields-for-entity-type", name: "List Fields for Entity Type", description: "Lists fields for an entity type. [See the docs here](https://api.fibery.io/graphql.html#list-of-entities)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { fibery, diff --git a/components/fibery/actions/list-types/list-types.mjs b/components/fibery/actions/list-types/list-types.mjs index 092bd2b9a734e..e63af0dbd7498 100644 --- a/components/fibery/actions/list-types/list-types.mjs +++ b/components/fibery/actions/list-types/list-types.mjs @@ -4,7 +4,12 @@ export default { key: "fibery-list-types", name: "List Types", description: "Lists types in account. [See the docs here](https://api.fibery.io/#get-schema)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { fibery, diff --git a/components/fidel_api/actions/create-program/create-program.mjs b/components/fidel_api/actions/create-program/create-program.mjs index fe579386a36da..10691dbf1ac3c 100644 --- a/components/fidel_api/actions/create-program/create-program.mjs +++ b/components/fidel_api/actions/create-program/create-program.mjs @@ -5,7 +5,12 @@ export default { key: "fidel_api-create-program", name: "Create Program", description: "Creates a new card-linked program in the Fidel API. [See the documentation](https://reference.fidel.uk/reference/create-program)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fidelApi, diff --git a/components/fidel_api/actions/delete-card/delete-card.mjs b/components/fidel_api/actions/delete-card/delete-card.mjs index f5776781ba204..c0837154000f1 100644 --- a/components/fidel_api/actions/delete-card/delete-card.mjs +++ b/components/fidel_api/actions/delete-card/delete-card.mjs @@ -4,7 +4,12 @@ export default { key: "fidel_api-delete-card", name: "Delete Card", description: "Allows for the removal of a previously linked card from the Fidel API. [See the documentation](https://reference.fidel.uk/reference/delete-card)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fidelApi, diff --git a/components/fidel_api/actions/link-card/link-card.mjs b/components/fidel_api/actions/link-card/link-card.mjs index 24e75156267dc..8d31e508434c2 100644 --- a/components/fidel_api/actions/link-card/link-card.mjs +++ b/components/fidel_api/actions/link-card/link-card.mjs @@ -5,7 +5,12 @@ export default { key: "fidel_api-link-card", name: "Link Card", description: "Links a new card to the Fidel API for monitoring transactions. [See the documentation](https://reference.fidel.uk/reference#create-a-card)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fidelApi, diff --git a/components/figma/actions/delete-comment/delete-comment.mjs b/components/figma/actions/delete-comment/delete-comment.mjs index 570c6b95dbf92..a5573353782ae 100644 --- a/components/figma/actions/delete-comment/delete-comment.mjs +++ b/components/figma/actions/delete-comment/delete-comment.mjs @@ -6,7 +6,12 @@ export default { name: "Delete a Comment", description: "Delete a comment to a file. [See the docs here](https://www.figma.com/developers/api#delete-comments-endpoint)", key: "figma-delete-comment", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/figma/actions/list-comments/list-comments.mjs b/components/figma/actions/list-comments/list-comments.mjs index 17b4824579d3e..0234e3db7fd25 100644 --- a/components/figma/actions/list-comments/list-comments.mjs +++ b/components/figma/actions/list-comments/list-comments.mjs @@ -6,7 +6,12 @@ export default { name: "List Comments", description: "Lists all comments left on a file. [See the docs here](https://www.figma.com/developers/api#get-comments-endpoint)", key: "figma-list-comments", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/figma/actions/post-a-comment/post-a-comment.mjs b/components/figma/actions/post-a-comment/post-a-comment.mjs index f5bc5150d858d..27f351e391f68 100644 --- a/components/figma/actions/post-a-comment/post-a-comment.mjs +++ b/components/figma/actions/post-a-comment/post-a-comment.mjs @@ -6,7 +6,12 @@ export default { name: "Post a Comment", description: "Posts a comment to a file. [See the docs here](https://www.figma.com/developers/api#post-comments-endpoint)", key: "figma-post-a-comment", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/fileforge/actions/generate-pdf/generate-pdf.mjs b/components/fileforge/actions/generate-pdf/generate-pdf.mjs index a41029afb9f42..a347ccba3ba2d 100644 --- a/components/fileforge/actions/generate-pdf/generate-pdf.mjs +++ b/components/fileforge/actions/generate-pdf/generate-pdf.mjs @@ -7,7 +7,12 @@ export default { key: "fileforge-generate-pdf", name: "Generate PDF", description: "Generate a PDF from provided HTML. [See the documentation](https://docs.fileforge.com/api-reference/api-reference/pdf/generate)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { fileforge, diff --git a/components/filestack/actions/filter-image/filter-image.mjs b/components/filestack/actions/filter-image/filter-image.mjs index 6e16b26148e9d..b81e60af57374 100644 --- a/components/filestack/actions/filter-image/filter-image.mjs +++ b/components/filestack/actions/filter-image/filter-image.mjs @@ -6,7 +6,12 @@ export default { key: "filestack-filter-image", name: "Filter Image", description: "Applies filters such as sharpening, blurring, sepia, monochrome, and more, to an uploaded image. [See the documentation](https://www.filestack.com/docs/api/processing/#image-filters)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/filestack/actions/resize-image/resize-image.mjs b/components/filestack/actions/resize-image/resize-image.mjs index a1a48ec1ae811..c1afbec4f1c69 100644 --- a/components/filestack/actions/resize-image/resize-image.mjs +++ b/components/filestack/actions/resize-image/resize-image.mjs @@ -6,7 +6,12 @@ export default { name: "Resize Image", description: "Resizes an uploaded image to specified width and height. [See the documentation](https://www.filestack.com/docs/api/processing/#resize)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props,