google-apis-retail_v2alpha 0.118.0 → 0.119.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: 68e4cf8bd484f0f653b961bd0c43bfad5d0704c2b659443502bd43466e530e0f
4
- data.tar.gz: 2cb2f4607a498f741c994fc4c0aabf019ab87e66d52387e173d301004e2bc16f
3
+ metadata.gz: 59784873290ef5cc6552bc6fe4612dee9b8f125a067fddcc8ab7e9efd0dec6d5
4
+ data.tar.gz: 074a9bdcdc09b717a8a6277e209295f932d2f8c169f8128e7340b4295dd31d0d
5
5
  SHA512:
6
- metadata.gz: 7c0288013ebc4e93f395cc7a6cfae9751b31b0dc7e9c6879cef4ed4734c18bf525be2d2985ff4078a53d0effd0a6c7f7aba088d31fff4d18d03aba65e517e369
7
- data.tar.gz: 7ec174fa06010c778b54a52ae9d21971613660025a844667a47c0639c3d393eeb8b8fa95ccedc1265d394529d1cf1932ee8cd4479d4ccc6819fe76cbab04d105
6
+ metadata.gz: 711fcb08d8e82b153b630ed736bc639250510ba115e026ccc7e94c09d4e1a1b18496cae78cc129235352819f4abd10699c76d3f5f18f6021b26928571f55ecc5
7
+ data.tar.gz: c8119fa84c754c2ba736f8cf1f200cfba452713579f94ebf09268747cf3b2e09a9cf428748881c4a4909d429653c8a36da304404e671c232aa005eba0e3d760a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-retail_v2alpha
2
2
 
3
+ ### v0.119.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250605
6
+
3
7
  ### v0.118.0 (2025-06-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20250522
@@ -2826,6 +2826,21 @@ module Google
2826
2826
  # @return [Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaUserInfo]
2827
2827
  attr_accessor :user_info
2828
2828
 
2829
+ # Optional. The user labels applied to a resource must meet the following
2830
+ # requirements: * Each resource can have multiple labels, up to a maximum of 64.
2831
+ # * Each label must be a key-value pair. * Keys have a minimum length of 1
2832
+ # character and a maximum length of 63 characters and cannot be empty. Values
2833
+ # can be empty and have a maximum length of 63 characters. * Keys and values can
2834
+ # contain only lowercase letters, numeric characters, underscores, and dashes.
2835
+ # All characters must use UTF-8 encoding, and international characters are
2836
+ # allowed. * The key portion of a label must be unique. However, you can use the
2837
+ # same key with multiple resources. * Keys must start with a lowercase letter or
2838
+ # international character. See [Google Cloud Document](https://cloud.google.com/
2839
+ # resource-manager/docs/creating-managing-labels#requirements) for more details.
2840
+ # Corresponds to the JSON property `userLabels`
2841
+ # @return [Hash<String,String>]
2842
+ attr_accessor :user_labels
2843
+
2829
2844
  # Required. A unique identifier for tracking visitors. For example, this could
2830
2845
  # be implemented with an HTTP cookie, which should be able to uniquely identify
2831
2846
  # a visitor on a single device. This unique identifier should not change if the
@@ -2849,6 +2864,7 @@ module Google
2849
2864
  @query = args[:query] if args.key?(:query)
2850
2865
  @search_params = args[:search_params] if args.key?(:search_params)
2851
2866
  @user_info = args[:user_info] if args.key?(:user_info)
2867
+ @user_labels = args[:user_labels] if args.key?(:user_labels)
2852
2868
  @visitor_id = args[:visitor_id] if args.key?(:visitor_id)
2853
2869
  end
2854
2870
  end
@@ -7328,6 +7344,11 @@ module Google
7328
7344
  # @return [String]
7329
7345
  attr_accessor :entity
7330
7346
 
7347
+ # Optional. An ID for the experiment group this search belongs to.
7348
+ # Corresponds to the JSON property `experimentId`
7349
+ # @return [String]
7350
+ attr_accessor :experiment_id
7351
+
7331
7352
  # Facet specifications for faceted search. If empty, no facets are returned. A
7332
7353
  # maximum of 200 values are allowed. Otherwise, an INVALID_ARGUMENT error is
7333
7354
  # returned.
@@ -7535,6 +7556,7 @@ module Google
7535
7556
  @conversational_search_spec = args[:conversational_search_spec] if args.key?(:conversational_search_spec)
7536
7557
  @dynamic_facet_spec = args[:dynamic_facet_spec] if args.key?(:dynamic_facet_spec)
7537
7558
  @entity = args[:entity] if args.key?(:entity)
7559
+ @experiment_id = args[:experiment_id] if args.key?(:experiment_id)
7538
7560
  @facet_specs = args[:facet_specs] if args.key?(:facet_specs)
7539
7561
  @filter = args[:filter] if args.key?(:filter)
7540
7562
  @labels = args[:labels] if args.key?(:labels)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RetailV2alpha
18
18
  # Version of the google-apis-retail_v2alpha gem
19
- GEM_VERSION = "0.118.0"
19
+ GEM_VERSION = "0.119.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 = "20250522"
25
+ REVISION = "20250605"
26
26
  end
27
27
  end
28
28
  end
@@ -2532,6 +2532,7 @@ module Google
2532
2532
 
2533
2533
  property :user_info, as: 'userInfo', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaUserInfo, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaUserInfo::Representation
2534
2534
 
2535
+ hash :user_labels, as: 'userLabels'
2535
2536
  property :visitor_id, as: 'visitorId'
2536
2537
  end
2537
2538
  end
@@ -3710,6 +3711,7 @@ module Google
3710
3711
  property :dynamic_facet_spec, as: 'dynamicFacetSpec', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaSearchRequestDynamicFacetSpec, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaSearchRequestDynamicFacetSpec::Representation
3711
3712
 
3712
3713
  property :entity, as: 'entity'
3714
+ property :experiment_id, as: 'experimentId'
3713
3715
  collection :facet_specs, as: 'facetSpecs', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaSearchRequestFacetSpec, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaSearchRequestFacetSpec::Representation
3714
3716
 
3715
3717
  property :filter, as: 'filter'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-retail_v2alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.118.0
4
+ version: 0.119.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_v2alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.118.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.119.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2alpha
62
62
  rdoc_options: []
63
63
  require_paths: