Skip to content

Commit bed0abf

Browse files
algolia-botrenovate[bot]shortcuts
committed
chore(deps): dependencies 2025-07-07 (generated)
algolia/api-clients-automation#5063 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Algolia Bot <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: shortcuts <[email protected]>
1 parent 732ca82 commit bed0abf

File tree

8 files changed

+130
-155
lines changed

8 files changed

+130
-155
lines changed

algoliasearch/src/main/java/com/algolia/api/AnalyticsClient.java

Lines changed: 20 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,10 +1040,8 @@ public CompletableFuture<GetClickPositionsResponse> getClickPositionsAsync(
10401040
* the transporter requestOptions.
10411041
* @throws AlgoliaRuntimeException If it fails to process the API call
10421042
*/
1043-
public CompletableFuture<GetClickPositionsResponse> getClickPositionsAsync(
1044-
@Nonnull String index,
1045-
@Nullable RequestOptions requestOptions
1046-
) throws AlgoliaRuntimeException {
1043+
public CompletableFuture<GetClickPositionsResponse> getClickPositionsAsync(@Nonnull String index, @Nullable RequestOptions requestOptions)
1044+
throws AlgoliaRuntimeException {
10471045
return this.getClickPositionsAsync(index, null, null, null, requestOptions);
10481046
}
10491047

@@ -1398,10 +1396,8 @@ public CompletableFuture<GetConversionRateResponse> getConversionRateAsync(
13981396
* the transporter requestOptions.
13991397
* @throws AlgoliaRuntimeException If it fails to process the API call
14001398
*/
1401-
public CompletableFuture<GetConversionRateResponse> getConversionRateAsync(
1402-
@Nonnull String index,
1403-
@Nullable RequestOptions requestOptions
1404-
) throws AlgoliaRuntimeException {
1399+
public CompletableFuture<GetConversionRateResponse> getConversionRateAsync(@Nonnull String index, @Nullable RequestOptions requestOptions)
1400+
throws AlgoliaRuntimeException {
14051401
return this.getConversionRateAsync(index, null, null, null, requestOptions);
14061402
}
14071403

@@ -1540,12 +1536,8 @@ public CompletableFuture<GetNoClickRateResponse> getNoClickRateAsync(
15401536
* data](https://www.algolia.com/doc/guides/search-analytics/guides/segments/). (optional)
15411537
* @throws AlgoliaRuntimeException If it fails to process the API call
15421538
*/
1543-
public CompletableFuture<GetNoClickRateResponse> getNoClickRateAsync(
1544-
@Nonnull String index,
1545-
String startDate,
1546-
String endDate,
1547-
String tags
1548-
) throws AlgoliaRuntimeException {
1539+
public CompletableFuture<GetNoClickRateResponse> getNoClickRateAsync(@Nonnull String index, String startDate, String endDate, String tags)
1540+
throws AlgoliaRuntimeException {
15491541
return this.getNoClickRateAsync(index, startDate, endDate, tags, null);
15501542
}
15511543

@@ -3208,10 +3200,8 @@ public CompletableFuture<GetTopFilterForAttributeResponse> getTopFilterForAttrib
32083200
* @param index Index name. (required)
32093201
* @throws AlgoliaRuntimeException If it fails to process the API call
32103202
*/
3211-
public CompletableFuture<GetTopFilterForAttributeResponse> getTopFilterForAttributeAsync(
3212-
@Nonnull String attribute,
3213-
@Nonnull String index
3214-
) throws AlgoliaRuntimeException {
3203+
public CompletableFuture<GetTopFilterForAttributeResponse> getTopFilterForAttributeAsync(@Nonnull String attribute, @Nonnull String index)
3204+
throws AlgoliaRuntimeException {
32153205
return this.getTopFilterForAttributeAsync(attribute, index, null, null, null, null, null, null, null);
32163206
}
32173207

@@ -3956,18 +3946,18 @@ public CompletableFuture<GetTopSearchesResponse> getTopSearchesAsync(
39563946
String tags
39573947
) throws AlgoliaRuntimeException {
39583948
return this.getTopSearchesAsync(
3959-
index,
3960-
clickAnalytics,
3961-
revenueAnalytics,
3962-
startDate,
3963-
endDate,
3964-
orderBy,
3965-
direction,
3966-
limit,
3967-
offset,
3968-
tags,
3969-
null
3970-
);
3949+
index,
3950+
clickAnalytics,
3951+
revenueAnalytics,
3952+
startDate,
3953+
endDate,
3954+
orderBy,
3955+
direction,
3956+
limit,
3957+
offset,
3958+
tags,
3959+
null
3960+
);
39713961
}
39723962

39733963
/**

algoliasearch/src/main/java/com/algolia/api/CompositionClient.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -298,10 +298,8 @@ public CompletableFuture<SearchForFacetValuesResponse> searchForFacetValuesAsync
298298
* in the `attributesForFaceting` index setting with the `searchable()` modifier. (required)
299299
* @throws AlgoliaRuntimeException If it fails to process the API call
300300
*/
301-
public CompletableFuture<SearchForFacetValuesResponse> searchForFacetValuesAsync(
302-
@Nonnull String compositionID,
303-
@Nonnull String facetName
304-
) throws AlgoliaRuntimeException {
301+
public CompletableFuture<SearchForFacetValuesResponse> searchForFacetValuesAsync(@Nonnull String compositionID, @Nonnull String facetName)
302+
throws AlgoliaRuntimeException {
305303
return this.searchForFacetValuesAsync(compositionID, facetName, null, null);
306304
}
307305
}

algoliasearch/src/main/java/com/algolia/api/IngestionClient.java

Lines changed: 44 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,10 +1376,8 @@ public Authentication getAuthentication(@Nonnull String authenticationID) throws
13761376
* the transporter requestOptions.
13771377
* @throws AlgoliaRuntimeException If it fails to process the API call
13781378
*/
1379-
public CompletableFuture<Authentication> getAuthenticationAsync(
1380-
@Nonnull String authenticationID,
1381-
@Nullable RequestOptions requestOptions
1382-
) throws AlgoliaRuntimeException {
1379+
public CompletableFuture<Authentication> getAuthenticationAsync(@Nonnull String authenticationID, @Nullable RequestOptions requestOptions)
1380+
throws AlgoliaRuntimeException {
13831381
Parameters.requireNonNull(authenticationID, "Parameter `authenticationID` is required when calling `getAuthentication`.");
13841382

13851383
HttpRequest request = HttpRequest.builder().setPath("/1/authentications/{authenticationID}", authenticationID).setMethod("GET").build();
@@ -1735,10 +1733,8 @@ public Transformation getTransformation(@Nonnull String transformationID) throws
17351733
* the transporter requestOptions.
17361734
* @throws AlgoliaRuntimeException If it fails to process the API call
17371735
*/
1738-
public CompletableFuture<Transformation> getTransformationAsync(
1739-
@Nonnull String transformationID,
1740-
@Nullable RequestOptions requestOptions
1741-
) throws AlgoliaRuntimeException {
1736+
public CompletableFuture<Transformation> getTransformationAsync(@Nonnull String transformationID, @Nullable RequestOptions requestOptions)
1737+
throws AlgoliaRuntimeException {
17421738
Parameters.requireNonNull(transformationID, "Parameter `transformationID` is required when calling `getTransformation`.");
17431739

17441740
HttpRequest request = HttpRequest.builder().setPath("/1/transformations/{transformationID}", transformationID).setMethod("GET").build();
@@ -2656,19 +2652,19 @@ public ListTasksResponse listTasks(
26562652
OrderKeys order
26572653
) throws AlgoliaRuntimeException {
26582654
return this.listTasks(
2659-
itemsPerPage,
2660-
page,
2661-
action,
2662-
enabled,
2663-
sourceID,
2664-
sourceType,
2665-
destinationID,
2666-
triggerType,
2667-
withEmailNotifications,
2668-
sort,
2669-
order,
2670-
null
2671-
);
2655+
itemsPerPage,
2656+
page,
2657+
action,
2658+
enabled,
2659+
sourceID,
2660+
sourceType,
2661+
destinationID,
2662+
triggerType,
2663+
withEmailNotifications,
2664+
sort,
2665+
order,
2666+
null
2667+
);
26722668
}
26732669

26742670
/**
@@ -2773,19 +2769,19 @@ public CompletableFuture<ListTasksResponse> listTasksAsync(
27732769
OrderKeys order
27742770
) throws AlgoliaRuntimeException {
27752771
return this.listTasksAsync(
2776-
itemsPerPage,
2777-
page,
2778-
action,
2779-
enabled,
2780-
sourceID,
2781-
sourceType,
2782-
destinationID,
2783-
triggerType,
2784-
withEmailNotifications,
2785-
sort,
2786-
order,
2787-
null
2788-
);
2772+
itemsPerPage,
2773+
page,
2774+
action,
2775+
enabled,
2776+
sourceID,
2777+
sourceType,
2778+
destinationID,
2779+
triggerType,
2780+
withEmailNotifications,
2781+
sort,
2782+
order,
2783+
null
2784+
);
27892785
}
27902786

27912787
/**
@@ -4893,14 +4889,13 @@ public <T> List<WatchResponse> chunkedPush(
48934889

48944890
for (T item : objects) {
48954891
if (records.size() == batchSize) {
4896-
WatchResponse watch =
4897-
this.push(
4898-
indexName,
4899-
new PushTaskPayload().setAction(action).setRecords(this.objectsToPushTaskRecords(records)),
4900-
waitForTasks,
4901-
referenceIndexName,
4902-
requestOptions
4903-
);
4892+
WatchResponse watch = this.push(
4893+
indexName,
4894+
new PushTaskPayload().setAction(action).setRecords(this.objectsToPushTaskRecords(records)),
4895+
waitForTasks,
4896+
referenceIndexName,
4897+
requestOptions
4898+
);
49044899
responses.add(watch);
49054900
records.clear();
49064901
}
@@ -4909,14 +4904,13 @@ public <T> List<WatchResponse> chunkedPush(
49094904
}
49104905

49114906
if (records.size() > 0) {
4912-
WatchResponse watch =
4913-
this.push(
4914-
indexName,
4915-
new PushTaskPayload().setAction(action).setRecords(this.objectsToPushTaskRecords(records)),
4916-
waitForTasks,
4917-
referenceIndexName,
4918-
requestOptions
4919-
);
4907+
WatchResponse watch = this.push(
4908+
indexName,
4909+
new PushTaskPayload().setAction(action).setRecords(this.objectsToPushTaskRecords(records)),
4910+
waitForTasks,
4911+
referenceIndexName,
4912+
requestOptions
4913+
);
49204914
responses.add(watch);
49214915
}
49224916

algoliasearch/src/main/java/com/algolia/api/PersonalizationClient.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -667,9 +667,8 @@ public SetPersonalizationStrategyResponse setPersonalizationStrategy(
667667
* @param personalizationStrategyParams (required)
668668
* @throws AlgoliaRuntimeException If it fails to process the API call
669669
*/
670-
public SetPersonalizationStrategyResponse setPersonalizationStrategy(
671-
@Nonnull PersonalizationStrategyParams personalizationStrategyParams
672-
) throws AlgoliaRuntimeException {
670+
public SetPersonalizationStrategyResponse setPersonalizationStrategy(@Nonnull PersonalizationStrategyParams personalizationStrategyParams)
671+
throws AlgoliaRuntimeException {
673672
return this.setPersonalizationStrategy(personalizationStrategyParams, null);
674673
}
675674

algoliasearch/src/main/java/com/algolia/api/QuerySuggestionsClient.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -800,11 +800,8 @@ public CompletableFuture<LogFile> getLogFileAsync(@Nonnull String indexName) thr
800800
* the transporter requestOptions.
801801
* @throws AlgoliaRuntimeException If it fails to process the API call
802802
*/
803-
public BaseResponse updateConfig(
804-
@Nonnull String indexName,
805-
@Nonnull Configuration configuration,
806-
@Nullable RequestOptions requestOptions
807-
) throws AlgoliaRuntimeException {
803+
public BaseResponse updateConfig(@Nonnull String indexName, @Nonnull Configuration configuration, @Nullable RequestOptions requestOptions)
804+
throws AlgoliaRuntimeException {
808805
return LaunderThrowable.await(updateConfigAsync(indexName, configuration, requestOptions));
809806
}
810807

0 commit comments

Comments
 (0)