google-apis-retail_v2 0.110.0 → 0.112.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: 4052438c911127c185f12f16c3d63075e420520afab4f231b16f0ab4b2d88f7e
|
4
|
+
data.tar.gz: d9bf3e48eadc7a80a0ab1ac80bf48170aab98ed3c741d9c07848624fe0a03354
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08144439610e8fb36ea775a532de8a7270c6c947537c07ff7a46874aff1174e1ec0324b330f96a464a3874342d907167533adbc6d6523951f2fdd1b2b5ae4af2'
|
7
|
+
data.tar.gz: 0aa051f48560dd6aada7406b7c806a51bb3ee61f59987b7cc6008cfa5cda4f4637d2d4e970ec41111cea0c4b31341be4a769580c5834b11f4ba06e3df817645a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-retail_v2
|
2
2
|
|
3
|
+
### v0.112.0 (2025-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250314
|
6
|
+
|
7
|
+
### v0.111.0 (2025-03-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250227
|
10
|
+
|
3
11
|
### v0.110.0 (2025-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250221
|
@@ -5015,6 +5015,13 @@ module Google
|
|
5015
5015
|
# @return [Google::Apis::RetailV2::GoogleCloudRetailV2SearchRequestPersonalizationSpec]
|
5016
5016
|
attr_accessor :personalization_spec
|
5017
5017
|
|
5018
|
+
# Optional. An id corresponding to a place, such as a store id or region id.
|
5019
|
+
# When specified, we use the price from the local inventory with the matching
|
5020
|
+
# product's LocalInventory.place_id for revenue optimization.
|
5021
|
+
# Corresponds to the JSON property `placeId`
|
5022
|
+
# @return [String]
|
5023
|
+
attr_accessor :place_id
|
5024
|
+
|
5018
5025
|
# Raw search query. If this field is empty, the request is considered a category
|
5019
5026
|
# browsing request and returned results are based on filter and page_categories.
|
5020
5027
|
# Corresponds to the JSON property `query`
|
@@ -5118,6 +5125,7 @@ module Google
|
|
5118
5125
|
@page_size = args[:page_size] if args.key?(:page_size)
|
5119
5126
|
@page_token = args[:page_token] if args.key?(:page_token)
|
5120
5127
|
@personalization_spec = args[:personalization_spec] if args.key?(:personalization_spec)
|
5128
|
+
@place_id = args[:place_id] if args.key?(:place_id)
|
5121
5129
|
@query = args[:query] if args.key?(:query)
|
5122
5130
|
@query_expansion_spec = args[:query_expansion_spec] if args.key?(:query_expansion_spec)
|
5123
5131
|
@region_code = args[:region_code] if args.key?(:region_code)
|
@@ -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.112.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250314"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2811,6 +2811,7 @@ module Google
|
|
2811
2811
|
property :page_token, as: 'pageToken'
|
2812
2812
|
property :personalization_spec, as: 'personalizationSpec', class: Google::Apis::RetailV2::GoogleCloudRetailV2SearchRequestPersonalizationSpec, decorator: Google::Apis::RetailV2::GoogleCloudRetailV2SearchRequestPersonalizationSpec::Representation
|
2813
2813
|
|
2814
|
+
property :place_id, as: 'placeId'
|
2814
2815
|
property :query, as: 'query'
|
2815
2816
|
property :query_expansion_spec, as: 'queryExpansionSpec', class: Google::Apis::RetailV2::GoogleCloudRetailV2SearchRequestQueryExpansionSpec, decorator: Google::Apis::RetailV2::GoogleCloudRetailV2SearchRequestQueryExpansionSpec::Representation
|
2816
2817
|
|
@@ -81,7 +81,10 @@ module Google
|
|
81
81
|
# The entity for customers who run multiple entities, domains, sites, or regions,
|
82
82
|
# for example, `Google US`, `Google Ads`, `Waymo`, `google.com`, `youtube.com`,
|
83
83
|
# etc. If this is set, it must be an exact match with UserEvent.entity to get
|
84
|
-
# per-entity autocomplete results.
|
84
|
+
# per-entity autocomplete results. Also, this entity should be limited to 256
|
85
|
+
# characters, if too long, it will be truncated to 256 characters in both
|
86
|
+
# generation and serving time, and may lead to mis-match. To ensure it works,
|
87
|
+
# please set the entity with string within 256 characters.
|
85
88
|
# @param [Array<String>, String] language_codes
|
86
89
|
# Note that this field applies for `user-data` dataset only. For requests with `
|
87
90
|
# cloud-retail` dataset, setting this field has no effect. The language filters
|
@@ -98,11 +101,11 @@ module Google
|
|
98
101
|
# Required. The query used to generate suggestions. The maximum number of
|
99
102
|
# allowed characters is 255.
|
100
103
|
# @param [String] visitor_id
|
101
|
-
#
|
102
|
-
# could be implemented with an HTTP cookie, which should be able to
|
103
|
-
# identify a visitor on a single device. This unique identifier should
|
104
|
-
# change if the visitor logs in or out of the website. The field must be a
|
105
|
-
# encoded string with a length limit of 128 characters. Otherwise, an
|
104
|
+
# Recommended field. A unique identifier for tracking visitors. For example,
|
105
|
+
# this could be implemented with an HTTP cookie, which should be able to
|
106
|
+
# uniquely identify a visitor on a single device. This unique identifier should
|
107
|
+
# not change if the visitor logs in or out of the website. The field must be a
|
108
|
+
# UTF-8 encoded string with a length limit of 128 characters. Otherwise, an
|
106
109
|
# INVALID_ARGUMENT error is returned.
|
107
110
|
# @param [String] fields
|
108
111
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.112.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.112.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|