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 <[email protected]>
Co-authored-by: Kai Welke <[email protected]>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
3 people committed Sep 2, 2024
1 parent f82c3db commit 6c62647
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/client-insights/src/insightsClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export function createInsightsClient({
},

/**
* 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.
*
* @param deleteUserToken - The deleteUserToken object.
* @param deleteUserToken.userToken - User token for which to delete all associated events.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export function createQuerySuggestionsClient({
},

/**
* 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.
*
* Required API Key ACLs:
* - editSettings.
Expand Down
8 changes: 4 additions & 4 deletions packages/client-usage/model/clientMethodProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ export type GetIndexUsageProps = {
*/
indexName: string;
/**
* Start date of the period to analyze, in `YYYY-MM-DD` format.
* Start date of the period to analyze, in RFC 3339 format.
*/
startDate: string;
/**
* End date of the period to analyze, in `YYYY-MM-DD` format.
* End date of the period to analyze, in RFC 3339 format.
*/
endDate: string;
/**
Expand All @@ -102,11 +102,11 @@ export type GetUsageProps = {
*/
statistic: Statistic;
/**
* Start date of the period to analyze, in `YYYY-MM-DD` format.
* Start date of the period to analyze, in RFC 3339 format.
*/
startDate: string;
/**
* End date of the period to analyze, in `YYYY-MM-DD` format.
* End date of the period to analyze, in RFC 3339 format.
*/
endDate: string;
/**
Expand Down
Loading

0 comments on commit 6c62647

Please sign in to comment.