google-apis-retail_v2beta 0.109.0 → 0.111.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: 2ae9ed6644d141a4cd07d626b9e37a8ed815debdaa1180581b615212cfc3376a
|
4
|
+
data.tar.gz: 0a974bfebf56a4f42df2e46154b88077b0144e985a88f2a4b3248cc26bcc3d53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afc3067e938547fd42544c6b8a06c102025f840989baa3481e6c75d1c36b0d58ee88e7c67555bee36f01620fd3f4d7893c0733cc5d42d0425e461151e3558af2
|
7
|
+
data.tar.gz: e97fbe6436b833e300494f261dfb770c5212d4f66d82d06e1070d9ce92b81551465577ce61ad64237ab4fceeb2b4a749385cefc9e8e3c21943155a845f6deb43
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-retail_v2beta
|
2
2
|
|
3
|
+
### v0.111.0 (2025-05-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250508
|
6
|
+
|
7
|
+
### v0.110.0 (2025-05-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250501
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.109.0 (2025-04-27)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250417
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/recommendations) may provid
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
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
|
|
@@ -1756,7 +1756,12 @@ module Google
|
|
1756
1756
|
class GoogleCloudRetailV2alphaMerchantCenterAccountLinkMerchantCenterFeedFilter
|
1757
1757
|
include Google::Apis::Core::Hashable
|
1758
1758
|
|
1759
|
-
#
|
1759
|
+
# AFM data source ID.
|
1760
|
+
# Corresponds to the JSON property `dataSourceId`
|
1761
|
+
# @return [Fixnum]
|
1762
|
+
attr_accessor :data_source_id
|
1763
|
+
|
1764
|
+
# Merchant Center primary feed ID. Deprecated: use data_source_id instead.
|
1760
1765
|
# Corresponds to the JSON property `primaryFeedId`
|
1761
1766
|
# @return [Fixnum]
|
1762
1767
|
attr_accessor :primary_feed_id
|
@@ -1773,6 +1778,7 @@ module Google
|
|
1773
1778
|
|
1774
1779
|
# Update properties of this object
|
1775
1780
|
def update!(**args)
|
1781
|
+
@data_source_id = args[:data_source_id] if args.key?(:data_source_id)
|
1776
1782
|
@primary_feed_id = args[:primary_feed_id] if args.key?(:primary_feed_id)
|
1777
1783
|
@primary_feed_name = args[:primary_feed_name] if args.key?(:primary_feed_name)
|
1778
1784
|
end
|
@@ -4996,23 +5002,6 @@ module Google
|
|
4996
5002
|
# @return [Hash<String,Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCustomAttribute>]
|
4997
5003
|
attr_accessor :attributes
|
4998
5004
|
|
4999
|
-
# Optional. The availability of the Product at this place_id. Default to
|
5000
|
-
# Availability.IN_STOCK. For primary products with variants set the availability
|
5001
|
-
# of the primary as Availability.OUT_OF_STOCK and set the true availability at
|
5002
|
-
# the variant level. This way the primary product will be considered "in stock"
|
5003
|
-
# as long as it has at least one variant in stock. For primary products with no
|
5004
|
-
# variants set the true availability at the primary level. Corresponding
|
5005
|
-
# properties: Google Merchant Center property [availability](https://support.
|
5006
|
-
# google.com/merchants/answer/6324448). Schema.org property [Offer.availability](
|
5007
|
-
# https://schema.org/availability). This field is currently only used by the
|
5008
|
-
# Recommendations API. For Search, please make use of fulfillment_types or
|
5009
|
-
# custom attributes for similar behaviour. See [here]( https://cloud.google.com/
|
5010
|
-
# retail/docs/local-inventory-updates#local-inventory-update-methods) for more
|
5011
|
-
# details.
|
5012
|
-
# Corresponds to the JSON property `availability`
|
5013
|
-
# @return [String]
|
5014
|
-
attr_accessor :availability
|
5015
|
-
|
5016
5005
|
# Optional. Supported fulfillment types. Valid fulfillment type values include
|
5017
5006
|
# commonly used types (such as pickup in store and same day delivery), and
|
5018
5007
|
# custom types. Customers have to map custom types to their display names before
|
@@ -5042,7 +5031,6 @@ module Google
|
|
5042
5031
|
# Update properties of this object
|
5043
5032
|
def update!(**args)
|
5044
5033
|
@attributes = args[:attributes] if args.key?(:attributes)
|
5045
|
-
@availability = args[:availability] if args.key?(:availability)
|
5046
5034
|
@fulfillment_types = args[:fulfillment_types] if args.key?(:fulfillment_types)
|
5047
5035
|
@place_id = args[:place_id] if args.key?(:place_id)
|
5048
5036
|
@price_info = args[:price_info] if args.key?(:price_info)
|
@@ -5053,7 +5041,12 @@ module Google
|
|
5053
5041
|
class GoogleCloudRetailV2betaMerchantCenterFeedFilter
|
5054
5042
|
include Google::Apis::Core::Hashable
|
5055
5043
|
|
5056
|
-
#
|
5044
|
+
# AFM data source ID.
|
5045
|
+
# Corresponds to the JSON property `dataSourceId`
|
5046
|
+
# @return [Fixnum]
|
5047
|
+
attr_accessor :data_source_id
|
5048
|
+
|
5049
|
+
# Merchant Center primary feed ID. Deprecated: use data_source_id instead.
|
5057
5050
|
# Corresponds to the JSON property `primaryFeedId`
|
5058
5051
|
# @return [Fixnum]
|
5059
5052
|
attr_accessor :primary_feed_id
|
@@ -5070,6 +5063,7 @@ module Google
|
|
5070
5063
|
|
5071
5064
|
# Update properties of this object
|
5072
5065
|
def update!(**args)
|
5066
|
+
@data_source_id = args[:data_source_id] if args.key?(:data_source_id)
|
5073
5067
|
@primary_feed_id = args[:primary_feed_id] if args.key?(:primary_feed_id)
|
5074
5068
|
@primary_feed_name = args[:primary_feed_name] if args.key?(:primary_feed_name)
|
5075
5069
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RetailV2beta
|
18
18
|
# Version of the google-apis-retail_v2beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.111.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250508"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2148,6 +2148,7 @@ module Google
|
|
2148
2148
|
class GoogleCloudRetailV2alphaMerchantCenterAccountLinkMerchantCenterFeedFilter
|
2149
2149
|
# @private
|
2150
2150
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2151
|
+
property :data_source_id, :numeric_string => true, as: 'dataSourceId'
|
2151
2152
|
property :primary_feed_id, :numeric_string => true, as: 'primaryFeedId'
|
2152
2153
|
property :primary_feed_name, as: 'primaryFeedName'
|
2153
2154
|
end
|
@@ -3039,7 +3040,6 @@ module Google
|
|
3039
3040
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3040
3041
|
hash :attributes, as: 'attributes', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCustomAttribute, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCustomAttribute::Representation
|
3041
3042
|
|
3042
|
-
property :availability, as: 'availability'
|
3043
3043
|
collection :fulfillment_types, as: 'fulfillmentTypes'
|
3044
3044
|
property :place_id, as: 'placeId'
|
3045
3045
|
property :price_info, as: 'priceInfo', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaPriceInfo, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaPriceInfo::Representation
|
@@ -3050,6 +3050,7 @@ module Google
|
|
3050
3050
|
class GoogleCloudRetailV2betaMerchantCenterFeedFilter
|
3051
3051
|
# @private
|
3052
3052
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3053
|
+
property :data_source_id, :numeric_string => true, as: 'dataSourceId'
|
3053
3054
|
property :primary_feed_id, :numeric_string => true, as: 'primaryFeedId'
|
3054
3055
|
property :primary_feed_name, as: 'primaryFeedName'
|
3055
3056
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-retail_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.111.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-retail_v2beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.111.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.8
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Vertex AI Search for commerce API V2beta
|
79
79
|
test_files: []
|