google-apis-firebaseappcheck_v1 0.18.0 → 0.20.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: 6154f3381855b78c34dc70e3e3bd23446585b771be05fb5e70fd27347a373018
4
- data.tar.gz: de91f83285f20ccba3a7f778c3eae385650c2ff24eba32782cace4a25e657553
3
+ metadata.gz: ba195cd8fb1fcc85658bff5a885454dc34ce1610821070578027d1c8d855a26a
4
+ data.tar.gz: 1d6fd45b35408c523e8094541aa5e8d33d4ae7ce92e238b2e838b4a15ac105a1
5
5
  SHA512:
6
- metadata.gz: eef3ae0e33ca31ba345a7f857e15ede35aa7ccdab68073d015e922694d9c16df0c7142b3b64f141bbb02fc8cf34e86cf660e979242dd1ae530b207f74df530fe
7
- data.tar.gz: f676c39abdc882f154a79e14b6b91b1a2d4fed9c83a9a99a057bf2848ad763a47934dc2e1f2c20b1ae3b81a5d834249c3690da5009df4892ffb31cb22f4ef0d5
6
+ metadata.gz: ca0f538341a776d169e4b6c5c9a9224affc96dc338c30bced0dc590eb2c0f9ec4100603fbf1ce93c072ddea1b73390d536af14aaae5275cb845d1e51920a96d1
7
+ data.tar.gz: 77891ff2aae43304e44197f360a705be544a3241499715ff67b697c39c6e234631a38f38c9bbda5f67932d40f510e400ab90025821d926166ae39e05d51ba40a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-firebaseappcheck_v1
2
2
 
3
+ ### v0.20.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250901
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.19.0 (2025-05-04)
9
+
10
+ * Regenerated using generator version 0.17.0
11
+
3
12
  ### v0.18.0 (2024-10-06)
4
13
 
5
14
  * Regenerated from discovery document revision 20240930
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://firebase.google.com/docs/app-check) may prov
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -907,6 +907,44 @@ module Google
907
907
  class GoogleFirebaseAppcheckV1PlayIntegrityConfig
908
908
  include Google::Apis::Core::Hashable
909
909
 
910
+ # A settings object specifying account requirements for Android devices running
911
+ # your app. These settings correspond to requirements on the [**account details**
912
+ # field](https://developer.android.com/google/play/integrity/verdicts#account-
913
+ # details-field) obtained from the Play Integrity API. See the [default
914
+ # responses table](https://developer.android.com/google/play/integrity/setup#
915
+ # default) for a quick summary. The default values for these settings work for
916
+ # most apps, and are recommended.
917
+ # Corresponds to the JSON property `accountDetails`
918
+ # @return [Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails]
919
+ attr_accessor :account_details
920
+
921
+ # A settings object specifying application integrity requirements for Android
922
+ # devices running your app. These settings correspond to requirements on the [**
923
+ # application integrity** field](https://developer.android.com/google/play/
924
+ # integrity/verdicts#application-integrity-field) obtained from the Play
925
+ # Integrity API. See the [default responses table](https://developer.android.com/
926
+ # google/play/integrity/setup#default) for a quick summary. The default values
927
+ # for these settings work for most apps, and are recommended.
928
+ # Corresponds to the JSON property `appIntegrity`
929
+ # @return [Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity]
930
+ attr_accessor :app_integrity
931
+
932
+ # A settings object specifying device integrity requirements for Android devices
933
+ # running your app. These settings correspond to requirements on the [**device
934
+ # integrity** field](https://developer.android.com/google/play/integrity/
935
+ # verdicts#device-integrity-field) obtained from the Play Integrity API. See the
936
+ # [default responses table](https://developer.android.com/google/play/integrity/
937
+ # setup#default) for a quick summary. Warning: There are also [conditional](
938
+ # https://developer.android.com/google/play/integrity/setup#conditional) as well
939
+ # as [optional](https://developer.android.com/google/play/integrity/setup#
940
+ # optional_device_information) responses that you can receive, but requires
941
+ # additional explicit opt-in from you. The App Check API is **not** responsible
942
+ # for any such opt-ins. The default values for these settings work for most apps,
943
+ # and are recommended.
944
+ # Corresponds to the JSON property `deviceIntegrity`
945
+ # @return [Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity]
946
+ attr_accessor :device_integrity
947
+
910
948
  # Required. The relative resource name of the Play Integrity configuration
