You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -51,9 +54,9 @@ public struct CompositionParams: Codable, JSONEncodable {
51
54
/// This parameter is ignored if you also specify `insideBoundingBox`.
52
55
publicvarinsidePolygon:[[Double]]?
53
56
/// Languages for language-specific query processing steps such as plurals, stop-word removal, and word-detection
54
-
/// dictionaries This setting sets a default list of languages used by the `removeStopWords` and `ignorePlurals`
57
+
/// dictionaries This setting sets a default list of languages used by the `removeStopWords` and `ignorePlurals`
55
58
/// 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)
56
-
/// languages. To support this, you must place the CJK language **first** **You should always specify a query
59
+
/// languages. To support this, you must place the CJK language **first** **You should always specify a query
57
60
/// 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/),
58
61
/// or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to
59
62
/// 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/).
/// Whether to sum all filter scores. If true, all filter scores are summed. Otherwise, the maximum filter score is
34
+
/// Whether to sum all filter scores If true, all filter scores are summed. Otherwise, the maximum filter score is
35
35
/// kept. For more information, see [filter scores](https://www.algolia.com/doc/guides/managing-results/refine-results/filtering/in-depth/filter-scoring/#accumulating-scores-with-sumorfiltersscores).
36
36
publicvarsumOrFiltersScores:Bool?
37
37
/// Restricts a search to a subset of your searchable attributes. Attribute names are case-sensitive.
38
38
publicvarrestrictSearchableAttributes:[String]?
39
-
/// Facets for which to retrieve facet values that match the search criteria and the number of matching facet
40
-
/// values. To retrieve all facets, use the wildcard character `*`. For more information, see [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts).
39
+
/// Facets for which to retrieve facet values that match the search criteria and the number of matching facet values
40
+
/// To retrieve all facets, use the wildcard character `*`. For more information, see [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts).
41
41
publicvarfacets:[String]?
42
-
/// Whether faceting should be applied after deduplication with `distinct`. This leads to accurate facet counts
43
-
/// when using faceting in combination with `distinct`. It's usually better to use `afterDistinct` modifiers in the
42
+
/// Whether faceting should be applied after deduplication with `distinct`This leads to accurate facet counts when
43
+
/// using faceting in combination with `distinct`. It's usually better to use `afterDistinct` modifiers in the
44
44
/// `attributesForFaceting` setting, as `facetingAfterDistinct` only computes correct facet counts if all records
45
45
/// have the same facet values for the `attributeForDistinct`.
46
46
publicvarfacetingAfterDistinct:Bool?
@@ -62,14 +62,14 @@ public struct BaseRecommendSearchParams: Codable, JSONEncodable {
62
62
/// This parameter is ignored if you also specify `insideBoundingBox`.
63
63
publicvarinsidePolygon:[[Double]]?
64
64
/// ISO language codes that adjust settings that are useful for processing natural language queries (as opposed to
65
-
/// keyword searches): - Sets `removeStopWords` and `ignorePlurals` to the list of provided languages. - Sets
65
+
/// keyword searches) - Sets `removeStopWords` and `ignorePlurals` to the list of provided languages. - Sets
66
66
/// `removeWordsIfNoResults` to `allOptional`. - Adds a `natural_language` attribute to `ruleContexts` and
/// 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)
69
+
/// 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)
70
70
/// are strings that you can use to trigger matching rules.
71
71
publicvarruleContexts:[String]?
72
-
/// Impact that Personalization should have on this search. The higher this value is, the more Personalization
72
+
/// Impact that Personalization should have on this search The higher this value is, the more Personalization
73
73
/// determines the ranking compared to other factors. For more information, see [Understanding Personalization impact](https://www.algolia.com/doc/guides/personalization/personalizing-results/in-depth/configuring-personalization/#understanding-personalization-impact).
74
74
publicvarpersonalizationImpact:Int?
75
75
/// Unique pseudonymous or anonymous user identifier. This helps with analytics and click and conversion events.
@@ -79,8 +79,8 @@ public struct BaseRecommendSearchParams: Codable, JSONEncodable {
79
79
publicvargetRankingInfo:Bool?
80
80
/// Whether to take into account an index's synonyms for this search.
81
81
publicvarsynonyms:Bool?
82
-
/// Whether to include a `queryID` attribute in the response. The query ID is a unique identifier for a search
83
-
/// query and is required for tracking [click and conversion
82
+
/// Whether to include a `queryID` attribute in the responseThe query ID is a unique identifier for a search query
83
+
/// and is required for tracking [click and conversion
0 commit comments