Skip to content

Commit

Permalink
fix(specs): usage api (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#3624

Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Kai Welke <kai.welke@algolia.com>
Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
  • Loading branch information
3 people committed Sep 2, 2024
1 parent b448e36 commit c443b5c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 31 deletions.
8 changes: 4 additions & 4 deletions algoliasearch/Clients/InsightsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public interface IInsightsClient
object CustomPut(string path, Dictionary<string, object> parameters = default, object body = default, RequestOptions options = null, CancellationToken cancellationToken = default);

/// <summary>
/// Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see [Delete a user profile](/specs/personalization#tag/profiles/operation/deleteUserProfile).
/// Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see `Delete a user profile` in the Personalization API.
/// </summary>
/// <param name="userToken">User token for which to delete all associated events.</param>
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
Expand All @@ -142,7 +142,7 @@ public interface IInsightsClient
Task DeleteUserTokenAsync(string userToken, RequestOptions options = null, CancellationToken cancellationToken = default);

/// <summary>
/// Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see [Delete a user profile](/specs/personalization#tag/profiles/operation/deleteUserProfile). (Synchronous version)
/// Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see `Delete a user profile` in the Personalization API. (Synchronous version)
/// </summary>
/// <param name="userToken">User token for which to delete all associated events.</param>
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
Expand Down Expand Up @@ -412,7 +412,7 @@ public object CustomPut(string path, Dictionary<string, object> parameters = def


/// <summary>
/// Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see [Delete a user profile](/specs/personalization#tag/profiles/operation/deleteUserProfile).
/// Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see `Delete a user profile` in the Personalization API.
/// </summary>
/// <param name="userToken">User token for which to delete all associated events.</param>
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
Expand All @@ -436,7 +436,7 @@ public async Task DeleteUserTokenAsync(string userToken, RequestOptions options


/// <summary>
/// Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see [Delete a user profile](/specs/personalization#tag/profiles/operation/deleteUserProfile). (Synchronous version)
/// Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see `Delete a user profile` in the Personalization API. (Synchronous version)
/// </summary>
/// <param name="userToken">User token for which to delete all associated events.</param>
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
Expand Down
8 changes: 4 additions & 4 deletions algoliasearch/Clients/QuerySuggestionsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public interface IQuerySuggestionsClient
object CustomPut(string path, Dictionary<string, object> parameters = default, object body = default, RequestOptions options = null, CancellationToken cancellationToken = default);

/// <summary>
/// Deletes a Query Suggestions configuration. Deleting only removes the configuration and stops updates to the Query Suggestions index. To delete the Query Suggestions index itself, use the Search API and the [Delete an index](/specs/search#tag/Indices/operation/deleteIndex) operation.
/// Deletes a Query Suggestions configuration. Deleting only removes the configuration and stops updates to the Query Suggestions index. To delete the Query Suggestions index itself, use the Search API and the `Delete an index` operation.
/// </summary>
/// <param name="indexName">Query Suggestions index name.</param>
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
Expand All @@ -166,7 +166,7 @@ public interface IQuerySuggestionsClient
Task<BaseResponse> DeleteConfigAsync(string indexName, RequestOptions options = null, CancellationToken cancellationToken = default);

/// <summary>
/// Deletes a Query Suggestions configuration. Deleting only removes the configuration and stops updates to the Query Suggestions index. To delete the Query Suggestions index itself, use the Search API and the [Delete an index](/specs/search#tag/Indices/operation/deleteIndex) operation. (Synchronous version)
/// Deletes a Query Suggestions configuration. Deleting only removes the configuration and stops updates to the Query Suggestions index. To delete the Query Suggestions index itself, use the Search API and the `Delete an index` operation. (Synchronous version)
/// </summary>
/// <param name="indexName">Query Suggestions index name.</param>
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
Expand Down Expand Up @@ -576,7 +576,7 @@ public object CustomPut(string path, Dictionary<string, object> parameters = def


/// <summary>
/// Deletes a Query Suggestions configuration. Deleting only removes the configuration and stops updates to the Query Suggestions index. To delete the Query Suggestions index itself, use the Search API and the [Delete an index](/specs/search#tag/Indices/operation/deleteIndex) operation.
/// Deletes a Query Suggestions configuration. Deleting only removes the configuration and stops updates to the Query Suggestions index. To delete the Query Suggestions index itself, use the Search API and the `Delete an index` operation.
/// </summary>
///
/// Required API Key ACLs:
Expand All @@ -603,7 +603,7 @@ public async Task<BaseResponse> DeleteConfigAsync(string indexName, RequestOptio


/// <summary>
/// Deletes a Query Suggestions configuration. Deleting only removes the configuration and stops updates to the Query Suggestions index. To delete the Query Suggestions index itself, use the Search API and the [Delete an index](/specs/search#tag/Indices/operation/deleteIndex) operation. (Synchronous version)
/// Deletes a Query Suggestions configuration. Deleting only removes the configuration and stops updates to the Query Suggestions index. To delete the Query Suggestions index itself, use the Search API and the `Delete an index` operation. (Synchronous version)
/// </summary>
///
/// Required API Key ACLs:
Expand Down
Loading

0 comments on commit c443b5c

Please sign in to comment.