google-apis-playintegrity_v1 0.32.0 → 0.33.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: 61842f70b1a3c33f13280b8d385b3a58417b5f51a6bbc83fc546acced605f25f
4
- data.tar.gz: 6aa3c0664aa3b4b3db7d09462ece7c78463bf27d8a1953e1517cb0cb54e34835
3
+ metadata.gz: 70e86e95ad5aa2f9fde6ee22f7be6a412927bcedb121c3811f69618be721e685
4
+ data.tar.gz: 52a3efc5893b9d5e46a86424532267fcdebaa7d093429a1a6f052d8fcc8f3fc6
5
5
  SHA512:
6
- metadata.gz: 5372de685f65f9f3db23a94469ef96adfc091add272a2f312b9bf4c99899a3863ccb1800468f3501821ac1e4a46abc4521eaed41a1de559bb1baa116380d83b0
7
- data.tar.gz: 43cbbb8553e06c52300365edab20a85aa0b48cd34ef7ae06b93838017c6aa6cd4e153b55d2a7d480a80b7d98906b41f5b4ef427b51aae3964988fd25cbac3f24
6
+ metadata.gz: 3e2efd89a85df84aca44bdf957fd5901848d079750ac2ce2440a1325e34cd6317fc77749548c71ca4f103e9b5faa9579788ec4fe5e0690d2e1a19983831f3891
7
+ data.tar.gz: 82e496468ea52dbda0e4044aa8d210a8780745b40d7fd9ba34e316bf121ba065a9e5a1880a6042c6bda14f77b461157a8538a678bf248184e607f1ba48f1f04c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-playintegrity_v1
2
2
 
3
+ ### v0.33.0 (2025-08-24)
4
+
5
+ * Regenerated from discovery document revision 20250818
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.32.0 (2025-05-18)
4
9
 
5
10
  * Regenerated from discovery document revision 20250514
@@ -331,6 +331,27 @@ module Google
331
331
  end
332
332
  end
333
333
 
334
+ # Contains the account information such as the licensing status for the user in
335
+ # the scope.
336
+ class PcAccountDetails
337
+ include Google::Apis::Core::Hashable
338
+
339
+ # Required. Details about the licensing status of the user for the app in the
340
+ # scope.
341
+ # Corresponds to the JSON property `appLicensingVerdict`
342
+ # @return [String]
343
+ attr_accessor :app_licensing_verdict
344
+
345
+ def initialize(**args)
346
+ update!(**args)
347
+ end
348
+
349
+ # Update properties of this object
350
+ def update!(**args)
351
+ @app_licensing_verdict = args[:app_licensing_verdict] if args.key?(:app_licensing_verdict)
352
+ end
353
+ end
354
+
334
355
  # Contains the device attestation information.
335
356
  class PcDeviceIntegrity
336
357
  include Google::Apis::Core::Hashable
@@ -386,6 +407,12 @@ module Google
386
407
  class PcTokenPayloadExternal
387
408
  include Google::Apis::Core::Hashable
388
409
 
410
+ # Contains the account information such as the licensing status for the user in
411
+ # the scope.
412
+ # Corresponds to the JSON property `accountDetails`
413
+ # @return [Google::Apis::PlayintegrityV1::PcAccountDetails]
414
+ attr_accessor :account_details
415
+
389
416
  # Contains the device attestation information.
390
417
  # Corresponds to the JSON property `deviceIntegrity`
391
418
  # @return [Google::Apis::PlayintegrityV1::PcDeviceIntegrity]
@@ -402,6 +429,7 @@ module Google
402
429
 
403
430
  # Update properties of this object
404
431
  def update!(**args)
432
+ @account_details = args[:account_details] if args.key?(:account_details)
405
433
  @device_integrity = args[:device_integrity] if args.key?(:device_integrity)
406
434
  @request_details = args[:request_details] if args.key?(:request_details)
407
435
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PlayintegrityV1
18
18
  # Version of the google-apis-playintegrity_v1 gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250514"
25
+ REVISION = "20250818"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class PcAccountDetails
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class PcDeviceIntegrity
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -263,6 +269,13 @@ module Google
263
269
  end
264
270
  end
265
271
 
272
+ class PcAccountDetails
273
+ # @private
274
+ class Representation < Google::Apis::Core::JsonRepresentation
275
+ property :app_licensing_verdict, as: 'appLicensingVerdict'
276
+ end
277
+ end
278
+
266
279
  class PcDeviceIntegrity
267
280
  # @private
268
281
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -282,6 +295,8 @@ module Google
282
295
  class PcTokenPayloadExternal
283
296
  # @private
284
297
  class Representation < Google::Apis::Core::JsonRepresentation
298
+ property :account_details, as: 'accountDetails', class: Google::Apis::PlayintegrityV1::PcAccountDetails, decorator: Google::Apis::PlayintegrityV1::PcAccountDetails::Representation
299
+
285
300
  property :device_integrity, as: 'deviceIntegrity', class: Google::Apis::PlayintegrityV1::PcDeviceIntegrity, decorator: Google::Apis::PlayintegrityV1::PcDeviceIntegrity::Representation
286
301
 
287
302
  property :request_details, as: 'requestDetails', class: Google::Apis::PlayintegrityV1::PcRequestDetails, decorator: Google::Apis::PlayintegrityV1::PcRequestDetails::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-playintegrity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.33.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-playintegrity_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.32.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.33.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playintegrity_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Google Play Integrity API V1
79
79
  test_files: []