google-apis-retail_v2 0.65.0 → 0.67.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/retail_v2/classes.rb +3 -4
- data/lib/google/apis/retail_v2/gem_version.rb +3 -3
- data/lib/google/apis/retail_v2/service.rb +25 -18
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52b2665e830ab7c927bdb64ecbbbbe549d8c5b0d9509d521ab274234c6cbaed8
|
4
|
+
data.tar.gz: 7c50f376c32454e68da3f282c66a71e6179f3d9d864e17abeffae93e8b0ec8ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 451df3958891e371be856a3ce4630ad453f852ea0029bea6506e098cd5ab27ec789bf47a9d2c686a9d45863748d113d99aae03bc9bdce2aca9617b2536dbd545
|
7
|
+
data.tar.gz: 90c91c0b1fb7e89349f5d7a3445ab6ebd34eaaef1b99f8c8383a68a04462be55d316a6d9ff48272b38040365a6c2d6f35da94e6a8caaf0ddecbde714800a36d6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-retail_v2
|
2
2
|
|
3
|
+
### v0.67.0 (2023-03-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230223
|
6
|
+
|
7
|
+
### v0.66.0 (2023-02-15)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.12.0
|
10
|
+
|
3
11
|
### v0.65.0 (2023-02-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230202
|
@@ -2591,10 +2591,9 @@ module Google
|
|
2591
2591
|
# @return [String]
|
2592
2592
|
attr_accessor :language_code
|
2593
2593
|
|
2594
|
-
# Output only. A list of local inventories specific to different places. This
|
2595
|
-
#
|
2596
|
-
#
|
2597
|
-
# RemoveLocalInventories APIs.
|
2594
|
+
# Output only. A list of local inventories specific to different places. This
|
2595
|
+
# field can be managed by ProductService.AddLocalInventories and ProductService.
|
2596
|
+
# RemoveLocalInventories APIs if fine-grained, high-volume updates are necessary.
|
2598
2597
|
# Corresponds to the JSON property `localInventories`
|
2599
2598
|
# @return [Array<Google::Apis::RetailV2::GoogleCloudRetailV2LocalInventory>]
|
2600
2599
|
attr_accessor :local_inventories
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RetailV2
|
18
18
|
# Version of the google-apis-retail_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.67.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230223"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -574,16 +574,19 @@ module Google
|
|
574
574
|
execute_or_queue_command(command, &block)
|
575
575
|
end
|
576
576
|
|
577
|
-
#
|
578
|
-
#
|
579
|
-
#
|
580
|
-
#
|
581
|
-
#
|
582
|
-
#
|
583
|
-
#
|
584
|
-
#
|
585
|
-
#
|
586
|
-
# obsolete
|
577
|
+
# It is recommended to use the ProductService.AddLocalInventories method instead
|
578
|
+
# of ProductService.AddFulfillmentPlaces. ProductService.AddLocalInventories
|
579
|
+
# achieves the same results but provides more fine-grained control over
|
580
|
+
# ingesting local inventory data. Incrementally adds place IDs to Product.
|
581
|
+
# fulfillment_info.place_ids. This process is asynchronous and does not require
|
582
|
+
# the Product to exist before updating fulfillment information. If the request
|
583
|
+
# is valid, the update will be enqueued and processed downstream. As a
|
584
|
+
# consequence, when a response is returned, the added place IDs are not
|
585
|
+
# immediately manifested in the Product queried by ProductService.GetProduct or
|
586
|
+
# ProductService.ListProducts. The returned Operations will be obsolete after 1
|
587
|
+
# day, and GetOperation API will return NOT_FOUND afterwards. If conflicting
|
588
|
+
# updates are issued, the Operations associated with the stale updates will not
|
589
|
+
# be marked as done until being obsolete.
|
587
590
|
# @param [String] product
|
588
591
|
# Required. Full resource name of Product, such as `projects/*/locations/global/
|
589
592
|
# catalogs/default_catalog/branches/default_branch/products/some_product_id`. If
|
@@ -932,14 +935,18 @@ module Google
|
|
932
935
|
execute_or_queue_command(command, &block)
|
933
936
|
end
|
934
937
|
|
935
|
-
#
|
936
|
-
#
|
937
|
-
#
|
938
|
-
#
|
939
|
-
#
|
940
|
-
#
|
941
|
-
#
|
942
|
-
#
|
938
|
+
# It is recommended to use the ProductService.RemoveLocalInventories method
|
939
|
+
# instead of ProductService.RemoveFulfillmentPlaces. ProductService.
|
940
|
+
# RemoveLocalInventories achieves the same results but provides more fine-
|
941
|
+
# grained control over ingesting local inventory data. Incrementally removes
|
942
|
+
# place IDs from a Product.fulfillment_info.place_ids. This process is
|
943
|
+
# asynchronous and does not require the Product to exist before updating
|
944
|
+
# fulfillment information. If the request is valid, the update will be enqueued
|
945
|
+
# and processed downstream. As a consequence, when a response is returned, the
|
946
|
+
# removed place IDs are not immediately manifested in the Product queried by
|
947
|
+
# ProductService.GetProduct or ProductService.ListProducts. The returned
|
948
|
+
# Operations will be obsolete after 1 day, and GetOperation API will return
|
949
|
+
# NOT_FOUND afterwards. If conflicting updates are issued, the Operations
|
943
950
|
# associated with the stale updates will not be marked as done until being
|
944
951
|
# obsolete.
|
945
952
|
# @param [String] product
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-retail_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.67.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: 2023-
|
11
|
+
date: 2023-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.11.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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/main/generated/google-apis-retail_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.67.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|