From 08541ac4b94dd9d1828de3766a6f727e24309460 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 11 May 2026 02:42:24 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../Gonka/Generated/Gonka.GonkaClient.g.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/libs/Gonka/Generated/Gonka.GonkaClient.g.cs b/src/libs/Gonka/Generated/Gonka.GonkaClient.g.cs index 7e2061b..70be554 100644 --- a/src/libs/Gonka/Generated/Gonka.GonkaClient.g.cs +++ b/src/libs/Gonka/Generated/Gonka.GonkaClient.g.cs @@ -63,6 +63,27 @@ public GonkaClient( { } + /// + /// Creates a new instance of the GonkaClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public GonkaClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::Gonka.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the GonkaClient. /// If no httpClient is provided, a new one will be created.