Skip to content

Commit 01c1064

Browse files
algolia-botrenovate[bot]millotp
committed
chore(deps): lock file maintenance (#3759) (generated)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pierre Millot <[email protected]>
1 parent d57104b commit 01c1064

Some content is hidden

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

48 files changed

+410
-423
lines changed

clients/algoliasearch-client-dart/packages/algoliasearch/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ dev_dependencies:
2222
json_serializable: ^6.7.0
2323
lints: ^4.0.0
2424
logging: ^1.2.0
25-
test: ^1.24.3
25+
test: ^1.25.8

clients/algoliasearch-client-dart/packages/client_insights/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ dev_dependencies:
2020
json_serializable: ^6.7.0
2121
lints: ^4.0.0
2222
logging: ^1.2.0
23-
test: ^1.24.3
23+
test: ^1.25.8

clients/algoliasearch-client-dart/packages/client_recommend/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ dev_dependencies:
2020
json_serializable: ^6.7.0
2121
lints: ^4.0.0
2222
logging: ^1.2.0
23-
test: ^1.24.3
23+
test: ^1.25.8

clients/algoliasearch-client-dart/packages/client_search/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ dev_dependencies:
2020
json_serializable: ^6.7.0
2121
lints: ^4.0.0
2222
logging: ^1.2.0
23-
test: ^1.24.3
23+
test: ^1.25.8

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@
5454
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
57-
"@arethetypeswrong/cli": "0.16.2",
57+
"@arethetypeswrong/cli": "0.15.4",
5858
"@types/node": "22.5.1",
5959
"publint": "0.2.10",
60-
"rollup": "4.21.3",
60+
"rollup": "4.21.2",
6161
"tsup": "8.2.4",
6262
"typescript": "5.5.4"
6363
},

clients/algoliasearch-client-javascript/yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ __metadata:
147147
"@algolia/requester-browser-xhr": "npm:5.4.2"
148148
"@algolia/requester-fetch": "npm:5.4.2"
149149
"@algolia/requester-node-http": "npm:5.4.2"
150-
"@arethetypeswrong/cli": "npm:0.16.2"
150+
"@arethetypeswrong/cli": "npm:0.15.4"
151151
"@types/node": "npm:22.5.1"
152152
publint: "npm:0.2.10"
153-
rollup: "npm:4.21.3"
153+
rollup: "npm:4.21.2"
154154
tsup: "npm:8.2.4"
155155
typescript: "npm:5.5.4"
156156
languageName: unknown

snippets/csharp/src/Abtesting.cs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@ public async Task SnippetForAbtestingClientAddABTests()
2929
Name = "myABTest",
3030
Variants = new List<AddABTestsVariant>
3131
{
32-
new AddABTestsVariant(
33-
new AbTestsVariant { Index = "AB_TEST_1", TrafficPercentage = 30, }
34-
),
35-
new AddABTestsVariant(new AbTestsVariant { Index = "AB_TEST_2", TrafficPercentage = 50, })
32+
new AddABTestsVariant(new AbTestsVariant { Index = "AB_TEST_1", TrafficPercentage = 30 }),
33+
new AddABTestsVariant(new AbTestsVariant { Index = "AB_TEST_2", TrafficPercentage = 50 }),
3634
},
3735
}
3836
);
@@ -195,10 +193,8 @@ public async Task SnippetForAbtestingClientScheduleABTest()
195193
Name = "myABTest",
196194
Variants = new List<AddABTestsVariant>
197195
{
198-
new AddABTestsVariant(
199-
new AbTestsVariant { Index = "AB_TEST_1", TrafficPercentage = 30, }
200-
),
201-
new AddABTestsVariant(new AbTestsVariant { Index = "AB_TEST_2", TrafficPercentage = 50, })
196+
new AddABTestsVariant(new AbTestsVariant { Index = "AB_TEST_1", TrafficPercentage = 30 }),
197+
new AddABTestsVariant(new AbTestsVariant { Index = "AB_TEST_2", TrafficPercentage = 50 }),
202198
},
203199
}
204200
);

