diff --git a/components/pandadoc/actions/download-document/download-document.mjs b/components/pandadoc/actions/download-document/download-document.mjs index 87de645ce0a09..13dec190ac118 100644 --- a/components/pandadoc/actions/download-document/download-document.mjs +++ b/components/pandadoc/actions/download-document/download-document.mjs @@ -7,7 +7,12 @@ export default { description: "Download a document as PDF. [See documentation here](https://developers.pandadoc.com/reference/download-document)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, id: { diff --git a/components/pandadoc/actions/download-protected-document/download-protected-document.mjs b/components/pandadoc/actions/download-protected-document/download-protected-document.mjs index f67eb0616cb94..2a679f349a211 100644 --- a/components/pandadoc/actions/download-protected-document/download-protected-document.mjs +++ b/components/pandadoc/actions/download-protected-document/download-protected-document.mjs @@ -7,7 +7,12 @@ export default { description: "Download a completed document as a verifiable PDF. [See documentation here](https://developers.pandadoc.com/reference/download-protected-document)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, id: { diff --git a/components/pandadoc/actions/get-document-status/get-document-status.mjs b/components/pandadoc/actions/get-document-status/get-document-status.mjs index 6228c26298bf2..63585744c57c3 100644 --- a/components/pandadoc/actions/get-document-status/get-document-status.mjs +++ b/components/pandadoc/actions/get-document-status/get-document-status.mjs @@ -6,7 +6,12 @@ export default { description: "Get basic status info about a document. [See documentation here](https://developers.pandadoc.com/reference/document-status)", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, id: { diff --git a/components/pandadoc/actions/list-contacts/list-contacts.mjs b/components/pandadoc/actions/list-contacts/list-contacts.mjs index ebcd60a738056..c29672f80944f 100644 --- a/components/pandadoc/actions/list-contacts/list-contacts.mjs +++ b/components/pandadoc/actions/list-contacts/list-contacts.mjs @@ -5,7 +5,12 @@ export default { name: "List Contacts", description: "List all contacts within an account. [See the documentation here](https://developers.pandadoc.com/reference/list-contacts)", type: "action", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, }, diff --git a/components/pandadoc/actions/list-document-attachments/list-document-attachments.mjs b/components/pandadoc/actions/list-document-attachments/list-document-attachments.mjs index 455281a76810a..d7370fe643e0d 100644 --- a/components/pandadoc/actions/list-document-attachments/list-document-attachments.mjs +++ b/components/pandadoc/actions/list-document-attachments/list-document-attachments.mjs @@ -5,7 +5,12 @@ export default { name: "List Document Attachments", description: "Returns a list of attachments associated with a specified document. [See the documentation here](https://developers.pandadoc.com/reference/list-attachment)", type: "action", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, documentId: { diff --git a/components/pandadoc/actions/list-documents/list-documents.mjs b/components/pandadoc/actions/list-documents/list-documents.mjs index 4462d85e7f90a..4f88d200caf53 100644 --- a/components/pandadoc/actions/list-documents/list-documents.mjs +++ b/components/pandadoc/actions/list-documents/list-documents.mjs @@ -6,7 +6,12 @@ export default { name: "List Documents", description: "List documents, optionally filtering by a search query or tags. [See the documentation here](https://developers.pandadoc.com/reference/list-documents)", type: "action", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, query: { diff --git a/components/pandadoc/actions/list-folders/list-folders.mjs b/components/pandadoc/actions/list-folders/list-folders.mjs index 3d694024bf41e..81ec4c4689e91 100644 --- a/components/pandadoc/actions/list-folders/list-folders.mjs +++ b/components/pandadoc/actions/list-folders/list-folders.mjs @@ -5,7 +5,12 @@ export default { name: "List Folders", description: "List folders which contain Documents. [See the documentation here](https://developers.pandadoc.com/reference/list-documents-folders)", type: "action", - version: "0.0.6", + version: "0.0.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, parentFolderId: { diff --git a/components/pandadoc/actions/send-document/send-document.mjs b/components/pandadoc/actions/send-document/send-document.mjs index 0931d1d224d29..e6b8c84b09558 100644 --- a/components/pandadoc/actions/send-document/send-document.mjs +++ b/components/pandadoc/actions/send-document/send-document.mjs @@ -5,7 +5,12 @@ export default { name: "Send Document", description: "Move a document to sent status and send an optional email. [See the documentation](https://developers.pandadoc.com/reference/send-document)", type: "action", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, documentId: { diff --git a/components/papersign/actions/copy-document/copy-document.mjs b/components/papersign/actions/copy-document/copy-document.mjs index 19202f76c34a5..3cbff81d754ec 100644 --- a/components/papersign/actions/copy-document/copy-document.mjs +++ b/components/papersign/actions/copy-document/copy-document.mjs @@ -4,7 +4,12 @@ export default { key: "papersign-copy-document", name: "Copy Document", description: "Duplicates a given document. [See the documentation](https://paperform.readme.io/reference/papersigncopydocument)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { papersign, diff --git a/components/papersign/actions/get-document/get-document.mjs b/components/papersign/actions/get-document/get-document.mjs index d566fdd390518..8211ccb186b79 100644 --- a/components/papersign/actions/get-document/get-document.mjs +++ b/components/papersign/actions/get-document/get-document.mjs @@ -4,7 +4,12 @@ export default { key: "papersign-get-document", name: "Get Document", description: "Retrieve a document using a specified ID. [See the documentation](https://paperform.readme.io/reference/getpapersigndocument)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { papersign, diff --git a/components/papersign/actions/send-document/send-document.mjs b/components/papersign/actions/send-document/send-document.mjs index 1847319e6a907..8c1cc26205e4c 100644 --- a/components/papersign/actions/send-document/send-document.mjs +++ b/components/papersign/actions/send-document/send-document.mjs @@ -6,7 +6,12 @@ export default { key: "papersign-send-document", name: "Send Document", description: "Dispatches a document to a specified recipient. [See the documentation](https://paperform.readme.io/reference/papersignsenddocument)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { papersign, diff --git a/components/papyrs/actions/create-heading/create-heading.mjs b/components/papyrs/actions/create-heading/create-heading.mjs index c026c27554547..4d031f83e629a 100644 --- a/components/papyrs/actions/create-heading/create-heading.mjs +++ b/components/papyrs/actions/create-heading/create-heading.mjs @@ -5,7 +5,12 @@ export default { name: "Create Heading", description: "Create Heading. [See the docs here](https://about.papyrs.com/@docs/API#Create-Text-box/Heading)", key: "papyrs-create-heading", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/papyrs/actions/create-paragraph/create-paragraph.mjs b/components/papyrs/actions/create-paragraph/create-paragraph.mjs index f2fd8b1f3b6b5..d6150f6a56991 100644 --- a/components/papyrs/actions/create-paragraph/create-paragraph.mjs +++ b/components/papyrs/actions/create-paragraph/create-paragraph.mjs @@ -5,7 +5,12 @@ export default { name: "Create Paragraph", description: "Create a new Paragraph in a page. [See the docs here](https://about.papyrs.com/@docs/API#Create-Text-box/Heading)", key: "papyrs-create-paragraph", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/papyrs/actions/update-heading/update-heading.mjs b/components/papyrs/actions/update-heading/update-heading.mjs index ee16f75f9dd91..f77852d762606 100644 --- a/components/papyrs/actions/update-heading/update-heading.mjs +++ b/components/papyrs/actions/update-heading/update-heading.mjs @@ -5,7 +5,12 @@ export default { name: "Update Heading", description: "Update Heading. [See the docs here](https://about.papyrs.com/@docs/API#Update-Text-box/Heading)", key: "papyrs-update-heading", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/papyrs/actions/update-paragraph/update-paragraph.mjs b/components/papyrs/actions/update-paragraph/update-paragraph.mjs index 1c41825bd64e2..6b2bfa465b0e7 100644 --- a/components/papyrs/actions/update-paragraph/update-paragraph.mjs +++ b/components/papyrs/actions/update-paragraph/update-paragraph.mjs @@ -5,7 +5,12 @@ export default { name: "Update Paragraph", description: "Update Paragraph. [See the docs here](https://about.papyrs.com/@docs/API#Update-Text-box/Heading)", key: "papyrs-update-paragraph", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/paradym/actions/create-didcomm-issuance-offer/create-didcomm-issuance-offer.mjs b/components/paradym/actions/create-didcomm-issuance-offer/create-didcomm-issuance-offer.mjs index 581b1c8a66537..24493155bc5be 100644 --- a/components/paradym/actions/create-didcomm-issuance-offer/create-didcomm-issuance-offer.mjs +++ b/components/paradym/actions/create-didcomm-issuance-offer/create-didcomm-issuance-offer.mjs @@ -6,7 +6,12 @@ export default { key: "paradym-create-didcomm-issuance-offer", name: "Create DIDComm Issuance Offer", description: "Create a DIDComm issuance offer for the selected credentials. [See the documentation](https://paradym.id/reference?full#tag/didcomm-issuance/post/v1/projects/{projectId}/didcomm/issuance/offer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/paradym/actions/create-openid4vc-credential-offer/create-openid4vc-credential-offer.mjs b/components/paradym/actions/create-openid4vc-credential-offer/create-openid4vc-credential-offer.mjs index 5d1248a146d60..649dc56a914f9 100644 --- a/components/paradym/actions/create-openid4vc-credential-offer/create-openid4vc-credential-offer.mjs +++ b/components/paradym/actions/create-openid4vc-credential-offer/create-openid4vc-credential-offer.mjs @@ -6,7 +6,12 @@ export default { key: "paradym-create-openid4vc-credential-offer", name: "Create OpenID4VC Credential Offer", description: "Create a OpenID4VC issuance offer for the selected credentials. [See the documentation](https://paradym.id/reference?full#tag/openid4vc-issuance/post/v1/projects/{projectId}/openid4vc/issuance/offer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", methods: { ...common.methods, diff --git a/components/paradym/actions/create-openid4vc-verification-request/create-openid4vc-verification-request.mjs b/components/paradym/actions/create-openid4vc-verification-request/create-openid4vc-verification-request.mjs index fe44f8744e27f..c8fc080c0a8d6 100644 --- a/components/paradym/actions/create-openid4vc-verification-request/create-openid4vc-verification-request.mjs +++ b/components/paradym/actions/create-openid4vc-verification-request/create-openid4vc-verification-request.mjs @@ -4,7 +4,12 @@ export default { key: "paradym-create-openid4vc-verification-request", name: "Create OpenID4VC Verification Request", description: "Initiates a verification request based on the selected template. [See the documentation](https://paradym.id/reference?full#tag/openid4vc-verification/post/v1/projects/{projectId}/openid4vc/verification/request)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/paradym/actions/get-openid4vc-verification-session/get-openid4vc-verification-session.mjs b/components/paradym/actions/get-openid4vc-verification-session/get-openid4vc-verification-session.mjs index 650e66fa06bb5..0d06854c684aa 100644 --- a/components/paradym/actions/get-openid4vc-verification-session/get-openid4vc-verification-session.mjs +++ b/components/paradym/actions/get-openid4vc-verification-session/get-openid4vc-verification-session.mjs @@ -4,7 +4,12 @@ export default { key: "paradym-get-openid4vc-verification-session", name: "Get OpenID4VC Verification Session", description: "Fetches the verification session data for the specified session ID. [See the documentation](https://paradym.id/reference?full#tag/openid4vc-verification/get/v1/projects/{projectId}/openid4vc/verification/{openId4VcVerificationId})", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/parma/actions/create-note/create-note.mjs b/components/parma/actions/create-note/create-note.mjs index 50ec799c03391..2c66b180c0c33 100644 --- a/components/parma/actions/create-note/create-note.mjs +++ b/components/parma/actions/create-note/create-note.mjs @@ -4,7 +4,12 @@ export default { key: "parma-create-note", name: "Create Note", description: "Adds a new note in Parma. [See the documentation](https://developers.parma.ai/api-docs/index.html)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { parma, diff --git a/components/parma/actions/create-relationship/create-relationship.mjs b/components/parma/actions/create-relationship/create-relationship.mjs index 06164e9c951ee..065f4ac6d1f87 100644 --- a/components/parma/actions/create-relationship/create-relationship.mjs +++ b/components/parma/actions/create-relationship/create-relationship.mjs @@ -4,7 +4,12 @@ export default { key: "parma-create-relationship", name: "Create Relationship", description: "Creates a new relationship in Parma. [See the documentation](https://developers.parma.ai/api-docs/index.html)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { parma, diff --git a/components/parma/actions/find-relationship/find-relationship.mjs b/components/parma/actions/find-relationship/find-relationship.mjs index c1a14abd677e2..7ff25777cb707 100644 --- a/components/parma/actions/find-relationship/find-relationship.mjs +++ b/components/parma/actions/find-relationship/find-relationship.mjs @@ -4,7 +4,12 @@ export default { key: "parma-find-relationship", name: "Find Relationship", description: "Searches for an existing relationship in Parma. [See the documentation](https://developers.parma.ai/api-docs/index.html)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { parma, diff --git a/components/parsehub/actions/cancel-run/cancel-run.mjs b/components/parsehub/actions/cancel-run/cancel-run.mjs index 7de5c90887059..c071510992413 100644 --- a/components/parsehub/actions/cancel-run/cancel-run.mjs +++ b/components/parsehub/actions/cancel-run/cancel-run.mjs @@ -4,7 +4,12 @@ export default { key: "parsehub-cancel-run", name: "Cancel Run", description: "Cancels a run and changes its status to cancelled. [See the documentation](https://www.parsehub.com/docs/ref/api/v2/#cancel-a-run)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/parsehub/actions/delete-run/delete-run.mjs b/components/parsehub/actions/delete-run/delete-run.mjs index 08b51eb080e60..76a5e81de69d2 100644 --- a/components/parsehub/actions/delete-run/delete-run.mjs +++ b/components/parsehub/actions/delete-run/delete-run.mjs @@ -4,7 +4,12 @@ export default { key: "parsehub-delete-run", name: "Delete Run", description: "Cancels a run if running, and deletes the run and its data. [See the documentation](https://www.parsehub.com/docs/ref/api/v2/#delete-a-run)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/parsehub/actions/get-data-run/get-data-run.mjs b/components/parsehub/actions/get-data-run/get-data-run.mjs index e2ecd3e181b76..137016ac308d9 100644 --- a/components/parsehub/actions/get-data-run/get-data-run.mjs +++ b/components/parsehub/actions/get-data-run/get-data-run.mjs @@ -4,7 +4,12 @@ export default { key: "parsehub-get-data-run", name: "Get Data for a Run", description: "Returns the data extracted by a specified run. [See the documentation](https://www.parsehub.com/docs/ref/api/v2/#get-data-for-a-run)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/parsehub/actions/get-project/get-project.mjs b/components/parsehub/actions/get-project/get-project.mjs index 1784252af1c1c..a9f5cb6a04378 100644 --- a/components/parsehub/actions/get-project/get-project.mjs +++ b/components/parsehub/actions/get-project/get-project.mjs @@ -4,7 +4,12 @@ export default { key: "parsehub-get-project", name: "Get Project Details", description: "Retrieves the details of a specified project within the user's account. [See the documentation](https://www.parsehub.com/docs/ref/api/v2/#get-a-project)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/parsehub/actions/get-projects/get-projects.mjs b/components/parsehub/actions/get-projects/get-projects.mjs index cadea9f5b9732..53c95bca852e9 100644 --- a/components/parsehub/actions/get-projects/get-projects.mjs +++ b/components/parsehub/actions/get-projects/get-projects.mjs @@ -4,7 +4,12 @@ export default { key: "parsehub-get-projects", name: "Get Projects", description: "Lists all projects in your account [See the documentation](https://www.parsehub.com/docs/ref/api/v2/#list-all-projects)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/parsehub/actions/run-project/run-project.mjs b/components/parsehub/actions/run-project/run-project.mjs index 6e78be68f88cc..bb8831de0af93 100644 --- a/components/parsehub/actions/run-project/run-project.mjs +++ b/components/parsehub/actions/run-project/run-project.mjs @@ -4,7 +4,12 @@ export default { key: "parsehub-run-project", name: "Run Parsehub Project", description: "Initiates an instance of a specified project on the Parsehub cloud. [See the documentation](https://www.parsehub.com/docs/ref/api/v2/#run-a-project)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/parsera/actions/extract/extract.mjs b/components/parsera/actions/extract/extract.mjs index 38bc26825ad6d..ca93dccc39d19 100644 --- a/components/parsera/actions/extract/extract.mjs +++ b/components/parsera/actions/extract/extract.mjs @@ -4,7 +4,12 @@ export default { key: "parsera-extract", name: "Extract", description: "Extract data from a given URL. [See the documentation](https://docs.parsera.org/api/getting-started/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/parsera/actions/parse/parse.mjs b/components/parsera/actions/parse/parse.mjs index eac4d2eebd9bd..4eddf94697167 100644 --- a/components/parsera/actions/parse/parse.mjs +++ b/components/parsera/actions/parse/parse.mjs @@ -4,7 +4,12 @@ export default { key: "parsera-parse", name: "Parse", description: "Parse data using pre-defined attributes. [See the documentation](https://docs.parsera.org/api/getting-started/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/passslot/actions/create-pass/create-pass.mjs b/components/passslot/actions/create-pass/create-pass.mjs index 09ac09c59d40e..94403e5b6e89c 100644 --- a/components/passslot/actions/create-pass/create-pass.mjs +++ b/components/passslot/actions/create-pass/create-pass.mjs @@ -5,7 +5,12 @@ export default { name: "Create Pass", description: "Creates a new pass using specified pass template. [See the documentation](https://www.passslot.com/developer/api/resources/createPassFromTemplate)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { passslot, templateId: { diff --git a/components/passslot/actions/delete-pass/delete-pass.mjs b/components/passslot/actions/delete-pass/delete-pass.mjs index 9d3d270705f6a..22f75cff42756 100644 --- a/components/passslot/actions/delete-pass/delete-pass.mjs +++ b/components/passslot/actions/delete-pass/delete-pass.mjs @@ -5,7 +5,12 @@ export default { name: "Delete Pass", description: "Deletes a specified pass from PassSlot. [See the documentation](https://www.passslot.com/developer/api/resources/deletePass)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { passslot, passTypeIdentifier: { diff --git a/components/passslot/actions/update-pass/update-pass.mjs b/components/passslot/actions/update-pass/update-pass.mjs index 3cec134850aa4..a4035b89b00f1 100644 --- a/components/passslot/actions/update-pass/update-pass.mjs +++ b/components/passslot/actions/update-pass/update-pass.mjs @@ -5,7 +5,12 @@ export default { name: "Update Pass", description: "Updates an existing pass with new information. [See the documentation](https://www.passslot.com/developer/api/resources/updatePassValues)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { passslot, passTypeIdentifier: { diff --git a/components/payhip/actions/disable-license-key/disable-license-key.mjs b/components/payhip/actions/disable-license-key/disable-license-key.mjs index 19c5021059234..059e58d2be8d3 100644 --- a/components/payhip/actions/disable-license-key/disable-license-key.mjs +++ b/components/payhip/actions/disable-license-key/disable-license-key.mjs @@ -3,7 +3,12 @@ import qs from "qs"; export default { name: "Disable License Key", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "payhip-disable-license-key", description: "Disable a license key. [See the documentation](https://help.payhip.com/article/114-software-license-keys#:~:text=Enable%20or%20Disable%20a%20License%20Key)", type: "action", diff --git a/components/payhip/actions/enable-license-key/enable-license-key.mjs b/components/payhip/actions/enable-license-key/enable-license-key.mjs index 09e46dda8c4ef..b776db1fdfbd4 100644 --- a/components/payhip/actions/enable-license-key/enable-license-key.mjs +++ b/components/payhip/actions/enable-license-key/enable-license-key.mjs @@ -3,7 +3,12 @@ import qs from "qs"; export default { name: "Enable License Key", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "payhip-enable-license-key", description: "Enable a license key. [See the documentation](https://help.payhip.com/article/114-software-license-keys#:~:text=Enable%20or%20Disable%20a%20License%20Key)", type: "action", diff --git a/components/payhip/actions/verify-license-key/verify-license-key.mjs b/components/payhip/actions/verify-license-key/verify-license-key.mjs index 64749bda44d01..aac4df2e4ef84 100644 --- a/components/payhip/actions/verify-license-key/verify-license-key.mjs +++ b/components/payhip/actions/verify-license-key/verify-license-key.mjs @@ -2,7 +2,12 @@ import app from "../../payhip.app.mjs"; export default { name: "Verify License Key", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "payhip-verify-license-key", description: "Verify a license key. [See the documentation](https://help.payhip.com/article/114-software-license-keys#:~:text=License%20Key%20Verification)", type: "action", diff --git a/components/paymo/actions/create-client/create-client.mjs b/components/paymo/actions/create-client/create-client.mjs index 0b03b79b794ee..68cd46eb13a89 100644 --- a/components/paymo/actions/create-client/create-client.mjs +++ b/components/paymo/actions/create-client/create-client.mjs @@ -5,7 +5,12 @@ export default { name: "Create Client", description: "Creates a client. [See the docs](https://github.com/paymoapp/api/blob/master/sections/clients.md#create).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/paymo/actions/create-project/create-project.mjs b/components/paymo/actions/create-project/create-project.mjs index 354512e89ce38..d8d902cfd15e9 100644 --- a/components/paymo/actions/create-project/create-project.mjs +++ b/components/paymo/actions/create-project/create-project.mjs @@ -5,7 +5,12 @@ export default { name: "Create Project", description: "Creates a project. [See the docs](https://github.com/paymoapp/api/blob/master/sections/projects.md#create).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/paymo/actions/create-task/create-task.mjs b/components/paymo/actions/create-task/create-task.mjs index 6e8b4619b1090..da1b7311f558a 100644 --- a/components/paymo/actions/create-task/create-task.mjs +++ b/components/paymo/actions/create-task/create-task.mjs @@ -5,7 +5,12 @@ export default { name: "Create Task", description: "Creates a task. [See the docs](https://github.com/paymoapp/api/blob/master/sections/tasks.md#create).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, name: { diff --git a/components/paymo/actions/find-task/find-task.mjs b/components/paymo/actions/find-task/find-task.mjs index bbe42e0b23e96..11301c64f66fe 100644 --- a/components/paymo/actions/find-task/find-task.mjs +++ b/components/paymo/actions/find-task/find-task.mjs @@ -5,7 +5,12 @@ export default { name: "Find Task", description: "Finds a task. [See the docs](https://github.com/paymoapp/api/blob/master/sections/tasks.md#list).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, name: { diff --git a/components/paypal/actions/get-user-info/get-user-info.mjs b/components/paypal/actions/get-user-info/get-user-info.mjs index ca9a88273a20b..fc7b13fd5891d 100644 --- a/components/paypal/actions/get-user-info/get-user-info.mjs +++ b/components/paypal/actions/get-user-info/get-user-info.mjs @@ -4,7 +4,12 @@ export default { key: "paypal-get-user-info", name: "Get User Info", description: "Shows user profile information. [See docs here](https://developer.paypal.com/docs/api/identity/v1)", - version: "0.2.0", + version: "0.2.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/paystack/actions/charge-authorization/charge-authorization.mjs b/components/paystack/actions/charge-authorization/charge-authorization.mjs index 0c9d61507f374..b557a76305642 100644 --- a/components/paystack/actions/charge-authorization/charge-authorization.mjs +++ b/components/paystack/actions/charge-authorization/charge-authorization.mjs @@ -4,7 +4,12 @@ export default { key: "paystack-charge-authorization", name: "Charge Authorization", description: "Charge a reusable authorization. [See the documentation](https://paystack.com/docs/api/transaction/#charge-authorization)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paystack, diff --git a/components/paystack/actions/export-transactions/export-transactions.mjs b/components/paystack/actions/export-transactions/export-transactions.mjs index 52084435992db..854043d915f6c 100644 --- a/components/paystack/actions/export-transactions/export-transactions.mjs +++ b/components/paystack/actions/export-transactions/export-transactions.mjs @@ -4,7 +4,12 @@ export default { key: "paystack-export-transactions", name: "Export Transactions", description: "Export transactions from Paystack. See the documentation (https://paystack.com/docs/api/transaction/#export)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paystack, diff --git a/components/paystack/actions/fetch-transaction/fetch-transaction.mjs b/components/paystack/actions/fetch-transaction/fetch-transaction.mjs index d1f01638f660a..9f787c909376a 100644 --- a/components/paystack/actions/fetch-transaction/fetch-transaction.mjs +++ b/components/paystack/actions/fetch-transaction/fetch-transaction.mjs @@ -4,7 +4,12 @@ export default { key: "paystack-fetch-transaction", name: "Fetch Transaction", description: "Fetch a single transaction. [See the documentation](https://paystack.com/docs/api/transaction/#fetch)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { paystack, diff --git a/components/paystack/actions/initialize-transaction/initialize-transaction.mjs b/components/paystack/actions/initialize-transaction/initialize-transaction.mjs index 3830509e46601..ae642ae15a9f1 100644 --- a/components/paystack/actions/initialize-transaction/initialize-transaction.mjs +++ b/components/paystack/actions/initialize-transaction/initialize-transaction.mjs @@ -4,7 +4,12 @@ export default { key: "paystack-initialize-transaction", name: "Initialize Transaction", description: "Initializes a new transaction on Paystack. [See the documentation](https://paystack.com/docs/api/transaction/#initialize)", - version: "0.1.2", + version: "0.1.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paystack, diff --git a/components/paystack/actions/list-transactions/list-transactions.mjs b/components/paystack/actions/list-transactions/list-transactions.mjs index ad5091e451877..eb608fb916bd5 100644 --- a/components/paystack/actions/list-transactions/list-transactions.mjs +++ b/components/paystack/actions/list-transactions/list-transactions.mjs @@ -4,7 +4,12 @@ export default { key: "paystack-list-transactions", name: "List Transactions", description: "List transactions carried out on your integration. [See the documentation](https://paystack.com/docs/api/transaction/#list)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { paystack, diff --git a/components/paystack/actions/verify-transaction/verify-transaction.mjs b/components/paystack/actions/verify-transaction/verify-transaction.mjs index 3a486480c6b53..e6660ad92846e 100644 --- a/components/paystack/actions/verify-transaction/verify-transaction.mjs +++ b/components/paystack/actions/verify-transaction/verify-transaction.mjs @@ -4,7 +4,12 @@ export default { key: "paystack-verify-transaction", name: "Verify Transaction", description: "Confirm the status of a transaction. [See the documentation](https://paystack.com/docs/api/transaction/#verify)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { paystack, diff --git a/components/paytrace/actions/batch-summary/batch-summary.mjs b/components/paytrace/actions/batch-summary/batch-summary.mjs index 7d4755a85ff5d..f1be4d566c062 100644 --- a/components/paytrace/actions/batch-summary/batch-summary.mjs +++ b/components/paytrace/actions/batch-summary/batch-summary.mjs @@ -4,7 +4,12 @@ export default { name: "Batch Summary", description: "This method can be used to export a summary of specific batch details or currently pending settlement details by card and transaction type. If no optional parameter is provided, the latest batch details will be returned. [See docs here](https://developers.paytrace.com/support/home#14000045456)", key: "paytrace-batch-summary", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paytrace, diff --git a/components/paytrace/actions/list-batch-transactions/list-batch-transactions.mjs b/components/paytrace/actions/list-batch-transactions/list-batch-transactions.mjs index bb3e1af5b3670..5955f26e646ff 100644 --- a/components/paytrace/actions/list-batch-transactions/list-batch-transactions.mjs +++ b/components/paytrace/actions/list-batch-transactions/list-batch-transactions.mjs @@ -4,7 +4,12 @@ export default { name: "List Batch Transactions", description: "This method can be used to export settled transaction details within a specific batch. This method will return one or more transaction records. [See docs here](https://developers.paytrace.com/support/home#14000045558)", key: "paytrace-list-batch-transactions", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { paytrace, diff --git a/components/paytrace/actions/list-batches/list-batches.mjs b/components/paytrace/actions/list-batches/list-batches.mjs index 394bf5818adc6..7d7809f918524 100644 --- a/components/paytrace/actions/list-batches/list-batches.mjs +++ b/components/paytrace/actions/list-batches/list-batches.mjs @@ -4,7 +4,12 @@ export default { name: "List Batches by Date Range", description: "This method can be used to export a set of batch summary details with a provided date range. This method will return one or more batch summary records. [See docs here](https://developers.paytrace.com/support/home#14000045545)", key: "paytrace-list-batches", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paytrace, diff --git a/components/paytrace/actions/list-transactions/list-transactions.mjs b/components/paytrace/actions/list-transactions/list-transactions.mjs index 5b8166b557cea..613678f82db8a 100644 --- a/components/paytrace/actions/list-transactions/list-transactions.mjs +++ b/components/paytrace/actions/list-transactions/list-transactions.mjs @@ -5,7 +5,12 @@ export default { name: "List Transactions", description: "This method can be used to export a set of credit card transaction details with a provided date range. You can optimize your search by providing optional parameters. [See docs here](https://developers.paytrace.com/support/home#14000045877)", key: "paytrace-list-transactions", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { paytrace, diff --git a/components/pcloud/actions/copy-file/copy-file.mjs b/components/pcloud/actions/copy-file/copy-file.mjs index 97017df3cd70f..8f73e55ea5183 100644 --- a/components/pcloud/actions/copy-file/copy-file.mjs +++ b/components/pcloud/actions/copy-file/copy-file.mjs @@ -7,7 +7,12 @@ export default { name: "Copy File", description: "Copy a file to the specified destination. [See the docs here](https://docs.pcloud.com/methods/file/copyfile.html)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/copy-folder/copy-folder.mjs b/components/pcloud/actions/copy-folder/copy-folder.mjs index e301f22892d81..60f6ae577f689 100644 --- a/components/pcloud/actions/copy-folder/copy-folder.mjs +++ b/components/pcloud/actions/copy-folder/copy-folder.mjs @@ -6,7 +6,12 @@ export default { key: "pcloud-copy-folder", name: "Copy Folder", description: "Copy a folder to the specified folder. [See the docs here](https://docs.pcloud.com/methods/folder/copyfolder.html)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/create-folder/create-folder.mjs b/components/pcloud/actions/create-folder/create-folder.mjs index 7b989544d1ce4..b385b9db38d85 100644 --- a/components/pcloud/actions/create-folder/create-folder.mjs +++ b/components/pcloud/actions/create-folder/create-folder.mjs @@ -7,7 +7,12 @@ export default { name: "Create Folder", description: "Create a folder in the specified folder. [See the docs here](https://docs.pcloud.com/methods/folder/createfolder.html)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/download-files/download-files.mjs b/components/pcloud/actions/download-files/download-files.mjs index ec0d136916a5a..a24b2de69e0ff 100644 --- a/components/pcloud/actions/download-files/download-files.mjs +++ b/components/pcloud/actions/download-files/download-files.mjs @@ -6,7 +6,12 @@ export default { key: "pcloud-download-files", name: "Download File(s)", description: "Download one or more files to a folder. [See the docs here](https://docs.pcloud.com/methods/file/downloadfile.html)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/list-contents/list-contents.mjs b/components/pcloud/actions/list-contents/list-contents.mjs index 61a470cd6446d..2af0944daf83c 100644 --- a/components/pcloud/actions/list-contents/list-contents.mjs +++ b/components/pcloud/actions/list-contents/list-contents.mjs @@ -6,7 +6,12 @@ export default { key: "pcloud-list-contents", name: "List Contents", description: "Get the contents of the specified folder. [See the docs here](https://docs.pcloud.com/methods/folder/listfolder.html)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/move-file/move-file.mjs b/components/pcloud/actions/move-file/move-file.mjs index 4d96e0cd16cc6..280c9e377f270 100644 --- a/components/pcloud/actions/move-file/move-file.mjs +++ b/components/pcloud/actions/move-file/move-file.mjs @@ -6,7 +6,12 @@ export default { key: "pcloud-move-file", name: "Move File", description: "Moves a file to the specified destination. [See the docs here](https://docs.pcloud.com/methods/file/renamefile.html)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/move-folder/move-folder.mjs b/components/pcloud/actions/move-folder/move-folder.mjs index 715a8f9eaff72..1f426d674a9a6 100644 --- a/components/pcloud/actions/move-folder/move-folder.mjs +++ b/components/pcloud/actions/move-folder/move-folder.mjs @@ -6,7 +6,12 @@ export default { key: "pcloud-move-folder", name: "Move Folder", description: "Moves a folder to the specified destination. [See the docs here](https://docs.pcloud.com/methods/folder/renamefolder.html)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/rename-file/rename-file.mjs b/components/pcloud/actions/rename-file/rename-file.mjs index 4bd7fdfde701c..e9bf69d76bd51 100644 --- a/components/pcloud/actions/rename-file/rename-file.mjs +++ b/components/pcloud/actions/rename-file/rename-file.mjs @@ -6,7 +6,12 @@ export default { key: "pcloud-rename-file", name: "Rename File", description: "Renames a file. [See the docs here](https://docs.pcloud.com/methods/file/renamefile.html)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/rename-folder/rename-folder.mjs b/components/pcloud/actions/rename-folder/rename-folder.mjs index 6770dd87898b4..0b5b95d8a0b33 100644 --- a/components/pcloud/actions/rename-folder/rename-folder.mjs +++ b/components/pcloud/actions/rename-folder/rename-folder.mjs @@ -6,7 +6,12 @@ export default { key: "pcloud-rename-folder", name: "Rename Folder", description: "Renames a folder. [See the docs here](https://docs.pcloud.com/methods/folder/renamefolder.html)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pcloud/actions/upload-file/upload-file.mjs b/components/pcloud/actions/upload-file/upload-file.mjs index f98a0ed766307..6ed0aea77530a 100644 --- a/components/pcloud/actions/upload-file/upload-file.mjs +++ b/components/pcloud/actions/upload-file/upload-file.mjs @@ -8,7 +8,12 @@ export default { name: "Upload File", description: "Upload a file to the specified folder. [See the docs here](https://docs.pcloud.com/methods/file/uploadfile.html)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pdf4me/actions/compress-pdf/compress-pdf.mjs b/components/pdf4me/actions/compress-pdf/compress-pdf.mjs index c1c44b9ca22c7..ac1ecfb6172e9 100644 --- a/components/pdf4me/actions/compress-pdf/compress-pdf.mjs +++ b/components/pdf4me/actions/compress-pdf/compress-pdf.mjs @@ -5,7 +5,12 @@ export default { key: "pdf4me-compress-pdf", name: "Compress PDF", description: "Compress a PDF file to reduce its size. [See the documentation](https://dev.pdf4me.com/apiv2/documentation/actions/compress-pdf/)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdf4me, diff --git a/components/pdf4me/actions/convert-to-pdf/convert-to-pdf.mjs b/components/pdf4me/actions/convert-to-pdf/convert-to-pdf.mjs index 98c9b6e508ba1..975b9b361c88e 100644 --- a/components/pdf4me/actions/convert-to-pdf/convert-to-pdf.mjs +++ b/components/pdf4me/actions/convert-to-pdf/convert-to-pdf.mjs @@ -5,7 +5,12 @@ export default { key: "pdf4me-convert-to-pdf", name: "Convert to PDF", description: "Convert a document (e.g., DOCX, XLSX, PPTX) to PDF. [See the documentation](https://dev.pdf4me.com/apiv2/documentation/actions/convert-to-pdf/)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { pdf4me, diff --git a/components/pdf4me/actions/merge-pdfs/merge-pdfs.mjs b/components/pdf4me/actions/merge-pdfs/merge-pdfs.mjs index f2e9f51f3481b..10e24a8b386cb 100644 --- a/components/pdf4me/actions/merge-pdfs/merge-pdfs.mjs +++ b/components/pdf4me/actions/merge-pdfs/merge-pdfs.mjs @@ -5,7 +5,12 @@ export default { key: "pdf4me-merge-pdfs", name: "Merge PDF Files", description: "Merge multiple PDF files into a single PDF. [See the documentation](https://dev.pdf4me.com/apiv2/documentation/actions/merge/)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdf4me, diff --git a/components/pdf_app_net/actions/compress-pdf/compress-pdf.mjs b/components/pdf_app_net/actions/compress-pdf/compress-pdf.mjs index 6b129f6511fba..1dce6a7daebb0 100644 --- a/components/pdf_app_net/actions/compress-pdf/compress-pdf.mjs +++ b/components/pdf_app_net/actions/compress-pdf/compress-pdf.mjs @@ -4,7 +4,12 @@ export default { key: "pdf_app_net-compress-pdf", name: "Compress PDF", description: "Compress a PDF File with PDF-app.net. [See the documentation](https://pdf-app.net/apidocumentation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdfApp, diff --git a/components/pdf_app_net/actions/image-to-pdf/image-to-pdf.mjs b/components/pdf_app_net/actions/image-to-pdf/image-to-pdf.mjs index 6dc818dea2371..56667791d55a4 100644 --- a/components/pdf_app_net/actions/image-to-pdf/image-to-pdf.mjs +++ b/components/pdf_app_net/actions/image-to-pdf/image-to-pdf.mjs @@ -4,7 +4,12 @@ export default { key: "pdf_app_net-image-to-pdf", name: "Image to PDF", description: "Convert an image from a URL to a PDF File with PDF-app.net. [See the documentation](https://pdf-app.net/apidocumentation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { pdfApp, diff --git a/components/pdf_app_net/actions/split-pdf/split-pdf.mjs b/components/pdf_app_net/actions/split-pdf/split-pdf.mjs index 765f73f8bb154..97c4222f0e528 100644 --- a/components/pdf_app_net/actions/split-pdf/split-pdf.mjs +++ b/components/pdf_app_net/actions/split-pdf/split-pdf.mjs @@ -4,7 +4,12 @@ export default { key: "pdf_app_net-split-pdf", name: "Split PDF", description: "Split a PDF into multiple PDFs containing the specified number of pages. [See the documentation](https://pdf-app.net/apidocumentation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdfApp, diff --git a/components/pdf_charts/actions/create-pdf/create-pdf.mjs b/components/pdf_charts/actions/create-pdf/create-pdf.mjs index 8fd28231c3e0d..feef42446ec40 100644 --- a/components/pdf_charts/actions/create-pdf/create-pdf.mjs +++ b/components/pdf_charts/actions/create-pdf/create-pdf.mjs @@ -4,7 +4,12 @@ export default { key: "pdf_charts-create-pdf", name: "Create PDF", description: "Create a PDF document using PDF Charts. [See the documentation](https://www.pdf-charts.com/playground)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdfCharts, diff --git a/components/pdf_co/actions/anything-to-pdf-converter/anything-to-pdf-converter.mjs b/components/pdf_co/actions/anything-to-pdf-converter/anything-to-pdf-converter.mjs index 7ea7914574656..ef06c7735d78c 100644 --- a/components/pdf_co/actions/anything-to-pdf-converter/anything-to-pdf-converter.mjs +++ b/components/pdf_co/actions/anything-to-pdf-converter/anything-to-pdf-converter.mjs @@ -5,7 +5,12 @@ export default { name: "Anything to PDF Converter", description: "Convert CSV, XLS, XLSX, DOC, DOCX, RTF, TXT, XPS, JPG, PNG, TIFF, URL, EMAIL to PDF. [See docs here](https://apidocs.pdf.co/22-pdf-from-csv-csv-to-pdf)", key: "pdf_co-anything-to-pdf-converter", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/barcode-generator/barcode-generator.mjs b/components/pdf_co/actions/barcode-generator/barcode-generator.mjs index a4cd770c80539..fc048226e9130 100644 --- a/components/pdf_co/actions/barcode-generator/barcode-generator.mjs +++ b/components/pdf_co/actions/barcode-generator/barcode-generator.mjs @@ -5,7 +5,12 @@ export default { name: "Barcode Generator", description: "Generate high quality barcode images. Supports QR Code, DataMatrix, Code 39, Code 128, PDF417 and many other barcode types. [See docs here](https://apidocs.pdf.co/40-barcode-generator)", key: "pdf_co-barcode-generator", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/barcode-reader/barcode-reader.mjs b/components/pdf_co/actions/barcode-reader/barcode-reader.mjs index 31269f2724d9b..dff9f7a37e884 100644 --- a/components/pdf_co/actions/barcode-reader/barcode-reader.mjs +++ b/components/pdf_co/actions/barcode-reader/barcode-reader.mjs @@ -5,7 +5,12 @@ export default { name: "Barcode Reader", description: "Read barcodes from images and PDF. Can read all popular barcode types from QR Code and Code 128, EAN to DataMatrix, PDF417, GS1 and many other barcodes. [See docs here](https://apidocs.pdf.co/41-barcode-reader)", key: "pdf_co-barcode-reader", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/custom-api-call/custom-api-call.mjs b/components/pdf_co/actions/custom-api-call/custom-api-call.mjs index 88757809e6abe..83c938570d888 100644 --- a/components/pdf_co/actions/custom-api-call/custom-api-call.mjs +++ b/components/pdf_co/actions/custom-api-call/custom-api-call.mjs @@ -5,7 +5,12 @@ export default { name: "Custom API Call", description: "Custom API Call. [See docs here](https://apidocs.pdf.co/)", key: "pdf_co-custom-api-call", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/document-classifier/document-classifier.mjs b/components/pdf_co/actions/document-classifier/document-classifier.mjs index ef2c3cd3d6643..a265cbde7ddaf 100644 --- a/components/pdf_co/actions/document-classifier/document-classifier.mjs +++ b/components/pdf_co/actions/document-classifier/document-classifier.mjs @@ -4,7 +4,12 @@ export default { name: "Document Classifier", description: "Auto classification of incoming documents. [See docs here](https://apidocs.pdf.co/01-1-document-classifier)", key: "pdf_co-document-classifier", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/document-parser/document-parser.mjs b/components/pdf_co/actions/document-parser/document-parser.mjs index a32d2e197062f..98c02e766c3f8 100644 --- a/components/pdf_co/actions/document-parser/document-parser.mjs +++ b/components/pdf_co/actions/document-parser/document-parser.mjs @@ -5,7 +5,12 @@ export default { name: "Document Parser", description: "Document Parser can automatically parse PDF, JPG, PNG document to extract fields, tables, values, barcodes from invoices, statements, orders and other PDF and scanned documents. [See docs here](https://apidocs.pdf.co/01-document-parser)", key: "pdf_co-document-parser", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/document-toggle-searchable/document-toggle-searchable.mjs b/components/pdf_co/actions/document-toggle-searchable/document-toggle-searchable.mjs index 0601bd5058960..3c21fd867a496 100644 --- a/components/pdf_co/actions/document-toggle-searchable/document-toggle-searchable.mjs +++ b/components/pdf_co/actions/document-toggle-searchable/document-toggle-searchable.mjs @@ -4,7 +4,12 @@ export default { name: "Document Toggle Searchable", description: "Turn PDF and scanned JPG, PNG images into text-searchable PDF or text-unsearchable. [See docs here](https://apidocs.pdf.co/11-pdf-make-text-searchable-or-unsearchable)", key: "pdf_co-document-toggle-searchable", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/html-to-pdf-converter/html-to-pdf-converter.mjs b/components/pdf_co/actions/html-to-pdf-converter/html-to-pdf-converter.mjs index ee3a7e42df032..be3282029e532 100644 --- a/components/pdf_co/actions/html-to-pdf-converter/html-to-pdf-converter.mjs +++ b/components/pdf_co/actions/html-to-pdf-converter/html-to-pdf-converter.mjs @@ -5,7 +5,12 @@ export default { name: "HTML to PDF Converter", description: "Convert HTML code snippet into full featured PDF. [See docs here](https://apidocs.pdf.co/25-pdf-from-html-html-to-pdf)", key: "pdf_co-html-to-pdf-converter", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-add-security/pdf-add-security.mjs b/components/pdf_co/actions/pdf-add-security/pdf-add-security.mjs index aa215de950789..89dd2dc534fd3 100644 --- a/components/pdf_co/actions/pdf-add-security/pdf-add-security.mjs +++ b/components/pdf_co/actions/pdf-add-security/pdf-add-security.mjs @@ -5,7 +5,12 @@ export default { name: "Add PDF security", description: "Add PDF security. [See docs here](https://apidocs.pdf.co/32-pdf-password-and-security)", key: "pdf_co-pdf-add-security", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-find-table/pdf-find-table.mjs b/components/pdf_co/actions/pdf-find-table/pdf-find-table.mjs index 3ea03c1c2e627..d371ec3ef0940 100644 --- a/components/pdf_co/actions/pdf-find-table/pdf-find-table.mjs +++ b/components/pdf_co/actions/pdf-find-table/pdf-find-table.mjs @@ -4,7 +4,12 @@ export default { name: "PDF Find Table", description: "AI powered document analysis can scan your document for tables and return the array of tables on pages with coordinates and information about columns detected in these tables. [See docs here](https://apidocs.pdf.co/07-1-pdf-find-table)", key: "pdf_co-pdf-find-table", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-info-reader/pdf-info-reader.mjs b/components/pdf_co/actions/pdf-info-reader/pdf-info-reader.mjs index 949f859d3a2e5..c8fc589dfd634 100644 --- a/components/pdf_co/actions/pdf-info-reader/pdf-info-reader.mjs +++ b/components/pdf_co/actions/pdf-info-reader/pdf-info-reader.mjs @@ -4,7 +4,12 @@ export default { name: "PDF Info Reader", description: "Get detailed information about the PDF document, properties and security permissions. [See docs here](https://apidocs.pdf.co/02-pdf-info-reader)", key: "pdf_co-pdf-info-reader", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-merge/pdf-merge.mjs b/components/pdf_co/actions/pdf-merge/pdf-merge.mjs index cf9d49b9ba3a0..f12e71693766f 100644 --- a/components/pdf_co/actions/pdf-merge/pdf-merge.mjs +++ b/components/pdf_co/actions/pdf-merge/pdf-merge.mjs @@ -5,7 +5,12 @@ export default { name: "PDF Merge", description: "Merge PDF from two or more PDF files into a new one. [See docs here](https://apidocs.pdf.co/31-pdf-merge)", key: "pdf_co-pdf-merge", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-remove-security/pdf-remove-security.mjs b/components/pdf_co/actions/pdf-remove-security/pdf-remove-security.mjs index 1e43b3f2dff85..2a9b3c58be150 100644 --- a/components/pdf_co/actions/pdf-remove-security/pdf-remove-security.mjs +++ b/components/pdf_co/actions/pdf-remove-security/pdf-remove-security.mjs @@ -4,7 +4,12 @@ export default { name: "Remove PDF security", description: "Remove PDF security. [See docs here](https://apidocs.pdf.co/32-pdf-password-and-security)", key: "pdf_co-pdf-remove-security", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-search-text/pdf-search-text.mjs b/components/pdf_co/actions/pdf-search-text/pdf-search-text.mjs index 556acb2e7ac72..cec4c5c25bb24 100644 --- a/components/pdf_co/actions/pdf-search-text/pdf-search-text.mjs +++ b/components/pdf_co/actions/pdf-search-text/pdf-search-text.mjs @@ -4,7 +4,12 @@ export default { name: "Search Text in PDF", description: "Search text in PDF and get coordinates. Supports regular expressions. [See docs here](https://apidocs.pdf.co/07-pdf-search-text)", key: "pdf_co-pdf-search-text", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-split-by-pages/pdf-split-by-pages.mjs b/components/pdf_co/actions/pdf-split-by-pages/pdf-split-by-pages.mjs index e2ac50d79deff..d3fb82b243e02 100644 --- a/components/pdf_co/actions/pdf-split-by-pages/pdf-split-by-pages.mjs +++ b/components/pdf_co/actions/pdf-split-by-pages/pdf-split-by-pages.mjs @@ -4,7 +4,12 @@ export default { name: "PDF Split by Page Index", description: "Split PDF by page index. [See docs here](https://apidocs.pdf.co/30-pdf-split)", key: "pdf_co-pdf-split-by-pages", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-split-by-text-search/pdf-split-by-text-search.mjs b/components/pdf_co/actions/pdf-split-by-text-search/pdf-split-by-text-search.mjs index b49b8aee2bf62..14c1281ef6a55 100644 --- a/components/pdf_co/actions/pdf-split-by-text-search/pdf-split-by-text-search.mjs +++ b/components/pdf_co/actions/pdf-split-by-text-search/pdf-split-by-text-search.mjs @@ -4,7 +4,12 @@ export default { name: "PDF Split Text Search", description: "Split PDF by text search. [See docs here](https://apidocs.pdf.co/30-pdf-split)", key: "pdf_co-pdf-split-by-text-search", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdf_co/actions/pdf-to-anything-converter/pdf-to-anything-converter.mjs b/components/pdf_co/actions/pdf-to-anything-converter/pdf-to-anything-converter.mjs index 7edbc7f2ee836..021d0871c2603 100644 --- a/components/pdf_co/actions/pdf-to-anything-converter/pdf-to-anything-converter.mjs +++ b/components/pdf_co/actions/pdf-to-anything-converter/pdf-to-anything-converter.mjs @@ -5,7 +5,12 @@ export default { name: "PDF to Anything Converter", description: "Convert PDF to CSV, JSON, Text, XLS, XLSX [See docs here](https://apidocs.pdf.co/12-pdf-to-csv)", key: "pdf_co-pdf-to-anything-converter", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/pdffiller/actions/create-distributable-form-generate-link/create-distributable-form-generate-link.mjs b/components/pdffiller/actions/create-distributable-form-generate-link/create-distributable-form-generate-link.mjs index 1a1ee13b52228..9099f61016fac 100644 --- a/components/pdffiller/actions/create-distributable-form-generate-link/create-distributable-form-generate-link.mjs +++ b/components/pdffiller/actions/create-distributable-form-generate-link/create-distributable-form-generate-link.mjs @@ -8,7 +8,12 @@ export default { key: "pdffiller-create-distributable-form-generate-link", name: "Create Distributable Form and Generate Link", description: "Transforms a document into a fillable form and generates a shareable link for the form. [See the documentation](https://docs.pdffiller.com/docs/pdffiller/9d3a06696db96-create-fillable-document-converts-a-downloaded-document-to-a-link-to-fill-form)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdffiller, diff --git a/components/pdffiller/actions/find-document/find-document.mjs b/components/pdffiller/actions/find-document/find-document.mjs index 388ac03c310ec..e2c5649292ced 100644 --- a/components/pdffiller/actions/find-document/find-document.mjs +++ b/components/pdffiller/actions/find-document/find-document.mjs @@ -4,7 +4,12 @@ export default { key: "pdffiller-find-document", name: "Find Document", description: "Enables searching capabilities for documents by name. [See the documentation](https://pdffiller.readme.io/reference/get_v2-templates)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdffiller, diff --git a/components/pdffiller/actions/upload-document/upload-document.mjs b/components/pdffiller/actions/upload-document/upload-document.mjs index abd458337c291..7239d641a62f2 100644 --- a/components/pdffiller/actions/upload-document/upload-document.mjs +++ b/components/pdffiller/actions/upload-document/upload-document.mjs @@ -6,7 +6,12 @@ export default { key: "pdffiller-upload-document", name: "Upload Document", description: "Uploads a chosen file to PDFfiller. [See the documentation](https://docs.pdffiller.com/docs/pdffiller/992d9d79fec32-creates-a-new-document-template-by-uploading-file-from-multipart)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdffiller, diff --git a/components/pdfless/actions/generate-pdf/generate-pdf.mjs b/components/pdfless/actions/generate-pdf/generate-pdf.mjs index 998e195f832bb..ecdc799ce9fea 100644 --- a/components/pdfless/actions/generate-pdf/generate-pdf.mjs +++ b/components/pdfless/actions/generate-pdf/generate-pdf.mjs @@ -2,7 +2,12 @@ import app from "../../pdfless.app.mjs"; export default { name: "Create a PDF document", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "pdfless-generate-pdf", description: "Create a PDF document based on selected template identifier and defined payload. [See the documentation](https://github.com/Pdfless/pdfless-js)", type: "action", diff --git a/components/pdfmonkey/actions/delete-document/delete-document.mjs b/components/pdfmonkey/actions/delete-document/delete-document.mjs index 413d3b55f2ad1..1f2ddd74cdac9 100644 --- a/components/pdfmonkey/actions/delete-document/delete-document.mjs +++ b/components/pdfmonkey/actions/delete-document/delete-document.mjs @@ -4,7 +4,12 @@ export default { key: "pdfmonkey-delete-document", name: "Delete Document", description: "Deletes a specific document using its ID. [See the documentation](https://docs.pdfmonkey.io/references/api/documents)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdfmonkey, diff --git a/components/pdfmonkey/actions/find-document/find-document.mjs b/components/pdfmonkey/actions/find-document/find-document.mjs index 7034927aaaea2..f2739cfd6b82a 100644 --- a/components/pdfmonkey/actions/find-document/find-document.mjs +++ b/components/pdfmonkey/actions/find-document/find-document.mjs @@ -4,7 +4,12 @@ export default { key: "pdfmonkey-find-document", name: "Find Document", description: "Find a document within PDFMonkey. [See the documentation](https://docs.pdfmonkey.io/references/api/documents)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { pdfmonkey, diff --git a/components/pdfmonkey/actions/generate-document/generate-document.mjs b/components/pdfmonkey/actions/generate-document/generate-document.mjs index d4a17729926f6..b7fdb2c79d243 100644 --- a/components/pdfmonkey/actions/generate-document/generate-document.mjs +++ b/components/pdfmonkey/actions/generate-document/generate-document.mjs @@ -5,7 +5,12 @@ export default { key: "pdfmonkey-generate-document", name: "Generate Document", description: "Generates a new document using a specified template. [See the documentation](https://docs.pdfmonkey.io/references/api/documents)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { pdfmonkey, diff --git a/components/pdforge/actions/generate-pdf-from-html/generate-pdf-from-html.mjs b/components/pdforge/actions/generate-pdf-from-html/generate-pdf-from-html.mjs index a233c4efc63a3..cb4951fcb0bbe 100644 --- a/components/pdforge/actions/generate-pdf-from-html/generate-pdf-from-html.mjs +++ b/components/pdforge/actions/generate-pdf-from-html/generate-pdf-from-html.mjs @@ -6,7 +6,12 @@ export default { key: "pdforge-generate-pdf-from-html", name: "Generate PDF from HTML", description: "Generate a PDF document from HTML content. [See the documentation](https://docs.pdforge.com/html-to-pdf-conversion/synchronous-request)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/pdforge/actions/generate-pdf-from-template/generate-pdf-from-template.mjs b/components/pdforge/actions/generate-pdf-from-template/generate-pdf-from-template.mjs index b11f68c4e831d..46681d1743c50 100644 --- a/components/pdforge/actions/generate-pdf-from-template/generate-pdf-from-template.mjs +++ b/components/pdforge/actions/generate-pdf-from-template/generate-pdf-from-template.mjs @@ -6,7 +6,12 @@ export default { key: "pdforge-generate-pdf-from-template", name: "Generate PDF from Template", description: "Generate a document from a selected template. [See the documentation](https://docs.pdforge.com/pdfs-from-templates/synchronous-request)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/peach/actions/create-contact/create-contact.mjs b/components/peach/actions/create-contact/create-contact.mjs index eee0da3abb1aa..5e1421f8a6a1d 100644 --- a/components/peach/actions/create-contact/create-contact.mjs +++ b/components/peach/actions/create-contact/create-contact.mjs @@ -5,7 +5,12 @@ export default { key: "peach-create-contact", name: "Create Contact", description: "Creates a contact in your account. [See the documentation](https://peach.apidocumentation.com/reference#tag/contacts/post/subscribers)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { peach, diff --git a/components/peach/actions/send-template-message/send-template-message.mjs b/components/peach/actions/send-template-message/send-template-message.mjs index b7f4ec0dbd664..ad9dea0637e68 100644 --- a/components/peach/actions/send-template-message/send-template-message.mjs +++ b/components/peach/actions/send-template-message/send-template-message.mjs @@ -5,7 +5,12 @@ export default { key: "peach-send-template-message", name: "Send Template Message", description: "Send a predefined message to a contact within the Peach app. [See the documentation](https://peach.apidocumentation.com/reference#tag/messaging/post/transactional_messages)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { peach, diff --git a/components/peaka/actions/run-query/run-query.mjs b/components/peaka/actions/run-query/run-query.mjs index 7460e43ae1dce..6d17222ecdee4 100644 --- a/components/peaka/actions/run-query/run-query.mjs +++ b/components/peaka/actions/run-query/run-query.mjs @@ -5,7 +5,12 @@ export default { key: "peaka-run-query", name: "Run Query", description: "Runs a specific query in Peaka and returns the result as line items. [See the documentation](https://docs.peaka.com/api-reference/data-%3E-query/execute-a-query).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/peaka/actions/search-query/search-query.mjs b/components/peaka/actions/search-query/search-query.mjs index a9bf3cc1bc264..9880acdd2cdf2 100644 --- a/components/peaka/actions/search-query/search-query.mjs +++ b/components/peaka/actions/search-query/search-query.mjs @@ -4,7 +4,12 @@ export default { key: "peaka-search-query", name: "Search Query", description: "Performs a search for a specific query in Peaka and returns the matches as rows. [See the documentation](https://docs.peaka.com/api-reference/data-%3E-query/list-queries).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/peerdom/actions/assign-member-to-role/assign-member-to-role.mjs b/components/peerdom/actions/assign-member-to-role/assign-member-to-role.mjs index c90374a89697c..db7e70e6408ab 100644 --- a/components/peerdom/actions/assign-member-to-role/assign-member-to-role.mjs +++ b/components/peerdom/actions/assign-member-to-role/assign-member-to-role.mjs @@ -4,7 +4,12 @@ export default { key: "peerdom-assign-member-to-role", name: "Assign Member to Role", description: "Assigns a member to a role within a circle using the Peerdom API. [See the documentation](https://api.peerdom.org/v1/docs)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { peerdom, diff --git a/components/peerdom/actions/create-role/create-role.mjs b/components/peerdom/actions/create-role/create-role.mjs index 52d8fb522aaa9..9108219ecff43 100644 --- a/components/peerdom/actions/create-role/create-role.mjs +++ b/components/peerdom/actions/create-role/create-role.mjs @@ -6,7 +6,12 @@ export default { key: "peerdom-create-role", name: "Create Role", description: "Create a new role within a specified circle. [See the documentation](https://api.peerdom.org/v1/docs)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { peerdom,