diff --git a/components/shopify/actions/get-articles/get-articles.mjs b/components/shopify/actions/get-articles/get-articles.mjs index f79ffe9ee7074..f751ef8736046 100644 --- a/components/shopify/actions/get-articles/get-articles.mjs +++ b/components/shopify/actions/get-articles/get-articles.mjs @@ -4,7 +4,12 @@ export default { key: "shopify-get-articles", name: "Get Articles", description: "Retrieve a list of all articles from a blog. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/articles)", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/get-metafields/get-metafields.mjs b/components/shopify/actions/get-metafields/get-metafields.mjs index adf50fe23a217..e28e3bed4a45e 100644 --- a/components/shopify/actions/get-metafields/get-metafields.mjs +++ b/components/shopify/actions/get-metafields/get-metafields.mjs @@ -5,7 +5,12 @@ export default { key: "shopify-get-metafields", name: "Get Metafields", description: "Retrieves a list of metafields that belong to a resource. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/queries/metafields)", - version: "0.0.12", + version: "0.0.13", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/shopify/actions/get-metaobjects/get-metaobjects.mjs b/components/shopify/actions/get-metaobjects/get-metaobjects.mjs index d2400215ed3d8..2fe7156db2a69 100644 --- a/components/shopify/actions/get-metaobjects/get-metaobjects.mjs +++ b/components/shopify/actions/get-metaobjects/get-metaobjects.mjs @@ -7,7 +7,12 @@ export default { key: "shopify-get-metaobjects", name: "Get Metaobjects", description: "Retrieves a list of metaobjects. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/queries/metaobjects)", - version: "0.0.5", + version: "0.0.6", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/get-pages/get-pages.mjs b/components/shopify/actions/get-pages/get-pages.mjs index 399aa1e572d5c..b5eaf70523d0d 100644 --- a/components/shopify/actions/get-pages/get-pages.mjs +++ b/components/shopify/actions/get-pages/get-pages.mjs @@ -4,7 +4,12 @@ export default { key: "shopify-get-pages", name: "Get Pages", description: "Retrieve a list of all pages. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/pages)", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/search-custom-collection-by-name/search-custom-collection-by-name.mjs b/components/shopify/actions/search-custom-collection-by-name/search-custom-collection-by-name.mjs index 4d74d8a30705f..e035d81bcaa09 100644 --- a/components/shopify/actions/search-custom-collection-by-name/search-custom-collection-by-name.mjs +++ b/components/shopify/actions/search-custom-collection-by-name/search-custom-collection-by-name.mjs @@ -5,7 +5,12 @@ export default { key: "shopify-search-custom-collection-by-name", name: "Search Custom Collection by Name", description: "Search for a custom collection by name/title. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/collections)", - version: "0.0.6", + version: "0.0.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/search-product-variant/search-product-variant.mjs b/components/shopify/actions/search-product-variant/search-product-variant.mjs index ae03c9ce51a4a..61482a02334e9 100644 --- a/components/shopify/actions/search-product-variant/search-product-variant.mjs +++ b/components/shopify/actions/search-product-variant/search-product-variant.mjs @@ -7,7 +7,12 @@ export default { key: "shopify-search-product-variant", name: "Search for Product Variant", description: "Search for product variants or create one if not found. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/productVariants)", - version: "0.0.13", + version: "0.0.14", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/search-products/search-products.mjs b/components/shopify/actions/search-products/search-products.mjs index e79a724ebd528..93c73b50923ac 100644 --- a/components/shopify/actions/search-products/search-products.mjs +++ b/components/shopify/actions/search-products/search-products.mjs @@ -6,7 +6,12 @@ export default { key: "shopify-search-products", name: "Search for Products", description: "Search for products. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/products)", - version: "0.0.13", + version: "0.0.14", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/update-article/update-article.mjs b/components/shopify/actions/update-article/update-article.mjs index f8d60baeaed58..041e9cc5ff18d 100644 --- a/components/shopify/actions/update-article/update-article.mjs +++ b/components/shopify/actions/update-article/update-article.mjs @@ -4,7 +4,12 @@ export default { key: "shopify-update-article", name: "Update Article", description: "Update a blog article. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/articleUpdate)", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/update-inventory-level/update-inventory-level.mjs b/components/shopify/actions/update-inventory-level/update-inventory-level.mjs index 8710267e48448..4d16ee26717a2 100644 --- a/components/shopify/actions/update-inventory-level/update-inventory-level.mjs +++ b/components/shopify/actions/update-inventory-level/update-inventory-level.mjs @@ -5,7 +5,12 @@ export default { key: "shopify-update-inventory-level", name: "Update Inventory Level", description: "Sets the inventory level for an inventory item at a location. [See the documenation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/inventorySetOnHandQuantities)", - version: "0.0.13", + version: "0.0.14", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/update-metafield/update-metafield.mjs b/components/shopify/actions/update-metafield/update-metafield.mjs index d4b66c43c58ca..e80cb5082746a 100644 --- a/components/shopify/actions/update-metafield/update-metafield.mjs +++ b/components/shopify/actions/update-metafield/update-metafield.mjs @@ -5,7 +5,12 @@ export default { key: "shopify-update-metafield", name: "Update Metafield", description: "Updates a metafield belonging to a resource. [See the documentation]()", - version: "0.0.11", + version: "0.0.12", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", async additionalProps() { const props = await this.getOwnerIdProp(this.ownerResource); diff --git a/components/shopify/actions/update-metaobject/update-metaobject.mjs b/components/shopify/actions/update-metaobject/update-metaobject.mjs index 6cbb9096e6ce4..7edcfd3edbf20 100644 --- a/components/shopify/actions/update-metaobject/update-metaobject.mjs +++ b/components/shopify/actions/update-metaobject/update-metaobject.mjs @@ -7,7 +7,12 @@ export default { key: "shopify-update-metaobject", name: "Update Metaobject", description: "Updates a metaobject. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/metaobjectUpdate)", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/update-page/update-page.mjs b/components/shopify/actions/update-page/update-page.mjs index ba4e404564996..2eb2f9ded1ab1 100644 --- a/components/shopify/actions/update-page/update-page.mjs +++ b/components/shopify/actions/update-page/update-page.mjs @@ -4,7 +4,12 @@ export default { key: "shopify-update-page", name: "Update Page", description: "Update an existing page. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/pageUpdate)", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/update-product-variant/update-product-variant.mjs b/components/shopify/actions/update-product-variant/update-product-variant.mjs index 13873077c9d72..dd448abff3bb0 100644 --- a/components/shopify/actions/update-product-variant/update-product-variant.mjs +++ b/components/shopify/actions/update-product-variant/update-product-variant.mjs @@ -9,7 +9,12 @@ export default { key: "shopify-update-product-variant", name: "Update Product Variant", description: "Update an existing product variant. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/productVariantsBulkUpdate)", - version: "0.0.16", + version: "0.0.17", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify/actions/update-product/update-product.mjs b/components/shopify/actions/update-product/update-product.mjs index 35029f27b5522..8e0976e024752 100644 --- a/components/shopify/actions/update-product/update-product.mjs +++ b/components/shopify/actions/update-product/update-product.mjs @@ -6,7 +6,12 @@ export default { key: "shopify-update-product", name: "Update Product", description: "Update an existing product. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/productUpdate)", - version: "0.1.5", + version: "0.1.6", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/create-customer/create-customer.mjs b/components/shopify_developer_app/actions/create-customer/create-customer.mjs index a313f2f63987f..9da9ba03b42de 100644 --- a/components/shopify_developer_app/actions/create-customer/create-customer.mjs +++ b/components/shopify_developer_app/actions/create-customer/create-customer.mjs @@ -4,7 +4,12 @@ export default { key: "shopify_developer_app-create-customer", name: "Create Customer", description: "Create a new customer. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/customercreate)", - version: "0.0.9", + version: "0.0.10", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/create-fulfillment/create-fulfillment.mjs b/components/shopify_developer_app/actions/create-fulfillment/create-fulfillment.mjs index 4cc195234fc05..cb42851b47b71 100644 --- a/components/shopify_developer_app/actions/create-fulfillment/create-fulfillment.mjs +++ b/components/shopify_developer_app/actions/create-fulfillment/create-fulfillment.mjs @@ -4,7 +4,12 @@ export default { key: "shopify_developer_app-create-fulfillment", name: "Create Fulfillment", description: "Create a fulfillment. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/mutations/fulfillmentcreate)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/create-order/create-order.mjs b/components/shopify_developer_app/actions/create-order/create-order.mjs index 28833d32e406d..ee9a3c8d1b637 100644 --- a/components/shopify_developer_app/actions/create-order/create-order.mjs +++ b/components/shopify_developer_app/actions/create-order/create-order.mjs @@ -5,7 +5,12 @@ export default { key: "shopify_developer_app-create-order", name: "Create Order", description: "Creates a new order. For full order object details [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/ordercreate)", - version: "0.0.9", + version: "0.0.10", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/get-order/get-order.mjs b/components/shopify_developer_app/actions/get-order/get-order.mjs index e65f746f0b628..3c27c809e41ea 100644 --- a/components/shopify_developer_app/actions/get-order/get-order.mjs +++ b/components/shopify_developer_app/actions/get-order/get-order.mjs @@ -5,7 +5,12 @@ export default { key: "shopify_developer_app-get-order", name: "Get Order", description: "Retrieve an order by specifying the order ID. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/order)", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/refund-order/refund-order.mjs b/components/shopify_developer_app/actions/refund-order/refund-order.mjs index 2e2b3ab20ea08..91a123c338957 100644 --- a/components/shopify_developer_app/actions/refund-order/refund-order.mjs +++ b/components/shopify_developer_app/actions/refund-order/refund-order.mjs @@ -5,7 +5,12 @@ export default { key: "shopify_developer_app-refund-order", name: "Refund Order", description: "Refund an order. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/mutations/refundcreate)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/search-customers/search-customers.mjs b/components/shopify_developer_app/actions/search-customers/search-customers.mjs index 7529d63d20481..09aac7775b5b3 100644 --- a/components/shopify_developer_app/actions/search-customers/search-customers.mjs +++ b/components/shopify_developer_app/actions/search-customers/search-customers.mjs @@ -4,7 +4,12 @@ export default { key: "shopify_developer_app-search-customers", name: "Search for Customers", description: "Search for a customer or a list of customers. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/customers)", - version: "0.0.9", + version: "0.0.10", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/search-fulfillment-orders/search-fulfillment-orders.mjs b/components/shopify_developer_app/actions/search-fulfillment-orders/search-fulfillment-orders.mjs index 1458e830ac599..94d96e5be71a6 100644 --- a/components/shopify_developer_app/actions/search-fulfillment-orders/search-fulfillment-orders.mjs +++ b/components/shopify_developer_app/actions/search-fulfillment-orders/search-fulfillment-orders.mjs @@ -4,7 +4,12 @@ export default { key: "shopify_developer_app-search-fulfillment-orders", name: "Search for Fulfillment Orders", description: "Search for a fulfillment order or a list of fulfillment orders. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/queries/fulfillmentorders)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/search-orders/search-orders.mjs b/components/shopify_developer_app/actions/search-orders/search-orders.mjs index 5222deccd35c7..d12d6684871e3 100644 --- a/components/shopify_developer_app/actions/search-orders/search-orders.mjs +++ b/components/shopify_developer_app/actions/search-orders/search-orders.mjs @@ -4,7 +4,12 @@ export default { key: "shopify_developer_app-search-orders", name: "Search for Orders", description: "Search for an order or a list of orders. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/orders)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/update-customer/update-customer.mjs b/components/shopify_developer_app/actions/update-customer/update-customer.mjs index 4386589469b08..2fedea386166c 100644 --- a/components/shopify_developer_app/actions/update-customer/update-customer.mjs +++ b/components/shopify_developer_app/actions/update-customer/update-customer.mjs @@ -6,7 +6,12 @@ export default { key: "shopify_developer_app-update-customer", name: "Update Customer", description: "Update a existing customer. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/customerupdate)", - version: "0.0.10", + version: "0.0.11", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/update-fulfillment-tracking-info/update-fulfillment-tracking-info.mjs b/components/shopify_developer_app/actions/update-fulfillment-tracking-info/update-fulfillment-tracking-info.mjs index a9e27265b63b8..7f2f755046464 100644 --- a/components/shopify_developer_app/actions/update-fulfillment-tracking-info/update-fulfillment-tracking-info.mjs +++ b/components/shopify_developer_app/actions/update-fulfillment-tracking-info/update-fulfillment-tracking-info.mjs @@ -4,7 +4,12 @@ export default { key: "shopify_developer_app-update-fulfillment-tracking-info", name: "Update Fulfillment Tracking Info", description: "Update the tracking info for a fulfillment. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/mutations/fulfillmenttrackinginfoupdate)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify_developer_app/actions/update-product/update-product.mjs b/components/shopify_developer_app/actions/update-product/update-product.mjs index 6c94428fd7dda..f131757db7df2 100644 --- a/components/shopify_developer_app/actions/update-product/update-product.mjs +++ b/components/shopify_developer_app/actions/update-product/update-product.mjs @@ -6,7 +6,12 @@ export default { key: "shopify_developer_app-update-product", name: "Update Product", description: "Update an existing product. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/productupdate)", - version: "0.0.10", + version: "0.0.11", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopify, diff --git a/components/shopify_partner/actions/verify-webhook/verify-webhook.mjs b/components/shopify_partner/actions/verify-webhook/verify-webhook.mjs index 95ab9f3a60b58..ba3ec48517bf2 100644 --- a/components/shopify_partner/actions/verify-webhook/verify-webhook.mjs +++ b/components/shopify_partner/actions/verify-webhook/verify-webhook.mjs @@ -3,7 +3,12 @@ import crypto from "crypto"; export default { name: "Verify Webhook", - version: "0.0.6", + version: "0.0.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "shopify_partner-verify-webhook", description: "Verify an incoming webhook from Shopify. Exits the workflow if the signature is not valid, otherwise returns `true`", diff --git a/components/shoprocket/actions/create-customer/create-customer.mjs b/components/shoprocket/actions/create-customer/create-customer.mjs index 2ca8e9ac8579f..2f3758ee897be 100644 --- a/components/shoprocket/actions/create-customer/create-customer.mjs +++ b/components/shoprocket/actions/create-customer/create-customer.mjs @@ -4,7 +4,12 @@ export default { key: "shoprocket-create-customer", name: "Create Customer", description: "Creates a new customer in Shoprocket. [See the documentation](https://docs.shoprocket.io/#72180ccd-3b7d-4597-9f1e-f669397555e7)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shoprocket, diff --git a/components/shopwaive/actions/adjust-available-balance/adjust-available-balance.mjs b/components/shopwaive/actions/adjust-available-balance/adjust-available-balance.mjs index bb6ec9734838e..810262e0c18ad 100644 --- a/components/shopwaive/actions/adjust-available-balance/adjust-available-balance.mjs +++ b/components/shopwaive/actions/adjust-available-balance/adjust-available-balance.mjs @@ -4,7 +4,12 @@ export default { key: "shopwaive-adjust-available-balance", name: "Adjust Available Balance", description: "Adjusts the available balance of a customer. [See the documentation](https://api.shopwaive.com/reference/rest-api-documentation/customer-api#adjust-customer-balance)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopwaive, diff --git a/components/shopwaive/actions/get-available-balance/get-available-balance.mjs b/components/shopwaive/actions/get-available-balance/get-available-balance.mjs index 18a9105d0ac2d..5dc342308b013 100644 --- a/components/shopwaive/actions/get-available-balance/get-available-balance.mjs +++ b/components/shopwaive/actions/get-available-balance/get-available-balance.mjs @@ -4,7 +4,12 @@ export default { key: "shopwaive-get-available-balance", name: "Get Available Balance", description: "Fetches the current available balance of a customer. [See the documentation](https://api.shopwaive.com/reference/rest-api-documentation/customer-api#get-customer-account-balance-and-transactions)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shopwaive, diff --git a/components/shopwaive/actions/set-available-balance/set-available-balance.mjs b/components/shopwaive/actions/set-available-balance/set-available-balance.mjs index 63617ab8de29c..87350c75f9c3f 100644 --- a/components/shopwaive/actions/set-available-balance/set-available-balance.mjs +++ b/components/shopwaive/actions/set-available-balance/set-available-balance.mjs @@ -4,7 +4,12 @@ export default { key: "shopwaive-set-available-balance", name: "Set Available Balance", description: "Updates the available balance of a customer to an exact value. [See the documentation](https://api.shopwaive.com/reference/rest-api-documentation/customer-api#set-customer-balance)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shopwaive, diff --git a/components/short/actions/create-a-link/create-a-link.mjs b/components/short/actions/create-a-link/create-a-link.mjs index ddb577e56c54e..0221776758f59 100644 --- a/components/short/actions/create-a-link/create-a-link.mjs +++ b/components/short/actions/create-a-link/create-a-link.mjs @@ -12,7 +12,12 @@ export default { key: "short-create-a-link", name: "Create Link", description: "Create a Short Link. [See the documentation](https://developers.short.io/reference/linkspost).", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shortApp, diff --git a/components/short/actions/delete-a-link/delete-a-link.mjs b/components/short/actions/delete-a-link/delete-a-link.mjs index 8599db080e796..a5f1fb6a3d928 100644 --- a/components/short/actions/delete-a-link/delete-a-link.mjs +++ b/components/short/actions/delete-a-link/delete-a-link.mjs @@ -4,7 +4,12 @@ export default { key: "short-delete-a-link", name: "Delete Link", description: "Delete a Short Link. [See the documentation](https://developers.short.io/reference/linksbylinkiddelete).", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shortApp, diff --git a/components/short/actions/domain-statistics/domain-statistics.mjs b/components/short/actions/domain-statistics/domain-statistics.mjs index f2ae2516e46fb..1ed06dbe7b559 100644 --- a/components/short/actions/domain-statistics/domain-statistics.mjs +++ b/components/short/actions/domain-statistics/domain-statistics.mjs @@ -5,7 +5,12 @@ export default { key: "short-domain-statistics", name: "Get Domain Statistics", description: "Returns detailed statistics for a domain in given period. [See the documentation](https://developers.short.io/reference/getdomaindomainid).", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shortApp, diff --git a/components/short/actions/expire-a-link/expire-a-link.mjs b/components/short/actions/expire-a-link/expire-a-link.mjs index 60d8db137f26f..26d749eb1c1c2 100644 --- a/components/short/actions/expire-a-link/expire-a-link.mjs +++ b/components/short/actions/expire-a-link/expire-a-link.mjs @@ -5,7 +5,12 @@ export default { key: "short-expire-a-link", name: "Expire Link", description: "Expire a short link by id. [See the documentation](https://developers.short.io/reference/linksbylinkidpost).", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shortApp, diff --git a/components/short/actions/update-a-link/update-a-link.mjs b/components/short/actions/update-a-link/update-a-link.mjs index 03f8a7f965d1a..c12a92141fe94 100644 --- a/components/short/actions/update-a-link/update-a-link.mjs +++ b/components/short/actions/update-a-link/update-a-link.mjs @@ -6,7 +6,12 @@ export default { key: "short-update-a-link", name: "Update Link", description: "Update original URL, title or path for existing URL by id. [See the documentation](https://developers.short.io/reference/linksbylinkidpost).", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shortApp, diff --git a/components/short_menu/actions/create-short-link/create-short-link.mjs b/components/short_menu/actions/create-short-link/create-short-link.mjs index 74355507d1fba..011ec3b428f02 100644 --- a/components/short_menu/actions/create-short-link/create-short-link.mjs +++ b/components/short_menu/actions/create-short-link/create-short-link.mjs @@ -4,7 +4,12 @@ export default { key: "short_menu-create-short-link", name: "Create Short Link", description: "Create a new short link. [See the documentationo](https://docs.shortmenu.com/api-reference/endpoint/create-link)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shortMenu, diff --git a/components/shortcut/actions/create-story/create-story.mjs b/components/shortcut/actions/create-story/create-story.mjs index 080e58b3a5425..b766024f61f25 100644 --- a/components/shortcut/actions/create-story/create-story.mjs +++ b/components/shortcut/actions/create-story/create-story.mjs @@ -8,7 +8,12 @@ export default { key: "shortcut-create-story", name: "Create Story", description: "Creates a new story in your Shortcut account. See [Create Story](https://shortcut.com/api/rest/v3#Create-Story) in Shortcut Rest API, V3 reference for endpoint documentation.", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shortcut, diff --git a/components/shortcut/actions/search-stories/search-stories.mjs b/components/shortcut/actions/search-stories/search-stories.mjs index 30448b2f77c74..326c9f0e0bebe 100644 --- a/components/shortcut/actions/search-stories/search-stories.mjs +++ b/components/shortcut/actions/search-stories/search-stories.mjs @@ -4,7 +4,12 @@ export default { key: "shortcut-search-stories", name: "Search Stories", description: "Searches for stories in your Shortcut account.", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shortcut, diff --git a/components/shorten_rest/actions/get-clicks/get-clicks.mjs b/components/shorten_rest/actions/get-clicks/get-clicks.mjs index 34f4f373ba897..9890e304d3c13 100644 --- a/components/shorten_rest/actions/get-clicks/get-clicks.mjs +++ b/components/shorten_rest/actions/get-clicks/get-clicks.mjs @@ -4,7 +4,12 @@ export default { key: "shorten_rest-get-clicks", name: "Get Clicks", description: "Gets the click data. [See the documentation](https://docs.shorten.rest/#tag/Click/operation/GetClicks)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/shorten_rest/actions/short-link/short-link.mjs b/components/shorten_rest/actions/short-link/short-link.mjs index 43dc8854f0738..90d624783e9a4 100644 --- a/components/shorten_rest/actions/short-link/short-link.mjs +++ b/components/shorten_rest/actions/short-link/short-link.mjs @@ -5,7 +5,12 @@ export default { key: "shorten_rest-short-link", name: "Shorten Link", description: "Shortens a given long URL into an alias. If the alias name is not provided, the system generates one. If the domain input is not provided, it defaults to short.fyi. [See the documentation](https://docs.shorten.rest/#tag/Alias/operation/CreateAlias)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/shortpixel/actions/optimize-image/optimize-image.mjs b/components/shortpixel/actions/optimize-image/optimize-image.mjs index 2a37715142910..be24c2208be7b 100644 --- a/components/shortpixel/actions/optimize-image/optimize-image.mjs +++ b/components/shortpixel/actions/optimize-image/optimize-image.mjs @@ -6,7 +6,12 @@ export default { key: "shortpixel-optimize-image", name: "Optimize Image", description: "Optimize and/or adjust an image using ShortPixel. [See the documentation](https://shortpixel.com/knowledge-base/article/shortpixel-adaptive-images-api-parameters/)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shortpixel, diff --git a/components/shotstack/actions/create-timeline/create-timeline.mjs b/components/shotstack/actions/create-timeline/create-timeline.mjs index be1a2195d7fa6..2fa4f9a4307d3 100644 --- a/components/shotstack/actions/create-timeline/create-timeline.mjs +++ b/components/shotstack/actions/create-timeline/create-timeline.mjs @@ -8,7 +8,12 @@ export default { name: "Create Timeline", description: "Generate a timeline with layers and assets for a new video project. [See the documentation here](https://github.com/shotstack/shotstack-sdk-node#timeline).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, howManyTracks: { diff --git a/components/shotstack/actions/start-render/start-render.mjs b/components/shotstack/actions/start-render/start-render.mjs index f0b30dad9aea5..745c53305d98b 100644 --- a/components/shotstack/actions/start-render/start-render.mjs +++ b/components/shotstack/actions/start-render/start-render.mjs @@ -7,7 +7,12 @@ export default { name: "Start Render", description: "Initiate rendering of a video using a timeline created in Shotstack API. [See the documentation here](https://shotstack.io/docs/api/?shell#render-asset).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, timeline: { diff --git a/components/shotstack/actions/upload-asset/upload-asset.mjs b/components/shotstack/actions/upload-asset/upload-asset.mjs index 56febf1a42eca..c7fbb5aba6a23 100644 --- a/components/shotstack/actions/upload-asset/upload-asset.mjs +++ b/components/shotstack/actions/upload-asset/upload-asset.mjs @@ -6,7 +6,12 @@ export default { name: "Upload Asset", description: "Add media assets like images, audio, or video to the Shotstack API for use in video projects. [See the documentation here](https://shotstack.io/docs/api/?shell#fetch-source).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, url: { diff --git a/components/sigma/actions/create-team/create-team.mjs b/components/sigma/actions/create-team/create-team.mjs index 5b5ca217f08c5..574e53ff19e91 100644 --- a/components/sigma/actions/create-team/create-team.mjs +++ b/components/sigma/actions/create-team/create-team.mjs @@ -4,7 +4,12 @@ export default { key: "sigma-create-team", name: "Create Team", description: "Create a team. [See the documentation](https://docs.sigmacomputing.com/#post-/v2/teams)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/sigma/actions/create-workbook/create-workbook.mjs b/components/sigma/actions/create-workbook/create-workbook.mjs index 1da80b35d2af1..8c086f9954e1e 100644 --- a/components/sigma/actions/create-workbook/create-workbook.mjs +++ b/components/sigma/actions/create-workbook/create-workbook.mjs @@ -4,7 +4,12 @@ export default { key: "sigma-create-workbook", name: "Create Workbook", description: "Creates a new blank workbook. [See the documentation](https://docs.sigmacomputing.com/#post-/v2/workbooks)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/sigma/actions/list-datasets/list-datasets.mjs b/components/sigma/actions/list-datasets/list-datasets.mjs index bd2f81175ae21..4af80feeb1599 100644 --- a/components/sigma/actions/list-datasets/list-datasets.mjs +++ b/components/sigma/actions/list-datasets/list-datasets.mjs @@ -4,7 +4,12 @@ export default { key: "sigma-list-datasets", name: "List Datasets", description: "Returns a list of available datasets. [See the documentation](https://docs.sigmacomputing.com/#get-/v2/datasets)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/signalwire/actions/create-video-conference/create-video-conference.mjs b/components/signalwire/actions/create-video-conference/create-video-conference.mjs index ae3186419fa4b..3394422c69685 100644 --- a/components/signalwire/actions/create-video-conference/create-video-conference.mjs +++ b/components/signalwire/actions/create-video-conference/create-video-conference.mjs @@ -4,7 +4,12 @@ export default { key: "signalwire-create-video-conference", name: "Create Video Conference", description: "Creates a video conference on SignalWire. [See the documentation](https://developer.signalwire.com/rest/create-a-video-conference)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { signalwire, diff --git a/components/signalwire/actions/validate-phone-number/validate-phone-number.mjs b/components/signalwire/actions/validate-phone-number/validate-phone-number.mjs index 0fdaf4ada3637..f5642f8690dab 100644 --- a/components/signalwire/actions/validate-phone-number/validate-phone-number.mjs +++ b/components/signalwire/actions/validate-phone-number/validate-phone-number.mjs @@ -4,7 +4,12 @@ export default { key: "signalwire-validate-phone-number", name: "Validate Phone Number", description: "Validates a given phone number. Can optionally include carrier and caller ID information. [See the documentation](https://developer.signalwire.com/rest/phone-number-lookup)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { signalwire, diff --git a/components/signaturely/actions/create-signature-request/create-signature-request.mjs b/components/signaturely/actions/create-signature-request/create-signature-request.mjs index fa499415ea1ba..acff2956de80e 100644 --- a/components/signaturely/actions/create-signature-request/create-signature-request.mjs +++ b/components/signaturely/actions/create-signature-request/create-signature-request.mjs @@ -6,7 +6,12 @@ export default { name: "Create Signature Request", description: "Creates a new signature request. [See the documentation](https://docs.signaturely.com/#:~:text=Get%20user-,Create%20signing%20request,-Bulk%20Send%20Signature)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, templateId: { diff --git a/components/signaturit/actions/create-certified-email/create-certified-email.mjs b/components/signaturit/actions/create-certified-email/create-certified-email.mjs index 0a3dfc6f1b453..6b20bc37baf47 100644 --- a/components/signaturit/actions/create-certified-email/create-certified-email.mjs +++ b/components/signaturit/actions/create-certified-email/create-certified-email.mjs @@ -8,7 +8,12 @@ export default { key: "signaturit-create-certified-email", name: "Create Certified Email", description: "Initiates the creation of a certified email. [See the documentation](https://docs.signaturit.com/api/latest#emails_create_email)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { signaturit, diff --git a/components/signaturit/actions/create-signature-request-from-template/create-signature-request-from-template.mjs b/components/signaturit/actions/create-signature-request-from-template/create-signature-request-from-template.mjs index 00bfea76c5d65..9053947b3750c 100644 --- a/components/signaturit/actions/create-signature-request-from-template/create-signature-request-from-template.mjs +++ b/components/signaturit/actions/create-signature-request-from-template/create-signature-request-from-template.mjs @@ -12,7 +12,12 @@ export default { key: "signaturit-create-signature-request-from-template", name: "Create Signature Request from Template", description: "Creates a signature request using a pre-existing template. [See the documentation](https://docs.signaturit.com/api/latest#signatures_create_signature)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { signaturit, diff --git a/components/signaturit/actions/send-signature-request-reminder/send-signature-request-reminder.mjs b/components/signaturit/actions/send-signature-request-reminder/send-signature-request-reminder.mjs index 7ce371d9838f7..7656b4274a1f5 100644 --- a/components/signaturit/actions/send-signature-request-reminder/send-signature-request-reminder.mjs +++ b/components/signaturit/actions/send-signature-request-reminder/send-signature-request-reminder.mjs @@ -4,7 +4,12 @@ export default { key: "signaturit-send-signature-request-reminder", name: "Send Signature Request Reminder", description: "Sends a reminder for a pending signature request. [See the documentation](https://docs.signaturit.com/api/latest#signatures_send_reminder)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { signaturit, diff --git a/components/signerx/actions/send-template-signatures/send-template-signatures.mjs b/components/signerx/actions/send-template-signatures/send-template-signatures.mjs index ee57e2134ba92..2c67860d2f0b1 100644 --- a/components/signerx/actions/send-template-signatures/send-template-signatures.mjs +++ b/components/signerx/actions/send-template-signatures/send-template-signatures.mjs @@ -4,7 +4,12 @@ export default { key: "signerx-send-template-signatures", name: "Send Template Signatures", description: "Add a recipient to a template and invite to sign. [See the documentation](https://documenter.getpostman.com/view/13877745/2sa3xv9kni)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { signerx, diff --git a/components/signerx/actions/upload-package/upload-package.mjs b/components/signerx/actions/upload-package/upload-package.mjs index be119ebf1dd85..d134d333fccbe 100644 --- a/components/signerx/actions/upload-package/upload-package.mjs +++ b/components/signerx/actions/upload-package/upload-package.mjs @@ -6,7 +6,12 @@ export default { key: "signerx-upload-package", name: "Upload Package", description: "Quickly create a draft for a new package/document by uploading a file or providing a file_url to a PDF document. [See the documentation](https://documenter.getpostman.com/view/13877745/2sa3xv9kni)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { signerx, diff --git a/components/signnow/actions/create-document-from-template/create-document-from-template.mjs b/components/signnow/actions/create-document-from-template/create-document-from-template.mjs index 4fd0cd68ebf51..292dbd6e8cdaf 100644 --- a/components/signnow/actions/create-document-from-template/create-document-from-template.mjs +++ b/components/signnow/actions/create-document-from-template/create-document-from-template.mjs @@ -4,7 +4,12 @@ export default { key: "signnow-create-document-from-template", name: "Create Document From Template", description: "Creates a new document copy out of a template. [See the documentation](https://docs.signnow.com/docs/signnow/template/operations/create-a-template-copy)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/signnow/actions/prefill-text-fields/prefill-text-fields.mjs b/components/signnow/actions/prefill-text-fields/prefill-text-fields.mjs index dca975b712f23..7127d1d7eca9e 100644 --- a/components/signnow/actions/prefill-text-fields/prefill-text-fields.mjs +++ b/components/signnow/actions/prefill-text-fields/prefill-text-fields.mjs @@ -5,7 +5,12 @@ export default { key: "signnow-prefill-text-fields", name: "Prefill Text Fields", description: "Adds values to fields that the signers can later edit when they receive the document for signature. [See the documentation](https://docs.signnow.com/docs/signnow/document/operations/update-a-v-2-document-prefill-text)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/signnow/actions/send-field-invite/send-field-invite.mjs b/components/signnow/actions/send-field-invite/send-field-invite.mjs index eed77877093d5..ce0b4f7cc12f1 100644 --- a/components/signnow/actions/send-field-invite/send-field-invite.mjs +++ b/components/signnow/actions/send-field-invite/send-field-invite.mjs @@ -5,7 +5,12 @@ export default { key: "signnow-send-field-invite", name: "Send Field Invite", description: "Creates and sends a field invite to sign a document. [See the documentation](https://docs.signnow.com/docs/signnow/field-invite/operations/create-a-document-invite)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/signnow/actions/upload-document-with-tags/upload-document-with-tags.mjs b/components/signnow/actions/upload-document-with-tags/upload-document-with-tags.mjs index bfbcf4cca79fd..894f4d3aecd3d 100644 --- a/components/signnow/actions/upload-document-with-tags/upload-document-with-tags.mjs +++ b/components/signnow/actions/upload-document-with-tags/upload-document-with-tags.mjs @@ -6,7 +6,12 @@ export default { key: "signnow-upload-document-with-tags", name: "Upload Document With Tags", description: "Uploads a file that contains SignNow text tags. [See the documentation](https://docs.signnow.com/docs/signnow/document/operations/create-a-document-fieldextract)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/similarweb_digitalrank_api/actions/get-ranked-sites/get-ranked-sites.mjs b/components/similarweb_digitalrank_api/actions/get-ranked-sites/get-ranked-sites.mjs index e48b494b20ea6..c00f9770cf288 100644 --- a/components/similarweb_digitalrank_api/actions/get-ranked-sites/get-ranked-sites.mjs +++ b/components/similarweb_digitalrank_api/actions/get-ranked-sites/get-ranked-sites.mjs @@ -4,7 +4,12 @@ export default { key: "similarweb_digitalrank_api-get-ranked-sites", name: "Get Ranked Sites", description: "List the top-ranking websites globally. [See the documentation](https://developers.similarweb.com/docs/digital-rank-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/similarweb_digitalrank_api/actions/get-subscription-status/get-subscription-status.mjs b/components/similarweb_digitalrank_api/actions/get-subscription-status/get-subscription-status.mjs index 668b26de77d9b..57104cc96f0d3 100644 --- a/components/similarweb_digitalrank_api/actions/get-subscription-status/get-subscription-status.mjs +++ b/components/similarweb_digitalrank_api/actions/get-subscription-status/get-subscription-status.mjs @@ -4,7 +4,12 @@ export default { key: "similarweb_digitalrank_api-get-subscription-status", name: "Get Subscription Status", description: "Returns the number of monthly data points remaining in your Similarweb account. [See the documentation](https://developers.similarweb.com/docs/digital-rank-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/similarweb_digitalrank_api/actions/get-website-rank/get-website-rank.mjs b/components/similarweb_digitalrank_api/actions/get-website-rank/get-website-rank.mjs index bdf7a93ae73c2..e0a711f81bfac 100644 --- a/components/similarweb_digitalrank_api/actions/get-website-rank/get-website-rank.mjs +++ b/components/similarweb_digitalrank_api/actions/get-website-rank/get-website-rank.mjs @@ -4,7 +4,12 @@ export default { key: "similarweb_digitalrank_api-get-website-rank", name: "Get Website Rank", description: "Retrieves the global rank of a specific website using Similarweb's Digital Rank API. [See the documentation](https://developers.similarweb.com/docs/digital-rank-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/simla_com/actions/create-customer/create-customer.mjs b/components/simla_com/actions/create-customer/create-customer.mjs index d67ac9ae5c421..64c162c5214ed 100644 --- a/components/simla_com/actions/create-customer/create-customer.mjs +++ b/components/simla_com/actions/create-customer/create-customer.mjs @@ -4,7 +4,12 @@ export default { key: "simla_com-create-customer", name: "Create Customer", description: "Creates a new customer profile. [See the documentation](https://docs.simla.com/Developers/API/APIVersions/APIv5#post--api-v5-customers-create).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/simla_com/actions/create-order/create-order.mjs b/components/simla_com/actions/create-order/create-order.mjs index b1e0d688d6f75..306f0c706b04a 100644 --- a/components/simla_com/actions/create-order/create-order.mjs +++ b/components/simla_com/actions/create-order/create-order.mjs @@ -5,7 +5,12 @@ export default { key: "simla_com-create-order", name: "Create Order", description: "Creates a new order with customer and order details. [See the documentation](https://docs.simla.com/Developers/API/APIVersions/APIv5#post--api-v5-orders-create).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/sitecreator_io/actions/create-site/create-site.mjs b/components/sitecreator_io/actions/create-site/create-site.mjs index a58e521f29f8e..92978d6c450c9 100644 --- a/components/sitecreator_io/actions/create-site/create-site.mjs +++ b/components/sitecreator_io/actions/create-site/create-site.mjs @@ -7,7 +7,12 @@ export default { key: "sitecreator_io-create-site", name: "Create Site", description: "Create a new website. [See the docs here](http://api-doc.sitecreator.io/#tag/Site/operation/postSite)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { sitecreator, diff --git a/components/sitecreator_io/actions/delete-site/delete-site.mjs b/components/sitecreator_io/actions/delete-site/delete-site.mjs index af40c5b4cc3dc..6c8582f13b300 100644 --- a/components/sitecreator_io/actions/delete-site/delete-site.mjs +++ b/components/sitecreator_io/actions/delete-site/delete-site.mjs @@ -4,7 +4,12 @@ export default { key: "sitecreator_io-delete-site", name: "Delete Site", description: "Deletes an existing website. [See the docs here](http://api-doc.sitecreator.io/#tag/Site/operation/deleteSite)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { sitecreator, diff --git a/components/siteleaf/actions/create-document/create-document.mjs b/components/siteleaf/actions/create-document/create-document.mjs index aa5c4ba15940a..b6b8461c891d5 100644 --- a/components/siteleaf/actions/create-document/create-document.mjs +++ b/components/siteleaf/actions/create-document/create-document.mjs @@ -5,7 +5,12 @@ export default { name: "Create Document", description: "Create a new document. [See the docs here](https://learn.siteleaf.com/api/documents/#create-a-document)", key: "siteleaf-create-document", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/sitespeakai/actions/send-query/send-query.mjs b/components/sitespeakai/actions/send-query/send-query.mjs index 89ae2b0fc16ef..deda2860d9149 100644 --- a/components/sitespeakai/actions/send-query/send-query.mjs +++ b/components/sitespeakai/actions/send-query/send-query.mjs @@ -4,7 +4,12 @@ export default { key: "sitespeakai-send-query", name: "Send Query", description: "Queries your chatbot and returns the answer and URLs used to find the answer. [See the documentation](https://api-docs.sitespeak.ai/reference/api-reference/query)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { sitespeakai, diff --git a/components/skillzrun/actions/create-user-with-offers/create-user-with-offers.mjs b/components/skillzrun/actions/create-user-with-offers/create-user-with-offers.mjs index eb6df4503fb3e..1a152e4f9952e 100644 --- a/components/skillzrun/actions/create-user-with-offers/create-user-with-offers.mjs +++ b/components/skillzrun/actions/create-user-with-offers/create-user-with-offers.mjs @@ -4,7 +4,12 @@ export default { key: "skillzrun-create-user-with-offers", name: "Create User With Offers", description: "Creates a new user with their associated offers in the SkillzRun app. [See the documentation](https://api.skillzrun.com/external/api/swagger/static/index.html#/users/post_external_api_users_create_with_orders)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { skillzrun, diff --git a/components/skillzrun/actions/upsert-user/upsert-user.mjs b/components/skillzrun/actions/upsert-user/upsert-user.mjs index 4453e29bc7cdb..e596e6894e2d7 100644 --- a/components/skillzrun/actions/upsert-user/upsert-user.mjs +++ b/components/skillzrun/actions/upsert-user/upsert-user.mjs @@ -4,7 +4,12 @@ export default { key: "skillzrun-upsert-user", name: "Upsert User", description: "Creates or updates a user based on the user email prop. [See the documentation](https://api.skillzrun.com/external/api/swagger/static/index.html#/users/post_external_api_users_upsert)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { skillzrun, diff --git a/components/skyvern/actions/create-run-task/create-run-task.mjs b/components/skyvern/actions/create-run-task/create-run-task.mjs index c8618f6846393..f1edda185dfe1 100644 --- a/components/skyvern/actions/create-run-task/create-run-task.mjs +++ b/components/skyvern/actions/create-run-task/create-run-task.mjs @@ -5,7 +5,12 @@ export default { key: "skyvern-create-run-task", name: "Create and Run Task", description: "Create a new task and run it instantly in Skyvern. Useful for one-off automations. [See the documentation](https://docs.skyvern.com/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { skyvern, diff --git a/components/skyvern/actions/get-workflow/get-workflow.mjs b/components/skyvern/actions/get-workflow/get-workflow.mjs index 530fde4c96ed6..8a7fc0ffc9684 100644 --- a/components/skyvern/actions/get-workflow/get-workflow.mjs +++ b/components/skyvern/actions/get-workflow/get-workflow.mjs @@ -4,7 +4,12 @@ export default { key: "skyvern-get-workflow", name: "Get Workflow Run Details", description: "Retrieve details of runs of a specific Skyvern workflow. Useful for checking the status and result of a run. [See the documentation](https://docs.skyvern.com/workflows/getting-workflows)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { skyvern, diff --git a/components/skyvern/actions/run-workflow/run-workflow.mjs b/components/skyvern/actions/run-workflow/run-workflow.mjs index f54629468b79f..1d425cd4f8e4a 100644 --- a/components/skyvern/actions/run-workflow/run-workflow.mjs +++ b/components/skyvern/actions/run-workflow/run-workflow.mjs @@ -5,7 +5,12 @@ export default { key: "skyvern-run-workflow", name: "Run Workflow", description: "Trigger a predefined workflow in Skyvern, allowing the execution of complex routines from Pipedream. [See the documentation](https://docs.skyvern.com/workflows/running-workflows)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { skyvern, diff --git a/components/slicktext/actions/add-contact-to-lists/add-contact-to-lists.mjs b/components/slicktext/actions/add-contact-to-lists/add-contact-to-lists.mjs index 59dfe575e25fd..bd0f9b31b1296 100644 --- a/components/slicktext/actions/add-contact-to-lists/add-contact-to-lists.mjs +++ b/components/slicktext/actions/add-contact-to-lists/add-contact-to-lists.mjs @@ -5,7 +5,12 @@ export default { key: "slicktext-add-contact-to-lists", name: "Add Contact To Lists", description: "Add a contact to lists. [See the documentation](https://api.slicktext.com/docs/v2/lists#scroll-to-add-contacts-to-lists)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { slicktext, diff --git a/components/slicktext/actions/create-contact/create-contact.mjs b/components/slicktext/actions/create-contact/create-contact.mjs index d336836b36847..cbdf81ab1af43 100644 --- a/components/slicktext/actions/create-contact/create-contact.mjs +++ b/components/slicktext/actions/create-contact/create-contact.mjs @@ -6,7 +6,12 @@ export default { key: "slicktext-create-contact", name: "Create Contact", description: "Add a new contact to your messaging list. [See the documentation](https://api.slicktext.com/docs/v1/contacts)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { slicktext, diff --git a/components/slicktext/actions/edit-contact/edit-contact.mjs b/components/slicktext/actions/edit-contact/edit-contact.mjs index ae9d9ffa84dc2..8f7ff8c738fbd 100644 --- a/components/slicktext/actions/edit-contact/edit-contact.mjs +++ b/components/slicktext/actions/edit-contact/edit-contact.mjs @@ -6,7 +6,12 @@ export default { key: "slicktext-edit-contact", name: "Edit Contact", description: "Updates personal details of an existing contact. [See the documentation](https://api.slicktext.com/docs/v1/contacts#6)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { slicktext, diff --git a/components/slite/actions/create-doc/create-doc.mjs b/components/slite/actions/create-doc/create-doc.mjs index f88df8f0df368..cf469d096984b 100644 --- a/components/slite/actions/create-doc/create-doc.mjs +++ b/components/slite/actions/create-doc/create-doc.mjs @@ -4,7 +4,12 @@ export default { key: "slite-create-doc", name: "Create Document", description: "Creates a new document within a chosen parent document or private channel. [See the documentation](https://developers.slite.com/reference/createnote)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/slite/actions/fetch-sub-docs/fetch-sub-docs.mjs b/components/slite/actions/fetch-sub-docs/fetch-sub-docs.mjs index 8333373042869..466882277e7c6 100644 --- a/components/slite/actions/fetch-sub-docs/fetch-sub-docs.mjs +++ b/components/slite/actions/fetch-sub-docs/fetch-sub-docs.mjs @@ -4,7 +4,12 @@ export default { key: "slite-fetch-sub-docs", name: "Fetch Sub-Documents", description: "Fetches a certain number of sub-documents related to a parent document in Slite. [See the documentation](https://developers.slite.com/reference/getnotechildren)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/slite/actions/update-doc/update-doc.mjs b/components/slite/actions/update-doc/update-doc.mjs index b88bdcd8f5b94..926aabe78dd7d 100644 --- a/components/slite/actions/update-doc/update-doc.mjs +++ b/components/slite/actions/update-doc/update-doc.mjs @@ -4,7 +4,12 @@ export default { key: "slite-update-doc", name: "Update Document", description: "Modifies a Slite document. [See the documentation](https://developers.slite.com/reference/updatenote)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/slybroadcast/actions/start-campaign-audio-file/start-campaign-audio-file.mjs b/components/slybroadcast/actions/start-campaign-audio-file/start-campaign-audio-file.mjs index 54173d404b6ee..365e19539e770 100644 --- a/components/slybroadcast/actions/start-campaign-audio-file/start-campaign-audio-file.mjs +++ b/components/slybroadcast/actions/start-campaign-audio-file/start-campaign-audio-file.mjs @@ -4,7 +4,12 @@ export default { key: "slybroadcast-start-campaign-audio-file", name: "Start Campaign with Audio File", description: "Start a new voicemail campaign using an audio file uploaded to your slybroadcast account. [See the documentation](https://www.slybroadcast.com/documentation.php)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { slybroadcast, diff --git a/components/slybroadcast/actions/start-campaign-audio-url/start-campaign-audio-url.mjs b/components/slybroadcast/actions/start-campaign-audio-url/start-campaign-audio-url.mjs index c7b9aec53d4ff..24617a937fec5 100644 --- a/components/slybroadcast/actions/start-campaign-audio-url/start-campaign-audio-url.mjs +++ b/components/slybroadcast/actions/start-campaign-audio-url/start-campaign-audio-url.mjs @@ -4,7 +4,12 @@ export default { key: "slybroadcast-start-campaign-audio-url", name: "Start Campaign With Audio URL", description: "Launch a new voicemail campaign to an individual or a group using an audio file url. [See the documentation](https://www.slybroadcast.com/documentation.php)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { slybroadcast, diff --git a/components/small_improvements/actions/create-meeting-notes/create-meeting-notes.mjs b/components/small_improvements/actions/create-meeting-notes/create-meeting-notes.mjs index a45e2a7cebaa0..77d01a190bb30 100644 --- a/components/small_improvements/actions/create-meeting-notes/create-meeting-notes.mjs +++ b/components/small_improvements/actions/create-meeting-notes/create-meeting-notes.mjs @@ -4,7 +4,12 @@ export default { key: "small_improvements-create-meeting-notes", name: "Create Meeting Notes", description: "Create meeting notes in Small Improvements. [See the documentation](https://storage.googleapis.com/si-rest-api-docs/dist/index.html#meeting-note-resource)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smallImprovements, diff --git a/components/small_improvements/actions/list-users/list-users.mjs b/components/small_improvements/actions/list-users/list-users.mjs index 01d52d07624a7..3cfb74bb0a33b 100644 --- a/components/small_improvements/actions/list-users/list-users.mjs +++ b/components/small_improvements/actions/list-users/list-users.mjs @@ -4,7 +4,12 @@ export default { key: "small_improvements-list-users", name: "List All Users", description: "List all users from Small Improvements. [See the documentation](https://storage.googleapis.com/si-rest-api-docs/dist/index.html)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { smallImprovements, diff --git a/components/smartroutes/actions/create-order/create-order.mjs b/components/smartroutes/actions/create-order/create-order.mjs index 6175252c4a79a..739ae1e10047e 100644 --- a/components/smartroutes/actions/create-order/create-order.mjs +++ b/components/smartroutes/actions/create-order/create-order.mjs @@ -5,7 +5,12 @@ export default { key: "smartroutes-create-order", name: "Create Order", description: "Creates a new order in the smartroutes. [See the documentation](https://api.smartroutes.io/v2/docs/api/#tag/Orders/paths/~1orders/post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smartroutes, diff --git a/components/smartsheet/actions/add-row-to-sheet/add-row-to-sheet.mjs b/components/smartsheet/actions/add-row-to-sheet/add-row-to-sheet.mjs index 90e7d4060fbc0..9fa930135e67a 100644 --- a/components/smartsheet/actions/add-row-to-sheet/add-row-to-sheet.mjs +++ b/components/smartsheet/actions/add-row-to-sheet/add-row-to-sheet.mjs @@ -4,7 +4,12 @@ export default { key: "smartsheet-add-row-to-sheet", name: "Add Row to Sheet", description: "Adds a row to a sheet. [See docs here](https://smartsheet.redoc.ly/tag/rows#operation/rows-addToSheet)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smartsheet, diff --git a/components/smartsheet/actions/new-sheet-from-template/new-sheet-from-template.mjs b/components/smartsheet/actions/new-sheet-from-template/new-sheet-from-template.mjs index 95d1f28327acf..53e1d510df448 100644 --- a/components/smartsheet/actions/new-sheet-from-template/new-sheet-from-template.mjs +++ b/components/smartsheet/actions/new-sheet-from-template/new-sheet-from-template.mjs @@ -5,7 +5,12 @@ export default { key: "smartsheet-new-sheet-from-template", name: "New Sheet From Template", description: "Creates a new sheet from a template. [See docs here](https://smartsheet.redoc.ly/tag/sheets#operation/create-sheet-in-sheets-folder)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smartsheet, diff --git a/components/smartsheet/actions/update-row/update-row.mjs b/components/smartsheet/actions/update-row/update-row.mjs index 989a7a40412c5..945c1757867bd 100644 --- a/components/smartsheet/actions/update-row/update-row.mjs +++ b/components/smartsheet/actions/update-row/update-row.mjs @@ -4,7 +4,12 @@ export default { key: "smartsheet-update-row", name: "Update Row", description: "Updates a row in a sheet. [See docs here](https://smartsheet.redoc.ly/tag/rows#operation/update-rows)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smartsheet, diff --git a/components/smartsuite/actions/create-record/create-record.mjs b/components/smartsuite/actions/create-record/create-record.mjs index bd49af35ab414..1e4eef183aba4 100644 --- a/components/smartsuite/actions/create-record/create-record.mjs +++ b/components/smartsuite/actions/create-record/create-record.mjs @@ -4,7 +4,12 @@ export default { key: "smartsuite-create-record", name: "Create Record", description: "Creates a new record. [See the documentation](https://developers.smartsuite.com/docs/solution-data/records/create-record)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smartsuite, diff --git a/components/smartsuite/actions/find-records/find-records.mjs b/components/smartsuite/actions/find-records/find-records.mjs index ed69c6de3af56..33b459aa231d1 100644 --- a/components/smartsuite/actions/find-records/find-records.mjs +++ b/components/smartsuite/actions/find-records/find-records.mjs @@ -4,7 +4,12 @@ export default { key: "smartsuite-find-records", name: "Find Records", description: "Search for records based on matching field(s). [See the documentation](https://developers.smartsuite.com/docs/solution-data/records/list-records)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { smartsuite, diff --git a/components/smashsend/actions/create-or-update-contact/create-or-update-contact.mjs b/components/smashsend/actions/create-or-update-contact/create-or-update-contact.mjs index 0b86f197e22f3..f9bd1cd8a0bbc 100644 --- a/components/smashsend/actions/create-or-update-contact/create-or-update-contact.mjs +++ b/components/smashsend/actions/create-or-update-contact/create-or-update-contact.mjs @@ -5,7 +5,12 @@ export default { key: "smashsend-create-or-update-contact", name: "Create or Update Contact", description: "Create a new contact or update an existing contact. [See the documentation](https://smashsend.com/docs/api/contacts)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smashsend, diff --git a/components/smashsend/actions/delete-contact/delete-contact.mjs b/components/smashsend/actions/delete-contact/delete-contact.mjs index f479615feadf3..80596c455b9a9 100644 --- a/components/smashsend/actions/delete-contact/delete-contact.mjs +++ b/components/smashsend/actions/delete-contact/delete-contact.mjs @@ -4,7 +4,12 @@ export default { key: "smashsend-delete-contact", name: "Delete Contact", description: "Delete a contact. [See the documentation](https://smashsend.com/docs/api/contacts)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smashsend, diff --git a/components/smashsend/actions/list-contacts/list-contacts.mjs b/components/smashsend/actions/list-contacts/list-contacts.mjs index 5b07684d6ec4e..039d6ab2399cb 100644 --- a/components/smashsend/actions/list-contacts/list-contacts.mjs +++ b/components/smashsend/actions/list-contacts/list-contacts.mjs @@ -4,7 +4,12 @@ export default { key: "smashsend-list-contacts", name: "List Contacts", description: "List all contacts. [See the documentation](https://smashsend.com/docs/api/contacts)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { smashsend, diff --git a/components/smashsend/actions/search-contacts/search-contacts.mjs b/components/smashsend/actions/search-contacts/search-contacts.mjs index 46a70d169bc01..e83d550582505 100644 --- a/components/smashsend/actions/search-contacts/search-contacts.mjs +++ b/components/smashsend/actions/search-contacts/search-contacts.mjs @@ -4,7 +4,12 @@ export default { key: "smashsend-search-contacts", name: "Search Contacts", description: "Search for contacts by email address. [See the documentation](https://smashsend.com/docs/api/contacts)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { smashsend, diff --git a/components/smiirl/actions/increment-count/increment-count.mjs b/components/smiirl/actions/increment-count/increment-count.mjs index 45d830ac7318f..104bc6dfaf317 100644 --- a/components/smiirl/actions/increment-count/increment-count.mjs +++ b/components/smiirl/actions/increment-count/increment-count.mjs @@ -5,7 +5,12 @@ export default { name: "Increment count", description: "Increment count or add a number to the current value. [See the docs here](https://www.npmjs.com/package/@smiirl/smiirl-library-js).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { smiirl, number: { diff --git a/components/smiirl/actions/reset-count/reset-count.mjs b/components/smiirl/actions/reset-count/reset-count.mjs index e97862c2e184b..b9bd3fc6a05f7 100644 --- a/components/smiirl/actions/reset-count/reset-count.mjs +++ b/components/smiirl/actions/reset-count/reset-count.mjs @@ -5,7 +5,12 @@ export default { name: "Reset count", description: "Reset count to zero. [See the docs here](https://www.npmjs.com/package/@smiirl/smiirl-library-js).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { smiirl, }, diff --git a/components/smiirl/actions/update-count/update-count.mjs b/components/smiirl/actions/update-count/update-count.mjs index 0c95881b8a15f..07f823e36666b 100644 --- a/components/smiirl/actions/update-count/update-count.mjs +++ b/components/smiirl/actions/update-count/update-count.mjs @@ -5,7 +5,12 @@ export default { name: "Update count", description: "Update count or push a number. [See the docs here](https://www.npmjs.com/package/@smiirl/smiirl-library-js).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { smiirl, number: { diff --git a/components/smoove/actions/add-or-update-subscriber/add-or-update-subscriber.mjs b/components/smoove/actions/add-or-update-subscriber/add-or-update-subscriber.mjs index 7a6d453f8b33c..f96bc7fd994a7 100644 --- a/components/smoove/actions/add-or-update-subscriber/add-or-update-subscriber.mjs +++ b/components/smoove/actions/add-or-update-subscriber/add-or-update-subscriber.mjs @@ -5,7 +5,12 @@ export default { name: "Add Or Update Subscriber", description: "Adds a new contact to your account or update an existing contact. [See the docs](https://rest.smoove.io/#!/Contacts/Contacts_Post).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, email: { diff --git a/components/smoove/actions/create-list/create-list.mjs b/components/smoove/actions/create-list/create-list.mjs index 9a271256b0801..f3c6dc45a7d45 100644 --- a/components/smoove/actions/create-list/create-list.mjs +++ b/components/smoove/actions/create-list/create-list.mjs @@ -5,7 +5,12 @@ export default { name: "Create List", description: "Creates a new list. [See the docs](https://rest.smoove.io/#!/Lists/Lists_Post).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/smoove/actions/find-or-create-subscriber/find-or-create-subscriber.mjs b/components/smoove/actions/find-or-create-subscriber/find-or-create-subscriber.mjs index 9bba15143f2ee..231fc41713db9 100644 --- a/components/smoove/actions/find-or-create-subscriber/find-or-create-subscriber.mjs +++ b/components/smoove/actions/find-or-create-subscriber/find-or-create-subscriber.mjs @@ -5,7 +5,12 @@ export default { name: "Find Or Create Subscriber", description: "Checks if a contact exists in your account otherwise will create a contact. [See the docs](https://rest.smoove.io/#!/Contacts/Contacts_Exists).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, email: { diff --git a/components/smoove/actions/find-subscriber/find-subscriber.mjs b/components/smoove/actions/find-subscriber/find-subscriber.mjs index fe69861a26a7c..e64a56b64defc 100644 --- a/components/smoove/actions/find-subscriber/find-subscriber.mjs +++ b/components/smoove/actions/find-subscriber/find-subscriber.mjs @@ -5,7 +5,12 @@ export default { name: "Find Subscriber", description: "Contacts information can be retrieved by sending the function a unique identifier (contact's ID, email, cell phone or external ID). [See the docs](https://rest.smoove.io/#!/Contacts/Contacts_GetById).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, email: {