diff --git a/components/goody/actions/retrieve-orders-for-order-batch/retrieve-orders-for-order-batch.mjs b/components/goody/actions/retrieve-orders-for-order-batch/retrieve-orders-for-order-batch.mjs index fe13dcdbaf5f0..306712aafff33 100644 --- a/components/goody/actions/retrieve-orders-for-order-batch/retrieve-orders-for-order-batch.mjs +++ b/components/goody/actions/retrieve-orders-for-order-batch/retrieve-orders-for-order-batch.mjs @@ -4,7 +4,12 @@ export default { key: "goody-retrieve-orders-for-order-batch", name: "Retrieve Orders For Order Batch", description: "Retrieves orders for an order batch in Goody. [See the documentation](https://developer.ongoody.com/api-reference/order-batches/retrieve-orders-for-an-order-batch)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { goody, diff --git a/components/google_ad_manager/actions/create-report/create-report.mjs b/components/google_ad_manager/actions/create-report/create-report.mjs index e7b0cee1f6a11..c2d2118f819d2 100644 --- a/components/google_ad_manager/actions/create-report/create-report.mjs +++ b/components/google_ad_manager/actions/create-report/create-report.mjs @@ -9,7 +9,12 @@ export default { key: "google_ad_manager-create-report", name: "Create Report", description: "Create a report in Google Ad Manager. [See the documentation](https://developers.google.com/ad-manager/api/beta/reference/rest/v1/networks.reports/create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/google_ads/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs b/components/google_ads/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs index c5a48569642bb..f720bd7dd2553 100644 --- a/components/google_ads/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs +++ b/components/google_ads/actions/add-contact-to-list-by-email/add-contact-to-list-by-email.mjs @@ -7,7 +7,12 @@ export default { key: "google_ads-add-contact-to-list-by-email", name: "Add Contact to Customer List by Email", description: "Adds a contact to a specific customer list in Google Ads. Lists typically update in 6 to 12 hours after operation. [See the documentation](https://developers.google.com/google-ads/api/docs/remarketing/audience-segments/customer-match/get-started)", - version: "0.1.4", + version: "0.1.5", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_ads/actions/create-customer-list/create-customer-list.mjs b/components/google_ads/actions/create-customer-list/create-customer-list.mjs index 5ddf1647cacb3..3919835c8232b 100644 --- a/components/google_ads/actions/create-customer-list/create-customer-list.mjs +++ b/components/google_ads/actions/create-customer-list/create-customer-list.mjs @@ -15,7 +15,12 @@ export default { key: "google_ads-create-customer-list", name: "Create Customer List", description: "Create a new customer list in Google Ads. [See the documentation](https://developers.google.com/google-ads/api/reference/rpc/v21/UserList)", - version: "0.0.5", + version: "0.0.6", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_ads/actions/create-report/create-report.mjs b/components/google_ads/actions/create-report/create-report.mjs index 6b8f40310dd68..06a95d5ce0b83 100644 --- a/components/google_ads/actions/create-report/create-report.mjs +++ b/components/google_ads/actions/create-report/create-report.mjs @@ -19,7 +19,12 @@ export default { key: "google_ads-create-report", name: "Create Report", description: "Generates a report from your Google Ads data. [See the documentation](https://developers.google.com/google-ads/api/reference/rpc/v21/GoogleAdsService/Search?transport=rest)", - version: "0.1.3", + version: "0.1.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_ads/actions/send-offline-conversion/send-offline-conversion.mjs b/components/google_ads/actions/send-offline-conversion/send-offline-conversion.mjs index e125dccee3ac3..82f7341926a73 100644 --- a/components/google_ads/actions/send-offline-conversion/send-offline-conversion.mjs +++ b/components/google_ads/actions/send-offline-conversion/send-offline-conversion.mjs @@ -8,7 +8,12 @@ export default { key: "google_ads-send-offline-conversion", name: "Send Offline Conversion", description: "Send an event to Google Ads to track offline conversions. [See the documentation](https://developers.google.com/google-ads/api/reference/rpc/v21/ConversionAction)", - version: "0.0.5", + version: "0.0.6", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_analytics/actions/create-ga4-property/create-ga4-property.mjs b/components/google_analytics/actions/create-ga4-property/create-ga4-property.mjs index e3ce50f3b0530..1763a6776831e 100644 --- a/components/google_analytics/actions/create-ga4-property/create-ga4-property.mjs +++ b/components/google_analytics/actions/create-ga4-property/create-ga4-property.mjs @@ -5,7 +5,12 @@ export default { key: "google_analytics-create-ga4-property", name: "Create GA4 Property", description: "Creates a new GA4 property. [See the documentation](https://developers.google.com/analytics/devguides/config/admin/v1/rest/v1beta/properties/create)", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleAnalytics, diff --git a/components/google_analytics/actions/create-key-event/create-key-event.mjs b/components/google_analytics/actions/create-key-event/create-key-event.mjs index e7634fc12bfb5..289b492c1c22b 100644 --- a/components/google_analytics/actions/create-key-event/create-key-event.mjs +++ b/components/google_analytics/actions/create-key-event/create-key-event.mjs @@ -4,7 +4,12 @@ export default { key: "google_analytics-create-key-event", name: "Create Key Event", description: "Creates a new key event. [See the documentation](https://developers.google.com/analytics/devguides/config/admin/v1/rest/v1beta/properties.keyEvents/create)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/google_analytics/actions/run-report-in-ga4/run-report-in-ga4.mjs b/components/google_analytics/actions/run-report-in-ga4/run-report-in-ga4.mjs index e571f9c617d9c..fe5a7b7707201 100644 --- a/components/google_analytics/actions/run-report-in-ga4/run-report-in-ga4.mjs +++ b/components/google_analytics/actions/run-report-in-ga4/run-report-in-ga4.mjs @@ -2,7 +2,12 @@ import analytics from "../../google_analytics.app.mjs"; export default { key: "google_analytics-run-report-in-ga4", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Run Report in GA4", description: "Returns a customized report of your Google Analytics event data. Reports contain statistics derived from data collected by the Google Analytics tracking code. [See the documentation](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties/runReport)", type: "action", diff --git a/components/google_analytics/actions/run-report/run-report.mjs b/components/google_analytics/actions/run-report/run-report.mjs index ccf9a9a58c328..1fff98d3039dc 100644 --- a/components/google_analytics/actions/run-report/run-report.mjs +++ b/components/google_analytics/actions/run-report/run-report.mjs @@ -2,7 +2,12 @@ import analytics from "../../google_analytics.app.mjs"; export default { key: "google_analytics-run-report", - version: "0.1.1", + version: "0.1.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Run Report", description: "Return report metrics based on a start and end date. [See the documentation](https://developers.google.com/analytics/devguides/reporting/core/v4/rest?hl=en)", type: "action", diff --git a/components/google_appsheet/actions/add-row/add-row.mjs b/components/google_appsheet/actions/add-row/add-row.mjs index 2b87b541a56e6..44e02afc2fb29 100644 --- a/components/google_appsheet/actions/add-row/add-row.mjs +++ b/components/google_appsheet/actions/add-row/add-row.mjs @@ -5,7 +5,12 @@ export default { key: "google_appsheet-add-row", name: "Add Row", description: "Adds a new row to a specific table in the AppSheet app. [See the documentation](https://support.google.com/appsheet/answer/10104797?hl=en&ref_topic=10105767&sjid=1665780.0.1444403316-SA#)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", methods: { ...common.methods, diff --git a/components/google_appsheet/actions/delete-row/delete-row.mjs b/components/google_appsheet/actions/delete-row/delete-row.mjs index 68d2fd6d6fa3d..e67d6dc82204e 100644 --- a/components/google_appsheet/actions/delete-row/delete-row.mjs +++ b/components/google_appsheet/actions/delete-row/delete-row.mjs @@ -5,7 +5,12 @@ export default { key: "google_appsheet-delete-row", name: "Delete Row", description: "Deletes a specific row from a table in the AppSheet app. [See the documentation](https://support.google.com/appsheet/answer/10105399?hl=en&ref_topic=10105767&sjid=1665780.0.1444403316-SA)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_appsheet/actions/get-rows/get-rows.mjs b/components/google_appsheet/actions/get-rows/get-rows.mjs index 6b4fc95f7d3f3..1f3665648ed0c 100644 --- a/components/google_appsheet/actions/get-rows/get-rows.mjs +++ b/components/google_appsheet/actions/get-rows/get-rows.mjs @@ -5,7 +5,12 @@ export default { key: "google_appsheet-get-rows", name: "Get Rows", description: "Read existing records in a table in the AppSheet app. [See the documentation](https://support.google.com/appsheet/answer/10104797?hl=en&ref_topic=10105767&sjid=1665780.0.1444403316-SA#)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/google_appsheet/actions/update-row/update-row.mjs b/components/google_appsheet/actions/update-row/update-row.mjs index a8809fab8eb24..6d450d8df9f63 100644 --- a/components/google_appsheet/actions/update-row/update-row.mjs +++ b/components/google_appsheet/actions/update-row/update-row.mjs @@ -5,7 +5,12 @@ export default { key: "google_appsheet-update-row", name: "Update Row", description: "Updates an existing row in a specific table in the AppSheet app. [See the documentation](https://support.google.com/appsheet/answer/10105002?hl=en&ref_topic=10105767&sjid=1665780.0.1444403316-SA)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_calendar/actions/add-attendees-to-event/add-attendees-to-event.mjs b/components/google_calendar/actions/add-attendees-to-event/add-attendees-to-event.mjs index e6353d9c822a1..3341cfef3bccc 100644 --- a/components/google_calendar/actions/add-attendees-to-event/add-attendees-to-event.mjs +++ b/components/google_calendar/actions/add-attendees-to-event/add-attendees-to-event.mjs @@ -5,7 +5,12 @@ export default { key: "google_calendar-add-attendees-to-event", name: "Add Attendees To Event", description: "Add attendees to an existing event. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Events.html#update)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/create-event/create-event.mjs b/components/google_calendar/actions/create-event/create-event.mjs index 2496aaa80bb53..01093e5ec4399 100644 --- a/components/google_calendar/actions/create-event/create-event.mjs +++ b/components/google_calendar/actions/create-event/create-event.mjs @@ -7,7 +7,12 @@ export default { key: "google_calendar-create-event", name: "Create Event", description: "Create an event in a Google Calendar. [See the documentation](https://developers.google.com/calendar/api/v3/reference/events/insert)", - version: "0.2.6", + version: "0.2.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/delete-event/delete-event.mjs b/components/google_calendar/actions/delete-event/delete-event.mjs index 09422178480b8..463afa130acbd 100644 --- a/components/google_calendar/actions/delete-event/delete-event.mjs +++ b/components/google_calendar/actions/delete-event/delete-event.mjs @@ -4,7 +4,12 @@ export default { key: "google_calendar-delete-event", name: "Delete an Event", description: "Delete an event from a Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Events.html#delete)", - version: "0.1.7", + version: "0.1.8", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/get-calendar/get-calendar.mjs b/components/google_calendar/actions/get-calendar/get-calendar.mjs index 299e28b41b9ee..3080aacdcf770 100644 --- a/components/google_calendar/actions/get-calendar/get-calendar.mjs +++ b/components/google_calendar/actions/get-calendar/get-calendar.mjs @@ -4,7 +4,12 @@ export default { key: "google_calendar-get-calendar", name: "Retrieve Calendar Details", description: "Retrieve calendar details of a Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Calendars.html#get)", - version: "0.1.8", + version: "0.1.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/get-event/get-event.mjs b/components/google_calendar/actions/get-event/get-event.mjs index c0cf52970332d..1483a6f394d13 100644 --- a/components/google_calendar/actions/get-event/get-event.mjs +++ b/components/google_calendar/actions/get-event/get-event.mjs @@ -4,7 +4,12 @@ export default { key: "google_calendar-get-event", name: "Retrieve Event Details", description: "Retrieve event details from Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Events.html#get)", - version: "0.1.8", + version: "0.1.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/list-calendars/list-calendars.mjs b/components/google_calendar/actions/list-calendars/list-calendars.mjs index 587bba366e1a6..106a0ee9f889e 100644 --- a/components/google_calendar/actions/list-calendars/list-calendars.mjs +++ b/components/google_calendar/actions/list-calendars/list-calendars.mjs @@ -4,7 +4,12 @@ export default { key: "google_calendar-list-calendars", name: "List Calendars", description: "Retrieve a list of calendars from Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Calendarlist.html#list)", - version: "0.1.8", + version: "0.1.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/list-events/list-events.mjs b/components/google_calendar/actions/list-events/list-events.mjs index f7d341baa223f..8cb8e62b04439 100644 --- a/components/google_calendar/actions/list-events/list-events.mjs +++ b/components/google_calendar/actions/list-events/list-events.mjs @@ -6,7 +6,12 @@ export default { key: "google_calendar-list-events", name: "List Events", description: "Retrieve a list of event from the Google Calendar. [See the documentation](https://developers.google.com/calendar/api/v3/reference/events/list)", - version: "0.0.8", + version: "0.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/query-free-busy-calendars/query-free-busy-calendars.mjs b/components/google_calendar/actions/query-free-busy-calendars/query-free-busy-calendars.mjs index 17200b38ffc71..fb0f5cc82ff3f 100644 --- a/components/google_calendar/actions/query-free-busy-calendars/query-free-busy-calendars.mjs +++ b/components/google_calendar/actions/query-free-busy-calendars/query-free-busy-calendars.mjs @@ -4,7 +4,12 @@ export default { key: "google_calendar-query-free-busy-calendars", name: "Retrieve Free/Busy Calendar Details", description: "Retrieve free/busy calendar details from Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Freebusy.html#query)", - version: "0.1.8", + version: "0.1.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/quick-add-event/quick-add-event.mjs b/components/google_calendar/actions/quick-add-event/quick-add-event.mjs index 87167642d329e..e484fb42fda77 100644 --- a/components/google_calendar/actions/quick-add-event/quick-add-event.mjs +++ b/components/google_calendar/actions/quick-add-event/quick-add-event.mjs @@ -6,7 +6,12 @@ export default { key: "google_calendar-quick-add-event", name: "Add Quick Event", description: "Create a quick event to the Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Events.html#quickAdd)", - version: "0.1.8", + version: "0.1.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleCalendar, diff --git a/components/google_calendar/actions/update-event/update-event.mjs b/components/google_calendar/actions/update-event/update-event.mjs index 3f08018e6cb57..22e3de4defd56 100644 --- a/components/google_calendar/actions/update-event/update-event.mjs +++ b/components/google_calendar/actions/update-event/update-event.mjs @@ -6,7 +6,12 @@ export default { key: "google_calendar-update-event", name: "Update Event", description: "Update an event from Google Calendar. [See the documentation](https://googleapis.dev/nodejs/googleapis/latest/calendar/classes/Resource$Events.html#update)", - version: "0.0.10", + version: "0.0.11", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleCalendar, diff --git a/components/google_chat/actions/create-message/create-message.mjs b/components/google_chat/actions/create-message/create-message.mjs index 90d40e59b26b1..201e1d6b3cb13 100644 --- a/components/google_chat/actions/create-message/create-message.mjs +++ b/components/google_chat/actions/create-message/create-message.mjs @@ -4,7 +4,12 @@ export default { key: "google_chat-create-message", name: "Create Message", description: "Create a message to post a text. [See the documentation](https://developers.google.com/chat/api/reference/rest/v1/spaces.messages/create)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/google_chat/actions/get-member/get-member.mjs b/components/google_chat/actions/get-member/get-member.mjs index 99afadda3769e..7b0febf8f16ef 100644 --- a/components/google_chat/actions/get-member/get-member.mjs +++ b/components/google_chat/actions/get-member/get-member.mjs @@ -4,7 +4,12 @@ export default { key: "google_chat-get-member", name: "Get Member", description: "Returns details about a membership. [See the documentation](https://developers.google.com/chat/api/reference/rest/v1/spaces.members/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/google_chat/actions/get-message/get-message.mjs b/components/google_chat/actions/get-message/get-message.mjs index 64ba7cb5ded8d..fbed55790a3be 100644 --- a/components/google_chat/actions/get-message/get-message.mjs +++ b/components/google_chat/actions/get-message/get-message.mjs @@ -4,7 +4,12 @@ export default { key: "google_chat-get-message", name: "Get Message", description: "Returns details about a message. [See the documentation](https://developers.google.com/chat/api/reference/rest/v1/spaces.messages/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { app, diff --git a/components/google_chat/actions/get-space/get-space.mjs b/components/google_chat/actions/get-space/get-space.mjs index 3010b33d85b1d..13f401f0c8d57 100644 --- a/components/google_chat/actions/get-space/get-space.mjs +++ b/components/google_chat/actions/get-space/get-space.mjs @@ -4,7 +4,12 @@ export default { key: "google_chat-get-space", name: "Get Space", description: "Returns details about a space. [See the documentation](https://developers.google.com/chat/api/reference/rest/v1/spaces/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/google_chat/actions/list-members/list-members.mjs b/components/google_chat/actions/list-members/list-members.mjs index ad8a3f509df16..ebdb4ebd935ef 100644 --- a/components/google_chat/actions/list-members/list-members.mjs +++ b/components/google_chat/actions/list-members/list-members.mjs @@ -4,7 +4,12 @@ export default { key: "google_chat-list-members", name: "List Members", description: "Lists memberships in a space. [See the documentation](https://developers.google.com/chat/api/reference/rest/v1/spaces.members/list)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/google_chat/actions/list-messages/list-messages.mjs b/components/google_chat/actions/list-messages/list-messages.mjs index f0431485b7322..b519f3d9cda27 100644 --- a/components/google_chat/actions/list-messages/list-messages.mjs +++ b/components/google_chat/actions/list-messages/list-messages.mjs @@ -5,7 +5,12 @@ export default { key: "google_chat-list-messages", name: "List Messages", description: "Lists messages in a space that the caller is a member of, including messages from blocked members and spaces. [See the documentation](https://developers.google.com/chat/api/reference/rest/v1/spaces.messages/list)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/google_chat/actions/list-spaces/list-spaces.mjs b/components/google_chat/actions/list-spaces/list-spaces.mjs index c3b40956b58aa..8f591f502cac8 100644 --- a/components/google_chat/actions/list-spaces/list-spaces.mjs +++ b/components/google_chat/actions/list-spaces/list-spaces.mjs @@ -5,7 +5,12 @@ export default { key: "google_chat-list-spaces", name: "List Spaces", description: "Lists spaces the caller is a member of. Group chats and DMs aren't listed until the first message is sent. [See the documentation](https://developers.google.com/chat/api/reference/rest/v1/spaces/list)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { app, diff --git a/components/google_classroom/actions/get-assignment/get-assignment.mjs b/components/google_classroom/actions/get-assignment/get-assignment.mjs index 807ffc8c0da99..159955505f123 100644 --- a/components/google_classroom/actions/get-assignment/get-assignment.mjs +++ b/components/google_classroom/actions/get-assignment/get-assignment.mjs @@ -4,7 +4,12 @@ export default { key: "google_classroom-get-assignment", name: "Get Assignment", description: "Retrieve information about an assignment. [See the docs here](https://developers.google.com/classroom/reference/rest/v1/courses.courseWork/get)", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleClassroom, diff --git a/components/google_classroom/actions/list-assignments/list-assignments.mjs b/components/google_classroom/actions/list-assignments/list-assignments.mjs index 0a9fba7e01581..b8a2aea6d2eae 100644 --- a/components/google_classroom/actions/list-assignments/list-assignments.mjs +++ b/components/google_classroom/actions/list-assignments/list-assignments.mjs @@ -5,7 +5,12 @@ export default { key: "google_classroom-list-assignments", name: "List Assignments", description: "Retrieve a list of assignments for a course. [See the documentation](https://developers.google.com/classroom/reference/rest/v1/courses.courseWork/list)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleClassroom, diff --git a/components/google_cloud/actions/bigquery-insert-rows/bigquery-insert-rows.mjs b/components/google_cloud/actions/bigquery-insert-rows/bigquery-insert-rows.mjs index 9eeeda6df2f6d..09e64c11df480 100644 --- a/components/google_cloud/actions/bigquery-insert-rows/bigquery-insert-rows.mjs +++ b/components/google_cloud/actions/bigquery-insert-rows/bigquery-insert-rows.mjs @@ -3,7 +3,12 @@ import utils from "../../common/utils.mjs"; export default { name: "Bigquery Insert Rows", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "google_cloud-bigquery-insert-rows", type: "action", description: "Inserts rows into a BigQuery table. [See the docs](https://github.com/googleapis/nodejs-bigquery) and for an example [here](https://github.com/googleapis/nodejs-bigquery/blob/main/samples/insertRowsAsStream.js).", diff --git a/components/google_cloud/actions/create-bucket/create-bucket.mjs b/components/google_cloud/actions/create-bucket/create-bucket.mjs index 056dd69717363..003644961a3b8 100644 --- a/components/google_cloud/actions/create-bucket/create-bucket.mjs +++ b/components/google_cloud/actions/create-bucket/create-bucket.mjs @@ -3,7 +3,12 @@ import storageClasses from "../../utils/storageClasses.mjs"; export default { name: "Create Bucket", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "google_cloud-create-bucket", type: "action", description: "Creates a bucket on Google Cloud Storage [See the docs](https://googleapis.dev/nodejs/storage/latest/Bucket.html#create)", diff --git a/components/google_cloud/actions/create-scheduled-query/create-scheduled-query.mjs b/components/google_cloud/actions/create-scheduled-query/create-scheduled-query.mjs index c56e121d69a59..99e912715d3d5 100644 --- a/components/google_cloud/actions/create-scheduled-query/create-scheduled-query.mjs +++ b/components/google_cloud/actions/create-scheduled-query/create-scheduled-query.mjs @@ -12,7 +12,12 @@ export default { key: "google_cloud-create-scheduled-query", name: "Create Scheduled Query", description: "Creates a scheduled query in Google Cloud. [See the documentation](https://cloud.google.com/bigquery/docs/scheduling-queries)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleCloud, diff --git a/components/google_cloud/actions/get-bucket/get-bucket.mjs b/components/google_cloud/actions/get-bucket/get-bucket.mjs index 239c6c9814a16..bb3473f059bd7 100644 --- a/components/google_cloud/actions/get-bucket/get-bucket.mjs +++ b/components/google_cloud/actions/get-bucket/get-bucket.mjs @@ -2,7 +2,12 @@ import googleCloud from "../../google_cloud.app.mjs"; export default { name: "Get Bucket Metadata", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "google_cloud-get-bucket", type: "action", description: "Gets Google Cloud Storage bucket metadata. [See the docs](https://googleapis.dev/nodejs/storage/latest/Bucket.html#getMetadata).", diff --git a/components/google_cloud/actions/get-object/get-object.mjs b/components/google_cloud/actions/get-object/get-object.mjs index e6967cf59c04d..ca13af1c3761a 100644 --- a/components/google_cloud/actions/get-object/get-object.mjs +++ b/components/google_cloud/actions/get-object/get-object.mjs @@ -2,7 +2,12 @@ import googleCloud from "../../google_cloud.app.mjs"; export default { name: "Get Object", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "google_cloud-get-object", type: "action", description: "Downloads an object from a Google Cloud Storage bucket, [See the docs](https://googleapis.dev/nodejs/storage/latest/File.html#get)", diff --git a/components/google_cloud/actions/list-buckets/list-buckets.mjs b/components/google_cloud/actions/list-buckets/list-buckets.mjs index c027b6b3afa07..e0f2f0d9b20cc 100644 --- a/components/google_cloud/actions/list-buckets/list-buckets.mjs +++ b/components/google_cloud/actions/list-buckets/list-buckets.mjs @@ -2,7 +2,12 @@ import googleCloud from "../../google_cloud.app.mjs"; export default { name: "List Buckets", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "google_cloud-list-buckets", type: "action", description: "List Google Cloud Storage buckets, [See the docs](https://googleapis.dev/nodejs/storage/latest/Storage.html#getBuckets)", diff --git a/components/google_cloud/actions/logging-write-log/logging-write-log.mjs b/components/google_cloud/actions/logging-write-log/logging-write-log.mjs index fb94308b362d0..c173cecc07c52 100644 --- a/components/google_cloud/actions/logging-write-log/logging-write-log.mjs +++ b/components/google_cloud/actions/logging-write-log/logging-write-log.mjs @@ -3,7 +3,12 @@ import logSeverity from "../../utils/logSeverity.mjs"; export default { name: "Logging - Write Log", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "google_cloud-logging-write-log", description: "Writes log data to the Logging service, [See the docs](https://cloud.google.com/nodejs/docs/reference/logging/latest/logging/log#_google_cloud_logging_Log_write_member_1_)", props: { diff --git a/components/google_cloud/actions/run-query/run-query.mjs b/components/google_cloud/actions/run-query/run-query.mjs index 2843605d57d3c..c2d6104648a38 100644 --- a/components/google_cloud/actions/run-query/run-query.mjs +++ b/components/google_cloud/actions/run-query/run-query.mjs @@ -2,7 +2,12 @@ import googleCloud from "../../google_cloud.app.mjs"; export default { name: "Run Query", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "google_cloud-run-query", type: "action", description: "Runs a query in BigQuery. [See the documentation](https://cloud.google.com/bigquery/docs/running-queries#node.js) for more information.", diff --git a/components/google_cloud/actions/search-objects/search-objects.mjs b/components/google_cloud/actions/search-objects/search-objects.mjs index 52b95c88ca405..8b4a93f2941d8 100644 --- a/components/google_cloud/actions/search-objects/search-objects.mjs +++ b/components/google_cloud/actions/search-objects/search-objects.mjs @@ -2,7 +2,12 @@ import googleCloud from "../../google_cloud.app.mjs"; export default { name: "Search Objects", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "google_cloud-search-objects", type: "action", description: "Search objects by a prefix, [See the docs](https://googleapis.dev/nodejs/storage/latest/Bucket.html#getFiles)", diff --git a/components/google_cloud/actions/switch-instance-boot-status/switch-instance-boot-status.mjs b/components/google_cloud/actions/switch-instance-boot-status/switch-instance-boot-status.mjs index 4e1418743f6c4..dabacb16585cd 100644 --- a/components/google_cloud/actions/switch-instance-boot-status/switch-instance-boot-status.mjs +++ b/components/google_cloud/actions/switch-instance-boot-status/switch-instance-boot-status.mjs @@ -2,7 +2,12 @@ import googleCloud from "../../google_cloud.app.mjs"; export default { name: "Switch Instance Boot Status", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, key: "google_cloud-switch-instance-boot-status", type: "action", description: "Switch a virtual machine instance boot status to start or stop it. [See the documentation](https://cloud.google.com/compute/docs/instances/stop-start-instance)", diff --git a/components/google_cloud/actions/upload-object/upload-object.mjs b/components/google_cloud/actions/upload-object/upload-object.mjs index 08b718cd70fc5..c94b0c0d9b280 100644 --- a/components/google_cloud/actions/upload-object/upload-object.mjs +++ b/components/google_cloud/actions/upload-object/upload-object.mjs @@ -2,7 +2,12 @@ import googleCloud from "../../google_cloud.app.mjs"; export default { name: "Upload An Object", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, key: "google_cloud-upload-object", type: "action", description: "Upload an object to a Google Cloud Storage bucket, [See the docs](https://googleapis.dev/nodejs/storage/latest/Bucket.html#upload)", diff --git a/components/google_cloud_translate/actions/translate/translate.mjs b/components/google_cloud_translate/actions/translate/translate.mjs index b022b524c0645..29ad7063fca6e 100644 --- a/components/google_cloud_translate/actions/translate/translate.mjs +++ b/components/google_cloud_translate/actions/translate/translate.mjs @@ -3,7 +3,12 @@ import { axios } from "@pipedream/platform"; export default { name: "Translate", - version: "0.0.3", + version: "0.0.4", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, key: "google_cloud_translate-translate", description: "Translate text using Google Cloud Translate", props: { diff --git a/components/google_cloud_vision_api/actions/detect-labels-in-image/detect-labels-in-image.mjs b/components/google_cloud_vision_api/actions/detect-labels-in-image/detect-labels-in-image.mjs index 9112133a4f9e8..32ee87d05459e 100644 --- a/components/google_cloud_vision_api/actions/detect-labels-in-image/detect-labels-in-image.mjs +++ b/components/google_cloud_vision_api/actions/detect-labels-in-image/detect-labels-in-image.mjs @@ -5,7 +5,12 @@ export default { name: "Detect Labels in Image", key: "google_cloud_vision_api-detect-labels-in-image", description: "Performs feature detection on a local or remote image file. [See the documentation](https://cloud.google.com/vision/docs/labels).", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_cloud_vision_api/actions/detect-logos-in-image/detect-logos-in-image.mjs b/components/google_cloud_vision_api/actions/detect-logos-in-image/detect-logos-in-image.mjs index d16f65e203372..b3a654f707829 100644 --- a/components/google_cloud_vision_api/actions/detect-logos-in-image/detect-logos-in-image.mjs +++ b/components/google_cloud_vision_api/actions/detect-logos-in-image/detect-logos-in-image.mjs @@ -5,7 +5,12 @@ export default { name: "Detect Logos in Image", key: "google_cloud_vision_api-detect-logos-in-image", description: "Detects logos within a local or remote image file. [See the documentation](https://cloud.google.com/vision/docs/detecting-logos).", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", async run({ $ }) { this.checkFileProp(); diff --git a/components/google_cloud_vision_api/actions/detect-text-in-image/detect-text-in-image.mjs b/components/google_cloud_vision_api/actions/detect-text-in-image/detect-text-in-image.mjs index b6ff7088afbbb..a687303c619d4 100644 --- a/components/google_cloud_vision_api/actions/detect-text-in-image/detect-text-in-image.mjs +++ b/components/google_cloud_vision_api/actions/detect-text-in-image/detect-text-in-image.mjs @@ -5,7 +5,12 @@ export default { name: "Detect Text in Image", key: "google_cloud_vision_api-detect-text-in-image", description: "Detects text in a local image or remote image. [See the documentation](https://cloud.google.com/vision/docs/ocr#vision_text_detection_gcs-drest).", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", async run({ $ }) { this.checkFileProp(); diff --git a/components/google_contacts/actions/create-contact/create-contact.mjs b/components/google_contacts/actions/create-contact/create-contact.mjs index a581126f7c9e9..24732e79b066a 100644 --- a/components/google_contacts/actions/create-contact/create-contact.mjs +++ b/components/google_contacts/actions/create-contact/create-contact.mjs @@ -5,7 +5,12 @@ export default { key: "google_contacts-create-contact", name: "Create Contact", description: "Creates a contact. [See the documentation](https://developers.google.com/people/api/rest/v1/people/createContact)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_contacts/actions/delete-contact/delete-contact.mjs b/components/google_contacts/actions/delete-contact/delete-contact.mjs index d083539bcfc55..98424ab07a4de 100644 --- a/components/google_contacts/actions/delete-contact/delete-contact.mjs +++ b/components/google_contacts/actions/delete-contact/delete-contact.mjs @@ -5,7 +5,12 @@ export default { key: "google_contacts-delete-contact", name: "Delete Contact", description: "Deletes a contact. [See the documentation](https://developers.google.com/people/api/rest/v1/people/deleteContact)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_contacts/actions/get-contact/get-contact.mjs b/components/google_contacts/actions/get-contact/get-contact.mjs index 4799f96a9310a..cc8d7ee7f9ef5 100644 --- a/components/google_contacts/actions/get-contact/get-contact.mjs +++ b/components/google_contacts/actions/get-contact/get-contact.mjs @@ -5,7 +5,12 @@ export default { key: "google_contacts-get-contact", name: "Get Contact", description: "Get information about a contact. [See the documentation](https://developers.google.com/people/api/rest/v1/people/get)", - version: "0.0.4", + version: "0.0.5", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/google_contacts/actions/list-contacts/list-contacts.mjs b/components/google_contacts/actions/list-contacts/list-contacts.mjs index f37ed4d1942a0..657bd81813586 100644 --- a/components/google_contacts/actions/list-contacts/list-contacts.mjs +++ b/components/google_contacts/actions/list-contacts/list-contacts.mjs @@ -6,7 +6,12 @@ export default { key: "google_contacts-list-contacts", name: "List Contacts", description: "Lists all contacts of the authenticated user. [See the documentation](https://developers.google.com/people/api/rest/v1/people.connections/list)", - version: "0.0.5", + version: "0.0.6", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { ...common.props, diff --git a/components/google_contacts/actions/update-contact/update-contact.mjs b/components/google_contacts/actions/update-contact/update-contact.mjs index ef7b211806e23..8960c614dfa4c 100644 --- a/components/google_contacts/actions/update-contact/update-contact.mjs +++ b/components/google_contacts/actions/update-contact/update-contact.mjs @@ -5,7 +5,12 @@ export default { key: "google_contacts-update-contact", name: "Update Contact", description: "Updates a contact. [See the documentation](https://developers.google.com/people/api/rest/v1/people/updateContact)", - version: "0.1.0", + version: "0.1.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { ...common.props, diff --git a/components/google_dialogflow/actions/create-context/create-context.mjs b/components/google_dialogflow/actions/create-context/create-context.mjs index c1426a9069622..131e1e6953b53 100644 --- a/components/google_dialogflow/actions/create-context/create-context.mjs +++ b/components/google_dialogflow/actions/create-context/create-context.mjs @@ -5,7 +5,12 @@ import { v4 } from "uuid"; export default { type: "action", key: "google_dialogflow-create-context", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Context", description: "Creates a context, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.sessions.contexts/create) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Contexts.html#createContext2)", props: { diff --git a/components/google_dialogflow/actions/create-entities/create-entities.mjs b/components/google_dialogflow/actions/create-entities/create-entities.mjs index 0de4db9536f49..941601f297073 100644 --- a/components/google_dialogflow/actions/create-entities/create-entities.mjs +++ b/components/google_dialogflow/actions/create-entities/create-entities.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "google_dialogflow-create-entities", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Entities", description: "Batch create entities, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.entityTypes.entities/batchCreate) and [client API docs](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.EntityTypes.html#batchCreateEntities2)", props: { diff --git a/components/google_dialogflow/actions/create-entity-type/create-entity-type.mjs b/components/google_dialogflow/actions/create-entity-type/create-entity-type.mjs index 2129d1aef7c0c..8918c44ec48c4 100644 --- a/components/google_dialogflow/actions/create-entity-type/create-entity-type.mjs +++ b/components/google_dialogflow/actions/create-entity-type/create-entity-type.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "google_dialogflow-create-entity-type", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Entity Type", description: "Creates an Entity Type, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.entityTypes/create) and [client API docs](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.EntityTypes.html#createEntityType2)", props: { diff --git a/components/google_dialogflow/actions/create-intent/create-intent.mjs b/components/google_dialogflow/actions/create-intent/create-intent.mjs index 9541ce66c97f6..f620dd3bea664 100644 --- a/components/google_dialogflow/actions/create-intent/create-intent.mjs +++ b/components/google_dialogflow/actions/create-intent/create-intent.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "google_dialogflow-create-intent", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create Intent", description: "Creates an intent, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.intents/create) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Intents.html#createIntent2)", props: { diff --git a/components/google_dialogflow/actions/create-update-agent/create-update-agent.mjs b/components/google_dialogflow/actions/create-update-agent/create-update-agent.mjs index ac0d89f54bf6a..55a477c7826ff 100644 --- a/components/google_dialogflow/actions/create-update-agent/create-update-agent.mjs +++ b/components/google_dialogflow/actions/create-update-agent/create-update-agent.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "google_dialogflow-create-update-agent", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Create or Update Agent", description: "Creates new agent, updates if already created [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects/setAgent) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2.Agents.html#setAgent2)", props: { diff --git a/components/google_dialogflow/actions/delete-agent/delete-agent.mjs b/components/google_dialogflow/actions/delete-agent/delete-agent.mjs index c4db0f88bf463..dd33d76f509f1 100644 --- a/components/google_dialogflow/actions/delete-agent/delete-agent.mjs +++ b/components/google_dialogflow/actions/delete-agent/delete-agent.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-delete-agent", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Delete Agent", description: "Deletes an agent, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects/deleteAgent) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2.Agents.html#deleteAgent2)", props: { diff --git a/components/google_dialogflow/actions/delete-context/delete-context.mjs b/components/google_dialogflow/actions/delete-context/delete-context.mjs index 8b4059d6b29a1..df8598511b130 100644 --- a/components/google_dialogflow/actions/delete-context/delete-context.mjs +++ b/components/google_dialogflow/actions/delete-context/delete-context.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-delete-context", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Delete Context", description: "Deletes a context [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.environments.users.sessions.contexts/delete) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Contexts.html#deleteContext2)", props: { diff --git a/components/google_dialogflow/actions/delete-entities/delete-entities.mjs b/components/google_dialogflow/actions/delete-entities/delete-entities.mjs index 28ce573439bdd..9a78a25998f36 100644 --- a/components/google_dialogflow/actions/delete-entities/delete-entities.mjs +++ b/components/google_dialogflow/actions/delete-entities/delete-entities.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-delete-entities", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Delete Entities", description: "Batch delete entities, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.entityTypes.entities/batchDelete) and [client API docs](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.EntityTypes.html#batchDeleteEntities2)", props: { diff --git a/components/google_dialogflow/actions/delete-entity-type/delete-entity-type.mjs b/components/google_dialogflow/actions/delete-entity-type/delete-entity-type.mjs index ac7339617857c..49b7835fdeed4 100644 --- a/components/google_dialogflow/actions/delete-entity-type/delete-entity-type.mjs +++ b/components/google_dialogflow/actions/delete-entity-type/delete-entity-type.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-delete-entity-type", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Delete Entity Type", description: "Deletes an entity type, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.entityTypes/delete) and [client API docs](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.EntityTypes.html#deleteEntityType2)", props: { diff --git a/components/google_dialogflow/actions/delete-intent/delete-intent.mjs b/components/google_dialogflow/actions/delete-intent/delete-intent.mjs index 7d79561173fd7..2761ca4d3afee 100644 --- a/components/google_dialogflow/actions/delete-intent/delete-intent.mjs +++ b/components/google_dialogflow/actions/delete-intent/delete-intent.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-delete-intent", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Delete Intent", description: "Deletes an intent, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.intents/delete) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Intents.html#deleteIntent2)", props: { diff --git a/components/google_dialogflow/actions/detect-intent/detect-intent.mjs b/components/google_dialogflow/actions/detect-intent/detect-intent.mjs index f67cf07cb754c..edab945c8e8b1 100644 --- a/components/google_dialogflow/actions/detect-intent/detect-intent.mjs +++ b/components/google_dialogflow/actions/detect-intent/detect-intent.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "google_dialogflow-detect-intent", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, name: "Detect Intent", description: "Processes a natural language query and returns structured, actionable data as a result, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.sessions/detectIntent) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Sessions.html#detectIntent2)", props: { diff --git a/components/google_dialogflow/actions/get-agent/get-agent.mjs b/components/google_dialogflow/actions/get-agent/get-agent.mjs index f837087b136d1..def4c91289bee 100644 --- a/components/google_dialogflow/actions/get-agent/get-agent.mjs +++ b/components/google_dialogflow/actions/get-agent/get-agent.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-get-agent", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Get Agent", description: "Retrieves an agent, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects/getAgent) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2.Agents.html#getAgent2)", props: { diff --git a/components/google_dialogflow/actions/get-context/get-context.mjs b/components/google_dialogflow/actions/get-context/get-context.mjs index a38ddbf13f305..126416161fcb1 100644 --- a/components/google_dialogflow/actions/get-context/get-context.mjs +++ b/components/google_dialogflow/actions/get-context/get-context.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-get-context", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Get Context", description: "Get a context, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.sessions.contexts/get) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Contexts.html#getContext2)", props: { diff --git a/components/google_dialogflow/actions/get-entity-type/get-entity-type.mjs b/components/google_dialogflow/actions/get-entity-type/get-entity-type.mjs index 3d9e50a7c3cc4..7434b9f901273 100644 --- a/components/google_dialogflow/actions/get-entity-type/get-entity-type.mjs +++ b/components/google_dialogflow/actions/get-entity-type/get-entity-type.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-get-entity-type", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Get Entity Type", description: "Retrieves an Entity Type, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.entityTypes/get) and [client API docs](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.EntityTypes.html#getEntityType2)", props: { diff --git a/components/google_dialogflow/actions/get-intent/get-intent.mjs b/components/google_dialogflow/actions/get-intent/get-intent.mjs index 54717c0b31e80..36178ea5812ec 100644 --- a/components/google_dialogflow/actions/get-intent/get-intent.mjs +++ b/components/google_dialogflow/actions/get-intent/get-intent.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-get-intent", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "Get Intent", description: "Retrieves an intent [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.intents/get) and [client API][https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Intents.html#getIntent2]", props: { diff --git a/components/google_dialogflow/actions/list-contexts/list-contexts.mjs b/components/google_dialogflow/actions/list-contexts/list-contexts.mjs index 37faadc7e7e8d..8b06de7253536 100644 --- a/components/google_dialogflow/actions/list-contexts/list-contexts.mjs +++ b/components/google_dialogflow/actions/list-contexts/list-contexts.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-list-contexts", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "List Contexts", description: "Retrieves the list of the contexts with the given session ID, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.sessions.contexts/list) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Contexts.html#listContexts2)", props: { diff --git a/components/google_dialogflow/actions/list-entity-types/list-entity-types.mjs b/components/google_dialogflow/actions/list-entity-types/list-entity-types.mjs index fb51af4dc235d..debdc8c97615a 100644 --- a/components/google_dialogflow/actions/list-entity-types/list-entity-types.mjs +++ b/components/google_dialogflow/actions/list-entity-types/list-entity-types.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-list-entity-types", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "List Entity Types", description: "Retrieves list of entity types, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.entityTypes/list) and [client API docs](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.EntityTypes.html#listEntityTypes2)", props: { diff --git a/components/google_dialogflow/actions/list-intents/list-intents.mjs b/components/google_dialogflow/actions/list-intents/list-intents.mjs index c0fc9ac45b755..ccbc9a5625ca0 100644 --- a/components/google_dialogflow/actions/list-intents/list-intents.mjs +++ b/components/google_dialogflow/actions/list-intents/list-intents.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-list-intents", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, name: "List Intents", description: "Retrieves the list of the intents, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2beta1/projects.agent.intents/list) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Intents.html#listIntents2)", props: { diff --git a/components/google_dialogflow/actions/update-context/update-context.mjs b/components/google_dialogflow/actions/update-context/update-context.mjs index 802ba9962002e..2b4762ecdf169 100644 --- a/components/google_dialogflow/actions/update-context/update-context.mjs +++ b/components/google_dialogflow/actions/update-context/update-context.mjs @@ -3,7 +3,12 @@ import googleDialogflow from "../../google_dialogflow.app.mjs"; export default { type: "action", key: "google_dialogflow-update-context", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Update Context", description: "Updates a context, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.sessions.contexts/patch) and [client API](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.Contexts.html#updateContext2)", props: { diff --git a/components/google_dialogflow/actions/update-entity-type/update-entity-type.mjs b/components/google_dialogflow/actions/update-entity-type/update-entity-type.mjs index 897a563632499..889ec7fba3251 100644 --- a/components/google_dialogflow/actions/update-entity-type/update-entity-type.mjs +++ b/components/google_dialogflow/actions/update-entity-type/update-entity-type.mjs @@ -4,7 +4,12 @@ import utils from "../../common/utils.mjs"; export default { type: "action", key: "google_dialogflow-update-entity-type", - version: "1.0.0", + version: "1.0.1", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, name: "Update Entity Type", description: "Updates an Entity Type, [See REST docs](https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/projects.agent.entityTypes/patch) and [client API docs](https://googleapis.dev/nodejs/dialogflow/latest/google.cloud.dialogflow.v2beta1.EntityTypes.html#updateEntityType2)", props: { diff --git a/components/google_directory/actions/create-group/create-group.mjs b/components/google_directory/actions/create-group/create-group.mjs index 9d2869aee3930..a640660c01304 100644 --- a/components/google_directory/actions/create-group/create-group.mjs +++ b/components/google_directory/actions/create-group/create-group.mjs @@ -4,7 +4,12 @@ export default { key: "google_directory-create-group", name: "Create Group", description: "Creates a new group. [See the documentation](https://developers.google.com/admin-sdk/directory/reference/rest/v1/groups/insert)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDirectory, diff --git a/components/google_directory/actions/create-user/create-user.mjs b/components/google_directory/actions/create-user/create-user.mjs index 5f42cb33bb9c2..95c3be4fb5c95 100644 --- a/components/google_directory/actions/create-user/create-user.mjs +++ b/components/google_directory/actions/create-user/create-user.mjs @@ -4,7 +4,12 @@ export default { key: "google_directory-create-user", name: "Create User", description: "Creates a new user. [See the documentation](https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/insert)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDirectory, diff --git a/components/google_directory/actions/get-group/get-group.mjs b/components/google_directory/actions/get-group/get-group.mjs index b1bbc5e31a8ac..43b785e093530 100644 --- a/components/google_directory/actions/get-group/get-group.mjs +++ b/components/google_directory/actions/get-group/get-group.mjs @@ -4,7 +4,12 @@ export default { key: "google_directory-get-group", name: "Get Group", description: "Retrieves information about a group. [See the documentation](https://developers.google.com/admin-sdk/directory/reference/rest/v1/groups/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleDirectory, diff --git a/components/google_directory/actions/get-user/get-user.mjs b/components/google_directory/actions/get-user/get-user.mjs index d7537eb278b54..f0386d2abbe8c 100644 --- a/components/google_directory/actions/get-user/get-user.mjs +++ b/components/google_directory/actions/get-user/get-user.mjs @@ -4,7 +4,12 @@ export default { key: "google_directory-get-user", name: "Get User", description: "Retrieves information about a user. [See the documentation](https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleDirectory, diff --git a/components/google_directory/actions/list-groups/list-groups.mjs b/components/google_directory/actions/list-groups/list-groups.mjs index 5f5f105afe437..3b7da2ab76274 100644 --- a/components/google_directory/actions/list-groups/list-groups.mjs +++ b/components/google_directory/actions/list-groups/list-groups.mjs @@ -4,7 +4,12 @@ export default { key: "google_directory-list-groups", name: "List Groups", description: "Retrieves a list of directory groups. [See the documentation](https://developers.google.com/admin-sdk/directory/reference/rest/v1/groups/list)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleDirectory, diff --git a/components/google_directory/actions/list-users/list-users.mjs b/components/google_directory/actions/list-users/list-users.mjs index 581bb385d04e6..ae2ade099fe33 100644 --- a/components/google_directory/actions/list-users/list-users.mjs +++ b/components/google_directory/actions/list-users/list-users.mjs @@ -4,7 +4,12 @@ export default { key: "google_directory-list-users", name: "List Users", description: "Retrieves a list of directory users. [See the documentation](https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/list)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleDirectory, diff --git a/components/google_docs/actions/append-image/append-image.mjs b/components/google_docs/actions/append-image/append-image.mjs index 772e357a7c527..5d68b97255407 100644 --- a/components/google_docs/actions/append-image/append-image.mjs +++ b/components/google_docs/actions/append-image/append-image.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-append-image", name: "Append Image to Document", description: "Appends an image to the end of a document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#InsertInlineImageRequest)", - version: "0.0.8", + version: "0.0.9", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/append-text/append-text.mjs b/components/google_docs/actions/append-text/append-text.mjs index cab8586ff1c9c..80d864eb903cd 100644 --- a/components/google_docs/actions/append-text/append-text.mjs +++ b/components/google_docs/actions/append-text/append-text.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-append-text", name: "Append Text", description: "Append text to an existing document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#InsertTextRequest)", - version: "0.1.7", + version: "0.1.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/create-document/create-document.mjs b/components/google_docs/actions/create-document/create-document.mjs index 9292373fe174f..e323937bf47b3 100644 --- a/components/google_docs/actions/create-document/create-document.mjs +++ b/components/google_docs/actions/create-document/create-document.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-create-document", name: "Create a New Document", description: "Create a new document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/create)", - version: "0.1.7", + version: "0.1.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/get-document/get-document.mjs b/components/google_docs/actions/get-document/get-document.mjs index 8f291fd6b1da3..f892e0c911d50 100644 --- a/components/google_docs/actions/get-document/get-document.mjs +++ b/components/google_docs/actions/get-document/get-document.mjs @@ -5,7 +5,12 @@ export default { key: "google_docs-get-document", name: "Get Document", description: "Get the contents of the latest version of a document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/get)", - version: "0.1.7", + version: "0.1.8", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/get-tab-content/get-tab-content.mjs b/components/google_docs/actions/get-tab-content/get-tab-content.mjs index ac26e4fa0bae3..959f1b85a6b3e 100644 --- a/components/google_docs/actions/get-tab-content/get-tab-content.mjs +++ b/components/google_docs/actions/get-tab-content/get-tab-content.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-get-tab-content", name: "Get Tab Content", description: "Get the content of a tab in a document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/get)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/insert-page-break/insert-page-break.mjs b/components/google_docs/actions/insert-page-break/insert-page-break.mjs index cf0e03bc8cfdf..82e39db64ecfd 100644 --- a/components/google_docs/actions/insert-page-break/insert-page-break.mjs +++ b/components/google_docs/actions/insert-page-break/insert-page-break.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-insert-page-break", name: "Insert Page Break", description: "Insert a page break into a document. [See the documentation](https://developers.google.com/workspace/docs/api/reference/rest/v1/documents/request#insertpagebreakrequest)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/insert-table/insert-table.mjs b/components/google_docs/actions/insert-table/insert-table.mjs index fb555049706e7..28605b9cb7dea 100644 --- a/components/google_docs/actions/insert-table/insert-table.mjs +++ b/components/google_docs/actions/insert-table/insert-table.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-insert-table", name: "Insert Table", description: "Insert a table into a document. [See the documentation](https://developers.google.com/workspace/docs/api/reference/rest/v1/documents/request#inserttablerequest)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/insert-text/insert-text.mjs b/components/google_docs/actions/insert-text/insert-text.mjs index 5919e3ee82982..3ab738d608f71 100644 --- a/components/google_docs/actions/insert-text/insert-text.mjs +++ b/components/google_docs/actions/insert-text/insert-text.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-insert-text", name: "Insert Text", description: "Insert text into a document. [See the documentation](https://developers.google.com/workspace/docs/api/reference/rest/v1/documents/request#inserttextrequest)", - version: "0.0.1", + version: "0.0.2", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/replace-image/replace-image.mjs b/components/google_docs/actions/replace-image/replace-image.mjs index 795f6a88fdb13..67af49da5d13c 100644 --- a/components/google_docs/actions/replace-image/replace-image.mjs +++ b/components/google_docs/actions/replace-image/replace-image.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-replace-image", name: "Replace Image", description: "Replace image in a existing document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#ReplaceImageRequest)", - version: "0.0.8", + version: "0.0.9", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDocs, diff --git a/components/google_docs/actions/replace-text/replace-text.mjs b/components/google_docs/actions/replace-text/replace-text.mjs index 7e33c790e8767..cb793c3bb1d43 100644 --- a/components/google_docs/actions/replace-text/replace-text.mjs +++ b/components/google_docs/actions/replace-text/replace-text.mjs @@ -4,7 +4,12 @@ export default { key: "google_docs-replace-text", name: "Replace Text", description: "Replace all instances of matched text in an existing document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#ReplaceAllTextRequest)", - version: "0.0.8", + version: "0.0.9", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDocs, diff --git a/components/google_drive/actions/add-comment/add-comment.mjs b/components/google_drive/actions/add-comment/add-comment.mjs index e566344aa6cae..60eecd679c633 100644 --- a/components/google_drive/actions/add-comment/add-comment.mjs +++ b/components/google_drive/actions/add-comment/add-comment.mjs @@ -4,7 +4,12 @@ export default { key: "google_drive-add-comment", name: "Add Comment", description: "Add an unanchored comment to a Google Doc (general feedback, no text highlighting). [See the documentation](https://developers.google.com/workspace/drive/api/reference/rest/v3/comments/create)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/add-file-sharing-preference/add-file-sharing-preference.mjs b/components/google_drive/actions/add-file-sharing-preference/add-file-sharing-preference.mjs index 317df7bda597f..dae30753b52db 100644 --- a/components/google_drive/actions/add-file-sharing-preference/add-file-sharing-preference.mjs +++ b/components/google_drive/actions/add-file-sharing-preference/add-file-sharing-preference.mjs @@ -20,7 +20,12 @@ export default { name: "Share File or Folder", description: "Add a [sharing permission](https://support.google.com/drive/answer/7166529) to the sharing preferences of a file or folder and provide a sharing URL. [See the documentation](https://developers.google.com/drive/api/v3/reference/permissions/create)", - version: "0.2.6", + version: "0.2.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/copy-file/copy-file.mjs b/components/google_drive/actions/copy-file/copy-file.mjs index 0481f7e943075..3445098cab444 100644 --- a/components/google_drive/actions/copy-file/copy-file.mjs +++ b/components/google_drive/actions/copy-file/copy-file.mjs @@ -4,7 +4,12 @@ export default { key: "google_drive-copy-file", name: "Copy File", description: "Create a copy of the specified file. [See the documentation](https://developers.google.com/drive/api/v3/reference/files/copy) for more information", - version: "0.1.13", + version: "0.1.14", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/create-file-from-template/create-file-from-template.mjs b/components/google_drive/actions/create-file-from-template/create-file-from-template.mjs index e47bd488aca3b..e122a6359d287 100644 --- a/components/google_drive/actions/create-file-from-template/create-file-from-template.mjs +++ b/components/google_drive/actions/create-file-from-template/create-file-from-template.mjs @@ -8,7 +8,12 @@ export default { key: "google_drive-create-file-from-template", name: "Create New File From Template", description: "Create a new Google Docs file from a template. Optionally include placeholders in the template document that will get replaced from this action. [See documentation](https://www.npmjs.com/package/google-docs-mustaches)", - version: "0.1.13", + version: "0.1.14", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/create-file-from-text/create-file-from-text.mjs b/components/google_drive/actions/create-file-from-text/create-file-from-text.mjs index 6e1fd77a870fa..060c2a2968601 100644 --- a/components/google_drive/actions/create-file-from-text/create-file-from-text.mjs +++ b/components/google_drive/actions/create-file-from-text/create-file-from-text.mjs @@ -5,7 +5,12 @@ export default { key: "google_drive-create-file-from-text", name: "Create New File From Text", description: "Create a new file from plain text. [See the documentation](https://developers.google.com/drive/api/v3/reference/files/create) for more information", - version: "0.2.6", + version: "0.2.7", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/create-folder/create-folder.mjs b/components/google_drive/actions/create-folder/create-folder.mjs index 572026f5855c2..a93e0f8f6927d 100644 --- a/components/google_drive/actions/create-folder/create-folder.mjs +++ b/components/google_drive/actions/create-folder/create-folder.mjs @@ -13,7 +13,12 @@ export default { key: "google_drive-create-folder", name: "Create Folder", description: "Create a new empty folder. [See the documentation](https://developers.google.com/drive/api/v3/reference/files/create) for more information", - version: "0.1.14", + version: "0.1.15", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/create-shared-drive/create-shared-drive.mjs b/components/google_drive/actions/create-shared-drive/create-shared-drive.mjs index 5265b5dc672c6..b1765662c983e 100644 --- a/components/google_drive/actions/create-shared-drive/create-shared-drive.mjs +++ b/components/google_drive/actions/create-shared-drive/create-shared-drive.mjs @@ -4,7 +4,12 @@ export default { key: "google_drive-create-shared-drive", name: "Create Shared Drive", description: "Create a new shared drive. [See the documentation](https://developers.google.com/drive/api/v3/reference/drives/create) for more information", - version: "0.1.14", + version: "0.1.15", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/delete-comment/delete-comment.mjs b/components/google_drive/actions/delete-comment/delete-comment.mjs index f748749b4ca1c..d43b466caf8cf 100644 --- a/components/google_drive/actions/delete-comment/delete-comment.mjs +++ b/components/google_drive/actions/delete-comment/delete-comment.mjs @@ -4,7 +4,12 @@ export default { key: "google_drive-delete-comment", name: "Delete Comment", description: "Delete a specific comment (Requires ownership or permissions). [See the documentation](https://developers.google.com/workspace/drive/api/reference/rest/v3/comments/delete)", - version: "0.0.2", + version: "0.0.3", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/delete-file/delete-file.mjs b/components/google_drive/actions/delete-file/delete-file.mjs index c0d088b8c5a06..f4c70e8d2d8c1 100644 --- a/components/google_drive/actions/delete-file/delete-file.mjs +++ b/components/google_drive/actions/delete-file/delete-file.mjs @@ -5,7 +5,12 @@ export default { name: "Delete File", description: "Permanently delete a file or folder without moving it to the trash. [See the documentation](https://developers.google.com/drive/api/v3/reference/files/delete) for more information", - version: "0.1.14", + version: "0.1.15", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/delete-shared-drive/delete-shared-drive.mjs b/components/google_drive/actions/delete-shared-drive/delete-shared-drive.mjs index 8f3a7f8fee516..45195b86b8f9e 100644 --- a/components/google_drive/actions/delete-shared-drive/delete-shared-drive.mjs +++ b/components/google_drive/actions/delete-shared-drive/delete-shared-drive.mjs @@ -4,7 +4,12 @@ export default { key: "google_drive-delete-shared-drive", name: "Delete Shared Drive", description: "Delete a shared drive without any content. [See the documentation](https://developers.google.com/drive/api/v3/reference/drives/delete) for more information", - version: "0.1.13", + version: "0.1.14", + annotations: { + destructiveHint: true, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive, diff --git a/components/google_drive/actions/download-file/download-file.mjs b/components/google_drive/actions/download-file/download-file.mjs index 27a99891899b6..f46f962c93688 100644 --- a/components/google_drive/actions/download-file/download-file.mjs +++ b/components/google_drive/actions/download-file/download-file.mjs @@ -18,7 +18,12 @@ export default { key: "google_drive-download-file", name: "Download File", description: "Download a file. [See the documentation](https://developers.google.com/drive/api/v3/manage-downloads) for more information", - version: "0.1.16", + version: "0.1.17", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, type: "action", props: { googleDrive,