google-apis-retail_v2beta 0.110.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: 334466b15a73950d5d6c1e045fa03fb8ffd5015d5c405a49ff2126e2bc01961a
4
- data.tar.gz: 7232f85c161a179fefa7ae3608bdc21a6b058c2f307b4d6c739458fcf997b34a
3
+ metadata.gz: 2ae9ed6644d141a4cd07d626b9e37a8ed815debdaa1180581b615212cfc3376a
4
+ data.tar.gz: 0a974bfebf56a4f42df2e46154b88077b0144e985a88f2a4b3248cc26bcc3d53
5
5
  SHA512:
6
- metadata.gz: 26da158f7296bbaca631295dc5303062399924689dd0b58da5b442639178a9301a382994733f2089b8fd2498e73f36529c8cc31ca2121e64c7d492416ebf0b22
7
- data.tar.gz: c8efd2a28c08410c8988fc61317e5a20a823227ab58f20e22dca57203d5a00fd19ce133dfe82d43892342c0070bcfa21ddeee197fbc95e05491fc2f0fc27fc23
6
+ metadata.gz: afc3067e938547fd42544c6b8a06c102025f840989baa3481e6c75d1c36b0d58ee88e7c67555bee36f01620fd3f4d7893c0733cc5d42d0425e461151e3558af2
7
+ data.tar.gz: e97fbe6436b833e300494f261dfb770c5212d4f66d82d06e1070d9ce92b81551465577ce61ad64237ab4fceeb2b4a749385cefc9e8e3c21943155a845f6deb43
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.110.0 (2025-05-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20250501
@@ -1756,7 +1756,12 @@ module Google
1756
1756
  class GoogleCloudRetailV2alphaMerchantCenterAccountLinkMerchantCenterFeedFilter
1757
1757
  include Google::Apis::Core::Hashable
1758
1758
 
1759
- # Merchant Center primary feed ID.
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
@@ -5035,7 +5041,12 @@ module Google
5035
5041
  class GoogleCloudRetailV2betaMerchantCenterFeedFilter
5036
5042
  include Google::Apis::Core::Hashable
5037
5043
 
5038
- # Merchant Center primary feed ID.
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.
5039
5050
  # Corresponds to the JSON property `primaryFeedId`
5040
5051
  # @return [Fixnum]
5041
5052
  attr_accessor :primary_feed_id
@@ -5052,6 +5063,7 @@ module Google
5052
5063
 
5053
5064
  # Update properties of this object
5054
5065
  def update!(**args)
5066
+ @data_source_id = args[:data_source_id] if args.key?(:data_source_id)
5055
5067
  @primary_feed_id = args[:primary_feed_id] if args.key?(:primary_feed_id)
5056
5068
  @primary_feed_name = args[:primary_feed_name] if args.key?(:primary_feed_name)
5057
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.110.0"
19
+ GEM_VERSION = "0.111.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 = "20250501"
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
@@ -3049,6 +3050,7 @@ module Google
3049
3050
  class GoogleCloudRetailV2betaMerchantCenterFeedFilter
3050
3051
  # @private
3051
3052
  class Representation < Google::Apis::Core::JsonRepresentation
3053
+ property :data_source_id, :numeric_string => true, as: 'dataSourceId'
3052
3054
  property :primary_feed_id, :numeric_string => true, as: 'primaryFeedId'
3053
3055
  property :primary_feed_name, as: 'primaryFeedName'
3054
3056
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-retail_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.110.0
4
+ version: 0.111.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_v2beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.110.0
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: