google-apis-firebaseappcheck_v1beta 0.46.0 → 0.47.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: 2227c5667959304f6f296ddf42deb89db752ba2e7f58fb93e56846912207006d
4
- data.tar.gz: 192ae2604c300c70f54017a006055f7597bddbca9be33d4b3ee559917e50443d
3
+ metadata.gz: fa80ab2ea14f8afe80b91ab8d3c4fa57fa7593294fc840007f0791239104590a
4
+ data.tar.gz: 98ab5c406a9ad089fd81636e74ceea3f45e3d3ccec543d99b30e19c1adcf1d07
5
5
  SHA512:
6
- metadata.gz: 477587121de7d07c8938316fc00fc52c850333180942f5c8d72d8edde2eae8ab7207e2919ab21cafe11b6b95be56031156ae79173ad3df9ca9d16a91bd511d9e
7
- data.tar.gz: 5d5c0518f1d40e22d4f2bf815ece9c764a797c07e7ed64c5cd09da8a2d2bf9e7a9a53e9a462c733a13116f13a136d93bfc163a7ba862f3c35b427ad005faebde
6
+ metadata.gz: 952a96aa1c0db103fefb7255ea009c133202f17ddba24b2d7f85109ca21d41ece8cb57dbc66f74a01613494fc52c878e65353a9f9f6c4649c17464f1f6a00797
7
+ data.tar.gz: 3a430dc80b7e1af1aaeea88b17572a32f6c09a56db66c354d71bfc546fa9f25365f1d2430ab0ad7b97f565e6284117e04562425a0f2a291ee7e8527729423a78
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebaseappcheck_v1beta
2
2
 
3
+ ### v0.47.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260110
6
+
3
7
  ### v0.46.0 (2025-09-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20250901
@@ -601,6 +601,24 @@ module Google
601
601
  # @return [String]
602
602
  attr_accessor :custom_token
603
603
 
604
+ # Optional. When `limited_use` is set to `true`, this field specifies the
605
+ # desired `jti` claim (Section 4.1.7 of RFC 7519) in the returned App Check
606
+ # token. *Limited use* App Check tokens with the same `jti` will be counted as
607
+ # the same token for the purposes of replay protection. An error is returned if
608
+ # this field is specified without setting `limited_use` to `true`. The size of
609
+ # this field is limited to 500 bytes. If specified, its length must be at least
610
+ # 16 bytes. If this field is omitted or is empty and `limited_use` is set to `
611
+ # true`, a randomly generated `jti` claim with length between 16 and 500 bytes (
612
+ # inclusive) will be used in the returned App Check token. Leaving this field
613
+ # empty is only recommended if your custom attestation provider itself is not
614
+ # vulnerable to replay attacks. When `limited_use` is set to `false`, neither
615
+ # the presence nor the contents of the `jti` claim in the returned App Check
616
+ # token is specified. To ensure that the returned App Check token is eligible
617
+ # for limited use functionality, set `limited_use` to `true`.
618
+ # Corresponds to the JSON property `jti`
619
+ # @return [String]
620
+ attr_accessor :jti
621
+
604
622
  # Specifies whether this attestation is for use in a *limited use* (`true`) or *
605
623
  # session based* (`false`) context. To enable this attestation to be used with
606
624
  # the *replay protection* feature, set this to `true`. The default value is `
@@ -617,6 +635,7 @@ module Google
617
635
  # Update properties of this object
618
636
  def update!(**args)
619
637
  @custom_token = args[:custom_token] if args.key?(:custom_token)
638
+ @jti = args[:jti] if args.key?(:jti)
620
639
  @limited_use = args[:limited_use] if args.key?(:limited_use)
621
640
  end
622
641
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebaseappcheckV1beta
18
18
  # Version of the google-apis-firebaseappcheck_v1beta gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.47.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 = "20250901"
25
+ REVISION = "20260110"
26
26
  end
27
27
  end
28
28
  end
@@ -505,6 +505,7 @@ module Google
505
505
  # @private
506
506
  class Representation < Google::Apis::Core::JsonRepresentation
507
507
  property :custom_token, as: 'customToken'
508
+ property :jti, as: 'jti'
508
509
  property :limited_use, as: 'limitedUse'
509
510
  end
510
511
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseappcheck_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.47.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-firebaseappcheck_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1beta/v0.46.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1beta/v0.47.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappcheck_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: