google-apis-merchantapi_products_v1beta 0.21.0 → 0.23.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: 65d480e95fe8f95b05a57531c2b5e040f0256cb8d1889d00a83f42eae45e2edf
4
- data.tar.gz: d16a358e07668705305ad8c968b1dafee028add098958608acc4c2cf7ed8f42c
3
+ metadata.gz: 7b7c56b1ffc205d13b06d8000618c7d0b47e657117e17a6aeab5894d19207cec
4
+ data.tar.gz: 73e1f9ea56b5260acca83ef3e9556c7d52ec7e701cccb9429699f5d20f0006d8
5
5
  SHA512:
6
- metadata.gz: 323ca6d41a76ec87ba8e05ac033490e92df4864706ba2b76aca9c264a96bba82f0077cd1e1635aa6bbb250f06b18e9af61c2f8c4516c380ecb6a80c0460b33b9
7
- data.tar.gz: e3a4c1629bb60136fa6d6e22eccdb345380bbd6c1884bdbb204fb5aff29f25447c351cf151478f37f976c52d3360fce553ad98fe4709c7caf6f803557b83d326
6
+ metadata.gz: fae6496326afc0ea1935cb8834df9ecb27cc1d7856af8a433f2e876e114fc9f8d2ff26e7cb3c25f407f7f65453f350a296ca61920619bac594cea1641e175991
7
+ data.tar.gz: '049ee40aaa6cd8bc841c4f0bc98941762f267cd0381d2677d420d3775628576cce425636dab541d87f7d331f1d060bbfc933b52b02b57fb2a065f12315da9073'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-merchantapi_products_v1beta
2
2
 
3
+ ### v0.23.0 (2025-11-23)
4
+
5
+ * Regenerated from discovery document revision 20251118
6
+
7
+ ### v0.22.0 (2025-11-16)
8
+
9
+ * Regenerated from discovery document revision 20251109
10
+
3
11
  ### v0.21.0 (2025-10-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20251007
@@ -1143,7 +1143,7 @@ module Google
1143
1143
  end
1144
1144
  end
1145
1145
 
1146
- # A message that represents loyalty program.
1146
+ # LINT.IfChange(LoyaltyProgram) A message that represents loyalty program.
1147
1147
  class LoyaltyProgram
1148
1148
  include Google::Apis::Core::Hashable
1149
1149
 
@@ -1510,14 +1510,31 @@ module Google
1510
1510
  # @return [String]
1511
1511
  attr_accessor :feed_label
1512
1512
 
1513
- # Identifier. The name of the product input. Format: `accounts/`account`/
1514
- # productInputs/`productinput`` where the last section `productinput` consists
1515
- # of: `content_language~feed_label~offer_id` example for product input name is `
1516
- # accounts/123/productInputs/en~US~sku123`. A legacy local product input name
1517
- # would be `accounts/123/productInputs/local~en~US~sku123`. Note: For calls to
1518
- # the v1beta version, the `productInput` section consists of: `channel~
1519
- # content_language~feed_label~offer_id`, for example: `accounts/123/
1520
- # productInputs/online~en~US~sku123`.
1513
+ # Identifier. The name of the product. Format: `accounts/`account`/productInputs/
1514
+ # `productinput`` The `productinput` segment is a unique identifier for the
1515
+ # product. This identifier must be unique within a merchant account and
1516
+ # generally follows the structure: `content_language~feed_label~offer_id`.
1517
+ # Example: `en~US~sku123` For legacy local products, the structure is: `local~
1518
+ # content_language~feed_label~offer_id`. Example: `local~en~US~sku123` The
1519
+ # format of the `productinput` segment in the URL is automatically detected by
1520
+ # the server, supporting two options: 1. **Encoded Format**: The ``productinput``
1521
+ # segment is an unpadded base64url encoded string (RFC 4648 Section 5). The
1522
+ # decoded string must result in the `content_language~feed_label~offer_id`
1523
+ # structure. This encoding MUST be used if any part of the product identifier (
1524
+ # like `offer_id`) contains characters such as `/`, `%`, or `~`. * Example: To
1525
+ # represent the product ID `en~US~sku/123`, the ``productinput`` segment must be
1526
+ # the base64url encoding of this string, which is `ZW5-VVMtc2t1LzEyMw`. The full
1527
+ # resource name for the product would be `accounts/123/productinputs/ZW5-
1528
+ # VVMtc2t1LzEyMw`. 2. **Plain Format**: The ``productinput`` segment is the
1529
+ # tilde-separated string `content_language~feed_label~offer_id`. This format is
1530
+ # suitable only when `content_language`, `feed_label`, and `offer_id` do not
1531
+ # contain URL-problematic characters like `/`, `%`, or `~`. We recommend using
1532
+ # the **Encoded Format** for all product IDs to ensure correct parsing,
1533
+ # especially those containing special characters. The presence of tilde (`~`)
1534
+ # characters in the ``productinput`` segment is used to differentiate between
1535
+ # the two formats. Note: For calls to the v1beta version, the plain format is `
1536
+ # channel~content_language~feed_label~offer_id`, for example: `accounts/123/
1537
+ # productinputs/online~en~US~sku123`.
1521
1538
  # Corresponds to the JSON property `name`
