Skip to content

Commit da6f211

Browse files
algolia-botrenovate[bot]shortcuts
committed
chore(deps): dependencies 2025-05-26 (generated)
algolia/api-clients-automation#4880 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: Clément Vannicatte <[email protected]>
1 parent 2787454 commit da6f211

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"csharpier": {
6-
"version": "1.0.1",
6+
"version": "1.0.2",
77
"commands": [
88
"csharpier"
99
]

algoliasearch/Clients/AbtestingClient.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,8 @@ public EstimateABTestResponse EstimateABTest(
767767
RequestOptions options = null,
768768
CancellationToken cancellationToken = default
769769
) =>
770-
AsyncHelper.RunSync(() => EstimateABTestAsync(estimateABTestRequest, options, cancellationToken)
770+
AsyncHelper.RunSync(() =>
771+
EstimateABTestAsync(estimateABTestRequest, options, cancellationToken)
771772
);
772773

773774
/// <inheritdoc />

algoliasearch/Clients/CompositionClient.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,8 @@ public SearchResponse<T> Search<T>(
228228
RequestOptions options = null,
229229
CancellationToken cancellationToken = default
230230
) =>
231-
AsyncHelper.RunSync(() => SearchAsync<T>(compositionID, requestBody, options, cancellationToken)
231+
AsyncHelper.RunSync(() =>
232+
SearchAsync<T>(compositionID, requestBody, options, cancellationToken)
232233
);
233234

234235
/// <inheritdoc />

algoliasearch/Clients/IngestionClient.cs

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2788,7 +2788,8 @@ public DestinationCreateResponse CreateDestination(
27882788
RequestOptions options = null,
27892789
CancellationToken cancellationToken = default
27902790
) =>
2791-
AsyncHelper.RunSync(() => CreateDestinationAsync(destinationCreate, options, cancellationToken)
2791+
AsyncHelper.RunSync(() =>
2792+
CreateDestinationAsync(destinationCreate, options, cancellationToken)
27922793
);
27932794

27942795
/// <inheritdoc />
@@ -4282,7 +4283,8 @@ public RunSourceResponse RunSource(
42824283
RequestOptions options = null,
42834284
CancellationToken cancellationToken = default
42844285
) =>
4285-
AsyncHelper.RunSync(() => RunSourceAsync(sourceID, runSourcePayload, options, cancellationToken)
4286+
AsyncHelper.RunSync(() =>
4287+
RunSourceAsync(sourceID, runSourcePayload, options, cancellationToken)
42864288
);
42874289

42884290
/// <inheritdoc />
@@ -4415,7 +4417,8 @@ public List<Destination> SearchDestinations(
44154417
RequestOptions options = null,
44164418
CancellationToken cancellationToken = default
44174419
) =>
4418-
AsyncHelper.RunSync(() => SearchDestinationsAsync(destinationSearch, options, cancellationToken)
4420+
AsyncHelper.RunSync(() =>
4421+
SearchDestinationsAsync(destinationSearch, options, cancellationToken)
44194422
);
44204423

44214424
/// <inheritdoc />
@@ -4584,7 +4587,8 @@ public WatchResponse TriggerDockerSourceDiscover(
45844587
RequestOptions options = null,
45854588
CancellationToken cancellationToken = default
45864589
) =>
4587-
AsyncHelper.RunSync(() => TriggerDockerSourceDiscoverAsync(sourceID, options, cancellationToken)
4590+
AsyncHelper.RunSync(() =>
4591+
TriggerDockerSourceDiscoverAsync(sourceID, options, cancellationToken)
45884592
);
45894593

45904594
/// <inheritdoc />
@@ -4618,7 +4622,8 @@ public TransformationTryResponse TryTransformation(
46184622
RequestOptions options = null,
46194623
CancellationToken cancellationToken = default
46204624
) =>
4621-
AsyncHelper.RunSync(() => TryTransformationAsync(transformationTry, options, cancellationToken)
4625+
AsyncHelper.RunSync(() =>
4626+
TryTransformationAsync(transformationTry, options, cancellationToken)
46224627
);
46234628

46244629
/// <inheritdoc />
@@ -4805,7 +4810,8 @@ public SourceUpdateResponse UpdateSource(
48054810
RequestOptions options = null,
48064811
CancellationToken cancellationToken = default
48074812
) =>
4808-
AsyncHelper.RunSync(() => UpdateSourceAsync(sourceID, sourceUpdate, options, cancellationToken)
4813+
AsyncHelper.RunSync(() =>
4814+
UpdateSourceAsync(sourceID, sourceUpdate, options, cancellationToken)
48094815
);
48104816

48114817
/// <inheritdoc />

algoliasearch/Clients/QuerySuggestionsClient.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,8 @@ public BaseResponse CreateConfig(
555555
RequestOptions options = null,
556556
CancellationToken cancellationToken = default
557557
) =>
558-
AsyncHelper.RunSync(() => CreateConfigAsync(configurationWithIndex, options, cancellationToken)
558+
AsyncHelper.RunSync(() =>
559+
CreateConfigAsync(configurationWithIndex, options, cancellationToken)
559560
);
560561

561562
/// <inheritdoc />

0 commit comments

Comments
 (0)