algoliasearch 5.5.1 → 5.5.2

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.
Files changed (42) hide show
  1. package/builds/models.ts +2 -0
  2. package/dist/algoliasearch.umd.js +1 -1
  3. package/dist/browser.d.ts +1 -1
  4. package/dist/browser.js.map +1 -1
  5. package/dist/browser.min.js +1 -1
  6. package/dist/browser.min.js.map +1 -1
  7. package/dist/fetch.d.ts +1 -1
  8. package/dist/fetch.js.map +1 -1
  9. package/dist/lite/browser.d.ts +378 -129
  10. package/dist/lite/builds/browser.js +1 -1
  11. package/dist/lite/builds/browser.js.map +1 -1
  12. package/dist/lite/builds/browser.min.js +1 -1
  13. package/dist/lite/builds/browser.min.js.map +1 -1
  14. package/dist/lite/builds/browser.umd.js +2 -2
  15. package/dist/lite/builds/node.cjs +1 -1
  16. package/dist/lite/builds/node.cjs.map +1 -1
  17. package/dist/lite/builds/node.js +1 -1
  18. package/dist/lite/builds/node.js.map +1 -1
  19. package/dist/lite/node.d.cts +378 -129
  20. package/dist/lite/node.d.ts +378 -129
  21. package/dist/lite/src/liteClient.cjs +1 -1
  22. package/dist/lite/src/liteClient.cjs.map +1 -1
  23. package/dist/lite/src/liteClient.js +1 -1
  24. package/dist/lite/src/liteClient.js.map +1 -1
  25. package/dist/node.cjs.map +1 -1
  26. package/dist/node.d.cts +1 -1
  27. package/dist/node.d.ts +1 -1
  28. package/dist/node.js.map +1 -1
  29. package/lite/model/baseRecommendIndexSettings.ts +184 -0
  30. package/lite/model/baseRecommendRequest.ts +2 -2
  31. package/lite/model/baseRecommendSearchParams.ts +133 -0
  32. package/lite/model/facetOrdering.ts +2 -2
  33. package/lite/model/fallbackParams.ts +2 -2
  34. package/lite/model/index.ts +6 -1
  35. package/lite/model/{facets.ts → indexSettingsFacets.ts} +1 -1
  36. package/lite/model/recommendIndexSettings.ts +9 -0
  37. package/lite/model/recommendSearchParams.ts +10 -0
  38. package/lite/model/searchParams.ts +2 -1
  39. package/lite/model/searchParamsString.ts +11 -0
  40. package/lite/model/trendingItems.ts +2 -2
  41. package/lite/src/liteClient.ts +1 -1
  42. package/package.json +11 -11
@@ -55,7 +55,7 @@ type SupportedLanguage = 'af' | 'ar' | 'az' | 'bg' | 'bn' | 'ca' | 'cs' | 'cy' |
55
55
  */
56
56
  type TagFilters = TagFilters[] | string;
57
57
 
58
- type BaseSearchParamsWithoutQuery = {
58
+ type BaseRecommendSearchParams = {
59
59
  /**
60
60
  * Keywords to be used instead of the search query to conduct a more broader search. Using the `similarQuery` parameter changes other settings: - `queryType` is set to `prefixNone`. - `removeStopWords` is set to true. - `words` is set as the first ranking criterion. - All remaining words are treated as `optionalWords`. Since the `similarQuery` is supposed to do a broad search, they usually return many results. Combine it with `filters` to narrow down the list of results.
61
61
  */
@@ -84,18 +84,6 @@ type BaseSearchParamsWithoutQuery = {
84
84
  * Whether faceting should be applied after deduplication with `distinct`. This leads to accurate facet counts when using faceting in combination with `distinct`. It\'s usually better to use `afterDistinct` modifiers in the `attributesForFaceting` setting, as `facetingAfterDistinct` only computes correct facet counts if all records have the same facet values for the `attributeForDistinct`.
85
85
  */
86
86
  facetingAfterDistinct?: boolean;
87
- /**
88
- * Page of search results to retrieve.
89
- */
90
- page?: number;
91
- /**
92
- * Position of the first hit to retrieve.
93
- */
94
- offset?: number;
95
- /**
96
- * Number of hits to retrieve (used in combination with `offset`).
97
- */
98
- length?: number;
99
87
  /**
100
88
  * Coordinates for the center of a circle, expressed as a comma-separated string of latitude and longitude. Only records included within circle around this central location are included in the results. The radius of the circle is determined by the `aroundRadius` and `minimumAroundRadius` settings. This parameter is ignored if you also specify `insidePolygon` or `insideBoundingBox`.
101
89
  */
@@ -164,15 +152,77 @@ type BaseSearchParamsWithoutQuery = {
164
152
  enableABTest?: boolean;
165
153
  };
166
154
 
167
- type SearchParamsQuery = {
155
+ type BaseIndexSettings = {
168
156
  /**
169
- * Search query.
157
+ * Attributes used for [faceting](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/). Facets are attributes that let you categorize search results. They can be used for filtering search results. By default, no attribute is used for faceting. Attribute names are case-sensitive. **Modifiers** - `filterOnly(\"ATTRIBUTE\")`. Allows using this attribute as a filter, but doesn\'t evalue the facet values. - `searchable(\"ATTRIBUTE\")`. Allows searching for facet values. - `afterDistinct(\"ATTRIBUTE\")`. Evaluates the facet count _after_ deduplication with `distinct`. This ensures accurate facet counts. You can apply this modifier to searchable facets: `afterDistinct(searchable(ATTRIBUTE))`.
170
158
  */
171
- query?: string;
159
+ attributesForFaceting?: string[];
160
+ /**
161
+ * Creates [replica indices](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/replicas/). Replicas are copies of a primary index with the same records but different settings, synonyms, or rules. If you want to offer a different ranking or sorting of your search results, you\'ll use replica indices. All index operations on a primary index are automatically forwarded to its replicas. To add a replica index, you must provide the complete set of replicas to this parameter. If you omit a replica from this list, the replica turns into a regular, standalone index that will no longer by synced with the primary index. **Modifier** - `virtual(\"REPLICA\")`. Create a virtual replica, Virtual replicas don\'t increase the number of records and are optimized for [Relevant sorting](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/relevant-sort/).
162
+ */
163
+ replicas?: string[];
164
+ /**
165
+ * Maximum number of search results that can be obtained through pagination. Higher pagination limits might slow down your search. For pagination limits above 1,000, the sorting of results beyond the 1,000th hit can\'t be guaranteed.
166
+ */
167
+ paginationLimitedTo?: number;
168
+ /**
169
+ * Attributes that can\'t be retrieved at query time. This can be useful if you want to use an attribute for ranking or to [restrict access](https://www.algolia.com/doc/guides/security/api-keys/how-to/user-restricted-access-to-data/), but don\'t want to include it in the search results. Attribute names are case-sensitive.
170
+ */
171
+ unretrievableAttributes?: string[];
172
+ /**
173
+ * Words for which you want to turn off [typo tolerance](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/). This also turns off [word splitting and concatenation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/splitting-and-concatenation/) for the specified words.
174
+ */
175
+ disableTypoToleranceOnWords?: string[];
176
+ /**
177
+ * Attributes, for which you want to support [Japanese transliteration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#japanese-transliteration-and-type-ahead). Transliteration supports searching in any of the Japanese writing systems. To support transliteration, you must set the indexing language to Japanese. Attribute names are case-sensitive.
178
+ */
179
+ attributesToTransliterate?: string[];
180
+ /**
181
+ * Attributes for which to split [camel case](https://wikipedia.org/wiki/Camel_case) words. Attribute names are case-sensitive.
182
+ */
183
+ camelCaseAttributes?: string[];
184
+ /**
185
+ * Searchable attributes to which Algolia should apply [word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/how-to/customize-segmentation/) (decompounding). Attribute names are case-sensitive. Compound words are formed by combining two or more individual words, and are particularly prevalent in Germanic languages—for example, \"firefighter\". With decompounding, the individual components are indexed separately. You can specify different lists for different languages. Decompounding is supported for these languages: Dutch (`nl`), German (`de`), Finnish (`fi`), Danish (`da`), Swedish (`sv`), and Norwegian (`no`). Decompounding doesn\'t work for words with [non-spacing mark Unicode characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won\'t be decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
186
+ */
187
+ decompoundedAttributes?: Record<string, unknown>;
188
+ /**
189
+ * Languages for language-specific processing steps, such as word detection and dictionary settings. **You should always specify an indexing 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/).
190
+ */
191
+ indexLanguages?: SupportedLanguage[];
192
+ /**
193
+ * Searchable attributes for which you want to turn off [prefix matching](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/override-search-engine-defaults/#adjusting-prefix-search). Attribute names are case-sensitive.
194
+ */
195
+ disablePrefixOnAttributes?: string[];
196
+ /**
197
+ * Whether arrays with exclusively non-negative integers should be compressed for better performance. If true, the compressed arrays may be reordered.
198
+ */
199
+ allowCompressionOfIntegerArray?: boolean;
200
+ /**
201
+ * Numeric attributes that can be used as [numerical filters](https://www.algolia.com/doc/guides/managing-results/rules/detecting-intent/how-to/applying-a-custom-filter-for-a-specific-query/#numerical-filters). Attribute names are case-sensitive. By default, all numeric attributes are available as numerical filters. For faster indexing, reduce the number of numeric attributes. If you want to turn off filtering for all numeric attributes, specifiy an attribute that doesn\'t exist in your index, such as `NO_NUMERIC_FILTERING`. **Modifier** - `equalOnly(\"ATTRIBUTE\")`. Support only filtering based on equality comparisons `=` and `!=`.
202
+ */
203
+ numericAttributesForFiltering?: string[];
204
+ /**
205
+ * Controls which separators are indexed. Separators are all non-letter characters except spaces and currency characters, such as $€£¥. By default, separator characters aren\'t indexed. With `separatorsToIndex`, Algolia treats separator characters as separate words. For example, a search for `C#` would report two matches.
206
+ */
207
+ separatorsToIndex?: string;
208
+ /**
209
+ * Attributes used for searching. Attribute names are case-sensitive. By default, all attributes are searchable and the [Attribute](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#attribute) ranking criterion is turned off. With a non-empty list, Algolia only returns results with matches in the selected attributes. In addition, the Attribute ranking criterion is turned on: matches in attributes that are higher in the list of `searchableAttributes` rank first. To make matches in two attributes rank equally, include them in a comma-separated string, such as `\"title,alternate_title\"`. Attributes with the same priority are always unordered. For more information, see [Searchable attributes](https://www.algolia.com/doc/guides/sending-and-managing-data/prepare-your-data/how-to/setting-searchable-attributes/). **Modifier** - `unordered(\"ATTRIBUTE\")`. Ignore the position of a match within the attribute. Without modifier, matches at the beginning of an attribute rank higer than matches at the end.
210
+ */
211
+ searchableAttributes?: string[];
212
+ /**
213
+ * An object with custom data. You can store up to 32kB as custom data.
214
+ */
215
+ userData?: Record<string, unknown>;
216
+ /**
217
+ * Characters and their normalized replacements. This overrides Algolia\'s default [normalization](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/).
218
+ */
219
+ customNormalization?: Record<string, Record<string, string>>;
220
+ /**
221
+ * Attribute that should be used to establish groups of results. Attribute names are case-sensitive. All records with the same value for this attribute are considered a group. You can combine `attributeForDistinct` with the `distinct` search parameter to control how many items per group are included in the search results. If you want to use the same attribute also for faceting, use the `afterDistinct` modifier of the `attributesForFaceting` setting. This applies faceting _after_ deduplication, which will result in accurate facet counts.
222
+ */
223
+ attributeForDistinct?: string;
172
224
  };
173
225
 
174
- type BaseSearchParams = BaseSearchParamsWithoutQuery & SearchParamsQuery;
175
-
176
226
  type AdvancedSyntaxFeatures = 'exactPhrase' | 'excludeWords';
177
227
 
178
228
  type AlternativesAsExact = 'ignorePlurals' | 'multiWordsSynonym' | 'singleWordSynonym';
@@ -194,11 +244,6 @@ type BooleanString = 'false' | 'true';
194
244
  */
195
245
  type IgnorePlurals = BooleanString | SupportedLanguage[] | boolean;
196
246
 
197
- /**
198
- * Search mode the index will use to query for results. This setting only applies to indices, for which Algolia enabled NeuralSearch for you.
199
- */
200
- type Mode = 'keywordSearch' | 'neuralSearch';
201
-
202
247
  /**
203
248
  * Determines if and how query words are interpreted as prefixes. By default, only the last query word is treated as prefix (`prefixLast`). To turn off prefix search, use `prefixNone`. Avoid `prefixAll`, which treats all query words as prefixes. This might lead to counterintuitive results and makes your search slower. For more information, see [Prefix searching](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/override-search-engine-defaults/in-depth/prefix-searching/).
204
249
  */
@@ -222,7 +267,7 @@ type RemoveWordsIfNoResults = 'allOptional' | 'firstWords' | 'lastWords' | 'none
222
267
  /**
223
268
  * Order of facet names.
224
269
  */
225
- type Facets = {
270
+ type IndexSettingsFacets = {
226
271
  /**
227
272
  * Explicit order of facets or facet values. This setting lets you always show specific facets or facet values at the top of the list.
228
273
  */
@@ -250,7 +295,7 @@ type Value = {
250
295
  * Order of facet names and facet values in your UI.
251
296
  */
252
297
  type FacetOrdering = {
253
- facets?: Facets;
298
+ facets?: IndexSettingsFacets;
254
299
  /**
255
300
  * Order of facet values. One object for each facet.
256
301
  */
@@ -272,16 +317,6 @@ type RenderingContent = {
272
317
  redirect?: RedirectURL;
273
318
  };
274
319
 
275
- /**
276
- * Settings for the semantic search part of NeuralSearch. Only used when `mode` is `neuralSearch`.
277
- */
278
- type SemanticSearch = {
279
- /**
280
- * Indices from which to collect click and conversion events. If null, the current index and all its replicas are used.
281
- */
282
- eventSources?: string[] | null;
283
- };
284
-
285
320
  /**
286
321
  * - `min`. Return matches with the lowest number of typos. For example, if you have matches without typos, only include those. But if there are no matches without typos (with 1 typo), include matches with 1 typo (2 typos). - `strict`. Return matches with the two lowest numbers of typos. With `strict`, the Typo ranking criterion is applied first in the `ranking` setting.
287
322
  */
@@ -292,7 +327,7 @@ type TypoToleranceEnum = 'min' | 'strict';
292
327
  */
293
328
  type TypoTolerance = TypoToleranceEnum | boolean;
294
329
 
295
- type IndexSettingsAsSearchParams = {
330
+ type BaseRecommendIndexSettings = {
296
331
  /**
297
332
  * Attributes to include in the API response. To reduce the size of your response, you can retrieve only some of the attributes. Attribute names are case-sensitive. - `*` retrieves all attributes, except attributes included in the `customRanking` and `unretrievableAttributes` settings. - To retrieve all attributes except a specific one, prefix the attribute with a dash and combine it with the `*`: `[\"*\", \"-ATTRIBUTE\"]`. - The `objectID` attribute is always included.
298
333
  */
@@ -301,10 +336,6 @@ type IndexSettingsAsSearchParams = {
301
336
  * Determines the order in which Algolia returns your results. By default, each entry corresponds to a [ranking criteria](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/). The tie-breaking algorithm sequentially applies each criterion in the order they\'re specified. If you configure a replica index for [sorting by an attribute](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/how-to/sort-by-attribute/), you put the sorting attribute at the top of the list. **Modifiers** - `asc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in ascending order. - `desc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in descending order. Before you modify the default setting, you should test your changes in the dashboard, and by [A/B testing](https://www.algolia.com/doc/guides/ab-testing/what-is-ab-testing/).
302
337
  */
303
338
  ranking?: string[];
304
- /**
305
- * Attributes to use as [custom ranking](https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/). Attribute names are case-sensitive. The custom ranking attributes decide which items are shown first if the other ranking criteria are equal. Records with missing values for your selected custom ranking attributes are always sorted last. Boolean attributes are sorted based on their alphabetical order. **Modifiers** - `asc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in ascending order. - `desc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in descending order. If you use two or more custom ranking attributes, [reduce the precision](https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/how-to/controlling-custom-ranking-metrics-precision/) of your first attributes, or the other attributes will never be applied.
306
- */
307
- customRanking?: string[];
308
339
  /**
309
340
  * Relevancy threshold below which less relevant results aren\'t included in the results. You can only set `relevancyStrictness` on [virtual replica indices](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/replicas/#what-are-virtual-replicas). Use this setting to strike a balance between the relevance and number of returned results.
310
341
  */
@@ -333,10 +364,6 @@ type IndexSettingsAsSearchParams = {
333
364
  * Whether to restrict highlighting and snippeting to items that at least partially matched the search query. By default, all items are highlighted and snippeted.
334
365
  */
335
366
  restrictHighlightAndSnippetArrays?: boolean;
336
- /**
337
- * Number of hits per page.
338
- */
339
- hitsPerPage?: number;
340
367
  /**
341
368
  * Minimum number of characters a word in the search query must contain to accept matches with [one typo](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/in-depth/configuring-typo-tolerance/#configuring-word-length-for-typos).
342
369
  */
@@ -356,10 +383,6 @@ type IndexSettingsAsSearchParams = {
356
383
  disableTypoToleranceOnAttributes?: string[];
357
384
  ignorePlurals?: IgnorePlurals;
358
385
  removeStopWords?: RemoveStopWords;
359
- /**
360
- * Characters for which diacritics should be preserved. By default, Algolia removes diacritics from letters. For example, `é` becomes `e`. If this causes issues in your search, you can specify characters that should keep their diacritics.
361
- */
362
- keepDiacriticsOnCharacters?: string;
363
386
  /**
364
387
  * 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/).
365
388
  */
@@ -378,8 +401,6 @@ type IndexSettingsAsSearchParams = {
378
401
  enablePersonalization?: boolean;
379
402
  queryType?: QueryType;
380
403
  removeWordsIfNoResults?: RemoveWordsIfNoResults;
381
- mode?: Mode;
382
- semanticSearch?: SemanticSearch;
383
404
  /**
384
405
  * Whether to support phrase matching and excluding words from search queries. Use the `advancedSyntaxFeatures` parameter to control which feature is supported.
385
406
  */
@@ -439,11 +460,21 @@ type IndexSettingsAsSearchParams = {
439
460
  };
440
461
 
441
462
  /**
442
- * Each parameter value, including the `query` must not be larger than 512 bytes.
463
+ * Index settings.
443
464
  */
444
- type SearchParamsObject = BaseSearchParams & IndexSettingsAsSearchParams;
465
+ type RecommendIndexSettings = BaseIndexSettings & BaseRecommendIndexSettings;
466
+
467
+ type SearchParamsQuery = {
468
+ /**
469
+ * Search query.
470
+ */
471
+ query?: string;
472
+ };
445
473
 
446
- type SearchParams = Record<string, unknown> & SearchParamsObject;
474
+ /**
475
+ * Search parameters for filtering the recommendations.
476
+ */
477
+ type RecommendSearchParams = BaseRecommendSearchParams & RecommendIndexSettings & SearchParamsQuery;
447
478
 
448
479
  type BaseRecommendRequest = {
449
480
  /**
@@ -458,7 +489,7 @@ type BaseRecommendRequest = {
458
489
  * Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
459
490
  */
460
491
  maxRecommendations?: number;
461
- queryParameters?: SearchParams;
492
+ queryParameters?: RecommendSearchParams;
462
493
  };
463
494
 
464
495
  /**
@@ -476,7 +507,7 @@ type FrequentlyBoughtTogether = {
476
507
 
477
508
  type BoughtTogetherQuery = BaseRecommendRequest & FrequentlyBoughtTogether;
478
509
 
479
- type FallbackParams = Record<string, unknown> & SearchParamsObject;
510
+ type FallbackParams = RecommendSearchParams & Record<string, unknown>;
480
511
 
481
512
  /**
482
513
  * Looking similar model. This model recommends items that look similar to the item with the ID `objectID` based on image attributes in your index.
@@ -553,7 +584,7 @@ type TrendingItems = {
553
584
  */
554
585
  facetValue?: string;
555
586
  model: TrendingItemsModel;
556
- fallbackParameters?: SearchParamsObject;
587
+ fallbackParameters?: FallbackParams;
557
588
  };
558
589
 
559
590
  type TrendingItemsQuery = BaseRecommendRequest & TrendingItems;
@@ -602,6 +633,283 @@ type SearchForHitsOptions = {
602
633
  facetQuery?: never;
603
634
  };
604
635
 
636
+ type BaseSearchParamsWithoutQuery = {
637
+ /**
638
+ * Keywords to be used instead of the search query to conduct a more broader search. Using the `similarQuery` parameter changes other settings: - `queryType` is set to `prefixNone`. - `removeStopWords` is set to true. - `words` is set as the first ranking criterion. - All remaining words are treated as `optionalWords`. Since the `similarQuery` is supposed to do a broad search, they usually return many results. Combine it with `filters` to narrow down the list of results.
639
+ */
640
+ similarQuery?: string;
641
+ /**
642
+ * Filter expression to only include items that match the filter criteria in the response. You can use these filter expressions: - **Numeric filters.** `<facet> <op> <number>`, where `<op>` is one of `<`, `<=`, `=`, `!=`, `>`, `>=`. - **Ranges.** `<facet>:<lower> TO <upper>` where `<lower>` and `<upper>` are the lower and upper limits of the range (inclusive). - **Facet filters.** `<facet>:<value>` where `<facet>` is a facet attribute (case-sensitive) and `<value>` a facet value. - **Tag filters.** `_tags:<value>` or just `<value>` (case-sensitive). - **Boolean filters.** `<facet>: true | false`. You can combine filters with `AND`, `OR`, and `NOT` operators with the following restrictions: - You can only combine filters of the same type with `OR`. **Not supported:** `facet:value OR num > 3`. - You can\'t use `NOT` with combinations of filters. **Not supported:** `NOT(facet:value OR facet:value)` - You can\'t combine conjunctions (`AND`) with `OR`. **Not supported:** `facet:value OR (facet:value AND facet:value)` Use quotes around your filters, if the facet attribute name or facet value has spaces, keywords (`OR`, `AND`, `NOT`), or quotes. If a facet attribute is an array, the filter matches if it matches at least one element of the array. For more information, see [Filters](https://www.algolia.com/doc/guides/managing-results/refine-results/filtering/).
643
+ */
644
+ filters?: string;
645
+ facetFilters?: FacetFilters;
646
+ optionalFilters?: OptionalFilters;
647
+ numericFilters?: NumericFilters;
648
+ tagFilters?: TagFilters;
649
+ /**
650
+ * Whether to sum all filter scores. If true, all filter scores are summed. Otherwise, the maximum filter score is 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).
651
+ */
652
+ sumOrFiltersScores?: boolean;
653
+ /**
654
+ * Restricts a search to a subset of your searchable attributes. Attribute names are case-sensitive.
655
+ */
656
+ restrictSearchableAttributes?: string[];
657
+ /**
658
+ * Facets for which to retrieve facet values that match the search criteria and the number of matching facet 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).
659
+ */
660
+ facets?: string[];
661
+ /**
662
+ * Whether faceting should be applied after deduplication with `distinct`. This leads to accurate facet counts when using faceting in combination with `distinct`. It\'s usually better to use `afterDistinct` modifiers in the `attributesForFaceting` setting, as `facetingAfterDistinct` only computes correct facet counts if all records have the same facet values for the `attributeForDistinct`.
663
+ */
664
+ facetingAfterDistinct?: boolean;
665
+ /**
666
+ * Page of search results to retrieve.
667
+ */
668
+ page?: number;
669
+ /**
670
+ * Position of the first hit to retrieve.
671
+ */
672
+ offset?: number;
673
+ /**
674
+ * Number of hits to retrieve (used in combination with `offset`).
675
+ */
676
+ length?: number;
677
+ /**
678
+ * Coordinates for the center of a circle, expressed as a comma-separated string of latitude and longitude. Only records included within circle around this central location are included in the results. The radius of the circle is determined by the `aroundRadius` and `minimumAroundRadius` settings. This parameter is ignored if you also specify `insidePolygon` or `insideBoundingBox`.
679
+ */
680
+ aroundLatLng?: string;
681
+ /**
682
+ * Whether to obtain the coordinates from the request\'s IP address.
683
+ */
684
+ aroundLatLngViaIP?: boolean;
685
+ aroundRadius?: AroundRadius;
686
+ aroundPrecision?: AroundPrecision;
687
+ /**
688
+ * Minimum radius (in meters) for a search around a location when `aroundRadius` isn\'t set.
689
+ */
690
+ minimumAroundRadius?: number;
691
+ /**
692
+ * Coordinates for a rectangular area in which to search. Each bounding box is defined by the two opposite points of its diagonal, and expressed as latitude and longitude pair: `[p1 lat, p1 long, p2 lat, p2 long]`. Provide multiple bounding boxes as nested arrays. For more information, see [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas).
693
+ */
694
+ insideBoundingBox?: number[][];
695
+ /**
696
+ * 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`.
697
+ */
698
+ insidePolygon?: number[][];
699
+ /**
700
+ * 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`.
701
+ */
702
+ naturalLanguages?: SupportedLanguage[];
703
+ /**
704
+ * 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.
705
+ */
706
+ ruleContexts?: string[];
707
+ /**
708
+ * Impact that Personalization should have on this search. The higher this value is, the more Personalization 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).
709
+ */
710
+ personalizationImpact?: number;
711
+ /**
712
+ * 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/).
713
+ */
714
+ userToken?: string;
715
+ /**
716
+ * Whether the search response should include detailed ranking information.
717
+ */
718
+ getRankingInfo?: boolean;
719
+ /**
720
+ * Whether to take into account an index\'s synonyms for this search.
721
+ */
722
+ synonyms?: boolean;
723
+ /**
724
+ * 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/).
725
+ */
726
+ clickAnalytics?: boolean;
727
+ /**
728
+ * Whether this search will be included in Analytics.
729
+ */
730
+ analytics?: boolean;
731
+ /**
732
+ * Tags to apply to the query for [segmenting analytics data](https://www.algolia.com/doc/guides/search-analytics/guides/segments/).
733
+ */
734
+ analyticsTags?: string[];
735
+ /**
736
+ * Whether to include this search when calculating processing-time percentiles.
737
+ */
738
+ percentileComputation?: boolean;
739
+ /**
740
+ * Whether to enable A/B testing for this search.
741
+ */
742
+ enableABTest?: boolean;
743
+ };
744
+
745
+ type BaseSearchParams = BaseSearchParamsWithoutQuery & SearchParamsQuery;
746
+
747
+ /**
748
+ * Search mode the index will use to query for results. This setting only applies to indices, for which Algolia enabled NeuralSearch for you.
749
+ */
750
+ type Mode = 'keywordSearch' | 'neuralSearch';
751
+
752
+ /**
753
+ * Settings for the semantic search part of NeuralSearch. Only used when `mode` is `neuralSearch`.
754
+ */
755
+ type SemanticSearch = {
756
+ /**
757
+ * Indices from which to collect click and conversion events. If null, the current index and all its replicas are used.
758
+ */
759
+ eventSources?: string[] | null;
760
+ };
761
+
762
+ type IndexSettingsAsSearchParams = {
763
+ /**
764
+ * Attributes to include in the API response. To reduce the size of your response, you can retrieve only some of the attributes. Attribute names are case-sensitive. - `*` retrieves all attributes, except attributes included in the `customRanking` and `unretrievableAttributes` settings. - To retrieve all attributes except a specific one, prefix the attribute with a dash and combine it with the `*`: `[\"*\", \"-ATTRIBUTE\"]`. - The `objectID` attribute is always included.
765
+ */
766
+ attributesToRetrieve?: string[];
767
+ /**
768
+ * Determines the order in which Algolia returns your results. By default, each entry corresponds to a [ranking criteria](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/). The tie-breaking algorithm sequentially applies each criterion in the order they\'re specified. If you configure a replica index for [sorting by an attribute](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/how-to/sort-by-attribute/), you put the sorting attribute at the top of the list. **Modifiers** - `asc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in ascending order. - `desc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in descending order. Before you modify the default setting, you should test your changes in the dashboard, and by [A/B testing](https://www.algolia.com/doc/guides/ab-testing/what-is-ab-testing/).
769
+ */
770
+ ranking?: string[];
771
+ /**
772
+ * Attributes to use as [custom ranking](https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/). Attribute names are case-sensitive. The custom ranking attributes decide which items are shown first if the other ranking criteria are equal. Records with missing values for your selected custom ranking attributes are always sorted last. Boolean attributes are sorted based on their alphabetical order. **Modifiers** - `asc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in ascending order. - `desc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in descending order. If you use two or more custom ranking attributes, [reduce the precision](https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/how-to/controlling-custom-ranking-metrics-precision/) of your first attributes, or the other attributes will never be applied.
773
+ */
774
+ customRanking?: string[];
775
+ /**
776
+ * Relevancy threshold below which less relevant results aren\'t included in the results. You can only set `relevancyStrictness` on [virtual replica indices](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/replicas/#what-are-virtual-replicas). Use this setting to strike a balance between the relevance and number of returned results.
777
+ */
778
+ relevancyStrictness?: number;
779
+ /**
780
+ * Attributes to highlight. By default, all searchable attributes are highlighted. Use `*` to highlight all attributes or use an empty array `[]` to turn off highlighting. Attribute names are case-sensitive. With highlighting, strings that match the search query are surrounded by HTML tags defined by `highlightPreTag` and `highlightPostTag`. You can use this to visually highlight matching parts of a search query in your UI. For more information, see [Highlighting and snippeting](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/highlighting-snippeting/js/).
781
+ */
782
+ attributesToHighlight?: string[];
783
+ /**
784
+ * Attributes for which to enable snippets. Attribute names are case-sensitive. Snippets provide additional context to matched words. If you enable snippets, they include 10 words, including the matched word. The matched word will also be wrapped by HTML tags for highlighting. You can adjust the number of words with the following notation: `ATTRIBUTE:NUMBER`, where `NUMBER` is the number of words to be extracted.
785
+ */
786
+ attributesToSnippet?: string[];
787
+ /**
788
+ * HTML tag to insert before the highlighted parts in all highlighted results and snippets.
789
+ */
790
+ highlightPreTag?: string;
791
+ /**
792
+ * HTML tag to insert after the highlighted parts in all highlighted results and snippets.
793
+ */
794
+ highlightPostTag?: string;
795
+ /**
796
+ * String used as an ellipsis indicator when a snippet is truncated.
797
+ */
798
+ snippetEllipsisText?: string;
799
+ /**
800
+ * Whether to restrict highlighting and snippeting to items that at least partially matched the search query. By default, all items are highlighted and snippeted.
801
+ */
802
+ restrictHighlightAndSnippetArrays?: boolean;
803
+ /**
804
+ * Number of hits per page.
805
+ */
806
+ hitsPerPage?: number;
807
+ /**
808
+ * Minimum number of characters a word in the search query must contain to accept matches with [one typo](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/in-depth/configuring-typo-tolerance/#configuring-word-length-for-typos).
809
+ */
810
+ minWordSizefor1Typo?: number;
811
+ /**
812
+ * Minimum number of characters a word in the search query must contain to accept matches with [two typos](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/in-depth/configuring-typo-tolerance/#configuring-word-length-for-typos).
813
+ */
814
+ minWordSizefor2Typos?: number;
815
+ typoTolerance?: TypoTolerance;
816
+ /**
817
+ * Whether to allow typos on numbers in the search query. Turn off this setting to reduce the number of irrelevant matches when searching in large sets of similar numbers.
818
+ */
819
+ allowTyposOnNumericTokens?: boolean;
820
+ /**
821
+ * Attributes for which you want to turn off [typo tolerance](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/). Attribute names are case-sensitive. Returning only exact matches can help when: - [Searching in hyphenated attributes](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/how-to/how-to-search-in-hyphenated-attributes/). - Reducing the number of matches when you have too many. This can happen with attributes that are long blocks of text, such as product descriptions. Consider alternatives such as `disableTypoToleranceOnWords` or adding synonyms if your attributes have intentional unusual spellings that might look like typos.
822
+ */
823
+ disableTypoToleranceOnAttributes?: string[];
824
+ ignorePlurals?: IgnorePlurals;
825
+ removeStopWords?: RemoveStopWords;
826
+ /**
827
+ * Characters for which diacritics should be preserved. By default, Algolia removes diacritics from letters. For example, `é` becomes `e`. If this causes issues in your search, you can specify characters that should keep their diacritics.
828
+ */
829
+ keepDiacriticsOnCharacters?: string;
830
+ /**
831
+ * 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/).
832
+ */
833
+ queryLanguages?: SupportedLanguage[];
834
+ /**
835
+ * Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words). Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding doesn\'t work for words with [non-spacing mark Unicode characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won\'t be decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
836
+ */
837
+ decompoundQuery?: boolean;
838
+ /**
839
+ * Whether to enable rules.
840
+ */
841
+ enableRules?: boolean;
842
+ /**
843
+ * Whether to enable Personalization.
844
+ */
845
+ enablePersonalization?: boolean;
846
+ queryType?: QueryType;
847
+ removeWordsIfNoResults?: RemoveWordsIfNoResults;
848
+ mode?: Mode;
849
+ semanticSearch?: SemanticSearch;
850
+ /**
851
+ * Whether to support phrase matching and excluding words from search queries. Use the `advancedSyntaxFeatures` parameter to control which feature is supported.
852
+ */
853
+ advancedSyntax?: boolean;
854
+ /**
855
+ * Words that should be considered optional when found in the query. By default, records must match all words in the search query to be included in the search results. Adding optional words can help to increase the number of search results by running an additional search query that doesn\'t include the optional words. For example, if the search query is \"action video\" and \"video\" is an optional word, the search engine runs two queries. One for \"action video\" and one for \"action\". Records that match all words are ranked higher. For a search query with 4 or more words **and** all its words are optional, the number of matched words required for a record to be included in the search results increases for every 1,000 records: - If `optionalWords` has less than 10 words, the required number of matched words increases by 1: results 1 to 1,000 require 1 matched word, results 1,001 to 2000 need 2 matched words. - If `optionalWords` has 10 or more words, the number of required matched words increases by the number of optional words dividied by 5 (rounded down). For example, with 18 optional words: results 1 to 1,000 require 1 matched word, results 1,001 to 2000 need 4 matched words. For more information, see [Optional words](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/empty-or-insufficient-results/#creating-a-list-of-optional-words).
856
+ */
857
+ optionalWords?: string[];
858
+ /**
859
+ * Searchable attributes for which you want to [turn off the Exact ranking criterion](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/override-search-engine-defaults/in-depth/adjust-exact-settings/#turn-off-exact-for-some-attributes). Attribute names are case-sensitive. This can be useful for attributes with long values, where the likelyhood of an exact match is high, such as product descriptions. Turning off the Exact ranking criterion for these attributes favors exact matching on other attributes. This reduces the impact of individual attributes with a lot of content on ranking.
860
+ */
861
+ disableExactOnAttributes?: string[];
862
+ exactOnSingleWordQuery?: ExactOnSingleWordQuery;
863
+ /**
864
+ * Alternatives of query words that should be considered as exact matches by the Exact ranking criterion. - `ignorePlurals`. Plurals and similar declensions added by the `ignorePlurals` setting are considered exact matches. - `singleWordSynonym`. Single-word synonyms, such as \"NY/NYC\" are considered exact matches. - `multiWordsSynonym`. Multi-word synonyms, such as \"NY/New York\" are considered exact matches.
865
+ */
866
+ alternativesAsExact?: AlternativesAsExact[];
867
+ /**
868
+ * Advanced search syntax features you want to support. - `exactPhrase`. Phrases in quotes must match exactly. For example, `sparkly blue \"iPhone case\"` only returns records with the exact string \"iPhone case\". - `excludeWords`. Query words prefixed with a `-` must not occur in a record. For example, `search -engine` matches records that contain \"search\" but not \"engine\". This setting only has an effect if `advancedSyntax` is true.
869
+ */
870
+ advancedSyntaxFeatures?: AdvancedSyntaxFeatures[];
871
+ distinct?: Distinct;
872
+ /**
873
+ * Whether to replace a highlighted word with the matched synonym. By default, the original words are highlighted even if a synonym matches. For example, with `home` as a synonym for `house` and a search for `home`, records matching either \"home\" or \"house\" are included in the search results, and either \"home\" or \"house\" are highlighted. With `replaceSynonymsInHighlight` set to `true`, a search for `home` still matches the same records, but all occurences of \"house\" are replaced by \"home\" in the highlighted response.
874
+ */
875
+ replaceSynonymsInHighlight?: boolean;
876
+ /**
877
+ * 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.
878
+ */
879
+ minProximity?: number;
880
+ /**
881
+ * 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.
882
+ */
883
+ responseFields?: string[];
884
+ /**
885
+ * Maximum number of facet values to return when [searching for facet values](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#search-for-facet-values).
886
+ */
887
+ maxFacetHits?: number;
888
+ /**
889
+ * Maximum number of facet values to return for each facet.
890
+ */
891
+ maxValuesPerFacet?: number;
892
+ /**
893
+ * Order in which to retrieve facet values. - `count`. Facet values are retrieved by decreasing count. The count is the number of matching records containing this facet value. - `alpha`. Retrieve facet values alphabetically. This setting doesn\'t influence how facet values are displayed in your UI (see `renderingContent`). For more information, see [facet value display](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/facet-display/js/).
894
+ */
895
+ sortFacetValuesBy?: string;
896
+ /**
897
+ * Whether the best matching attribute should be determined by minimum proximity. This setting only affects ranking if the Attribute ranking criterion comes before Proximity in the `ranking` setting. If true, the best matching attribute is selected based on the minimum proximity of multiple matches. Otherwise, the best matching attribute is determined by the order in the `searchableAttributes` setting.
898
+ */
899
+ attributeCriteriaComputedByMinProximity?: boolean;
900
+ renderingContent?: RenderingContent;
901
+ /**
902
+ * 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.
903
+ */
904
+ enableReRanking?: boolean;
905
+ reRankingApplyFilter?: ReRankingApplyFilter | null;
906
+ };
907
+
908
+ /**
909
+ * Each parameter value, including the `query` must not be larger than 512 bytes.
910
+ */
911
+ type SearchParamsObject = BaseSearchParams & IndexSettingsAsSearchParams;
912
+
605
913
  /**
606
914
  * Properties for the `customPost` method.
607
915
  */
@@ -1064,6 +1372,18 @@ type SearchForFacetValuesResponse = {
1064
1372
  processingTimeMS?: number;
1065
1373
  };
1066
1374
 
1375
+ /**
1376
+ * Search parameters as query string.
1377
+ */
1378
+ type SearchParamsString = {
1379
+ /**
1380
+ * Search parameters as a URL-encoded query string.
1381
+ */
1382
+ params?: string;
1383
+ };
1384
+
1385
+ type SearchParams = SearchParamsObject | SearchParamsString;
1386
+
1067
1387
  type SearchForFacets = SearchForFacetsOptions & SearchParams;
1068
1388
 
1069
1389
  type SearchForHits = SearchForHitsOptions & SearchParams;
@@ -1123,7 +1443,7 @@ type SearchResponses<T = Record<string, any>> = {
1123
1443
  results: Array<SearchResult<T>>;
1124
1444
  };
1125
1445
 
1126
- declare const apiClientVersion = "5.5.1";
1446
+ declare const apiClientVersion = "5.5.2";
1127
1447
  declare function createLiteClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, ...options }: CreateClientOptions): {
1128
1448
  transporter: _algolia_client_common.Transporter;
1129
1449
  /**
@@ -1285,77 +1605,6 @@ type BaseGetApiKeyResponse = {
1285
1605
  createdAt: number;
1286
1606
  };
1287
1607
 
1288
- type BaseIndexSettings = {
1289
- /**
1290
- * Attributes used for [faceting](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/). Facets are attributes that let you categorize search results. They can be used for filtering search results. By default, no attribute is used for faceting. Attribute names are case-sensitive. **Modifiers** - `filterOnly(\"ATTRIBUTE\")`. Allows using this attribute as a filter, but doesn\'t evalue the facet values. - `searchable(\"ATTRIBUTE\")`. Allows searching for facet values. - `afterDistinct(\"ATTRIBUTE\")`. Evaluates the facet count _after_ deduplication with `distinct`. This ensures accurate facet counts. You can apply this modifier to searchable facets: `afterDistinct(searchable(ATTRIBUTE))`.
1291
- */
1292
- attributesForFaceting?: string[];
1293
- /**
1294
- * Creates [replica indices](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/replicas/). Replicas are copies of a primary index with the same records but different settings, synonyms, or rules. If you want to offer a different ranking or sorting of your search results, you\'ll use replica indices. All index operations on a primary index are automatically forwarded to its replicas. To add a replica index, you must provide the complete set of replicas to this parameter. If you omit a replica from this list, the replica turns into a regular, standalone index that will no longer by synced with the primary index. **Modifier** - `virtual(\"REPLICA\")`. Create a virtual replica, Virtual replicas don\'t increase the number of records and are optimized for [Relevant sorting](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/relevant-sort/).
1295
- */
1296
- replicas?: string[];
1297
- /**
1298
- * Maximum number of search results that can be obtained through pagination. Higher pagination limits might slow down your search. For pagination limits above 1,000, the sorting of results beyond the 1,000th hit can\'t be guaranteed.
1299
- */
1300
- paginationLimitedTo?: number;
1301
- /**
1302
- * Attributes that can\'t be retrieved at query time. This can be useful if you want to use an attribute for ranking or to [restrict access](https://www.algolia.com/doc/guides/security/api-keys/how-to/user-restricted-access-to-data/), but don\'t want to include it in the search results. Attribute names are case-sensitive.
1303
- */
1304
- unretrievableAttributes?: string[];
1305
- /**
1306
- * Words for which you want to turn off [typo tolerance](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/). This also turns off [word splitting and concatenation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/splitting-and-concatenation/) for the specified words.
1307
- */
1308
- disableTypoToleranceOnWords?: string[];
1309
- /**
1310
- * Attributes, for which you want to support [Japanese transliteration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#japanese-transliteration-and-type-ahead). Transliteration supports searching in any of the Japanese writing systems. To support transliteration, you must set the indexing language to Japanese. Attribute names are case-sensitive.
1311
- */
1312
- attributesToTransliterate?: string[];
1313
- /**
1314
- * Attributes for which to split [camel case](https://wikipedia.org/wiki/Camel_case) words. Attribute names are case-sensitive.
1315
- */
1316
- camelCaseAttributes?: string[];
1317
- /**
1318
- * Searchable attributes to which Algolia should apply [word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/how-to/customize-segmentation/) (decompounding). Attribute names are case-sensitive. Compound words are formed by combining two or more individual words, and are particularly prevalent in Germanic languages—for example, \"firefighter\". With decompounding, the individual components are indexed separately. You can specify different lists for different languages. Decompounding is supported for these languages: Dutch (`nl`), German (`de`), Finnish (`fi`), Danish (`da`), Swedish (`sv`), and Norwegian (`no`). Decompounding doesn\'t work for words with [non-spacing mark Unicode characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won\'t be decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308).
1319
- */
1320
- decompoundedAttributes?: Record<string, unknown>;
1321
- /**
1322
- * Languages for language-specific processing steps, such as word detection and dictionary settings. **You should always specify an indexing 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/).
1323
- */
1324
- indexLanguages?: SupportedLanguage[];
1325
- /**
1326
- * Searchable attributes for which you want to turn off [prefix matching](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/override-search-engine-defaults/#adjusting-prefix-search). Attribute names are case-sensitive.
1327
- */
1328
- disablePrefixOnAttributes?: string[];
1329
- /**
1330
- * Whether arrays with exclusively non-negative integers should be compressed for better performance. If true, the compressed arrays may be reordered.
1331
- */
1332
- allowCompressionOfIntegerArray?: boolean;
1333
- /**
1334
- * Numeric attributes that can be used as [numerical filters](https://www.algolia.com/doc/guides/managing-results/rules/detecting-intent/how-to/applying-a-custom-filter-for-a-specific-query/#numerical-filters). Attribute names are case-sensitive. By default, all numeric attributes are available as numerical filters. For faster indexing, reduce the number of numeric attributes. If you want to turn off filtering for all numeric attributes, specifiy an attribute that doesn\'t exist in your index, such as `NO_NUMERIC_FILTERING`. **Modifier** - `equalOnly(\"ATTRIBUTE\")`. Support only filtering based on equality comparisons `=` and `!=`.
1335
- */
1336
- numericAttributesForFiltering?: string[];
1337
- /**
1338
- * Controls which separators are indexed. Separators are all non-letter characters except spaces and currency characters, such as $€£¥. By default, separator characters aren\'t indexed. With `separatorsToIndex`, Algolia treats separator characters as separate words. For example, a search for `C#` would report two matches.
1339
- */
1340
- separatorsToIndex?: string;
1341
- /**
1342
- * Attributes used for searching. Attribute names are case-sensitive. By default, all attributes are searchable and the [Attribute](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#attribute) ranking criterion is turned off. With a non-empty list, Algolia only returns results with matches in the selected attributes. In addition, the Attribute ranking criterion is turned on: matches in attributes that are higher in the list of `searchableAttributes` rank first. To make matches in two attributes rank equally, include them in a comma-separated string, such as `\"title,alternate_title\"`. Attributes with the same priority are always unordered. For more information, see [Searchable attributes](https://www.algolia.com/doc/guides/sending-and-managing-data/prepare-your-data/how-to/setting-searchable-attributes/). **Modifier** - `unordered(\"ATTRIBUTE\")`. Ignore the position of a match within the attribute. Without modifier, matches at the beginning of an attribute rank higer than matches at the end.
1343
- */
1344
- searchableAttributes?: string[];
1345
- /**
1346
- * An object with custom data. You can store up to 32kB as custom data.
1347
- */
1348
- userData?: Record<string, unknown>;
1349
- /**
1350
- * Characters and their normalized replacements. This overrides Algolia\'s default [normalization](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/).
1351
- */
1352
- customNormalization?: Record<string, Record<string, string>>;
1353
- /**
1354
- * Attribute that should be used to establish groups of results. Attribute names are case-sensitive. All records with the same value for this attribute are considered a group. You can combine `attributeForDistinct` with the `distinct` search parameter to control how many items per group are included in the search results. If you want to use the same attribute also for faceting, use the `afterDistinct` modifier of the `attributesForFaceting` setting. This applies faceting _after_ deduplication, which will result in accurate facet counts.
1355
- */
1356
- attributeForDistinct?: string;
1357
- };
1358
-
1359
1608
  type BrowsePagination = {
1360
1609
  /**
1361
1610
  * Page of search results to retrieve.
@@ -1458,4 +1707,4 @@ type LiteClient = ReturnType<typeof createLiteClient>;
1458
1707
 
1459
1708
  declare function liteClient(appId: string, apiKey: string, options?: ClientOptions): LiteClient;
1460
1709
 
1461
- export { type Acl, type AdvancedSyntaxFeatures, type AlternativesAsExact, type ApiKey, type AroundPrecision, type AroundRadius, type AroundRadiusAll, type AutomaticFacetFilter, type AutomaticFacetFilters, type BaseGetApiKeyResponse, type BaseIndexSettings, type BaseRecommendRequest, type BaseSearchParams, type BaseSearchParamsWithoutQuery, type BaseSearchResponse, type BooleanString, type BoughtTogetherQuery, type BrowsePagination, type BrowseParamsObject, type BrowseResponse, type ConsequenceParams, type ConsequenceQuery, type ConsequenceQueryObject, type Cursor, type CustomPostProps, type Distinct, type Edit, type EditType, type ErrorBase, type ExactOnSingleWordQuery, type Exhaustive, type FacetFilters, type FacetHits, type FacetOrdering, type FacetStats, type Facets, type FallbackParams, type FbtModel, type FrequentlyBoughtTogether, type GetApiKeyResponse, type GetRecommendationsParams, type GetRecommendationsResponse, type HighlightResult, type HighlightResultOption, type Hit, type IgnorePlurals, type IndexSettings, type IndexSettingsAsSearchParams, type LegacyGetRecommendationsParams, type LegacySearchMethodProps, type LiteClient, type LookingSimilar, type LookingSimilarModel, type LookingSimilarQuery, type MatchLevel, type MatchedGeoLocation, type Mode, type NumericFilters, type OptionalFilters, type Params, type Personalization, type QueryType, type Range, type RankingInfo, type ReRankingApplyFilter, type RecommendHit, type RecommendationsHit, type RecommendationsHits, type RecommendationsRequest, type RecommendationsResults, type RecommendedForYou, type RecommendedForYouModel, type RecommendedForYouQuery, type Redirect, type RedirectRuleIndexData, type RedirectRuleIndexMetadata, type RedirectURL, type RelatedModel, type RelatedProducts, type RelatedQuery, type RemoveStopWords, type RemoveWordsIfNoResults, type RenderingContent, type SearchForFacetValuesResponse, type SearchForFacets, type SearchForFacetsOptions, type SearchForHits, type SearchForHitsOptions, type SearchHits, type SearchMethodParams, type SearchPagination, type SearchParams, type SearchParamsObject, type SearchParamsQuery, type SearchQuery, type SearchResponse, type SearchResponses, type SearchResult, type SearchStrategy, type SearchTypeDefault, type SearchTypeFacet, type SemanticSearch, type SettingsResponse, type SnippetResult, type SnippetResultOption, type SortRemainingBy, type SupportedLanguage, type TagFilters, type TrendingFacetHit, type TrendingFacets, type TrendingFacetsModel, type TrendingFacetsQuery, type TrendingItems, type TrendingItemsModel, type TrendingItemsQuery, type TypoTolerance, type TypoToleranceEnum, type Value, type WithPrimary, apiClientVersion, liteClient };
1710
+ export { type Acl, type AdvancedSyntaxFeatures, type AlternativesAsExact, type ApiKey, type AroundPrecision, type AroundRadius, type AroundRadiusAll, type AutomaticFacetFilter, type AutomaticFacetFilters, type BaseGetApiKeyResponse, type BaseIndexSettings, type BaseRecommendIndexSettings, type BaseRecommendRequest, type BaseRecommendSearchParams, type BaseSearchParams, type BaseSearchParamsWithoutQuery, type BaseSearchResponse, type BooleanString, type BoughtTogetherQuery, type BrowsePagination, type BrowseParamsObject, type BrowseResponse, type ConsequenceParams, type ConsequenceQuery, type ConsequenceQueryObject, type Cursor, type CustomPostProps, type Distinct, type Edit, type EditType, type ErrorBase, type ExactOnSingleWordQuery, type Exhaustive, type FacetFilters, type FacetHits, type FacetOrdering, type FacetStats, type FallbackParams, type FbtModel, type FrequentlyBoughtTogether, type GetApiKeyResponse, type GetRecommendationsParams, type GetRecommendationsResponse, type HighlightResult, type HighlightResultOption, type Hit, type IgnorePlurals, type IndexSettings, type IndexSettingsAsSearchParams, type IndexSettingsFacets, type LegacyGetRecommendationsParams, type LegacySearchMethodProps, type LiteClient, type LookingSimilar, type LookingSimilarModel, type LookingSimilarQuery, type MatchLevel, type MatchedGeoLocation, type Mode, type NumericFilters, type OptionalFilters, type Params, type Personalization, type QueryType, type Range, type RankingInfo, type ReRankingApplyFilter, type RecommendHit, type RecommendIndexSettings, type RecommendSearchParams, type RecommendationsHit, type RecommendationsHits, type RecommendationsRequest, type RecommendationsResults, type RecommendedForYou, type RecommendedForYouModel, type RecommendedForYouQuery, type Redirect, type RedirectRuleIndexData, type RedirectRuleIndexMetadata, type RedirectURL, type RelatedModel, type RelatedProducts, type RelatedQuery, type RemoveStopWords, type RemoveWordsIfNoResults, type RenderingContent, type SearchForFacetValuesResponse, type SearchForFacets, type SearchForFacetsOptions, type SearchForHits, type SearchForHitsOptions, type SearchHits, type SearchMethodParams, type SearchPagination, type SearchParams, type SearchParamsObject, type SearchParamsQuery, type SearchParamsString, type SearchQuery, type SearchResponse, type SearchResponses, type SearchResult, type SearchStrategy, type SearchTypeDefault, type SearchTypeFacet, type SemanticSearch, type SettingsResponse, type SnippetResult, type SnippetResultOption, type SortRemainingBy, type SupportedLanguage, type TagFilters, type TrendingFacetHit, type TrendingFacets, type TrendingFacetsModel, type TrendingFacetsQuery, type TrendingItems, type TrendingItemsModel, type TrendingItemsQuery, type TypoTolerance, type TypoToleranceEnum, type Value, type WithPrimary, apiClientVersion, liteClient };