Skip to content

Commit 1e0e7bf

Browse files
feat: Automated regeneration of chat v1 client (googleapis#23679)
Auto-created at 2025-07-13 10:05:09 +0000 using the toys pull request generator.
1 parent 9f15898 commit 1e0e7bf

File tree

5 files changed

+23
-3
lines changed

5 files changed

+23
-3
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58469,6 +58469,7 @@
5846958469
"/chat:v1/GoogleAppsCardV1Section/widgets/widget": widget
5847058470
"/chat:v1/GoogleAppsCardV1SelectionInput": google_apps_card_v1_selection_input
5847158471
"/chat:v1/GoogleAppsCardV1SelectionInput/externalDataSource": external_data_source
58472+
"/chat:v1/GoogleAppsCardV1SelectionInput/hintText": hint_text
5847258473
"/chat:v1/GoogleAppsCardV1SelectionInput/items": items
5847358474
"/chat:v1/GoogleAppsCardV1SelectionInput/items/item": item
5847458475
"/chat:v1/GoogleAppsCardV1SelectionInput/label": label

generated/google-apis-chat_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-chat_v1
22

3+
### v0.124.0 (2025-07-13)
4+
5+
* Regenerated from discovery document revision 20250706
6+
37
### v0.123.0 (2025-06-08)
48

59
* Regenerated from discovery document revision 20250529

generated/google-apis-chat_v1/lib/google/apis/chat_v1/classes.rb

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,12 @@ def update!(**args)
10371037
# addition to receiving events from user interactions, Chat apps can receive
10381038
# events about changes to spaces, such as when a new member is added to a space.
10391039
# To learn about space events, see [Work with events from Google Chat](https://
1040-
# developers.google.com/workspace/chat/events-overview).
1040+
# developers.google.com/workspace/chat/events-overview). Note: This event is
1041+
# only used for [Chat interaction events](https://developers.google.com/
1042+
# workspace/chat/receive-respond-interactions). If your Chat app is built as a [
1043+
# Google Workspace add-on](https://developers.google.com/workspace/add-ons/chat/
1044+
# build), see [Chat event objects](https://developers.google.com/workspace/add-
1045+
# ons/concepts/event-objects#chat-event-object) in the add-ons documentation.
10411046
class DeprecatedEvent
10421047
include Google::Apis::Core::Hashable
10431048

@@ -3121,6 +3126,14 @@ class GoogleAppsCardV1SelectionInput
31213126
# @return [Google::Apis::ChatV1::GoogleAppsCardV1Action]
31223127
attr_accessor :external_data_source
31233128

3129+
# Optional. Text that appears below the selection input field meant to assist
3130+
# users by prompting them to enter a certain value. This text is always visible.
3131+
# Only supported by Google Workspace Workflows, but not Google Chat API or
3132+
# Google Workspace Add-ons.
3133+
# Corresponds to the JSON property `hintText`
3134+
# @return [String]
3135+
attr_accessor :hint_text
3136+
31243137
# An array of selectable items. For example, an array of radio buttons or
31253138
# checkboxes. Supports up to 100 items.
31263139
# Corresponds to the JSON property `items`
@@ -3189,6 +3202,7 @@ def initialize(**args)
31893202
# Update properties of this object
31903203
def update!(**args)
31913204
@external_data_source = args[:external_data_source] if args.key?(:external_data_source)
3205+
@hint_text = args[:hint_text] if args.key?(:hint_text)
31923206
@items = args[:items] if args.key?(:items)
31933207
@label = args[:label] if args.key?(:label)
31943208
@multi_select_max_selected_items = args[:multi_select_max_selected_items] if args.key?(:multi_select_max_selected_items)

generated/google-apis-chat_v1/lib/google/apis/chat_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module ChatV1
1818
# Version of the google-apis-chat_v1 gem
19-
GEM_VERSION = "0.123.0"
19+
GEM_VERSION = "0.124.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250529"
25+
REVISION = "20250706"
2626
end
2727
end
2828
end

generated/google-apis-chat_v1/lib/google/apis/chat_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,6 +1651,7 @@ class GoogleAppsCardV1SelectionInput
16511651
class Representation < Google::Apis::Core::JsonRepresentation
16521652
property :external_data_source, as: 'externalDataSource', class: Google::Apis::ChatV1::GoogleAppsCardV1Action, decorator: Google::Apis::ChatV1::GoogleAppsCardV1Action::Representation
16531653

1654+
property :hint_text, as: 'hintText'
16541655
collection :items, as: 'items', class: Google::Apis::ChatV1::GoogleAppsCardV1SelectionItem, decorator: Google::Apis::ChatV1::GoogleAppsCardV1SelectionItem::Representation
16551656

16561657
property :label, as: 'label'

0 commit comments

Comments
 (0)