Skip to content

Commit 455c5d3

Browse files
Merge branch 'main' into pr/3099
2 parents 7bf49c9 + 5bb9451 commit 455c5d3

File tree

9 files changed

+21
-24
lines changed

9 files changed

+21
-24
lines changed

.github/workflows/code-sample-automation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
add-pr-to-project:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/add-to-project@f5473ace9aeee8b97717b281e26980aa5097023f
1414
with:

.github/workflows/preview-info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
preview-info:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Prepare comment content

.github/workflows/validate-docs-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
link-check:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
if: github.base_ref == 'main'
1111
steps:
1212
- uses: actions/checkout@v4

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2024 Meili SAS
3+
Copyright (c) 2019-2025 Meili SAS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

learn/resources/comparison_to_alternatives.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Can't find a client you'd like us to support? [Submit your idea or vote for it](
165165
|---|:---:|:----:|:---:|:---:|
166166
| Status page |||||
167167
| Free support channels | Instant messaging / chatbox (2-3h delay),<br /> emails, <br /> public Discord community, <br /> GitHub issues & discussions | Instant messaging / chatbox, <br /> public community forum | Instant messaging/chatbox (24h-48h delay),<br /> public Slack community, <br /> GitHub issues. | Public Slack community, <br /> public community forum,<br /> GitHub issues |
168-
| Paid support channels | _Support is free!_ | Emails | Emails, <br /> phone, <br /> private Slack | Web support, <br /> emails, <br /> phone |
168+
| Paid support channels | Slack Channel, emails, personalized support — whatever you need, we’ll be there! | Emails | Emails, <br /> phone, <br /> private Slack | Web support, <br /> emails, <br /> phone |
169169

170170
## Approach comparison
171171

reference/api/experimental_features.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ The experimental API route is not compatible with all experimental features. Con
2323
}
2424
```
2525

26-
| Name | Type | Description |
27-
| :------------------------ | :------ | :--------------------------------------------- |
28-
| **`metrics`** | Boolean | `true` if feature is active, `false` otherwise |
29-
| **`scoreDetails`** | Boolean | `true` if feature is active, `false` otherwise |
30-
| **`logsRoute`** | Boolean | `true` if feature is active, `false` otherwise |
31-
| **`vectorStore`** | Boolean | `true` if feature is active, `false` otherwise |
26+
| Name | Type | Description |
27+
| :---------------------------- | :------ | :--------------------------------------------- |
28+
| **`metrics`** | Boolean | `true` if feature is active, `false` otherwise |
29+
| **`logsRoute`** | Boolean | `true` if feature is active, `false` otherwise |
30+
| **`vectorStore`** | Boolean | `true` if feature is active, `false` otherwise |
31+
| **`containsFilter`** | Boolean | `true` if feature is active, `false` otherwise |
32+
| **`editDocumentsByFunction`** | Boolean | `true` if feature is active, `false` otherwise |
3233

3334
## Get all experimental features
3435

reference/api/multi_search.mdx

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ When both `facetsByIndex` and `mergeFacets` are present and not null, facet info
9595
{
9696
"hits": [ ],
9797
98-
"facetFederation": {
98+
"facetDistribution": {
9999
"ATTRIBUTE": {
100100
"VALUE": <Integer>,
101101
"VALUE": <Integer>
@@ -207,19 +207,14 @@ Federated search requests return a single object and the following fields:
207207

208208
| Name | Type | Description |
209209
| :----------------------- | :--------------- | :------------------------------------------------------------------------------- |
210-
| **`indexUid`** | String | [`uid`](/learn/getting_started/indexes#index-uid) of the requested index |
211210
| **`hits`** | Array of objects | Results of the query |
212211
| **`offset`** | Number | Number of documents skipped |
213212
| **`limit`** | Number | Number of documents to take |
214213
| **`estimatedTotalHits`** | Number | Estimated total number of matches |
215-
| **`totalHits`** | Number | Exhaustive total number of matches |
216-
| **`totalPages`** | Number | Exhaustive total number of search result pages |
217-
| **`hitsPerPage`** | Number | Number of results on each page |
218-
| **`page`** | Number | Current search results page |
219-
| **`facetDistribution`** | Object | **[Distribution of the given facets](/reference/api/search#facetdistribution)** |
220-
| **`facetStats`** | Object | [The numeric `min` and `max` values per facet](/reference/api/search#facetstats) |
221214
| **`processingTimeMs`** | Number | Processing time of the query |
222-
| **`query`** | String | Query originating the response |
215+
| **`facetsByIndex`** | Object | [Data for facets present in the search results](#facetsbyindex) |
216+
| **`facetDistribution`** | Object | [Distribution of the given facets](#mergefacets) |
217+
| **`facetStats`** | Object | [The numeric `min` and `max` values per facet](#mergefacets) |
223218

224219
Each result in the `hits` array contains an additional `_federation` field with the following fields:
225220

reference/api/search.mdx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ By default, [this endpoint returns a maximum of 1000 results](/learn/resources/k
5959
| **[`hybrid`](#hybrid-search-experimental)** | Object | `null` | Return results based on query keywords and meaning |
6060
| **[`vector`](#vector-experimental)** | Array of numbers | `null` | Search using a custom query vector |
6161
| **[`retrieveVectors`](#display-_vectors-in-response-experimental)** | Boolean | `false` | Return document vector data |
62-
| **[`locales`](#query-locales)** | Array of strings | `null` | Explicitly language used in a query |
62+
| **[`locales`](#query-locales)** | Array of strings | `null` | Explicitly specify languages used in a query |
6363

6464
[Learn more about how to use each search parameter](#search-parameters).
6565

@@ -173,7 +173,7 @@ By default, [this endpoint returns a maximum of 1000 results](/learn/resources/k
173173
| **[`hybrid`](#hybrid-search-experimental)** | Object | `null` | Return results based on query keywords and meaning |
174174
| **[`vector`](#vector-experimental)** | Array of numbers | `null` | Search using a custom query vector |
175175
| **[`retrieveVectors`](#display-_vectors-in-response-experimental)** | Boolean | `false` | Return document vector data |
176-
| **[`locales`](#query-locales)** | Array of strings | `null` | Explicitly language used in a query |
176+
| **[`locales`](#query-locales)** | Array of strings | `null` | Explicitly specify languages used in a query |
177177

178178
[Learn more about how to use each search parameter](#search-parameters).
179179

@@ -248,6 +248,7 @@ This is not necessary when using the `POST` route or one of our [SDKs](/learn/re
248248
| **[`page`](#page)** | Integer | `1` | Request a specific page of results |
249249
| **[`filter`](#filter)** | Array of strings | `null` | Filter queries by an attribute's value |
250250
| **[`facets`](#facets)** | Array of strings | `null` | Display the count of matches per facet |
251+
| **[`distinct`](#distinct-attributes-at-search-time)** | String | `null` | Restrict search to documents with unique values of the attribute defined as distinct. |
251252
| **[`attributesToRetrieve`](#attributes-to-retrieve)** | Array of strings | `["*"]` | Attributes to display in the returned documents |
252253
| **[`attributesToCrop`](#attributes-to-crop)** | Array of strings | `null` | Attributes whose values have to be cropped |
253254
| **[`cropLength`](#crop-length)** | Integer | `10` | Maximum length of cropped value in words |
@@ -263,7 +264,7 @@ This is not necessary when using the `POST` route or one of our [SDKs](/learn/re
263264
| **[`hybrid`](#hybrid-search-experimental)** | Object | `null` | Return results based on query keywords and meaning |
264265
| **[`vector`](#vector-experimental)** | Array of numbers | `null` | Search using a custom query vector |
265266
| **[`retrieveVectors`](#display-_vectors-in-response-experimental)** | Boolean | `false` | Return document vector data |
266-
| **[`locales`](#query-locales)** | Array of strings | `null` | Explicitly language used in a query |
267+
| **[`locales`](#query-locales)** | Array of strings | `null` | Explicitly specify languages used in a query |
267268

268269
### Query (q)
269270

reference/api/settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,7 @@ Update the localized attributes settings of an index.
908908

909909
You can use the returned `taskUid` to get more details on [the status of the task](/reference/api/tasks#get-one-task).
910910

911-
### Reset pagination settings
911+
### Reset localized attributes settings
912912

913913
<RouteHighlighter method="RESET" route="/indexes/{index_uid}/settings/localized-attributes"/>
914914

0 commit comments

Comments
 (0)