911
949
  # object, in the format: ``` projects/`project_number`/apps/`app_id`/
912
950
  # playIntegrityConfig ```
@@ -927,11 +965,115 @@ module Google
927
965
 
928
966
  # Update properties of this object
929
967
  def update!(**args)
968
+ @account_details = args[:account_details] if args.key?(:account_details)
969
+ @app_integrity = args[:app_integrity] if args.key?(:app_integrity)
970
+ @device_integrity = args[:device_integrity] if args.key?(:device_integrity)
930
971
  @name = args[:name] if args.key?(:name)
931
972
  @token_ttl = args[:token_ttl] if args.key?(:token_ttl)
932
973
  end
933
974
  end
934
975
 
976
+ # A settings object specifying account requirements for Android devices running
977
+ # your app. These settings correspond to requirements on the [**account details**
978
+ # field](https://developer.android.com/google/play/integrity/verdicts#account-
979
+ # details-field) obtained from the Play Integrity API. See the [default
980
+ # responses table](https://developer.android.com/google/play/integrity/setup#
981
+ # default) for a quick summary. The default values for these settings work for
982
+ # most apps, and are recommended.
983
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails
984
+ include Google::Apis::Core::Hashable
985
+
986
+ # Specifies whether the caller must have received the [`LICENSED` verdict](https:
987
+ # //developer.android.com/google/play/integrity/verdicts#account-details-field).
988
+ # For additional details about scenarios where your users will receive this `
989
+ # LICENSED` label, see [the default responses table](https://developer.android.
990
+ # com/google/play/integrity/setup#default). If set to `true`, apps without the `
991
+ # LICENSED` app licensing verdict will be rejected. If set to `false`, any app
992
+ # licensing verdict is allowed. The default value is `false`.
993
+ # Corresponds to the JSON property `requireLicensed`
994
+ # @return [Boolean]
995
+ attr_accessor :require_licensed
996
+ alias_method :require_licensed?, :require_licensed
997
+
998
+ def initialize(**args)
999
+ update!(**args)
1000
+ end
1001
+
1002
+ # Update properties of this object
1003
+ def update!(**args)
1004
+ @require_licensed = args[:require_licensed] if args.key?(:require_licensed)
1005
+ end
1006
+ end
1007
+
1008
+ # A settings object specifying application integrity requirements for Android
1009
+ # devices running your app. These settings correspond to requirements on the [**
1010
+ # application integrity** field](https://developer.android.com/google/play/
1011
+ # integrity/verdicts#application-integrity-field) obtained from the Play
1012
+ # Integrity API. See the [default responses table](https://developer.android.com/
1013
+ # google/play/integrity/setup#default) for a quick summary. The default values
1014
+ # for these settings work for most apps, and are recommended.
1015
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity
1016
+ include Google::Apis::Core::Hashable
1017
+
1018
+ # Specifies whether your running app is allowed to have the `
1019
+ # UNRECOGNIZED_VERSION` [app recognition verdict](https://developer.android.com/
1020
+ # google/play/integrity/verdicts#application-integrity-field). Note that the app
1021
+ # recognition verdict `PLAY_RECOGNIZED` is a strong, comprehensive integrity
1022
+ # signal that takes into account various other signals, including conditional
1023
+ # and optional device integrity responses that you have opted into. If your app
1024
+ # is published off-Play, this field should be set to `true` to allow instances
1025
+ # of your app installed from off-Play sources to function. If set to `false`,
1026
+ # only `PLAY_RECOGNIZED` verdicts are allowed, and both `UNRECOGNIZED_VERSION`
1027
+ # and `UNEVALUATED` will be rejected. If set to `true`, any app recognition
1028
+ # verdict is allowed. The default value is `false`.
1029
+ # Corresponds to the JSON property `allowUnrecognizedVersion`
1030
+ # @return [Boolean]
1031
+ attr_accessor :allow_unrecognized_version
1032
+ alias_method :allow_unrecognized_version?, :allow_unrecognized_version
1033
+
1034
+ def initialize(**args)
1035
+ update!(**args)
1036
+ end
1037
+
1038
+ # Update properties of this object
1039
+ def update!(**args)
1040
+ @allow_unrecognized_version = args[:allow_unrecognized_version] if args.key?(:allow_unrecognized_version)
1041
+ end
1042
+ end
1043
+
1044
+ # A settings object specifying device integrity requirements for Android devices
1045
+ # running your app. These settings correspond to requirements on the [**device
1046
+ # integrity** field](https://developer.android.com/google/play/integrity/
1047
+ # verdicts#device-integrity-field) obtained from the Play Integrity API. See the
1048
+ # [default responses table](https://developer.android.com/google/play/integrity/
1049
+ # setup#default) for a quick summary. Warning: There are also [conditional](
1050
+ # https://developer.android.com/google/play/integrity/setup#conditional) as well
1051
+ # as [optional](https://developer.android.com/google/play/integrity/setup#
1052
+ # optional_device_information) responses that you can receive, but requires
1053
+ # additional explicit opt-in from you. The App Check API is **not** responsible
1054
+ # for any such opt-ins. The default values for these settings work for most apps,
1055
+ # and are recommended.
1056
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity
1057
+ include Google::Apis::Core::Hashable
1058
+
1059
+ # Specifies the minimum device integrity level in order for the device to be
1060
+ # considered valid. Any device with a device recognition verdict lower than this
1061
+ # level will be rejected. If this is unspecified, the default level is `
1062
+ # NO_INTEGRITY`.
1063
+ # Corresponds to the JSON property `minDeviceRecognitionLevel`
1064
+ # @return [String]
1065
+ attr_accessor :min_device_recognition_level
1066
+
1067
+ def initialize(**args)
1068
+ update!(**args)
1069
+ end
1070
+
1071
+ # Update properties of this object
1072
+ def update!(**args)
1073
+ @min_device_recognition_level = args[:min_device_recognition_level] if args.key?(:min_device_recognition_level)
1074
+ end
1075
+ end
1076
+
935
1077
  # A JWK as specified by [section 4 of RFC 7517](https://tools.ietf.org/html/
