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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -189,15 +189,15 @@ index.search(
189
189
],
190
190
"offset": 0,
191
191
"limit": 20,
192
-
"nbHits": 1,
192
+
"estimatedTotalHits": 1,
193
193
"processingTimeMs": 0,
194
194
"query": "wonder"
195
195
}
196
196
```
197
197
198
198
## 🤖 Compatibility with Meilisearch
199
199
200
-
This package only guarantees the compatibility with the [version v0.27.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.27.0).
200
+
This package only guarantees the compatibility with the [version v0.28.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.28.0).
parameters accepted by the get indexes route: https://docs.meilisearch.com/reference/api/indexes.html#list-all-indexes
90
+
84
91
Returns
85
92
-------
86
93
indexes:
87
-
List of Index instances.
94
+
Dictionary with limit, offset, total and results a list of Index instances.
88
95
89
96
Raises
90
97
------
91
98
MeiliSearchApiError
92
99
An error containing details about why Meilisearch can't process your request. Meilisearch error codes are described here: https://docs.meilisearch.com/errors/#meilisearch-errors
parameters accepted by the get indexes route: https://docs.meilisearch.com/reference/api/indexes.html#list-all-indexes
125
+
110
126
Returns
111
127
-------
112
128
indexes:
113
-
List of indexes in dictionary format. (e.g [{ 'uid': 'movies' 'primaryKey': 'objectID' }])
129
+
Dictionary with limit, offset, total and results a list of indexes in dictionary format. (e.g [{ 'uid': 'movies' 'primaryKey': 'objectID' }])
114
130
115
131
Raises
116
132
------
117
133
MeiliSearchApiError
118
134
An error containing details about why Meilisearch can't process your request. Meilisearch error codes are described here: https://docs.meilisearch.com/errors/#meilisearch-errors
An error containing details about why Meilisearch can't process your request. Meilisearch error codes are described here: https://docs.meilisearch.com/errors/#meilisearch-errors
An error containing details about why Meilisearch can't process your request. Meilisearch error codes are described here: https://docs.meilisearch.com/errors/#meilisearch-errors
The key or the uid of the key for which to update the information.
301
330
options:
302
331
The information to use in creating the key (ex: { 'description': 'Search Key', 'expiresAt': '22-01-01' }). Note that if an
303
332
expires_at value is included it should be in UTC time.
@@ -313,16 +342,16 @@ def update_key(
313
342
MeiliSearchApiError
314
343
An error containing details about why Meilisearch can't process your request. Meilisearch error codes are described here: https://docs.meilisearch.com/errors/#meilisearch-errors
An error containing details about why Meilisearch can't process your request. Meilisearch error codes are described here: https://docs.meilisearch.com/errors/#meilisearch-errors
An error containing details about why Meilisearch can't process your request. Meilisearch error codes are described here: https://docs.meilisearch.com/errors/#meilisearch-errors
parameters accepted by the get tasks route: https://docs.meilisearch.com/reference/api/tasks.html#get-all-tasks.
422
+
`indexUid` should be set as a List.
411
423
412
424
Returns
413
425
-------
414
426
task:
415
-
Dictionary containing a list of all enqueued, processing, succeeded or failed tasks.
427
+
Dictionary with limit, from, next and results containing a list of all enqueued, processing, succeeded or failed tasks.
416
428
417
429
Raises
418
430
------
419
431
MeiliSearchApiError
420
432
An error containing details about why Meilisearch can't process your request. Meilisearch error codes are described here: https://docs.meilisearch.com/errors/#meilisearch-errors
0 commit comments