algolia 3.12.0 → 3.12.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 285b858c2d565c4b75158a73203bb0625fe61e865bce7fea6c7e2899d1a71757
4
- data.tar.gz: b253df6e34fd22555c52b5d1f99a354331473ef4f4c07a6580931539e2534921
3
+ metadata.gz: 10077a28cc270e76616164f43144c53c3bdccd4335d22627b144ef0b718e97cc
4
+ data.tar.gz: ba7acf8de770caa1dfaf274a5c4cd0dfeaad8503e51592f98d8e8dad411d5138
5
5
  SHA512:
6
- metadata.gz: 90310b211507a80208285c217b12c2272d3d00f2dfa829d0d03691adfc29f411b8b3cea0b39f2b5e004320e12b47c9133c53a31eacd646deab847a4f129fd1c0
7
- data.tar.gz: fd108c8b0614a594f73b8d6eacbb5219f1b95f6b4684b104db20306460601d9cb25d0fe23c355a1beeb35e506493afe5cddbca12835800f722ff9538331c78b2
6
+ metadata.gz: 9cbe483f389e43d6d83c3f2eb74f9e5c4a5320e5b4b18d71e95e646d8a588dda108c910c2f400a3f8d357905cae95ad064ddb45b256bcc33f11c64a7db729660
7
+ data.tar.gz: 63762aeb7d86bbaeded15f52cba5baa653bc2f3660c0a5a1de73cb81ad5a9685ce2f6a2b17b031e8bcb5749e2f0f3fdb361afc852f235c6d01b97687ca9ea585
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [3.12.1](https://github.com/algolia/algoliasearch-client-ruby/compare/3.12.0...3.12.1)
2
+
3
+ - [506b8a5636](https://github.com/algolia/api-clients-automation/commit/506b8a5636) fix(specs): responseFields description ([#4399](https://github.com/algolia/api-clients-automation/pull/4399)) by [@kai687](https://github.com/kai687/)
4
+ - [09e657fa76](https://github.com/algolia/api-clients-automation/commit/09e657fa76) fix(specs): add a linter to assert that type is present ([#4393](https://github.com/algolia/api-clients-automation/pull/4393)) by [@millotp](https://github.com/millotp/)
5
+
1
6
  ## [3.12.0](https://github.com/algolia/algoliasearch-client-ruby/compare/3.11.0...3.12.0)
2
7
 
3
8
  - [5aa57630d6](https://github.com/algolia/api-clients-automation/commit/5aa57630d6) feat(specs): only use shortname in the source input ([#4287](https://github.com/algolia/api-clients-automation/pull/4287)) by [@millotp](https://github.com/millotp/)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algolia (3.12.0)
4
+ algolia (3.12.1)
5
5
  base64 (>= 0.2.0, < 1)
6
6
  faraday (>= 1.0.1, < 3.0)
7
7
  faraday-net_http_persistent (>= 0.15, < 3)
@@ -8,7 +8,7 @@ require "time"
8
8
  module Algolia
9
9
  module Abtesting
10
10
  class ListABTestsResponse
11
- # A/B tests.
11
+ # The list of A/B tests, null if no A/B tests are configured for this application.
12
12
  attr_accessor :abtests
13
13
 
14
14
  # Number of A/B tests.
@@ -233,7 +233,7 @@ module Algolia
233
233
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
234
234
  attr_accessor :min_proximity
235
235
 
236
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
236
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
237
237
  attr_accessor :response_fields
238
238
 
239
239
  # Maximum number of facet values to return for each facet.
@@ -234,7 +234,7 @@ module Algolia
234
234
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
235
235
  attr_accessor :min_proximity
236
236
 
237
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
237
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
238
238
  attr_accessor :response_fields
239
239
 
240
240
  # Maximum number of facet values to return for each facet.
@@ -46,7 +46,7 @@ module Algolia
46
46
  :threshold => :"Float",
47
47
  :max_recommendations => :"Integer",
48
48
  :query_parameters => :"RecommendSearchParams",
49
- :facet_name => :"Object",
49
+ :facet_name => :"String",
50
50
  :model => :"TrendingFacetsModel",
51
51
  :fallback_parameters => :"FallbackParams"
52
52
  }
@@ -55,9 +55,7 @@ module Algolia
55
55
  # List of attributes with nullable: true
56
56
  def self.openapi_nullable
57
57
  Set.new(
58
- [
59
- :facet_name
60
- ]
58
+ []
61
59
  )
62
60
  end
63
61
 
@@ -189,7 +189,7 @@ module Algolia
189
189
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
190
190
  attr_accessor :min_proximity
191
191
 
192
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
192
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
193
193
  attr_accessor :response_fields
194
194
 
195
195
  # Maximum number of facet values to return for each facet.
@@ -48,9 +48,7 @@ module Algolia
48
48
  # List of attributes with nullable: true
49
49
  def self.openapi_nullable
50
50
  Set.new(
51
- [
52
- :user_data
53
- ]
51
+ []
54
52
  )
55
53
  end
56
54
 
@@ -186,7 +186,7 @@ module Algolia
186
186
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
187
187
  attr_accessor :min_proximity
188
188
 
189
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
189
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
190
190
  attr_accessor :response_fields
191
191
 
192
192
  # Maximum number of facet values to return for each facet.
@@ -161,7 +161,7 @@ module Algolia
161
161
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
162
162
  attr_accessor :min_proximity
163
163
 
164
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
164
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
165
165
  attr_accessor :response_fields
166
166
 
167
167
  # Maximum number of facet values to return for each facet.
@@ -192,7 +192,7 @@ module Algolia
192
192
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
193
193
  attr_accessor :min_proximity
194
194
 
195
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
195
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
196
196
  attr_accessor :response_fields
197
197
 
198
198
  # Maximum number of facet values to return for each facet.
@@ -192,7 +192,7 @@ module Algolia
192
192
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
193
193
  attr_accessor :min_proximity
194
194
 
195
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
195
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
196
196
  attr_accessor :response_fields
197
197
 
198
198
  # Maximum number of facet values to return for each facet.
@@ -190,7 +190,7 @@ module Algolia
190
190
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
191
191
  attr_accessor :min_proximity
192
192
 
193
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
193
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
194
194
  attr_accessor :response_fields
195
195
 
196
196
  # Maximum number of facet values to return for each facet.
@@ -160,7 +160,7 @@ module Algolia
160
160
  # Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score.
161
161
  attr_accessor :min_proximity
162
162
 
163
- # Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can't exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don't exclude properties that you might need in your search UI.
163
+ # Properties to include in the API response of search and browse requests. By default, all response properties are included. To reduce the response size, you can select which properties should be included. An empty list may lead to an empty API response (except properties you can't exclude). You can't exclude these properties: `message`, `warning`, `cursor`, `abTestVariantID`, or any property added by setting `getRankingInfo` to true. Your search depends on the `hits` field. If you omit this field, searches won't return any results. Your UI might also depend on other properties, for example, for pagination. Before restricting the response size, check the impact on your search experience.
164
164
  attr_accessor :response_fields
165
165
 
166
166
  # Maximum number of facet values to return for each facet.
@@ -3,5 +3,5 @@
3
3
  # Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
4
4
 
5
5
  module Algolia
6
- VERSION = "3.12.0"
6
+ VERSION = "3.12.1"
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algolia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.12.0
4
+ version: 3.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-22 00:00:00.000000000 Z
10
+ date: 2025-02-05 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: faraday