936
1078
  # rfc7517#section-4) and [section 6.3.1 of RFC 7518](https://tools.ietf.org/html/
937
1079
  # rfc7518#section-6.3.1).
@@ -1022,6 +1164,16 @@ module Google
1022
1164
  # @return [String]
1023
1165
  attr_accessor :name
1024
1166
 
1167
+ # A settings object specifying risk tolerance and requirements for your
1168
+ # application. These settings correspond to requirements on the [**`riskAnalysis`
1169
+ # **](https://cloud.google.com/recaptcha/docs/interpret-assessment-website#
1170
+ # interpret_assessment) tuple in the assessment obtained from reCAPTCHA
1171
+ # Enterprise. The default values for these settings work for most apps, and are
1172
+ # recommended.
1173
+ # Corresponds to the JSON property `riskAnalysis`
1174
+ # @return [Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1RecaptchaEnterpriseConfigRiskAnalysis]
1175
+ attr_accessor :risk_analysis
1176
+
1025
1177
  # The score-based site key [created in reCAPTCHA Enterprise](https://cloud.
1026
1178
  # google.com/recaptcha-enterprise/docs/create-key#creating_a_site_key) used to [
1027
1179
  # invoke reCAPTCHA and generate the reCAPTCHA tokens](https://cloud.google.com/
