enrich the setup. setup fixes. minimize the consolidation plan

This commit is contained in:
master
2026-02-26 08:46:06 +02:00
parent 63c70a6d37
commit 4fe8eb56ae
26 changed files with 1568 additions and 646 deletions

View File

@@ -398,7 +398,7 @@ public sealed record FinalizeSetupSessionRequest(
/// <summary>
/// Request to test connectivity for a setup step.
/// </summary>
public sealed record TestConnectionRequest(
public sealed record SetupTestConnectionRequest(
Dictionary<string, string>? ConfigValues = null);
#endregion

View File

@@ -579,7 +579,7 @@ public static class SetupEndpoints
Dictionary<string, string>? configValues = null;
try
{
var body = await context.Request.ReadFromJsonAsync<TestConnectionRequest>(ct);
var body = await context.Request.ReadFromJsonAsync<SetupTestConnectionRequest>(ct);
configValues = body?.ConfigValues;
}
catch { /* empty body acceptable */ }