Skip to content

Commit 1c158c5

Browse files
fix(specs): update sourceRun docs (generated)
algolia/api-clients-automation#5057 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Devin Beeuwkes <[email protected]>
1 parent 4ae2f47 commit 1c158c5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

client/src/commonMain/kotlin/com/algolia/client/api/IngestionClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

client/src/commonMain/kotlin/com/algolia/client/model/ingestion/RunSourcePayload.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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
1616
public 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,

0 commit comments

Comments
 (0)