diff --git a/components/orbit/actions/create-member-note/create-member-note.mjs b/components/orbit/actions/create-member-note/create-member-note.mjs index 7f171dba279b6..faf1069e088ae 100644 --- a/components/orbit/actions/create-member-note/create-member-note.mjs +++ b/components/orbit/actions/create-member-note/create-member-note.mjs @@ -4,7 +4,12 @@ export default { name: "Create Member Note", description: "Create a new member note. [See the docs here](https://api.orbit.love/reference/post_workspace-slug-members-member-slug-notes)", key: "orbit-create-member-note", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/orbit/actions/create-member/create-member.mjs b/components/orbit/actions/create-member/create-member.mjs index 4d813111254ac..fc50e7b5e2200 100644 --- a/components/orbit/actions/create-member/create-member.mjs +++ b/components/orbit/actions/create-member/create-member.mjs @@ -4,7 +4,12 @@ export default { name: "Create Member", description: "Create a new member. [See the docs here](https://api.orbit.love/reference/post_workspace-slug-members)", key: "orbit-create-member", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/orbit/actions/get-member-by-identity/get-member-by-identity.mjs b/components/orbit/actions/get-member-by-identity/get-member-by-identity.mjs index 3f5cbcc08b3a1..f270deadd39ba 100644 --- a/components/orbit/actions/get-member-by-identity/get-member-by-identity.mjs +++ b/components/orbit/actions/get-member-by-identity/get-member-by-identity.mjs @@ -4,7 +4,12 @@ export default { name: "Get Member by Identity", description: "Provide a source and one of username/uid/email params to return a member with that identity, if one exists. Common values for source include github, twitter, and email. [See the docs here](https://api.orbit.love/reference/get_workspace-slug-members-find)", key: "orbit-get-member-by-identity", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/orca_scan/actions/add-update-row/add-update-row.mjs b/components/orca_scan/actions/add-update-row/add-update-row.mjs index 0c761372b6353..406fb443f12a3 100644 --- a/components/orca_scan/actions/add-update-row/add-update-row.mjs +++ b/components/orca_scan/actions/add-update-row/add-update-row.mjs @@ -4,7 +4,12 @@ export default { key: "orca_scan-add-update-row", name: "Add or Update Row", description: "Adds a new row or updates an existing row in a sheet. [See the documentation](https://orcascan.com/guides/add-barcode-tracking-to-your-system-using-a-rest-api-f09a21c3)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { orca_scan, diff --git a/components/orca_scan/actions/find-row/find-row.mjs b/components/orca_scan/actions/find-row/find-row.mjs index a5dfbbab7cc09..119aed42ed835 100644 --- a/components/orca_scan/actions/find-row/find-row.mjs +++ b/components/orca_scan/actions/find-row/find-row.mjs @@ -4,7 +4,12 @@ export default { key: "orca_scan-find-row", name: "Find Row", description: "Locates a row record based on a given barcode. If no barcode is provided, return all rows. [See the documentation](https://orcascan.com/guides/add-barcode-tracking-to-your-system-using-a-rest-api-f09a21c3#rows-1)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { orca_scan, diff --git a/components/order_desk/actions/create-order/create-order.mjs b/components/order_desk/actions/create-order/create-order.mjs index 9c39297957314..4a3a355c61982 100644 --- a/components/order_desk/actions/create-order/create-order.mjs +++ b/components/order_desk/actions/create-order/create-order.mjs @@ -5,7 +5,12 @@ export default { name: "Create Order", description: "Create Order [See the documentation](https://apidocs.orderdesk.com/#create-an-order).", key: "order_desk-create-order", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/order_desk/actions/find-order/find-order.mjs b/components/order_desk/actions/find-order/find-order.mjs index 433363d5728cb..331a2490b6a96 100644 --- a/components/order_desk/actions/find-order/find-order.mjs +++ b/components/order_desk/actions/find-order/find-order.mjs @@ -4,7 +4,12 @@ export default { name: "Find Order", description: "Find Order [See the documentation](https://apidocs.orderdesk.com/#get-a-single-order).", key: "order_desk-find-order", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/order_desk/actions/list-orders/list-orders.mjs b/components/order_desk/actions/list-orders/list-orders.mjs index 7f3369610d8a2..b46ae79f6bf20 100644 --- a/components/order_desk/actions/list-orders/list-orders.mjs +++ b/components/order_desk/actions/list-orders/list-orders.mjs @@ -5,7 +5,12 @@ export default { name: "List Orders", description: "List Orders based on a search criteria [See the documentation](https://apidocs.orderdesk.com/#get-multiple-orders).", key: "order_desk-list-orders", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/order_desk/actions/update-order/update-order.mjs b/components/order_desk/actions/update-order/update-order.mjs index 15a6af39ee330..172850a5cab07 100644 --- a/components/order_desk/actions/update-order/update-order.mjs +++ b/components/order_desk/actions/update-order/update-order.mjs @@ -5,7 +5,12 @@ export default { name: "Update Order", description: "Update Order [See the documentation](https://apidocs.orderdesk.com/#update-an-order).", key: "order_desk-update-order", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/orderspace/actions/create-customer/create-customer.mjs b/components/orderspace/actions/create-customer/create-customer.mjs index b6560d7e21c75..a3aac67795222 100644 --- a/components/orderspace/actions/create-customer/create-customer.mjs +++ b/components/orderspace/actions/create-customer/create-customer.mjs @@ -5,7 +5,12 @@ export default { name: "Create Customer", description: "Create a new customer. [See the documentation](https://apidocs.orderspace.com/#create-a-customer)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { orderspace, companyName: { diff --git a/components/orderspace/actions/create-dispatch/create-dispatch.mjs b/components/orderspace/actions/create-dispatch/create-dispatch.mjs index cde40be05181c..90ac0a6bc99a4 100644 --- a/components/orderspace/actions/create-dispatch/create-dispatch.mjs +++ b/components/orderspace/actions/create-dispatch/create-dispatch.mjs @@ -6,7 +6,12 @@ export default { name: "Create Dispatch", description: "Create a new dispatch. [See the documentation](https://apidocs.orderspace.com/#create-a-dispatch)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { orderspace, orderId: { diff --git a/components/orderspace/actions/create-order/create-order.mjs b/components/orderspace/actions/create-order/create-order.mjs index 18e6bce17b518..030460fcafff2 100644 --- a/components/orderspace/actions/create-order/create-order.mjs +++ b/components/orderspace/actions/create-order/create-order.mjs @@ -6,7 +6,12 @@ export default { name: "Create Order", description: "Create a new order. [See the documentation](https://apidocs.orderspace.com/#create-an-order)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { orderspace, customerId: { diff --git a/components/orderspace/actions/list-customers/list-customers.mjs b/components/orderspace/actions/list-customers/list-customers.mjs index 1572f71e37d35..427068389c802 100644 --- a/components/orderspace/actions/list-customers/list-customers.mjs +++ b/components/orderspace/actions/list-customers/list-customers.mjs @@ -4,7 +4,12 @@ export default { key: "orderspace-list-customers", name: "List Customers", description: "List a list of customers. [See the documentation](https://apidocs.orderspace.com/#list-customers)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { orderspace, diff --git a/components/orderspace/actions/list-orders/list-orders.mjs b/components/orderspace/actions/list-orders/list-orders.mjs index 9da7b119b9ff5..6b8c410a93536 100644 --- a/components/orderspace/actions/list-orders/list-orders.mjs +++ b/components/orderspace/actions/list-orders/list-orders.mjs @@ -4,7 +4,12 @@ export default { key: "orderspace-list-orders", name: "List Orders", description: "List a list of orders. [See the documentation](https://apidocs.orderspace.com/#list-orders)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { orderspace, diff --git a/components/orderspace/actions/list-products/list-products.mjs b/components/orderspace/actions/list-products/list-products.mjs index 8cad9777df41c..60896eb103bd4 100644 --- a/components/orderspace/actions/list-products/list-products.mjs +++ b/components/orderspace/actions/list-products/list-products.mjs @@ -4,7 +4,12 @@ export default { key: "orderspace-list-products", name: "List Products", description: "List a list of products. [See the documentation](https://apidocs.orderspace.com/#list-products)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { orderspace, diff --git a/components/orderspace/actions/update-inventory-level/update-inventory-level.mjs b/components/orderspace/actions/update-inventory-level/update-inventory-level.mjs index a27c5c669992a..7b50831cd4722 100644 --- a/components/orderspace/actions/update-inventory-level/update-inventory-level.mjs +++ b/components/orderspace/actions/update-inventory-level/update-inventory-level.mjs @@ -5,7 +5,12 @@ export default { name: "Update Inventory Level", description: "Update an inventory level. [See the documentation](https://apidocs.orderspace.com/#update-inventory-levels)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { orderspace, productId: { diff --git a/components/originality_ai/actions/detect-ai-content/detect-ai-content.mjs b/components/originality_ai/actions/detect-ai-content/detect-ai-content.mjs index b29f6823bae6b..75278efd79d3f 100644 --- a/components/originality_ai/actions/detect-ai-content/detect-ai-content.mjs +++ b/components/originality_ai/actions/detect-ai-content/detect-ai-content.mjs @@ -4,7 +4,12 @@ export default { key: "originality_ai-detect-ai-content", name: "Detect AI Content", description: "Scans a string for AI content. [See the documentation](https://docs.originality.ai/api-v1-0-reference/scan/ai-scan)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/originality_ai/actions/detect-ai-from-url/detect-ai-from-url.mjs b/components/originality_ai/actions/detect-ai-from-url/detect-ai-from-url.mjs index 0e81d96de9998..2e6f8e864f1c6 100644 --- a/components/originality_ai/actions/detect-ai-from-url/detect-ai-from-url.mjs +++ b/components/originality_ai/actions/detect-ai-from-url/detect-ai-from-url.mjs @@ -4,7 +4,12 @@ export default { key: "originality_ai-detect-ai-from-url", name: "Detect AI From URL", description: "Scans a webpage for AI generated content. [See the documentation](https://docs.originality.ai/api-v1-0-reference/scan/ai-url-scan)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/originality_ai/actions/scan-content-for-plagiarism-and-readability/scan-content-for-plagiarism-and-readability.mjs b/components/originality_ai/actions/scan-content-for-plagiarism-and-readability/scan-content-for-plagiarism-and-readability.mjs index 615292c7dd936..2a30b6dcff6b5 100644 --- a/components/originality_ai/actions/scan-content-for-plagiarism-and-readability/scan-content-for-plagiarism-and-readability.mjs +++ b/components/originality_ai/actions/scan-content-for-plagiarism-and-readability/scan-content-for-plagiarism-and-readability.mjs @@ -4,7 +4,12 @@ export default { key: "originality_ai-scan-content-for-plagiarism-and-readability", name: "Scan Content for Plagiarism and Readability", description: "Scans a string for plagiarism as well as readability. [See the documentation](https://docs.originality.ai/api-v1-0-reference/scan/plagiarism-readability-scan)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/orimon/actions/send-message/send-message.mjs b/components/orimon/actions/send-message/send-message.mjs index 085726cf5f592..10aea74538456 100644 --- a/components/orimon/actions/send-message/send-message.mjs +++ b/components/orimon/actions/send-message/send-message.mjs @@ -4,7 +4,12 @@ export default { key: "orimon-send-message", name: "Send Message to Orimon", description: "Sends a direct message to Orimon. [See the documentation](https://orimon.gitbook.io/docs/developer-api/message-api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { orimon, diff --git a/components/orshot/actions/generate-image-library-template/generate-image-library-template.mjs b/components/orshot/actions/generate-image-library-template/generate-image-library-template.mjs index 85ea1093606e3..5d8b1b9afd3c4 100644 --- a/components/orshot/actions/generate-image-library-template/generate-image-library-template.mjs +++ b/components/orshot/actions/generate-image-library-template/generate-image-library-template.mjs @@ -8,7 +8,12 @@ export default { name: "Generate Image from Library Template", description: "Generate an image from a pre-designed library template using the Orshot API. [See the documentation](https://orshot.com/docs/api-reference/render-from-template)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { orshot, diff --git a/components/orshot/actions/generate-image-studio-template/generate-image-studio-template.mjs b/components/orshot/actions/generate-image-studio-template/generate-image-studio-template.mjs index 80aebc981bc31..997c06cabba6c 100644 --- a/components/orshot/actions/generate-image-studio-template/generate-image-studio-template.mjs +++ b/components/orshot/actions/generate-image-studio-template/generate-image-studio-template.mjs @@ -8,7 +8,12 @@ export default { name: "Generate Image from Studio Template", description: "Generate an image from an Orshot Studio template using the Orshot API. [See the documentation](https://orshot.com/docs/api-reference/render-from-studio-template)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { orshot, diff --git a/components/orshot/actions/get-studio-template-modifications/get-studio-template-modifications.mjs b/components/orshot/actions/get-studio-template-modifications/get-studio-template-modifications.mjs index e06487a8e8b52..14fbfbb2d5f19 100644 --- a/components/orshot/actions/get-studio-template-modifications/get-studio-template-modifications.mjs +++ b/components/orshot/actions/get-studio-template-modifications/get-studio-template-modifications.mjs @@ -4,7 +4,12 @@ export default { key: "orshot-get-studio-template-modifications", name: "Get Studio Template Modifications", description: "Get available modification keys for a studio template", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { orshot, diff --git a/components/orshot/actions/get-template-modifications/get-template-modifications.mjs b/components/orshot/actions/get-template-modifications/get-template-modifications.mjs index 307e5282f42d1..1bd86787b3371 100644 --- a/components/orshot/actions/get-template-modifications/get-template-modifications.mjs +++ b/components/orshot/actions/get-template-modifications/get-template-modifications.mjs @@ -4,7 +4,12 @@ export default { key: "orshot-get-template-modifications", name: "Get Template Modifications", description: "Get available modification keys for a library template", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { orshot, diff --git a/components/orshot/actions/list-templates/list-templates.mjs b/components/orshot/actions/list-templates/list-templates.mjs index 0db56c0fa8a13..862b17dbf6e41 100644 --- a/components/orshot/actions/list-templates/list-templates.mjs +++ b/components/orshot/actions/list-templates/list-templates.mjs @@ -5,7 +5,12 @@ export default { name: "List Templates", description: "Retrieve a list of available library templates from Orshot. [See templates](https://orshot.com/templates)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { orshot, diff --git a/components/ortto/actions/create-custom-activity/create-custom-activity.mjs b/components/ortto/actions/create-custom-activity/create-custom-activity.mjs index fe7753fa909ee..7e135e802ade6 100644 --- a/components/ortto/actions/create-custom-activity/create-custom-activity.mjs +++ b/components/ortto/actions/create-custom-activity/create-custom-activity.mjs @@ -5,7 +5,12 @@ export default { key: "ortto-create-custom-activity", name: "Create Custom Activity", description: "Creates a unique activity for a person. Can optionally initialize a new record beforehand. [See the documentation](https://help.ortto.com/a-271-create-a-custom-activity-event-create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ortto, diff --git a/components/ortto/actions/create-person/create-person.mjs b/components/ortto/actions/create-person/create-person.mjs index e9962f3402959..d9899fc95b4dd 100644 --- a/components/ortto/actions/create-person/create-person.mjs +++ b/components/ortto/actions/create-person/create-person.mjs @@ -5,7 +5,12 @@ export default { key: "ortto-create-person", name: "Create or Update a Person", description: "Create or update a preexisting person in the Ortto account. [See the documentation](https://help.ortto.com/a-250-api-reference)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ortto, diff --git a/components/ortto/actions/opt-out-sms/opt-out-sms.mjs b/components/ortto/actions/opt-out-sms/opt-out-sms.mjs index 23493003267db..a76703fe28745 100644 --- a/components/ortto/actions/opt-out-sms/opt-out-sms.mjs +++ b/components/ortto/actions/opt-out-sms/opt-out-sms.mjs @@ -4,7 +4,12 @@ export default { key: "ortto-opt-out-sms", name: "Opt Out of SMS", description: "Allows a user to opt-out from all SMS communications. [See the documentation](https://help.ortto.com/a-250-api-reference)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ortto, diff --git a/components/oto/actions/create-product/create-product.mjs b/components/oto/actions/create-product/create-product.mjs index dfc21e0807bc2..88894058d06f0 100644 --- a/components/oto/actions/create-product/create-product.mjs +++ b/components/oto/actions/create-product/create-product.mjs @@ -5,7 +5,12 @@ export default { key: "oto-create-product", name: "Create Product", description: "Creates a new product. [See the documentation](https://apis.tryoto.com/#21b289bc-04c1-49b1-993e-23e928d57f56)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { oto, diff --git a/components/oto/actions/get-order-details/get-order-details.mjs b/components/oto/actions/get-order-details/get-order-details.mjs index f7f5d7cfe2707..c15fd25b5698a 100644 --- a/components/oto/actions/get-order-details/get-order-details.mjs +++ b/components/oto/actions/get-order-details/get-order-details.mjs @@ -4,7 +4,12 @@ export default { key: "oto-get-order-details", name: "Get Order Details", description: "Provides detailed information about a specific order. [See the documentation](https://apis.tryoto.com/#53964419-2d64-4c07-b39d-b26a92b379c9)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { oto, diff --git a/components/oto/actions/list-orders/list-orders.mjs b/components/oto/actions/list-orders/list-orders.mjs index 5710406c59ef5..7ef8d90e33468 100644 --- a/components/oto/actions/list-orders/list-orders.mjs +++ b/components/oto/actions/list-orders/list-orders.mjs @@ -4,7 +4,12 @@ export default { key: "oto-list-orders", name: "List Orders", description: "Retrieves a list of orders. [See the documentation](https://apis.tryoto.com/#c2e94027-5214-456d-b653-0a66c038e3a4)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { oto, diff --git a/components/outreach/actions/add-prospect-sequence/add-prospect-sequence.mjs b/components/outreach/actions/add-prospect-sequence/add-prospect-sequence.mjs index a6dd6f7db27fe..7b38d54f71f47 100644 --- a/components/outreach/actions/add-prospect-sequence/add-prospect-sequence.mjs +++ b/components/outreach/actions/add-prospect-sequence/add-prospect-sequence.mjs @@ -5,7 +5,12 @@ export default { key: "outreach-add-prospect-sequence", name: "Add Prospect to Sequence", description: "Adds an existing prospect to a specific sequence in Outreach. [See the documentation](https://developers.outreach.io/api/reference/tag/prospect/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { outreach, diff --git a/components/outreach/actions/create-account/create-account.mjs b/components/outreach/actions/create-account/create-account.mjs index 2d4ea01eabd98..18c8d850551d0 100644 --- a/components/outreach/actions/create-account/create-account.mjs +++ b/components/outreach/actions/create-account/create-account.mjs @@ -6,7 +6,12 @@ export default { key: "outreach-create-account", name: "Create Account", description: "Creates an account within Outreach. [See the documentation](https://developers.outreach.io/api/reference/tag/Account/#tag/Account/paths/~1accounts/post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { outreach, diff --git a/components/outreach/actions/create-prospect/create-prospect.mjs b/components/outreach/actions/create-prospect/create-prospect.mjs index 21dbad9f6bbb4..4791cc5bf311d 100644 --- a/components/outreach/actions/create-prospect/create-prospect.mjs +++ b/components/outreach/actions/create-prospect/create-prospect.mjs @@ -6,7 +6,12 @@ export default { key: "outreach-create-prospect", name: "Create Prospect", description: "Creates a new prospect in Outreach. [See the documentation](https://developers.outreach.io/api/reference/tag/Prospect/#tag/Prospect/paths/~1prospects/post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { outreach, diff --git a/components/outscraper/actions/reverse-geocoding/reverse-geocoding.mjs b/components/outscraper/actions/reverse-geocoding/reverse-geocoding.mjs index 724418d2b6c68..0e1bb6b925db3 100644 --- a/components/outscraper/actions/reverse-geocoding/reverse-geocoding.mjs +++ b/components/outscraper/actions/reverse-geocoding/reverse-geocoding.mjs @@ -4,7 +4,12 @@ export default { key: "outscraper-reverse-geocoding", name: "Reverse Geocoding", description: "Translates geographic locations into human-readable addresses. [See the documentation](https://app.outscraper.com/api-docs#tag/Other-Services/paths/~1reverse-geocoding/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { outscraper, diff --git a/components/outscraper/actions/scrape-emails-contacts/scrape-emails-contacts.mjs b/components/outscraper/actions/scrape-emails-contacts/scrape-emails-contacts.mjs index bd1e3e840f5bb..ff92d4dd1d5b0 100644 --- a/components/outscraper/actions/scrape-emails-contacts/scrape-emails-contacts.mjs +++ b/components/outscraper/actions/scrape-emails-contacts/scrape-emails-contacts.mjs @@ -5,7 +5,12 @@ export default { key: "outscraper-scrape-emails-contacts", name: "Scrape Emails and Contacts", description: "Finds email addresses, social links, and phone numbers from given domains. [See the documentation](https://app.outscraper.com/api-docs#tag/Email-Related/paths/~1emails-and-contacts/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { outscraper, diff --git a/components/outscraper/actions/search-places/search-places.mjs b/components/outscraper/actions/search-places/search-places.mjs index f88f0f03ba940..9b074babe8c85 100644 --- a/components/outscraper/actions/search-places/search-places.mjs +++ b/components/outscraper/actions/search-places/search-places.mjs @@ -6,7 +6,12 @@ export default { key: "outscraper-search-places", name: "Search Places on Google Maps", description: "Searches for places on Google Maps using queries. [See the documentation](https://app.outscraper.com/api-docs#tag/Businesses-and-POI/paths/~1maps~1search-v3/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { outscraper, diff --git a/components/outseta/actions/add-account/add-account.mjs b/components/outseta/actions/add-account/add-account.mjs index e3502ee7d78cb..0aea5978d06de 100644 --- a/components/outseta/actions/add-account/add-account.mjs +++ b/components/outseta/actions/add-account/add-account.mjs @@ -5,7 +5,12 @@ export default { key: "outseta-add-account", name: "Add Account", description: "Add account with existing person. [See the documentation](https://documenter.getpostman.com/view/3613332/outseta-rest-api-v1/7TNfr6k#cf32f02d-896c-1835-f4a1-a9c13b3fbd72)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/outseta/actions/add-deal/add-deal.mjs b/components/outseta/actions/add-deal/add-deal.mjs index 6d926bf1eacf7..4f0b25389c5fe 100644 --- a/components/outseta/actions/add-deal/add-deal.mjs +++ b/components/outseta/actions/add-deal/add-deal.mjs @@ -4,7 +4,12 @@ export default { key: "outseta-add-deal", name: "Add Deal", description: "Add a new deal record to CRM. [See the documentation](https://documenter.getpostman.com/view/3613332/outseta-rest-api-v1/7TNfr6k#115dec74-85a4-f825-ff76-f12adddb652c)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/outseta/actions/add-person/add-person.mjs b/components/outseta/actions/add-person/add-person.mjs index 472020595d2db..7dc326fa04a6e 100644 --- a/components/outseta/actions/add-person/add-person.mjs +++ b/components/outseta/actions/add-person/add-person.mjs @@ -5,7 +5,12 @@ export default { key: "outseta-add-person", name: "Add Person", description: "Add a person record to CRM. [See the documentation](https://documenter.getpostman.com/view/3613332/outseta-rest-api-v1/7TNfr6k#26b724e6-9a76-2156-c4dd-b40f3d53fc70)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs b/components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs index 7e21ea44c664c..0cc502fcd09ca 100644 --- a/components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs +++ b/components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs @@ -4,7 +4,12 @@ export default { key: "overledger-execute-signed-transaction", name: "Execute Signed Transaction", description: "Executes a signed transaction by sending it to a blockchain node via Overledger. [See the documentation](https://developers.quant.network/reference/executesignedrequest)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overledger, diff --git a/components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs b/components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs index 5dedda399ff12..cecffd137877b 100644 --- a/components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs +++ b/components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs @@ -8,7 +8,12 @@ export default { key: "overledger-prepare-smart-contract-transaction", name: "Prepare Smart Contract Transaction", description: "Prepares a smart contract transaction for signing on the Overledger platform. [See the documentation](https://developers.quant.network/reference/preparesmartcontractwrite)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overledger, diff --git a/components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs b/components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs index d05977fb19136..41f6e77874979 100644 --- a/components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs +++ b/components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs @@ -8,7 +8,12 @@ export default { key: "overledger-read-from-a-smart-contract", name: "Read from a smart contract", description: "Reads data from a specified smart contract on the Overledger network.", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { overledger, diff --git a/components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs b/components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs index f24ac3c535d25..e04fc1fa34d69 100644 --- a/components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs +++ b/components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs @@ -7,7 +7,12 @@ export default { key: "overledger-sign-a-transaction", name: "Sign a transaction", description: "Sign a transaction using Overledger - Part 2 of [Overledger Pattern](https://developers.quant.network/reference/overledger-pattern). [See documentation](https://developers.quant.network/reference/sandboxsigning)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overledger, diff --git a/components/overloop/actions/add-contact-to-campaign/add-contact-to-campaign.mjs b/components/overloop/actions/add-contact-to-campaign/add-contact-to-campaign.mjs index fe074d291adb2..b823fdda9e556 100644 --- a/components/overloop/actions/add-contact-to-campaign/add-contact-to-campaign.mjs +++ b/components/overloop/actions/add-contact-to-campaign/add-contact-to-campaign.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-add-contact-to-campaign", name: "Add Contact to Campaign", description: "Adds a contact to a campaign. [See the docs](https://apidoc.overloop.com/#enrollments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/create-contact/create-contact.mjs b/components/overloop/actions/create-contact/create-contact.mjs index 5c90cdd1d0975..75f19f962df44 100644 --- a/components/overloop/actions/create-contact/create-contact.mjs +++ b/components/overloop/actions/create-contact/create-contact.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-create-contact", name: "Create Contact", description: "Creates a new contact. [See the docs](https://apidoc.overloop.com/#create-a-contact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/create-deal/create-deal.mjs b/components/overloop/actions/create-deal/create-deal.mjs index b7a0b08d5648d..96f620527acf2 100644 --- a/components/overloop/actions/create-deal/create-deal.mjs +++ b/components/overloop/actions/create-deal/create-deal.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-create-deal", name: "Create Deal", description: "Creates a new deal. [See the docs](https://apidoc.overloop.com/#create-a-deal)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/create-organization/create-organization.mjs b/components/overloop/actions/create-organization/create-organization.mjs index 06d7e8ab68b24..cf69783ef5043 100644 --- a/components/overloop/actions/create-organization/create-organization.mjs +++ b/components/overloop/actions/create-organization/create-organization.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-create-organization", name: "Create Organization", description: "Creates a new organization. [See the docs](https://apidoc.overloop.com/#create-an-organization)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/enroll-contact/enroll-contact.mjs b/components/overloop/actions/enroll-contact/enroll-contact.mjs index 3fa1a793e73d3..c5789822a4d0b 100644 --- a/components/overloop/actions/enroll-contact/enroll-contact.mjs +++ b/components/overloop/actions/enroll-contact/enroll-contact.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-enroll-contact", name: "Enroll Contact", description: "Enroll a contact in a workflow. [See the docs](https://apidoc.overloop.com/#enrollments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/enroll-deal/enroll-deal.mjs b/components/overloop/actions/enroll-deal/enroll-deal.mjs index d9d989761dfdc..3077045f1de28 100644 --- a/components/overloop/actions/enroll-deal/enroll-deal.mjs +++ b/components/overloop/actions/enroll-deal/enroll-deal.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-enroll-deal", name: "Enroll Deal", description: "Enroll a deal in a workflow. [See the docs](https://apidoc.overloop.com/#enrollments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/enroll-organization/enroll-organization.mjs b/components/overloop/actions/enroll-organization/enroll-organization.mjs index e7cbb793ffe16..eb3c18ec77081 100644 --- a/components/overloop/actions/enroll-organization/enroll-organization.mjs +++ b/components/overloop/actions/enroll-organization/enroll-organization.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-enroll-organization", name: "Enroll Organization", description: "Enroll an organization in a workflow. [See the docs](https://apidoc.overloop.com/#enrollments)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/exclude-contact/exclude-contact.mjs b/components/overloop/actions/exclude-contact/exclude-contact.mjs index fb207b38cd2fd..42e2b7004db33 100644 --- a/components/overloop/actions/exclude-contact/exclude-contact.mjs +++ b/components/overloop/actions/exclude-contact/exclude-contact.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-exclude-contact", name: "Exclude Contact", description: "Add a contact to the exclusion list. [See the docs](https://apidoc.overloop.com/#create-an-exclusion-list-item)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/get-contact/get-contact.mjs b/components/overloop/actions/get-contact/get-contact.mjs index 989a6f6f7e677..1937f9df67159 100644 --- a/components/overloop/actions/get-contact/get-contact.mjs +++ b/components/overloop/actions/get-contact/get-contact.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-get-contact", name: "Get Contact", description: "Retrieves a contact by id. [See the docs](https://apidoc.overloop.com/#retrieve-a-contact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/get-deal/get-deal.mjs b/components/overloop/actions/get-deal/get-deal.mjs index d4d2887dcd271..a8c9e2f04c13e 100644 --- a/components/overloop/actions/get-deal/get-deal.mjs +++ b/components/overloop/actions/get-deal/get-deal.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-get-deal", name: "Get Deal", description: "Retrieves a deal by id. [See the docs](https://apidoc.overloop.com/#retrieve-a-deal)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/get-organization/get-organization.mjs b/components/overloop/actions/get-organization/get-organization.mjs index 0cc85cdf75edf..7f8c60316e9f2 100644 --- a/components/overloop/actions/get-organization/get-organization.mjs +++ b/components/overloop/actions/get-organization/get-organization.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-get-organization", name: "Get Organization", description: "Retrieves an organization by id. [See the docs](https://apidoc.overloop.com/#retrieve-an-organization)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/mark-deal-lost/mark-deal-lost.mjs b/components/overloop/actions/mark-deal-lost/mark-deal-lost.mjs index 7a20606f1c1b2..eb57eb589cf4e 100644 --- a/components/overloop/actions/mark-deal-lost/mark-deal-lost.mjs +++ b/components/overloop/actions/mark-deal-lost/mark-deal-lost.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-mark-deal-lost", name: "Mark Deal as Lost", description: "Marks a deal as lost. [See the docs](https://apidoc.overloop.com/#mark-as-lost)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/mark-deal-won/mark-deal-won.mjs b/components/overloop/actions/mark-deal-won/mark-deal-won.mjs index 26044c3938b68..2322449326556 100644 --- a/components/overloop/actions/mark-deal-won/mark-deal-won.mjs +++ b/components/overloop/actions/mark-deal-won/mark-deal-won.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-mark-deal-won", name: "Mark Deal as Won", description: "Marks a deal as won. [See the docs](https://apidoc.overloop.com/#mark-as-won)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/move-deal/move-deal.mjs b/components/overloop/actions/move-deal/move-deal.mjs index ce93508abbd49..ad86e9bab6fc9 100644 --- a/components/overloop/actions/move-deal/move-deal.mjs +++ b/components/overloop/actions/move-deal/move-deal.mjs @@ -4,7 +4,12 @@ export default { key: "overloop-move-deal", name: "Move Deal", description: "Moves a deal. [See the docs](https://apidoc.overloop.com/#update-a-deal)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/update-contact/update-contact.mjs b/components/overloop/actions/update-contact/update-contact.mjs index 6699848ee2926..bab813eb813c8 100644 --- a/components/overloop/actions/update-contact/update-contact.mjs +++ b/components/overloop/actions/update-contact/update-contact.mjs @@ -5,7 +5,12 @@ export default { key: "overloop-update-contact", name: "Update Contact", description: "Creates a new contact. [See the docs](https://apidoc.overloop.com/#update-a-contact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/update-deal/update-deal.mjs b/components/overloop/actions/update-deal/update-deal.mjs index cf17e5cd1ed21..448fccb1482de 100644 --- a/components/overloop/actions/update-deal/update-deal.mjs +++ b/components/overloop/actions/update-deal/update-deal.mjs @@ -5,7 +5,12 @@ export default { key: "overloop-update-deal", name: "Update Deal", description: "Updates a deal. [See the docs](https://apidoc.overloop.com/#update-a-deal)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/overloop/actions/update-organization/update-organization.mjs b/components/overloop/actions/update-organization/update-organization.mjs index 562ff2e9dc51a..b0767cdf4e95a 100644 --- a/components/overloop/actions/update-organization/update-organization.mjs +++ b/components/overloop/actions/update-organization/update-organization.mjs @@ -5,7 +5,12 @@ export default { key: "overloop-update-organization", name: "Update Organization", description: "Updates an organization. [See the docs](https://apidoc.overloop.com/#update-an-organization)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { overloop, diff --git a/components/owl_protocol/actions/deploy-collection/deploy-collection.mjs b/components/owl_protocol/actions/deploy-collection/deploy-collection.mjs index 47e15d7c4e36a..d1a78b9e8bf4c 100644 --- a/components/owl_protocol/actions/deploy-collection/deploy-collection.mjs +++ b/components/owl_protocol/actions/deploy-collection/deploy-collection.mjs @@ -4,7 +4,12 @@ export default { key: "owl_protocol-deploy-collection", name: "Deploy Collection", description: "Deploy digital asset collection. [See the documentation](https://docs-api.owlprotocol.xyz/reference/collection-deploy)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/owl_protocol/actions/get-network/get-network.mjs b/components/owl_protocol/actions/get-network/get-network.mjs index 130b974d30c29..d41e740336cf4 100644 --- a/components/owl_protocol/actions/get-network/get-network.mjs +++ b/components/owl_protocol/actions/get-network/get-network.mjs @@ -4,7 +4,12 @@ export default { key: "owl_protocol-get-network", name: "Get Network", description: "Get network details by the ID. [See the documentation](https://docs-api.owlprotocol.xyz/reference/network-get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/owl_protocol/actions/mint-asset/mint-asset.mjs b/components/owl_protocol/actions/mint-asset/mint-asset.mjs index b46a4575c2848..99c80a4ee78e2 100644 --- a/components/owl_protocol/actions/mint-asset/mint-asset.mjs +++ b/components/owl_protocol/actions/mint-asset/mint-asset.mjs @@ -4,7 +4,12 @@ export default { key: "owl_protocol-mint-asset", name: "Mint Asset", description: "Mint digital assets for collection. [See the documentation](https://docs-api.owlprotocol.xyz/reference/collection-erc721autoid-mint)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/oxylabs/actions/create-proxy-session/create-proxy-session.mjs b/components/oxylabs/actions/create-proxy-session/create-proxy-session.mjs index 89292fb3ec49c..e3d89b6fe10de 100644 --- a/components/oxylabs/actions/create-proxy-session/create-proxy-session.mjs +++ b/components/oxylabs/actions/create-proxy-session/create-proxy-session.mjs @@ -5,7 +5,12 @@ export default { key: "oxylabs-create-proxy-session", name: "Create Proxy Session", description: "Establish a proxy session using the Residential Proxy endpoint. [See the documentation](https://developers.oxylabs.io/proxies/residential-proxies/session-control#establishing-session)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { oxylabs, diff --git a/components/oxylabs/actions/create-schedule/create-schedule.mjs b/components/oxylabs/actions/create-schedule/create-schedule.mjs index fc79e24cdd4f8..a4ae6eab11969 100644 --- a/components/oxylabs/actions/create-schedule/create-schedule.mjs +++ b/components/oxylabs/actions/create-schedule/create-schedule.mjs @@ -5,7 +5,12 @@ export default { key: "oxylabs-create-schedule", name: "Create Schedule", description: "Create a schedule for a scraping job. [See the documentation](https://developers.oxylabs.io/scraping-solutions/web-scraper-api/features/scheduler#create-a-new-schedule)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { oxylabs, diff --git a/components/oxylabs/actions/scrape-url/scrape-url.mjs b/components/oxylabs/actions/scrape-url/scrape-url.mjs index 04b9cb7422029..72ad3948c657b 100644 --- a/components/oxylabs/actions/scrape-url/scrape-url.mjs +++ b/components/oxylabs/actions/scrape-url/scrape-url.mjs @@ -5,7 +5,12 @@ export default { key: "oxylabs-scrape-url", name: "Scrape URL", description: "Scrape a URL. [See the documentation](https://developers.oxylabs.io/scraping-solutions/web-scraper-api)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { oxylabs, diff --git a/components/oxylabs/actions/scrape-with-query/scrape-with-query.mjs b/components/oxylabs/actions/scrape-with-query/scrape-with-query.mjs index cb21028b13659..3db9822183b93 100644 --- a/components/oxylabs/actions/scrape-with-query/scrape-with-query.mjs +++ b/components/oxylabs/actions/scrape-with-query/scrape-with-query.mjs @@ -5,7 +5,12 @@ export default { key: "oxylabs-scrape-with-query", name: "Scrape with Query", description: "Extract data using a search query. [See the documentation](https://developers.oxylabs.io/scraping-solutions/web-scraper-api)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { oxylabs, diff --git a/components/paazl/actions/create-checkout-token/create-checkout-token.mjs b/components/paazl/actions/create-checkout-token/create-checkout-token.mjs index 03836a22e7f9e..148d0445e672b 100644 --- a/components/paazl/actions/create-checkout-token/create-checkout-token.mjs +++ b/components/paazl/actions/create-checkout-token/create-checkout-token.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-create-checkout-token", name: "Create Checkout Access Token", description: "Returns an access token for a checkout session. This enables the Paazl checkout widget to access Paazl resources. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Checkout/createTokenUsingPOST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/paazl/actions/create-shipment/create-shipment.mjs b/components/paazl/actions/create-shipment/create-shipment.mjs index 3539ea520abc4..e7177f8faacca 100644 --- a/components/paazl/actions/create-shipment/create-shipment.mjs +++ b/components/paazl/actions/create-shipment/create-shipment.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-create-shipment", name: "Create Shipment For Order", description: "Generates a shipment at the carrier for the shipping option specified in POST order. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipments/createShipmentUsingPOST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/paazl/actions/delete-order/delete-order.mjs b/components/paazl/actions/delete-order/delete-order.mjs index 0069ac09aa980..6a77944d7bdac 100644 --- a/components/paazl/actions/delete-order/delete-order.mjs +++ b/components/paazl/actions/delete-order/delete-order.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-delete-order", name: "Delete Order", description: "Deletes an order. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Order/saveOrderUsingPOST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-checkout-session/get-checkout-session.mjs b/components/paazl/actions/get-checkout-session/get-checkout-session.mjs index d32f53cf9e168..fc64b927fe62d 100644 --- a/components/paazl/actions/get-checkout-session/get-checkout-session.mjs +++ b/components/paazl/actions/get-checkout-session/get-checkout-session.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-checkout-session", name: "Get Checkout Session Data", description: "Gets your reference for a checkout session. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Checkout/getCheckoutUsingGET)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-order-labels/get-order-labels.mjs b/components/paazl/actions/get-order-labels/get-order-labels.mjs index e7a8a44f5330d..0823b1482c836 100644 --- a/components/paazl/actions/get-order-labels/get-order-labels.mjs +++ b/components/paazl/actions/get-order-labels/get-order-labels.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-order-labels", name: "Get Order Shipping Labels", description: "Retrieves an order's labels. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipments/getOrderLabelsUsingGet)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-order-shipments/get-order-shipments.mjs b/components/paazl/actions/get-order-shipments/get-order-shipments.mjs index 94468b517987e..2ccbde3785a1a 100644 --- a/components/paazl/actions/get-order-shipments/get-order-shipments.mjs +++ b/components/paazl/actions/get-order-shipments/get-order-shipments.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-order-shipments", name: "Get Order Shipment Details", description: "Retrieves an order's shipments details. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipments/getShipmentsUsingGET)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-parcel-label/get-parcel-label.mjs b/components/paazl/actions/get-parcel-label/get-parcel-label.mjs index 6b54991ec83a1..b099dc6f79fa8 100644 --- a/components/paazl/actions/get-parcel-label/get-parcel-label.mjs +++ b/components/paazl/actions/get-parcel-label/get-parcel-label.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-parcel-label", name: "Get Specific Parcel Label", description: "Retrieves a specific parcel's label. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipments/getParcelLabelUsingGet)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-pickup-location-options/get-pickup-location-options.mjs b/components/paazl/actions/get-pickup-location-options/get-pickup-location-options.mjs index faaeca9aaf884..699eda36e8f28 100644 --- a/components/paazl/actions/get-pickup-location-options/get-pickup-location-options.mjs +++ b/components/paazl/actions/get-pickup-location-options/get-pickup-location-options.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-pickup-location-options", name: "Get Pickup Location Shipping Options", description: "Contains pickup locations for your checkout page. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipping%20options/getPickupLocationsUsingPOST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-return-shipments/get-return-shipments.mjs b/components/paazl/actions/get-return-shipments/get-return-shipments.mjs index a74ae6d1609e2..d8bc67cd310a4 100644 --- a/components/paazl/actions/get-return-shipments/get-return-shipments.mjs +++ b/components/paazl/actions/get-return-shipments/get-return-shipments.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-return-shipments", name: "Get Return Shipment Details", description: "Retrieves an order's return shipments details. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipments/getReturnShipmentsUsingGET)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-shipment-labels/get-shipment-labels.mjs b/components/paazl/actions/get-shipment-labels/get-shipment-labels.mjs index 211f6416f2682..3c67a1243e039 100644 --- a/components/paazl/actions/get-shipment-labels/get-shipment-labels.mjs +++ b/components/paazl/actions/get-shipment-labels/get-shipment-labels.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-shipment-labels", name: "Get Specific Shipment Label", description: "Retrieves a specific shipment's labels. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipments/getShipmentLabelsUsingGet)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-shipment-tracking/get-shipment-tracking.mjs b/components/paazl/actions/get-shipment-tracking/get-shipment-tracking.mjs index 479cc2447a01c..b4d8c85836faa 100644 --- a/components/paazl/actions/get-shipment-tracking/get-shipment-tracking.mjs +++ b/components/paazl/actions/get-shipment-tracking/get-shipment-tracking.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-shipment-tracking", name: "Get Specific Shipment Tracking", description: "Retrieves a specific shipment's tracking number details. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipments/getShipmentByShipmentIdUsingGET)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/get-shipping-options/get-shipping-options.mjs b/components/paazl/actions/get-shipping-options/get-shipping-options.mjs index 90f50898807af..f856bb94d2b49 100644 --- a/components/paazl/actions/get-shipping-options/get-shipping-options.mjs +++ b/components/paazl/actions/get-shipping-options/get-shipping-options.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-get-shipping-options", name: "Get Home Delivery Shipping Options", description: "Contains shipping options for your checkout page. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Shipping%20options/shippingOptionsUsingPOST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paazl/actions/modify-order/modify-order.mjs b/components/paazl/actions/modify-order/modify-order.mjs index 20a7c4692b6e3..e0f0a207751c0 100644 --- a/components/paazl/actions/modify-order/modify-order.mjs +++ b/components/paazl/actions/modify-order/modify-order.mjs @@ -5,7 +5,12 @@ export default { key: "paazl-modify-order", name: "Modify Order", description: "Modifies the information of an order with a specific reference in the Paazl database. The method overwrites the order. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Order/editOrderUsingPUT)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/paazl/actions/save-checkout-session/save-checkout-session.mjs b/components/paazl/actions/save-checkout-session/save-checkout-session.mjs index 10d4224d6e8ca..3b5ef60725bc0 100644 --- a/components/paazl/actions/save-checkout-session/save-checkout-session.mjs +++ b/components/paazl/actions/save-checkout-session/save-checkout-session.mjs @@ -4,7 +4,12 @@ export default { key: "paazl-save-checkout-session", name: "Save Checkout Session Data", description: "Saves the most important information of a specific checkout session to the Paazl database. The information will be kept for 30 days. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Checkout/saveCheckoutUsingPOST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/paazl/actions/save-order/save-order.mjs b/components/paazl/actions/save-order/save-order.mjs index 554c28b345c82..ca78d225d9e61 100644 --- a/components/paazl/actions/save-order/save-order.mjs +++ b/components/paazl/actions/save-order/save-order.mjs @@ -5,7 +5,12 @@ export default { key: "paazl-save-order", name: "Save Order", description: "Saves an order's most important information to the Paazl database once a customer has paid for their purchase. [See the documentation](https://support.paazl.com/hc/en-us/articles/360008633973-REST-API-reference#/Order/saveOrderUsingPOST)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/page_x/actions/add-new-lead/add-new-lead.mjs b/components/page_x/actions/add-new-lead/add-new-lead.mjs index e1065dc877dc1..1e4c8a901890d 100644 --- a/components/page_x/actions/add-new-lead/add-new-lead.mjs +++ b/components/page_x/actions/add-new-lead/add-new-lead.mjs @@ -4,7 +4,12 @@ export default { key: "page_x-add-new-lead", name: "Add New Lead", description: "Create a new lead on PageX CRM. [See the documentation](https://rapidapi.com/thunderhurt/api/pagexcrm)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pageX, diff --git a/components/pagerduty/actions/acknowledge-incident/acknowledge-incident.mjs b/components/pagerduty/actions/acknowledge-incident/acknowledge-incident.mjs index dacc2f197eb3e..d7132753b93c8 100644 --- a/components/pagerduty/actions/acknowledge-incident/acknowledge-incident.mjs +++ b/components/pagerduty/actions/acknowledge-incident/acknowledge-incident.mjs @@ -6,7 +6,12 @@ export default { name: "Acknowledge Incident", description: "Acknowledge an incident. [See the docs here](https://developer.pagerduty.com/api-reference/b3A6Mjc0ODE0Mg-update-an-incident)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { pagerduty, incidentId: { diff --git a/components/pagerduty/actions/find-oncall-user/find-oncall-user.mjs b/components/pagerduty/actions/find-oncall-user/find-oncall-user.mjs index c59f4bdc90895..d897d5d25d323 100644 --- a/components/pagerduty/actions/find-oncall-user/find-oncall-user.mjs +++ b/components/pagerduty/actions/find-oncall-user/find-oncall-user.mjs @@ -5,7 +5,12 @@ export default { name: "Find Oncall User", description: "Find the user on call for a specific schedule. [See the docs here](https://developer.pagerduty.com/api-reference/b3A6Mjc0ODE5MA-list-users-on-call)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { pagerduty, scheduleId: { diff --git a/components/pagerduty/actions/resolve-incident/resolve-incident.mjs b/components/pagerduty/actions/resolve-incident/resolve-incident.mjs index 7b9b54b568750..fe659c352be98 100644 --- a/components/pagerduty/actions/resolve-incident/resolve-incident.mjs +++ b/components/pagerduty/actions/resolve-incident/resolve-incident.mjs @@ -6,7 +6,12 @@ export default { name: "Resolve Incident", description: "Resolve an incident. [See the docs here](https://developer.pagerduty.com/api-reference/b3A6Mjc0ODE0Mg-update-an-incident)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { pagerduty, incidentId: { diff --git a/components/pagerduty/actions/trigger-incident/trigger-incident.mjs b/components/pagerduty/actions/trigger-incident/trigger-incident.mjs index 4b6fab66a5024..e5813a86310f7 100644 --- a/components/pagerduty/actions/trigger-incident/trigger-incident.mjs +++ b/components/pagerduty/actions/trigger-incident/trigger-incident.mjs @@ -13,7 +13,12 @@ export default { name: "Trigger Incident", description: "Trigger an incident. [See the docs here](https://developer.pagerduty.com/api-reference/b3A6Mjc0ODE0MA-create-an-incident)", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { pagerduty, title: { diff --git a/components/paigo/actions/add-credits/add-credits.mjs b/components/paigo/actions/add-credits/add-credits.mjs index 6e5a68270e646..de94f6f2721f0 100644 --- a/components/paigo/actions/add-credits/add-credits.mjs +++ b/components/paigo/actions/add-credits/add-credits.mjs @@ -4,7 +4,12 @@ export default { key: "paigo-add-credits", name: "Add Credits", description: "Increments the credit balance of a specific customer. [See the documentation](http://www.api.docs.paigo.tech/#tag/Customers/operation/Create%20a%20wallet%20transaction)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paigo, diff --git a/components/paigo/actions/create-dimension/create-dimension.mjs b/components/paigo/actions/create-dimension/create-dimension.mjs index 7899f6d973cd2..2a399e90aaf90 100644 --- a/components/paigo/actions/create-dimension/create-dimension.mjs +++ b/components/paigo/actions/create-dimension/create-dimension.mjs @@ -5,7 +5,12 @@ export default { key: "paigo-create-dimension", name: "Create Dimension", description: "Creates a new dimension inside the Paigo platform. [See the documentation](http://www.api.docs.paigo.tech/#tag/Dimensions/operation/Create%20a%20dimension)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paigo, diff --git a/components/paigo/actions/create-offering/create-offering.mjs b/components/paigo/actions/create-offering/create-offering.mjs index 6625b046624e6..84f9eab00f5aa 100644 --- a/components/paigo/actions/create-offering/create-offering.mjs +++ b/components/paigo/actions/create-offering/create-offering.mjs @@ -5,7 +5,12 @@ export default { key: "paigo-create-offering", name: "Create Offering", description: "Creates a new offering in the Paigo platform. [See the documentation](http://www.api.docs.paigo.tech/#tag/Offerings/operation/Create%20an%20offering)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paigo, diff --git a/components/paigo/actions/get-invoice/get-invoice.mjs b/components/paigo/actions/get-invoice/get-invoice.mjs index 408edf8e52313..ec759ba00be13 100644 --- a/components/paigo/actions/get-invoice/get-invoice.mjs +++ b/components/paigo/actions/get-invoice/get-invoice.mjs @@ -4,7 +4,12 @@ export default { key: "paigo-get-invoice", name: "Get Invoice", description: "Fetches detailed information about a specific invoice. [See the documentation](http://www.api.docs.paigo.tech/#tag/Invoices/operation/Get%20an%20Invoice%20by%20ID)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { paigo, diff --git a/components/paigo/actions/measure-usage/measure-usage.mjs b/components/paigo/actions/measure-usage/measure-usage.mjs index 093743cd0f4ee..ea045445772b2 100644 --- a/components/paigo/actions/measure-usage/measure-usage.mjs +++ b/components/paigo/actions/measure-usage/measure-usage.mjs @@ -4,7 +4,12 @@ export default { key: "paigo-measure-usage", name: "Measure Usage", description: "Records the amount of a specific usage type linked with a customer. [See the documentation](http://www.api.docs.paigo.tech/#tag/Usage/operation/Collect%20usage%20data)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paigo, diff --git a/components/paigo/actions/onboard-customer/onboard-customer.mjs b/components/paigo/actions/onboard-customer/onboard-customer.mjs index 93968f2484bad..d91dc01aeef3b 100644 --- a/components/paigo/actions/onboard-customer/onboard-customer.mjs +++ b/components/paigo/actions/onboard-customer/onboard-customer.mjs @@ -5,7 +5,12 @@ export default { key: "paigo-onboard-customer", name: "Onboard Customer", description: "Creates a new customer and assigns them an offering in Paigo. [See the documentation](http://www.api.docs.paigo.tech/#tag/Customers/operation/Create%20a%20customer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paigo, diff --git a/components/pandadoc/actions/create-document-attachment/create-document-attachment.mjs b/components/pandadoc/actions/create-document-attachment/create-document-attachment.mjs index 8f643d9ab2bfb..3a2555d10574e 100644 --- a/components/pandadoc/actions/create-document-attachment/create-document-attachment.mjs +++ b/components/pandadoc/actions/create-document-attachment/create-document-attachment.mjs @@ -7,7 +7,12 @@ export default { name: "Create Document Attachment", description: "Adds an attachment to a document. [See the documentation here](https://developers.pandadoc.com/reference/create-document-attachment)", type: "action", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, documentId: { diff --git a/components/pandadoc/actions/create-document-from-file/create-document-from-file.mjs b/components/pandadoc/actions/create-document-from-file/create-document-from-file.mjs index cf9c548cd1e3e..2be4510bd0420 100644 --- a/components/pandadoc/actions/create-document-from-file/create-document-from-file.mjs +++ b/components/pandadoc/actions/create-document-from-file/create-document-from-file.mjs @@ -7,7 +7,12 @@ export default { name: "Create Document From File", description: "Create a document from a file or public file URL. [See the documentation here](https://developers.pandadoc.com/reference/create-document-from-pdf)", type: "action", - version: "1.0.1", + version: "1.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/pandadoc/actions/create-document-from-template/create-document-from-template.mjs b/components/pandadoc/actions/create-document-from-template/create-document-from-template.mjs index 308cfe733acaf..16641ae9f0433 100644 --- a/components/pandadoc/actions/create-document-from-template/create-document-from-template.mjs +++ b/components/pandadoc/actions/create-document-from-template/create-document-from-template.mjs @@ -5,7 +5,12 @@ export default { name: "Create Document From Template", description: "Create a Document from a PandaDoc Template. [See the documentation here](https://developers.pandadoc.com/reference/create-document-from-pandadoc-template)", type: "action", - version: "0.0.8", + version: "0.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/pandadoc/actions/create-folder/create-folder.mjs b/components/pandadoc/actions/create-folder/create-folder.mjs index b02c8fbe3dac3..ff96d96985bbf 100644 --- a/components/pandadoc/actions/create-folder/create-folder.mjs +++ b/components/pandadoc/actions/create-folder/create-folder.mjs @@ -5,7 +5,12 @@ export default { name: "Create Folder", description: "Create a new folder to store your documents. [See the documentation here](https://developers.pandadoc.com/reference/create-documents-folder)", type: "action", - version: "0.0.6", + version: "0.0.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/pandadoc/actions/create-or-update-contact/create-or-update-contact.mjs b/components/pandadoc/actions/create-or-update-contact/create-or-update-contact.mjs index 3447e49061723..89dc6ad6971e5 100644 --- a/components/pandadoc/actions/create-or-update-contact/create-or-update-contact.mjs +++ b/components/pandadoc/actions/create-or-update-contact/create-or-update-contact.mjs @@ -5,7 +5,12 @@ export default { name: "Create or Update Contact", description: "This method adds or updates a contact using the email as index. [See the documentation here](https://developers.pandadoc.com/reference/create-contact)", type: "action", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, email: { diff --git a/components/pandadoc/actions/document-details/document-details.mjs b/components/pandadoc/actions/document-details/document-details.mjs index 082b060c8bec7..35487aaa7d174 100644 --- a/components/pandadoc/actions/document-details/document-details.mjs +++ b/components/pandadoc/actions/document-details/document-details.mjs @@ -5,7 +5,12 @@ export default { name: "Get Document Details", description: "Return detailed data about a document. [See the documentation here](https://developers.pandadoc.com/reference/document-details)", type: "action", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, id: {