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-kotlin/client/src/commonMain/kotlin/com/algolia/client/extensions/SearchClient.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -377,7 +377,7 @@ public suspend fun SearchClient.chunkedBatch(
377
377
publicsuspendfun SearchClient.saveObjects(
378
378
indexName:String,
379
379
objects:List<JsonObject>,
380
-
waitForTask:Boolean? = false,
380
+
waitForTask:Boolean = false,
381
381
requestOptions:RequestOptions? = null,
382
382
): List<BatchResponse> {
383
383
returnthis.chunkedBatch(
@@ -403,7 +403,7 @@ public suspend fun SearchClient.saveObjects(
403
403
publicsuspendfun SearchClient.deleteObjects(
404
404
indexName:String,
405
405
objectIDs:List<String>,
406
-
waitForTask:Boolean? = false,
406
+
waitForTask:Boolean = false,
407
407
requestOptions:RequestOptions? = null,
408
408
): List<BatchResponse> {
409
409
returnthis.chunkedBatch(
@@ -431,7 +431,7 @@ public suspend fun SearchClient.partialUpdateObjects(
0 commit comments