Skip to content

Commit e4b6e6d

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 a4fc405 commit e4b6e6d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

algoliasearch/Clients/IngestionClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,7 @@ WatchResponse PushTask(
17891789
);
17901790

17911791
/// <summary>
1792-
/// Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per task.
1792+
/// Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools sources. Creates one run per task.
17931793
/// </summary>
17941794
///
17951795
/// Required API Key ACLs:
@@ -1812,7 +1812,7 @@ Task<RunSourceResponse> RunSourceAsync(
18121812
);
18131813

18141814
/// <summary>
1815-
/// Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per task. (Synchronous version)
1815+
/// Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools sources. Creates one run per task. (Synchronous version)
18161816
/// </summary>
18171817
///
18181818
/// Required API Key ACLs:

algoliasearch/Models/Ingestion/RunSourcePayload.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,23 @@ public partial class RunSourcePayload
2828
public RunSourcePayload() { }
2929

3030
/// <summary>
31-
/// List of index names to include in reidexing/update.
31+
/// List of index names to include in reindex/update.
3232
/// </summary>
33-
/// <value>List of index names to include in reidexing/update.</value>
33+
/// <value>List of index names to include in reindex/update.</value>
3434
[JsonPropertyName("indexToInclude")]
3535
public List<string> IndexToInclude { get; set; }
3636

3737
/// <summary>
38-
/// List of index names to exclude in reidexing/update.
38+
/// List of index names to exclude in reindex/update.
3939
/// </summary>
40-
/// <value>List of index names to exclude in reidexing/update.</value>
40+
/// <value>List of index names to exclude in reindex/update.</value>
4141
[JsonPropertyName("indexToExclude")]
4242
public List<string> IndexToExclude { get; set; }
4343

4444
/// <summary>
45-
/// List of entityID to update.
45+
/// List of entityIDs to update.
4646
/// </summary>
47-
/// <value>List of entityID to update.</value>
47+
/// <value>List of entityIDs to update.</value>
4848
[JsonPropertyName("entityIDs")]
4949
public List<string> EntityIDs { get; set; }
5050

0 commit comments

Comments
 (0)