google-apis-retail_v2alpha 0.115.0 → 0.116.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: 3ad341cc0f35a3fb458e671c06f56aeb36823c620f5f7ddb51dbfff6d61d855b
|
4
|
+
data.tar.gz: b0fca19b6b251fa1bdea9566607f330cf2c29a8a87012aafeffe66688de84f40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: effce8b2c4000347168483bbebd0f7b3d8f2008214248ad684de027c13da6fe426d91de7dd508ab2c777bb26ae9fe3eb948163261f840668ca2dc08e843e01b2
|
7
|
+
data.tar.gz: 302de305ff627fe4efdafd4ed127191dd0e5acaf57056d882f2bbad31ebe47684ac5ac773c3083e42171946ba8c321e672d97067ac00e3f4e0b928e512e26ee5
|
data/CHANGELOG.md
CHANGED
@@ -4681,7 +4681,12 @@ module Google
|
|
4681
4681
|
class GoogleCloudRetailV2alphaMerchantCenterAccountLinkMerchantCenterFeedFilter
|
4682
4682
|
include Google::Apis::Core::Hashable
|
4683
4683
|
|
4684
|
-
#
|
4684
|
+
# AFM data source ID.
|
4685
|
+
# Corresponds to the JSON property `dataSourceId`
|
4686
|
+
# @return [Fixnum]
|
4687
|
+
attr_accessor :data_source_id
|
4688
|
+
|
4689
|
+
# Merchant Center primary feed ID. Deprecated: use data_source_id instead.
|
4685
4690
|
# Corresponds to the JSON property `primaryFeedId`
|
4686
4691
|
# @return [Fixnum]
|
4687
4692
|
attr_accessor :primary_feed_id
|
@@ -4698,6 +4703,7 @@ module Google
|
|
4698
4703
|
|
4699
4704
|
# Update properties of this object
|
4700
4705
|
def update!(**args)
|
4706
|
+
@data_source_id = args[:data_source_id] if args.key?(:data_source_id)
|
4701
4707
|
@primary_feed_id = args[:primary_feed_id] if args.key?(:primary_feed_id)
|
4702
4708
|
@primary_feed_name = args[:primary_feed_name] if args.key?(:primary_feed_name)
|
4703
4709
|
end
|
@@ -4707,7 +4713,12 @@ module Google
|
|
4707
4713
|
class GoogleCloudRetailV2alphaMerchantCenterFeedFilter
|
4708
4714
|
include Google::Apis::Core::Hashable
|
4709
4715
|
|
4710
|
-
#
|
4716
|
+
# AFM data source ID.
|
4717
|
+
# Corresponds to the JSON property `dataSourceId`
|
4718
|
+
# @return [Fixnum]
|
4719
|
+
attr_accessor :data_source_id
|
4720
|
+
|
4721
|
+
# Merchant Center primary feed ID. Deprecated: use data_source_id instead.
|
4711
4722
|
# Corresponds to the JSON property `primaryFeedId`
|
4712
4723
|
# @return [Fixnum]
|
4713
4724
|
attr_accessor :primary_feed_id
|
@@ -4724,6 +4735,7 @@ module Google
|
|
4724
4735
|
|
4725
4736
|
# Update properties of this object
|
4726
4737
|
def update!(**args)
|
4738
|
+
@data_source_id = args[:data_source_id] if args.key?(:data_source_id)
|
4727
4739
|
@primary_feed_id = args[:primary_feed_id] if args.key?(:primary_feed_id)
|
4728
4740
|
@primary_feed_name = args[:primary_feed_name] if args.key?(:primary_feed_name)
|
4729
4741
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RetailV2alpha
|
18
18
|
# Version of the google-apis-retail_v2alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.116.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
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
|
@@ -3051,6 +3051,7 @@ module Google
|
|
3051
3051
|
class GoogleCloudRetailV2alphaMerchantCenterAccountLinkMerchantCenterFeedFilter
|
3052
3052
|
# @private
|
3053
3053
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3054
|
+
property :data_source_id, :numeric_string => true, as: 'dataSourceId'
|
3054
3055
|
property :primary_feed_id, :numeric_string => true, as: 'primaryFeedId'
|
3055
3056
|
property :primary_feed_name, as: 'primaryFeedName'
|
3056
3057
|
end
|
@@ -3059,6 +3060,7 @@ module Google
|
|
3059
3060
|
class GoogleCloudRetailV2alphaMerchantCenterFeedFilter
|
3060
3061
|
# @private
|
3061
3062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3063
|
+
property :data_source_id, :numeric_string => true, as: 'dataSourceId'
|
3062
3064
|
property :primary_feed_id, :numeric_string => true, as: 'primaryFeedId'
|
3063
3065
|
property :primary_feed_name, as: 'primaryFeedName'
|
3064
3066
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-retail_v2alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.116.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-retail_v2alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.116.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|