diff --git a/components/aweber/actions/add-subscriber/add-subscriber.mjs b/components/aweber/actions/add-subscriber/add-subscriber.mjs index 4b2d9fb4923e4..141215141b749 100644 --- a/components/aweber/actions/add-subscriber/add-subscriber.mjs +++ b/components/aweber/actions/add-subscriber/add-subscriber.mjs @@ -6,7 +6,12 @@ export default { name: "Add Subscriber", description: "Add subscribers to the specified account and list. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/post).", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { aweberApp, accountId: { diff --git a/components/aweber/actions/create-or-update-subscriber/create-or-update-subscriber.mjs b/components/aweber/actions/create-or-update-subscriber/create-or-update-subscriber.mjs index d1ac20fd53e66..b72bdc8bf88f8 100644 --- a/components/aweber/actions/create-or-update-subscriber/create-or-update-subscriber.mjs +++ b/components/aweber/actions/create-or-update-subscriber/create-or-update-subscriber.mjs @@ -5,7 +5,12 @@ export default { name: "Create Or Update Subscriber", description: "Create subscriber if the subscriber email is not existing or update the information for the specified subscriber by email. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/patch).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { aweberApp, accountId: { diff --git a/components/aweber/actions/get-accounts/get-accounts.mjs b/components/aweber/actions/get-accounts/get-accounts.mjs index 7cad6ca0095ec..d5965f63f4b5d 100644 --- a/components/aweber/actions/get-accounts/get-accounts.mjs +++ b/components/aweber/actions/get-accounts/get-accounts.mjs @@ -7,7 +7,12 @@ export default { name: "Get Accounts", description: "Get a paginated collection of accounts. [See the docs here](https://api.aweber.com/#tag/Accounts/paths/~1accounts/get).", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { aweberApp, start: { diff --git a/components/aweber/actions/get-lists/get-lists.mjs b/components/aweber/actions/get-lists/get-lists.mjs index 4bb3dec93f251..ac8d463ec720d 100644 --- a/components/aweber/actions/get-lists/get-lists.mjs +++ b/components/aweber/actions/get-lists/get-lists.mjs @@ -7,7 +7,12 @@ export default { name: "Get Lists", description: "Get a paginated collection of subscriber lists. [See the docs here](https://api.aweber.com/#tag/Lists/paths/~1accounts~1{accountId}~1lists/get).", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { aweberApp, accountId: { diff --git a/components/aweber/actions/get-subscribers/get-subscribers.mjs b/components/aweber/actions/get-subscribers/get-subscribers.mjs index 4cd9d6ec9c930..79caf033136b9 100644 --- a/components/aweber/actions/get-subscribers/get-subscribers.mjs +++ b/components/aweber/actions/get-subscribers/get-subscribers.mjs @@ -7,7 +7,12 @@ export default { name: "Get Subscribers", description: "Get a paginated collection of subscribers under the specified account and list. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/get).", type: "action", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { aweberApp, accountId: { diff --git a/components/aweber/actions/update-subscriber/update-subscriber.mjs b/components/aweber/actions/update-subscriber/update-subscriber.mjs index 6ed0bcd1c9057..37d72cc5ebc69 100644 --- a/components/aweber/actions/update-subscriber/update-subscriber.mjs +++ b/components/aweber/actions/update-subscriber/update-subscriber.mjs @@ -6,7 +6,12 @@ export default { name: "Update Subscriber", description: "Update the information for the specified subscriber by email. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/patch).", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { aweberApp, accountId: { diff --git a/components/awork/actions/create-client/create-client.mjs b/components/awork/actions/create-client/create-client.mjs index 7e83c7af6ad68..cedaf711c71cf 100644 --- a/components/awork/actions/create-client/create-client.mjs +++ b/components/awork/actions/create-client/create-client.mjs @@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs"; export default { name: "Create Client", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "awork-create-client", description: "Creates a client. [See docs here](https://openapi.awork.io/#/Companies/post_companies)", type: "action", diff --git a/components/awork/actions/create-project/create-project.mjs b/components/awork/actions/create-project/create-project.mjs index b01fc7e9b4ca3..4a4a539e130a6 100644 --- a/components/awork/actions/create-project/create-project.mjs +++ b/components/awork/actions/create-project/create-project.mjs @@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs"; export default { name: "Create Project", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "awork-create-project", description: "Creates a project. [See docs here](https://openapi.awork.io/#/Projects/post_projects)", type: "action", diff --git a/components/awork/actions/find-users-by-email/find-users-by-email.mjs b/components/awork/actions/find-users-by-email/find-users-by-email.mjs index 869cf3d65a80c..4605fd7f4cca5 100644 --- a/components/awork/actions/find-users-by-email/find-users-by-email.mjs +++ b/components/awork/actions/find-users-by-email/find-users-by-email.mjs @@ -2,7 +2,12 @@ import awork from "../../awork.app.mjs"; export default { name: "Find Users By Email", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "awork-find-users-by-email", description: "Finds a user by email. [See docs here](https://openapi.awork.io/#/Users/get_users)", type: "action", diff --git a/components/aws/actions/cloudwatch-logs-put-log-event/cloudwatch-logs-put-log-event.mjs b/components/aws/actions/cloudwatch-logs-put-log-event/cloudwatch-logs-put-log-event.mjs index 6176631d4e440..4af8541d02af0 100644 --- a/components/aws/actions/cloudwatch-logs-put-log-event/cloudwatch-logs-put-log-event.mjs +++ b/components/aws/actions/cloudwatch-logs-put-log-event/cloudwatch-logs-put-log-event.mjs @@ -9,7 +9,12 @@ export default { Uploads a log event to the specified log stream. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-cloudwatch-logs/classes/putlogeventscommand.html) `), - version: "0.1.2", + version: "0.1.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/dynamodb-create-table/dynamodb-create-table.mjs b/components/aws/actions/dynamodb-create-table/dynamodb-create-table.mjs index a42c4f9e7ac20..f296626a5a964 100644 --- a/components/aws/actions/dynamodb-create-table/dynamodb-create-table.mjs +++ b/components/aws/actions/dynamodb-create-table/dynamodb-create-table.mjs @@ -10,7 +10,12 @@ export default { Creates a new table to your account. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/createtablecommand.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/dynamodb-execute-statement/dynamodb-execute-statement.mjs b/components/aws/actions/dynamodb-execute-statement/dynamodb-execute-statement.mjs index 882599f898e0b..4df11874c801a 100644 --- a/components/aws/actions/dynamodb-execute-statement/dynamodb-execute-statement.mjs +++ b/components/aws/actions/dynamodb-execute-statement/dynamodb-execute-statement.mjs @@ -9,7 +9,12 @@ export default { This operation allows you to perform transactional reads or writes on data stored in DynamoDB, using PartiQL. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/executestatementcommand.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/dynamodb-get-item/dynamodb-get-item.mjs b/components/aws/actions/dynamodb-get-item/dynamodb-get-item.mjs index af709c32dddf5..452c8ded5bded 100644 --- a/components/aws/actions/dynamodb-get-item/dynamodb-get-item.mjs +++ b/components/aws/actions/dynamodb-get-item/dynamodb-get-item.mjs @@ -10,7 +10,12 @@ export default { If there is no matching item, Get Item does not return any data and there will be no Item element in the response. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/getitemcommand.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/dynamodb-put-item/dynamodb-put-item.mjs b/components/aws/actions/dynamodb-put-item/dynamodb-put-item.mjs index 28fada7e39411..54e40b0fe2f96 100644 --- a/components/aws/actions/dynamodb-put-item/dynamodb-put-item.mjs +++ b/components/aws/actions/dynamodb-put-item/dynamodb-put-item.mjs @@ -15,7 +15,12 @@ export default { the new item completely replaces the existing item. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/putitemcommand.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/dynamodb-query/dynamodb-query.mjs b/components/aws/actions/dynamodb-query/dynamodb-query.mjs index e3570263f0f15..141652d255475 100644 --- a/components/aws/actions/dynamodb-query/dynamodb-query.mjs +++ b/components/aws/actions/dynamodb-query/dynamodb-query.mjs @@ -12,7 +12,12 @@ export default { The query operation finds items based on primary key values. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/querycommand.html) `), - version: "0.5.2", + version: "0.5.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/dynamodb-scan/dynamodb-scan.mjs b/components/aws/actions/dynamodb-scan/dynamodb-scan.mjs index 3bd0a50a9fb03..958dded11d4c7 100644 --- a/components/aws/actions/dynamodb-scan/dynamodb-scan.mjs +++ b/components/aws/actions/dynamodb-scan/dynamodb-scan.mjs @@ -12,7 +12,12 @@ export default { The Scan operation returns one or more items and item attributes by accessing every item in a table. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/scancommand.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/dynamodb-update-item/dynamodb-update-item.mjs b/components/aws/actions/dynamodb-update-item/dynamodb-update-item.mjs index b284c9dda956a..dc0c2742b6337 100644 --- a/components/aws/actions/dynamodb-update-item/dynamodb-update-item.mjs +++ b/components/aws/actions/dynamodb-update-item/dynamodb-update-item.mjs @@ -13,7 +13,12 @@ export default { Updates an existing item's attributes, or adds a new item to the table if it does not already exist. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/updateitemcommand.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/dynamodb-update-table/dynamodb-update-table.mjs b/components/aws/actions/dynamodb-update-table/dynamodb-update-table.mjs index 5435b3efdc495..086d35a6ece6e 100644 --- a/components/aws/actions/dynamodb-update-table/dynamodb-update-table.mjs +++ b/components/aws/actions/dynamodb-update-table/dynamodb-update-table.mjs @@ -10,7 +10,12 @@ export default { Modifies the settings for a given table. Only one type of modification is permitted per request. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/updatetablecommand.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/eventbridge-send-event/eventbridge-send-event.mjs b/components/aws/actions/eventbridge-send-event/eventbridge-send-event.mjs index b27adc4f7e479..7dc4b5759566d 100644 --- a/components/aws/actions/eventbridge-send-event/eventbridge-send-event.mjs +++ b/components/aws/actions/eventbridge-send-event/eventbridge-send-event.mjs @@ -6,7 +6,12 @@ export default { key: "aws-eventbridge-send-event", name: "EventBridge - Send Event to Event Bus", description: "Sends an event to an EventBridge event bus. [See documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/eventbridge/command/PutEventsCommand/)", - version: "0.4.3", + version: "0.4.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/lambda-create-function/lambda-create-function.mjs b/components/aws/actions/lambda-create-function/lambda-create-function.mjs index 3d0af34698936..5a0c2a0e0a8e0 100644 --- a/components/aws/actions/lambda-create-function/lambda-create-function.mjs +++ b/components/aws/actions/lambda-create-function/lambda-create-function.mjs @@ -11,7 +11,12 @@ export default { Create a Lambda function from source code. This action creates a zip file and deploys it to AWS Lambda. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lambda/classes/createfunctioncommand.html) `), - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/lambda-invoke-function/lambda-invoke-function.mjs b/components/aws/actions/lambda-invoke-function/lambda-invoke-function.mjs index ad737c985a48e..ae71b63cbe1f4 100644 --- a/components/aws/actions/lambda-invoke-function/lambda-invoke-function.mjs +++ b/components/aws/actions/lambda-invoke-function/lambda-invoke-function.mjs @@ -9,7 +9,12 @@ export default { Invoke a Lambda function using the AWS API. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lambda/index.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/redshift-create-rows/redshift-create-rows.mjs b/components/aws/actions/redshift-create-rows/redshift-create-rows.mjs index 44e2280570013..a2a7cfcd5a283 100644 --- a/components/aws/actions/redshift-create-rows/redshift-create-rows.mjs +++ b/components/aws/actions/redshift-create-rows/redshift-create-rows.mjs @@ -7,7 +7,12 @@ export default { name: "Redshift - Create Rows", description: "Insert rows into a table. [See the documentation](https://docs.aws.amazon.com/redshift/latest/APIReference/API_ExecuteStatement.html)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, info: { diff --git a/components/aws/actions/redshift-delete-rows/redshift-delete-rows.mjs b/components/aws/actions/redshift-delete-rows/redshift-delete-rows.mjs index 990d1f3dfa72d..8e670c03d52ef 100644 --- a/components/aws/actions/redshift-delete-rows/redshift-delete-rows.mjs +++ b/components/aws/actions/redshift-delete-rows/redshift-delete-rows.mjs @@ -6,7 +6,12 @@ export default { name: "Redshift - Delete Rows", description: "Deletes row(s) in an existing table in Redshift. [See the documentation](https://docs.aws.amazon.com/redshift/latest/APIReference/API_ExecuteStatement.html)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, info: { diff --git a/components/aws/actions/redshift-query-database/redshift-query-database.mjs b/components/aws/actions/redshift-query-database/redshift-query-database.mjs index 3e7fc537749e4..2e20a630397a1 100644 --- a/components/aws/actions/redshift-query-database/redshift-query-database.mjs +++ b/components/aws/actions/redshift-query-database/redshift-query-database.mjs @@ -9,7 +9,12 @@ export default { name: "Redshift - Query Database", description: "Run a SELECT query on a database. [See the documentation](https://docs.aws.amazon.com/redshift/latest/APIReference/API_ExecuteStatement.html)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, info: { diff --git a/components/aws/actions/redshift-update-rows/redshift-update-rows.mjs b/components/aws/actions/redshift-update-rows/redshift-update-rows.mjs index 4adf331f5b0de..ec145fb0b870f 100644 --- a/components/aws/actions/redshift-update-rows/redshift-update-rows.mjs +++ b/components/aws/actions/redshift-update-rows/redshift-update-rows.mjs @@ -6,7 +6,12 @@ export default { name: "Redshift - Update Rows", description: "Update row(s) in an existing table in Redshift. [See the documentation](https://docs.aws.amazon.com/redshift/latest/APIReference/API_ExecuteStatement.html)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, info: { diff --git a/components/aws/actions/s3-download-file-to-tmp/s3-download-file-to-tmp.mjs b/components/aws/actions/s3-download-file-to-tmp/s3-download-file-to-tmp.mjs index 3c49883f33ca2..1427be5f61f30 100644 --- a/components/aws/actions/s3-download-file-to-tmp/s3-download-file-to-tmp.mjs +++ b/components/aws/actions/s3-download-file-to-tmp/s3-download-file-to-tmp.mjs @@ -12,7 +12,12 @@ export default { Downloads a file from S3 to the /tmp directory. [See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html) `), - version: "0.0.5", + version: "0.0.6", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/s3-generate-presigned-url/s3-generate-presigned-url.mjs b/components/aws/actions/s3-generate-presigned-url/s3-generate-presigned-url.mjs index 83e4207414e97..6089935bacd33 100644 --- a/components/aws/actions/s3-generate-presigned-url/s3-generate-presigned-url.mjs +++ b/components/aws/actions/s3-generate-presigned-url/s3-generate-presigned-url.mjs @@ -7,7 +7,12 @@ export default { key: "aws-s3-generate-presigned-url", name: "S3 - Generate Presigned URL", description: "Creates a presigned URL to download from a bucket. [See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/example_s3_Scenario_PresignedUrl_section.html)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/s3-upload-base64-as-file/s3-upload-base64-as-file.mjs b/components/aws/actions/s3-upload-base64-as-file/s3-upload-base64-as-file.mjs index dba878a593b35..83600b18331c2 100644 --- a/components/aws/actions/s3-upload-base64-as-file/s3-upload-base64-as-file.mjs +++ b/components/aws/actions/s3-upload-base64-as-file/s3-upload-base64-as-file.mjs @@ -5,7 +5,12 @@ export default { key: "aws-s3-upload-base64-as-file", name: "S3 - Upload Base64 As File", description: "Accepts a base64-encoded string and a filename, then uploads as a file to S3. [See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/upload-objects.html)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/s3-upload-files/s3-upload-files.mjs b/components/aws/actions/s3-upload-files/s3-upload-files.mjs index d11966a762b93..7ace29eb90ece 100644 --- a/components/aws/actions/s3-upload-files/s3-upload-files.mjs +++ b/components/aws/actions/s3-upload-files/s3-upload-files.mjs @@ -11,7 +11,12 @@ export default { key: "aws-s3-upload-files", name: "S3 - Upload Files", description: "Upload files to S3. Accepts either a file URL, a local file path, or a directory path. [See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/upload-objects.html)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/sns-send-message/sns-send-message.mjs b/components/aws/actions/sns-send-message/sns-send-message.mjs index 9edc7f541c77c..7e423da5d2c0d 100644 --- a/components/aws/actions/sns-send-message/sns-send-message.mjs +++ b/components/aws/actions/sns-send-message/sns-send-message.mjs @@ -9,7 +9,12 @@ export default { Sends a message to a SNS Topic. [See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sns/classes/publishcommand.html) `), - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/aws/actions/sqs-send-message/sqs-send-message.mjs b/components/aws/actions/sqs-send-message/sqs-send-message.mjs index 00a3666527b26..04b0ff91f8d7e 100644 --- a/components/aws/actions/sqs-send-message/sqs-send-message.mjs +++ b/components/aws/actions/sqs-send-message/sqs-send-message.mjs @@ -10,7 +10,12 @@ export default { Sends a message to an SQS queue. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sqs/classes/sendmessagecommand.html) `), - version: "0.2.2", + version: "0.2.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { aws: common.props.aws, diff --git a/components/axesso_data_service/actions/get-product-details/get-product-details.mjs b/components/axesso_data_service/actions/get-product-details/get-product-details.mjs index 0c988aeb613f5..7d4bed774b089 100644 --- a/components/axesso_data_service/actions/get-product-details/get-product-details.mjs +++ b/components/axesso_data_service/actions/get-product-details/get-product-details.mjs @@ -4,7 +4,12 @@ export default { key: "axesso_data_service-get-product-details", name: "Get Product Details", description: "Requests product detail information using Axesso Data Service. [See the documentation](https://axesso.developer.azure-api.net/api-details#api=axesso-amazon-data-service&operation=product-details)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { axesso, diff --git a/components/axesso_data_service/actions/list-reviews/list-reviews.mjs b/components/axesso_data_service/actions/list-reviews/list-reviews.mjs index 820ff2160d2cf..47145785e52c2 100644 --- a/components/axesso_data_service/actions/list-reviews/list-reviews.mjs +++ b/components/axesso_data_service/actions/list-reviews/list-reviews.mjs @@ -4,7 +4,12 @@ export default { key: "axesso_data_service-list-reviews", name: "List Reviews", description: "Lists reviews for an Amazon product using Axesso Data Service. [See the documentation](https://axesso.developer.azure-api.net/api-details#api=axesso-amazon-data-service&operation=reviews)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { axesso, diff --git a/components/axesso_data_service/actions/search-products/search-products.mjs b/components/axesso_data_service/actions/search-products/search-products.mjs index e4198f97a6067..4b7a7349836c4 100644 --- a/components/axesso_data_service/actions/search-products/search-products.mjs +++ b/components/axesso_data_service/actions/search-products/search-products.mjs @@ -4,7 +4,12 @@ export default { key: "axesso_data_service-search-products", name: "Search Products", description: "Search Amazon products by keyword using Axesso Data Service. [See the documentation](https://axesso.developer.azure-api.net/api-details#api=axesso-amazon-data-service&operation=search-products)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { axesso, diff --git a/components/axonaut/actions/create-company/create-company.mjs b/components/axonaut/actions/create-company/create-company.mjs index 6bbba984cf0f8..2e1af936a43b6 100644 --- a/components/axonaut/actions/create-company/create-company.mjs +++ b/components/axonaut/actions/create-company/create-company.mjs @@ -2,7 +2,12 @@ import app from "../../axonaut.app.mjs"; export default { name: "Create Company", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "axonaut-create-company", description: "Creates a company. [See documentation (Go to `POST /api/v2/companies`)](https://axonaut.com/api/v2/doc)", type: "action", diff --git a/components/axonaut/actions/create-employee/create-employee.mjs b/components/axonaut/actions/create-employee/create-employee.mjs index 56c9384d72cbd..a13d2e46cfa0b 100644 --- a/components/axonaut/actions/create-employee/create-employee.mjs +++ b/components/axonaut/actions/create-employee/create-employee.mjs @@ -2,7 +2,12 @@ import app from "../../axonaut.app.mjs"; export default { name: "Create Employee", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "axonaut-create-employee", description: "Creates a employee. [See documentation (Go to `POST /api/v2/employees`)](https://axonaut.com/api/v2/doc)", type: "action", diff --git a/components/axonaut/actions/update-company/update-company.mjs b/components/axonaut/actions/update-company/update-company.mjs index 4cc97c4865224..4e4dc1f39732b 100644 --- a/components/axonaut/actions/update-company/update-company.mjs +++ b/components/axonaut/actions/update-company/update-company.mjs @@ -2,7 +2,12 @@ import app from "../../axonaut.app.mjs"; export default { name: "Update Company", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "axonaut-update-company", description: "Updates a company. [See documentation (Go to `PATCH /api/v2/companies/{companYid}`)](https://axonaut.com/api/v2/doc)", type: "action", diff --git a/components/axonaut/actions/update-employee/update-employee.mjs b/components/axonaut/actions/update-employee/update-employee.mjs index 6f4bcda972f1d..222afa8be6322 100644 --- a/components/axonaut/actions/update-employee/update-employee.mjs +++ b/components/axonaut/actions/update-employee/update-employee.mjs @@ -2,7 +2,12 @@ import app from "../../axonaut.app.mjs"; export default { name: "Update Employee", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "axonaut-update-employee", description: "Updates a employee. [See documentation (Go to `POST /api/v2/employees`)](https://axonaut.com/api/v2/doc)", type: "action", diff --git a/components/ayrshare/actions/create-user/create-user.mjs b/components/ayrshare/actions/create-user/create-user.mjs index 37db17ec9ebc3..9203c675b1aef 100644 --- a/components/ayrshare/actions/create-user/create-user.mjs +++ b/components/ayrshare/actions/create-user/create-user.mjs @@ -4,7 +4,12 @@ export default { key: "ayrshare-create-user", name: "Create User", description: "Create a new User Profile under your Primary Profile. [See the documentation](https://www.ayrshare.com/docs/apis/profiles/create-profile)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/ayrshare/actions/delete-user/delete-user.mjs b/components/ayrshare/actions/delete-user/delete-user.mjs index 858d1e97f0474..e8f70b0b7e967 100644 --- a/components/ayrshare/actions/delete-user/delete-user.mjs +++ b/components/ayrshare/actions/delete-user/delete-user.mjs @@ -4,7 +4,12 @@ export default { key: "ayrshare-delete-user", name: "Delete User", description: "Delete a user profile you are the owner of. [See the documentation](https://www.ayrshare.com/docs/apis/profiles/delete-profile)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/ayrshare/actions/update-user/update-user.mjs b/components/ayrshare/actions/update-user/update-user.mjs index f338fa745c95e..a138843d02ff4 100644 --- a/components/ayrshare/actions/update-user/update-user.mjs +++ b/components/ayrshare/actions/update-user/update-user.mjs @@ -4,7 +4,12 @@ export default { key: "ayrshare-update-user", name: "Update User", description: "Update an existing profile. [See the documentation](https://www.ayrshare.com/docs/apis/profiles/update-profile)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/azure_ai_vision/actions/extract-text-from-image/extract-text-from-image.mjs b/components/azure_ai_vision/actions/extract-text-from-image/extract-text-from-image.mjs index 6a41f71708082..e68b47ad80106 100644 --- a/components/azure_ai_vision/actions/extract-text-from-image/extract-text-from-image.mjs +++ b/components/azure_ai_vision/actions/extract-text-from-image/extract-text-from-image.mjs @@ -4,7 +4,12 @@ export default { key: "azure_ai_vision-extract-text-from-image", name: "Extract Text from Image", description: "Extracts text from the provided image using Azure AI Vision OCR. [See the documentation](https://centraluseuap.dev.cognitive.microsoft.com/docs/services/unified-vision-apis-public-preview-2023-02-01-preview/operations/61d65934cd35050c20f73ab6)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { azureAiVision, diff --git a/components/azure_openai_service/actions/chat/chat.mjs b/components/azure_openai_service/actions/chat/chat.mjs index 637111fce28e6..2ae1c84c0e4b1 100644 --- a/components/azure_openai_service/actions/chat/chat.mjs +++ b/components/azure_openai_service/actions/chat/chat.mjs @@ -6,7 +6,12 @@ export default { key: "azure_openai_service-chat", name: "Chat", description: "Create completions for chat messages with the GPT-35-Turbo and GPT-4 models. [See the documentation](https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#chat-completions)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { azureOpenAI, diff --git a/components/azure_openai_service/actions/classify-items-into-categories/classify-items-into-categories.mjs b/components/azure_openai_service/actions/classify-items-into-categories/classify-items-into-categories.mjs index 69295c6572772..b64de1c45b214 100644 --- a/components/azure_openai_service/actions/classify-items-into-categories/classify-items-into-categories.mjs +++ b/components/azure_openai_service/actions/classify-items-into-categories/classify-items-into-categories.mjs @@ -6,7 +6,12 @@ export default { key: "azure_openai_service-classify-items-into-categories", name: "Classify Items Into Categories", description: "Classify items into specific categories. [See the documentation](https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#chat-completions)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { azureOpenAI, diff --git a/components/azure_openai_service/actions/create-image/create-image.mjs b/components/azure_openai_service/actions/create-image/create-image.mjs index 3dcb4f40900d3..f79b990f4b927 100644 --- a/components/azure_openai_service/actions/create-image/create-image.mjs +++ b/components/azure_openai_service/actions/create-image/create-image.mjs @@ -6,7 +6,12 @@ export default { key: "azure_openai_service-create-image", name: "Create Image", description: "Creates an image given a prompt, and returns a URL to the image. [See the documentation](https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#image-generation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { azureOpenAI, diff --git a/components/azure_openai_service/actions/summarize/summarize.mjs b/components/azure_openai_service/actions/summarize/summarize.mjs index 6c9b087fcdd31..b7197a3c6f391 100644 --- a/components/azure_openai_service/actions/summarize/summarize.mjs +++ b/components/azure_openai_service/actions/summarize/summarize.mjs @@ -6,7 +6,12 @@ export default { key: "azure_openai_service-summarize", name: "Summarize", description: "Summarizes a text message with the GPT-35-Turbo and GPT-4 models. [See the documentation](https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#chat-completions)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { azureOpenAI, diff --git a/components/azure_openai_service/actions/translate-text/translate-text.mjs b/components/azure_openai_service/actions/translate-text/translate-text.mjs index 1e3057ac0dfc5..2e9638e027460 100644 --- a/components/azure_openai_service/actions/translate-text/translate-text.mjs +++ b/components/azure_openai_service/actions/translate-text/translate-text.mjs @@ -12,7 +12,12 @@ export default { key: "azure_openai_service-translate-text", name: "Translate Text", description: "Translate text from one language to another. [See the documentation](https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#chat-completions)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { azureOpenAI, diff --git a/components/azure_sql/actions/execute-query/execute-query.mjs b/components/azure_sql/actions/execute-query/execute-query.mjs index 42bbdc31adea4..71fcfa95d308d 100644 --- a/components/azure_sql/actions/execute-query/execute-query.mjs +++ b/components/azure_sql/actions/execute-query/execute-query.mjs @@ -5,7 +5,12 @@ export default { name: "Execute Query", description: "Executes a SQL query and returns the results. [See the documentation](https://learn.microsoft.com/en-us/sql/t-sql/queries/select-transact-sql?view=azuresqldb-current)", type: "action", - version: "0.0.6", + version: "0.0.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, query: { diff --git a/components/azure_sql/actions/execute-raw-query/execute-raw-query.mjs b/components/azure_sql/actions/execute-raw-query/execute-raw-query.mjs index 04f303c1c4e7b..a16b206f14784 100644 --- a/components/azure_sql/actions/execute-raw-query/execute-raw-query.mjs +++ b/components/azure_sql/actions/execute-raw-query/execute-raw-query.mjs @@ -5,7 +5,12 @@ export default { name: "Execute SQL Query", description: "Execute a custom SQL query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.", type: "action", - version: "0.0.5", + version: "0.0.6", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, sql: { diff --git a/components/azure_sql/actions/insert-row/insert-row.mjs b/components/azure_sql/actions/insert-row/insert-row.mjs index 78bcaf1f88acc..d9a1d8ee9867d 100644 --- a/components/azure_sql/actions/insert-row/insert-row.mjs +++ b/components/azure_sql/actions/insert-row/insert-row.mjs @@ -4,7 +4,12 @@ export default { key: "azure_sql-insert-row", name: "Insert Row", description: "Inserts a new row in a table. [See the documentation](https://learn.microsoft.com/en-us/sql/t-sql/statements/insert-transact-sql?view=azuresqldb-current)", - version: "0.0.6", + version: "0.0.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/azure_storage/actions/create-container/create-container.mjs b/components/azure_storage/actions/create-container/create-container.mjs index 5dcb4b21d4199..719bab49481bc 100644 --- a/components/azure_storage/actions/create-container/create-container.mjs +++ b/components/azure_storage/actions/create-container/create-container.mjs @@ -4,7 +4,12 @@ export default { key: "azure_storage-create-container", name: "Create Container", description: "Creates a new container under the specified account. If a container with the same name already exists, the operation fails. [See the documentation](https://learn.microsoft.com/en-us/rest/api/storageservices/create-container?tabs=microsoft-entra-id).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/azure_storage/actions/delete-blob/delete-blob.mjs b/components/azure_storage/actions/delete-blob/delete-blob.mjs index abbc295833db7..01eac24647ae0 100644 --- a/components/azure_storage/actions/delete-blob/delete-blob.mjs +++ b/components/azure_storage/actions/delete-blob/delete-blob.mjs @@ -4,7 +4,12 @@ export default { key: "azure_storage-delete-blob", name: "Delete Blob", description: "Deletes a specific blob from a container in Azure Storage. [See the documentation](https://learn.microsoft.com/en-us/rest/api/storageservices/delete-blob?tabs=microsoft-entra-id).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/azure_storage/actions/upload-blob/upload-blob.mjs b/components/azure_storage/actions/upload-blob/upload-blob.mjs index 5e374573b2042..5be90b290dc0b 100644 --- a/components/azure_storage/actions/upload-blob/upload-blob.mjs +++ b/components/azure_storage/actions/upload-blob/upload-blob.mjs @@ -6,7 +6,12 @@ export default { key: "azure_storage-upload-blob", name: "Upload Blob", description: "Uploads a new blob to a specified container in Azure Storage. [See the documentation](https://learn.microsoft.com/en-us/rest/api/storageservices/put-blob?tabs=microsoft-entra-id).", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/badger_maps/actions/create-account/create-account.mjs b/components/badger_maps/actions/create-account/create-account.mjs index 54d9eda4d4e32..2c92b069457ea 100644 --- a/components/badger_maps/actions/create-account/create-account.mjs +++ b/components/badger_maps/actions/create-account/create-account.mjs @@ -6,7 +6,12 @@ export default { name: "Create Account", description: "Creates an account. [See the docs](https://badgerupdatedapi.docs.apiary.io/#reference/accounts/list-and-create-accounts/create-new-account).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, email: { diff --git a/components/badger_maps/actions/create-check-in/create-check-in.mjs b/components/badger_maps/actions/create-check-in/create-check-in.mjs index 05ee7f2341718..5e8a1ad399fd7 100644 --- a/components/badger_maps/actions/create-check-in/create-check-in.mjs +++ b/components/badger_maps/actions/create-check-in/create-check-in.mjs @@ -6,7 +6,12 @@ export default { name: "Create Check-In", description: "Creates a check-in. [See the docs](https://badgerupdatedapi.docs.apiary.io/#reference/check-ins/create-check-in-for-account/save-new-check-in-for-an-account).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, customer: { diff --git a/components/badger_maps/actions/delete-account/delete-account.mjs b/components/badger_maps/actions/delete-account/delete-account.mjs index d1266a92e12fb..98bedbcabb677 100644 --- a/components/badger_maps/actions/delete-account/delete-account.mjs +++ b/components/badger_maps/actions/delete-account/delete-account.mjs @@ -5,7 +5,12 @@ export default { name: "Delete Account", description: "Deletes an account. [See the docs](https://badgerupdatedapi.docs.apiary.io/#reference/accounts/retrieve-and-update-account-details/delete-customer).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, accountId: { diff --git a/components/badger_maps/actions/get-account/get-account.mjs b/components/badger_maps/actions/get-account/get-account.mjs index c5dc0469248b9..1005771839d78 100644 --- a/components/badger_maps/actions/get-account/get-account.mjs +++ b/components/badger_maps/actions/get-account/get-account.mjs @@ -5,7 +5,12 @@ export default { name: "Get Account", description: "Gets an account. [See the docs](https://badgerupdatedapi.docs.apiary.io/#reference/accounts/retrieve-and-update-account-details/retrieve-account-details).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, accountId: { diff --git a/components/badger_maps/actions/retrieve-check-ins/retrieve-check-ins.mjs b/components/badger_maps/actions/retrieve-check-ins/retrieve-check-ins.mjs index ee6fe88705dcc..bd564734edd3a 100644 --- a/components/badger_maps/actions/retrieve-check-ins/retrieve-check-ins.mjs +++ b/components/badger_maps/actions/retrieve-check-ins/retrieve-check-ins.mjs @@ -5,7 +5,12 @@ export default { name: "Retrieve Check-Ins", description: "Retrieves check-ins. [See the docs](https://badgerupdatedapi.docs.apiary.io/#reference/check-ins/get-check-ins-for-account/retrieve-check-ins-for-an-account).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, accountId: { diff --git a/components/badger_maps/actions/search-user/search-user.mjs b/components/badger_maps/actions/search-user/search-user.mjs index a0e6af1327c44..0e7918a1de695 100644 --- a/components/badger_maps/actions/search-user/search-user.mjs +++ b/components/badger_maps/actions/search-user/search-user.mjs @@ -5,7 +5,12 @@ export default { name: "Search User", description: "Find an existing Badger User at your company by User's email address or internal ID. [See the docs](https://badgerupdatedapi.docs.apiary.io/#reference/users/user-search/search-users).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { app, query: { diff --git a/components/badger_maps/actions/update-account/update-account.mjs b/components/badger_maps/actions/update-account/update-account.mjs index 68d325e12a0a6..ae07a66f5c4af 100644 --- a/components/badger_maps/actions/update-account/update-account.mjs +++ b/components/badger_maps/actions/update-account/update-account.mjs @@ -6,7 +6,12 @@ export default { name: "Update Account", description: "Updates an account. [See the docs](https://badgerupdatedapi.docs.apiary.io/#reference/accounts/retrieve-and-update-account-details/update-account).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, accountId: { diff --git a/components/bamboohr/actions/add-application-comment/add-application-comment.mjs b/components/bamboohr/actions/add-application-comment/add-application-comment.mjs index 1bd413d2cd1ba..2d308a967bc95 100644 --- a/components/bamboohr/actions/add-application-comment/add-application-comment.mjs +++ b/components/bamboohr/actions/add-application-comment/add-application-comment.mjs @@ -4,7 +4,12 @@ export default { key: "bamboohr-add-application-comment", name: "Add Application Comment", description: "Add a comment to an application. [See the documentation](https://documentation.bamboohr.com/reference/post-application-comment-1)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { bamboohr, diff --git a/components/bamboohr/actions/download-resume/download-resume.mjs b/components/bamboohr/actions/download-resume/download-resume.mjs index a722e09ac7d5a..7d80b4e94ff88 100644 --- a/components/bamboohr/actions/download-resume/download-resume.mjs +++ b/components/bamboohr/actions/download-resume/download-resume.mjs @@ -6,7 +6,12 @@ export default { key: "bamboohr-download-resume", name: "Download Resume", description: "Download a resume from an application. [See the documentation](https://documentation.bamboohr.com/reference/get-company-file)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { bamboohr, diff --git a/components/bamboohr/actions/get-application/get-application.mjs b/components/bamboohr/actions/get-application/get-application.mjs index 85ec41103cd0c..a851e5512aaf8 100644 --- a/components/bamboohr/actions/get-application/get-application.mjs +++ b/components/bamboohr/actions/get-application/get-application.mjs @@ -4,7 +4,12 @@ export default { key: "bamboohr-get-application", name: "Get Application", description: "Get the details of an application. [See the documentation](https://documentation.bamboohr.com/reference/get-application-details-1)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { bamboohr, diff --git a/components/bamboohr/actions/list-applications/list-applications.mjs b/components/bamboohr/actions/list-applications/list-applications.mjs index 0f6c2dd33db07..f6aa9245d89f5 100644 --- a/components/bamboohr/actions/list-applications/list-applications.mjs +++ b/components/bamboohr/actions/list-applications/list-applications.mjs @@ -5,7 +5,12 @@ export default { key: "bamboohr-list-applications", name: "List Applications", description: "List all applications. [See the documentation](https://documentation.bamboohr.com/reference/get-applications)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { bamboohr, diff --git a/components/bamboohr/actions/update-application-status/update-application-status.mjs b/components/bamboohr/actions/update-application-status/update-application-status.mjs index c3a37f2a72c3c..7e13bd6b8c3ac 100644 --- a/components/bamboohr/actions/update-application-status/update-application-status.mjs +++ b/components/bamboohr/actions/update-application-status/update-application-status.mjs @@ -4,7 +4,12 @@ export default { key: "bamboohr-update-application-status", name: "Update Application Status", description: "Update the status of an application. [See the documentation](https://documentation.bamboohr.com/reference/post-applicant-status-1)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { bamboohr, diff --git a/components/bannerbear/actions/approve-video/approve-video.mjs b/components/bannerbear/actions/approve-video/approve-video.mjs index e03cb42d7de1e..1cf6d7fe53555 100644 --- a/components/bannerbear/actions/approve-video/approve-video.mjs +++ b/components/bannerbear/actions/approve-video/approve-video.mjs @@ -5,7 +5,12 @@ export default { name: "Approve Video", description: "Approve a video to proceed with rendering. [See the docs here](https://developers.bannerbear.com/#patch-v2-videos).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { bannerbear, uid: { diff --git a/components/bannerbear/actions/create-animated-gif/create-animated-gif.mjs b/components/bannerbear/actions/create-animated-gif/create-animated-gif.mjs index ba250d28267a9..fdfc58e0d4672 100644 --- a/components/bannerbear/actions/create-animated-gif/create-animated-gif.mjs +++ b/components/bannerbear/actions/create-animated-gif/create-animated-gif.mjs @@ -6,7 +6,12 @@ export default { name: "Create Animated Gif", description: "Creates an Animated Gif. [See the docs here](https://developers.bannerbear.com/#post-v2-animated_gifs).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { bannerbear, template: { diff --git a/components/bannerbear/actions/create-collection/create-collection.mjs b/components/bannerbear/actions/create-collection/create-collection.mjs index 7a25ba497a30e..8b86c0d264ec9 100644 --- a/components/bannerbear/actions/create-collection/create-collection.mjs +++ b/components/bannerbear/actions/create-collection/create-collection.mjs @@ -6,7 +6,12 @@ export default { name: "Create Collection", description: "Generates multiple Images based on a Template Set. [See the docs here](https://developers.bannerbear.com/#post-v2-collections).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { bannerbear, templateSet: { diff --git a/components/bannerbear/actions/create-image/create-image.mjs b/components/bannerbear/actions/create-image/create-image.mjs index de2d26f665404..57e340f36ebce 100644 --- a/components/bannerbear/actions/create-image/create-image.mjs +++ b/components/bannerbear/actions/create-image/create-image.mjs @@ -5,7 +5,12 @@ export default { key: "bannerbear-create-image", name: "Create an Image", description: "Create an image using template and modifications. [See the docs](https://developers.bannerbear.com/#post-v2-images)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { bannerbear, diff --git a/components/bannerbear/actions/create-video/create-video.mjs b/components/bannerbear/actions/create-video/create-video.mjs index d2895c89284d9..0454a3ba18077 100644 --- a/components/bannerbear/actions/create-video/create-video.mjs +++ b/components/bannerbear/actions/create-video/create-video.mjs @@ -6,7 +6,12 @@ export default { name: "Create Video", description: "Creates a Video. [See the docs here](https://developers.bannerbear.com/#post-v2-videos).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { bannerbear, videoTemplate: { diff --git a/components/bannerbear/actions/edit-video/edit-video.mjs b/components/bannerbear/actions/edit-video/edit-video.mjs index aa978a6efa027..516d3e8799947 100644 --- a/components/bannerbear/actions/edit-video/edit-video.mjs +++ b/components/bannerbear/actions/edit-video/edit-video.mjs @@ -6,7 +6,12 @@ export default { name: "Edit Video", description: "Update a video auto-transcription. [See the docs here](https://developers.bannerbear.com/#patch-v2-videos).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { bannerbear, uid: { diff --git a/components/baremetrics/actions/create-customer/create-customer.mjs b/components/baremetrics/actions/create-customer/create-customer.mjs index a75def489653c..e1e208ee4f61b 100644 --- a/components/baremetrics/actions/create-customer/create-customer.mjs +++ b/components/baremetrics/actions/create-customer/create-customer.mjs @@ -4,7 +4,12 @@ export default { key: "baremetrics-create-customer", name: "Create Customer", description: "Create a customer. [See the documentation](https://developers.baremetrics.com/reference/create-customer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/baremetrics/actions/create-plan/create-plan.mjs b/components/baremetrics/actions/create-plan/create-plan.mjs index 5da71fc5def4a..1b1e26e38fb8f 100644 --- a/components/baremetrics/actions/create-plan/create-plan.mjs +++ b/components/baremetrics/actions/create-plan/create-plan.mjs @@ -4,7 +4,12 @@ export default { key: "baremetrics-create-plan", name: "Create Plan", description: "Create a plan. [See the documentation](https://developers.baremetrics.com/reference/create-plan)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/baremetrics/actions/create-subscription/create-subscription.mjs b/components/baremetrics/actions/create-subscription/create-subscription.mjs index 601e7e044949e..70320bcd56b46 100644 --- a/components/baremetrics/actions/create-subscription/create-subscription.mjs +++ b/components/baremetrics/actions/create-subscription/create-subscription.mjs @@ -4,7 +4,12 @@ export default { key: "baremetrics-create-subscription", name: "Create Subscription", description: "Subscribe a client to a plan. [See the documentation](https://developers.baremetrics.com/reference/create-subscription)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/baremetrics/actions/update-customer/update-customer.mjs b/components/baremetrics/actions/update-customer/update-customer.mjs index 0ad4e53d34aaa..c213000c7d055 100644 --- a/components/baremetrics/actions/update-customer/update-customer.mjs +++ b/components/baremetrics/actions/update-customer/update-customer.mjs @@ -4,7 +4,12 @@ export default { key: "baremetrics-update-customer", name: "Update Customer", description: "Update a customer. [See the documentation](https://developers.baremetrics.com/reference/update-customer)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/basecamp/actions/create-campfire-chatbot-message/create-campfire-chatbot-message.mjs b/components/basecamp/actions/create-campfire-chatbot-message/create-campfire-chatbot-message.mjs index a6d2602132b18..69b0d6674aa2b 100644 --- a/components/basecamp/actions/create-campfire-chatbot-message/create-campfire-chatbot-message.mjs +++ b/components/basecamp/actions/create-campfire-chatbot-message/create-campfire-chatbot-message.mjs @@ -6,7 +6,12 @@ export default { name: "Create Campfire Chatbot Message", description: "Creates a message in a Campfire for a Basecamp Chatbot. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/chatbots.md#create-a-line)", type: "action", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { ...common.props, campfireId: { diff --git a/components/basecamp/actions/create-campfire-message/create-campfire-message.mjs b/components/basecamp/actions/create-campfire-message/create-campfire-message.mjs index 7eaba8634f5a5..0686ad5f74637 100644 --- a/components/basecamp/actions/create-campfire-message/create-campfire-message.mjs +++ b/components/basecamp/actions/create-campfire-message/create-campfire-message.mjs @@ -6,7 +6,12 @@ export default { name: "Create Campfire Message", description: "Creates a message in a selected Campfire. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/campfires.md#create-a-campfire-line)", type: "action", - version: "0.0.8", + version: "0.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { ...common.props, campfireId: { diff --git a/components/basecamp/actions/create-card/create-card.mjs b/components/basecamp/actions/create-card/create-card.mjs index 353e06e7a138d..26d1a5911def4 100644 --- a/components/basecamp/actions/create-card/create-card.mjs +++ b/components/basecamp/actions/create-card/create-card.mjs @@ -6,7 +6,12 @@ export default { name: "Create a Card", description: "Creates a card in a selected column. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/card_table_cards.md#create-a-card)", type: "action", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { ...common.props, cardTableId: { diff --git a/components/basecamp/actions/create-comment/create-comment.mjs b/components/basecamp/actions/create-comment/create-comment.mjs index 721ed21a1c789..c5595c3038f65 100644 --- a/components/basecamp/actions/create-comment/create-comment.mjs +++ b/components/basecamp/actions/create-comment/create-comment.mjs @@ -6,7 +6,12 @@ export default { name: "Create a Comment", description: "Creates a comment in a selected recording. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/comments.md#create-a-comment)", type: "action", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { ...common.props, recordingTypeAlert: { diff --git a/components/basecamp/actions/create-message/create-message.mjs b/components/basecamp/actions/create-message/create-message.mjs index 8032fec26a95c..2f1e277e36fce 100644 --- a/components/basecamp/actions/create-message/create-message.mjs +++ b/components/basecamp/actions/create-message/create-message.mjs @@ -6,7 +6,12 @@ export default { name: "Create Message", description: "Creates a message in a selected message board. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/messages.md#create-a-message)", type: "action", - version: "0.0.8", + version: "0.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { ...common.props, messageBoardId: { diff --git a/components/basecamp/actions/create-todo-item/create-todo-item.mjs b/components/basecamp/actions/create-todo-item/create-todo-item.mjs index 823298c52f24b..28965d8da5bda 100644 --- a/components/basecamp/actions/create-todo-item/create-todo-item.mjs +++ b/components/basecamp/actions/create-todo-item/create-todo-item.mjs @@ -6,7 +6,12 @@ export default { name: "Create To-do Item", description: "Creates a to-do item in a selected to-do list. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/todos.md#create-a-to-do)", type: "action", - version: "0.0.8", + version: "0.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { ...common.props, todoSetId: { diff --git a/components/baselinker/actions/create-or-update-inventory-product/create-or-update-inventory-product.mjs b/components/baselinker/actions/create-or-update-inventory-product/create-or-update-inventory-product.mjs index a91296c4639ac..2550f2aa72303 100644 --- a/components/baselinker/actions/create-or-update-inventory-product/create-or-update-inventory-product.mjs +++ b/components/baselinker/actions/create-or-update-inventory-product/create-or-update-inventory-product.mjs @@ -6,7 +6,12 @@ export default { name: "Create Or Update Inventory Product", description: "It allows you to add a new product to BaseLinker catalog. Entering the product with the ID updates previously saved product. [See the Documentation](https://api.baselinker.com/index.php?method=addInventoryProduct).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, inventoryId: { diff --git a/components/baselinker/actions/create-order/create-order.mjs b/components/baselinker/actions/create-order/create-order.mjs index bbccf8fe258f3..36e75103f0b58 100644 --- a/components/baselinker/actions/create-order/create-order.mjs +++ b/components/baselinker/actions/create-order/create-order.mjs @@ -7,7 +7,12 @@ export default { name: "Create Order", description: "It allows adding a new order to the BaseLinker order manager. [See the Documentation](https://api.baselinker.com/index.php?method=addOrder).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, orderStatusId: { diff --git a/components/baselinker/actions/delete-inventory-product/delete-inventory-product.mjs b/components/baselinker/actions/delete-inventory-product/delete-inventory-product.mjs index 21e5fada6b95c..c91dd3b59cc5c 100644 --- a/components/baselinker/actions/delete-inventory-product/delete-inventory-product.mjs +++ b/components/baselinker/actions/delete-inventory-product/delete-inventory-product.mjs @@ -6,7 +6,12 @@ export default { name: "Delete Inventory Product", description: "It allows you to remove the product from BaseLinker catalog. [See the Documentation](https://api.baselinker.com/index.php?method=deleteInventoryProduct).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, inventoryId: { diff --git a/components/baselinker/actions/update-order-status/update-order-status.mjs b/components/baselinker/actions/update-order-status/update-order-status.mjs index adc93593fc1ca..85dce2465ccc5 100644 --- a/components/baselinker/actions/update-order-status/update-order-status.mjs +++ b/components/baselinker/actions/update-order-status/update-order-status.mjs @@ -6,7 +6,12 @@ export default { name: "Update Order Status", description: "It allows you to change order status. [See the Documentation](https://api.baselinker.com/index.php?method=setOrderStatus).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, orderId: { diff --git a/components/bash/actions/run-bash-code/run-bash-code.mjs b/components/bash/actions/run-bash-code/run-bash-code.mjs index a02bbcb2f8ca1..8da6eb6f944c5 100644 --- a/components/bash/actions/run-bash-code/run-bash-code.mjs +++ b/components/bash/actions/run-bash-code/run-bash-code.mjs @@ -2,7 +2,12 @@ import bash from "../../bash.app.mjs"; export default { name: "Run Bash Code", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "bash-run-bash-code", description: "Run any Bash in a Pipedream step within your workflow. Refer to the [Pipedream Bash docs](https://pipedream.com/docs/code/bash) to learn more.", props: { diff --git a/components/beaconchain/actions/get-epoch/get-epoch.mjs b/components/beaconchain/actions/get-epoch/get-epoch.mjs index fb75c4fe52e13..476002ebde958 100644 --- a/components/beaconchain/actions/get-epoch/get-epoch.mjs +++ b/components/beaconchain/actions/get-epoch/get-epoch.mjs @@ -4,7 +4,12 @@ export default { key: "beaconchain-get-epoch", name: "Get Epoch", description: "Returns information for a specified epoch by the epoch number or an epoch tag (can be latest or finalized). [See the documentation](https://beaconcha.in/api/v1/docs/index.html#/Epoch/get_api_v1_epoch__epoch_)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/beaconchain/actions/get-execution-blocks/get-execution-blocks.mjs b/components/beaconchain/actions/get-execution-blocks/get-execution-blocks.mjs index 849ab5104a46e..89e1a7eca8218 100644 --- a/components/beaconchain/actions/get-execution-blocks/get-execution-blocks.mjs +++ b/components/beaconchain/actions/get-execution-blocks/get-execution-blocks.mjs @@ -4,7 +4,12 @@ export default { key: "beaconchain-get-execution-blocks", name: "Get Execution Blocks", description: "Retrieve execution blocks by execution block number. [See the documentation](https://beaconcha.in/api/v1/docs/index.html#/Execution/get_api_v1_execution_block__blockNumber_)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/beaconchain/actions/get-slots/get-slots.mjs b/components/beaconchain/actions/get-slots/get-slots.mjs index 59eb8a851554d..4817151e0d4b5 100644 --- a/components/beaconchain/actions/get-slots/get-slots.mjs +++ b/components/beaconchain/actions/get-slots/get-slots.mjs @@ -4,7 +4,12 @@ export default { key: "beaconchain-get-slots", name: "Get Slots", description: "Returns all slots for a specified epoch. [See the documentation](https://beaconcha.in/api/v1/docs/index.html#/Epoch/get_api_v1_epoch__epoch__slots)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/beaconchain/actions/get-validators/get-validators.mjs b/components/beaconchain/actions/get-validators/get-validators.mjs index a9eb627e7bcc0..ad24f74ae97ac 100644 --- a/components/beaconchain/actions/get-validators/get-validators.mjs +++ b/components/beaconchain/actions/get-validators/get-validators.mjs @@ -4,7 +4,12 @@ export default { key: "beaconchain-get-validators", name: "Get Validators", description: "Returns information for all validators up to 100 by index or public key. [See the documentation](https://beaconcha.in/api/v1/docs/index.html#/Validator/get_api_v1_validator__indexOrPubkey_).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/beanstalkapp/actions/create-code-review/create-code-review.mjs b/components/beanstalkapp/actions/create-code-review/create-code-review.mjs index 9f09ee0c2a057..34ab904d0f66b 100644 --- a/components/beanstalkapp/actions/create-code-review/create-code-review.mjs +++ b/components/beanstalkapp/actions/create-code-review/create-code-review.mjs @@ -6,7 +6,12 @@ export default { name: "Create Code Review", description: "Creates a new code review. This action is essentially the same as clicking the “Request review” button in the app. [See the docs](https://api.beanstalkapp.com/code_review.html).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, repositoryId: { diff --git a/components/beanstalkapp/actions/create-repository/create-repository.mjs b/components/beanstalkapp/actions/create-repository/create-repository.mjs index 03a44f0886b40..86ff2810d1905 100644 --- a/components/beanstalkapp/actions/create-repository/create-repository.mjs +++ b/components/beanstalkapp/actions/create-repository/create-repository.mjs @@ -6,7 +6,12 @@ export default { name: "Create Repository", description: "Creates a new repository. [See the docs](https://api.beanstalkapp.com/repository.html).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, title: { diff --git a/components/beanstalkapp/actions/create-user/create-user.mjs b/components/beanstalkapp/actions/create-user/create-user.mjs index 45ded9a4da4dd..4d827c398eb72 100644 --- a/components/beanstalkapp/actions/create-user/create-user.mjs +++ b/components/beanstalkapp/actions/create-user/create-user.mjs @@ -5,7 +5,12 @@ export default { name: "Create User", description: "Creates a new user. [See the docs](https://api.beanstalkapp.com/user.html).", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { app, login: { diff --git a/components/beebole_app/actions/list-companies/list-companies.mjs b/components/beebole_app/actions/list-companies/list-companies.mjs index 07d1b7c265af7..dc616d1393b2c 100644 --- a/components/beebole_app/actions/list-companies/list-companies.mjs +++ b/components/beebole_app/actions/list-companies/list-companies.mjs @@ -4,7 +4,12 @@ export default { key: "beebole_app-list-companies", name: "List Companies", description: "List all companies in your Beebole account. [See the documentation](https://beebole.com/help/api/#list-companies)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/beebole_app/actions/list-untimed-employees/list-untimed-employees.mjs b/components/beebole_app/actions/list-untimed-employees/list-untimed-employees.mjs index 41a6ce05a6598..9b91714969318 100644 --- a/components/beebole_app/actions/list-untimed-employees/list-untimed-employees.mjs +++ b/components/beebole_app/actions/list-untimed-employees/list-untimed-employees.mjs @@ -4,7 +4,12 @@ export default { name: "List untimed employees", description: "Get a list of employees without any time entry for a given period of time", key: "beebole_app-list-untimed-employees", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/beebole_app/actions/run-report/run-report.mjs b/components/beebole_app/actions/run-report/run-report.mjs index 9b77738c9f0b1..651583b5a5278 100644 --- a/components/beebole_app/actions/run-report/run-report.mjs +++ b/components/beebole_app/actions/run-report/run-report.mjs @@ -4,7 +4,12 @@ export default { name: "Run report", description: "Run a report from Beebole", key: "beebole_app-run-report", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/beekeeper/actions/create-post/create-post.mjs b/components/beekeeper/actions/create-post/create-post.mjs index 22bfb8d879cf3..8054ea7be5ccc 100644 --- a/components/beekeeper/actions/create-post/create-post.mjs +++ b/components/beekeeper/actions/create-post/create-post.mjs @@ -5,7 +5,12 @@ export default { key: "beekeeper-create-post", name: "Create Post", description: "Create a new text or multimedia post in a defined stream. [See the documentation](https://beekeeper.stoplight.io/docs/beekeeper-api/18408b41927b9-creates-a-new-post)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { beekeeper, diff --git a/components/beekeeper/actions/get-profile/get-profile.mjs b/components/beekeeper/actions/get-profile/get-profile.mjs index 1e6c22c76f9c0..acf0ffe802033 100644 --- a/components/beekeeper/actions/get-profile/get-profile.mjs +++ b/components/beekeeper/actions/get-profile/get-profile.mjs @@ -4,7 +4,12 @@ export default { key: "beekeeper-get-profile", name: "Get User Profile", description: "Retrieve the profile details of a specific user. [See the documentation](https://beekeeper.stoplight.io/docs/beekeeper-api/05bcd13b38a67-get-profile-of-the-given-user)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { beekeeper, diff --git a/components/beekeeper/actions/send-message-group-chat/send-message-group-chat.mjs b/components/beekeeper/actions/send-message-group-chat/send-message-group-chat.mjs index b440b02f6ce51..d727c0944f844 100644 --- a/components/beekeeper/actions/send-message-group-chat/send-message-group-chat.mjs +++ b/components/beekeeper/actions/send-message-group-chat/send-message-group-chat.mjs @@ -6,7 +6,12 @@ export default { key: "beekeeper-send-message-group-chat", name: "Send Message to Group Chat", description: "Send a precomposed message to a defined group chat. [See the documentation](https://beekeeper.stoplight.io/docs/beekeeper-api/9075b32d36db4-send-a-message-to-a-group-chat)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { beekeeper, diff --git a/components/belco/actions/add-note-to-conversation/add-note-to-conversation.mjs b/components/belco/actions/add-note-to-conversation/add-note-to-conversation.mjs index a92c8150b9a11..481c4e78e2ef5 100644 --- a/components/belco/actions/add-note-to-conversation/add-note-to-conversation.mjs +++ b/components/belco/actions/add-note-to-conversation/add-note-to-conversation.mjs @@ -4,7 +4,12 @@ export default { key: "belco-add-note-to-conversation", name: "Add Note to Conversation", description: "Add a note to a conversation specified by ID. [See the documentation](https://developers.belco.io/reference/put_conversations-conversationid-addnote)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { belco,