google-apis-content_v2_1 0.22.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: 38375e09b4e3218965307bf88cb8a1820ba29f3d30192dbfd5c6ad13adcc382a
4
- data.tar.gz: 4e5b4c922bf05d20c65c536bde6e750e752068268e78b93c492d0db627c401fd
3
+ metadata.gz: 33d56572d161166b714729b294c8054425015614066467ba2c88958b2f91d96b
4
+ data.tar.gz: c2133d87709ac18bd70872af78f224bf5b868a83682edc859fed07840f166f82
5
5
  SHA512:
6
- metadata.gz: 0cee9ed7164f1f711eccd3496ee0d581c21040790f2ad9b409c83541799546bd1d1a36e73e2fb43367e43691794f42b41a14b1e56e67ce29fe35297fab6fdd66
7
- data.tar.gz: 11600dd19455d07ab6ccebfb8d10dae3a24ba62d9a5c0cdb5516b854b4c8aeb7f626fdf6f9f1e587c2e8d786fa8cf54eb69bea1d7599404ba700c5671a2c93be
6
+ metadata.gz: 064752f7b0bb8f84d4c2dd556c5a3c5573d8ab8cafa63273c27cf6b159fb309472daa05b090733b7c8ae06d272dff36e87c3f20bf27065708c44fce8321db541
7
+ data.tar.gz: e279297c82f013d33b7c24e19e26c9b4a2ec4826349923a7ad87fda3f930222a93457c7f8ab0ca9611f25660bfc1e871bf1a8cb5a7d1de15e75ba7f820cd86c8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-content_v2_1
2
2
 
3
+ ### v0.23.0 (2021-09-28)
4
+
5
+ * Regenerated from discovery document revision 20210924
6
+
3
7
  ### v0.22.0 (2021-09-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20210917
@@ -242,7 +242,9 @@ module Google
242
242
  # @return [String]
243
243
  attr_accessor :korean_business_registration_number
244
244
 
245
- # The phone number of the business.
245
+ # ! The phone number of the business. This can only be updated if a verified !
246
+ # phone number is not already set. To replace a verified phone number use ! the `
247
+ # Accounts.requestphoneverification` and ! `Accounts.verifyphonenumber`.
246
248
  # Corresponds to the JSON property `phoneNumber`
247
249
  # @return [String]
248
250
  attr_accessor :phone_number
@@ -4642,7 +4644,7 @@ module Google
4642
4644
 
4643
4645
  # Supported pickup method for this offer. Unless the value is "not supported",
4644
4646
  # this field must be submitted together with `pickupSla`. For accepted attribute
4645
- # values, see the local product inventory feed // specification.
4647
+ # values, see the local product inventory feed specification.
4646
4648
  # Corresponds to the JSON property `pickupMethod`
4647
4649
  # @return [String]
4648
4650
  attr_accessor :pickup_method
@@ -11724,6 +11726,16 @@ module Google
11724
11726
  # @return [String]
11725
11727
  attr_accessor :product_applicability
11726
11728
 
11729
+ # Product filter by product type for the promotion.
11730
+ # Corresponds to the JSON property `productType`
11731
+ # @return [Array<String>]
11732
+ attr_accessor :product_type
11733
+
11734
+ # Product filter by product type exclusion for the promotion.
11735
+ # Corresponds to the JSON property `productTypeExclusion`
11736
+ # @return [Array<String>]
11737
+ attr_accessor :product_type_exclusion
11738
+
11727
11739
  # Destination ID for the promotion.
11728
11740
  # Corresponds to the JSON property `promotionDestinationIds`
11729
11741
  # @return [Array<String>]
@@ -11791,6 +11803,8 @@ module Google
11791
11803
  @order_limit = args[:order_limit] if args.key?(:order_limit)
11792
11804
  @percent_off = args[:percent_off] if args.key?(:percent_off)
11793
11805
  @product_applicability = args[:product_applicability] if args.key?(:product_applicability)
11806
+ @product_type = args[:product_type] if args.key?(:product_type)
11807
+ @product_type_exclusion = args[:product_type_exclusion] if args.key?(:product_type_exclusion)
11794
11808
  @promotion_destination_ids = args[:promotion_destination_ids] if args.key?(:promotion_destination_ids)
11795
11809
  @promotion_display_dates = args[:promotion_display_dates] if args.key?(:promotion_display_dates)
11796
11810
  @promotion_effective_dates = args[:promotion_effective_dates] if args.key?(:promotion_effective_dates)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContentV2_1
18
18
  # Version of the google-apis-content_v2_1 gem
19
- GEM_VERSION = "0.22.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.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210917"
25
+ REVISION = "20210924"
26
26
  end
27
27
  end
28
28
  end
@@ -5446,6 +5446,8 @@ module Google
5446
5446
  property :order_limit, as: 'orderLimit'
5447
5447
  property :percent_off, as: 'percentOff'
5448
5448
  property :product_applicability, as: 'productApplicability'
5449
+ collection :product_type, as: 'productType'
5450
+ collection :product_type_exclusion, as: 'productTypeExclusion'
5449
5451
  collection :promotion_destination_ids, as: 'promotionDestinationIds'
5450
5452
  property :promotion_display_dates, as: 'promotionDisplayDates'
5451
5453
  property :promotion_effective_dates, as: 'promotionEffectiveDates'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-content_v2_1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-22 00:00:00.000000000 Z
11
+ date: 2021-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-content_v2_1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-content_v2_1/v0.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-content_v2_1/v0.23.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-content_v2_1
63
63
  post_install_message:
64
64
  rdoc_options: []