diff --git a/src/libs/Mubert/Generated/Mubert.MubertClient.g.cs b/src/libs/Mubert/Generated/Mubert.MubertClient.g.cs index 509272b..7cd6b5f 100644 --- a/src/libs/Mubert/Generated/Mubert.MubertClient.g.cs +++ b/src/libs/Mubert/Generated/Mubert.MubertClient.g.cs @@ -92,6 +92,27 @@ public MubertClient( { } + /// + /// Creates a new instance of the MubertClient 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 MubertClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::Mubert.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the MubertClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Mubert/Generated/Mubert.PublicClient.g.cs b/src/libs/Mubert/Generated/Mubert.PublicClient.g.cs index 07188e4..f349730 100644 --- a/src/libs/Mubert/Generated/Mubert.PublicClient.g.cs +++ b/src/libs/Mubert/Generated/Mubert.PublicClient.g.cs @@ -62,6 +62,27 @@ public PublicClient( { } + /// + /// Creates a new instance of the PublicClient 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 PublicClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::Mubert.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the PublicClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Mubert/Generated/Mubert.PublicServiceClient.g.cs b/src/libs/Mubert/Generated/Mubert.PublicServiceClient.g.cs index fceaa17..6c12c5e 100644 --- a/src/libs/Mubert/Generated/Mubert.PublicServiceClient.g.cs +++ b/src/libs/Mubert/Generated/Mubert.PublicServiceClient.g.cs @@ -62,6 +62,27 @@ public PublicServiceClient( { } + /// + /// Creates a new instance of the PublicServiceClient 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 PublicServiceClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::Mubert.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the PublicServiceClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Mubert/Generated/Mubert.ServiceClient.g.cs b/src/libs/Mubert/Generated/Mubert.ServiceClient.g.cs index 5b5ea46..6f05c73 100644 --- a/src/libs/Mubert/Generated/Mubert.ServiceClient.g.cs +++ b/src/libs/Mubert/Generated/Mubert.ServiceClient.g.cs @@ -62,6 +62,27 @@ public ServiceClient( { } + /// + /// Creates a new instance of the ServiceClient 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 ServiceClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::Mubert.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the ServiceClient. /// If no httpClient is provided, a new one will be created.