1522
1539
  # @return [String]
1523
1540
  attr_accessor :name
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MerchantapiProductsV1beta
18
18
  # Version of the google-apis-merchantapi_products_v1beta gem
19
- GEM_VERSION = "0.21.0"
19
+ GEM_VERSION = "0.23.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251007"
25
+ REVISION = "20251118"
26
26
  end
27
27
  end
28
28
  end
@@ -55,10 +55,31 @@ module Google
55
55
  # updating, or deleting a product input, it may take several minutes before the
56
56
  # processed product can be retrieved.
57
57
  # @param [String] name
58
- # Required. The name of the product input resource to delete. Format: `accounts/`
59
- # account`/productInputs/`product`` where the last section `product` consists of:
60
- # `content_language~feed_label~offer_id` example for product name is `accounts/
61
- # 123/productInputs/en~US~sku123`.
58
+ # Required. The name of the product input to delete. Format: `accounts/`account`/
59
+ # productInputs/`productInput`` The `productInput` segment is a unique
60
+ # identifier for the product. This identifier must be unique within a merchant
61
+ # account and generally follows the structure: `content_language~feed_label~
62
+ # offer_id`. Example: `en~US~sku123` For legacy local products, the structure is:
63
+ # `local~content_language~feed_label~offer_id`. Example: `local~en~US~sku123`
64
+ # The format of the `productInput` segment in the URL is automatically detected
65
+ # by the server, supporting two options: 1. **Encoded Format**: The ``
66
+ # productInput`` segment is an unpadded base64url encoded string (RFC 4648
67
+ # Section 5). The decoded string must result in the `content_language~feed_label~
68
+ # offer_id` structure. This encoding MUST be used if any part of the product
69
+ # identifier (like `offer_id`) contains characters such as `/`, `%`, or `~`. *
70
+ # Example: To represent the product ID `en~US~sku/123`, the ``productInput``
71
+ # segment must be the base64url encoding of this string, which is `ZW5-
72
+ # VVMtc2t1LzEyMw`. The full resource name for the product would be `accounts/123/
73
+ # productInputs/ZW5-VVMtc2t1LzEyMw`. 2. **Plain Format**: The ``productInput``
74
+ # segment is the tilde-separated string `content_language~feed_label~offer_id`.
75
+ # This format is suitable only when `content_language`, `feed_label`, and `
76
+ # offer_id` do not contain URL-problematic characters like `/`, `%`, or `~`. We
77
+ # recommend using the **Encoded Format** for all product IDs to ensure correct
78
+ # parsing, especially those containing special characters. The presence of tilde
79
+ # (`~`) characters in the ``productInput`` segment is used to differentiate
80
+ # between the two formats. Note: For calls to the v1beta version, the plain
81
+ # format is `channel~content_language~feed_label~offer_id`, for example: `
82
+ # accounts/123/productinputs/online~en~US~sku123`.
62
83
  # @param [String] data_source
63
84
  # Required. The primary or supplemental data source from which the product input
64
85
  # should be deleted. Format: `accounts/`account`/dataSources/`datasource``. For
@@ -141,18 +162,36 @@ module Google
141
162
  execute_or_queue_command(command, &block)
142
163
  end
143
164
 
144
- # Updates the existing product input in your Merchant Center account. After
145
- # inserting, updating, or deleting a product input, it may take several minutes
146
- # before the processed product can be retrieved.
165
+ # Updates the existing product input in your Merchant Center account. The name
166
+ # of the product input to update is taken from the `name` field within the `
167
+ # ProductInput` resource. After inserting, updating, or deleting a product input,
168
+ # it may take several minutes before the processed product can be retrieved.
147
169
  # @param [String] name
