diff --git a/components/ispring_learn/actions/enroll-users-in-courses/enroll-users-in-courses.mjs b/components/ispring_learn/actions/enroll-users-in-courses/enroll-users-in-courses.mjs index 0e7c2cd6f0ed8..7dc9f89ed01f0 100644 --- a/components/ispring_learn/actions/enroll-users-in-courses/enroll-users-in-courses.mjs +++ b/components/ispring_learn/actions/enroll-users-in-courses/enroll-users-in-courses.mjs @@ -5,7 +5,12 @@ export default { key: "ispring_learn-enroll-users-in-courses", name: "Enroll Users in Courses", description: "Enrolls users to the specified courses on iSpring Learn.", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ispringLearn, diff --git a/components/ispring_learn/actions/list-enrollments/list-enrollments.mjs b/components/ispring_learn/actions/list-enrollments/list-enrollments.mjs index 017d79f7bf32b..9190d0d43b87a 100644 --- a/components/ispring_learn/actions/list-enrollments/list-enrollments.mjs +++ b/components/ispring_learn/actions/list-enrollments/list-enrollments.mjs @@ -5,7 +5,12 @@ export default { key: "ispring_learn-list-enrollments", name: "List Enrollments", description: "Fetches the list of user enrollments on iSpring Learn. [See the documentation](https://ispringhelpdocs.com/ispring-learn/getting-a-list-of-enrollments-17304245.html)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ispringLearn, diff --git a/components/ispring_learn/actions/update-user/update-user.mjs b/components/ispring_learn/actions/update-user/update-user.mjs index 163a773331eb9..5ad1ae55ad89a 100644 --- a/components/ispring_learn/actions/update-user/update-user.mjs +++ b/components/ispring_learn/actions/update-user/update-user.mjs @@ -5,7 +5,12 @@ export default { key: "ispring_learn-update-user", name: "Update User", description: "Allows to modify the properties of a specific user on iSpring Learn.", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ispringLearn, diff --git a/components/issue_badge/actions/create-badge/create-badge.mjs b/components/issue_badge/actions/create-badge/create-badge.mjs index a3587f26300d9..c68d962b4395a 100644 --- a/components/issue_badge/actions/create-badge/create-badge.mjs +++ b/components/issue_badge/actions/create-badge/create-badge.mjs @@ -6,7 +6,12 @@ export default { key: "issue_badge-create-badge", name: "Create Badge", description: "Create a new badge [See the documentation](https://documenter.getpostman.com/view/19911979/2sA2r9X4Aj#2d909087-86e3-4e78-82ce-7b1691285a20)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { issueBadge, diff --git a/components/issue_badge/actions/create-issue/create-issue.mjs b/components/issue_badge/actions/create-issue/create-issue.mjs index 42ec11e83e088..ddccc4717f2d6 100644 --- a/components/issue_badge/actions/create-issue/create-issue.mjs +++ b/components/issue_badge/actions/create-issue/create-issue.mjs @@ -4,7 +4,12 @@ export default { key: "issue_badge-create-issue", name: "Create Issue", description: "Create a new issue [See the documentation](https://documenter.getpostman.com/view/19911979/2sA2r9X4Aj#b5b9801a-432d-4d2e-96ef-a9fb2d2d2a94)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { issueBadge, diff --git a/components/issue_badge/actions/create-organization/create-organization.mjs b/components/issue_badge/actions/create-organization/create-organization.mjs index 924a3a73c9cb0..37ef55bb9df1b 100644 --- a/components/issue_badge/actions/create-organization/create-organization.mjs +++ b/components/issue_badge/actions/create-organization/create-organization.mjs @@ -6,7 +6,12 @@ export default { key: "issue_badge-create-organization", name: "Create Organization", description: "Create a new organization [See the documentation](https://documenter.getpostman.com/view/19911979/2sA2r9X4Aj#9f046aa2-e975-420f-a9ec-3274ea74c6bd)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { issueBadge, diff --git a/components/issue_badge/actions/get-all-badges/get-all-badges.mjs b/components/issue_badge/actions/get-all-badges/get-all-badges.mjs index 98b46483e264e..962904b52d19b 100644 --- a/components/issue_badge/actions/get-all-badges/get-all-badges.mjs +++ b/components/issue_badge/actions/get-all-badges/get-all-badges.mjs @@ -4,7 +4,12 @@ export default { key: "issue_badge-get-all-badges", name: "Get All Badges", description: "Retrieve all badges [See the documentation](https://documenter.getpostman.com/view/19911979/2sA2r9X4Aj#5d30c8a9-f16a-4dfb-a3e0-c241e60935c4)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { issueBadge, diff --git a/components/issue_badge/actions/get-all-organizations/get-all-organizations.mjs b/components/issue_badge/actions/get-all-organizations/get-all-organizations.mjs index 96db7d4ef487c..e19653cbd2fd1 100644 --- a/components/issue_badge/actions/get-all-organizations/get-all-organizations.mjs +++ b/components/issue_badge/actions/get-all-organizations/get-all-organizations.mjs @@ -4,7 +4,12 @@ export default { key: "issue_badge-get-all-organizations", name: "Get All Organizations", description: "Retrieve all organizations [See the documentation](https://documenter.getpostman.com/view/19911979/2sA2r9X4Aj#64e5ee48-8e20-463b-addd-e697452e8e5a)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { issueBadge, diff --git a/components/jibble/actions/clock-in/clock-in.mjs b/components/jibble/actions/clock-in/clock-in.mjs index 2dbf9d69f80f1..d196a9a6ecedb 100644 --- a/components/jibble/actions/clock-in/clock-in.mjs +++ b/components/jibble/actions/clock-in/clock-in.mjs @@ -4,7 +4,12 @@ export default { name: "Clock In", description: "Create a new clock in time entry [See the documentation](https://docs.api.jibble.io/#ec4b4f62-5832-4911-92b1-81501b7d681c).", key: "jibble-clock-in", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/jibble/actions/clock-out/clock-out.mjs b/components/jibble/actions/clock-out/clock-out.mjs index fdf3cce84b417..cd207c6d28138 100644 --- a/components/jibble/actions/clock-out/clock-out.mjs +++ b/components/jibble/actions/clock-out/clock-out.mjs @@ -4,7 +4,12 @@ export default { name: "Clock Out", description: "Create a new clock out time entry [See the documentation](https://docs.api.jibble.io/#7144d8bb-616d-4a59-bea2-e621791328fc).", key: "jibble-clock-out", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/jibble/actions/create-time-tracking-report/create-time-tracking-report.mjs b/components/jibble/actions/create-time-tracking-report/create-time-tracking-report.mjs index c3fa8c92f1e8a..09d0fe222f215 100644 --- a/components/jibble/actions/create-time-tracking-report/create-time-tracking-report.mjs +++ b/components/jibble/actions/create-time-tracking-report/create-time-tracking-report.mjs @@ -5,7 +5,12 @@ export default { name: "Create Time Tracking Report", description: "This is generic endpoint for getting time tracking reports. [See the documentation](https://docs.api.jibble.io/#3115af1a-24a6-4d19-a7e7-08d8c173bb85).", key: "jibble-create-time-tracking-report", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/jibble/actions/create-timesheets-daily-summary/create-timesheets-daily-summary.mjs b/components/jibble/actions/create-timesheets-daily-summary/create-timesheets-daily-summary.mjs index 53c1fe788c192..ed60637507d53 100644 --- a/components/jibble/actions/create-timesheets-daily-summary/create-timesheets-daily-summary.mjs +++ b/components/jibble/actions/create-timesheets-daily-summary/create-timesheets-daily-summary.mjs @@ -4,7 +4,12 @@ export default { name: "Create Timesheets Daily Summary", description: "Gets daily timsheets summary for given date range and given persons. May omit personIds parameters in query so it will return data for all member of the organization. [See the documentation](https://docs.api.jibble.io/#5510bcd1-3c58-4ffb-9048-a962edf9133a).", key: "jibble-create-timesheets-daily-summary", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/jigsawstack/actions/object-detection/object-detection.mjs b/components/jigsawstack/actions/object-detection/object-detection.mjs index fd6eb5388672f..e91a2b4c27897 100644 --- a/components/jigsawstack/actions/object-detection/object-detection.mjs +++ b/components/jigsawstack/actions/object-detection/object-detection.mjs @@ -10,7 +10,12 @@ export default { key: "jigsawstack-object-detection", name: "Object Detection", description: "Recognize objects within a provided image and retrieve it with great accuracy. [See the documentation](https://docs.jigsawstack.com/api-reference/ai/object-detection)", - version: "1.0.1", + version: "1.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jigsawstack, diff --git a/components/jigsawstack/actions/sentiment-analysis/sentiment-analysis.mjs b/components/jigsawstack/actions/sentiment-analysis/sentiment-analysis.mjs index 265fe66969bb9..8782f6b1e8960 100644 --- a/components/jigsawstack/actions/sentiment-analysis/sentiment-analysis.mjs +++ b/components/jigsawstack/actions/sentiment-analysis/sentiment-analysis.mjs @@ -5,7 +5,12 @@ export default { key: "jigsawstack-sentiment-analysis", name: "Sentiment Analysis", description: "Assess sentiment of a provided text. Vibes can be positive, negative, or neutral. [See the documentation](https://docs.jigsawstack.com/api-reference/ai/sentiment)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jigsawstack, diff --git a/components/jigsawstack/actions/verify-email/verify-email.mjs b/components/jigsawstack/actions/verify-email/verify-email.mjs index 4d9eb4e7bba07..f36efd39db64e 100644 --- a/components/jigsawstack/actions/verify-email/verify-email.mjs +++ b/components/jigsawstack/actions/verify-email/verify-email.mjs @@ -5,7 +5,12 @@ export default { key: "jigsawstack-verify-email", name: "Verify Email", description: "Validate any email address and determine deliverability as well as disposable status. [See the documentation](https://docs.jigsawstack.com/api-reference/validate/email)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jigsawstack, diff --git a/components/jina_reader/actions/convert-to-llm-friendly-input/convert-to-llm-friendly-input.mjs b/components/jina_reader/actions/convert-to-llm-friendly-input/convert-to-llm-friendly-input.mjs index 1094916e99157..4eb93bdc01d0d 100644 --- a/components/jina_reader/actions/convert-to-llm-friendly-input/convert-to-llm-friendly-input.mjs +++ b/components/jina_reader/actions/convert-to-llm-friendly-input/convert-to-llm-friendly-input.mjs @@ -7,7 +7,12 @@ export default { key: "jina_reader-convert-to-llm-friendly-input", name: "Convert URL To LLM-Friendly Input", description: "Converts a provided URL to an LLM-friendly input using Jina Reader. [See the documentation](https://github.com/jina-ai/reader)", - version: "1.0.1", + version: "1.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs b/components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs index 7b6c16a2bf2e4..99142f6a7264c 100644 --- a/components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs +++ b/components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs @@ -6,7 +6,12 @@ export default { key: "jira-add-attachment-to-issue", name: "Add Attachment To Issue", description: "Adds an attachment to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-issue-issueidorkey-attachments-post)", - version: "1.0.4", + version: "1.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jira, diff --git a/components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs b/components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs index 0270ca0aa8053..6997f69ac8e45 100644 --- a/components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs +++ b/components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs @@ -5,7 +5,12 @@ export default { key: "jira-add-comment-to-issue", name: "Add Comment To Issue", description: "Adds a new comment to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-post)", - version: "0.1.12", + version: "0.1.13", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jira, diff --git a/components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs b/components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs index 2c94e1c94b1a5..7ce9a378056b2 100644 --- a/components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs +++ b/components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs @@ -6,7 +6,12 @@ export default { key: "jira-add-multiple-attachments-to-issue", name: "Add Multiple Attachments To Issue", description: "Adds multiple attachments to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-issue-issueidorkey-attachments-post)", - version: "1.0.4", + version: "1.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jira, diff --git a/components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs b/components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs index b08f236b9902c..2c77b6d2e82d9 100644 --- a/components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs +++ b/components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs @@ -3,7 +3,12 @@ import jira from "../../jira.app.mjs"; export default { key: "jira-add-watcher-to-issue", name: "Add Watcher To Issue", - version: "0.0.11", + version: "0.0.12", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Adds a user as a watcher of an issue by passing the account ID of the user, For example, `5b10ac8d82e05b22cc7d4ef5`, If no user is specified the calling user is added. [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-watchers/#api-rest-api-3-issue-issueidorkey-watchers-post)", type: "action", props: { diff --git a/components/jira/actions/assign-issue/assign-issue.mjs b/components/jira/actions/assign-issue/assign-issue.mjs index 71c0441c847ea..dcac21f3958d6 100644 --- a/components/jira/actions/assign-issue/assign-issue.mjs +++ b/components/jira/actions/assign-issue/assign-issue.mjs @@ -3,7 +3,12 @@ import jira from "../../jira.app.mjs"; export default { key: "jira-assign-issue", name: "Assign Issue", - version: "0.0.11", + version: "0.0.12", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Assigns an issue to a user. [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-assignee-put)", type: "action", props: { diff --git a/components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs b/components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs index 771993d920fff..7f0498f74c52e 100644 --- a/components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs +++ b/components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs @@ -5,7 +5,12 @@ export default { key: "jira-create-custom-field-options-context", name: "Create Custom Field Options (Context)", description: "Create a context for custom field options. [See the documentation here](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-custom-field-options/#api-rest-api-3-field-fieldid-context-contextid-option-post).", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/jira/actions/create-issue/create-issue.mjs b/components/jira/actions/create-issue/create-issue.mjs index d19490685c5e7..108bcb02d5f8a 100644 --- a/components/jira/actions/create-issue/create-issue.mjs +++ b/components/jira/actions/create-issue/create-issue.mjs @@ -7,7 +7,12 @@ export default { key: "jira-create-issue", name: "Create Issue", description: "Creates an issue or, where the option to create subtasks is enabled in Jira, a subtask, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-issue-post)", - version: "0.1.23", + version: "0.1.24", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/jira/actions/create-version/create-version.mjs b/components/jira/actions/create-version/create-version.mjs index 64864d1beab95..d0468ad5163fd 100644 --- a/components/jira/actions/create-version/create-version.mjs +++ b/components/jira/actions/create-version/create-version.mjs @@ -4,7 +4,12 @@ export default { key: "jira-create-version", name: "Create Jira Version in project", description: "Creates a project version., [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-versions/#api-rest-api-3-version-post)", - version: "0.1.12", + version: "0.1.13", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jira, diff --git a/components/jira/actions/delete-project/delete-project.mjs b/components/jira/actions/delete-project/delete-project.mjs index 23022f433fbb0..21305d9d47a81 100644 --- a/components/jira/actions/delete-project/delete-project.mjs +++ b/components/jira/actions/delete-project/delete-project.mjs @@ -4,7 +4,12 @@ export default { key: "jira-delete-project", name: "Delete Project", description: "Deletes a project, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-projects/#api-rest-api-3-project-projectidorkey-delete)", - version: "0.1.12", + version: "0.1.13", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jira, diff --git a/components/jira/actions/get-all-projects/get-all-projects.mjs b/components/jira/actions/get-all-projects/get-all-projects.mjs index 2d9676a2266f6..8300b08db2bdf 100644 --- a/components/jira/actions/get-all-projects/get-all-projects.mjs +++ b/components/jira/actions/get-all-projects/get-all-projects.mjs @@ -4,7 +4,12 @@ export default { key: "jira-get-all-projects", name: "Get All Projects", description: "Gets metadata on all projects, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-project-get)", - version: "0.1.13", + version: "0.1.14", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jira, diff --git a/components/jira/actions/get-issue/get-issue.mjs b/components/jira/actions/get-issue/get-issue.mjs index 0f2037df49b2b..d6474349dad94 100644 --- a/components/jira/actions/get-issue/get-issue.mjs +++ b/components/jira/actions/get-issue/get-issue.mjs @@ -4,7 +4,12 @@ export default { key: "jira-get-issue", name: "Get Issue", description: "Gets the details for an issue. [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-get)", - version: "0.1.14", + version: "0.1.15", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jira, diff --git a/components/jira/actions/get-task/get-task.mjs b/components/jira/actions/get-task/get-task.mjs index 10c8e35f658e2..ee99b115f7259 100644 --- a/components/jira/actions/get-task/get-task.mjs +++ b/components/jira/actions/get-task/get-task.mjs @@ -4,7 +4,12 @@ export default { key: "jira-get-task", name: "Get Task", description: "Gets the status of a long-running asynchronous task, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-tasks/#api-rest-api-3-task-taskid-get)", - version: "0.1.12", + version: "0.1.13", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jira, diff --git a/components/jira/actions/get-transitions/get-transitions.mjs b/components/jira/actions/get-transitions/get-transitions.mjs index 191dbc4b58828..1c7a69f536892 100644 --- a/components/jira/actions/get-transitions/get-transitions.mjs +++ b/components/jira/actions/get-transitions/get-transitions.mjs @@ -4,7 +4,12 @@ export default { key: "jira-get-transitions", name: "Get Transitions", description: "Gets either all transitions or a transition that can be performed by the user on an issue, based on the issue's status, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-transitions-get)", - version: "0.1.12", + version: "0.1.13", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jira, diff --git a/components/jira/actions/get-user/get-user.mjs b/components/jira/actions/get-user/get-user.mjs index 6086adbb75077..b067427a0a457 100644 --- a/components/jira/actions/get-user/get-user.mjs +++ b/components/jira/actions/get-user/get-user.mjs @@ -4,7 +4,12 @@ export default { key: "jira-get-user", name: "Get User", description: "Gets details of user, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-users/#api-rest-api-3-user-get)", - version: "0.1.12", + version: "0.1.13", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jira, diff --git a/components/jira/actions/get-users/get-users.mjs b/components/jira/actions/get-users/get-users.mjs index 0c9f48e1c0edf..aa091b1c0f684 100644 --- a/components/jira/actions/get-users/get-users.mjs +++ b/components/jira/actions/get-users/get-users.mjs @@ -4,7 +4,12 @@ export default { key: "jira-get-users", name: "Get Users", description: "Gets details of a list of users. [See docs here](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-user-search/#api-rest-api-3-user-search-get)", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jira, diff --git a/components/jira/actions/list-issue-comments/list-issue-comments.mjs b/components/jira/actions/list-issue-comments/list-issue-comments.mjs index 4b963b0ba3b8a..47a1734cbdc1b 100644 --- a/components/jira/actions/list-issue-comments/list-issue-comments.mjs +++ b/components/jira/actions/list-issue-comments/list-issue-comments.mjs @@ -4,7 +4,12 @@ export default { key: "jira-list-issue-comments", name: "List Issue Comments", description: "Lists all comments for an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-get)", - version: "0.1.12", + version: "0.1.13", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jira, diff --git a/components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs b/components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs index 199641e224588..35632cabef21f 100644 --- a/components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs +++ b/components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs @@ -4,7 +4,12 @@ export default { name: "Search Issues with JQL", description: "Search for issues using JQL (Jira Query Language). [See the documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-jql-get)", key: "jira-search-issues-with-jql", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jira, diff --git a/components/jira/actions/transition-issue/transition-issue.mjs b/components/jira/actions/transition-issue/transition-issue.mjs index 4d9ff2c24138e..08d1cc541878a 100644 --- a/components/jira/actions/transition-issue/transition-issue.mjs +++ b/components/jira/actions/transition-issue/transition-issue.mjs @@ -5,7 +5,12 @@ export default { key: "jira-transition-issue", name: "Transition Issue", description: "Performs an issue transition and, if the transition has a screen, updates the fields from the transition screen, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-transitions-post)", - version: "0.1.14", + version: "0.1.15", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jira, diff --git a/components/jira/actions/update-comment/update-comment.mjs b/components/jira/actions/update-comment/update-comment.mjs index 9208299adf299..9362979e1c3ff 100644 --- a/components/jira/actions/update-comment/update-comment.mjs +++ b/components/jira/actions/update-comment/update-comment.mjs @@ -5,7 +5,12 @@ export default { key: "jira-update-comment", name: "Update Comment", description: "Updates a comment, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-id-put)", - version: "0.1.12", + version: "0.1.13", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jira, diff --git a/components/jira/actions/update-issue/update-issue.mjs b/components/jira/actions/update-issue/update-issue.mjs index b15c7a11b9def..3ddff6bef47a3 100644 --- a/components/jira/actions/update-issue/update-issue.mjs +++ b/components/jira/actions/update-issue/update-issue.mjs @@ -8,7 +8,12 @@ export default { key: "jira-update-issue", name: "Update Issue", description: "Updates an issue. A transition may be applied and issue properties updated as part of the edit, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-put)", - version: "0.2.16", + version: "0.2.17", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/jira_service_desk/actions/create-comment-on-request/create-comment-on-request.mjs b/components/jira_service_desk/actions/create-comment-on-request/create-comment-on-request.mjs index 9222e43307d32..47a16ca0d62b0 100644 --- a/components/jira_service_desk/actions/create-comment-on-request/create-comment-on-request.mjs +++ b/components/jira_service_desk/actions/create-comment-on-request/create-comment-on-request.mjs @@ -4,7 +4,12 @@ export default { key: "jira_service_desk-create-comment-on-request", name: "Create Comment on Request", description: "Create a comment on a customer request. [See the documentation](https://developer.atlassian.com/cloud/jira/service-desk/rest/api-group-request/#api-rest-servicedeskapi-request-issueidorkey-comment-post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jiraServiceDesk, diff --git a/components/jira_service_desk/actions/create-request/create-request.mjs b/components/jira_service_desk/actions/create-request/create-request.mjs index 805f540070707..ea5cb950f6d2f 100644 --- a/components/jira_service_desk/actions/create-request/create-request.mjs +++ b/components/jira_service_desk/actions/create-request/create-request.mjs @@ -5,7 +5,12 @@ export default { name: "Create Request", description: "Creates a new customer request. [See the documentation](https://docs.atlassian.com/jira-servicedesk/REST/3.6.2/#servicedeskapi/request-createCustomerRequest)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jiraServiceDesk, diff --git a/components/jobber/actions/create-client/create-client.mjs b/components/jobber/actions/create-client/create-client.mjs index 191c1d07c0762..0453593a3d29f 100644 --- a/components/jobber/actions/create-client/create-client.mjs +++ b/components/jobber/actions/create-client/create-client.mjs @@ -5,7 +5,12 @@ export default { key: "jobber-create-client", name: "Create Client", description: "Generates a new client within Jobber. [See the documentation](https://developer.getjobber.com/docs)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jobber, diff --git a/components/jobber/actions/create-quote/create-quote.mjs b/components/jobber/actions/create-quote/create-quote.mjs index 792ed905cb51f..8a942d7d935ac 100644 --- a/components/jobber/actions/create-quote/create-quote.mjs +++ b/components/jobber/actions/create-quote/create-quote.mjs @@ -4,7 +4,12 @@ export default { key: "jobber-create-quote", name: "Create Quote", description: "Generates a new quote for a client's property in Jobber. [See the documentation](https://developer.getjobber.com/docs/)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jobber, diff --git a/components/jobber/actions/create-request/create-request.mjs b/components/jobber/actions/create-request/create-request.mjs index 415978df5e6d0..bb801f202c270 100644 --- a/components/jobber/actions/create-request/create-request.mjs +++ b/components/jobber/actions/create-request/create-request.mjs @@ -6,7 +6,12 @@ export default { key: "jobber-create-request", name: "Create Service Request", description: "Creates a new service request for a client's first property within Jobber. [See the documentation](https://developer.getjobber.com/docs/)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jobber, diff --git a/components/jobber/actions/filter-quotes/filter-quotes.mjs b/components/jobber/actions/filter-quotes/filter-quotes.mjs index f51278c7af26d..75a52fc3d0a68 100644 --- a/components/jobber/actions/filter-quotes/filter-quotes.mjs +++ b/components/jobber/actions/filter-quotes/filter-quotes.mjs @@ -5,7 +5,12 @@ export default { key: "jobber-filter-quotes", name: "Filter Quotes", description: "Filter quotes by status, quote number, or cost in Jobber. [See the documentation](https://developer.getjobber.com/docs)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jobber, diff --git a/components/jobber/actions/search-quotes/search-quotes.mjs b/components/jobber/actions/search-quotes/search-quotes.mjs index aab5d0b8df906..63f3f5cb1b26f 100644 --- a/components/jobber/actions/search-quotes/search-quotes.mjs +++ b/components/jobber/actions/search-quotes/search-quotes.mjs @@ -5,7 +5,12 @@ export default { key: "jobber-search-quotes", name: "Search Quotes", description: "Search for quotes using a search termin Jobber. [See the documentation](https://developer.getjobber.com/docs)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jobber, diff --git a/components/jobnimbus/actions/create-attachment/create-attachment.mjs b/components/jobnimbus/actions/create-attachment/create-attachment.mjs index 1431d7d8ffbe8..2b91f359ec704 100644 --- a/components/jobnimbus/actions/create-attachment/create-attachment.mjs +++ b/components/jobnimbus/actions/create-attachment/create-attachment.mjs @@ -7,7 +7,12 @@ import { export default { key: "jobnimbus-create-attachment", - version: "1.0.1", + version: "1.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Create Attachment", description: "Creates an attachment. [See the documentation](https://documenter.getpostman.com/view/3919598/S11PpG4x#5f3f485b-91f9-4ed9-912c-99a07987ac6c)", diff --git a/components/jobnimbus/actions/create-contact/create-contact.mjs b/components/jobnimbus/actions/create-contact/create-contact.mjs index 2045eb4364982..b44271aeff507 100644 --- a/components/jobnimbus/actions/create-contact/create-contact.mjs +++ b/components/jobnimbus/actions/create-contact/create-contact.mjs @@ -4,7 +4,12 @@ import base from "../common/contact-base.mjs"; export default { key: "jobnimbus-create-contact", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Create Contact", description: "Creates a contact. [See the documentation](https://documenter.getpostman.com/view/3919598/S11PpG4x#7ec1541f-7241-4840-9322-0ed83c01d48e)", diff --git a/components/jobnimbus/actions/find-contact-by-email/find-contact-by-email.mjs b/components/jobnimbus/actions/find-contact-by-email/find-contact-by-email.mjs index 5d083f5054c1e..e830a621d8978 100644 --- a/components/jobnimbus/actions/find-contact-by-email/find-contact-by-email.mjs +++ b/components/jobnimbus/actions/find-contact-by-email/find-contact-by-email.mjs @@ -2,7 +2,12 @@ import app from "../../jobnimbus.app.mjs"; export default { key: "jobnimbus-find-contact-by-email", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", name: "Find Contact By Email", description: "Finds contact by email. [See the documentation](https://documenter.getpostman.com/view/3919598/S11PpG4x#46dff3eb-80ae-46b1-a399-eb80ab2a09bc)", diff --git a/components/jobnimbus/actions/find-contact-by-id/find-contact-by-id.mjs b/components/jobnimbus/actions/find-contact-by-id/find-contact-by-id.mjs index b024c8ed6a4e3..fe52d46f09238 100644 --- a/components/jobnimbus/actions/find-contact-by-id/find-contact-by-id.mjs +++ b/components/jobnimbus/actions/find-contact-by-id/find-contact-by-id.mjs @@ -2,7 +2,12 @@ import app from "../../jobnimbus.app.mjs"; export default { key: "jobnimbus-find-contact-by-id", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", name: "Find Contact By ID", description: "Finds contact by ID. [See the documentation](https://documenter.getpostman.com/view/3919598/S11PpG4x#02875033-b94e-4ed9-83cc-d157fba8e5d5)", diff --git a/components/jobnimbus/actions/update-contact/update-contact.mjs b/components/jobnimbus/actions/update-contact/update-contact.mjs index 3cc4f511236c2..896601609e4b0 100644 --- a/components/jobnimbus/actions/update-contact/update-contact.mjs +++ b/components/jobnimbus/actions/update-contact/update-contact.mjs @@ -2,7 +2,12 @@ import base from "../common/contact-base.mjs"; export default { key: "jobnimbus-update-contact", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Update Contact", description: "Updates a contact. [See the documentation](https://documenter.getpostman.com/view/3919598/S11PpG4x#6c94f9a6-2bac-4189-9b2e-5d856f0fe310)", diff --git a/components/joggai/actions/create-ai-avatar-photo/create-ai-avatar-photo.mjs b/components/joggai/actions/create-ai-avatar-photo/create-ai-avatar-photo.mjs index ba1f2d04ebeb2..a6435010af256 100644 --- a/components/joggai/actions/create-ai-avatar-photo/create-ai-avatar-photo.mjs +++ b/components/joggai/actions/create-ai-avatar-photo/create-ai-avatar-photo.mjs @@ -13,7 +13,12 @@ export default { key: "joggai-create-ai-avatar-photo", name: "Create AI Avatar Photo", description: "Creates an AI avatar photo using JoggAI API. [See the documentation](https://docs.jogg.ai/api-reference/Avatar/GenerateAIAvatarPhoto)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { joggai, diff --git a/components/joggai/actions/create-avatar-video/create-avatar-video.mjs b/components/joggai/actions/create-avatar-video/create-avatar-video.mjs index 0b8937dcb7c6b..feff43935e57c 100644 --- a/components/joggai/actions/create-avatar-video/create-avatar-video.mjs +++ b/components/joggai/actions/create-avatar-video/create-avatar-video.mjs @@ -11,7 +11,12 @@ export default { key: "joggai-create-avatar-video", name: "Create Avatar Video", description: "Creates an avatar video using JoggAI API. [See the documentation](https://docs.jogg.ai/api-reference/Create-Avatar-Videos/CreateAvatarVideo)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { joggai, diff --git a/components/joggai/actions/create-product-from-product-info/create-product-from-product-info.mjs b/components/joggai/actions/create-product-from-product-info/create-product-from-product-info.mjs index b200451e9d566..834a8fe4f39c8 100644 --- a/components/joggai/actions/create-product-from-product-info/create-product-from-product-info.mjs +++ b/components/joggai/actions/create-product-from-product-info/create-product-from-product-info.mjs @@ -9,7 +9,12 @@ export default { key: "joggai-create-product-from-product-info", name: "Create Product from Product Info", description: "Creates a product from product info using JoggAI API. [See the documentation](https://docs.jogg.ai/api-reference/URL-to-Video/CreateVideo)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { joggai, diff --git a/components/joggai/actions/create-product-from-url/create-product-from-url.mjs b/components/joggai/actions/create-product-from-url/create-product-from-url.mjs index 44497053df984..329cd9f8f9034 100644 --- a/components/joggai/actions/create-product-from-url/create-product-from-url.mjs +++ b/components/joggai/actions/create-product-from-url/create-product-from-url.mjs @@ -5,7 +5,12 @@ export default { key: "joggai-create-product-from-url", name: "Create Product from URL", description: "Creates a product from a URL using JoggAI API. [See the documentation](https://docs.jogg.ai/api-reference/URL-to-Video/UploadURL)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { joggai, diff --git a/components/joggai/actions/update-product-info/update-product-info.mjs b/components/joggai/actions/update-product-info/update-product-info.mjs index d1d02f21a9e03..1866f48e127c6 100644 --- a/components/joggai/actions/update-product-info/update-product-info.mjs +++ b/components/joggai/actions/update-product-info/update-product-info.mjs @@ -8,7 +8,12 @@ export default { key: "joggai-update-product-info", name: "Update Product Info", description: "Updates product info using JoggAI API. [See the documentation](https://docs.jogg.ai/api-reference/URL-to-Video/UpdateProduct)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { joggai, diff --git a/components/joomla/actions/create-article/create-article.mjs b/components/joomla/actions/create-article/create-article.mjs index 513eaaf5f6b18..aec21484f28b9 100644 --- a/components/joomla/actions/create-article/create-article.mjs +++ b/components/joomla/actions/create-article/create-article.mjs @@ -4,7 +4,12 @@ export default { name: "Create Article", description: "Create an article. See the docs [here](https://docs.joomla.org/J4.x:Joomla_Core_APIs#Create_Article)", key: "joomla-create-article", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { joomla, diff --git a/components/joomla/actions/update-article/update-article.mjs b/components/joomla/actions/update-article/update-article.mjs index 3fd9292fd408e..f47d72632f52b 100644 --- a/components/joomla/actions/update-article/update-article.mjs +++ b/components/joomla/actions/update-article/update-article.mjs @@ -4,7 +4,12 @@ export default { name: "Update Article", description: "Update an article. See the docs [here](https://docs.joomla.org/J4.x:Joomla_Core_APIs#Update_Article)", key: "joomla-update-article", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { joomla, diff --git a/components/jooto/actions/create-task/create-task.mjs b/components/jooto/actions/create-task/create-task.mjs index 85d59cd0dc26c..aa3c9358f1971 100644 --- a/components/jooto/actions/create-task/create-task.mjs +++ b/components/jooto/actions/create-task/create-task.mjs @@ -4,7 +4,12 @@ export default { key: "jooto-create-task", name: "Create Task", description: "Create a new task in the selected project. [See the documentation](https://www.jooto.com/api/reference/request/#/default/post-boards-id-tasks)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/jooto/actions/get-projects/get-projects.mjs b/components/jooto/actions/get-projects/get-projects.mjs index 5a51df283bdfb..2b0d088137d77 100644 --- a/components/jooto/actions/get-projects/get-projects.mjs +++ b/components/jooto/actions/get-projects/get-projects.mjs @@ -4,7 +4,12 @@ export default { key: "jooto-get-projects", name: "Get Projects", description: "Get a list of projects in your organization. [See the documentation](https://www.jooto.com/api/reference/request/#/default/get-projects)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/jooto/actions/update-task/update-task.mjs b/components/jooto/actions/update-task/update-task.mjs index 50ab3a22d3c82..2e73431d21f3a 100644 --- a/components/jooto/actions/update-task/update-task.mjs +++ b/components/jooto/actions/update-task/update-task.mjs @@ -4,7 +4,12 @@ export default { key: "jooto-update-task", name: "Update Task", description: "Update a new task in the selected project. [See the documentation](https://www.jooto.com/api/reference/request/#/default/patch-boards-id-tasks-task_id)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/jotform/actions/get-form-submissions/get-form-submissions.mjs b/components/jotform/actions/get-form-submissions/get-form-submissions.mjs index 81dc7064bf1d9..710d2194a098a 100644 --- a/components/jotform/actions/get-form-submissions/get-form-submissions.mjs +++ b/components/jotform/actions/get-form-submissions/get-form-submissions.mjs @@ -5,7 +5,12 @@ export default { key: "jotform-get-form-submissions", name: "Get Form Submissions", description: "Gets a list of form responses [See the docs here](https://api.jotform.com/docs/#form-id-submissions)", - version: "0.1.4", + version: "0.1.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/jotform/actions/get-monthly-user-usage/get-monthly-user-usage.mjs b/components/jotform/actions/get-monthly-user-usage/get-monthly-user-usage.mjs index 19aa9a254e53b..afbd2980eead5 100644 --- a/components/jotform/actions/get-monthly-user-usage/get-monthly-user-usage.mjs +++ b/components/jotform/actions/get-monthly-user-usage/get-monthly-user-usage.mjs @@ -5,7 +5,12 @@ export default { key: "jotform-get-monthly-user-usage", name: "Get Monthly User Usage", description: "Gets number of form submissions received this month. Also, get number of SSL form submissions, payment form submissions and upload space used by user [See the docs here](https://api.jotform.com/docs/#user-usage)", - version: "0.0.7", + version: "0.0.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/jotform/actions/get-user-submissions/get-user-submissions.mjs b/components/jotform/actions/get-user-submissions/get-user-submissions.mjs index 9fff9388cb027..838f3e29f1a8e 100644 --- a/components/jotform/actions/get-user-submissions/get-user-submissions.mjs +++ b/components/jotform/actions/get-user-submissions/get-user-submissions.mjs @@ -5,7 +5,12 @@ export default { key: "jotform-get-user-submissions", name: "Get User Submissions", description: "Gets a list of all submissions for all forms on the account [See the docs here](https://api.jotform.com/docs/#user-submissions)", - version: "0.1.4", + version: "0.1.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/jp_funda/actions/get-data-by-edinet-code/get-data-by-edinet-code.mjs b/components/jp_funda/actions/get-data-by-edinet-code/get-data-by-edinet-code.mjs index f192ee00a238e..d2e2ada9b3338 100644 --- a/components/jp_funda/actions/get-data-by-edinet-code/get-data-by-edinet-code.mjs +++ b/components/jp_funda/actions/get-data-by-edinet-code/get-data-by-edinet-code.mjs @@ -3,7 +3,12 @@ import jpFunda from "../../jp_funda.app.mjs"; export default { key: "jp_funda-get-data-by-edinet-code", name: "Get Data By EDINET Code", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Returns the most recent and annual securities report data for the past few years. [See the documentation](https://www.jp-funda.com/docs/#edinet%E3%82%B3%E3%83%BC%E3%83%89%E3%81%A7%E3%83%87%E3%83%BC%E3%82%BF%E5%8F%96%E5%BE%97-edinet%E3%82%B3%E3%83%BC%E3%83%89%E3%81%A7%E5%85%A8%E3%81%A6%E3%81%AE%E6%9C%89%E4%BE%A1%E8%A8%BC%E5%88%B8%E5%A0%B1%E5%91%8A%E6%9B%B8%E3%83%87%E3%83%BC%E3%82%BF%E3%82%92%E5%8F%96%E5%BE%97-get)", type: "action", props: { diff --git a/components/jp_funda/actions/get-data-by-security-code/get-data-by-security-code.mjs b/components/jp_funda/actions/get-data-by-security-code/get-data-by-security-code.mjs index 380499b22d4ff..9c955b186fc50 100644 --- a/components/jp_funda/actions/get-data-by-security-code/get-data-by-security-code.mjs +++ b/components/jp_funda/actions/get-data-by-security-code/get-data-by-security-code.mjs @@ -3,7 +3,12 @@ import jpFunda from "../../jp_funda.app.mjs"; export default { key: "jp_funda-get-data-by-security-code", name: "Get Data By Security Code", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Returns the latest and past years of securities report data. [See the documentation](https://www.jp-funda.com/docs/#%E8%A8%BC%E5%88%B8%E3%82%B3%E3%83%BC%E3%83%89%E3%81%A7%E3%83%87%E3%83%BC%E3%82%BF%E5%8F%96%E5%BE%97)", type: "action", props: { diff --git a/components/jp_funda/actions/search-listings/search-listings.mjs b/components/jp_funda/actions/search-listings/search-listings.mjs index 7bdadb011d05d..33fc781bb8384 100644 --- a/components/jp_funda/actions/search-listings/search-listings.mjs +++ b/components/jp_funda/actions/search-listings/search-listings.mjs @@ -4,7 +4,12 @@ import { DATE_TYPES } from "../common/constants.mjs"; export default { key: "jp_funda-search-listings", name: "Search Listings", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieve data by specifying the date the securities report was published [See the documentation](https://www.jp-funda.com/docs/#%E6%9C%89%E4%BE%A1%E8%A8%BC%E5%88%B8%E5%A0%B1%E5%91%8A%E6%9B%B8%E3%81%AE%E5%85%AC%E9%96%8B%E6%97%A5%E3%82%88%E3%81%A3%E3%81%A6%E3%83%87%E3%83%BC%E3%82%BF%E3%82%92%E5%8F%96%E5%BE%97)", type: "action", props: { diff --git a/components/judge_me/actions/private-reply/private-reply.mjs b/components/judge_me/actions/private-reply/private-reply.mjs index 8e736c9e25900..9374f095c0dac 100644 --- a/components/judge_me/actions/private-reply/private-reply.mjs +++ b/components/judge_me/actions/private-reply/private-reply.mjs @@ -3,7 +3,12 @@ export default { name: "Private Reply", description: "Create a private reply for a review, on behalf of the shop. Private replies are not shown on the widgets, but can be emailed to the reviewers. [See the documentation](https://judge.me/api/docs#tag/Private-Replies)", key: "judge_me-private-reply", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/judge_me/actions/reply/reply.mjs b/components/judge_me/actions/reply/reply.mjs index ccc81554b0cde..4157b6889488b 100644 --- a/components/judge_me/actions/reply/reply.mjs +++ b/components/judge_me/actions/reply/reply.mjs @@ -3,7 +3,12 @@ export default { name: "Reply", description: "Create a public reply for a review on behalf of the shop. Public replies are shown publicly on the widgets. [See the documentation](https://judge.me/api/docs#tag/Replies)", key: "judge_me-reply", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/jumpseller/actions/create-product-variant/create-product-variant.mjs b/components/jumpseller/actions/create-product-variant/create-product-variant.mjs index 7df828613cfd4..262a7a3b8afd0 100644 --- a/components/jumpseller/actions/create-product-variant/create-product-variant.mjs +++ b/components/jumpseller/actions/create-product-variant/create-product-variant.mjs @@ -4,7 +4,12 @@ export default { key: "jumpseller-create-product-variant", name: "Create Product Variant", description: "Create a new product variant in Jumpseller. [See the documentation](https://jumpseller.com/support/api/#tag/Product-Variants/paths/~1products~1%7Bid%7D~1variants.json/post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jumpseller, diff --git a/components/jumpseller/actions/create-product/create-product.mjs b/components/jumpseller/actions/create-product/create-product.mjs index 44190bc70bf74..fa05801187d6a 100644 --- a/components/jumpseller/actions/create-product/create-product.mjs +++ b/components/jumpseller/actions/create-product/create-product.mjs @@ -4,7 +4,12 @@ export default { key: "jumpseller-create-product", name: "Create Product", description: "Create a new product in Jumpseller. [See the documentation](https://jumpseller.com/support/api/#tag/Products/paths/~1products.json/post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jumpseller, diff --git a/components/jumpseller/actions/update-product/update-product.mjs b/components/jumpseller/actions/update-product/update-product.mjs index fbba94a67fd92..6c32c3fda77bd 100644 --- a/components/jumpseller/actions/update-product/update-product.mjs +++ b/components/jumpseller/actions/update-product/update-product.mjs @@ -5,7 +5,12 @@ export default { key: "jumpseller-update-product", name: "Update Product", description: "Update an existing product in Jumpseller. [See the documentation](https://jumpseller.com/support/api/#tag/Products/paths/~1products~1%7Bid%7D.json/put)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jumpseller, diff --git a/components/justcall/actions/create-contact/create-contact.mjs b/components/justcall/actions/create-contact/create-contact.mjs index 5d6ce10bbad79..477f87689df62 100644 --- a/components/justcall/actions/create-contact/create-contact.mjs +++ b/components/justcall/actions/create-contact/create-contact.mjs @@ -3,7 +3,12 @@ import justcall from "../../justcall.app.mjs"; export default { key: "justcall-create-contact", name: "Create Contact", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Add a contact to your existing JustCall Sales Dialer campaign. [See the documentation](https://justcall.io/developer-docs/#add_contacts)", type: "action", props: { diff --git a/components/justcall/actions/send-text-message/send-text-message.mjs b/components/justcall/actions/send-text-message/send-text-message.mjs index c85fbe4de549c..4863311473036 100644 --- a/components/justcall/actions/send-text-message/send-text-message.mjs +++ b/components/justcall/actions/send-text-message/send-text-message.mjs @@ -3,7 +3,12 @@ import justcall from "../../justcall.app.mjs"; export default { key: "justcall-send-text-message", name: "Send Text Message", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Send a text from your JustCall SMS capabled number. [See the documentation](https://justcall.io/developer-docs/#send_text)", type: "action", props: { diff --git a/components/jw_player/actions/create-media/create-media.mjs b/components/jw_player/actions/create-media/create-media.mjs index 63eb545a538ec..d882490caec1b 100644 --- a/components/jw_player/actions/create-media/create-media.mjs +++ b/components/jw_player/actions/create-media/create-media.mjs @@ -4,7 +4,12 @@ export default { key: "jw_player-create-media", name: "Create Media", description: "Creates a new media file in JW Player using fetch or external upload methods. [See the documentation](https://docs.jwplayer.com/platform/reference/post_v2-sites-site-id-media)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { jwPlayer, diff --git a/components/jw_player/actions/search-media/search-media.mjs b/components/jw_player/actions/search-media/search-media.mjs index deabfef458903..6598bf08b6bd8 100644 --- a/components/jw_player/actions/search-media/search-media.mjs +++ b/components/jw_player/actions/search-media/search-media.mjs @@ -4,7 +4,12 @@ export default { key: "jw_player-search-media", name: "Search Media", description: "Searches for a media or lists all media available in JW Player. [See the documentation](https://docs.jwplayer.com/platform/reference/get_v2-sites-site-id-media)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { jwPlayer, diff --git a/components/kadoa/actions/start-workflow/start-workflow.mjs b/components/kadoa/actions/start-workflow/start-workflow.mjs index 1bce79c7a20a8..f5801e9746c82 100644 --- a/components/kadoa/actions/start-workflow/start-workflow.mjs +++ b/components/kadoa/actions/start-workflow/start-workflow.mjs @@ -4,7 +4,12 @@ export default { key: "kadoa-start-workflow", name: "Start Kadoa Workflow", description: "Triggers a Kadoa workflow using Pipedream. [See the documentation](https://api.kadoa.com/api-docs/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { kadoa, diff --git a/components/kaleido/actions/create-contract/create-contract.mjs b/components/kaleido/actions/create-contract/create-contract.mjs index 4bdd542295356..f0bdb179de182 100644 --- a/components/kaleido/actions/create-contract/create-contract.mjs +++ b/components/kaleido/actions/create-contract/create-contract.mjs @@ -4,7 +4,12 @@ export default { key: "kaleido-create-contract", name: "Create Contract", description: "Create a contract in Kaleido. [See the documentation](https://api.kaleido.io/platform.html#tag/Contracts/paths/~1consortia~1%7Bconsortia_id%7D~1contracts/post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/kaleido/actions/create-membership/create-membership.mjs b/components/kaleido/actions/create-membership/create-membership.mjs index 4ee16b838fbfb..649173d64ac53 100644 --- a/components/kaleido/actions/create-membership/create-membership.mjs +++ b/components/kaleido/actions/create-membership/create-membership.mjs @@ -4,7 +4,12 @@ export default { key: "kaleido-create-membership", name: "Create Membership", description: "Create a membership for a consortia in Kaleido. [See the documentation](https://api.kaleido.io/platform.html#tag/Memberships/paths/~1consortia~1{consortia_id}~1memberships/post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/kaleido/actions/delete-contract/delete-contract.mjs b/components/kaleido/actions/delete-contract/delete-contract.mjs index 66819903fbb4c..4bef4bf94c53e 100644 --- a/components/kaleido/actions/delete-contract/delete-contract.mjs +++ b/components/kaleido/actions/delete-contract/delete-contract.mjs @@ -4,7 +4,12 @@ export default { key: "kaleido-delete-contract", name: "Delete Contract", description: "Delete a contract in Kaleido. [See the documentation](https://api.kaleido.io/platform.html#tag/Contracts/paths/~1consortia~1%7Bconsortia_id%7D~1contracts~1%7Bcontract_id%7D/delete)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/kanban_tool/actions/archive-task/archive-task.mjs b/components/kanban_tool/actions/archive-task/archive-task.mjs index afd8d166a113a..6ef54b9bf9e25 100644 --- a/components/kanban_tool/actions/archive-task/archive-task.mjs +++ b/components/kanban_tool/actions/archive-task/archive-task.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-archive-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Archive Task", description: "Archives a task [See the docs here](https://kanbantool.com/developer/api-v3#archiving-tasks)", diff --git a/components/kanban_tool/actions/complete-subtask/complete-subtask.mjs b/components/kanban_tool/actions/complete-subtask/complete-subtask.mjs index 4baed45fac0d2..e79c8957e203b 100644 --- a/components/kanban_tool/actions/complete-subtask/complete-subtask.mjs +++ b/components/kanban_tool/actions/complete-subtask/complete-subtask.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-complete-subtask", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Complete Subtask(Checklist Item)", description: "Marks a subtask as completed [See the docs here](https://kanbantool.com/developer/api-v3#updating-subtasks)", diff --git a/components/kanban_tool/actions/create-comment/create-comment.mjs b/components/kanban_tool/actions/create-comment/create-comment.mjs index 6743f37fd4f81..69e2195b76016 100644 --- a/components/kanban_tool/actions/create-comment/create-comment.mjs +++ b/components/kanban_tool/actions/create-comment/create-comment.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-create-comment", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Create Comment", description: "Creates a comment [See the docs here](https://kanbantool.com/developer/api-v3#creating-comments)", diff --git a/components/kanban_tool/actions/create-subtask/create-subtask.mjs b/components/kanban_tool/actions/create-subtask/create-subtask.mjs index 090393098a1ca..04b4dfa06e0a6 100644 --- a/components/kanban_tool/actions/create-subtask/create-subtask.mjs +++ b/components/kanban_tool/actions/create-subtask/create-subtask.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-create-subtask", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Create Subtask(Checklist Item)", description: "Creates a subtask [See the docs here](https://kanbantool.com/developer/api-v3#creating-subtasks)", diff --git a/components/kanban_tool/actions/create-task/create-task.mjs b/components/kanban_tool/actions/create-task/create-task.mjs index ca80d86741555..126bccf6c3903 100644 --- a/components/kanban_tool/actions/create-task/create-task.mjs +++ b/components/kanban_tool/actions/create-task/create-task.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-create-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Create Task", description: "Creates a task [See the docs here](https://kanbantool.com/developer/api-v3#creating-tasks)", diff --git a/components/kanban_tool/actions/delete-subtask/delete-subtask.mjs b/components/kanban_tool/actions/delete-subtask/delete-subtask.mjs index 1755bb76fe41d..ce86f2d15d107 100644 --- a/components/kanban_tool/actions/delete-subtask/delete-subtask.mjs +++ b/components/kanban_tool/actions/delete-subtask/delete-subtask.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-delete-subtask", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Delete Subtask(Checklist Item)", description: "Soft deletes a subtask [See the docs here](https://kanbantool.com/developer/api-v3#deleting-subtasks)", diff --git a/components/kanban_tool/actions/delete-task/delete-task.mjs b/components/kanban_tool/actions/delete-task/delete-task.mjs index f765ca8bd9f27..c9ecf136d2c6b 100644 --- a/components/kanban_tool/actions/delete-task/delete-task.mjs +++ b/components/kanban_tool/actions/delete-task/delete-task.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-delete-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Delete Task", description: "Soft deletes a task [See the docs here](https://kanbantool.com/developer/api-v3#deleting-tasks)", diff --git a/components/kanban_tool/actions/find-task/find-task.mjs b/components/kanban_tool/actions/find-task/find-task.mjs index 8e0b2d4240eeb..e6d9bcbed9c16 100644 --- a/components/kanban_tool/actions/find-task/find-task.mjs +++ b/components/kanban_tool/actions/find-task/find-task.mjs @@ -3,7 +3,12 @@ import utils from "../../common/utils.mjs"; export default { key: "kanban_tool-find-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", name: "Find Task", description: "Finds task with given parameters [See the docs here](https://kanbantool.com/developer/api-v3#searching-tasks)", diff --git a/components/kanban_tool/actions/get-task-details/get-task-details.mjs b/components/kanban_tool/actions/get-task-details/get-task-details.mjs index 3039f0dcabf69..c7876e0518a47 100644 --- a/components/kanban_tool/actions/get-task-details/get-task-details.mjs +++ b/components/kanban_tool/actions/get-task-details/get-task-details.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-get-task-details", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Get Task Details", description: "Gets details of a selected task [See the docs here](https://kanbantool.com/developer/api-v3#fetching-tasks)", diff --git a/components/kanban_tool/actions/move-task/move-task.mjs b/components/kanban_tool/actions/move-task/move-task.mjs index 35951a189f152..13b382b10199a 100644 --- a/components/kanban_tool/actions/move-task/move-task.mjs +++ b/components/kanban_tool/actions/move-task/move-task.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-move-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Move Task", description: "Moves a task [See the docs here](https://kanbantool.com/developer/api-v3#updating-tasks)", diff --git a/components/kanban_tool/actions/update-subtask/update-subtask.mjs b/components/kanban_tool/actions/update-subtask/update-subtask.mjs index f57fbfc142773..6bfa3b2a2c71b 100644 --- a/components/kanban_tool/actions/update-subtask/update-subtask.mjs +++ b/components/kanban_tool/actions/update-subtask/update-subtask.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-update-subtask", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Update Subtask(Checklist Item)", description: "Updates a subtask with the given parameters [See the docs here](https://kanbantool.com/developer/api-v3#updating-subtasks)", diff --git a/components/kanban_tool/actions/update-task/update-task.mjs b/components/kanban_tool/actions/update-task/update-task.mjs index 9addabaf7ee08..79655e60b59bd 100644 --- a/components/kanban_tool/actions/update-task/update-task.mjs +++ b/components/kanban_tool/actions/update-task/update-task.mjs @@ -2,7 +2,12 @@ import app from "../../kanban_tool.app.mjs"; export default { key: "kanban_tool-update-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", name: "Update Task", description: "Updates a task with the given parameters [See the docs here](https://kanbantool.com/developer/api-v3#updating-tasks)", diff --git a/components/kanbanize/actions/create-new-task/create-new-task.mjs b/components/kanbanize/actions/create-new-task/create-new-task.mjs index 1e259b1f01397..7f03289a5eec8 100644 --- a/components/kanbanize/actions/create-new-task/create-new-task.mjs +++ b/components/kanbanize/actions/create-new-task/create-new-task.mjs @@ -4,7 +4,12 @@ export default { key: "kanbanize-create-new-task", name: "Create New Task", description: "Create New Task. [See the docs here](https://kanbanize.com/api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { kanbanizeApp, diff --git a/components/kanbanize/actions/edit-task/edit-task.mjs b/components/kanbanize/actions/edit-task/edit-task.mjs index efe425b196cbc..b72bc9dc92b92 100644 --- a/components/kanbanize/actions/edit-task/edit-task.mjs +++ b/components/kanbanize/actions/edit-task/edit-task.mjs @@ -4,7 +4,12 @@ export default { key: "kanbanize-edit-task", name: "Edit Task", description: "Edit Task. [See the docs here](https://kanbanize.com/api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { kanbanizeApp, diff --git a/components/kanbanize/actions/list-all-tasks/list-all-tasks.mjs b/components/kanbanize/actions/list-all-tasks/list-all-tasks.mjs index ff09e774eca22..3e256baec9566 100644 --- a/components/kanbanize/actions/list-all-tasks/list-all-tasks.mjs +++ b/components/kanbanize/actions/list-all-tasks/list-all-tasks.mjs @@ -5,7 +5,12 @@ export default { key: "kanbanize-list-all-tasks", name: "List Tasks", description: "Get All Tasks. [See the docs here](https://kanbanize.com/api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { kanbanizeApp, diff --git a/components/keboola/actions/get-bucket-detail/get-bucket-detail.mjs b/components/keboola/actions/get-bucket-detail/get-bucket-detail.mjs index e7c6f8701688a..dd8895cf1916d 100644 --- a/components/keboola/actions/get-bucket-detail/get-bucket-detail.mjs +++ b/components/keboola/actions/get-bucket-detail/get-bucket-detail.mjs @@ -4,7 +4,12 @@ export default { key: "keboola-get-bucket-detail", name: "Get Bucket Detail", description: "Get detailed information about a specific bucket in Keboola. [See the documentation](https://keboola.docs.apiary.io/#reference/buckets/manage-bucket/bucket-detail)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { keboola, diff --git a/components/keboola/actions/get-table-detail/get-table-detail.mjs b/components/keboola/actions/get-table-detail/get-table-detail.mjs index 929d2d0b3e0c1..ee2190906680f 100644 --- a/components/keboola/actions/get-table-detail/get-table-detail.mjs +++ b/components/keboola/actions/get-table-detail/get-table-detail.mjs @@ -4,7 +4,12 @@ export default { key: "keboola-get-table-detail", name: "Get Table Detail", description: "Get detailed information about a specific table. [See the documentation](https://keboola.docs.apiary.io/#reference/tables/manage-tables/table-detail)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { keboola, diff --git a/components/keboola/actions/retrieve-bucket-tables/retrieve-bucket-tables.mjs b/components/keboola/actions/retrieve-bucket-tables/retrieve-bucket-tables.mjs index 23723f1e10d04..e6082ee2a03ac 100644 --- a/components/keboola/actions/retrieve-bucket-tables/retrieve-bucket-tables.mjs +++ b/components/keboola/actions/retrieve-bucket-tables/retrieve-bucket-tables.mjs @@ -4,7 +4,12 @@ export default { key: "keboola-retrieve-bucket-tables", name: "List Tables In Bucket", description: "Lists all tables in a specified bucket. [See the documentation](https://keboola.docs.apiary.io/#reference/tables/create-or-list-tables/tables-in-bucket)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { keboola, diff --git a/components/keboola/actions/retrieve-buckets/retrieve-buckets.mjs b/components/keboola/actions/retrieve-buckets/retrieve-buckets.mjs index b4c9b07b362ee..5b874c98877dc 100644 --- a/components/keboola/actions/retrieve-buckets/retrieve-buckets.mjs +++ b/components/keboola/actions/retrieve-buckets/retrieve-buckets.mjs @@ -4,7 +4,12 @@ export default { key: "keboola-retrieve-buckets", name: "Retrieve Buckets", description: "Lists all buckets in your Keboola project. [See the documentation](https://keboola.docs.apiary.io/#reference/buckets/create-or-list-buckets/list-all-buckets)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { keboola, diff --git a/components/keboola/actions/update-bucket/update-bucket.mjs b/components/keboola/actions/update-bucket/update-bucket.mjs index 1b7fad379b97a..325a03d922231 100644 --- a/components/keboola/actions/update-bucket/update-bucket.mjs +++ b/components/keboola/actions/update-bucket/update-bucket.mjs @@ -4,7 +4,12 @@ export default { key: "keboola-update-bucket", name: "Update Bucket", description: "Updates a bucket with a new display name in Keboola. [See the documentation](https://keboola.docs.apiary.io/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { keboola, diff --git a/components/keboola/actions/update-table-name/update-table-name.mjs b/components/keboola/actions/update-table-name/update-table-name.mjs index 4a3e11a642258..0c58fdd6d91c2 100644 --- a/components/keboola/actions/update-table-name/update-table-name.mjs +++ b/components/keboola/actions/update-table-name/update-table-name.mjs @@ -4,7 +4,12 @@ export default { key: "keboola-update-table-name", name: "Update Table Name", description: "Update the name of a table. [See the documentation](https://keboola.docs.apiary.io/#reference/tables/manage-tables/table-update)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { keboola, diff --git a/components/kenjo/actions/create-attendance-entry/create-attendance-entry.mjs b/components/kenjo/actions/create-attendance-entry/create-attendance-entry.mjs index 3d646afcfa717..f56c0979027cf 100644 --- a/components/kenjo/actions/create-attendance-entry/create-attendance-entry.mjs +++ b/components/kenjo/actions/create-attendance-entry/create-attendance-entry.mjs @@ -5,7 +5,12 @@ export default { key: "kenjo-create-attendance-entry", name: "Create Attendance Entry", description: "Creates a new attendance entry for an employee in Kenjo. [See the documentation](https://kenjo.readme.io/reference/post_attendances)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { kenjo, diff --git a/components/kenjo/actions/create-employee/create-employee.mjs b/components/kenjo/actions/create-employee/create-employee.mjs index 316a46fe919b4..d59758c938723 100644 --- a/components/kenjo/actions/create-employee/create-employee.mjs +++ b/components/kenjo/actions/create-employee/create-employee.mjs @@ -4,7 +4,12 @@ export default { key: "kenjo-create-employee", name: "Create Employee", description: "Creates a new employee in Kenjo. [See the documentation](https://kenjo.readme.io/reference/post_employees)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { kenjo,