File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
client/src/commonMain/kotlin/com/algolia/client Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -988,7 +988,7 @@ public class IngestionClient(
988988 }
989989
990990 /* *
991- * Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per task.
991+ * Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools sources. Creates one run per task.
992992 *
993993 * Required API Key ACLs:
994994 * - addObject
Original file line number Diff line number Diff line change @@ -7,21 +7,21 @@ import kotlinx.serialization.json.*
77/* *
88 * RunSourcePayload
99 *
10- * @param indexToInclude List of index names to include in reidexing /update.
11- * @param indexToExclude List of index names to exclude in reidexing /update.
12- * @param entityIDs List of entityID to update.
10+ * @param indexToInclude List of index names to include in reindex /update.
11+ * @param indexToExclude List of index names to exclude in reindex /update.
12+ * @param entityIDs List of entityIDs to update.
1313 * @param entityType
1414 */
1515@Serializable
1616public data class RunSourcePayload (
1717
18- /* * List of index names to include in reidexing /update. */
18+ /* * List of index names to include in reindex /update. */
1919 @SerialName(value = " indexToInclude" ) val indexToInclude : List <String >? = null ,
2020
21- /* * List of index names to exclude in reidexing /update. */
21+ /* * List of index names to exclude in reindex /update. */
2222 @SerialName(value = " indexToExclude" ) val indexToExclude : List <String >? = null ,
2323
24- /* * List of entityID to update. */
24+ /* * List of entityIDs to update. */
2525 @SerialName(value = " entityIDs" ) val entityIDs : List <String >? = null ,
2626
2727 @SerialName(value = " entityType" ) val entityType : EntityType ? = null ,
You can’t perform that action at this time.
0 commit comments