Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -301398,6 +301398,7 @@
"/homegraph:v1/SyncResponsePayload/devices": devices
"/homegraph:v1/SyncResponsePayload/devices/device": device
"/homegraph:v1/TraitData": trait_data
"/homegraph:v1/TraitData/commitTime": commit_time
"/homegraph:v1/TraitData/trait": trait
"/homegraph:v1/TraitData/trait/trait": trait
"/homegraph:v1/fields": fields
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-homegraph_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-homegraph_v1

### v0.31.0 (2026-06-28)

* Regenerated from discovery document revision 20260619

### v0.30.0 (2026-06-14)

* Regenerated from discovery document revision 20260604
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,12 @@ def update!(**args)
class TraitData
include Google::Apis::Core::Hashable

# Other metadata for the trait. The time the client update was committed in the
# server.
# Corresponds to the JSON property `commitTime`
# @return [String]
attr_accessor :commit_time

# The Provider Home API trait payload.
# Corresponds to the JSON property `trait`
# @return [Hash<String,Object>]
Expand All @@ -903,6 +909,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@commit_time = args[:commit_time] if args.key?(:commit_time)
@trait = args[:trait] if args.key?(:trait)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module HomegraphV1
# Version of the google-apis-homegraph_v1 gem
GEM_VERSION = "0.30.0"
GEM_VERSION = "0.31.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.19.0"

# Revision of the discovery document this client was generated from
REVISION = "20260604"
REVISION = "20260619"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class TraitData
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :commit_time, as: 'commitTime'
hash :trait, as: 'trait'
end
end
Expand Down
Loading