google-apis-merchantapi_accounts_v1beta 0.13.0 → 0.14.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: db331be6aa8ed77bd9853949f1b6feb28de9a086ba09ac97e07c1f5264f8e717
|
4
|
+
data.tar.gz: 21e4465317e292232360d59a0315b52d0e89ed71d79ac2e44fff93cde91eab5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11973d2e1857768f898fcdeb0b88d9315d82d223c0afb20516c49433a56a7d5c8e941483c0a4e4e4230fbaa1f413b0848315aed4c67d0588ddef10fae357379c
|
7
|
+
data.tar.gz: befe529014716083a4afcf790b88dccf480cb05afa04859145e90af4d0215a34a146c897de39e3a2c479039e754ee6e084972d3bf6dbcce133ace2b565f4877b
|
data/CHANGELOG.md
CHANGED
@@ -92,13 +92,13 @@ module Google
|
|
92
92
|
class Accepted
|
93
93
|
include Google::Apis::Core::Hashable
|
94
94
|
|
95
|
-
# The account where the acceptance was recorded. This can be the
|
96
|
-
# or, in the case of subaccounts, the advanced account.
|
95
|
+
# Required. The account where the acceptance was recorded. This can be the
|
96
|
+
# account itself or, in the case of subaccounts, the advanced account.
|
97
97
|
# Corresponds to the JSON property `acceptedBy`
|
98
98
|
# @return [String]
|
99
99
|
attr_accessor :accepted_by
|
100
100
|
|
101
|
-
# The accepted termsOfService.
|
101
|
+
# Required. The accepted termsOfService.
|
102
102
|
# Corresponds to the JSON property `termsOfService`
|
103
103
|
# @return [String]
|
104
104
|
attr_accessor :terms_of_service
|
@@ -2672,7 +2672,7 @@ module Google
|
|
2672
2672
|
# phone number that uses a relaxed ITU E.164 format consisting of the country
|
2673
2673
|
# calling code (1 to 3 digits) and the subscriber number, with no additional
|
2674
2674
|
# spaces or formatting. For example: - correct: "+15552220123" - incorrect: "+1 (
|
2675
|
-
# 555) 222-01234 x123"
|
2675
|
+
# 555) 222-01234 x123" The ITU E.164 format limits the latter to 12 digits, but
|
2676
2676
|
# in practice not all countries respect that, so we relax that restriction here.
|
2677
2677
|
# National-only numbers are not allowed. References: - https://www.itu.int/rec/T-
|
2678
2678
|
# REC-E.164-201011-I - https://en.wikipedia.org/wiki/E.164. - https://en.
|
@@ -3389,12 +3389,12 @@ module Google
|
|
3389
3389
|
class Required
|
3390
3390
|
include Google::Apis::Core::Hashable
|
3391
3391
|
|
3392
|
-
# The `TermsOfService` that need to be accepted.
|
3392
|
+
# Required. The `TermsOfService` that need to be accepted.
|
3393
3393
|
# Corresponds to the JSON property `termsOfService`
|
3394
3394
|
# @return [String]
|
3395
3395
|
attr_accessor :terms_of_service
|
3396
3396
|
|
3397
|
-
# Full URL to the terms of service file. This field is the same as `
|
3397
|
+
# Required. Full URL to the terms of service file. This field is the same as `
|
3398
3398
|
# TermsOfService.file_uri`, it is added here for convenience only.
|
3399
3399
|
# Corresponds to the JSON property `tosFileUri`
|
3400
3400
|
# @return [String]
|
@@ -3674,16 +3674,17 @@ module Google
|
|
3674
3674
|
class ShippingSettings
|
3675
3675
|
include Google::Apis::Core::Hashable
|
3676
3676
|
|
3677
|
-
# Required. This field
|
3678
|
-
# data
|
3679
|
-
#
|
3680
|
-
# setting creation. 2. After initial creation, call
|
3681
|
-
# and current shipping setting data before
|
3682
|
-
# shipping setting information. 4. Call
|
3683
|
-
#
|
3684
|
-
# data
|
3685
|
-
# etag changes every time the shipping
|
3686
|
-
#
|
3677
|
+
# Required. This field helps avoid async issues. It ensures that the shipping
|
3678
|
+
# setting data doesn't change between the `get` call and the `insert` call. The
|
3679
|
+
# user should follow these steps: 1. Set the etag field as an empty string for
|
3680
|
+
# the initial shipping setting creation. 2. After the initial creation, call the
|
3681
|
+
# `get` method to obtain an etag and the current shipping setting data before
|
3682
|
+
# calling `insert`. 3. Modify the shipping setting information. 4. Call the `
|
3683
|
+
# insert` method with the shipping setting information and the etag obtained in
|
3684
|
+
# step 2. 5. If the shipping setting data changes between step 2 and step 4, the
|
3685
|
+
# insert request will fail because the etag changes every time the shipping
|
3686
|
+
# setting data changes. In this case, the user should repeat steps 2-4 with the
|
3687
|
+
# new etag.
|
3687
3688
|
# Corresponds to the JSON property `etag`
|
3688
3689
|
# @return [String]
|
3689
3690
|
attr_accessor :etag
|
@@ -3957,8 +3958,8 @@ module Google
|
|
3957
3958
|
# @return [String]
|
3958
3959
|
attr_accessor :name
|
3959
3960
|
|
3960
|
-
# Region code as defined by https://cldr.unicode.org/. This is the
|
3961
|
-
# current state applies to.
|
3961
|
+
# Required. Region code as defined by https://cldr.unicode.org/. This is the
|
3962
|
+
# country the current state applies to.
|
3962
3963
|
# Corresponds to the JSON property `regionCode`
|
3963
3964
|
# @return [String]
|
3964
3965
|
attr_accessor :region_code
|
@@ -3968,7 +3969,7 @@ module Google
|
|
3968
3969
|
# @return [Google::Apis::MerchantapiAccountsV1beta::Required]
|
3969
3970
|
attr_accessor :required
|
3970
3971
|
|
3971
|
-
# Terms of Service kind associated with the particular version.
|
3972
|
+
# Required. Terms of Service kind associated with the particular version.
|
3972
3973
|
# Corresponds to the JSON property `termsOfServiceKind`
|
3973
3974
|
# @return [String]
|
3974
3975
|
attr_accessor :terms_of_service_kind
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MerchantapiAccountsV1beta
|
18
18
|
# Version of the google-apis-merchantapi_accounts_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.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 = "
|
25
|
+
REVISION = "20250611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -153,17 +153,10 @@ module Google
|
|
153
153
|
execute_or_queue_command(command, &block)
|
154
154
|
end
|
155
155
|
|
156
|
-
#
|
157
|
-
#
|
158
|
-
#
|
159
|
-
#
|
160
|
-
# so on. If no filter is provided, then it returns all the accounts the user has
|
161
|
-
# access to. This method is eventually consistent, meaning changes such as
|
162
|
-
# creating, updating an account or a change of relationships between accounts
|
163
|
-
# may not show up in the results immediately. Instead, these changes propagate
|
164
|
-
# over a short period, after which the updated information can match the
|
165
|
-
# associated predicates. That means, that searching by account name might not
|
166
|
-
# return a recently changed account even though it satisfies the predicate.
|
156
|
+
# Note: For the `accounts.list` method, quota and limits usage are charged for
|
157
|
+
# each user, and not for the Merchant Center ID or the advanced account ID. To
|
158
|
+
# list several sub-accounts, you should use the `accounts.listSubaccounts`
|
159
|
+
# method, which is more suitable for advanced accounts use case.
|
167
160
|
# @param [String] filter
|
168
161
|
# Optional. Returns only accounts that match the [filter](https://developers.
|
169
162
|
# google.com/merchant/api/guides/accounts/filter). For more details, see the [
|
@@ -647,7 +640,10 @@ module Google
|
|
647
640
|
execute_or_queue_command(command, &block)
|
648
641
|
end
|
649
642
|
|
650
|
-
# Link the specified merchant to a GBP account for all countries.
|
643
|
+
# Link the specified merchant to a GBP account for all countries. To run this
|
644
|
+
# method, you must have admin access to the Merchant Center account. If you don'
|
645
|
+
# t have admin access, the request fails with the error message `User is not an
|
646
|
+
# administrator of account `ACCOUNT_ID``.
|
651
647
|
# @param [String] parent
|
652
648
|
# Required. The name of the parent resource to which the GBP account is linked.
|
653
649
|
# Format: `accounts/`account``.
|
@@ -2075,6 +2071,8 @@ module Google
|
|
2075
2071
|
end
|
2076
2072
|
|
2077
2073
|
# Retrieves the state of the agreement for the application terms of service.
|
2074
|
+
# Application terms of service covers permissions related to the usage of data
|
2075
|
+
# provided through Merchant Center, CSS Center, Manufacturer Center, and more.
|
2078
2076
|
# @param [String] parent
|
2079
2077
|
# Required. The account for which to get a TermsOfServiceAgreementState Format: `
|
2080
2078
|
# accounts/`account``
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-merchantapi_accounts_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.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_accounts_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_accounts_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_accounts_v1beta/v0.14.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-merchantapi_accounts_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|