Skip to content

Commit 72377f3

Browse files
algolia-botrenovate[bot]Fluf22
committed
chore(deps): update dependency jsdom to v27 (#5360) (generated)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Thomas Raffray <[email protected]>
1 parent 51504f5 commit 72377f3

File tree

99 files changed

+1173
-295
lines changed

Some content is hidden

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

99 files changed

+1173
-295
lines changed

clients/algoliasearch-client-csharp/.github/workflows/issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Create ticket
15-
uses: actions/github-script@v8
15+
uses: actions/github-script@v7
1616
with:
1717
script: |
1818
const action = context.payload.action;

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1642,6 +1642,7 @@ ListTasksResponseV1 ListTasksV1(
16421642
/// <param name="page">Page number of the paginated API response. (optional)</param>
16431643
/// <param name="sort">Property by which to sort the list of transformations. (optional)</param>
16441644
/// <param name="order">Sort order of the response, ascending or descending. (optional)</param>
1645+
/// <param name="type">Whether to filter the list of transformations by the type of transformation. (optional)</param>
16451646
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
16461647
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
16471648
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -1653,6 +1654,7 @@ Task<ListTransformationsResponse> ListTransformationsAsync(
16531654
int? page = default,
16541655
TransformationSortKeys? sort = default,
16551656
OrderKeys? order = default,
1657+
TransformationType? type = default,
16561658
RequestOptions options = null,
16571659
CancellationToken cancellationToken = default
16581660
);
@@ -1669,6 +1671,7 @@ Task<ListTransformationsResponse> ListTransformationsAsync(
16691671
/// <param name="page">Page number of the paginated API response. (optional)</param>
16701672
/// <param name="sort">Property by which to sort the list of transformations. (optional)</param>
16711673
/// <param name="order">Sort order of the response, ascending or descending. (optional)</param>
1674+
/// <param name="type">Whether to filter the list of transformations by the type of transformation. (optional)</param>
16721675
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
16731676
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
16741677
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -1680,6 +1683,7 @@ ListTransformationsResponse ListTransformations(
16801683
int? page = default,
16811684
TransformationSortKeys? sort = default,
16821685
OrderKeys? order = default,
1686+
TransformationType? type = default,
16831687
RequestOptions options = null,
16841688
CancellationToken cancellationToken = default
16851689
);
@@ -4171,6 +4175,7 @@ public async Task<ListTransformationsResponse> ListTransformationsAsync(
41714175
int? page = default,
41724176
TransformationSortKeys? sort = default,
41734177
OrderKeys? order = default,
4178+
TransformationType? type = default,
41744179
RequestOptions options = null,
41754180
CancellationToken cancellationToken = default
41764181
)
@@ -4181,6 +4186,7 @@ public async Task<ListTransformationsResponse> ListTransformationsAsync(
41814186
requestOptions.AddQueryParameter("page", page);
41824187
requestOptions.AddQueryParameter("sort", sort);
41834188
requestOptions.AddQueryParameter("order", order);
4189+
requestOptions.AddQueryParameter("type", type);
41844190
return await _transport
41854191
.ExecuteRequestAsync<ListTransformationsResponse>(
41864192
new HttpMethod("GET"),
@@ -4197,11 +4203,12 @@ public ListTransformationsResponse ListTransformations(
41974203
int? page = default,
41984204
TransformationSortKeys? sort = default,
41994205
OrderKeys? order = default,
4206+
TransformationType? type = default,
42004207
RequestOptions options = null,
42014208
CancellationToken cancellationToken = default
42024209
) =>
42034210
AsyncHelper.RunSync(() =>
4204-
ListTransformationsAsync(itemsPerPage, page, sort, order, options, cancellationToken)
4211+
ListTransformationsAsync(itemsPerPage, page, sort, order, type, options, cancellationToken)
42054212
);
42064213

42074214
/// <inheritdoc />

clients/algoliasearch-client-dart/.github/workflows/issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Create ticket
15-
uses: actions/github-script@v8
15+
uses: actions/github-script@v7
1616
with:
1717
script: |
1818
const action = context.payload.action;

clients/algoliasearch-client-go/.github/workflows/issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Create ticket
15-
uses: actions/github-script@v8
15+
uses: actions/github-script@v7
1616
with:
1717
script: |
1818
const action = context.payload.action;

clients/algoliasearch-client-go/algolia/ingestion/api_ingestion.go

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-java/.github/workflows/issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Create ticket
15-
uses: actions/github-script@v8
15+
uses: actions/github-script@v7
1616
with:
1717
script: |
1818
const action = context.payload.action;

clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/api/IngestionClient.java

Lines changed: 27 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2998,6 +2998,8 @@ public CompletableFuture<ListTasksResponseV1> listTasksV1Async() throws AlgoliaR
29982998
* @param sort Property by which to sort the list of transformations. (optional, default to
29992999
* createdAt)
30003000
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
3001+
* @param type Whether to filter the list of transformations by the type of transformation.
3002+
* (optional)
30013003
* @param requestOptions The requestOptions to send along with the query, they will be merged with
30023004
* the transporter requestOptions.
30033005
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -3007,9 +3009,10 @@ public ListTransformationsResponse listTransformations(
30073009
Integer page,
30083010
TransformationSortKeys sort,
30093011
OrderKeys order,
3012+
TransformationType type,
30103013
@Nullable RequestOptions requestOptions
30113014
) throws AlgoliaRuntimeException {
3012-
return LaunderThrowable.await(listTransformationsAsync(itemsPerPage, page, sort, order, requestOptions));
3015+
return LaunderThrowable.await(listTransformationsAsync(itemsPerPage, page, sort, order, type, requestOptions));
30133016
}
30143017

30153018
/**
@@ -3020,11 +3023,18 @@ public ListTransformationsResponse listTransformations(
30203023
* @param sort Property by which to sort the list of transformations. (optional, default to
30213024
* createdAt)
30223025
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
3026+
* @param type Whether to filter the list of transformations by the type of transformation.
3027+
* (optional)
30233028
* @throws AlgoliaRuntimeException If it fails to process the API call
30243029
*/
3025-
public ListTransformationsResponse listTransformations(Integer itemsPerPage, Integer page, TransformationSortKeys sort, OrderKeys order)
3026-
throws AlgoliaRuntimeException {
3027-
return this.listTransformations(itemsPerPage, page, sort, order, null);
3030+
public ListTransformationsResponse listTransformations(
3031+
Integer itemsPerPage,
3032+
Integer page,
3033+
TransformationSortKeys sort,
3034+
OrderKeys order,
3035+
TransformationType type
3036+
) throws AlgoliaRuntimeException {
3037+
return this.listTransformations(itemsPerPage, page, sort, order, type, null);
30283038
}
30293039

30303040
/**
@@ -3035,7 +3045,7 @@ public ListTransformationsResponse listTransformations(Integer itemsPerPage, Int
30353045
* @throws AlgoliaRuntimeException If it fails to process the API call
30363046
*/
30373047
public ListTransformationsResponse listTransformations(@Nullable RequestOptions requestOptions) throws AlgoliaRuntimeException {
3038-
return this.listTransformations(null, null, null, null, requestOptions);
3048+
return this.listTransformations(null, null, null, null, null, requestOptions);
30393049
}
30403050

30413051
/**
@@ -3044,7 +3054,7 @@ public ListTransformationsResponse listTransformations(@Nullable RequestOptions
30443054
* @throws AlgoliaRuntimeException If it fails to process the API call
30453055
*/
30463056
public ListTransformationsResponse listTransformations() throws AlgoliaRuntimeException {
3047-
return this.listTransformations(null, null, null, null, null);
3057+
return this.listTransformations(null, null, null, null, null, null);
30483058
}
30493059

30503060
/**
@@ -3055,6 +3065,8 @@ public ListTransformationsResponse listTransformations() throws AlgoliaRuntimeEx
30553065
* @param sort Property by which to sort the list of transformations. (optional, default to
30563066
* createdAt)
30573067
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
3068+
* @param type Whether to filter the list of transformations by the type of transformation.
3069+
* (optional)
30583070
* @param requestOptions The requestOptions to send along with the query, they will be merged with
30593071
* the transporter requestOptions.
30603072
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -3064,6 +3076,7 @@ public CompletableFuture<ListTransformationsResponse> listTransformationsAsync(
30643076
Integer page,
30653077
TransformationSortKeys sort,
30663078
OrderKeys order,
3079+
TransformationType type,
30673080
@Nullable RequestOptions requestOptions
30683081
) throws AlgoliaRuntimeException {
30693082
HttpRequest request = HttpRequest.builder()
@@ -3073,6 +3086,7 @@ public CompletableFuture<ListTransformationsResponse> listTransformationsAsync(
30733086
.addQueryParameter("page", page)
30743087
.addQueryParameter("sort", sort)
30753088
.addQueryParameter("order", order)
3089+
.addQueryParameter("type", type)
30763090
.build();
30773091
return executeAsync(request, requestOptions, new TypeReference<ListTransformationsResponse>() {});
30783092
}
@@ -3085,15 +3099,18 @@ public CompletableFuture<ListTransformationsResponse> listTransformationsAsync(
30853099
* @param sort Property by which to sort the list of transformations. (optional, default to
30863100
* createdAt)
30873101
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
3102+
* @param type Whether to filter the list of transformations by the type of transformation.
3103+
* (optional)
30883104
* @throws AlgoliaRuntimeException If it fails to process the API call
30893105
*/
30903106
public CompletableFuture<ListTransformationsResponse> listTransformationsAsync(
30913107
Integer itemsPerPage,
30923108
Integer page,
30933109
TransformationSortKeys sort,
3094-
OrderKeys order
3110+
OrderKeys order,
3111+
TransformationType type
30953112
) throws AlgoliaRuntimeException {
3096-
return this.listTransformationsAsync(itemsPerPage, page, sort, order, null);
3113+
return this.listTransformationsAsync(itemsPerPage, page, sort, order, type, null);
30973114
}
30983115

30993116
/**
@@ -3105,7 +3122,7 @@ public CompletableFuture<ListTransformationsResponse> listTransformationsAsync(
31053122
*/
31063123
public CompletableFuture<ListTransformationsResponse> listTransformationsAsync(@Nullable RequestOptions requestOptions)
31073124
throws AlgoliaRuntimeException {
3108-
return this.listTransformationsAsync(null, null, null, null, requestOptions);
3125+
return this.listTransformationsAsync(null, null, null, null, null, requestOptions);
31093126
}
31103127

31113128
/**
@@ -3114,7 +3131,7 @@ public CompletableFuture<ListTransformationsResponse> listTransformationsAsync(@
31143131
* @throws AlgoliaRuntimeException If it fails to process the API call
31153132
*/
31163133
public CompletableFuture<ListTransformationsResponse> listTransformationsAsync() throws AlgoliaRuntimeException {
3117-
return this.listTransformationsAsync(null, null, null, null, null);
3134+
return this.listTransformationsAsync(null, null, null, null, null, null);
31183135
}
31193136

31203137
/**

clients/algoliasearch-client-javascript/.github/workflows/issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Create ticket
15-
uses: actions/github-script@v8
15+
uses: actions/github-script@v7
1616
with:
1717
script: |
1818
const action = context.payload.action;

clients/algoliasearch-client-javascript/packages/abtesting/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.18.2",
59-
"@types/node": "22.18.1",
59+
"@types/node": "22.18.3",
6060
"publint": "0.3.12",
6161
"rollup": "4.41.0",
6262
"tsup": "8.5.0",

clients/algoliasearch-client-javascript/packages/advanced-personalization/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.18.2",
59-
"@types/node": "22.18.1",
59+
"@types/node": "22.18.3",
6060
"publint": "0.3.12",
6161
"rollup": "4.41.0",
6262
"tsup": "8.5.0",

0 commit comments

Comments
 (0)