Skip to content

Commit 3e07f88

Browse files
algolia-botSamuel Bodin
and
Samuel Bodin
committed
chore: generated code for commit f8cee69. [skip ci]
Co-authored-by: Samuel Bodin <[email protected]>
1 parent f8cee69 commit 3e07f88

File tree

17 files changed

+213
-149
lines changed

17 files changed

+213
-149
lines changed

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/PersonalizationClient.java

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,11 @@ private Call deleteUserProfileValidateBeforeCall(
223223
}
224224

225225
/**
226-
* Returns, as part of the response, a date until which the data can safely be considered as
227-
* deleted for the given user. This means that if you send events for the given user before this
228-
* date, they will be ignored. Any data received after the deletedUntil date will start building a
229-
* new user profile. It might take a couple hours before for the deletion request to be fully
230-
* processed.
226+
* Delete the user profile and all its associated data. Returns, as part of the response, a date
227+
* until which the data can safely be considered as deleted for the given user. This means if you
228+
* send events for the given user before this date, they will be ignored. Any data received after
229+
* the deletedUntil date will start building a new user profile. It might take a couple hours for
230+
* the deletion request to be fully processed.
231231
*
232232
* @param userToken userToken representing the user for which to fetch the Personalization
233233
* profile. (required)
@@ -250,11 +250,11 @@ public DeleteUserProfileResponse deleteUserProfile(String userToken)
250250
}
251251

252252
/**
253-
* (asynchronously) Returns, as part of the response, a date until which the data can safely be
254-
* considered as deleted for the given user. This means that if you send events for the given user
255-
* before this date, they will be ignored. Any data received after the deletedUntil date will
256-
* start building a new user profile. It might take a couple hours before for the deletion request
257-
* to be fully processed.
253+
* (asynchronously) Delete the user profile and all its associated data. Returns, as part of the
254+
* response, a date until which the data can safely be considered as deleted for the given user.
255+
* This means if you send events for the given user before this date, they will be ignored. Any
256+
* data received after the deletedUntil date will start building a new user profile. It might take
257+
* a couple hours for the deletion request to be fully processed.
258258
*
259259
* @param userToken userToken representing the user for which to fetch the Personalization
260260
* profile. (required)
@@ -508,10 +508,11 @@ private Call getUserTokenProfileValidateBeforeCall(
508508
}
509509

510510
/**
511-
* The profile is structured by facet name used in the strategy. Each facet value is mapped to its
512-
* score. Each score represents the user affinity for a specific facet value given the userToken
513-
* past events and the Personalization strategy defined. Scores are bounded to 20. The last
514-
* processed event timestamp is provided using the ISO 8601 format for debugging purposes.
511+
* Get the user profile built from Personalization strategy. The profile is structured by facet
512+
* name used in the strategy. Each facet value is mapped to its score. Each score represents the
513+
* user affinity for a specific facet value given the userToken past events and the
514+
* Personalization strategy defined. Scores are bounded to 20. The last processed event timestamp
515+
* is provided using the ISO 8601 format for debugging purposes.
515516
*
516517
* @param userToken userToken representing the user for which to fetch the Personalization
517518
* profile. (required)
@@ -534,11 +535,11 @@ public GetUserTokenResponse getUserTokenProfile(String userToken)
534535
}
535536

536537
/**
537-
* (asynchronously) The profile is structured by facet name used in the strategy. Each facet value
538-
* is mapped to its score. Each score represents the user affinity for a specific facet value
539-
* given the userToken past events and the Personalization strategy defined. Scores are bounded to
540-
* 20. The last processed event timestamp is provided using the ISO 8601 format for debugging
541-
* purposes.
538+
* (asynchronously) Get the user profile built from Personalization strategy. The profile is
539+
* structured by facet name used in the strategy. Each facet value is mapped to its score. Each
540+
* score represents the user affinity for a specific facet value given the userToken past events
541+
* and the Personalization strategy defined. Scores are bounded to 20. The last processed event
542+
* timestamp is provided using the ISO 8601 format for debugging purposes.
542543
*
543544
* @param userToken userToken representing the user for which to fetch the Personalization
544545
* profile. (required)

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/RecommendClient.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ private Call getRecommendationsValidateBeforeCall(
358358
}
359359

360360
/**
361-
* Returns recommendations for a specific model and objectID.
361+
* Returns recommendations or trending results, for a specific model and `objectID`.
362362
*
363363
* @param getRecommendationsParams (required)
364364
* @return GetRecommendationsResponse
@@ -385,7 +385,8 @@ public GetRecommendationsResponse getRecommendations(
385385
}
386386

387387
/**
388-
* (asynchronously) Returns recommendations for a specific model and objectID.
388+
* (asynchronously) Returns recommendations or trending results, for a specific model and
389+
* &#x60;objectID&#x60;.
389390
*
390391
* @param getRecommendationsParams (required)
391392
* @param callback The callback to be executed when the API call finishes

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/model/personalization/DeleteUserProfileResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public DeleteUserProfileResponse setDeletedUntil(String deletedUntil) {
3434

3535
/**
3636
* A date until which the data can safely be considered as deleted for the given user. Any data
37-
* received after the deletedUntil date will start building a new user profile.
37+
* received after the `deletedUntil` date will start building a new user profile.
3838
*
3939
* @return deletedUntil
4040
*/

