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: clients/algoliasearch-client-csharp/algoliasearch/Utils/SearchClientExtensions.cs
+13-7
Original file line number
Diff line number
Diff line change
@@ -140,11 +140,12 @@ public partial interface ISearchClient
140
140
/// <param name="indexName">The index in which to perform the request.</param>
141
141
/// <param name="objects">The list of `objects` to store in the given Algolia `indexName`.</param>
142
142
/// <param name="batchSize">The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.</param>
143
+
/// <param name="scopes"> The `scopes` to keep from the index. Defaults to ['settings', 'rules', 'synonyms'].</param>
143
144
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
144
145
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
Copy file name to clipboardexpand all lines: clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/extensions/SearchClient.kt
+4-2
Original file line number
Diff line number
Diff line change
@@ -462,12 +462,14 @@ public suspend fun SearchClient.partialUpdateObjects(
462
462
* @param indexName The index in which to perform the request.
463
463
* @param objects The list of objects to replace.
464
464
* @param batchSize The size of the batch. Default is 1000.
465
+
* @param scopes The `scopes` to keep from the index. Defaults to ['settings', 'rules', 'synonyms'].
465
466
* @return responses from the three-step operations: copy, batch, move.
0 commit comments