Skip to content

Commit 620fa93

Browse files
feat: Automated regeneration of chat v1 client (#24708)
Auto-created at 2025-10-26 09:30:27 +0000 using the toys pull request generator.
1 parent 1079865 commit 620fa93

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61316,6 +61316,7 @@
6131661316
"/chat:v1/OpenLink": open_link
6131761317
"/chat:v1/OpenLink/url": url
6131861318
"/chat:v1/PermissionSetting": permission_setting
61319+
"/chat:v1/PermissionSetting/assistantManagersAllowed": assistant_managers_allowed
6131961320
"/chat:v1/PermissionSetting/managersAllowed": managers_allowed
6132061321
"/chat:v1/PermissionSetting/membersAllowed": members_allowed
6132161322
"/chat:v1/PermissionSettings": permission_settings

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.136.0 (2025-10-26)
4+
5+
* Regenerated from discovery document revision 20251016
6+
37
### v0.135.0 (2025-10-19)
48

59
* Regenerated from discovery document revision 20251014

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

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5402,6 +5402,13 @@ def update!(**args)
54025402
class PermissionSetting
54035403
include Google::Apis::Core::Hashable
54045404

5405+
# Optional. Whether space managers `ROLE_ASSISTANT_MANAGER`) have this
5406+
# permission.
5407+
# Corresponds to the JSON property `assistantManagersAllowed`
5408+
# @return [Boolean]
5409+
attr_accessor :assistant_managers_allowed
5410+
alias_method :assistant_managers_allowed?, :assistant_managers_allowed
5411+
54055412
# Optional. Whether space owners (`ROLE_MANAGER`) have this permission.
54065413
# Corresponds to the JSON property `managersAllowed`
54075414
# @return [Boolean]
@@ -5420,6 +5427,7 @@ def initialize(**args)
54205427

54215428
# Update properties of this object
54225429
def update!(**args)
5430+
@assistant_managers_allowed = args[:assistant_managers_allowed] if args.key?(:assistant_managers_allowed)
54235431
@managers_allowed = args[:managers_allowed] if args.key?(:managers_allowed)
54245432
@members_allowed = args[:members_allowed] if args.key?(:members_allowed)
54255433
end
@@ -5932,8 +5940,9 @@ class Space
59325940
# customer` is the `id` from the [Admin SDK customer resource](https://
59335941
# developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
59345942
# Private apps can also use the `customers/my_customer` alias to create the
5935-
# space in the same Google Workspace organization as the app. For DMs, this
5936-
# field isn't populated.
5943+
# space in the same Google Workspace organization as the app. This field isn't
5944+
# populated for direct messages (DMs) or when the space is created by non-Google
5945+
# Workspace users.
59375946
# Corresponds to the JSON property `customer`
59385947
# @return [String]
59395948
attr_accessor :customer

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.135.0"
19+
GEM_VERSION = "0.136.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 = "20251014"
25+
REVISION = "20251016"
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
@@ -2291,6 +2291,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
22912291
class PermissionSetting
22922292
# @private
22932293
class Representation < Google::Apis::Core::JsonRepresentation
2294+
property :assistant_managers_allowed, as: 'assistantManagersAllowed'
22942295
property :managers_allowed, as: 'managersAllowed'
22952296
property :members_allowed, as: 'membersAllowed'
22962297
end

0 commit comments

Comments
 (0)