@@ -139,6 +139,7 @@ def get_tasks(self, parameters: Optional[Dict[str, Any]] = None) -> TaskResults:
139
139
140
140
Returns
141
141
-------
142
+ tasks:
142
143
TaskResults instance with attributes:
143
144
- from_
144
145
- next_
@@ -168,7 +169,7 @@ def get_task(self, uid: int) -> Task:
168
169
169
170
Returns
170
171
-------
171
- Task :
172
+ task :
172
173
Task instance containing information about the processed asynchronous task of an index.
173
174
174
175
Raises
@@ -197,7 +198,7 @@ def wait_for_task(
197
198
198
199
Returns
199
200
-------
200
- Task :
201
+ task :
201
202
Task instance containing information about the processed asynchronous task.
202
203
203
204
Raises
@@ -216,7 +217,7 @@ def get_stats(self) -> IndexStats:
216
217
217
218
Returns
218
219
-------
219
- IndexStats :
220
+ stats :
220
221
IndexStats instance containing information about the given index.
221
222
222
223
Raises
@@ -273,7 +274,7 @@ def get_document(self, document_id: str, parameters: Optional[Dict[str, Any]] =
273
274
274
275
Returns
275
276
-------
276
- Document :
277
+ document :
277
278
Document instance containing the documents information.
278
279
279
280
Raises
@@ -301,6 +302,7 @@ def get_documents(self, parameters: Optional[Dict[str, Any]] = None) -> Document
301
302
302
303
Returns
303
304
-------
305
+ documents:
304
306
DocumentsResults instance with attributes:
305
307
- total
306
308
- offset
@@ -338,7 +340,7 @@ def add_documents(
338
340
339
341
Returns
340
342
-------
341
- TaskInfo :
343
+ task_info :
342
344
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
343
345
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
344
346
@@ -370,7 +372,7 @@ def add_documents_in_batches(
370
372
371
373
Returns
372
374
-------
373
- TaskInfo (list) :
375
+ tasks_info :
374
376
List of TaskInfo instances containing information about a task to track the progress of an asynchronous process.
375
377
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
376
378
@@ -405,7 +407,7 @@ def add_documents_json(
405
407
406
408
Returns
407
409
-------
408
- TaskInfo :
410
+ task_info :
409
411
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
410
412
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
411
413
@@ -432,7 +434,7 @@ def add_documents_csv(
432
434
433
435
Returns
434
436
-------
435
- TaskInfo :
437
+ task_info :
436
438
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
437
439
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
438
440
@@ -459,7 +461,7 @@ def add_documents_ndjson(
459
461
460
462
Returns
461
463
-------
462
- TaskInfo :
464
+ task_info :
463
465
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
464
466
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
465
467
@@ -489,7 +491,7 @@ def add_documents_raw(
489
491
490
492
Returns
491
493
-------
492
- TaskInfo :
494
+ task_info :
493
495
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
494
496
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
495
497
@@ -518,7 +520,7 @@ def update_documents(
518
520
519
521
Returns
520
522
-------
521
- TaskInfo :
523
+ task_info :
522
524
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
523
525
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
524
526
@@ -550,7 +552,7 @@ def update_documents_in_batches(
550
552
551
553
Returns
552
554
-------
553
- TaskInfo (list) :
555
+ tasks_info :
554
556
List of TaskInfo instances containing information about a task to track the progress of an asynchronous process.
555
557
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
556
558
@@ -579,7 +581,7 @@ def delete_document(self, document_id: str) -> TaskInfo:
579
581
580
582
Returns
581
583
-------
582
- TaskInfo :
584
+ task_info :
583
585
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
584
586
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
585
587
@@ -603,7 +605,7 @@ def delete_documents(self, ids: List[str]) -> TaskInfo:
603
605
604
606
Returns
605
607
-------
606
- TaskInfo :
608
+ task_info :
607
609
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
608
610
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
609
611
@@ -623,7 +625,7 @@ def delete_all_documents(self) -> TaskInfo:
623
625
624
626
Returns
625
627
-------
626
- TaskInfo :
628
+ task_info :
627
629
TaskInfo instance containing information about a task to track the progress of an asynchronous process.
628
630
https://docs.meilisearch.com/reference/api/tasks.html#get-one-task
629
631
0 commit comments