algolia 3.22.0 → 3.22.1

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: 1254547116cba77dde8f18bcb16d3b690ae04fcc6a35e418a0e9c0c0cc4a44ec
4
- data.tar.gz: ed5ee1f58057bbf5942661457428ec598b87fed322037b9742d5807ace7e7b0c
3
+ metadata.gz: 31c57dd38d31a525efb169f39ee223c30334d1f17f4e2e31288e3d47a9385ca0
4
+ data.tar.gz: 1d8c171978f9ac404996faf0bd3464a9aae3ad89e415c9a1c5d55d06d85ec732
5
5
  SHA512:
6
- metadata.gz: 18ea56bd2e7990cce08dfa90816e295bccb826b3696095d433e79105a129dce71d5a7535a1bc040eb98378e06f73985912e8b5695b91d2d060c061716fd0422e
7
- data.tar.gz: 0e294c87fa29ba5c6728dd73443587f8a8b2bbbf42fbe14f83c81ae7809cf152c8abbe90a1fb3b824cfbab8c89475201f1e7465a5e71996642a143e9b17a23bb
6
+ metadata.gz: 23275035d3a2904e2c604ab70e4551b642d78c2f620baf4681454195b95015c72e8e67b2d129965a28d7f6aef33f5d2a6a26dec3e497d83e1bcda1766c6590a9
7
+ data.tar.gz: 18c62b811bb45a9ed586ed5e0ecff98aedd4d7704ec6dab4fad9b9a5ce73da4893bc8f5bc5f6af9ef8df34ae216fff1f2dcb835e4a504a310b8d6e84f9d59558
@@ -21,7 +21,7 @@ jobs:
21
21
  - name: Install Ruby
22
22
  uses: ruby/setup-ruby@v1
23
23
  with:
24
- ruby-version: 3.4.4
24
+ ruby-version: 3.4.5
25
25
  bundler-cache: true
26
26
 
