google-apis-firebasedataconnect_v1beta 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e07753e10700ca8800a4e963487922a196e5c5f123d9fed9e0c7abbb5d7f69c
4
- data.tar.gz: 0d29c574851067205f9ef4b01510bfc82e33736501f33eb4a79fa47f71abc440
3
+ metadata.gz: 837ff1085630788937617a361ab1449076d49c7e71a5b340e3e0cd481635cc37
4
+ data.tar.gz: 58f84f95b63f13c51daecd6a056e46ac20d2493bfb2015336a7618aee1d9d095
5
5
  SHA512:
6
- metadata.gz: 25257d71a566e1d296ad5906754c196a6de5401bad716be6a730fb3afd15e0575ae1c583ed04743992044768e569a73a61ffca06847d5b3b51479724d66b134a
7
- data.tar.gz: cd15f62bdd279b23985caa1c3dbddcaf9797e21367195c7124c6fec6b2cffcae28bfd278aeb7419d4ef30be488a2897674becd7e3c6ae5214bf34191d70472dc
6
+ metadata.gz: 256aa681259d42719a7ec288813c31a3dec74cb77ed9ea3966d4b76d371904947d6478a478e9e40803a4fe6bb6b5bbe4207a3d57a7e064b7f546c1d4ded5d73d
7
+ data.tar.gz: 8d0a62becdd439b77a9741b718e4f6058b60fae1d6bc303b53dbc5dcf6a1e804610e7394322f39796c9906b1e7773090f802ffa219fb8de8246b84ad2e07d732
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebasedataconnect_v1beta
2
2
 
3
+ ### v0.9.0 (2025-07-13)
4
+
5
+ * Regenerated from discovery document revision 20250706
6
+
3
7
  ### v0.8.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250604
@@ -363,9 +363,13 @@ module Google
363
363
  # @return [String]
364
364
  attr_accessor :code
365
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.
366
+ # More detailed error message to assist debugging. It contains application
367
+ # business logic that are inappropriate to leak publicly. In the emulator, Data
368
+ # Connect API always includes it to assist local development and debugging. In
369
+ # the backend, ConnectorService always hides it. GraphqlService without
370
+ # impersonation always include it. GraphqlService with impersonation includes it
371
+ # only if explicitly opted-in with `include_debug_details` in `
372
+ # GraphqlRequestExtensions`.
369
373
  # Corresponds to the JSON property `debugDetails`
370
374
  # @return [String]
371
375
  attr_accessor :debug_details
@@ -502,6 +506,12 @@ module Google
502
506
  # @return [Hash<String,Object>]
503
507
  attr_accessor :auth_claims
504
508
 
509
+ # Optional. If set, include debug details in GraphQL error extensions.
510
+ # Corresponds to the JSON property `includeDebugDetails`
511
+ # @return [Boolean]
512
+ attr_accessor :include_debug_details
513
+ alias_method :include_debug_details?, :include_debug_details
514
+
505
515
  # Evaluate the auth policy as an unauthenticated request. Can only be set to
506
516
  # true.
507
517
  # Corresponds to the JSON property `unauthenticated`
@@ -516,6 +526,7 @@ module Google
516
526
  # Update properties of this object
517
527
  def update!(**args)
518
528
  @auth_claims = args[:auth_claims] if args.key?(:auth_claims)
529
+ @include_debug_details = args[:include_debug_details] if args.key?(:include_debug_details)
519
530
  @unauthenticated = args[:unauthenticated] if args.key?(:unauthenticated)
520
531
  end
521
532
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebasedataconnectV1beta
18
18
  # Version of the google-apis-firebasedataconnect_v1beta gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250604"
25
+ REVISION = "20250706"
26
26
  end
27
27
  end
28
28
  end
@@ -342,6 +342,7 @@ module Google
342
342
  # @private
343
343
  class Representation < Google::Apis::Core::JsonRepresentation
344
344
  hash :auth_claims, as: 'authClaims'
345
+ property :include_debug_details, as: 'includeDebugDetails'
345
346
  property :unauthenticated, as: 'unauthenticated'
346
347
  end
347
348
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebasedataconnect_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasedataconnect_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebasedataconnect_v1beta/v0.8.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebasedataconnect_v1beta/v0.9.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasedataconnect_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: