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