148
- # Identifier. The name of the product input. Format: `accounts/`account`/
149
- # productInputs/`productinput`` where the last section `productinput` consists
150
- # of: `content_language~feed_label~offer_id` example for product input name is `
151
- # accounts/123/productInputs/en~US~sku123`. A legacy local product input name
152
- # would be `accounts/123/productInputs/local~en~US~sku123`. Note: For calls to
153
- # the v1beta version, the `productInput` section consists of: `channel~
154
- # content_language~feed_label~offer_id`, for example: `accounts/123/
155
- # productInputs/online~en~US~sku123`.
170
+ # Identifier. The name of the product. Format: `accounts/`account`/productInputs/
171
+ # `productinput`` The `productinput` segment is a unique identifier for the
172
+ # product. This identifier must be unique within a merchant account and
173
+ # generally follows the structure: `content_language~feed_label~offer_id`.
174
+ # Example: `en~US~sku123` For legacy local products, the structure is: `local~
175
+ # content_language~feed_label~offer_id`. Example: `local~en~US~sku123` The
176
+ # format of the `productinput` segment in the URL is automatically detected by
177
+ # the server, supporting two options: 1. **Encoded Format**: The ``productinput``
178
+ # segment is an unpadded base64url encoded string (RFC 4648 Section 5). The
179
+ # decoded string must result in the `content_language~feed_label~offer_id`
180
+ # structure. This encoding MUST be used if any part of the product identifier (
181
+ # like `offer_id`) contains characters such as `/`, `%`, or `~`. * Example: To
182
+ # represent the product ID `en~US~sku/123`, the ``productinput`` segment must be
183
+ # the base64url encoding of this string, which is `ZW5-VVMtc2t1LzEyMw`. The full
184
+ # resource name for the product would be `accounts/123/productinputs/ZW5-
185
+ # VVMtc2t1LzEyMw`. 2. **Plain Format**: The ``productinput`` segment is the
186
+ # tilde-separated string `content_language~feed_label~offer_id`. This format is
187
+ # suitable only when `content_language`, `feed_label`, and `offer_id` do not
188
+ # contain URL-problematic characters like `/`, `%`, or `~`. We recommend using
189
+ # the **Encoded Format** for all product IDs to ensure correct parsing,
190
+ # especially those containing special characters. The presence of tilde (`~`)
191
+ # characters in the ``productinput`` segment is used to differentiate between
192
+ # the two formats. Note: For calls to the v1beta version, the plain format is `
193
+ # channel~content_language~feed_label~offer_id`, for example: `accounts/123/
194
+ # productinputs/online~en~US~sku123`.
156
195
  # @param [Google::Apis::MerchantapiProductsV1beta::ProductInput] product_input_object
157
196
  # @param [String] data_source
158
197
  # Required. The primary or supplemental product data source where `data_source`
@@ -203,13 +242,30 @@ module Google
203
242
  # inserting, updating, or deleting a product input, it may take several minutes
204
243
  # before the updated final product can be retrieved.
205
244
  # @param [String] name
206
- # Required. The name of the product to retrieve. Format: `accounts/`account`/
207
- # products/`product`` where the last section `product` consists of: `
208
- # content_language~feed_label~offer_id` example for product name is `accounts/
209
- # 123/products/en~US~sku123`. A legacy local product name would be `accounts/123/
210
- # products/local~en~US~sku123`. Note: For calls to the v1beta version, the `
211
- # product` section consists of: `channel~content_language~feed_label~offer_id`,
212
- # for example: `accounts/123/products/online~en~US~sku123`.
245
+ # Required. The name of the product. Format: `accounts/`account`/products/`
246
+ # product`` The ``product`` segment is a unique identifier for the product. This
247
+ # identifier must be unique within a merchant account and generally follows the
248
+ # structure: `content_language~feed_label~offer_id`. Example: `en~US~sku123` For
249
+ # legacy local products, the structure is: `local~content_language~feed_label~
250
+ # offer_id`. Example: `local~en~US~sku123` The format of the ``product`` segment
251
+ # in the URL is automatically detected by the server, supporting two options: 1.
252
+ # **Encoded Format**: The ``product`` segment is an unpadded base64url encoded
253
+ # string (RFC 4648 Section 5). The decoded string must result in the `
254
+ # content_language~feed_label~offer_id` structure. This encoding MUST be used if
255
+ # any part of the product identifier (like `offer_id`) contains characters such
256
+ # as `/`, `%`, or `~`. * Example: To represent the product ID `en~US~sku/123`,
257
+ # the ``product`` segment must be the base64url encoding of this string, which
258
+ # is `ZW5-VVMtc2t1LzEyMw`. The full resource name for the product would be `
259
+ # accounts/123/products/ZW5-VVMtc2t1LzEyMw`. 2. **Plain Format**: The ``product``
260
+ # segment is the tilde-separated string `content_language~feed_label~offer_id`.
261
+ # This format is suitable only when `content_language`, `feed_label`, and `
262
+ # offer_id` do not contain URL-problematic characters like `/`, `%`, or `~`. We
263
+ # recommend using the **Encoded Format** for all product IDs to ensure correct
264
+ # parsing, especially those containing special characters. The presence of tilde
265
+ # (`~`) characters in the ``product`` segment is used to differentiate between
266
+ # the two formats. Note: For calls to the v1beta version, the plain format is `
267
+ # channel~content_language~feed_label~offer_id`, for example: `accounts/123/
268
+ # products/online~en~US~sku123`.
213
269
  # @param [String] fields
214
270
  # Selector specifying which fields to include in a partial response.
215
271
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-merchantapi_products_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.23.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-merchantapi_products_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_products_v1beta/v0.21.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_products_v1beta/v0.23.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-merchantapi_products_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: