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)
{