diff --git a/components/typeform/actions/get-form/get-form.mjs b/components/typeform/actions/get-form/get-form.mjs index c47646f70ecac..433936d1dd1e8 100644 --- a/components/typeform/actions/get-form/get-form.mjs +++ b/components/typeform/actions/get-form/get-form.mjs @@ -5,7 +5,12 @@ export default { name: "Get a Form", description: "Select a specific form to get the data. [See the docs here](https://developer.typeform.com/create/reference/retrieve-form/)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, props: { typeform, formId: { diff --git a/components/typeform/actions/list-forms/list-forms.mjs b/components/typeform/actions/list-forms/list-forms.mjs index 14b4b86cd2860..5de9d51cdfec0 100644 --- a/components/typeform/actions/list-forms/list-forms.mjs +++ b/components/typeform/actions/list-forms/list-forms.mjs @@ -5,7 +5,12 @@ export default { name: "List Forms", description: "Retrieves a list of forms. [See the docs here](https://developer.typeform.com/create/reference/retrieve-forms/)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { typeform, search: { diff --git a/components/typeform/actions/list-images/list-images.mjs b/components/typeform/actions/list-images/list-images.mjs index 1b4de89bd8bef..fa7b7a1d59870 100644 --- a/components/typeform/actions/list-images/list-images.mjs +++ b/components/typeform/actions/list-images/list-images.mjs @@ -5,7 +5,12 @@ export default { name: "List Images", description: "Retrieves a list of JSON descriptions for all images in your Typeform account. [See the docs here](https://developer.typeform.com/create/reference/retrieve-images-collection/)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { typeform, }, diff --git a/components/typeform/actions/list-responses/list-responses.mjs b/components/typeform/actions/list-responses/list-responses.mjs index 07647de4c8a6d..7a721ef48031e 100644 --- a/components/typeform/actions/list-responses/list-responses.mjs +++ b/components/typeform/actions/list-responses/list-responses.mjs @@ -9,7 +9,12 @@ export default { name: "List Responses", description: "Returns form responses and date and time of form landing and submission. [See the docs here](https://developer.typeform.com/responses/reference/retrieve-responses/)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { typeform, formId: { diff --git a/components/typeform/actions/lookup-responses/lookup-responses.mjs b/components/typeform/actions/lookup-responses/lookup-responses.mjs index a2a4f30a6347b..accd923eb47e0 100644 --- a/components/typeform/actions/lookup-responses/lookup-responses.mjs +++ b/components/typeform/actions/lookup-responses/lookup-responses.mjs @@ -5,7 +5,12 @@ export default { name: "Lookup Responses", description: "Search for responses with the `query` property. [See the docs here](https://developer.typeform.com/responses/reference/retrieve-responses/)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, props: { typeform, formId: { diff --git a/components/typeform/actions/update-dropdown-multiple-choice-ranking/update-dropdown-multiple-choice-ranking.mjs b/components/typeform/actions/update-dropdown-multiple-choice-ranking/update-dropdown-multiple-choice-ranking.mjs index ef6c5e82955dd..dcfa46020396e 100644 --- a/components/typeform/actions/update-dropdown-multiple-choice-ranking/update-dropdown-multiple-choice-ranking.mjs +++ b/components/typeform/actions/update-dropdown-multiple-choice-ranking/update-dropdown-multiple-choice-ranking.mjs @@ -7,7 +7,12 @@ export default { name: "Update Dropdown, Multiple Choice or Ranking", description: "Update a dropdown, multiple choice, or ranking field's choices. [See the docs here](https://developer.typeform.com/create/reference/update-form/)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { typeform, formId: { diff --git a/components/typeform/actions/update-form-title/update-form-title.mjs b/components/typeform/actions/update-form-title/update-form-title.mjs index cebb9a4951b40..c506123f01418 100644 --- a/components/typeform/actions/update-form-title/update-form-title.mjs +++ b/components/typeform/actions/update-form-title/update-form-title.mjs @@ -8,7 +8,12 @@ export default { name: "Update Form Title", description: "Updates an existing form's title. [See the docs here](https://developer.typeform.com/create/reference/update-form-patch/)", type: "action", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, props: { typeform, formId: { diff --git a/components/typefully/actions/create-draft/create-draft.mjs b/components/typefully/actions/create-draft/create-draft.mjs index 9f0c2a3827856..6c76075b4be40 100644 --- a/components/typefully/actions/create-draft/create-draft.mjs +++ b/components/typefully/actions/create-draft/create-draft.mjs @@ -4,7 +4,12 @@ export default { key: "typefully-create-draft", name: "Create Draft", description: "Creates a new draft in Typefully. [See the documentation](https://support.typefully.com/en/articles/8718287-typefully-api#h_df59629cbf)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { typefully, diff --git a/components/typefully/actions/schedule-draft-next-slot/schedule-draft-next-slot.mjs b/components/typefully/actions/schedule-draft-next-slot/schedule-draft-next-slot.mjs index ade6b6b3c45f1..e05d781b035ec 100644 --- a/components/typefully/actions/schedule-draft-next-slot/schedule-draft-next-slot.mjs +++ b/components/typefully/actions/schedule-draft-next-slot/schedule-draft-next-slot.mjs @@ -4,7 +4,12 @@ export default { key: "typefully-schedule-draft-next-slot", name: "Schedule Draft Next Slot", description: "Schedules an existing draft for publication in the next available time slot. [See the documentation](https://support.typefully.com/en/articles/8718287-typefully-api#h_df59629cbf)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { typefully, diff --git a/components/typefully/actions/schedule-draft/schedule-draft.mjs b/components/typefully/actions/schedule-draft/schedule-draft.mjs index 7cfa0aafe00c3..7d12d61f8f42a 100644 --- a/components/typefully/actions/schedule-draft/schedule-draft.mjs +++ b/components/typefully/actions/schedule-draft/schedule-draft.mjs @@ -4,7 +4,12 @@ export default { key: "typefully-schedule-draft", name: "Schedule Draft", description: "Schedules a draft for publication at a specific date and time. [See the documentation](https://support.typefully.com/en/articles/8718287-typefully-api#h_df59629cbf)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { typefully, diff --git a/components/u301/actions/create-qrcode/create-qrcode.mjs b/components/u301/actions/create-qrcode/create-qrcode.mjs index 0f77a880930ab..5d674c0af9d0e 100644 --- a/components/u301/actions/create-qrcode/create-qrcode.mjs +++ b/components/u301/actions/create-qrcode/create-qrcode.mjs @@ -4,7 +4,12 @@ export default { key: "u301-create-qrcode", name: "Create QR Code", description: "Create a QR Code from the shortened URL. [See the documentation](https://docs.u301.com/api-reference/endpoint/create-a-qrcode)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/u301/actions/list-domains/list-domains.mjs b/components/u301/actions/list-domains/list-domains.mjs index eb4647924f156..d400467d53ad6 100644 --- a/components/u301/actions/list-domains/list-domains.mjs +++ b/components/u301/actions/list-domains/list-domains.mjs @@ -4,7 +4,12 @@ export default { key: "u301-list-domains", name: "List Domains", description: "List all available domains for URL shortening. [See the documentation](https://docs.u301.com/api-reference/endpoint/list-shorten-domains)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/u301/actions/shorten-link/shorten-link.mjs b/components/u301/actions/shorten-link/shorten-link.mjs index e26d0e0cba838..26134f05403fb 100644 --- a/components/u301/actions/shorten-link/shorten-link.mjs +++ b/components/u301/actions/shorten-link/shorten-link.mjs @@ -4,7 +4,12 @@ export default { key: "u301-shorten-link", name: "Shorten URL", description: "Shorten a long link. [See the documentation](https://docs.u301.com/api-reference/endpoint/create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/uberduck/actions/generate-lyrics/generate-lyrics.mjs b/components/uberduck/actions/generate-lyrics/generate-lyrics.mjs index 1c5e04f3f180b..4f1f8873b190c 100644 --- a/components/uberduck/actions/generate-lyrics/generate-lyrics.mjs +++ b/components/uberduck/actions/generate-lyrics/generate-lyrics.mjs @@ -4,7 +4,12 @@ export default { key: "uberduck-generate-lyrics", name: "Generate Lyrics", description: "Generates lyrics using a specified voice model. [See the documentation](https://docs.uberduck.ai/reference/generate-lyrics)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { uberduck, diff --git a/components/uberduck/actions/get-voice-samples/get-voice-samples.mjs b/components/uberduck/actions/get-voice-samples/get-voice-samples.mjs index 53821bffc6ff4..1c6ec1085e5c4 100644 --- a/components/uberduck/actions/get-voice-samples/get-voice-samples.mjs +++ b/components/uberduck/actions/get-voice-samples/get-voice-samples.mjs @@ -4,7 +4,12 @@ export default { key: "uberduck-get-voice-samples", name: "Get Voice Samples", description: "Get voice samples for a specific voice model. [See the documentation](https://docs.uberduck.ai/reference/list-voice-samples)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { uberduck, diff --git a/components/uberduck/actions/get-voices/get-voices.mjs b/components/uberduck/actions/get-voices/get-voices.mjs index 9d00c35fe4002..d24033d8d2270 100644 --- a/components/uberduck/actions/get-voices/get-voices.mjs +++ b/components/uberduck/actions/get-voices/get-voices.mjs @@ -4,7 +4,12 @@ export default { key: "uberduck-get-voices", name: "Get Voices", description: "List voices available in Uberduck. [See the documentation](https://docs.uberduck.ai/reference/list-voices)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { uberduck, diff --git a/components/uipath_automation_hub/actions/create-idea/create-idea.mjs b/components/uipath_automation_hub/actions/create-idea/create-idea.mjs index f84fc8f0e4732..8992235e5b299 100644 --- a/components/uipath_automation_hub/actions/create-idea/create-idea.mjs +++ b/components/uipath_automation_hub/actions/create-idea/create-idea.mjs @@ -3,7 +3,12 @@ import app from "../../uipath_automation_hub.app.mjs"; export default { key: "uipath_automation_hub-create-idea", name: "Create Idea", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Submit a new automation idea. [See the documentation](https://automation-hub.uipath.com/api/v1/api-doc/#/Automation%20Ideas/SubmitIdeaEmployeeDrivenwithSubmitter)", type: "action", props: { diff --git a/components/uipath_automation_hub/actions/update-category-idea/update-category-idea.mjs b/components/uipath_automation_hub/actions/update-category-idea/update-category-idea.mjs index 6d53a4d8e0d6f..0d2e0475b7812 100644 --- a/components/uipath_automation_hub/actions/update-category-idea/update-category-idea.mjs +++ b/components/uipath_automation_hub/actions/update-category-idea/update-category-idea.mjs @@ -3,7 +3,12 @@ import app from "../../uipath_automation_hub.app.mjs"; export default { key: "uipath_automation_hub-update-category-idea", name: "Update Category Idea", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Change the category of a specific Idea. [See the documentation](https://automation-hub.uipath.com/api/v1/api-doc/#/Automation%20Ideas/AutomationCategoriesUpdate)", type: "action", props: { diff --git a/components/uipath_automation_hub/actions/update-idea/update-idea.mjs b/components/uipath_automation_hub/actions/update-idea/update-idea.mjs index fcc463af712cd..fac4fb28f268c 100644 --- a/components/uipath_automation_hub/actions/update-idea/update-idea.mjs +++ b/components/uipath_automation_hub/actions/update-idea/update-idea.mjs @@ -4,7 +4,12 @@ import app from "../../uipath_automation_hub.app.mjs"; export default { key: "uipath_automation_hub-update-idea", name: "Update Idea", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Modify an existing automation idea's details. [See the documentation](https://automation-hub.uipath.com/api/v1/api-doc/#/Automation%20Ideas/SubmitIdeaEmployeeDrivenwithSubmitter)", type: "action", props: { diff --git a/components/unbounce/actions/get-page-lead/get-page-lead.mjs b/components/unbounce/actions/get-page-lead/get-page-lead.mjs index 3bbe11ebd8ec3..ceef1fdc9f185 100644 --- a/components/unbounce/actions/get-page-lead/get-page-lead.mjs +++ b/components/unbounce/actions/get-page-lead/get-page-lead.mjs @@ -3,7 +3,12 @@ import unbounce from "../../unbounce.app.mjs"; export default { key: "unbounce-get-page-lead", name: "Get Page Lead", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Get info of single Lead. [See the documentation](https://developer.unbounce.com/api_reference/#id_pages__page_id__leads__lead_id_)", type: "action", props: { diff --git a/components/unbounce/actions/list-page-leads/list-page-leads.mjs b/components/unbounce/actions/list-page-leads/list-page-leads.mjs index 1266575f417d1..d946cd9a2c9f9 100644 --- a/components/unbounce/actions/list-page-leads/list-page-leads.mjs +++ b/components/unbounce/actions/list-page-leads/list-page-leads.mjs @@ -4,7 +4,12 @@ import unbounce from "../../unbounce.app.mjs"; export default { key: "unbounce-list-page-leads", name: "List Page Leads", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, description: "Retrieve a list of all leads for a given page (including AMP), pop-up, or sticky-bar. [See the documentation](https://developer.unbounce.com/api_reference/#id_pages__page_id__leads)", type: "action", props: { diff --git a/components/undetectable_ai/actions/list-documents/list-documents.mjs b/components/undetectable_ai/actions/list-documents/list-documents.mjs index 282097682a2ad..541a23fb6fe3d 100644 --- a/components/undetectable_ai/actions/list-documents/list-documents.mjs +++ b/components/undetectable_ai/actions/list-documents/list-documents.mjs @@ -4,7 +4,12 @@ export default { key: "undetectable_ai-list-documents", name: "List Documents", description: "Retrieve the IDs of documents associated with your account. [See the documentation](https://docs.undetectable.ai/#list-documents)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/undetectable_ai/actions/retrieve-document/retrieve-document.mjs b/components/undetectable_ai/actions/retrieve-document/retrieve-document.mjs index 598122b2e5d0e..b7da35f3d2231 100644 --- a/components/undetectable_ai/actions/retrieve-document/retrieve-document.mjs +++ b/components/undetectable_ai/actions/retrieve-document/retrieve-document.mjs @@ -4,7 +4,12 @@ export default { key: "undetectable_ai-retrieve-document", name: "Retrieve Document", description: "Retrieve the document object for a submitted piece of content. [See the documentation](https://docs.undetectable.ai/#retrieve-document)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/undetectable_ai/actions/submit-document/submit-document.mjs b/components/undetectable_ai/actions/submit-document/submit-document.mjs index 8b0910084df10..bc3a3a8150d84 100644 --- a/components/undetectable_ai/actions/submit-document/submit-document.mjs +++ b/components/undetectable_ai/actions/submit-document/submit-document.mjs @@ -4,7 +4,12 @@ export default { key: "undetectable_ai-submit-document", name: "Submit Document", description: "Submit document for humanization. [See the documentation](https://docs.undetectable.ai/#submit-document)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/unisender/actions/subscribe-contact/subscribe-contact.mjs b/components/unisender/actions/subscribe-contact/subscribe-contact.mjs index 46f03cae8c14b..247de6e017015 100644 --- a/components/unisender/actions/subscribe-contact/subscribe-contact.mjs +++ b/components/unisender/actions/subscribe-contact/subscribe-contact.mjs @@ -5,7 +5,12 @@ export default { key: "unisender-subscribe-contact", name: "Subscribe Contact", description: "This method adds contacts (email address and/or mobile phone numbers) of the contact to one or several lists, and also allows you to add/change values of additional fields and tags. [See the docs here](https://www.unisender.com/ru/support/api/contacts/subscribe/)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/unisender/actions/unsubscribe-contact/unsubscribe-contact.mjs b/components/unisender/actions/unsubscribe-contact/unsubscribe-contact.mjs index 0afd78787b5a1..5f003be6e38c2 100644 --- a/components/unisender/actions/unsubscribe-contact/unsubscribe-contact.mjs +++ b/components/unisender/actions/unsubscribe-contact/unsubscribe-contact.mjs @@ -5,7 +5,12 @@ export default { key: "unisender-unsubscribe-contact", name: "Unsubscribe Contact", description: "This method unsubscribes the contact email or phone number from one or several lists. [See the docs here](https://www.unisender.com/ru/support/api/contacts/unsubscribe/)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/universal_summarizer_by_kagi/actions/summarize-document/summarize-document.mjs b/components/universal_summarizer_by_kagi/actions/summarize-document/summarize-document.mjs index 48203c2babc7b..d50955b45c487 100644 --- a/components/universal_summarizer_by_kagi/actions/summarize-document/summarize-document.mjs +++ b/components/universal_summarizer_by_kagi/actions/summarize-document/summarize-document.mjs @@ -4,7 +4,12 @@ export default { key: "universal_summarizer_by_kagi-summarize-document", name: "Summarize Document", description: "Summarizes the content of a URL. [See the documentation](https://help.kagi.com/kagi/api/summarizer.html#summarize-document)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/unsplash/actions/get-photo/get-photo.mjs b/components/unsplash/actions/get-photo/get-photo.mjs index b414abc44e060..1b0be738e0605 100644 --- a/components/unsplash/actions/get-photo/get-photo.mjs +++ b/components/unsplash/actions/get-photo/get-photo.mjs @@ -4,7 +4,12 @@ export default { key: "unsplash-get-photo", name: "Get Photo", description: "Get a specific photo from Unsplash. [See the documentation](https://unsplash.com/documentation#get-a-photo)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/unsplash/actions/search-photos/search-photos.mjs b/components/unsplash/actions/search-photos/search-photos.mjs index 342586dfd9e3c..21a07fa6dc934 100644 --- a/components/unsplash/actions/search-photos/search-photos.mjs +++ b/components/unsplash/actions/search-photos/search-photos.mjs @@ -5,7 +5,12 @@ export default { key: "unsplash-search-photos", name: "Search Photos", description: "Get a single page of photo results for a query. [See the documentation](https://unsplash.com/documentation#search-photos)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/unthread/actions/create-conversation/create-conversation.mjs b/components/unthread/actions/create-conversation/create-conversation.mjs index e9a83d0575116..01da0ca0e23ea 100644 --- a/components/unthread/actions/create-conversation/create-conversation.mjs +++ b/components/unthread/actions/create-conversation/create-conversation.mjs @@ -9,7 +9,12 @@ export default { key: "unthread-create-conversation", name: "Create Conversation", description: "Create a new Conversation. [See the documentation](https://docs.unthread.io/api-introduction/using-api#create-conversation)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/unthread/actions/create-customer/create-customer.mjs b/components/unthread/actions/create-customer/create-customer.mjs index ba0f886121293..014691e4796f6 100644 --- a/components/unthread/actions/create-customer/create-customer.mjs +++ b/components/unthread/actions/create-customer/create-customer.mjs @@ -4,7 +4,12 @@ export default { key: "unthread-create-customer", name: "Create Customer", description: "Create a new Customer. [See the documentation](https://docs.unthread.io/api-introduction/using-api#create-customer)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/unthread/actions/delete-customer/delete-customer.mjs b/components/unthread/actions/delete-customer/delete-customer.mjs index 0c792e33537df..f44ac8f2257cd 100644 --- a/components/unthread/actions/delete-customer/delete-customer.mjs +++ b/components/unthread/actions/delete-customer/delete-customer.mjs @@ -4,7 +4,12 @@ export default { key: "unthread-delete-customer", name: "Delete Customer", description: "Delete a Customer. [See the documentation](https://docs.unthread.io/api-introduction/using-api#delete-customer)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/unthread/actions/update-customer/update-customer.mjs b/components/unthread/actions/update-customer/update-customer.mjs index 9653abe974938..4e2879cbb39f6 100644 --- a/components/unthread/actions/update-customer/update-customer.mjs +++ b/components/unthread/actions/update-customer/update-customer.mjs @@ -4,7 +4,12 @@ export default { key: "unthread-update-customer", name: "Update Customer", description: "Update a Customer. [See the documentation](https://docs.unthread.io/api-introduction/using-api#update-customer)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/upbooks/actions/add-employee/add-employee.mjs b/components/upbooks/actions/add-employee/add-employee.mjs index 3d7e99fd1006b..3f82112a3d0fa 100644 --- a/components/upbooks/actions/add-employee/add-employee.mjs +++ b/components/upbooks/actions/add-employee/add-employee.mjs @@ -4,7 +4,12 @@ export default { key: "upbooks-add-employee", name: "Add New Employee", description: "Adds a new employee to Upbooks. [See the documentation](https://www.postman.com/scrrum/workspace/upbooks-io/request/13284127-a51a907a-0648-477d-96f6-f5a9e79262fd)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { upbooks, diff --git a/components/upbooks/actions/create-expense-category/create-expense-category.mjs b/components/upbooks/actions/create-expense-category/create-expense-category.mjs index 7b2234c62cd20..2e61d04dc157e 100644 --- a/components/upbooks/actions/create-expense-category/create-expense-category.mjs +++ b/components/upbooks/actions/create-expense-category/create-expense-category.mjs @@ -4,7 +4,12 @@ export default { key: "upbooks-create-expense-category", name: "Create Expense Category", description: "Creates a new expense category in UpBooks. [See the documentation](https://www.postman.com/scrrum/workspace/upbooks-io/request/13284127-a07ae2fc-f712-42aa-bcf5-6ce63c7a0929)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { upbooks, diff --git a/components/upbooks/actions/record-outward-payment/record-outward-payment.mjs b/components/upbooks/actions/record-outward-payment/record-outward-payment.mjs index 0ce4e31764532..c3aad3f46443e 100644 --- a/components/upbooks/actions/record-outward-payment/record-outward-payment.mjs +++ b/components/upbooks/actions/record-outward-payment/record-outward-payment.mjs @@ -6,7 +6,12 @@ export default { key: "upbooks-record-outward-payment", name: "Record Outward Payment", description: "Records an outward payment in UpBooks. [See the documentation](https://www.postman.com/scrrum/workspace/upbooks-io/request/13284127-3fc82d7a-2173-4b3a-a8ec-4c812c928810)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { upbooks, diff --git a/components/upkeep/actions/create-purchase-order/create-purchase-order.mjs b/components/upkeep/actions/create-purchase-order/create-purchase-order.mjs index b3e6c29dc68b1..8bc9d6fa9b5ee 100644 --- a/components/upkeep/actions/create-purchase-order/create-purchase-order.mjs +++ b/components/upkeep/actions/create-purchase-order/create-purchase-order.mjs @@ -3,7 +3,12 @@ import common from "../common/common-purchase-order.mjs"; export default { type: "action", key: "upkeep-create-purchase-order", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Purchase Order", description: "Create a Purchase Order, [See the docs](https://developers.onupkeep.com/#purchase-orders)", ...common, diff --git a/components/upkeep/actions/create-request/create-request.mjs b/components/upkeep/actions/create-request/create-request.mjs index 9cef8fab660a9..ab01cfb421953 100644 --- a/components/upkeep/actions/create-request/create-request.mjs +++ b/components/upkeep/actions/create-request/create-request.mjs @@ -3,7 +3,12 @@ import app from "../../upkeep.app.mjs"; export default { type: "action", key: "upkeep-create-request", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Request", description: "Create a Request, [See the docs](https://developers.onupkeep.com/#create-a-request)", props: { diff --git a/components/upkeep/actions/create-work-order/create-work-order.mjs b/components/upkeep/actions/create-work-order/create-work-order.mjs index 1c21bf40c7d5f..e7c3adacc412e 100644 --- a/components/upkeep/actions/create-work-order/create-work-order.mjs +++ b/components/upkeep/actions/create-work-order/create-work-order.mjs @@ -5,7 +5,12 @@ import { ConfigurationError } from "@pipedream/platform"; export default { type: "action", key: "upkeep-create-work-order", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Work Order", description: "Create a Work Order, [See the docs](https://developers.onupkeep.com/#create-a-work-order)", props: { diff --git a/components/upkeep/actions/find-asset/find-asset.mjs b/components/upkeep/actions/find-asset/find-asset.mjs index d4ec0574f4f43..c65e8e44dc647 100644 --- a/components/upkeep/actions/find-asset/find-asset.mjs +++ b/components/upkeep/actions/find-asset/find-asset.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "upkeep-find-asset", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Find Asset", description: "Finds assets according to props configured, if no prop configured returns all assets, [See the docs](https://developers.onupkeep.com/#get-all-assets)", props: { diff --git a/components/upkeep/actions/find-location/find-location.mjs b/components/upkeep/actions/find-location/find-location.mjs index 5054199b9f1da..d4c9a83a4b047 100644 --- a/components/upkeep/actions/find-location/find-location.mjs +++ b/components/upkeep/actions/find-location/find-location.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "upkeep-find-location", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Find Location", description: "Finds locations according to props configured, if no prop configured returns all locations, [See the docs](https://developers.onupkeep.com/#get-all-locations)", props: { diff --git a/components/upkeep/actions/find-part/find-part.mjs b/components/upkeep/actions/find-part/find-part.mjs index ccec6959cfe7c..2c6d2c51f53c6 100644 --- a/components/upkeep/actions/find-part/find-part.mjs +++ b/components/upkeep/actions/find-part/find-part.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "upkeep-find-part", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Find Part", description: "Finds parts according to props configured, if no prop configured returns all parts, [See the docs](https://developers.onupkeep.com/#get-all-parts)", props: { diff --git a/components/upkeep/actions/find-user/find-user.mjs b/components/upkeep/actions/find-user/find-user.mjs index 6f3428063375e..204652b2688b7 100644 --- a/components/upkeep/actions/find-user/find-user.mjs +++ b/components/upkeep/actions/find-user/find-user.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "upkeep-find-user", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Find User", description: "Finds users according to props configured, if no prop configured returns all users, [See the docs](https://developers.onupkeep.com/#get-all-users)", props: { diff --git a/components/upkeep/actions/find-vendor/find-vendor.mjs b/components/upkeep/actions/find-vendor/find-vendor.mjs index 2fe2f892863cf..a9f556cd94df7 100644 --- a/components/upkeep/actions/find-vendor/find-vendor.mjs +++ b/components/upkeep/actions/find-vendor/find-vendor.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "upkeep-find-vendor", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Find Vendor", description: "Finds vendors according to props configured, if no prop configured returns all vendors. Note: enterprise/business-plus plan access only. [See the docs](https://developers.onupkeep.com/#get-all-vendors)", props: { diff --git a/components/upkeep/actions/update-purchase-order/update-purchase-order.mjs b/components/upkeep/actions/update-purchase-order/update-purchase-order.mjs index 4f16349631591..8461a94eef18b 100644 --- a/components/upkeep/actions/update-purchase-order/update-purchase-order.mjs +++ b/components/upkeep/actions/update-purchase-order/update-purchase-order.mjs @@ -3,7 +3,12 @@ import common from "../common/common-purchase-order.mjs"; export default { type: "action", key: "upkeep-update-purchase-order", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Update Purchase Order", description: "Update a Purchase Order, [See the docs](https://developers.onupkeep.com/#update-a-specific-purchase-order)", ...common, diff --git a/components/uplead/actions/get-company-by-domain/get-company-by-domain.mjs b/components/uplead/actions/get-company-by-domain/get-company-by-domain.mjs index 41c4a256abc09..c6caf7e8e92e5 100644 --- a/components/uplead/actions/get-company-by-domain/get-company-by-domain.mjs +++ b/components/uplead/actions/get-company-by-domain/get-company-by-domain.mjs @@ -2,7 +2,12 @@ import app from "../../uplead.app.mjs"; export default { name: "Get Company By Domain", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "uplead-get-company-by-domain", description: "Get a company by domain. [See the documentation](https://docs.uplead.com/#company-api)", type: "action", diff --git a/components/uplead/actions/get-contact-by-email/get-contact-by-email.mjs b/components/uplead/actions/get-contact-by-email/get-contact-by-email.mjs index 41d189d1faaa1..1bea477c5713d 100644 --- a/components/uplead/actions/get-contact-by-email/get-contact-by-email.mjs +++ b/components/uplead/actions/get-contact-by-email/get-contact-by-email.mjs @@ -2,7 +2,12 @@ import app from "../../uplead.app.mjs"; export default { name: "Get Contact By Email", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "uplead-get-contact-by-email", description: "Get a contact by email. [See the documentation](https://docs.uplead.com/#person-api)", type: "action", diff --git a/components/uplisting/actions/create-booking/create-booking.mjs b/components/uplisting/actions/create-booking/create-booking.mjs index 84acd45613dbb..296f8cb36dbd1 100644 --- a/components/uplisting/actions/create-booking/create-booking.mjs +++ b/components/uplisting/actions/create-booking/create-booking.mjs @@ -3,7 +3,12 @@ import uplisting from "../../uplisting.app.mjs"; export default { key: "uplisting-create-booking", name: "Create Booking", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, description: "Create a confirmed booking. [See the documentation](https://documenter.getpostman.com/view/1320372/SWTBfdW6#ce173dfb-5d88-4af4-a55f-43ffc238487a)", type: "action", props: { diff --git a/components/uploadcare/actions/upload-file/upload-file.mjs b/components/uploadcare/actions/upload-file/upload-file.mjs index f5a6da58e2c16..702b66eec700a 100644 --- a/components/uploadcare/actions/upload-file/upload-file.mjs +++ b/components/uploadcare/actions/upload-file/upload-file.mjs @@ -3,7 +3,12 @@ import constants from "../common/constants.mjs"; export default { name: "Upload File", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "uploadcare-upload-file", description: "Upload a file. [See docs here](https://uploadcare.com/api-refs/upload-api/#operation/fromURLUpload)", type: "action", diff --git a/components/upstash_redis/actions/list-databases/list-databases.mjs b/components/upstash_redis/actions/list-databases/list-databases.mjs index fd0d237276e7d..211443380d291 100644 --- a/components/upstash_redis/actions/list-databases/list-databases.mjs +++ b/components/upstash_redis/actions/list-databases/list-databases.mjs @@ -4,7 +4,12 @@ export default { key: "upstash_redis-list-databases", name: "List Redis Databases", description: "Lists all Redis databases. [See the documentation](https://upstash.com/docs/devops/developer-api/redis/list_databases)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/upstash_redis/actions/post-command/post-command.mjs b/components/upstash_redis/actions/post-command/post-command.mjs index 234b1b57c809d..d2e6430b863ea 100644 --- a/components/upstash_redis/actions/post-command/post-command.mjs +++ b/components/upstash_redis/actions/post-command/post-command.mjs @@ -5,7 +5,12 @@ export default { key: "upstash_redis-post-command", name: "Post Command", description: "Post a command to a Redis database. [See the documentation](https://upstash.com/docs/redis/features/restapi#post-command-in-body)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/uptimerobot/actions/create-alert-contact/create-alert-contact.mjs b/components/uptimerobot/actions/create-alert-contact/create-alert-contact.mjs index 0c86a2de27b7f..d55cf93f6d177 100644 --- a/components/uptimerobot/actions/create-alert-contact/create-alert-contact.mjs +++ b/components/uptimerobot/actions/create-alert-contact/create-alert-contact.mjs @@ -5,7 +5,12 @@ export default { key: "uptimerobot-create-alert-contact", name: "Create Alert Contact", description: "Create a new alert contact. [See the documentation](https://uptimerobot.com/api/).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/uptimerobot/actions/create-monitor/create-monitor.mjs b/components/uptimerobot/actions/create-monitor/create-monitor.mjs index de8fda64b38ed..423511addd0cd 100644 --- a/components/uptimerobot/actions/create-monitor/create-monitor.mjs +++ b/components/uptimerobot/actions/create-monitor/create-monitor.mjs @@ -6,7 +6,12 @@ export default { key: "uptimerobot-create-monitor", name: "Create Monitor", description: "Create a new monitor. [See the documentation](https://uptimerobot.com/api/).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/uptimerobot/actions/update-monitor-status/update-monitor-status.mjs b/components/uptimerobot/actions/update-monitor-status/update-monitor-status.mjs index 83d9ca430fec4..98420b89e9bf3 100644 --- a/components/uptimerobot/actions/update-monitor-status/update-monitor-status.mjs +++ b/components/uptimerobot/actions/update-monitor-status/update-monitor-status.mjs @@ -4,7 +4,12 @@ export default { key: "uptimerobot-update-monitor-status", name: "Update Monitor Status", description: "Update an existing monitor's status to pause or resume monitoring. [See the documentation](https://uptimerobot.com/api/).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/upviral/actions/add-contact/add-contact.mjs b/components/upviral/actions/add-contact/add-contact.mjs index 5e2fff791b713..33698248448f8 100644 --- a/components/upviral/actions/add-contact/add-contact.mjs +++ b/components/upviral/actions/add-contact/add-contact.mjs @@ -5,7 +5,12 @@ import upviral from "../../upviral.app.mjs"; export default { key: "upviral-add-contact", name: "Add Contact", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Add a new contact in your particular campaign. [See the documentation](https://api.upviral.com/#add-contact)", type: "action", props: { diff --git a/components/upviral/actions/add-points/add-points.mjs b/components/upviral/actions/add-points/add-points.mjs index 27dc11b028e60..d05a69e4ee9e8 100644 --- a/components/upviral/actions/add-points/add-points.mjs +++ b/components/upviral/actions/add-points/add-points.mjs @@ -5,7 +5,12 @@ import upviral from "../../upviral.app.mjs"; export default { key: "upviral-add-points", name: "Add Points", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, description: "Add points in user profile. [See the documentation](https://api.upviral.com/#add-points)", type: "action", props: { diff --git a/components/upwave/actions/create-card/create-card.mjs b/components/upwave/actions/create-card/create-card.mjs index 62a9026d03699..87d98a8e906f0 100644 --- a/components/upwave/actions/create-card/create-card.mjs +++ b/components/upwave/actions/create-card/create-card.mjs @@ -4,7 +4,12 @@ export default { key: "upwave-create-card", name: "Create Card", description: "Create a new card. [See the documentation](https://upwavehq.github.io/api/#creating-a-new-card)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/urlbae/actions/create-qrcode/create-qrcode.mjs b/components/urlbae/actions/create-qrcode/create-qrcode.mjs index 4c563314cd6f9..4f26f303e5028 100644 --- a/components/urlbae/actions/create-qrcode/create-qrcode.mjs +++ b/components/urlbae/actions/create-qrcode/create-qrcode.mjs @@ -3,7 +3,12 @@ import constants from "../common/constants.mjs"; export default { name: "Create QRCode", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "urlbae-create-qrcode", description: "Creates a qrcode. [See the documentation](https://urlbae.com/developers#create-a-qr-code)", type: "action", diff --git a/components/urlbae/actions/shorten-url/shorten-url.mjs b/components/urlbae/actions/shorten-url/shorten-url.mjs index 738165a083a16..96747db98d239 100644 --- a/components/urlbae/actions/shorten-url/shorten-url.mjs +++ b/components/urlbae/actions/shorten-url/shorten-url.mjs @@ -2,7 +2,12 @@ import app from "../../urlbae.app.mjs"; export default { name: "Shorten URL", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "urlbae-shorten-url", description: "Creates a shorten URL. [See the documentation](https://urlbae.com/developers#shorten-a-link)", type: "action", diff --git a/components/urlbox_io/actions/generate-screenshot-from-html/generate-screenshot-from-html.mjs b/components/urlbox_io/actions/generate-screenshot-from-html/generate-screenshot-from-html.mjs index 51a3c06449a00..f71c5e1c4cedf 100644 --- a/components/urlbox_io/actions/generate-screenshot-from-html/generate-screenshot-from-html.mjs +++ b/components/urlbox_io/actions/generate-screenshot-from-html/generate-screenshot-from-html.mjs @@ -5,7 +5,12 @@ export default { key: "urlbox_io-generate-screenshot-from-html", name: "Generate Screenshot From HTML", description: "Generate a screenshot of a website provided by a html. [See the docs here](https://www.urlbox.io/docs/examplecode/node)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { urlboxIo: common.props.urlboxIo, diff --git a/components/urlbox_io/actions/generate-screenshot-from-url/generate-screenshot-from-url.mjs b/components/urlbox_io/actions/generate-screenshot-from-url/generate-screenshot-from-url.mjs index c4f02abe63fe5..cff8c5a75ff83 100644 --- a/components/urlbox_io/actions/generate-screenshot-from-url/generate-screenshot-from-url.mjs +++ b/components/urlbox_io/actions/generate-screenshot-from-url/generate-screenshot-from-url.mjs @@ -5,7 +5,12 @@ export default { key: "urlbox_io-generate-screenshot-from-url", name: "Generate Screenshot From URL", description: "Generate a screenshot of a website provided by a url. [See the docs here](https://www.urlbox.io/docs/examplecode/node)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { urlboxIo: common.props.urlboxIo, diff --git a/components/uscreen/actions/create-user/create-user.mjs b/components/uscreen/actions/create-user/create-user.mjs index 2a0868970a7a2..721d33d1ad864 100644 --- a/components/uscreen/actions/create-user/create-user.mjs +++ b/components/uscreen/actions/create-user/create-user.mjs @@ -2,7 +2,12 @@ import app from "../../uscreen.app.mjs"; export default { name: "Create User", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "uscreen-create-user", description: "Creates an user. [See the documentation](https://uscreen.io/api/publisher.html#/default/post_customers)", type: "action", diff --git a/components/uscreen/actions/grant-user-access/grant-user-access.mjs b/components/uscreen/actions/grant-user-access/grant-user-access.mjs index 155ae194721f5..6757431104b3b 100644 --- a/components/uscreen/actions/grant-user-access/grant-user-access.mjs +++ b/components/uscreen/actions/grant-user-access/grant-user-access.mjs @@ -3,7 +3,12 @@ import constants from "../common/constants.mjs"; export default { name: "Grant User Access", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "uscreen-grant-user-access", description: "Grant access to an user. [See the documentation](https://uscreen.io/api/publisher.html#/default/post_customers__customer_id__accesses)", type: "action", diff --git a/components/userflow/actions/create-update-user/create-update-user.mjs b/components/userflow/actions/create-update-user/create-update-user.mjs index 949c74ee28c28..8285ff23ed61f 100644 --- a/components/userflow/actions/create-update-user/create-update-user.mjs +++ b/components/userflow/actions/create-update-user/create-update-user.mjs @@ -5,7 +5,12 @@ export default { key: "userflow-create-update-user", name: "Create or Update User", description: "Creates or updates a user in Userflow. If the user does not already exist in Userflow, it will be created. If it already exists, the given attributes will be merged into the existing user's attributes. [See the documentation](https://docs.userflow.com/api/users/create-or-update)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/userflow/actions/find-user/find-user.mjs b/components/userflow/actions/find-user/find-user.mjs index d85e472c746f4..5683d68c53f0c 100644 --- a/components/userflow/actions/find-user/find-user.mjs +++ b/components/userflow/actions/find-user/find-user.mjs @@ -5,7 +5,12 @@ export default { key: "userflow-find-user", name: "Find User", description: "Finds an existing user by user ID or email, optionally filtering by group ID. [See the documentation](https://userflow.com/docs/api)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/userlist/actions/create-event/create-event.mjs b/components/userlist/actions/create-event/create-event.mjs index 9c1f3a66d02f4..90666598acc2c 100644 --- a/components/userlist/actions/create-event/create-event.mjs +++ b/components/userlist/actions/create-event/create-event.mjs @@ -5,7 +5,12 @@ export default { key: "userlist-create-event", name: "Create Event", description: "Generates a new event in Userlist. [See the documentation](https://userlist.com/docs/getting-started/integration-guide/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { userlist, diff --git a/components/userlist/actions/create-update-company/create-update-company.mjs b/components/userlist/actions/create-update-company/create-update-company.mjs index bdbeef50f0a8e..fe83d1bfe7e89 100644 --- a/components/userlist/actions/create-update-company/create-update-company.mjs +++ b/components/userlist/actions/create-update-company/create-update-company.mjs @@ -4,7 +4,12 @@ export default { key: "userlist-create-update-company", name: "Create or Update Company", description: "Creates a new company or replaces an existing one using a given identifier. [See the documentation](https://userlist.com/docs/getting-started/integration-guide/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { userlist, diff --git a/components/userlist/actions/create-update-relationship/create-update-relationship.mjs b/components/userlist/actions/create-update-relationship/create-update-relationship.mjs index 97881e01bb5cf..cd9bf28b0492d 100644 --- a/components/userlist/actions/create-update-relationship/create-update-relationship.mjs +++ b/components/userlist/actions/create-update-relationship/create-update-relationship.mjs @@ -4,7 +4,12 @@ export default { key: "userlist-create-update-relationship", name: "Create or Update Relationship", description: "Establishes or modifies a relationship with the given user and company identifiers. [See the documentation](https://userlist.com/docs/getting-started/integration-guide/)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { userlist, diff --git a/components/usersketch/actions/create-event/create-event.mjs b/components/usersketch/actions/create-event/create-event.mjs index e05b0e19fbf44..23fe7c48615e1 100644 --- a/components/usersketch/actions/create-event/create-event.mjs +++ b/components/usersketch/actions/create-event/create-event.mjs @@ -3,7 +3,12 @@ import constants from "../common/constants.mjs"; export default { name: "Create Event", - version: "0.0.11", + version: "0.0.12", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "usersketch-create-event", description: "Create an event. [See the documentation](https://usersketch.readme.io/reference/post_api-customer-event-create)", type: "action", diff --git a/components/usersketch/actions/create-user/create-user.mjs b/components/usersketch/actions/create-user/create-user.mjs index 7e4eed508fdb0..1888c087aa867 100644 --- a/components/usersketch/actions/create-user/create-user.mjs +++ b/components/usersketch/actions/create-user/create-user.mjs @@ -2,7 +2,12 @@ import app from "../../usersketch.app.mjs"; export default { name: "Create User", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "usersketch-create-user", description: "Create an user. [See the documentation](https://usersketch.readme.io/reference/post_api-customer-create)", type: "action", diff --git a/components/utopian_labs/actions/get-run-status/get-run-status.mjs b/components/utopian_labs/actions/get-run-status/get-run-status.mjs index 8678040dac957..a97dcf99883f3 100644 --- a/components/utopian_labs/actions/get-run-status/get-run-status.mjs +++ b/components/utopian_labs/actions/get-run-status/get-run-status.mjs @@ -4,7 +4,12 @@ export default { key: "utopian_labs-get-run-status", name: "Get Run Status", description: "Retrieve the status of an initiated run. [See the documentation](https://docs.utopianlabs.ai/research#retrieve-research-run-status)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { utopianLabs, diff --git a/components/utopian_labs/actions/initiate-classification-run/initiate-classification-run.mjs b/components/utopian_labs/actions/initiate-classification-run/initiate-classification-run.mjs index c828d990c7b07..05cf9e98341cb 100644 --- a/components/utopian_labs/actions/initiate-classification-run/initiate-classification-run.mjs +++ b/components/utopian_labs/actions/initiate-classification-run/initiate-classification-run.mjs @@ -8,7 +8,12 @@ export default { key: "utopian_labs-initiate-classification-run", name: "Initiate Classification Run", description: "Initiate a classification run of the R1-Classification agent. [See the documentation](https://docs.utopianlabs.ai/classification#initiate-a-classification-run)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { utopianLabs, diff --git a/components/utopian_labs/actions/initiate-copywriting-run/initiate-copywriting-run.mjs b/components/utopian_labs/actions/initiate-copywriting-run/initiate-copywriting-run.mjs index 56c1985e7f252..bb84ec6fb9b27 100644 --- a/components/utopian_labs/actions/initiate-copywriting-run/initiate-copywriting-run.mjs +++ b/components/utopian_labs/actions/initiate-copywriting-run/initiate-copywriting-run.mjs @@ -8,7 +8,12 @@ export default { key: "utopian_labs-initiate-copywriting-run", name: "Initiate Copywriting Run", description: "Initiate a copywriting run of the R1-Copywriting agent. [See the documentation](https://docs.utopianlabs.ai/copywriting#initiate-a-copywriting-run)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { utopianLabs, diff --git a/components/utopian_labs/actions/initiate-qualification-run/initiate-qualification-run.mjs b/components/utopian_labs/actions/initiate-qualification-run/initiate-qualification-run.mjs index 88eef67c6cd33..2a498885854f8 100644 --- a/components/utopian_labs/actions/initiate-qualification-run/initiate-qualification-run.mjs +++ b/components/utopian_labs/actions/initiate-qualification-run/initiate-qualification-run.mjs @@ -7,7 +7,12 @@ export default { key: "utopian_labs-initiate-qualification-run", name: "Initiate Qualification Run", description: "Initiate a qualification run of the R1-Qualification agent. [See the documentation](https://docs.utopianlabs.ai/qualification#initiate-a-qualification-run)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { utopianLabs, diff --git a/components/utopian_labs/actions/initiate-research-run/initiate-research-run.mjs b/components/utopian_labs/actions/initiate-research-run/initiate-research-run.mjs index 1a64d01460a70..0ba8435751b65 100644 --- a/components/utopian_labs/actions/initiate-research-run/initiate-research-run.mjs +++ b/components/utopian_labs/actions/initiate-research-run/initiate-research-run.mjs @@ -7,7 +7,12 @@ export default { key: "utopian_labs-initiate-research-run", name: "Initiate Research Run", description: "Initiate a research run of the R1 agent. [See the documentation](https://docs.utopianlabs.ai/research#initiate-a-research-run)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { utopianLabs, diff --git a/components/utopian_labs/actions/initiate-timing-run/initiate-timing-run.mjs b/components/utopian_labs/actions/initiate-timing-run/initiate-timing-run.mjs index 7f762a60a1992..b9cb3086b931b 100644 --- a/components/utopian_labs/actions/initiate-timing-run/initiate-timing-run.mjs +++ b/components/utopian_labs/actions/initiate-timing-run/initiate-timing-run.mjs @@ -7,7 +7,12 @@ export default { key: "utopian_labs-initiate-timing-run", name: "Initiate Timing Run", description: "Initiate a timing run of the R1-Timing agent. [See the documentation](https://docs.utopianlabs.ai/timing#initiate-a-timing-run)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { utopianLabs, diff --git a/components/v7_darwin/actions/add-instructions/add-instructions.mjs b/components/v7_darwin/actions/add-instructions/add-instructions.mjs index 5d0defc778ca2..ddf88bead6e3e 100644 --- a/components/v7_darwin/actions/add-instructions/add-instructions.mjs +++ b/components/v7_darwin/actions/add-instructions/add-instructions.mjs @@ -4,7 +4,12 @@ export default { key: "v7_darwin-add-instructions", name: "Add Instructions", description: "Add annotator instructions. [See the documentation](https://docs.v7labs.com/reference/adding-instructions)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/v7_darwin/actions/create-dataset/create-dataset.mjs b/components/v7_darwin/actions/create-dataset/create-dataset.mjs index 7071af13ddccd..29f7ca618bf02 100644 --- a/components/v7_darwin/actions/create-dataset/create-dataset.mjs +++ b/components/v7_darwin/actions/create-dataset/create-dataset.mjs @@ -4,7 +4,12 @@ export default { key: "v7_darwin-create-dataset", name: "Create Dataset", description: "Creates a new Dataset. [See the documentation](https://docs.v7labs.com/reference/create-dataset)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/v7_darwin/actions/update-dataset/update-dataset.mjs b/components/v7_darwin/actions/update-dataset/update-dataset.mjs index 3bf581cd985a3..77cfcbf4985cd 100644 --- a/components/v7_darwin/actions/update-dataset/update-dataset.mjs +++ b/components/v7_darwin/actions/update-dataset/update-dataset.mjs @@ -4,7 +4,12 @@ export default { key: "v7_darwin-update-dataset", name: "Update Dataset", description: "Update a dataset with the specified ID. [See the documentation](https://docs.v7labs.com/reference/update-dataset)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/v7_go/actions/create-entity/create-entity.mjs b/components/v7_go/actions/create-entity/create-entity.mjs index 30d3d01c1f72b..ecd773b62e629 100644 --- a/components/v7_go/actions/create-entity/create-entity.mjs +++ b/components/v7_go/actions/create-entity/create-entity.mjs @@ -4,7 +4,12 @@ export default { key: "v7_go-create-entity", name: "Create Entity", description: "Triggers the creation of a new entity. [See the documentation](https://docs.go.v7labs.com/reference/create-entities-programmatically)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { v7Go, diff --git a/components/v7_go/actions/create-project/create-project.mjs b/components/v7_go/actions/create-project/create-project.mjs index 7c5ffeb0e3459..a38861b33632a 100644 --- a/components/v7_go/actions/create-project/create-project.mjs +++ b/components/v7_go/actions/create-project/create-project.mjs @@ -4,7 +4,12 @@ export default { key: "v7_go-create-project", name: "Create Project", description: "Initiates the creation of a new project with a unique project identifier. [See the documentation](https://docs.go.v7labs.com/reference/project-create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { v7Go, diff --git a/components/v7_go/actions/update-entity/update-entity.mjs b/components/v7_go/actions/update-entity/update-entity.mjs index f945d7a19132a..4e1cfe750871a 100644 --- a/components/v7_go/actions/update-entity/update-entity.mjs +++ b/components/v7_go/actions/update-entity/update-entity.mjs @@ -4,7 +4,12 @@ export default { key: "v7_go-update-entity", name: "Update Entity", description: "Executes an update on an existing entity. [See the documentation](https://docs.go.v7labs.com/reference/entity-update-values)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { v7Go, diff --git a/components/vapi/actions/create-call/create-call.mjs b/components/vapi/actions/create-call/create-call.mjs index b229065b781e4..fe16bbb85b9bd 100644 --- a/components/vapi/actions/create-call/create-call.mjs +++ b/components/vapi/actions/create-call/create-call.mjs @@ -5,7 +5,12 @@ export default { key: "vapi-create-call", name: "Create Call", description: "Starts a new conversation with an assistant. [See the documentation](https://docs.vapi.ai/api-reference/calls/create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { vapi, diff --git a/components/vapi/actions/update-assistant-settings/update-assistant-settings.mjs b/components/vapi/actions/update-assistant-settings/update-assistant-settings.mjs index fd41e471c477b..cf93d5b96565f 100644 --- a/components/vapi/actions/update-assistant-settings/update-assistant-settings.mjs +++ b/components/vapi/actions/update-assistant-settings/update-assistant-settings.mjs @@ -14,7 +14,12 @@ export default { key: "vapi-update-assistant-settings", name: "Update Assistant Settings", description: "Updates the configuration settings for a specific assistant. [See the documentation](https://docs.vapi.ai/api-reference/assistants/update)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { vapi, diff --git a/components/vapi/actions/upload-file/upload-file.mjs b/components/vapi/actions/upload-file/upload-file.mjs index 7db99b438041c..4ee470ea91f57 100644 --- a/components/vapi/actions/upload-file/upload-file.mjs +++ b/components/vapi/actions/upload-file/upload-file.mjs @@ -6,7 +6,12 @@ export default { key: "vapi-upload-file", name: "Upload File", description: "Uploads a new file. [See the documentation](https://docs.vapi.ai/api-reference)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { vapi, diff --git a/components/vbout/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs b/components/vbout/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs index 7baa8c0651c5f..e815cf8304dd1 100644 --- a/components/vbout/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs +++ b/components/vbout/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs @@ -5,7 +5,12 @@ export default { key: "vbout-add-contact-to-list-by-email", name: "Add Contact To List By Email", description: "This action add a specific list to a contact. All emails having the same email text available in the provided list will be updated if exists [See the docs here](https://developers.vbout.com/docs#emailmarketing_synccontact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/vbout/actions/add-contact-to-list/add-contact-to-list.mjs b/components/vbout/actions/add-contact-to-list/add-contact-to-list.mjs index 2a430b44f93c7..2214bf84d8d9e 100644 --- a/components/vbout/actions/add-contact-to-list/add-contact-to-list.mjs +++ b/components/vbout/actions/add-contact-to-list/add-contact-to-list.mjs @@ -5,7 +5,12 @@ export default { key: "vbout-add-contact-to-list", name: "Add Contact To List", description: "This action move a contact to a specific list. [See the docs here](https://developers.vbout.com/docs#emailmarketing_movecontact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/vbout/actions/add-custom-event-to-contact/add-custom-event-to-contact.mjs b/components/vbout/actions/add-custom-event-to-contact/add-custom-event-to-contact.mjs index d9be553422003..c01d02de007de 100644 --- a/components/vbout/actions/add-custom-event-to-contact/add-custom-event-to-contact.mjs +++ b/components/vbout/actions/add-custom-event-to-contact/add-custom-event-to-contact.mjs @@ -6,7 +6,12 @@ export default { key: "vbout-add-custom-event-to-contact", name: "Add Custom Event To Contact", description: "This action add a custom activity to the contact. [See the docs here](https://developers.vbout.com/docs#emailmarketing_addactivity)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/vbout/actions/create-email-list/create-email-list.mjs b/components/vbout/actions/create-email-list/create-email-list.mjs index 7fea5d0f3d910..121672f056b3d 100644 --- a/components/vbout/actions/create-email-list/create-email-list.mjs +++ b/components/vbout/actions/create-email-list/create-email-list.mjs @@ -5,7 +5,12 @@ export default { key: "vbout-create-email-list", name: "Create Email List", description: "This action creates a new list. [See the docs here](https://developers.vbout.com/docs/1_0/#emailmarketing_addlist)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/vbout/actions/create-email-marketing-campaign/create-email-marketing-campaign.mjs b/components/vbout/actions/create-email-marketing-campaign/create-email-marketing-campaign.mjs index 7efdbd1e19c95..7d18815b868fe 100644 --- a/components/vbout/actions/create-email-marketing-campaign/create-email-marketing-campaign.mjs +++ b/components/vbout/actions/create-email-marketing-campaign/create-email-marketing-campaign.mjs @@ -5,7 +5,12 @@ export default { key: "vbout-create-email-marketing-campaign", name: "Create Email Marketing Campaign", description: "This action creates a new email marketing campaign. [See the docs here](https://developers.vbout.com/docs#emailmarketing_addcampaign)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/vbout/actions/create-social-media-message/create-social-media-message.mjs b/components/vbout/actions/create-social-media-message/create-social-media-message.mjs index 4edb6f07f1dde..d89856d1cc294 100644 --- a/components/vbout/actions/create-social-media-message/create-social-media-message.mjs +++ b/components/vbout/actions/create-social-media-message/create-social-media-message.mjs @@ -6,7 +6,12 @@ export default { key: "vbout-create-social-media-message", name: "Create Social Media Message", description: "This action creates a new post on social media. [See the docs here](https://developers.vbout.com/docs#socialmedia_addpost)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/vbout/actions/unsubscribe-contact/unsubscribe-contact.mjs b/components/vbout/actions/unsubscribe-contact/unsubscribe-contact.mjs index 633a69b56ed7f..e98ad35208755 100644 --- a/components/vbout/actions/unsubscribe-contact/unsubscribe-contact.mjs +++ b/components/vbout/actions/unsubscribe-contact/unsubscribe-contact.mjs @@ -5,7 +5,12 @@ export default { key: "vbout-unsubscribe-contact", name: "Unsubscribe Contact", description: "This action unsubscribes a specific contact from a list. [See the docs here](https://developers.vbout.com/docs#emailmarketing_editcontact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/vbout/actions/update-contact/update-contact.mjs b/components/vbout/actions/update-contact/update-contact.mjs index 4f343cd263b14..d192710b23db1 100644 --- a/components/vbout/actions/update-contact/update-contact.mjs +++ b/components/vbout/actions/update-contact/update-contact.mjs @@ -5,7 +5,12 @@ export default { key: "vbout-update-contact", name: "Update Contact", description: "This action updates a specific contact. [See the docs here](https://developers.vbout.com/docs#emailmarketing_editcontact)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/vectorshift/actions/add-data-to-knowledge-base/add-data-to-knowledge-base.mjs b/components/vectorshift/actions/add-data-to-knowledge-base/add-data-to-knowledge-base.mjs index f2eab6d5a0cd1..85f0fcd325f64 100644 --- a/components/vectorshift/actions/add-data-to-knowledge-base/add-data-to-knowledge-base.mjs +++ b/components/vectorshift/actions/add-data-to-knowledge-base/add-data-to-knowledge-base.mjs @@ -5,7 +5,12 @@ export default { key: "vectorshift-add-data-to-knowledge-base", name: "Add Data to Knowledge Base", description: "Adds data to a knowledge base in VectorShift. [See the documentation](https://docs.vectorshift.ai/api-reference/knowledge-bases/index).", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { vectorshift, diff --git a/components/vectorshift/actions/create-pipeline/create-pipeline.mjs b/components/vectorshift/actions/create-pipeline/create-pipeline.mjs index df6e2e149b830..5c46aef5e2069 100644 --- a/components/vectorshift/actions/create-pipeline/create-pipeline.mjs +++ b/components/vectorshift/actions/create-pipeline/create-pipeline.mjs @@ -6,7 +6,12 @@ export default { key: "vectorshift-create-pipeline", name: "Create Pipeline", description: "Creates a new pipeline in VectorShift. [See the documentation](https://docs.vectorshift.ai)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { vectorshift, diff --git a/components/vectorshift/actions/run-pipeline/run-pipeline.mjs b/components/vectorshift/actions/run-pipeline/run-pipeline.mjs index 2d33468c9539b..59dcc18d665e5 100644 --- a/components/vectorshift/actions/run-pipeline/run-pipeline.mjs +++ b/components/vectorshift/actions/run-pipeline/run-pipeline.mjs @@ -6,7 +6,12 @@ export default { key: "vectorshift-run-pipeline", name: "Run Pipeline", description: "Executes a VectorShift pipeline with specified inputs. [See the documentation](https://docs.vectorshift.ai/api-reference/pipelines/run)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { vectorshift, diff --git a/components/veedea/actions/list-campaigns/list-campaigns.mjs b/components/veedea/actions/list-campaigns/list-campaigns.mjs index 3c0aec2ed3d34..6fa38d7ef03e7 100644 --- a/components/veedea/actions/list-campaigns/list-campaigns.mjs +++ b/components/veedea/actions/list-campaigns/list-campaigns.mjs @@ -4,7 +4,12 @@ export default { key: "veedea-list-campaigns", name: "List Campaigns", description: "Get the list of campaigns created in the Veedea Dashboard. [See the documentation](https://veedea.com/api/doc)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { veedea, diff --git a/components/veedea/actions/list-leads/list-leads.mjs b/components/veedea/actions/list-leads/list-leads.mjs index 33c747b7ab063..eacca0b4e7ab2 100644 --- a/components/veedea/actions/list-leads/list-leads.mjs +++ b/components/veedea/actions/list-leads/list-leads.mjs @@ -4,7 +4,12 @@ export default { key: "veedea-list-leads", name: "List Leads", description: "Get a list of leads in a campaign. [See the documentation](https://veedea.com/api/doc)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { veedea, diff --git a/components/veedea/actions/list-product-purchases/list-product-purchases.mjs b/components/veedea/actions/list-product-purchases/list-product-purchases.mjs index e802d9c142377..eaeaf72f60479 100644 --- a/components/veedea/actions/list-product-purchases/list-product-purchases.mjs +++ b/components/veedea/actions/list-product-purchases/list-product-purchases.mjs @@ -4,7 +4,12 @@ export default { key: "veedea-list-product-purchases", name: "List Product Purchases", description: "Retrieves a list of leads who purchased products through the specified campaign. [See the documentation](https://veedea.com/api/doc)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { veedea, diff --git a/components/venly/actions/create-contract/create-contract.mjs b/components/venly/actions/create-contract/create-contract.mjs index ca17ee5859ad3..f44467e5b211b 100644 --- a/components/venly/actions/create-contract/create-contract.mjs +++ b/components/venly/actions/create-contract/create-contract.mjs @@ -5,7 +5,12 @@ export default { name: "Create Contract", description: "Deploys a new NFT contract, or collection, on a specific blockchain. [See the documentation](https://docs.venly.io/reference/deploycontract)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { venly,