google-apis-retail_v2beta 0.111.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: 55707b535095226559e5dbb6497cac7ffe5bf0d41c1aad220c05dfb320f1f1e4
|
4
|
+
data.tar.gz: c8dd03cf8aecb59961e51fd7ea8f6217c8ee5b3f420e6ef4f2fbbf59f366450a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0aee94784ee92cea4c34df7febc065b3ad3882de7e92948068cdbf73725237bb78321016c66b785a3d2cb9fbe9bafec2c8567d462f32508713db14387718194
|
7
|
+
data.tar.gz: 73359ee3bf058f81fa272e6fb367771f80e70b6892bc09e0fabc059149218846eec46a287520c9864374b7218ba80a1b6b4d3e896e4585b975051a5d9acf484e
|
data/CHANGELOG.md
CHANGED
@@ -3934,6 +3934,25 @@ module Google
|
|
3934
3934
|
end
|
3935
3935
|
end
|
3936
3936
|
|
3937
|
+
# A message with a list of double values.
|
3938
|
+
class GoogleCloudRetailV2betaDoubleList
|
3939
|
+
include Google::Apis::Core::Hashable
|
3940
|
+
|
3941
|
+
# The list of double values.
|
3942
|
+
# Corresponds to the JSON property `values`
|
3943
|
+
# @return [Array<Float>]
|
3944
|
+
attr_accessor :values
|
3945
|
+
|
3946
|
+
def initialize(**args)
|
3947
|
+
update!(**args)
|
3948
|
+
end
|
3949
|
+
|
3950
|
+
# Update properties of this object
|
3951
|
+
def update!(**args)
|
3952
|
+
@values = args[:values] if args.key?(:values)
|
3953
|
+
end
|
3954
|
+
end
|
3955
|
+
|
3937
3956
|
# Metadata for active A/B testing experiment.
|
3938
3957
|
class GoogleCloudRetailV2betaExperimentInfo
|
3939
3958
|
include Google::Apis::Core::Hashable
|
@@ -8533,6 +8552,11 @@ module Google
|
|
8533
8552
|
# @return [Hash<String,String>]
|
8534
8553
|
attr_accessor :matching_variant_fields
|
8535
8554
|
|
8555
|
+
# Google provided available scores.
|
8556
|
+
# Corresponds to the JSON property `modelScores`
|
8557
|
+
# @return [Hash<String,Google::Apis::RetailV2beta::GoogleCloudRetailV2betaDoubleList>]
|
8558
|
+
attr_accessor :model_scores
|
8559
|
+
|
8536
8560
|
# Specifies previous events related to this product for this user based on
|
8537
8561
|
# UserEvent with same SearchRequest.visitor_id or UserInfo.user_id. This is set
|
8538
8562
|
# only when SearchRequest.PersonalizationSpec.mode is SearchRequest.
|
@@ -8574,6 +8598,7 @@ module Google
|
|
8574
8598
|
@id = args[:id] if args.key?(:id)
|
8575
8599
|
@matching_variant_count = args[:matching_variant_count] if args.key?(:matching_variant_count)
|
8576
8600
|
@matching_variant_fields = args[:matching_variant_fields] if args.key?(:matching_variant_fields)
|
8601
|
+
@model_scores = args[:model_scores] if args.key?(:model_scores)
|
8577
8602
|
@personal_labels = args[:personal_labels] if args.key?(:personal_labels)
|
8578
8603
|
@product = args[:product] if args.key?(:product)
|
8579
8604
|
@variant_rollup_values = args[:variant_rollup_values] if args.key?(:variant_rollup_values)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RetailV2beta
|
18
18
|
# Version of the google-apis-retail_v2beta 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.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250515"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -796,6 +796,12 @@ module Google
|
|
796
796
|
include Google::Apis::Core::JsonObjectSupport
|
797
797
|
end
|
798
798
|
|
799
|
+
class GoogleCloudRetailV2betaDoubleList
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
|
+
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
803
|
+
end
|
804
|
+
|
799
805
|
class GoogleCloudRetailV2betaExperimentInfo
|
800
806
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
807
|
|
@@ -2732,6 +2738,13 @@ module Google
|
|
2732
2738
|
end
|
2733
2739
|
end
|
2734
2740
|
|
2741
|
+
class GoogleCloudRetailV2betaDoubleList
|
2742
|
+
# @private
|
2743
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2744
|
+
collection :values, as: 'values'
|
2745
|
+
end
|
2746
|
+
end
|
2747
|
+
|
2735
2748
|
class GoogleCloudRetailV2betaExperimentInfo
|
2736
2749
|
# @private
|
2737
2750
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3878,6 +3891,8 @@ module Google
|
|
3878
3891
|
property :id, as: 'id'
|
3879
3892
|
property :matching_variant_count, as: 'matchingVariantCount'
|
3880
3893
|
hash :matching_variant_fields, as: 'matchingVariantFields'
|
3894
|
+
hash :model_scores, as: 'modelScores', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaDoubleList, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaDoubleList::Representation
|
3895
|
+
|
3881
3896
|
collection :personal_labels, as: 'personalLabels'
|
3882
3897
|
property :product, as: 'product', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaProduct, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaProduct::Representation
|
3883
3898
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-retail_v2beta
|
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
|
@@ -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_v2beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.112.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Vertex AI Search for commerce API V2beta
|
79
79
|
test_files: []
|