@@ -1046,11 +1198,39 @@ module Google
1046
1198
  # Update properties of this object
1047
1199
  def update!(**args)
1048
1200
  @name = args[:name] if args.key?(:name)
1201
+ @risk_analysis = args[:risk_analysis] if args.key?(:risk_analysis)
1049
1202
  @site_key = args[:site_key] if args.key?(:site_key)
1050
1203
  @token_ttl = args[:token_ttl] if args.key?(:token_ttl)
1051
1204
  end
1052
1205
  end
1053
1206
 
1207
+ # A settings object specifying risk tolerance and requirements for your
1208
+ # application. These settings correspond to requirements on the [**`riskAnalysis`
1209
+ # **](https://cloud.google.com/recaptcha/docs/interpret-assessment-website#
1210
+ # interpret_assessment) tuple in the assessment obtained from reCAPTCHA
1211
+ # Enterprise. The default values for these settings work for most apps, and are
1212
+ # recommended.
1213
+ class GoogleFirebaseAppcheckV1RecaptchaEnterpriseConfigRiskAnalysis
1214
+ include Google::Apis::Core::Hashable
1215
+
1216
+ # Specifies a minimum score required for a reCAPTCHA token to be considered
1217
+ # valid. If its score is greater than or equal to this value, it will be
1218
+ # accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.
1219
+ # 0. The default value is 0.5.
1220
+ # Corresponds to the JSON property `minValidScore`
1221
+ # @return [Float]
1222
+ attr_accessor :min_valid_score
1223
+
1224
+ def initialize(**args)
1225
+ update!(**args)
1226
+ end
1227
+
1228
+ # Update properties of this object
1229
+ def update!(**args)
1230
+ @min_valid_score = args[:min_valid_score] if args.key?(:min_valid_score)
1231
+ end
1232
+ end
1233
+
1054
1234
  # An app's reCAPTCHA v3 configuration object. This configuration is used by
1055
1235
  # ExchangeRecaptchaV3Token to validate reCAPTCHA tokens issued to apps by
1056
1236
  # reCAPTCHA v3. It also controls certain properties of the returned `
@@ -1058,6 +1238,14 @@ module Google
1058
1238
  class GoogleFirebaseAppcheckV1RecaptchaV3Config
1059
1239
  include Google::Apis::Core::Hashable
1060
1240
 
1241
+ # Specifies a minimum score required for a reCAPTCHA token to be considered
1242
+ # valid. If its score is greater than or equal to this value, it will be
1243
+ # accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.
1244
+ # 0. The default value is 0.5.
1245
+ # Corresponds to the JSON property `minValidScore`
1246
+ # @return [Float]
1247
+ attr_accessor :min_valid_score
1248
+
1061
1249
  # Required. The relative resource name of the reCAPTCHA v3 configuration object,
1062
1250
  # in the format: ``` projects/`project_number`/apps/`app_id`/recaptchaV3Config ``
1063
1251
  # `
@@ -1093,6 +1281,7 @@ module Google
1093
1281
 
1094
1282
  # Update properties of this object
1095
1283
  def update!(**args)
1284
+ @min_valid_score = args[:min_valid_score] if args.key?(:min_valid_score)
1096
1285
  @name = args[:name] if args.key?(:name)
1097
1286
  @site_secret = args[:site_secret] if args.key?(:site_secret)
1098
1287
  @site_secret_set = args[:site_secret_set] if args.key?(:site_secret_set)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebaseappcheckV1
18
18
  # Version of the google-apis-firebaseappcheck_v1 gem
19
- GEM_VERSION = "0.18.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240930"
25
+ REVISION = "20250901"
26
26
  end
27
27
  end
28
28
  end
@@ -214,6 +214,24 @@ module Google
214
214
  include Google::Apis::Core::JsonObjectSupport