clients/algoliasearch-client-javascript/packages/client-personalization/model/deleteUserProfileResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export type DeleteUserProfileResponse = {
44
*/
55
userToken: string;
66
/**
7-
* A date until which the data can safely be considered as deleted for the given user. Any data received after the deletedUntil date will start building a new user profile.
7+
* A date until which the data can safely be considered as deleted for the given user. Any data received after the `deletedUntil` date will start building a new user profile.
88
*/
99
deletedUntil: string;
1010
};

clients/algoliasearch-client-javascript/packages/client-personalization/src/personalizationClient.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ export function createPersonalizationClient(
9797
},
9898

9999
/**
100-
* Returns, as part of the response, a date until which the data can safely be considered as deleted for the given user. This means that if you send events for the given user before this date, they will be ignored. Any data received after the deletedUntil date will start building a new user profile. It might take a couple hours before for the deletion request to be fully processed.
100+
* Delete the user profile and all its associated data. Returns, as part of the response, a date until which the data can safely be considered as deleted for the given user. This means if you send events for the given user before this date, they will be ignored. Any data received after the deletedUntil date will start building a new user profile. It might take a couple hours for the deletion request to be fully processed.
101101
*
102-
* @summary Delete the user profile and all its associated data.
102+
* @summary Delete a user profile.
103103
* @param deleteUserProfile - The deleteUserProfile object.
104104
* @param deleteUserProfile.userToken - UserToken representing the user for which to fetch the Personalization profile.
105105
*/
@@ -173,7 +173,7 @@ export function createPersonalizationClient(
173173
/**
174174
* The strategy contains information on the events and facets that impact user profiles and personalized search results.
175175
*
176-
* @summary Get the current personalization strategy.
176+
* @summary Get the current strategy.
177177
*/
178178
getPersonalizationStrategy(
179179
requestOptions?: RequestOptions
@@ -198,9 +198,9 @@ export function createPersonalizationClient(
198198
},
199199

200200
/**
201-
* The profile is structured by facet name used in the strategy. Each facet value is mapped to its score. Each score represents the user affinity for a specific facet value given the userToken past events and the Personalization strategy defined. Scores are bounded to 20. The last processed event timestamp is provided using the ISO 8601 format for debugging purposes.
201+
* Get the user profile built from Personalization strategy. The profile is structured by facet name used in the strategy. Each facet value is mapped to its score. Each score represents the user affinity for a specific facet value given the userToken past events and the Personalization strategy defined. Scores are bounded to 20. The last processed event timestamp is provided using the ISO 8601 format for debugging purposes.
202202
*
203-
* @summary Get the user profile built from Personalization strategy.
203+
* @summary Get a user profile.
204204
* @param getUserTokenProfile - The getUserTokenProfile object.
205205
* @param getUserTokenProfile.userToken - UserToken representing the user for which to fetch the Personalization profile.
206206
*/
@@ -313,7 +313,7 @@ export function createPersonalizationClient(
313313
/**
314314
* A strategy defines the events and facets that impact user profiles and personalized search results.
315315
*
316-
* @summary Set a new personalization strategy.
316+
* @summary Set a new strategy.
317317
* @param personalizationStrategyParams - The personalizationStrategyParams object.
318318
*/
319319
setPersonalizationStrategy(

clients/algoliasearch-client-javascript/packages/client-query-suggestions/src/querySuggestionsClient.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export function createQuerySuggestionsClient(
6666
/**
6767
* Create a configuration of a Query Suggestions index. There\'s a limit of 100 configurations per application.
6868
*
69-
* @summary Create a configuration of a Query Suggestions index.
69+
* @summary Create a configuration.
7070
* @param querySuggestionsIndexWithIndexParam - The querySuggestionsIndexWithIndexParam object.
7171
*/
7272
createConfig(
@@ -137,7 +137,7 @@ export function createQuerySuggestionsClient(
137137
/**
138138
* Delete a configuration of a Query Suggestion\'s index. By deleting a configuraton, you stop all updates to the underlying query suggestion index. Note that when doing this, the underlying index does not change - existing suggestions remain untouched.
139139
*
140-
* @summary Delete a configuration of a Query Suggestion\'s index.
140+
* @summary Delete a configuration.
141141
* @param deleteConfig - The deleteConfig object.
142142
* @param deleteConfig.indexName - The index in which to perform the request.
143143
*/
@@ -211,7 +211,7 @@ export function createQuerySuggestionsClient(
211211
/**
212212
* Get all the configurations of Query Suggestions. For each index, you get a block of JSON with a list of its configuration settings.
213213
*
214-
* @summary Get all the configurations of Query Suggestions.
214+
* @summary List configurations.
215215
*/
216216
getAllConfigs(
217217
requestOptions?: RequestOptions
@@ -238,7 +238,7 @@ export function createQuerySuggestionsClient(
238238
/**
239239
* Get the configuration of a single Query Suggestions index.
240240
*
241-
* @summary Get the configuration of a single Query Suggestions index.
241+
* @summary Get a single configuration.
242242
* @param getConfig - The getConfig object.
243243
* @param getConfig.indexName - The index in which to perform the request.
244244
*/
@@ -277,7 +277,7 @@ export function createQuerySuggestionsClient(
277277
/**
278278
* Get the status of a Query Suggestion\'s index. The status includes whether the Query Suggestions index is currently in the process of being built, and the last build time.
279279
*
280-
* @summary Get the status of a Query Suggestion\'s index.
280+
* @summary Get configuration status.
281281
* @param getConfigStatus - The getConfigStatus object.
282282
* @param getConfigStatus.indexName - The index in which to perform the request.
283283
*/
@@ -316,7 +316,7 @@ export function createQuerySuggestionsClient(
316316
/**
317317
* Get the log file of the last build of a single Query Suggestion index.
318318
*
319-
* @summary Get the log file of the last build of a single Query Suggestion index.
319+
* @summary Get a log file.
320320
* @param getLogFile - The getLogFile object.
321321
* @param getLogFile.indexName - The index in which to perform the request.
322322
*/
@@ -429,7 +429,7 @@ export function createQuerySuggestionsClient(
429429
/**
430430
* Update the configuration of a Query Suggestions index.
431431
*
432-
* @summary Update the configuration of a Query Suggestions index.
432+
* @summary Update a configuration.
433433
* @param updateConfig - The updateConfig object.
434434
* @param updateConfig.indexName - The index in which to perform the request.
435435
* @param updateConfig.querySuggestionsIndexParam - The querySuggestionsIndexParam object.

clients/algoliasearch-client-javascript/packages/client-sources/src/sourcesClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export function createSourcesClient(
166166
/**
167167
* Add an ingestion job that will fetch data from an URL.
168168
*
169-
* @summary Create a new ingestion job via URL.
169+
* @summary Create fetch URL job.
170170
* @param postURLJob - The postURLJob object.
171171
*/
172172
postIngestUrl(

clients/algoliasearch-client-javascript/packages/recommend/src/recommendClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ export function createRecommendClient(options: CreateClientOptions) {
153153
},
154154

155155
/**
156-
* Returns recommendations for a specific model and objectID.
156+
* Returns recommendations or trending results, for a specific model and `objectID`.
157157
*
158-
* @summary Returns recommendations for a specific model and objectID.
158+
* @summary Get results.
159159
* @param getRecommendationsParams - The getRecommendationsParams object.
160160
*/
161161
getRecommendations(

clients/algoliasearch-client-php/lib/Api/PersonalizationClient.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public function del($path, $parameters = null)
143143
}
144144

145145
/**
146-
* Delete the user profile and all its associated data.
146+
* Delete a user profile.
147147
*
148148
* @param string $userToken userToken representing the user for which to fetch the Personalization profile. (required)
149149
*
@@ -227,7 +227,7 @@ public function get($path, $parameters = null)
227227
}
228228

229229
/**
230-
* Get the current personalization strategy.
230+
* Get the current strategy.
231231
*
232232
*
233233
* @return array<string, mixed>|\Algolia\AlgoliaSearch\Model\Personalization\PersonalizationStrategyParams
@@ -247,7 +247,7 @@ public function getPersonalizationStrategy()
247247
}
248248

249249
/**
250-
* Get the user profile built from Personalization strategy.
250+
* Get a user profile.
251251
*
252252
* @param string $userToken userToken representing the user for which to fetch the Personalization profile. (required)
253253
*
@@ -385,7 +385,7 @@ public function put($path, $parameters = null, $body = null)
385385
}
386386

387387
/**
388-
* Set a new personalization strategy.
388+
* Set a new strategy.
389389
*
390390
* @param array $personalizationStrategyParams personalizationStrategyParams (required)
391391
* - $personalizationStrategyParams['eventScoring'] => (array) Scores associated with the events. (required)

clients/algoliasearch-client-php/lib/Api/QuerySuggestionsClient.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function getClientConfig()
9999
}
100100

101101
/**
102-
* Create a configuration of a Query Suggestions index.
102+
* Create a configuration.
103103
*
104104
* @param array $querySuggestionsIndexWithIndexParam querySuggestionsIndexWithIndexParam (required)
105105
*
@@ -181,7 +181,7 @@ public function del($path, $parameters = null)
181181
}
182182

183183
/**
184-
* Delete a configuration of a Query Suggestion&#39;s index.
184+
* Delete a configuration.
185185
*
186186
* @param string $indexName The index in which to perform the request. (required)
187187
*
@@ -265,7 +265,7 @@ public function get($path, $parameters = null)
265265
}
266266

267267
/**
268-
* Get all the configurations of Query Suggestions.
268+
* List configurations.
269269
*
270270
*
271271
* @return array<string, mixed>|\Algolia\AlgoliaSearch\Model\QuerySuggestions\QuerySuggestionsIndex[]
@@ -285,7 +285,7 @@ public function getAllConfigs()
285285
}
286286

287287
/**
288-
* Get the configuration of a single Query Suggestions index.
288+
* Get a single configuration.
289289
*
290290
* @param string $indexName The index in which to perform the request. (required)
291291
*
@@ -325,7 +325,7 @@ public function getConfig($indexName)
325325
}
326326

327327
/**
328-
* Get the status of a Query Suggestion&#39;s index.
328+
* Get configuration status.
329329
*
330330
* @param string $indexName The index in which to perform the request. (required)
331331
*
@@ -365,7 +365,7 @@ public function getConfigStatus($indexName)
365365
}
366366

367367
/**
368-
* Get the log file of the last build of a single Query Suggestion index.
368+
* Get a log file.
369369
*
370370
* @param string $indexName The index in which to perform the request. (required)
371371
*
@@ -503,7 +503,7 @@ public function put($path, $parameters = null, $body = null)
503503
}
504504

505505
/**
506-
* Update the configuration of a Query Suggestions index.
506+
* Update a configuration.
507507
*
508508
* @param string $indexName The index in which to perform the request. (required)
509509
* @param array $querySuggestionsIndexParam querySuggestionsIndexParam (required)

clients/algoliasearch-client-php/lib/Api/RecommendClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public function get($path, $parameters = null)
186186
}
187187

188188
/**
189-
* Returns recommendations for a specific model and objectID.
189+
* Get results.
190190
*
191191
* @param array $getRecommendationsParams getRecommendationsParams (required)
192192
* - $getRecommendationsParams['requests'] => (array) The `getRecommendations` requests. (required)

clients/algoliasearch-client-php/lib/Model/Personalization/DeleteUserProfileResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public function getDeletedUntil()
188188
/**
189189
* Sets deletedUntil
190190
*
191-
* @param string $deletedUntil A date until which the data can safely be considered as deleted for the given user. Any data received after the deletedUntil date will start building a new user profile.
191+
* @param string $deletedUntil A date until which the data can safely be considered as deleted for the given user. Any data received after the `deletedUntil` date will start building a new user profile.
192192
*
193193
* @return self
194194
*/

0 commit comments

Comments
 (0)