Skip to content

Commit c27282b

Browse files
algolia-botkai687millotpshortcuts
committed
chore: generated code for commit 156fd9e. [skip ci]
Co-authored-by: Kai Welke <[email protected]> Co-authored-by: Pierre Millot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 156fd9e commit c27282b

File tree

2,162 files changed

+44952
-30998
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,162 files changed

+44952
-30998
lines changed

clients/algoliasearch-client-csharp/algoliasearch/Clients/AbtestingClient.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ public interface IAbtestingClient
204204
/// <summary>
205205
/// List all A/B tests.
206206
/// </summary>
207-
/// <param name="offset">Position of the starting record. Used for paging. 0 is the first record. (optional, default to 0)</param>
208-
/// <param name="limit">Number of records to return (page size). (optional, default to 10)</param>
207+
/// <param name="offset">Position of the first item to return. (optional, default to 0)</param>
208+
/// <param name="limit">Number of items to return. (optional, default to 10)</param>
209209
/// <param name="indexPrefix">Only return A/B tests for indices starting with this prefix. (optional)</param>
210210
/// <param name="indexSuffix">Only return A/B tests for indices ending with this suffix. (optional)</param>
211211
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -219,8 +219,8 @@ public interface IAbtestingClient
219219
/// <summary>
220220
/// List all A/B tests. (Synchronous version)
221221
/// </summary>
222-
/// <param name="offset">Position of the starting record. Used for paging. 0 is the first record. (optional, default to 0)</param>
223-
/// <param name="limit">Number of records to return (page size). (optional, default to 10)</param>
222+
/// <param name="offset">Position of the first item to return. (optional, default to 0)</param>
223+
/// <param name="limit">Number of items to return. (optional, default to 10)</param>
224224
/// <param name="indexPrefix">Only return A/B tests for indices starting with this prefix. (optional)</param>
225225
/// <param name="indexSuffix">Only return A/B tests for indices ending with this suffix. (optional)</param>
226226
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -621,8 +621,8 @@ public ABTest GetABTest(int id, RequestOptions options = null, CancellationToken
621621
///
622622
/// Required API Key ACLs:
623623
/// - analytics
624-
/// <param name="offset">Position of the starting record. Used for paging. 0 is the first record. (optional, default to 0)</param>
625-
/// <param name="limit">Number of records to return (page size). (optional, default to 10)</param>
624+
/// <param name="offset">Position of the first item to return. (optional, default to 0)</param>
625+
/// <param name="limit">Number of items to return. (optional, default to 10)</param>
626626
/// <param name="indexPrefix">Only return A/B tests for indices starting with this prefix. (optional)</param>
627627
/// <param name="indexSuffix">Only return A/B tests for indices ending with this suffix. (optional)</param>
628628
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -650,8 +650,8 @@ public async Task<ListABTestsResponse> ListABTestsAsync(int? offset = default, i
650650
///
651651
/// Required API Key ACLs:
652652
/// - analytics
653-
/// <param name="offset">Position of the starting record. Used for paging. 0 is the first record. (optional, default to 0)</param>
654-
/// <param name="limit">Number of records to return (page size). (optional, default to 10)</param>
653+
/// <param name="offset">Position of the first item to return. (optional, default to 0)</param>
654+
/// <param name="limit">Number of items to return. (optional, default to 10)</param>
655655
/// <param name="indexPrefix">Only return A/B tests for indices starting with this prefix. (optional)</param>
656656
/// <param name="indexSuffix">Only return A/B tests for indices ending with this suffix. (optional)</param>
657657
/// <param name="options">Add extra http header or query parameters to Algolia.</param>

clients/algoliasearch-client-csharp/algoliasearch/Clients/AnalyticsClient.cs

Lines changed: 260 additions & 260 deletions
Large diffs are not rendered by default.

clients/algoliasearch-client-csharp/algoliasearch/Clients/RecommendClient.cs

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ public interface IRecommendClient
132132
/// <summary>
133133
/// Delete a [Recommend rule](https://www.algolia.com/doc/guides/algolia-recommend/how-to/rules/).
134134
/// </summary>
135-
/// <param name="indexName">Index on which to perform the request.</param>
135+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
136136
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
137-
/// <param name="objectID">Unique record (object) identifier.</param>
137+
/// <param name="objectID">Unique record identifier.</param>
138138
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
139139
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
140140
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -146,9 +146,9 @@ public interface IRecommendClient
146146
/// <summary>
147147
/// Delete a [Recommend rule](https://www.algolia.com/doc/guides/algolia-recommend/how-to/rules/). (Synchronous version)
148148
/// </summary>
149-
/// <param name="indexName">Index on which to perform the request.</param>
149+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
150150
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
151-
/// <param name="objectID">Unique record (object) identifier.</param>
151+
/// <param name="objectID">Unique record identifier.</param>
152152
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
153153
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
154154
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -160,9 +160,9 @@ public interface IRecommendClient
160160
/// <summary>
161161
/// Return a [Recommend rule](https://www.algolia.com/doc/guides/algolia-recommend/how-to/rules/).
162162
/// </summary>
163-
/// <param name="indexName">Index on which to perform the request.</param>
163+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
164164
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
165-
/// <param name="objectID">Unique record (object) identifier.</param>
165+
/// <param name="objectID">Unique record identifier.</param>
166166
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
167167
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
168168
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -174,9 +174,9 @@ public interface IRecommendClient
174174
/// <summary>
175175
/// Return a [Recommend rule](https://www.algolia.com/doc/guides/algolia-recommend/how-to/rules/). (Synchronous version)
176176
/// </summary>
177-
/// <param name="indexName">Index on which to perform the request.</param>
177+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
178178
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
179-
/// <param name="objectID">Unique record (object) identifier.</param>
179+
/// <param name="objectID">Unique record identifier.</param>
180180
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
181181
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
182182
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -188,7 +188,7 @@ public interface IRecommendClient
188188
/// <summary>
189189
/// Some operations, such as deleting a Recommend rule, will respond with a `taskID` value. Use this value here to check the status of that task.
190190
/// </summary>
191-
/// <param name="indexName">Index on which to perform the request.</param>
191+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
192192
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
193193
/// <param name="taskID">Unique identifier of a task. Numeric value (up to 64bits).</param>
194194
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -202,7 +202,7 @@ public interface IRecommendClient
202202
/// <summary>
203203
/// Some operations, such as deleting a Recommend rule, will respond with a `taskID` value. Use this value here to check the status of that task. (Synchronous version)
204204
/// </summary>
205-
/// <param name="indexName">Index on which to perform the request.</param>
205+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
206206
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
207207
/// <param name="taskID">Unique identifier of a task. Numeric value (up to 64bits).</param>
208208
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -240,7 +240,7 @@ public interface IRecommendClient
240240
/// <summary>
241241
/// List [Recommend rules](https://www.algolia.com/doc/guides/algolia-recommend/how-to/rules/).
242242
/// </summary>
243-
/// <param name="indexName">Index on which to perform the request.</param>
243+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
244244
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
245245
/// <param name="searchRecommendRulesParams"> (optional)</param>
246246
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -254,7 +254,7 @@ public interface IRecommendClient
254254
/// <summary>
255255
/// List [Recommend rules](https://www.algolia.com/doc/guides/algolia-recommend/how-to/rules/). (Synchronous version)
256256
/// </summary>
257-
/// <param name="indexName">Index on which to perform the request.</param>
257+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
258258
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
259259
/// <param name="searchRecommendRulesParams"> (optional)</param>
260260
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -505,9 +505,9 @@ public object CustomPut(string path, Dictionary<string, object> parameters = def
505505
///
506506
/// Required API Key ACLs:
507507
/// - editSettings
508-
/// <param name="indexName">Index on which to perform the request.</param>
508+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
509509
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
510-
/// <param name="objectID">Unique record (object) identifier.</param>
510+
/// <param name="objectID">Unique record identifier.</param>
511511
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
512512
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
513513
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -541,9 +541,9 @@ public async Task<DeletedAtResponse> DeleteRecommendRuleAsync(string indexName,
541541
///
542542
/// Required API Key ACLs:
543543
/// - editSettings
544-
/// <param name="indexName">Index on which to perform the request.</param>
544+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
545545
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
546-
/// <param name="objectID">Unique record (object) identifier.</param>
546+
/// <param name="objectID">Unique record identifier.</param>
547547
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
548548
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
549549
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -560,9 +560,9 @@ public DeletedAtResponse DeleteRecommendRule(string indexName, RecommendModels m
560560
///
561561
/// Required API Key ACLs:
562562
/// - settings
563-
/// <param name="indexName">Index on which to perform the request.</param>
563+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
564564
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
565-
/// <param name="objectID">Unique record (object) identifier.</param>
565+
/// <param name="objectID">Unique record identifier.</param>
566566
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
567567
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
568568
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -596,9 +596,9 @@ public async Task<RuleResponse> GetRecommendRuleAsync(string indexName, Recommen
596596
///
597597
/// Required API Key ACLs:
598598
/// - settings
599-
/// <param name="indexName">Index on which to perform the request.</param>
599+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
600600
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
601-
/// <param name="objectID">Unique record (object) identifier.</param>
601+
/// <param name="objectID">Unique record identifier.</param>
602602
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
603603
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
604604
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -615,7 +615,7 @@ public RuleResponse GetRecommendRule(string indexName, RecommendModels model, st
615615
///
616616
/// Required API Key ACLs:
617617
/// - editSettings
618-
/// <param name="indexName">Index on which to perform the request.</param>
618+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
619619
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
620620
/// <param name="taskID">Unique identifier of a task. Numeric value (up to 64bits).</param>
621621
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -648,7 +648,7 @@ public async Task<GetRecommendTaskResponse> GetRecommendStatusAsync(string index
648648
///
649649
/// Required API Key ACLs:
650650
/// - editSettings
651-
/// <param name="indexName">Index on which to perform the request.</param>
651+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
652652
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
653653
/// <param name="taskID">Unique identifier of a task. Numeric value (up to 64bits).</param>
654654
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -712,7 +712,7 @@ public GetRecommendationsResponse GetRecommendations(GetRecommendationsParams ge
712712
///
713713
/// Required API Key ACLs:
714714
/// - settings
715-
/// <param name="indexName">Index on which to perform the request.</param>
715+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
716716
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
717717
/// <param name="searchRecommendRulesParams"> (optional)</param>
718718
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -745,7 +745,7 @@ public async Task<SearchRecommendRulesResponse> SearchRecommendRulesAsync(string
745745
///
746746
/// Required API Key ACLs:
747747
/// - settings
748-
/// <param name="indexName">Index on which to perform the request.</param>
748+
/// <param name="indexName">Name of the index on which to perform the operation.</param>
749749
/// <param name="model">[Recommend models](https://www.algolia.com/doc/guides/algolia-recommend/overview/#recommend-models). </param>
750750
/// <param name="searchRecommendRulesParams"> (optional)</param>
751751
/// <param name="options">Add extra http header or query parameters to Algolia.</param>

0 commit comments

Comments
 (0)