215
215
  end
216
216
 
217
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
223
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
229
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
217
235
  class GoogleFirebaseAppcheckV1PublicJwk
218
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
237
 
@@ -232,6 +250,12 @@ module Google
232
250
  include Google::Apis::Core::JsonObjectSupport
233
251
  end
234
252
 
253
+ class GoogleFirebaseAppcheckV1RecaptchaEnterpriseConfigRiskAnalysis
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
235
259
  class GoogleFirebaseAppcheckV1RecaptchaV3Config
236
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
261
 
@@ -535,11 +559,38 @@ module Google
535
559
  class GoogleFirebaseAppcheckV1PlayIntegrityConfig
536
560
  # @private
537
561
  class Representation < Google::Apis::Core::JsonRepresentation
562
+ property :account_details, as: 'accountDetails', class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails, decorator: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails::Representation
563
+
564
+ property :app_integrity, as: 'appIntegrity', class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity, decorator: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity::Representation
565
+
566
+ property :device_integrity, as: 'deviceIntegrity', class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity, decorator: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity::Representation
567
+
538
568
  property :name, as: 'name'
539
569
  property :token_ttl, as: 'tokenTtl'
540
570
  end
541
571
  end
542
572
 
573
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails
574
+ # @private
575
+ class Representation < Google::Apis::Core::JsonRepresentation
576
+ property :require_licensed, as: 'requireLicensed'
577
+ end
578
+ end
579
+
580
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity
581
+ # @private
582
+ class Representation < Google::Apis::Core::JsonRepresentation
583
+ property :allow_unrecognized_version, as: 'allowUnrecognizedVersion'
584
+ end
585
+ end
586
+
587
+ class GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity
588
+ # @private
589
+ class Representation < Google::Apis::Core::JsonRepresentation
590
+ property :min_device_recognition_level, as: 'minDeviceRecognitionLevel'
591
+ end
592
+ end
593
+
543
594
  class GoogleFirebaseAppcheckV1PublicJwk
544
595
  # @private
545
596
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -564,14 +615,24 @@ module Google
564
615
  # @private
565
616
  class Representation < Google::Apis::Core::JsonRepresentation
566
617
  property :name, as: 'name'
618
+ property :risk_analysis, as: 'riskAnalysis', class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1RecaptchaEnterpriseConfigRiskAnalysis, decorator: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1RecaptchaEnterpriseConfigRiskAnalysis::Representation
619
+
567
620
  property :site_key, as: 'siteKey'
568
621
  property :token_ttl, as: 'tokenTtl'
569
622
  end
570
623
  end
571
624
 
625
+ class GoogleFirebaseAppcheckV1RecaptchaEnterpriseConfigRiskAnalysis
626
+ # @private
627
+ class Representation < Google::Apis::Core::JsonRepresentation
628
+ property :min_valid_score, as: 'minValidScore'
629
+ end
630
+ end
631
+
572
632
  class GoogleFirebaseAppcheckV1RecaptchaV3Config
573
633
  # @private
574
634
  class Representation < Google::Apis::Core::JsonRepresentation
635
+ property :min_valid_score, as: 'minValidScore'
575
636
  property :name, as: 'name'
576
637
  property :site_secret, as: 'siteSecret'
577
638
  property :site_secret_set, as: 'siteSecretSet'
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseappcheck_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-10-06 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappcheck_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1/v0.18.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1/v0.20.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappcheck_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
66
  requirements:
69
67
  - - ">="
70
68
  - !ruby/object:Gem::Version
71
- version: '2.7'
69
+ version: '3.1'
72
70
  required_rubygems_version: !ruby/object:Gem::Requirement
73
71
  requirements:
74
72
  - - ">="
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.6
79
- signing_key:
76
+ rubygems_version: 3.6.9
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Firebase App Check API V1
82
79
  test_files: []