diff --git a/components/niftyimages/actions/add-data-store-record/add-data-store-record.ts b/components/niftyimages/actions/add-data-store-record/add-data-store-record.ts index 7ac35be63bee3..82717a26045f6 100644 --- a/components/niftyimages/actions/add-data-store-record/add-data-store-record.ts +++ b/components/niftyimages/actions/add-data-store-record/add-data-store-record.ts @@ -10,7 +10,12 @@ export default defineAction({ description: "Create or update a Data Store Record [See docs here](https://api.niftyimages.com/)", key: "niftyimages-add-data-store-record", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { niftyimages, @@ -34,7 +39,9 @@ export default defineAction({ try { fields = await this.niftyimages.getDataStoreFields(apiKey); } catch (err) { - throw new ConfigurationError("Error fetching data - please check the **API Key**."); + throw new ConfigurationError(`Error fetching data - please check the **API Key**. + +\`${err.message}\``); } const newPropNames = []; diff --git a/components/niftyimages/actions/update-timer-target-date/update-timer-target-date.ts b/components/niftyimages/actions/update-timer-target-date/update-timer-target-date.ts index 23476ed60b787..05caf5d35b4e1 100644 --- a/components/niftyimages/actions/update-timer-target-date/update-timer-target-date.ts +++ b/components/niftyimages/actions/update-timer-target-date/update-timer-target-date.ts @@ -7,7 +7,12 @@ export default defineAction({ description: "Create or update a Data Store Record [See docs here](https://api.niftyimages.com/)", key: "niftyimages-update-timer-target-date", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { niftyimages, diff --git a/components/niftyimages/package.json b/components/niftyimages/package.json index 0f36a5703f65e..491b56f1bd798 100644 --- a/components/niftyimages/package.json +++ b/components/niftyimages/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/niftyimages", - "version": "0.0.5", + "version": "0.0.6", "description": "Pipedream NiftyImages Components", "main": "dist/app/niftyimages.app.mjs", "keywords": [ diff --git a/components/ninox/actions/create-record/create-record.ts b/components/ninox/actions/create-record/create-record.ts index a0df07cb8463f..0a7d5905ebdb7 100644 --- a/components/ninox/actions/create-record/create-record.ts +++ b/components/ninox/actions/create-record/create-record.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Create Record", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "ninox-create-record", description: "Creates a record. [See docs here](https://docs.ninox.com/en/api/private-cloud-apis#create-update-multiple-records-with-post)", type: "action", diff --git a/components/ninox/actions/update-record/update-record.ts b/components/ninox/actions/update-record/update-record.ts index e42628042140b..7ceed525b08ff 100644 --- a/components/ninox/actions/update-record/update-record.ts +++ b/components/ninox/actions/update-record/update-record.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Update Record", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "ninox-update-record", description: "Updates a record. [See docs here](https://docs.ninox.com/en/api/private-cloud-apis#create-update-multiple-records-with-post)", type: "action", diff --git a/components/onfleet/actions/create-pickup-dropoff-task/create-pickup-dropoff-task.ts b/components/onfleet/actions/create-pickup-dropoff-task/create-pickup-dropoff-task.ts index df6e8015b92dd..9023cc6ed81df 100644 --- a/components/onfleet/actions/create-pickup-dropoff-task/create-pickup-dropoff-task.ts +++ b/components/onfleet/actions/create-pickup-dropoff-task/create-pickup-dropoff-task.ts @@ -1,6 +1,6 @@ import onfleet from "../../app/onfleet.app"; import { - clearObj, prepareData + clearObj, prepareData, } from "../common/utils"; export default { @@ -8,7 +8,12 @@ export default { name: "Create Linked Pickup & Dropoff Tasks", description: "Create a pickup task and dropoff task linked with each other. [See the docs here](https://docs.onfleet.com/reference/create-task)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { onfleet, merchant: { @@ -320,8 +325,8 @@ export default { address: dropoffAddress, }; - let pickupResponse = {}; - let dropoffResponse = {}; + let pickupResponse: { id?: string } = {}; + let dropoffResponse: { id?: string } = {}; let response = {}; let summary = ""; diff --git a/components/onfleet/actions/create-task-template/create-task-template.ts b/components/onfleet/actions/create-task-template/create-task-template.ts index d6370a365ab57..8ac7fff51fd18 100644 --- a/components/onfleet/actions/create-task-template/create-task-template.ts +++ b/components/onfleet/actions/create-task-template/create-task-template.ts @@ -1,6 +1,6 @@ import onfleet from "../../app/onfleet.app"; import { - clearObj, prepareData + clearObj, prepareData, } from "../common/utils"; export default { @@ -8,7 +8,12 @@ export default { name: "Create Task (Template Use)", description: "Creates a single task. Used for simple templates only. [See the docs here](https://docs.onfleet.com/reference/create-task)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { onfleet, merchant: { diff --git a/components/onfleet/actions/create-task/create-task.ts b/components/onfleet/actions/create-task/create-task.ts index d204c0da546d4..67492e6b00ff4 100644 --- a/components/onfleet/actions/create-task/create-task.ts +++ b/components/onfleet/actions/create-task/create-task.ts @@ -1,6 +1,6 @@ import onfleet from "../../app/onfleet.app"; import { - clearObj, prepareData + clearObj, prepareData, } from "../common/utils"; export default { @@ -8,7 +8,12 @@ export default { name: "Create New Task", description: "Create a new task. [See the docs here](https://docs.onfleet.com/reference/create-task)", type: "action", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { onfleet, merchant: { diff --git a/components/onfleet/package.json b/components/onfleet/package.json index 883967ca8b758..b0670cf4508ec 100644 --- a/components/onfleet/package.json +++ b/components/onfleet/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/onfleet", - "version": "0.1.1", + "version": "0.1.2", "description": "Pipedream Onfleet Components", "main": "dist/app/onfleet.app.mjs", "keywords": [ diff --git a/components/persistiq/actions/add-do-not-contact-domain/add-do-not-contact-domain.ts b/components/persistiq/actions/add-do-not-contact-domain/add-do-not-contact-domain.ts index 82059f4d0ecb6..9c4f2aa9d10bd 100644 --- a/components/persistiq/actions/add-do-not-contact-domain/add-do-not-contact-domain.ts +++ b/components/persistiq/actions/add-do-not-contact-domain/add-do-not-contact-domain.ts @@ -3,7 +3,12 @@ import app from "../../app/persistiq.app"; export default defineAction({ key: "persistiq-add-do-not-contact-domain", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Add Do Not Contact Domain", description: "Creates a new DNC domain. [See docs here](https://apidocs.persistiq.com/#create-dnc-domain)", type: "action", diff --git a/components/persistiq/actions/add-prospect-to-campaign/add-prospect-to-campaign.ts b/components/persistiq/actions/add-prospect-to-campaign/add-prospect-to-campaign.ts index 96bb1efe55fef..c4a1e4240c564 100644 --- a/components/persistiq/actions/add-prospect-to-campaign/add-prospect-to-campaign.ts +++ b/components/persistiq/actions/add-prospect-to-campaign/add-prospect-to-campaign.ts @@ -3,7 +3,12 @@ import app from "../../app/persistiq.app"; export default defineAction({ key: "persistiq-add-prospect-to-campaign", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Add Prospect To Campaign", description: "Adds prospect to a campaign. [See docs here](https://apidocs.persistiq.com/#add-lead-to-a-campaign)", type: "action", diff --git a/components/persistiq/actions/create-or-update-prospect/create-or-update-prospect.ts b/components/persistiq/actions/create-or-update-prospect/create-or-update-prospect.ts index a2722fe728302..ab59b06abe7a9 100644 --- a/components/persistiq/actions/create-or-update-prospect/create-or-update-prospect.ts +++ b/components/persistiq/actions/create-or-update-prospect/create-or-update-prospect.ts @@ -3,7 +3,12 @@ import app from "../../app/persistiq.app"; export default defineAction({ key: "persistiq-create-or-update-prospect", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Or Update Prospect", description: "Creates a prospect. Updates if there is already a prospect with the given `email`. [See docs here](https://apidocs.persistiq.com/#create-leads)", type: "action", diff --git a/components/pikaso/actions/screenshot-tweet/screenshot-tweet.ts b/components/pikaso/actions/screenshot-tweet/screenshot-tweet.ts index 26eee0717a4e2..526b2dcbd534a 100644 --- a/components/pikaso/actions/screenshot-tweet/screenshot-tweet.ts +++ b/components/pikaso/actions/screenshot-tweet/screenshot-tweet.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "Screenshot Tweet", description: "With the Pikaso API you can automate creating screenshots from tweets. [See the docs](https://pikaso.me/api) for more information", key: "pikaso-screenshot-tweet", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/practitest/actions/create-requirement/create-requirement.ts b/components/practitest/actions/create-requirement/create-requirement.ts index 6c4194ea26fd3..8f2c44427ccdd 100644 --- a/components/practitest/actions/create-requirement/create-requirement.ts +++ b/components/practitest/actions/create-requirement/create-requirement.ts @@ -9,7 +9,12 @@ export default defineAction({ name: "Create Requirement", description: `Create a requirement [See docs here](${DOCS.createRequirement})`, key: "practitest-create-requirement", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { practitest, diff --git a/components/practitest/actions/create-run/create-run.ts b/components/practitest/actions/create-run/create-run.ts index e5c31ea94d8d3..f20d9142c52b2 100644 --- a/components/practitest/actions/create-run/create-run.ts +++ b/components/practitest/actions/create-run/create-run.ts @@ -10,7 +10,12 @@ export default defineAction({ name: "Create Run", description: `Create a run [See docs here](${DOCS.createRun})`, key: "practitest-create-run", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { practitest, @@ -113,7 +118,9 @@ export default defineAction({ }; } catch (err) { throw new ConfigurationError( - `**JSON parse error** - check if the \`${prop}\` prop is a valid JSON-stringified object`, + `**JSON parse error** - check if the \`${prop}\` prop is a valid JSON-stringified object + +\`${err.message}\``, ); } } diff --git a/components/practitest/package.json b/components/practitest/package.json index 52fefa5db8b7d..6159749c7bfb6 100644 --- a/components/practitest/package.json +++ b/components/practitest/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/practitest", - "version": "0.0.3", + "version": "0.0.4", "description": "Pipedream PractiTest Components", "main": "dist/app/practitest.app.mjs", "keywords": [ diff --git a/components/profitwell/actions/churn-subscription/churn-subscription.ts b/components/profitwell/actions/churn-subscription/churn-subscription.ts index 1a81fe007ae0a..77e80a36c4a2f 100644 --- a/components/profitwell/actions/churn-subscription/churn-subscription.ts +++ b/components/profitwell/actions/churn-subscription/churn-subscription.ts @@ -9,7 +9,12 @@ export default defineAction({ description: "Churn a subscription [See docs here](https://profitwellapiv2.docs.apiary.io/#/reference/manually-added-customers/updating-subscriptions/churn-a-subscription)", key: "profitwell-churn-subscription", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { profitwell, diff --git a/components/profitwell/actions/create-subscription/create-subscription.ts b/components/profitwell/actions/create-subscription/create-subscription.ts index ddeb6faa999c5..3002208435c4e 100644 --- a/components/profitwell/actions/create-subscription/create-subscription.ts +++ b/components/profitwell/actions/create-subscription/create-subscription.ts @@ -9,7 +9,12 @@ export default defineAction({ description: "Create a subscription [See docs here](https://profitwellapiv2.docs.apiary.io/#/reference/manually-added-customers/creating-subscriptions/create-a-subscription)", key: "profitwell-create-subscription", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { profitwell, diff --git a/components/profitwell/actions/get-customer-info/get-customer-info.ts b/components/profitwell/actions/get-customer-info/get-customer-info.ts index c8885a5298fe8..7595bf4999843 100644 --- a/components/profitwell/actions/get-customer-info/get-customer-info.ts +++ b/components/profitwell/actions/get-customer-info/get-customer-info.ts @@ -8,7 +8,12 @@ export default defineAction({ description: "Get data for a customer [See docs here](https://profitwellapiv2.docs.apiary.io/#/reference/customers/retrieving-a-customer-by-id)", key: "profitwell-get-customer-info", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { profitwell, diff --git a/components/profitwell/actions/update-subscription/update-subscription.ts b/components/profitwell/actions/update-subscription/update-subscription.ts index f8efe4095525a..1bb01e4c555af 100644 --- a/components/profitwell/actions/update-subscription/update-subscription.ts +++ b/components/profitwell/actions/update-subscription/update-subscription.ts @@ -9,7 +9,12 @@ export default defineAction({ description: "Upgrade/downgrade a subscription [See docs here](https://profitwellapiv2.docs.apiary.io/#/reference/manually-added-customers/updating-subscriptions/upgrade-downgrade-a-subscription)", key: "profitwell-update-subscription", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { profitwell, diff --git a/components/quickemailverification/actions/verify-email-address/verify-email-address.ts b/components/quickemailverification/actions/verify-email-address/verify-email-address.ts index 8bd48022da5f1..230e5254bbd43 100644 --- a/components/quickemailverification/actions/verify-email-address/verify-email-address.ts +++ b/components/quickemailverification/actions/verify-email-address/verify-email-address.ts @@ -9,7 +9,12 @@ export default defineAction({ description: "Verify an email address [See docs here](http://docs.quickemailverification.com/email-verification-api/verify-an-email-address)", key: "quickemailverification-verify-email-address", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { quickemailverification, diff --git a/components/raven_tools/actions/add-keyword/add-keyword.ts b/components/raven_tools/actions/add-keyword/add-keyword.ts index e95e1cd5489df..5af3fea53a4a6 100644 --- a/components/raven_tools/actions/add-keyword/add-keyword.ts +++ b/components/raven_tools/actions/add-keyword/add-keyword.ts @@ -10,7 +10,12 @@ export default defineAction({ name: "Add Keyword", description: `Add a keyword to a domain [See docs here](${DOCS})`, key: "raven_tools-add-keyword", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/repuso/actions/add-invite-request/add-invite-request.ts b/components/repuso/actions/add-invite-request/add-invite-request.ts index b5438b21b423b..4d2cce5672277 100644 --- a/components/repuso/actions/add-invite-request/add-invite-request.ts +++ b/components/repuso/actions/add-invite-request/add-invite-request.ts @@ -9,7 +9,12 @@ export default defineAction({ description: "Add an invite request [See docs here](https://documenter.getpostman.com/view/4975691/TzzGFYg3#f417c9ce-2376-495c-85c3-bdcfc204eee2)", key: "repuso-add-invite-request", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { repuso, diff --git a/components/resend/actions/retrieve-email/retrieve-email.ts b/components/resend/actions/retrieve-email/retrieve-email.ts index 08c009a0c0ab3..68d0c9d1acbc3 100644 --- a/components/resend/actions/retrieve-email/retrieve-email.ts +++ b/components/resend/actions/retrieve-email/retrieve-email.ts @@ -6,7 +6,12 @@ export default defineAction({ description: "Retrieve a single email [See the documentation](https://resend.com/docs/api-reference/emails/retrieve-email)", key: "resend-retrieve-email", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/resend/actions/send-email/send-email.ts b/components/resend/actions/send-email/send-email.ts index 9708ef8ddc280..4352b0666b6fa 100644 --- a/components/resend/actions/send-email/send-email.ts +++ b/components/resend/actions/send-email/send-email.ts @@ -9,7 +9,12 @@ export default defineAction({ description: "Send an email [See the documentation](https://resend.com/docs/api-reference/emails/send-email)", key: "resend-send-email", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/reversecontact/actions/enrich-profile/enrich-profile.ts b/components/reversecontact/actions/enrich-profile/enrich-profile.ts index ccc73118d2b1b..f0db7c7c657a8 100644 --- a/components/reversecontact/actions/enrich-profile/enrich-profile.ts +++ b/components/reversecontact/actions/enrich-profile/enrich-profile.ts @@ -3,7 +3,12 @@ import app from "../../app/reversecontact.app"; export default defineAction({ key: "reversecontact-enrich-profile", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Enrich Profile", description: "Returns enriched profile information with the given email. [See docs here](https://docs.reversecontact.com/enriched_profile_check)", type: "action", diff --git a/components/rise/actions/create-invitation/create-invitation.ts b/components/rise/actions/create-invitation/create-invitation.ts index 9bcb0e2bbc405..ca70861d3b28e 100644 --- a/components/rise/actions/create-invitation/create-invitation.ts +++ b/components/rise/actions/create-invitation/create-invitation.ts @@ -4,7 +4,12 @@ import constants from "../common/constants"; export default defineAction({ name: "Create Invitation", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "rise-create-invitation", description: "Creates a invitation. [See docs here](https://help.rise.com/en/articles/4177042-invitations-api)", type: "action", diff --git a/components/rise/actions/find-invitations/find-invitations.ts b/components/rise/actions/find-invitations/find-invitations.ts index 314c19ce6d385..5005fd0c0d6a6 100644 --- a/components/rise/actions/find-invitations/find-invitations.ts +++ b/components/rise/actions/find-invitations/find-invitations.ts @@ -3,7 +3,12 @@ import rise from "../../app/rise.app"; export default defineAction({ name: "Find Invitations", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "rise-find-invitations", description: "Find a list of invitations. [See docs here](https://help.rise.com/en/articles/4177042-invitations-api)", type: "action", diff --git a/components/rise/actions/find-users/find-users.ts b/components/rise/actions/find-users/find-users.ts index 536251b16104c..26ef80fa3907b 100644 --- a/components/rise/actions/find-users/find-users.ts +++ b/components/rise/actions/find-users/find-users.ts @@ -3,7 +3,12 @@ import rise from "../../app/rise.app"; export default defineAction({ name: "Find Users", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "rise-find-users", description: "Find a list of users. [See docs here](https://help.rise.com/en/articles/4177145-users-api)", type: "action", diff --git a/components/rss/actions/merge-rss-feeds/merge-rss-feeds.ts b/components/rss/actions/merge-rss-feeds/merge-rss-feeds.ts index 53d207fe79cd9..f5f8ac20c5d4e 100644 --- a/components/rss/actions/merge-rss-feeds/merge-rss-feeds.ts +++ b/components/rss/actions/merge-rss-feeds/merge-rss-feeds.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "Merge RSS Feeds", description: "Retrieve multiple RSS feeds and return a merged array of items sorted by date [See documentation](https://www.rssboard.org/rss-specification)", key: "rss-merge-rss-feeds", - version: "1.2.7", + version: "1.2.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { rss, diff --git a/components/salesmate/actions/add-contact/add-contact.ts b/components/salesmate/actions/add-contact/add-contact.ts index a6cbfd281eaf0..ebdb93834c80a 100644 --- a/components/salesmate/actions/add-contact/add-contact.ts +++ b/components/salesmate/actions/add-contact/add-contact.ts @@ -3,7 +3,12 @@ import salesmate from "../../app/salesmate.app"; export default defineAction({ name: "Add Contact", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "salesmate-add-contact", description: "This API is used to add a contact. [See docs here](https://apidocs.salesmate.io/#b768facc-930f-4f93-b9a7-a26a0875b6b0)", type: "action", diff --git a/components/salesmate/actions/add-deal/add-deal.ts b/components/salesmate/actions/add-deal/add-deal.ts index ed0c5f381f209..f491b60843fa9 100644 --- a/components/salesmate/actions/add-deal/add-deal.ts +++ b/components/salesmate/actions/add-deal/add-deal.ts @@ -3,7 +3,12 @@ import salesmate from "../../app/salesmate.app"; export default defineAction({ name: "Add Deal", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "salesmate-add-deal", description: "This API is used to add a deal. [See docs here](https://apidocs.salesmate.io/#fc738a12-8757-46aa-8625-3379fa205377)", type: "action", diff --git a/components/salesmate/actions/update-contact/update-contact.ts b/components/salesmate/actions/update-contact/update-contact.ts index c9046e9af6d25..cd70b579a36ec 100644 --- a/components/salesmate/actions/update-contact/update-contact.ts +++ b/components/salesmate/actions/update-contact/update-contact.ts @@ -3,7 +3,12 @@ import salesmate from "../../app/salesmate.app"; export default defineAction({ name: "Update Contact", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "salesmate-update-contact", description: "This API is used to update a contact's details. [See docs here](https://apidocs.salesmate.io/#72ca69e0-e70d-4fc5-837b-a758963300b3)", type: "action", diff --git a/components/serveravatar/actions/create-application-domain/create-application-domain.ts b/components/serveravatar/actions/create-application-domain/create-application-domain.ts index 37615a7a27563..67dd3bacb3a47 100644 --- a/components/serveravatar/actions/create-application-domain/create-application-domain.ts +++ b/components/serveravatar/actions/create-application-domain/create-application-domain.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "Create Application Domain", description: "Add a new application domain for the application. [See the docs here](https://serveravatar.com/api-docs/endpoint/application-domain/create.html)", key: "serveravatar-create-application-domain", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { serverAvatarApp, diff --git a/components/shipcloud/actions/create-shipment-quote/create-shipment-quote.ts b/components/shipcloud/actions/create-shipment-quote/create-shipment-quote.ts index f0b5bd477e57c..830e60d2c6297 100644 --- a/components/shipcloud/actions/create-shipment-quote/create-shipment-quote.ts +++ b/components/shipcloud/actions/create-shipment-quote/create-shipment-quote.ts @@ -8,7 +8,12 @@ export default defineAction({ description: "Create a shipment quote [See docs here](https://developers.shipcloud.io/reference/#creating-a-shipment-quote)", key: "shipcloud-create-shipment-quote", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shipcloud, diff --git a/components/shipcloud/actions/create-shipment/create-shipment.ts b/components/shipcloud/actions/create-shipment/create-shipment.ts index 34ae8b6c818a3..5b9ae00e12a10 100644 --- a/components/shipcloud/actions/create-shipment/create-shipment.ts +++ b/components/shipcloud/actions/create-shipment/create-shipment.ts @@ -8,7 +8,12 @@ export default defineAction({ description: "Create a shipment [See docs here](https://developers.shipcloud.io/reference/#creating-a-shipment)", key: "shipcloud-create-shipment", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { shipcloud, diff --git a/components/shipcloud/actions/get-shipment-info/get-shipment-info.ts b/components/shipcloud/actions/get-shipment-info/get-shipment-info.ts index 615f9471c186e..d528a69b937b4 100644 --- a/components/shipcloud/actions/get-shipment-info/get-shipment-info.ts +++ b/components/shipcloud/actions/get-shipment-info/get-shipment-info.ts @@ -8,7 +8,12 @@ export default defineAction({ description: "Retrieve details for a shipment [See docs here](https://developers.shipcloud.io/reference/#getting-information-about-a-shipment)", key: "shipcloud-get-shipment-info", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { shipcloud, diff --git a/components/smaily/actions/run-automation-workflow/run-automation-workflow.ts b/components/smaily/actions/run-automation-workflow/run-automation-workflow.ts index 8528a3161ffa7..102a317e069e5 100644 --- a/components/smaily/actions/run-automation-workflow/run-automation-workflow.ts +++ b/components/smaily/actions/run-automation-workflow/run-automation-workflow.ts @@ -3,7 +3,12 @@ import smaily from "../../app/smaily.app"; export default defineAction({ name: "Run Automation Workflow", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "smaily-run-automation-workflow", description: "Send Automation Workflow. [See docs here](https://smaily.com/help/api/automations-2/autoresponder)", type: "action", diff --git a/components/smaily/actions/update-subscriber/update-subscriber.ts b/components/smaily/actions/update-subscriber/update-subscriber.ts index 095c5dfa910ba..773a96d4c43f3 100644 --- a/components/smaily/actions/update-subscriber/update-subscriber.ts +++ b/components/smaily/actions/update-subscriber/update-subscriber.ts @@ -3,7 +3,12 @@ import smaily from "../../app/smaily.app"; export default defineAction({ name: "Update Subscriber", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "smaily-update-subscriber", description: "Updates a subscriber. [See docs here](https://smaily.com/help/api/subscribers-2/create-and-update-subscribers/)", type: "action", diff --git a/components/smtp2go/actions/send-single-email-with-template/send-single-email-with-template.ts b/components/smtp2go/actions/send-single-email-with-template/send-single-email-with-template.ts index 7791ae3530f8c..6f5becc3d4859 100644 --- a/components/smtp2go/actions/send-single-email-with-template/send-single-email-with-template.ts +++ b/components/smtp2go/actions/send-single-email-with-template/send-single-email-with-template.ts @@ -6,7 +6,12 @@ export default { key: "smtp2go-send-single-email-with-template", name: "Send Single Email with Template", description: "Send a single email with SMTP2GO using a pre-defined template and data object [(See docs here)](https://apidoc.smtp2go.com/documentation/#/POST%20/email/send)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smtp2go, diff --git a/components/smtp2go/actions/send-single-email/send-single-email.ts b/components/smtp2go/actions/send-single-email/send-single-email.ts index 0649313132510..32860cd561fab 100644 --- a/components/smtp2go/actions/send-single-email/send-single-email.ts +++ b/components/smtp2go/actions/send-single-email/send-single-email.ts @@ -6,7 +6,12 @@ export default { key: "smtp2go-send-single-email", name: "Send Single Email", description: "Send a single email with SMTP2GO [(See docs here)](https://apidoc.smtp2go.com/documentation/#/POST%20/email/send)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { smtp2go, diff --git a/components/tookan/actions/create-appointment-task/create-appointment-task.ts b/components/tookan/actions/create-appointment-task/create-appointment-task.ts index 63bb696ec9bf1..e60d8894e364c 100644 --- a/components/tookan/actions/create-appointment-task/create-appointment-task.ts +++ b/components/tookan/actions/create-appointment-task/create-appointment-task.ts @@ -10,7 +10,12 @@ export default defineAction({ description: "Create an appointment task [See docs here](https://tookanapi.docs.apiary.io/#reference/task/create-task/create-an-appointment-task)", key: "tookan-create-appointment-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/tookan/actions/create-delivery-task/create-delivery-task.ts b/components/tookan/actions/create-delivery-task/create-delivery-task.ts index 92b2be4a31718..cfba6a67bf0ee 100644 --- a/components/tookan/actions/create-delivery-task/create-delivery-task.ts +++ b/components/tookan/actions/create-delivery-task/create-delivery-task.ts @@ -10,7 +10,12 @@ export default defineAction({ description: "Create a delivery task [See docs here](https://tookanapi.docs.apiary.io/#reference/task/create-task/create-a-delivery-task)", key: "tookan-create-delivery-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/tookan/actions/create-field-workforce-task/create-field-workforce-task.ts b/components/tookan/actions/create-field-workforce-task/create-field-workforce-task.ts index e6c379ebcfdc3..e6062ed28840c 100644 --- a/components/tookan/actions/create-field-workforce-task/create-field-workforce-task.ts +++ b/components/tookan/actions/create-field-workforce-task/create-field-workforce-task.ts @@ -10,7 +10,12 @@ export default defineAction({ description: "Create a field workforce task [See docs here](https://tookanapi.docs.apiary.io/#reference/task/create-task/create-a-field-workforce-task)", key: "tookan-create-field-workforce-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/tookan/actions/create-pickup-and-delivery-task/create-pickup-and-delivery-task.ts b/components/tookan/actions/create-pickup-and-delivery-task/create-pickup-and-delivery-task.ts index b130622069dbc..acbf8c4c8223c 100644 --- a/components/tookan/actions/create-pickup-and-delivery-task/create-pickup-and-delivery-task.ts +++ b/components/tookan/actions/create-pickup-and-delivery-task/create-pickup-and-delivery-task.ts @@ -10,7 +10,12 @@ export default defineAction({ description: "Create a pickup and delivery task [See docs here](https://tookanapi.docs.apiary.io/#reference/task/create-task/create-a-pickup-and-delivery-task)", key: "tookan-create-pickup-and-delivery-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/tookan/actions/create-pickup-task/create-pickup-task.ts b/components/tookan/actions/create-pickup-task/create-pickup-task.ts index 5bc0cb98c032e..222b473772eb7 100644 --- a/components/tookan/actions/create-pickup-task/create-pickup-task.ts +++ b/components/tookan/actions/create-pickup-task/create-pickup-task.ts @@ -10,7 +10,12 @@ export default defineAction({ description: "Create a pickup task [See docs here](https://tookanapi.docs.apiary.io/#reference/task/create-task/create-a-pickup-task)", key: "tookan-create-pickup-task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/add-user-to-list/add-user-to-list.ts b/components/twitter/actions/add-user-to-list/add-user-to-list.ts index b3193c03eb7e8..5cf9ec382a55c 100644 --- a/components/twitter/actions/add-user-to-list/add-user-to-list.ts +++ b/components/twitter/actions/add-user-to-list/add-user-to-list.ts @@ -12,7 +12,12 @@ export default defineAction({ key: "twitter-add-user-to-list", name: "Add User To List", description: `Add a member to a list owned by the user. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/create-tweet/create-tweet.ts b/components/twitter/actions/create-tweet/create-tweet.ts index 551e2cbc988af..f1271a6b88900 100644 --- a/components/twitter/actions/create-tweet/create-tweet.ts +++ b/components/twitter/actions/create-tweet/create-tweet.ts @@ -10,7 +10,12 @@ export default defineAction({ key: "twitter-create-tweet", name: "Create Tweet", description: `Create a new tweet. [See the documentation](${DOCS_LINK})`, - version: "2.1.6", + version: "2.1.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/twitter/actions/delete-tweet/delete-tweet.ts b/components/twitter/actions/delete-tweet/delete-tweet.ts index 447fb69daaac3..01c10b8f1d9d1 100644 --- a/components/twitter/actions/delete-tweet/delete-tweet.ts +++ b/components/twitter/actions/delete-tweet/delete-tweet.ts @@ -11,7 +11,12 @@ export default defineAction({ key: "twitter-delete-tweet", name: "Delete Tweet", description: `Remove a posted tweet. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/follow-user/follow-user.ts b/components/twitter/actions/follow-user/follow-user.ts index a7b5d18c5fd24..b7ab6c79e1277 100644 --- a/components/twitter/actions/follow-user/follow-user.ts +++ b/components/twitter/actions/follow-user/follow-user.ts @@ -12,7 +12,12 @@ export default defineAction({ key: "twitter-follow-user", name: "Follow User", description: `Follow a user. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/get-tweet/get-tweet.ts b/components/twitter/actions/get-tweet/get-tweet.ts index 8b7619db806c2..eb8cbe5a6f593 100644 --- a/components/twitter/actions/get-tweet/get-tweet.ts +++ b/components/twitter/actions/get-tweet/get-tweet.ts @@ -15,7 +15,12 @@ export default defineAction({ key: "twitter-get-tweet", name: "Get Tweet", description: `Return a single tweet specified by ID. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/get-user/get-user.ts b/components/twitter/actions/get-user/get-user.ts index 5969199d55479..ff2b968742a30 100644 --- a/components/twitter/actions/get-user/get-user.ts +++ b/components/twitter/actions/get-user/get-user.ts @@ -17,7 +17,12 @@ export default defineAction({ key: "twitter-get-user", name: "Get User", description: `Get information about a user. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/like-tweet/like-tweet.ts b/components/twitter/actions/like-tweet/like-tweet.ts index c19eab42cfdc8..b9e70b1d71cb3 100644 --- a/components/twitter/actions/like-tweet/like-tweet.ts +++ b/components/twitter/actions/like-tweet/like-tweet.ts @@ -11,7 +11,12 @@ export default defineAction({ key: "twitter-like-tweet", name: "Like Tweet", description: `Like a tweet specified by its ID. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/list-favorites/list-favorites.ts b/components/twitter/actions/list-favorites/list-favorites.ts index 3d518d77d7292..87767ab855edd 100644 --- a/components/twitter/actions/list-favorites/list-favorites.ts +++ b/components/twitter/actions/list-favorites/list-favorites.ts @@ -23,7 +23,12 @@ export default defineAction({ key: "twitter-list-favorites", name: "List Liked Tweets", description: `Return the most recent tweets liked by you or the specified user. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/list-followers/list-followers.ts b/components/twitter/actions/list-followers/list-followers.ts index f777bb526fd0f..26a307ddfed65 100644 --- a/components/twitter/actions/list-followers/list-followers.ts +++ b/components/twitter/actions/list-followers/list-followers.ts @@ -23,7 +23,12 @@ export default defineAction({ key: "twitter-list-followers", name: "List Followers", description: `Return a collection of user objects for users following the specified user. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/list-lists/list-lists.ts b/components/twitter/actions/list-lists/list-lists.ts index 1aadc6fdd0aaf..80d847a4287d9 100644 --- a/components/twitter/actions/list-lists/list-lists.ts +++ b/components/twitter/actions/list-lists/list-lists.ts @@ -23,7 +23,12 @@ export default defineAction({ key: "twitter-list-lists", name: "List Lists", description: `Get all lists owned by a user. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/list-mentions/list-mentions.ts b/components/twitter/actions/list-mentions/list-mentions.ts index 154e29012a178..7fccfb33a21e2 100644 --- a/components/twitter/actions/list-mentions/list-mentions.ts +++ b/components/twitter/actions/list-mentions/list-mentions.ts @@ -23,7 +23,12 @@ export default defineAction({ key: "twitter-list-mentions", name: "List Mentions", description: `Return the most recent mentions for the specified user. [See the documentation](${DOCS_LINK})`, - version: "2.0.9", + version: "2.0.10", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/list-user-tweets/list-user-tweets.ts b/components/twitter/actions/list-user-tweets/list-user-tweets.ts index 1bbed1747ee0f..e44f2d34ae20c 100644 --- a/components/twitter/actions/list-user-tweets/list-user-tweets.ts +++ b/components/twitter/actions/list-user-tweets/list-user-tweets.ts @@ -23,7 +23,12 @@ export default defineAction({ key: "twitter-list-user-tweets", name: "List User Tweets", description: `Return a collection of the most recent tweets posted by a user. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/retweet/retweet.ts b/components/twitter/actions/retweet/retweet.ts index 3d1e4de0e9338..3379277b3eed0 100644 --- a/components/twitter/actions/retweet/retweet.ts +++ b/components/twitter/actions/retweet/retweet.ts @@ -11,7 +11,12 @@ export default defineAction({ key: "twitter-retweet", name: "Retweet a tweet", description: `Retweet a tweet specified by ID. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/send-dm/send-dm.ts b/components/twitter/actions/send-dm/send-dm.ts index d72378d47f3ef..ce5aa55a4c582 100644 --- a/components/twitter/actions/send-dm/send-dm.ts +++ b/components/twitter/actions/send-dm/send-dm.ts @@ -12,7 +12,12 @@ export default defineAction({ key: "twitter-send-dm", name: "Send Direct Message (DM)", description: `Send a message to a user. [See the documentation](${DOCS_LINK})`, - version: "1.0.6", + version: "1.0.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/simple-search-in-list/simple-search-in-list.ts b/components/twitter/actions/simple-search-in-list/simple-search-in-list.ts index c7ab79977a47e..423d21aeaff22 100644 --- a/components/twitter/actions/simple-search-in-list/simple-search-in-list.ts +++ b/components/twitter/actions/simple-search-in-list/simple-search-in-list.ts @@ -21,7 +21,12 @@ export default defineAction({ key: "twitter-simple-search-in-list", name: "Search Tweets in List", description: `Search Tweets by text in a list. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/simple-search/simple-search.ts b/components/twitter/actions/simple-search/simple-search.ts index 12ba5e5665315..724eb0d4d7c60 100644 --- a/components/twitter/actions/simple-search/simple-search.ts +++ b/components/twitter/actions/simple-search/simple-search.ts @@ -21,7 +21,12 @@ export default defineAction({ key: "twitter-simple-search", name: "Search Tweets", description: `Retrieve Tweets from the last seven days that match a query. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/unfollow-user/unfollow-user.ts b/components/twitter/actions/unfollow-user/unfollow-user.ts index 284cbd19c551d..e3b05c9a056ef 100644 --- a/components/twitter/actions/unfollow-user/unfollow-user.ts +++ b/components/twitter/actions/unfollow-user/unfollow-user.ts @@ -12,7 +12,12 @@ export default defineAction({ key: "twitter-unfollow-user", name: "Unfollow User", description: `Unfollow a user. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/unlike-tweet/unlike-tweet.ts b/components/twitter/actions/unlike-tweet/unlike-tweet.ts index 5a0622fe22261..172c36e039aa0 100644 --- a/components/twitter/actions/unlike-tweet/unlike-tweet.ts +++ b/components/twitter/actions/unlike-tweet/unlike-tweet.ts @@ -11,7 +11,12 @@ export default defineAction({ key: "twitter-unlike-tweet", name: "Unlike Tweet", description: `Unlike a tweet specified by its ID. [See the documentation](${DOCS_LINK})`, - version: "2.0.8", + version: "2.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/twitter/actions/upload-media/upload-media.ts b/components/twitter/actions/upload-media/upload-media.ts index 6b633509c2cf9..f2a227676d19b 100644 --- a/components/twitter/actions/upload-media/upload-media.ts +++ b/components/twitter/actions/upload-media/upload-media.ts @@ -12,7 +12,12 @@ export default defineAction({ key: "twitter-upload-media", name: "Upload Media", description: `Upload new media. [See the documentation](${DOCS_LINK})`, - version: "0.0.13", + version: "0.0.14", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/verdict_as_a_service/actions/request-verdict-for-file/request-verdict-for-file.ts b/components/verdict_as_a_service/actions/request-verdict-for-file/request-verdict-for-file.ts index 300191e355875..6742c35f947c1 100644 --- a/components/verdict_as_a_service/actions/request-verdict-for-file/request-verdict-for-file.ts +++ b/components/verdict_as_a_service/actions/request-verdict-for-file/request-verdict-for-file.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "Request Verdict For A File", description: "Scans a file for malware and other threats. [See the docs here](https://github.com/GDATASoftwareAG/vaas/tree/main/typescript#request-a-verdict)", key: "verdict_as_a_service-request-verdict-for-file", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { verdict, diff --git a/components/waitwhile/actions/add-customer-note-entry/add-customer-note-entry.ts b/components/waitwhile/actions/add-customer-note-entry/add-customer-note-entry.ts index 9dc8401d0bb15..232da7403d6f7 100644 --- a/components/waitwhile/actions/add-customer-note-entry/add-customer-note-entry.ts +++ b/components/waitwhile/actions/add-customer-note-entry/add-customer-note-entry.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Add Customer Note Entry", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-add-customer-note-entry", description: "Add a customer note entry. [See the doc here](https://developers.waitwhile.com/reference/postcustomerscustomeridnotes)", props: { diff --git a/components/waitwhile/actions/create-customer/create-customer.ts b/components/waitwhile/actions/create-customer/create-customer.ts index 9593edcdacb30..83ab314034c74 100644 --- a/components/waitwhile/actions/create-customer/create-customer.ts +++ b/components/waitwhile/actions/create-customer/create-customer.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Create Customer", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-create-customer", description: "Create a customer. [See the doc here](https://developers.waitwhile.com/reference/postcustomers)", props: { diff --git a/components/waitwhile/actions/create-user-invite/create-user-invite.ts b/components/waitwhile/actions/create-user-invite/create-user-invite.ts index 022b0735ed744..c22d1412dd058 100644 --- a/components/waitwhile/actions/create-user-invite/create-user-invite.ts +++ b/components/waitwhile/actions/create-user-invite/create-user-invite.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Create User Invite", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-create-user-invite", description: "Create a user invite. [See the doc here](https://developers.waitwhile.com/reference/postinvites)", props: { diff --git a/components/waitwhile/actions/delete-customer-note-entry/delete-customer-note-entry.ts b/components/waitwhile/actions/delete-customer-note-entry/delete-customer-note-entry.ts index b6c6ae02985da..7dfdf495a4e9a 100644 --- a/components/waitwhile/actions/delete-customer-note-entry/delete-customer-note-entry.ts +++ b/components/waitwhile/actions/delete-customer-note-entry/delete-customer-note-entry.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Delete Customer Note Entry", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-delete-customer-note-entry", description: "Delete a customer note entry. [See the doc here](https://developers.waitwhile.com/reference/deletecustomerscustomeridnotesnoteid)", props: { diff --git a/components/waitwhile/actions/export-customers/export-customers.ts b/components/waitwhile/actions/export-customers/export-customers.ts index 3c4e7faae58e9..5485cdd7de333 100644 --- a/components/waitwhile/actions/export-customers/export-customers.ts +++ b/components/waitwhile/actions/export-customers/export-customers.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Export Customers", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "waitwhile-export-customers", description: "Export Customers to CSV or JSON format. [See the doc here](https://developers.waitwhile.com/reference/getcustomersexport)", props: { diff --git a/components/waitwhile/actions/get-customer-note-id/get-customer-note-id.ts b/components/waitwhile/actions/get-customer-note-id/get-customer-note-id.ts index 230ec4dcc2a43..9c8e7e2be4a97 100644 --- a/components/waitwhile/actions/get-customer-note-id/get-customer-note-id.ts +++ b/components/waitwhile/actions/get-customer-note-id/get-customer-note-id.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Get Customer Note Id", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "waitwhile-get-customer-note-id", description: "Get customer note by ID. [See the doc here](https://developers.waitwhile.com/reference/getcustomerscustomeridnotescustomernoteid)", props: { diff --git a/components/waitwhile/actions/import-customers/import-customers.ts b/components/waitwhile/actions/import-customers/import-customers.ts index 0ede7df56a448..61187f73423d4 100644 --- a/components/waitwhile/actions/import-customers/import-customers.ts +++ b/components/waitwhile/actions/import-customers/import-customers.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Import Customers", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-import-customers", description: "Import customers. [See the doc here](https://developers.waitwhile.com/reference/postcustomersimport)", props: { diff --git a/components/waitwhile/actions/list-customer-note-entries/list-customer-note-entries.ts b/components/waitwhile/actions/list-customer-note-entries/list-customer-note-entries.ts index efe79fdeef374..ad84bd21afb5c 100644 --- a/components/waitwhile/actions/list-customer-note-entries/list-customer-note-entries.ts +++ b/components/waitwhile/actions/list-customer-note-entries/list-customer-note-entries.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "List Customer Note Entries", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "waitwhile-list-customer-note-entries", description: "List customer note entries. [See the doc here](https://developers.waitwhile.com/reference/getcustomerscustomeridnotes)", props: { diff --git a/components/waitwhile/actions/list-customers/list-customers.ts b/components/waitwhile/actions/list-customers/list-customers.ts index fdcdf69f2c307..26ad56ebb1acd 100644 --- a/components/waitwhile/actions/list-customers/list-customers.ts +++ b/components/waitwhile/actions/list-customers/list-customers.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "List Customers", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "waitwhile-list-customers", description: "List of customers. [See the doc here](https://developers.waitwhile.com/reference/listcustomers)", props: { diff --git a/components/waitwhile/actions/list-user-invites/list-user-invites.ts b/components/waitwhile/actions/list-user-invites/list-user-invites.ts index 4ba8fd984c5e5..9be37dd2b0eb5 100644 --- a/components/waitwhile/actions/list-user-invites/list-user-invites.ts +++ b/components/waitwhile/actions/list-user-invites/list-user-invites.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "List User Invites", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "waitwhile-list-user-invites", description: "List of user invites. [See the doc here](https://developers.waitwhile.com/reference/listinvites)", props: { diff --git a/components/waitwhile/actions/remove-customer/remove-customer.ts b/components/waitwhile/actions/remove-customer/remove-customer.ts index f5fc91d293725..902e1c0354194 100644 --- a/components/waitwhile/actions/remove-customer/remove-customer.ts +++ b/components/waitwhile/actions/remove-customer/remove-customer.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Remove Customer", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-remove-customer", description: "Remove a customer. [See the doc here](https://developers.waitwhile.com/reference/deletecustomerscustomerid)", props: { diff --git a/components/waitwhile/actions/remove-user-invite/remove-user-invite.ts b/components/waitwhile/actions/remove-user-invite/remove-user-invite.ts index 300f83ebf9c03..4ee0590cd47d8 100644 --- a/components/waitwhile/actions/remove-user-invite/remove-user-invite.ts +++ b/components/waitwhile/actions/remove-user-invite/remove-user-invite.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Remove User Invite", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-remove-user-invite", description: "Remove a user invite. [See the doc here](https://developers.waitwhile.com/reference/deleteinvitesinviteid)", props: { diff --git a/components/waitwhile/actions/resend-user-invite/resend-user-invite.ts b/components/waitwhile/actions/resend-user-invite/resend-user-invite.ts index e113f9322a819..db75990b210ac 100644 --- a/components/waitwhile/actions/resend-user-invite/resend-user-invite.ts +++ b/components/waitwhile/actions/resend-user-invite/resend-user-invite.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Resend User Invite", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-resend-user-invite", description: "Resend a user invite. [See the doc here](https://developers.waitwhile.com/reference/postinvitesinviteidresend)", props: { diff --git a/components/waitwhile/actions/retrieve-customer/retrieve-customer.ts b/components/waitwhile/actions/retrieve-customer/retrieve-customer.ts index c582882750296..67f20f4f877e9 100644 --- a/components/waitwhile/actions/retrieve-customer/retrieve-customer.ts +++ b/components/waitwhile/actions/retrieve-customer/retrieve-customer.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Retrieve Customer", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "waitwhile-retrieve-customer", description: "Retrieve a customer. [See the doc here](https://developers.waitwhile.com/reference/getcustomerscustomerid)", props: { diff --git a/components/waitwhile/actions/retrieve-user-invite/retrieve-user-invite.ts b/components/waitwhile/actions/retrieve-user-invite/retrieve-user-invite.ts index 20b71cd087774..10b7a632d0174 100644 --- a/components/waitwhile/actions/retrieve-user-invite/retrieve-user-invite.ts +++ b/components/waitwhile/actions/retrieve-user-invite/retrieve-user-invite.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Retrieve User Invite", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "waitwhile-retrieve-user-invite", description: "Retrieve a user invite. [See the doc here](https://developers.waitwhile.com/reference/getinvitesinviteid)", props: { diff --git a/components/waitwhile/actions/search-customers/search-customers.ts b/components/waitwhile/actions/search-customers/search-customers.ts index aee082943287d..1fe13799db247 100644 --- a/components/waitwhile/actions/search-customers/search-customers.ts +++ b/components/waitwhile/actions/search-customers/search-customers.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Search Customers", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "waitwhile-search-customers", description: "Search for customers. [See the doc here](https://developers.waitwhile.com/reference/searchcustomers)", props: { diff --git a/components/waitwhile/actions/update-customer-note-entry/update-customer-note-entry.ts b/components/waitwhile/actions/update-customer-note-entry/update-customer-note-entry.ts index 9da717d48baa2..774c8f4af8c17 100644 --- a/components/waitwhile/actions/update-customer-note-entry/update-customer-note-entry.ts +++ b/components/waitwhile/actions/update-customer-note-entry/update-customer-note-entry.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Update Customer Note Entry", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-update-customer-note-entry", description: "Update a customer note entry. [See the doc here](https://developers.waitwhile.com/reference/postcustomerscustomeridnotesnoteid)", props: { diff --git a/components/waitwhile/actions/update-customer/update-customer.ts b/components/waitwhile/actions/update-customer/update-customer.ts index eafd12bc51733..43d2fff0e2411 100644 --- a/components/waitwhile/actions/update-customer/update-customer.ts +++ b/components/waitwhile/actions/update-customer/update-customer.ts @@ -3,7 +3,12 @@ import { defineAction } from "@pipedream/types"; export default defineAction({ name: "Update Customer", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "waitwhile-update-customer", description: "Update a customer. [See the doc here](https://developers.waitwhile.com/reference/postcustomerscustomerid)", props: { diff --git a/components/wildberries/actions/list-order-stickers/list-order-stickers.ts b/components/wildberries/actions/list-order-stickers/list-order-stickers.ts index 3934e0dd32d8a..dcbc7f7fd6966 100644 --- a/components/wildberries/actions/list-order-stickers/list-order-stickers.ts +++ b/components/wildberries/actions/list-order-stickers/list-order-stickers.ts @@ -6,7 +6,12 @@ export default defineAction({ name: "List Order Stickers", description: "List order stickers. [See docs here](https://suppliers-api.wildberries.ru/swagger/index.html#/Marketplace/post_api_v2_orders_stickers)", key: "wildberries-list-order-stickers", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/wildberries/actions/list-orders/list-orders.ts b/components/wildberries/actions/list-orders/list-orders.ts index 5f9bfd8b0336d..346311e06a540 100644 --- a/components/wildberries/actions/list-orders/list-orders.ts +++ b/components/wildberries/actions/list-orders/list-orders.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "List Orders", description: "Returns a list of orders. [See docs here](https://suppliers-api.wildberries.ru/swagger/index.html#/Marketplace/get_api_v2_orders)", key: "wildberries-list-orders", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/wildberries/actions/update-order-status/update-order-status.ts b/components/wildberries/actions/update-order-status/update-order-status.ts index da498b9dd4b00..8def3d60dbd50 100644 --- a/components/wildberries/actions/update-order-status/update-order-status.ts +++ b/components/wildberries/actions/update-order-status/update-order-status.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "Update Order Status", description: "Update a order status. [See docs here](https://suppliers-api.wildberries.ru/swagger/index.html#/Marketplace/put_api_v2_orders)", key: "wildberries-update-order-status", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/workast/actions/create-space/create-space.ts b/components/workast/actions/create-space/create-space.ts index e7c7662282872..4e301d67f0831 100644 --- a/components/workast/actions/create-space/create-space.ts +++ b/components/workast/actions/create-space/create-space.ts @@ -4,7 +4,12 @@ import constants from "../common/constants"; export default defineAction({ name: "Create Space", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "workast-create-space", description: "Creates a space. [See docs here](https://developers.workast.com/#/method/createSpace)", type: "action", diff --git a/components/workast/actions/create-task/create-task.ts b/components/workast/actions/create-task/create-task.ts index b633dc3df952a..792b0a86049a4 100644 --- a/components/workast/actions/create-task/create-task.ts +++ b/components/workast/actions/create-task/create-task.ts @@ -3,7 +3,12 @@ import workast from "../../app/workast.app"; export default defineAction({ name: "Create Task", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "workast-create-task", description: "Creates a task. [See docs here](https://developers.workast.com/#/method/createTask)", type: "action", diff --git a/components/xperiencify/actions/add-student-to-course/add-student-to-course.ts b/components/xperiencify/actions/add-student-to-course/add-student-to-course.ts index 941c4f6abd5ab..ed3f90edb0b93 100644 --- a/components/xperiencify/actions/add-student-to-course/add-student-to-course.ts +++ b/components/xperiencify/actions/add-student-to-course/add-student-to-course.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "Add Student to Course", description: "Adds a student to a course. [See docs](https://howto.xperiencify.com/article.php?article=123#1)", key: "xperiencify-add-student-to-course", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { xperiencify, diff --git a/components/xperiencify/actions/add-tag-to-student/add-tag-to-student.ts b/components/xperiencify/actions/add-tag-to-student/add-tag-to-student.ts index adff082aa3f12..7ad937dcbe027 100644 --- a/components/xperiencify/actions/add-tag-to-student/add-tag-to-student.ts +++ b/components/xperiencify/actions/add-tag-to-student/add-tag-to-student.ts @@ -6,7 +6,12 @@ export default defineAction({ name: "Add Tag To Student", description: "Add a tag to a student. [See docs](https://howto.xperiencify.com/article.php?article=123#6)", key: "xperiencify-add-tag-to-student", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { xperiencify, diff --git a/components/xperiencify/actions/remove-student-from-all-courses/remove-student-from-all-courses.ts b/components/xperiencify/actions/remove-student-from-all-courses/remove-student-from-all-courses.ts index 1e2b0bba6c0f5..f591648b9b02c 100644 --- a/components/xperiencify/actions/remove-student-from-all-courses/remove-student-from-all-courses.ts +++ b/components/xperiencify/actions/remove-student-from-all-courses/remove-student-from-all-courses.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "Remove Student from all Courses", description: "Remove a student from all courses. [See docs](https://howto.xperiencify.com/article.php?article=123#4)", key: "xperiencify-remove-student-from-all-courses", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { xperiencify, diff --git a/components/xperiencify/actions/remove-student-from-course/remove-student-from-course.ts b/components/xperiencify/actions/remove-student-from-course/remove-student-from-course.ts index 8e24d68cc609e..73e229db76114 100644 --- a/components/xperiencify/actions/remove-student-from-course/remove-student-from-course.ts +++ b/components/xperiencify/actions/remove-student-from-course/remove-student-from-course.ts @@ -5,7 +5,12 @@ export default defineAction({ name: "Remove Student from Course", description: "Remove a student from a course. [See docs](https://howto.xperiencify.com/article.php?article=123#3)", key: "xperiencify-remove-student-from-course", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { xperiencify, diff --git a/components/xperiencify/actions/remove-tag-from-student/remove-tag-from-student.ts b/components/xperiencify/actions/remove-tag-from-student/remove-tag-from-student.ts index 2998303d5bad0..692dbd3b3b12d 100644 --- a/components/xperiencify/actions/remove-tag-from-student/remove-tag-from-student.ts +++ b/components/xperiencify/actions/remove-tag-from-student/remove-tag-from-student.ts @@ -6,7 +6,12 @@ export default defineAction({ name: "Remove Tag From Student", description: "Remove a tag from a student. [See docs](https://howto.xperiencify.com/article.php?article=123#7)", key: "xperiencify-remove-tag-from-student", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { xperiencify, diff --git a/components/yelp/actions/get-business-details/get-business-details.ts b/components/yelp/actions/get-business-details/get-business-details.ts index 2f96677ac88fc..749ce9f185f36 100644 --- a/components/yelp/actions/get-business-details/get-business-details.ts +++ b/components/yelp/actions/get-business-details/get-business-details.ts @@ -11,7 +11,12 @@ export default defineAction({ name: "Get Business Details", description: `Get details about a business [See docs here](${DOCS.getBusinessDetails})`, key: "yelp-get-business-details", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { yelp, diff --git a/components/yelp/actions/list-business-reviews/list-business-reviews.ts b/components/yelp/actions/list-business-reviews/list-business-reviews.ts index 17fdbc92ce793..60368abc5f7eb 100644 --- a/components/yelp/actions/list-business-reviews/list-business-reviews.ts +++ b/components/yelp/actions/list-business-reviews/list-business-reviews.ts @@ -10,7 +10,12 @@ export default defineAction({ name: "List Business Reviews", description: `List the reviews for a business [See docs here](${DOCS.listBusinessReviews})`, key: "yelp-list-business-reviews", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { yelp, diff --git a/components/yelp/actions/search-businesses-by-phone-number/search-businesses-by-phone-number.ts b/components/yelp/actions/search-businesses-by-phone-number/search-businesses-by-phone-number.ts index 1165b2915d8ea..c991b99889955 100644 --- a/components/yelp/actions/search-businesses-by-phone-number/search-businesses-by-phone-number.ts +++ b/components/yelp/actions/search-businesses-by-phone-number/search-businesses-by-phone-number.ts @@ -7,7 +7,12 @@ export default defineAction({ name: "Search Businesses By Phone Number", description: `Search businesses by phone number [See docs here](${DOCS.searchByPhone})`, key: "yelp-search-businesses-by-phone-number", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { yelp, diff --git a/components/yelp/actions/search-businesses/search-businesses.ts b/components/yelp/actions/search-businesses/search-businesses.ts index aa40e3a15eca6..10b13f0a59942 100644 --- a/components/yelp/actions/search-businesses/search-businesses.ts +++ b/components/yelp/actions/search-businesses/search-businesses.ts @@ -13,7 +13,12 @@ export default defineAction({ name: "Search Businesses", description: `Search businesses matching given criteria [See docs here](${DOCS.searchBusinesses})`, key: "yelp-search-businesses", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { yelp, diff --git a/components/zoho_assist/actions/create-session/create-session.ts b/components/zoho_assist/actions/create-session/create-session.ts index 03a7c9f5bc3ee..f4e84cd1c3376 100644 --- a/components/zoho_assist/actions/create-session/create-session.ts +++ b/components/zoho_assist/actions/create-session/create-session.ts @@ -7,7 +7,12 @@ export default defineAction({ name: "Create Session", description: "Create a remote support or screen sharing session. [See the documentation](https://www.zoho.com/assist/api/createasession.html)", key: "zoho_assist-create-session", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/zoho_assist/actions/get-session-reports/get-session-reports.ts b/components/zoho_assist/actions/get-session-reports/get-session-reports.ts index 05db48de91554..108b3730acc73 100644 --- a/components/zoho_assist/actions/get-session-reports/get-session-reports.ts +++ b/components/zoho_assist/actions/get-session-reports/get-session-reports.ts @@ -8,7 +8,12 @@ export default defineAction({ name: "Get Session Reports", description: "Fetch the reports of previously conducted sessions. [See the documentation](https://www.zoho.com/assist/api/getsessionreports.html)", key: "zoho_assist-get-session-reports", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/zoho_assist/actions/schedule-session/schedule-session.ts b/components/zoho_assist/actions/schedule-session/schedule-session.ts index 5197f823c6ee7..7874783b16cfa 100644 --- a/components/zoho_assist/actions/schedule-session/schedule-session.ts +++ b/components/zoho_assist/actions/schedule-session/schedule-session.ts @@ -8,7 +8,12 @@ export default defineAction({ name: "Schedule Session", description: "Schedule a remote support session. [See the documentation](https://www.zoho.com/assist/api/schedulesession.html)", key: "zoho_assist-schedule-session", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/zoho_catalyst/actions/detect-objects-in-image/detect-objects-in-image.ts b/components/zoho_catalyst/actions/detect-objects-in-image/detect-objects-in-image.ts index ef61f78d75b75..be4aa18a8ad6d 100644 --- a/components/zoho_catalyst/actions/detect-objects-in-image/detect-objects-in-image.ts +++ b/components/zoho_catalyst/actions/detect-objects-in-image/detect-objects-in-image.ts @@ -6,7 +6,12 @@ export default defineAction({ key: "zoho_catalyst-detect-objects-in-image", name: "Detect Objects in Image", description: "Detect or recognize objects in an image. [See the documentation](https://catalyst.zoho.com/help/api/zia/or.html)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/zoho_catalyst/actions/extract-text-from-image/extract-text-from-image.ts b/components/zoho_catalyst/actions/extract-text-from-image/extract-text-from-image.ts index 3a9d12bb70009..3d0fefc20ba8a 100644 --- a/components/zoho_catalyst/actions/extract-text-from-image/extract-text-from-image.ts +++ b/components/zoho_catalyst/actions/extract-text-from-image/extract-text-from-image.ts @@ -6,7 +6,12 @@ export default defineAction({ key: "zoho_catalyst-extract-text-from-image", name: "Extract Text from Image", description: "Extract text from an image. [See the documentation](https://catalyst.zoho.com/help/api/zia/ocr.html)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/zoho_catalyst/actions/perform-face-detection-and-analysis/perform-face-detection-and-analysis.ts b/components/zoho_catalyst/actions/perform-face-detection-and-analysis/perform-face-detection-and-analysis.ts index 0b5268b6124d6..a7acfddb932cc 100644 --- a/components/zoho_catalyst/actions/perform-face-detection-and-analysis/perform-face-detection-and-analysis.ts +++ b/components/zoho_catalyst/actions/perform-face-detection-and-analysis/perform-face-detection-and-analysis.ts @@ -7,7 +7,12 @@ export default defineAction({ key: "zoho_catalyst-perform-face-detection-and-analysis", name: "Perform Face Detection and Analysis", description: "Perform face detection and analysis on an image. [See the documentation](https://catalyst.zoho.com/help/api/zia/face-analytics.html)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/zoho_catalyst/actions/perform-image-moderation/perform-image-moderation.ts b/components/zoho_catalyst/actions/perform-image-moderation/perform-image-moderation.ts index 30f3bc0d9b316..d002c7c35ded6 100644 --- a/components/zoho_catalyst/actions/perform-image-moderation/perform-image-moderation.ts +++ b/components/zoho_catalyst/actions/perform-image-moderation/perform-image-moderation.ts @@ -7,7 +7,12 @@ export default defineAction({ key: "zoho_catalyst-perform-image-moderation", name: "Perform Image Moderation", description: "Perform image moderation on an image. [See the documentation](https://catalyst.zoho.com/help/api/zia/image-moderation.html)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app,