From 03b7510a5d1e0df91a1cd77903e27c6399bd5489 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 5 Mar 2026 01:55:47 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- ...yAI.ITranscriptClient.CreateTranscript.g.cs | 1 + ...ssemblyAI.ITranscriptClient.UploadFile.g.cs | 1 + .../Generated/AssemblyAI.Models.Sentiment.g.cs | 18 +++++++++--------- ...lyAI.TranscriptClient.CreateTranscript.g.cs | 1 + ...AssemblyAI.TranscriptClient.UploadFile.g.cs | 1 + 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/libs/AssemblyAI/Generated/AssemblyAI.ITranscriptClient.CreateTranscript.g.cs b/src/libs/AssemblyAI/Generated/AssemblyAI.ITranscriptClient.CreateTranscript.g.cs index 7b49d66..8ab6feb 100644 --- a/src/libs/AssemblyAI/Generated/AssemblyAI.ITranscriptClient.CreateTranscript.g.cs +++ b/src/libs/AssemblyAI/Generated/AssemblyAI.ITranscriptClient.CreateTranscript.g.cs @@ -13,6 +13,7 @@ public partial interface ITranscriptClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task CreateTranscriptAsync( + global::AssemblyAI.TranscriptParams request, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/libs/AssemblyAI/Generated/AssemblyAI.ITranscriptClient.UploadFile.g.cs b/src/libs/AssemblyAI/Generated/AssemblyAI.ITranscriptClient.UploadFile.g.cs index 80dc1b6..90c7145 100644 --- a/src/libs/AssemblyAI/Generated/AssemblyAI.ITranscriptClient.UploadFile.g.cs +++ b/src/libs/AssemblyAI/Generated/AssemblyAI.ITranscriptClient.UploadFile.g.cs @@ -14,6 +14,7 @@ public partial interface ITranscriptClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UploadFileAsync( + byte[] request, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/AssemblyAI/Generated/AssemblyAI.Models.Sentiment.g.cs b/src/libs/AssemblyAI/Generated/AssemblyAI.Models.Sentiment.g.cs index dd60667..9762d3e 100644 --- a/src/libs/AssemblyAI/Generated/AssemblyAI.Models.Sentiment.g.cs +++ b/src/libs/AssemblyAI/Generated/AssemblyAI.Models.Sentiment.g.cs @@ -11,15 +11,15 @@ public enum Sentiment /// /// /// - POSITIVE, + Positive, /// /// /// - NEUTRAL, + Neutral, /// /// /// - NEGATIVE, + Negative, } /// @@ -34,9 +34,9 @@ public static string ToValueString(this Sentiment value) { return value switch { - Sentiment.POSITIVE => "POSITIVE", - Sentiment.NEUTRAL => "NEUTRAL", - Sentiment.NEGATIVE => "NEGATIVE", + Sentiment.Positive => "POSITIVE", + Sentiment.Neutral => "NEUTRAL", + Sentiment.Negative => "NEGATIVE", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -47,9 +47,9 @@ public static string ToValueString(this Sentiment value) { return value switch { - "POSITIVE" => Sentiment.POSITIVE, - "NEUTRAL" => Sentiment.NEUTRAL, - "NEGATIVE" => Sentiment.NEGATIVE, + "POSITIVE" => Sentiment.Positive, + "NEUTRAL" => Sentiment.Neutral, + "NEGATIVE" => Sentiment.Negative, _ => null, }; } diff --git a/src/libs/AssemblyAI/Generated/AssemblyAI.TranscriptClient.CreateTranscript.g.cs b/src/libs/AssemblyAI/Generated/AssemblyAI.TranscriptClient.CreateTranscript.g.cs index 6f482cb..919870f 100644 --- a/src/libs/AssemblyAI/Generated/AssemblyAI.TranscriptClient.CreateTranscript.g.cs +++ b/src/libs/AssemblyAI/Generated/AssemblyAI.TranscriptClient.CreateTranscript.g.cs @@ -30,6 +30,7 @@ partial void ProcessCreateTranscriptResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateTranscriptAsync( + global::AssemblyAI.TranscriptParams request, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/libs/AssemblyAI/Generated/AssemblyAI.TranscriptClient.UploadFile.g.cs b/src/libs/AssemblyAI/Generated/AssemblyAI.TranscriptClient.UploadFile.g.cs index acda4c8..36c2e80 100644 --- a/src/libs/AssemblyAI/Generated/AssemblyAI.TranscriptClient.UploadFile.g.cs +++ b/src/libs/AssemblyAI/Generated/AssemblyAI.TranscriptClient.UploadFile.g.cs @@ -31,6 +31,7 @@ partial void ProcessUploadFileResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UploadFileAsync( + byte[] request, global::System.Threading.CancellationToken cancellationToken = default) {