snippets/csharp/src/Ingestion.cs

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public async Task SnippetForIngestionClientCreateDestination()
6060
{
6161
Type = Enum.Parse<DestinationType>("Search"),
6262
Name = "destinationName",
63-
Input = new DestinationInput(new DestinationIndexName { IndexName = "<YOUR_INDEX_NAME>", }),
63+
Input = new DestinationInput(new DestinationIndexName { IndexName = "<YOUR_INDEX_NAME>" }),
6464
AuthenticationID = "6c02aeb1-775e-418e-870b-1faccd4b2c0f",
6565
}
6666
);
@@ -149,7 +149,7 @@ public async Task SnippetForIngestionClientCreateTaskV1()
149149
SourceID = "search",
150150
DestinationID = "destinationName",
151151
Trigger = new TaskCreateTrigger(
152-
new OnDemandTriggerInput { Type = Enum.Parse<OnDemandTriggerType>("OnDemand"), }
152+
new OnDemandTriggerInput { Type = Enum.Parse<OnDemandTriggerType>("OnDemand") }
153153
),
154154
Action = Enum.Parse<ActionType>("Replace"),
155155
}
@@ -830,7 +830,7 @@ public async Task SnippetForIngestionClientPushTask()
830830
{
831831
{ "key", "bar" },
832832
{ "foo", "1" },
833-
}
833+
},
834834
},
835835
new PushTaskRecords
836836
{
@@ -839,8 +839,8 @@ public async Task SnippetForIngestionClientPushTask()
839839
{
840840
{ "key", "baz" },
841841
{ "foo", "2" },
842-
}
843-
}
842+
},
843+
},
844844
},
845845
}
846846
);
@@ -933,7 +933,7 @@ public async Task SnippetForIngestionClientSearchAuthentications()
933933
AuthenticationIDs = new List<string>
934934
{
935935
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
936-
"947ac9c4-7e58-4c87-b1e7-14a68e99699a"
936+
"947ac9c4-7e58-4c87-b1e7-14a68e99699a",
937937
},
938938
}
939939
);
@@ -961,7 +961,7 @@ public async Task SnippetForIngestionClientSearchDestinations()
961961
DestinationIDs = new List<string>
962962
{
963963
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
964-
"947ac9c4-7e58-4c87-b1e7-14a68e99699a"
964+
"947ac9c4-7e58-4c87-b1e7-14a68e99699a",
965965
},
966966
}
967967
);
@@ -989,7 +989,7 @@ public async Task SnippetForIngestionClientSearchSources()
989989
SourceIDs = new List<string>
990990
{
991991
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
992-
"947ac9c4-7e58-4c87-b1e7-14a68e99699a"
992+
"947ac9c4-7e58-4c87-b1e7-14a68e99699a",
993993
},
994994
}
995995
);
@@ -1018,7 +1018,7 @@ public async Task SnippetForIngestionClientSearchTasks()
10181018
{
10191019
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
10201020
"947ac9c4-7e58-4c87-b1e7-14a68e99699a",
1021-
"76ab4c2a-ce17-496f-b7a6-506dc59ee498"
1021+
"76ab4c2a-ce17-496f-b7a6-506dc59ee498",
10221022
},
10231023
}
10241024
);
@@ -1047,7 +1047,7 @@ public async Task SnippetForIngestionClientSearchTasksV1()
10471047
{
10481048
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
10491049
"947ac9c4-7e58-4c87-b1e7-14a68e99699a",
1050-
"76ab4c2a-ce17-496f-b7a6-506dc59ee498"
1050+
"76ab4c2a-ce17-496f-b7a6-506dc59ee498",
10511051
},
10521052
}
10531053
);
@@ -1076,7 +1076,7 @@ public async Task SnippetForIngestionClientSearchTransformations()
10761076
{
10771077
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
10781078
"947ac9c4-7e58-4c87-b1e7-14a68e99699a",
1079-
"76ab4c2a-ce17-496f-b7a6-506dc59ee498"
1079+
"76ab4c2a-ce17-496f-b7a6-506dc59ee498",
10801080
},
10811081
}
10821082
);
@@ -1191,7 +1191,7 @@ public async Task SnippetForIngestionClientUpdateAuthentication()
11911191
// Call the API
11921192
var response = await client.UpdateAuthenticationAsync(
11931193
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
1194-
new AuthenticationUpdate { Name = "newName", }
1194+
new AuthenticationUpdate { Name = "newName" }
11951195
);
11961196
// >LOG
11971197
// SEPARATOR<
@@ -1213,7 +1213,7 @@ public async Task SnippetForIngestionClientUpdateDestination()
12131213
// Call the API
12141214
var response = await client.UpdateDestinationAsync(
12151215
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
1216-
new DestinationUpdate { Name = "newName", }
1216+
new DestinationUpdate { Name = "newName" }
12171217
);
12181218
// >LOG
12191219
// SEPARATOR<
@@ -1235,7 +1235,7 @@ public async Task SnippetForIngestionClientUpdateSource()
12351235
// Call the API
12361236
var response = await client.UpdateSourceAsync(
12371237
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
1238-
new SourceUpdate { Name = "newName", }
1238+
new SourceUpdate { Name = "newName" }
12391239
);
12401240
// >LOG
12411241
// SEPARATOR<
@@ -1257,7 +1257,7 @@ public async Task SnippetForIngestionClientUpdateTask()
12571257
// Call the API
12581258
var response = await client.UpdateTaskAsync(
12591259
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
1260-
new TaskUpdate { Enabled = false, Cron = "* * * * *", }
1260+
new TaskUpdate { Enabled = false, Cron = "* * * * *" }
12611261
);
12621262
// >LOG
12631263
// SEPARATOR<
@@ -1279,7 +1279,7 @@ public async Task SnippetForIngestionClientUpdateTaskV1()
12791279
// Call the API
12801280
var response = await client.UpdateTaskV1Async(
12811281
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
1282-
new TaskUpdateV1 { Enabled = false, }
1282+
new TaskUpdateV1 { Enabled = false }
12831283
);
12841284
// >LOG
12851285
// SEPARATOR<
@@ -1363,7 +1363,7 @@ public async Task SnippetForIngestionClientValidateSourceBeforeUpdate()
13631363
// Call the API
13641364
var response = await client.ValidateSourceBeforeUpdateAsync(
13651365
"6c02aeb1-775e-418e-870b-1faccd4b2c0f",
1366-
new SourceUpdate { Name = "newName", }
1366+
new SourceUpdate { Name = "newName" }
13671367
);
13681368
// >LOG
13691369
// SEPARATOR<

snippets/csharp/src/Insights.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public async Task SnippetForInsightsClientPushEvents()
135135
QueryID = "43b15df305339e827f0ac0bdc5ebcaa7",
136136
Positions = new List<int> { 7, 6 },
137137
}
138-
)
138+
),
139139
},
140140
}
141141
);

snippets/csharp/src/Personalization.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,11 @@ public async Task SnippetForPersonalizationClientSetPersonalizationStrategy()
184184
Score = 42,
185185
EventName = "Algolia",
186186
EventType = Enum.Parse<EventType>("Click"),
187-
}
187+
},
188188
},
189189
FacetScoring = new List<FacetScoring>
190190
{
191-
new FacetScoring { Score = 42, FacetName = "Event", }
191+
new FacetScoring { Score = 42, FacetName = "Event" },
192192
},
193193
PersonalizationImpact = 42,
194194
}

0 commit comments

Comments
 (0)