From df55160e2ebf4093fb9f69c62fbcd2914cef04c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 11 May 2026 04:14:12 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../Creatomate.CreatomateClient.g.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/libs/Creatomate/Generated/Creatomate.CreatomateClient.g.cs b/src/libs/Creatomate/Generated/Creatomate.CreatomateClient.g.cs index d176ffc..8aacf26 100644 --- a/src/libs/Creatomate/Generated/Creatomate.CreatomateClient.g.cs +++ b/src/libs/Creatomate/Generated/Creatomate.CreatomateClient.g.cs @@ -64,6 +64,27 @@ public CreatomateClient( { } + /// + /// Creates a new instance of the CreatomateClient 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 CreatomateClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::Creatomate.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the CreatomateClient. /// If no httpClient is provided, a new one will be created.