diff --git a/src/libs/Greptile/Generated/Greptile.GreptileClient.g.cs b/src/libs/Greptile/Generated/Greptile.GreptileClient.g.cs index c120635..30fd80e 100644 --- a/src/libs/Greptile/Generated/Greptile.GreptileClient.g.cs +++ b/src/libs/Greptile/Generated/Greptile.GreptileClient.g.cs @@ -62,6 +62,27 @@ public GreptileClient( { } + /// + /// Creates a new instance of the GreptileClient 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 GreptileClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::Greptile.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the GreptileClient. /// If no httpClient is provided, a new one will be created.