google-apis-walletobjects_v1 0.23.0 → 0.24.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 815a9617c617f83a42a3b4cb8b7c81c64ce943ec2c60a7626c2957cdab2f8464
|
4
|
+
data.tar.gz: 4cbfa863b17602d7c8060a947f2742d0d5be410c0d5433a7b9f09da52cd1aa3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e87a926c6dc0b8d7da493b7b523df8720ed4a7ec09b7014467e9fa20a179a20f6df652779ad0fe913586a440ff52e729e2c405fd15724e034ce3423a8ec5dafd
|
7
|
+
data.tar.gz: ca97859991e21622cdfed5ba69a9870651dbcdc076afce37afaa254c51fac8bfa2cf32a80d591c5b0888d980414efd36c1fd2144d7060a9eb087f6c9b315ffa0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-walletobjects_v1
|
2
2
|
|
3
|
+
### v0.24.0 (2025-08-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250804
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.23.0 (2025-05-04)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.17.0
|
@@ -4412,7 +4412,15 @@ module Google
|
|
4412
4412
|
# @return [String]
|
4413
4413
|
attr_accessor :kind
|
4414
4414
|
|
4415
|
-
#
|
4415
|
+
# An ID for an already uploaded private image. Either this or source_uri should
|
4416
|
+
# be set. Requests setting both or neither will be rejected. Please contact
|
4417
|
+
# support to use private images.
|
4418
|
+
# Corresponds to the JSON property `privateImageId`
|
4419
|
+
# @return [String]
|
4420
|
+
attr_accessor :private_image_id
|
4421
|
+
|
4422
|
+
# A URI for the image. Either this or private_image_id should be set. Requests
|
4423
|
+
# setting both or neither will be rejected.
|
4416
4424
|
# Corresponds to the JSON property `sourceUri`
|
4417
4425
|
# @return [Google::Apis::WalletobjectsV1::ImageUri]
|
4418
4426
|
attr_accessor :source_uri
|
@@ -4425,6 +4433,7 @@ module Google
|
|
4425
4433
|
def update!(**args)
|
4426
4434
|
@content_description = args[:content_description] if args.key?(:content_description)
|
4427
4435
|
@kind = args[:kind] if args.key?(:kind)
|
4436
|
+
@private_image_id = args[:private_image_id] if args.key?(:private_image_id)
|
4428
4437
|
@source_uri = args[:source_uri] if args.key?(:source_uri)
|
4429
4438
|
end
|
4430
4439
|
end
|
@@ -8937,6 +8946,39 @@ module Google
|
|
8937
8946
|
end
|
8938
8947
|
end
|
8939
8948
|
|
8949
|
+
# Request to upload a private image to use in a pass.
|
8950
|
+
class UploadPrivateImageRequest
|
8951
|
+
include Google::Apis::Core::Hashable
|
8952
|
+
|
8953
|
+
def initialize(**args)
|
8954
|
+
update!(**args)
|
8955
|
+
end
|
8956
|
+
|
8957
|
+
# Update properties of this object
|
8958
|
+
def update!(**args)
|
8959
|
+
end
|
8960
|
+
end
|
8961
|
+
|
8962
|
+
# Response for uploading the private image.
|
8963
|
+
class UploadPrivateImageResponse
|
8964
|
+
include Google::Apis::Core::Hashable
|
8965
|
+
|
8966
|
+
# Unique ID of the uploaded image to be referenced later in Image.
|
8967
|
+
# private_image_id.
|
8968
|
+
# Corresponds to the JSON property `privateImageId`
|
8969
|
+
# @return [String]
|
8970
|
+
attr_accessor :private_image_id
|
8971
|
+
|
8972
|
+
def initialize(**args)
|
8973
|
+
update!(**args)
|
8974
|
+
end
|
8975
|
+
|
8976
|
+
# Update properties of this object
|
8977
|
+
def update!(**args)
|
8978
|
+
@private_image_id = args[:private_image_id] if args.key?(:private_image_id)
|
8979
|
+
end
|
8980
|
+
end
|
8981
|
+
|
8940
8982
|
#
|
8941
8983
|
class Uri
|
8942
8984
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WalletobjectsV1
|
18
18
|
# Version of the google-apis-walletobjects_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250804"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -910,6 +910,18 @@ module Google
|
|
910
910
|
include Google::Apis::Core::JsonObjectSupport
|
911
911
|
end
|
912
912
|
|
913
|
+
class UploadPrivateImageRequest
|
914
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
915
|
+
|
916
|
+
include Google::Apis::Core::JsonObjectSupport
|
917
|
+
end
|
918
|
+
|
919
|
+
class UploadPrivateImageResponse
|
920
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
921
|
+
|
922
|
+
include Google::Apis::Core::JsonObjectSupport
|
923
|
+
end
|
924
|
+
|
913
925
|
class Uri
|
914
926
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
915
927
|
|
@@ -2052,6 +2064,7 @@ module Google
|
|
2052
2064
|
property :content_description, as: 'contentDescription', class: Google::Apis::WalletobjectsV1::LocalizedString, decorator: Google::Apis::WalletobjectsV1::LocalizedString::Representation
|
2053
2065
|
|
2054
2066
|
property :kind, as: 'kind'
|
2067
|
+
property :private_image_id, as: 'privateImageId'
|
2055
2068
|
property :source_uri, as: 'sourceUri', class: Google::Apis::WalletobjectsV1::ImageUri, decorator: Google::Apis::WalletobjectsV1::ImageUri::Representation
|
2056
2069
|
|
2057
2070
|
end
|
@@ -3244,6 +3257,19 @@ module Google
|
|
3244
3257
|
end
|
3245
3258
|
end
|
3246
3259
|
|
3260
|
+
class UploadPrivateImageRequest
|
3261
|
+
# @private
|
3262
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3263
|
+
end
|
3264
|
+
end
|
3265
|
+
|
3266
|
+
class UploadPrivateImageResponse
|
3267
|
+
# @private
|
3268
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3269
|
+
property :private_image_id, as: 'privateImageId'
|
3270
|
+
end
|
3271
|
+
end
|
3272
|
+
|
3247
3273
|
class Uri
|
3248
3274
|
# @private
|
3249
3275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-walletobjects_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.24.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-walletobjects_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-walletobjects_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-walletobjects_v1/v0.24.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-walletobjects_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.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Google Wallet API V1
|
79
79
|
test_files: []
|