Skip to content

Commit 01bf298

Browse files
feat: Automated regeneration of firebasedataconnect v1beta client (googleapis#23443)
Auto-created at 2025-06-15 10:36:33 +0000 using the toys pull request generator.
1 parent e5ca411 commit 01bf298

File tree

5 files changed

+35
-3
lines changed

5 files changed

+35
-3
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239910,7 +239910,10 @@
239910239910
"/firebasedataconnect:v1beta/GraphqlError/path": path
239911239911
"/firebasedataconnect:v1beta/GraphqlError/path/path": path
239912239912
"/firebasedataconnect:v1beta/GraphqlErrorExtensions": graphql_error_extensions
239913+
"/firebasedataconnect:v1beta/GraphqlErrorExtensions/code": code
239914+
"/firebasedataconnect:v1beta/GraphqlErrorExtensions/debugDetails": debug_details
239913239915
"/firebasedataconnect:v1beta/GraphqlErrorExtensions/file": file
239916+
"/firebasedataconnect:v1beta/GraphqlErrorExtensions/resource": resource
239914239917
"/firebasedataconnect:v1beta/GraphqlRequest": graphql_request
239915239918
"/firebasedataconnect:v1beta/GraphqlRequest/extensions": extensions
239916239919
"/firebasedataconnect:v1beta/GraphqlRequest/operationName": operation_name

generated/google-apis-firebasedataconnect_v1beta/CHANGELOG.md

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

3+
### v0.8.0 (2025-06-15)
4+
5+
* Regenerated from discovery document revision 20250604
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.7.0 (2025-05-04)
49

510
* Regenerated using generator version 0.17.0

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,19 +358,40 @@ def update!(**args)
358358
class GraphqlErrorExtensions
359359
include Google::Apis::Core::Hashable
360360

361+
# Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
362+
# Corresponds to the JSON property `code`
363+
# @return [String]
364+
attr_accessor :code
365+
366+
# More detailed error message to assist debugging. In the backend, only include
367+
# it in admin authenticated API like ExecuteGraphql. In the emulator, always
368+
# include it to assist debugging.
369+
# Corresponds to the JSON property `debugDetails`
370+
# @return [String]
371+
attr_accessor :debug_details
372+
361373
# The source file name where the error occurred. Included only for `UpdateSchema`
362374
# and `UpdateConnector`, it corresponds to `File.path` of the provided `Source`.
363375
# Corresponds to the JSON property `file`
364376
# @return [String]
365377
attr_accessor :file
366378

379+
# Distinguish which schema or connector the error originates from. It should be
380+
# set on errors from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
381+
# Corresponds to the JSON property `resource`
382+
# @return [String]
383+
attr_accessor :resource
384+
367385
def initialize(**args)
368386
update!(**args)
369387
end
370388

371389
# Update properties of this object
372390
def update!(**args)
391+
@code = args[:code] if args.key?(:code)
392+
@debug_details = args[:debug_details] if args.key?(:debug_details)
373393
@file = args[:file] if args.key?(:file)
394+
@resource = args[:resource] if args.key?(:resource)
374395
end
375396
end
376397

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module FirebasedataconnectV1beta
1818
# Version of the google-apis-firebasedataconnect_v1beta gem
19-
GEM_VERSION = "0.7.0"
19+
GEM_VERSION = "0.8.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,10 @@ class Representation < Google::Apis::Core::JsonRepresentation
303303
class GraphqlErrorExtensions
304304
# @private
305305
class Representation < Google::Apis::Core::JsonRepresentation
306+
property :code, as: 'code'
307+
property :debug_details, as: 'debugDetails'
306308
property :file, as: 'file'
309+
property :resource, as: 'resource'
307310
end
308311
end
309312

0 commit comments

Comments
 (0)