google-apis-walletobjects_v1 0.23.0 → 0.25.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: 5146ffbb6162265d1ec7d772a3639daa1c287467912b138c1b809559fda45c71
|
4
|
+
data.tar.gz: 3be588bcfcc83ab815c0b06011b105fb572e5480c1aeab50ff1fe4c304f98695
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5872840f966dc1ad60750d94af7c4c724ef0ab210757ef80c6c5c3abe1fa96724e875f3c68481d71f1d69618cff06e5ee2dabac3255e0e2590cf2d789f7b0969
|
7
|
+
data.tar.gz: 0d0ddb6e67e20609a01a1dcad1ea80d8200da40e777d5850b362616819e5b07e68f36c76202fe8b516a897ebb76f9ffa244ced4a312f0267541b37a174f8fc4d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-walletobjects_v1
|
2
2
|
|
3
|
+
### v0.25.0 (2025-09-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250909
|
6
|
+
|
7
|
+
### v0.24.0 (2025-08-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250804
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.23.0 (2025-05-04)
|
4
13
|
|
5
14
|
* 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
|
@@ -5964,6 +5973,13 @@ module Google
|
|
5964
5973
|
# @return [String]
|
5965
5974
|
attr_accessor :notification_type
|
5966
5975
|
|
5976
|
+
# The physical headers provided by RequestReceivedParameters in Scotty request.
|
5977
|
+
# type is uploader_service.KeyValuePairs.
|
5978
|
+
# Corresponds to the JSON property `physicalHeaders`
|
5979
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
5980
|
+
# @return [String]
|
5981
|
+
attr_accessor :physical_headers
|
5982
|
+
|
5967
5983
|
# The Scotty request ID.
|
5968
5984
|
# Corresponds to the JSON property `requestId`
|
5969
5985
|
# @return [String]
|
@@ -5999,6 +6015,7 @@ module Google
|
|
5999
6015
|
@diff_object_version = args[:diff_object_version] if args.key?(:diff_object_version)
|
6000
6016
|
@final_status = args[:final_status] if args.key?(:final_status)
|
6001
6017
|
@notification_type = args[:notification_type] if args.key?(:notification_type)
|
6018
|
+
@physical_headers = args[:physical_headers] if args.key?(:physical_headers)
|
6002
6019
|
@request_id = args[:request_id] if args.key?(:request_id)
|
6003
6020
|
@request_received_params_serving_info = args[:request_received_params_serving_info] if args.key?(:request_received_params_serving_info)
|
6004
6021
|
@total_bytes = args[:total_bytes] if args.key?(:total_bytes)
|
@@ -8937,6 +8954,39 @@ module Google
|
|
8937
8954
|
end
|
8938
8955
|
end
|
8939
8956
|
|
8957
|
+
# Request to upload a private image to use in a pass.
|
8958
|
+
class UploadPrivateImageRequest
|
8959
|
+
include Google::Apis::Core::Hashable
|
8960
|
+
|
8961
|
+
def initialize(**args)
|
8962
|
+
update!(**args)
|
8963
|
+
end
|
8964
|
+
|
8965
|
+
# Update properties of this object
|
8966
|
+
def update!(**args)
|
8967
|
+
end
|
8968
|
+
end
|
8969
|
+
|
8970
|
+
# Response for uploading the private image.
|
8971
|
+
class UploadPrivateImageResponse
|
8972
|
+
include Google::Apis::Core::Hashable
|
8973
|
+
|
8974
|
+
# Unique ID of the uploaded image to be referenced later in Image.
|
8975
|
+
# private_image_id.
|
8976
|
+
# Corresponds to the JSON property `privateImageId`
|
8977
|
+
# @return [String]
|
8978
|
+
attr_accessor :private_image_id
|
8979
|
+
|
8980
|
+
def initialize(**args)
|
8981
|
+
update!(**args)
|
8982
|
+
end
|
8983
|
+
|
8984
|
+
# Update properties of this object
|
8985
|
+
def update!(**args)
|
8986
|
+
@private_image_id = args[:private_image_id] if args.key?(:private_image_id)
|
8987
|
+
end
|
8988
|
+
end
|
8989
|
+
|
8940
8990
|
#
|
8941
8991
|
class Uri
|
8942
8992
|
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.25.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 = "20250909"
|
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
|
@@ -2455,6 +2468,7 @@ module Google
|
|
2455
2468
|
property :diff_object_version, as: 'diffObjectVersion'
|
2456
2469
|
property :final_status, as: 'finalStatus'
|
2457
2470
|
property :notification_type, as: 'notificationType'
|
2471
|
+
property :physical_headers, :base64 => true, as: 'physicalHeaders'
|
2458
2472
|
property :request_id, as: 'requestId'
|
2459
2473
|
property :request_received_params_serving_info, :base64 => true, as: 'requestReceivedParamsServingInfo'
|
2460
2474
|
property :total_bytes, :numeric_string => true, as: 'totalBytes'
|
@@ -3244,6 +3258,19 @@ module Google
|
|
3244
3258
|
end
|
3245
3259
|
end
|
3246
3260
|
|
3261
|
+
class UploadPrivateImageRequest
|
3262
|
+
# @private
|
3263
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3264
|
+
end
|
3265
|
+
end
|
3266
|
+
|
3267
|
+
class UploadPrivateImageResponse
|
3268
|
+
# @private
|
3269
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3270
|
+
property :private_image_id, as: 'privateImageId'
|
3271
|
+
end
|
3272
|
+
end
|
3273
|
+
|
3247
3274
|
class Uri
|
3248
3275
|
# @private
|
3249
3276
|
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.25.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.25.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: []
|