27
27
  - uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [3.22.1](https://github.com/algolia/algoliasearch-client-ruby/compare/3.22.0...3.22.1)
2
+
3
+ - [84a1f4e422](https://github.com/algolia/api-clients-automation/commit/84a1f4e422) refactor(specs): add interface to manipulate query parameter between composition API & Search API ([#5123](https://github.com/algolia/api-clients-automation/pull/5123)) by [@ClaraMuller](https://github.com/ClaraMuller/)
4
+ - [995f185c07](https://github.com/algolia/api-clients-automation/commit/995f185c07) chore(deps): dependencies 2025-07-21 ([#5129](https://github.com/algolia/api-clients-automation/pull/5129)) by [@algolia-bot](https://github.com/algolia-bot/)
5
+ - [f25e156dde](https://github.com/algolia/api-clients-automation/commit/f25e156dde) fix(specs): value/price clarifications in the Insights API ([#5154](https://github.com/algolia/api-clients-automation/pull/5154)) by [@kai687](https://github.com/kai687/)
6
+
1
7
  ## [3.22.0](https://github.com/algolia/algoliasearch-client-ruby/compare/3.21.1...3.22.0)
2
8
 
3
9
  - [a7a3c5fc95](https://github.com/algolia/api-clients-automation/commit/a7a3c5fc95) feat(specs): document runMetadata parameter ([#5087](https://github.com/algolia/api-clients-automation/pull/5087)) by [@DevinCodes](https://github.com/DevinCodes/)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algolia (3.22.0)
4
+ algolia (3.22.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)
@@ -17,7 +17,7 @@ module Algolia
17
17
  # Page of search results to retrieve.
18
18
  attr_accessor :page
19
19
 
20
- # Whether the search response should include detailed ranking information.
20
+ # Whether the run response should include detailed ranking information.
21
21
  attr_accessor :get_ranking_info
22
22
 
23
23
  attr_accessor :relevancy_strictness
@@ -49,22 +49,22 @@ module Algolia
49
49
  # Coordinates of a polygon in which to search. Polygons are defined by 3 to 10,000 points. Each point is represented by its latitude and longitude. Provide multiple polygons as nested arrays. For more information, see [filtering inside polygons](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas). This parameter is ignored if you also specify `insideBoundingBox`.
50
50
  attr_accessor :inside_polygon
51
51
 
52
- # Languages for language-specific query processing steps such as plurals, stop-word removal, and word-detection dictionaries. This setting sets a default list of languages used by the `removeStopWords` and `ignorePlurals` settings. This setting also sets a dictionary for word detection in the logogram-based [CJK](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/#normalization-for-logogram-based-languages-cjk) languages. To support this, you must place the CJK language **first**. **You should always specify a query language.** If you don't specify an indexing language, the search engine uses all [supported languages](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/supported-languages/), or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
52
+ # Languages for language-specific query processing steps such as plurals, stop-word removal, and word-detection dictionaries This setting sets a default list of languages used by the `removeStopWords` and `ignorePlurals` settings. This setting also sets a dictionary for word detection in the logogram-based [CJK](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/#normalization-for-logogram-based-languages-cjk) languages. To support this, you must place the CJK language **first** **You should always specify a query language.** If you don't specify an indexing language, the search engine uses all [supported languages](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/supported-languages/), or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/).
53
53
  attr_accessor :query_languages
54
54
 
55
- # ISO language codes that adjust settings that are useful for processing natural language queries (as opposed to keyword searches): - Sets `removeStopWords` and `ignorePlurals` to the list of provided languages. - Sets `removeWordsIfNoResults` to `allOptional`. - Adds a `natural_language` attribute to `ruleContexts` and `analyticsTags`.
55
+ # ISO language codes that adjust settings that are useful for processing natural language queries (as opposed to keyword searches) - Sets `removeStopWords` and `ignorePlurals` to the list of provided languages. - Sets `removeWordsIfNoResults` to `allOptional`. - Adds a `natural_language` attribute to `ruleContexts` and `analyticsTags`.
56
56
  attr_accessor :natural_languages
57
57
 
58
- # Whether to enable rules.
58
+ # Whether to enable composition rules.
59
59
  attr_accessor :enable_rules
60
60
 
61
- # Assigns a rule context to the search query. [Rule contexts](https://www.algolia.com/doc/guides/managing-results/rules/rules-overview/how-to/customize-search-results-by-platform/#whats-a-context) are strings that you can use to trigger matching rules.
61
+ # Assigns a rule context to the run query [Rule contexts](https://www.algolia.com/doc/guides/managing-results/rules/rules-overview/how-to/customize-search-results-by-platform/#whats-a-context) are strings that you can use to trigger matching rules.
62
62
  attr_accessor :rule_contexts
63
63
 
64
64
  # Unique pseudonymous or anonymous user identifier. This helps with analytics and click and conversion events. For more information, see [user token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
65
65
  attr_accessor :user_token
66
66
 
67
- # Whether to include a `queryID` attribute in the response. The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/guides/sending-events/getting-started/).
67
+ # Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/guides/sending-events/getting-started/).
68
68
  attr_accessor :click_analytics
69
69
 
70
70
  # Whether this search will be included in Analytics.
@@ -73,10 +73,10 @@ module Algolia
73
73
  # Tags to apply to the query for [segmenting analytics data](https://www.algolia.com/doc/guides/search-analytics/guides/segments/).
74
74
  attr_accessor :analytics_tags
75
75
 
76
- # Whether to enable A/B testing for this search.
76
+ # Whether to enable index level A/B testing for this run request. If the composition mixes multiple indices, the A/B test is ignored.
77
77
  attr_accessor :enable_ab_test
78
78
 
79
- # Whether this search will use [Dynamic Re-Ranking](https://www.algolia.com/doc/guides/algolia-ai/re-ranking/). This setting only has an effect if you activated Dynamic Re-Ranking for this index in the Algolia dashboard.
79
+ # Whether this search will use [Dynamic Re-Ranking](https://www.algolia.com/doc/guides/algolia-ai/re-ranking/) This setting only has an effect if you activated Dynamic Re-Ranking for this index in the Algolia dashboard.
80
80
  attr_accessor :enable_re_ranking
81
81
 
82
82
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -7,7 +7,7 @@ require "time"
7
7
 
8
8
  module Algolia
9
9
  module Insights
10
- # Total price of a product, including any discounts, in units of `currency`.
10
+ # Final price of a single product, including any discounts, in units of `currency`.
11
11
  module Price
12
12
  class << self
13
13
  # List of class defined in oneOf (OpenAPI v3)
@@ -7,7 +7,7 @@ require "time"
7
7
 
8
8
  module Algolia
9
9
  module Insights
10
- # Total monetary value of this event in units of `currency`.
10
+ # Total monetary value of this event in units of `currency`. This should be equal to the sum of `price` times `quantity`.
11
11
  module Value
12
12
  class << self
13
13
  # List of class defined in oneOf (OpenAPI v3)
@@ -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.22.0"
6
+ VERSION = "3.22.1"
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algolia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.22.0
4
+ version: 3.22.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support
@@ -774,7 +774,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
774
774
  - !ruby/object:Gem::Version
775
775
  version: '0'
776
776
  requirements: []
777
- rubygems_version: 3.6.7
777
+ rubygems_version: 3.6.9
778
778
  specification_version: 4
779
779
  summary: A simple Ruby client for the algolia.com REST API
780
780
  test_files: []