diff --git a/src/libs/Soniox/Generated/Soniox.AnyOf.3.g.cs b/src/libs/Soniox/Generated/Soniox.AnyOf.3.g.cs
index 632b5ef..ce707a2 100644
--- a/src/libs/Soniox/Generated/Soniox.AnyOf.3.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.AnyOf.3.g.cs
@@ -4,12 +4,12 @@
namespace Soniox
{
///
- ///
+ ///
///
public readonly partial struct AnyOf : global::System.IEquatable>
{
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T1? Value1 { get; init; }
@@ -18,7 +18,7 @@ namespace Soniox
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))]
@@ -26,7 +26,7 @@ namespace Soniox
public bool IsValue1 => Value1 != null;
///
- ///
+ ///
///
public bool TryPickValue1(
#if NET6_0_OR_GREATER
@@ -39,14 +39,14 @@ public bool TryPickValue1(
}
///
- ///
+ ///
///
public T1 PickValue1() => IsValue1
? Value1!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value1' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T2? Value2 { get; init; }
@@ -55,7 +55,7 @@ public T1 PickValue1() => IsValue1
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))]
@@ -63,7 +63,7 @@ public T1 PickValue1() => IsValue1
public bool IsValue2 => Value2 != null;
///
- ///
+ ///
///
public bool TryPickValue2(
#if NET6_0_OR_GREATER
@@ -76,14 +76,14 @@ public bool TryPickValue2(
}
///
- ///
+ ///
///
public T2 PickValue2() => IsValue2
? Value2!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value2' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T3? Value3 { get; init; }
@@ -92,7 +92,7 @@ public T2 PickValue2() => IsValue2
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value3))]
@@ -100,7 +100,7 @@ public T2 PickValue2() => IsValue2
public bool IsValue3 => Value3 != null;
///
- ///
+ ///
///
public bool TryPickValue3(
#if NET6_0_OR_GREATER
@@ -113,23 +113,23 @@ public bool TryPickValue3(
}
///
- ///
+ ///
///
public T3 PickValue3() => IsValue3
? Value3!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value3' but the value was {ToString()}.");
///
- ///
+ ///
///
public static implicit operator AnyOf(T1 value) => new AnyOf((T1?)value);
///
- ///
+ ///
///
public static implicit operator T1?(AnyOf @this) => @this.Value1;
///
- ///
+ ///
///
public AnyOf(T1? value)
{
@@ -137,22 +137,22 @@ public AnyOf(T1? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue1(T1? value) => new AnyOf(value);
///
- ///
+ ///
///
public static implicit operator AnyOf(T2 value) => new AnyOf((T2?)value);
///
- ///
+ ///
///
public static implicit operator T2?(AnyOf @this) => @this.Value2;
///
- ///
+ ///
///
public AnyOf(T2? value)
{
@@ -160,22 +160,22 @@ public AnyOf(T2? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue2(T2? value) => new AnyOf(value);
///
- ///
+ ///
///
public static implicit operator AnyOf(T3 value) => new AnyOf((T3?)value);
///
- ///
+ ///
///
public static implicit operator T3?(AnyOf @this) => @this.Value3;
///
- ///
+ ///
///
public AnyOf(T3? value)
{
@@ -183,12 +183,12 @@ public AnyOf(T3? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue3(T3? value) => new AnyOf(value);
///
- ///
+ ///
///
public AnyOf(
T1? value1,
@@ -202,25 +202,25 @@ public AnyOf(
}
///
- ///
+ ///
///
public object? Object =>
Value3 as object ??
Value2 as object ??
- Value1 as object
+ Value1 as object
;
///
- ///
+ ///
///
public override string? ToString() =>
Value1?.ToString() ??
Value2?.ToString() ??
- Value3?.ToString()
+ Value3?.ToString()
;
///
- ///
+ ///
///
public bool Validate()
{
@@ -228,7 +228,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public TResult? Match(
global::System.Func? value1 = null,
@@ -258,7 +258,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public void Match(
global::System.Action? value1 = null,
@@ -288,7 +288,7 @@ public void Match(
}
///
- ///
+ ///
///
public void Switch(
global::System.Action? value1 = null,
@@ -316,7 +316,7 @@ public void Switch(
}
///
- ///
+ ///
///
public override int GetHashCode()
{
@@ -339,19 +339,19 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
}
///
- ///
+ ///
///
public bool Equals(AnyOf other)
{
return
global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) &&
global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2) &&
- global::System.Collections.Generic.EqualityComparer.Default.Equals(Value3, other.Value3)
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(Value3, other.Value3)
;
}
///
- ///
+ ///
///
public static bool operator ==(AnyOf obj1, AnyOf obj2)
{
@@ -359,7 +359,7 @@ public bool Equals(AnyOf other)
}
///
- ///
+ ///
///
public static bool operator !=(AnyOf obj1, AnyOf obj2)
{
@@ -367,7 +367,7 @@ public bool Equals(AnyOf other)
}
///
- ///
+ ///
///
public override bool Equals(object? obj)
{
diff --git a/src/libs/Soniox/Generated/Soniox.AuthClient.CreateTemporaryApiKey.g.cs b/src/libs/Soniox/Generated/Soniox.AuthClient.CreateTemporaryApiKey.g.cs
index 31bb977..7f3e43e 100644
--- a/src/libs/Soniox/Generated/Soniox.AuthClient.CreateTemporaryApiKey.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.AuthClient.CreateTemporaryApiKey.g.cs
@@ -141,7 +141,7 @@ partial void ProcessCreateTemporaryApiKeyResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
var __httpRequestContent = new global::System.Net.Http.StringContent(
@@ -339,7 +339,7 @@ partial void ProcessCreateTemporaryApiKeyResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_request`: One or more body fields are missing or invalid (`usage_type`, `expires_in_seconds` out of range, `client_reference_id` too long, `max_session_duration_seconds` out of range, etc.). Inspect `validation_errors`.
+ // Invalid request. Error types: - `invalid_request`: One or more body fields are missing or invalid (`usage_type`, `expires_in_seconds` out of range, `client_reference_id` too long, `max_session_duration_seconds` out of range, etc.). Inspect `validation_errors`.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -413,7 +413,7 @@ partial void ProcessCreateTemporaryApiKeyResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.AuthClient.g.cs b/src/libs/Soniox/Generated/Soniox.AuthClient.g.cs
index debee3b..d646a57 100644
--- a/src/libs/Soniox/Generated/Soniox.AuthClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.AuthClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class AuthClient : global::Soniox.IAuthClient, global::Sys
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.ConcurrencyLimitsClient.GetConcurrencyLimits.g.cs b/src/libs/Soniox/Generated/Soniox.ConcurrencyLimitsClient.GetConcurrencyLimits.g.cs
index f97b476..2d75243 100644
--- a/src/libs/Soniox/Generated/Soniox.ConcurrencyLimitsClient.GetConcurrencyLimits.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ConcurrencyLimitsClient.GetConcurrencyLimits.g.cs
@@ -126,7 +126,7 @@ partial void ProcessGetConcurrencyLimitsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -391,7 +391,7 @@ partial void ProcessGetConcurrencyLimitsResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate or usage limit exceeded. Error types: - `limit_exceeded`: - `Requests per minute limit has been exceeded for your organization.` - `Requests per minute limit has been exceeded for your project.`
+ // Rate or usage limit exceeded. Error types: - `limit_exceeded`: - `Requests per minute limit has been exceeded for your organization.` - `Requests per minute limit has been exceeded for your project.`
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.ConcurrencyLimitsClient.g.cs b/src/libs/Soniox/Generated/Soniox.ConcurrencyLimitsClient.g.cs
index 1398284..950be9c 100644
--- a/src/libs/Soniox/Generated/Soniox.ConcurrencyLimitsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ConcurrencyLimitsClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class ConcurrencyLimitsClient : global::Soniox.IConcurrenc
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.ConcurrentStreamsHistoryClient.GetConcurrentStreamsHistory.g.cs b/src/libs/Soniox/Generated/Soniox.ConcurrentStreamsHistoryClient.GetConcurrentStreamsHistory.g.cs
index 24264d5..4126e38 100644
--- a/src/libs/Soniox/Generated/Soniox.ConcurrentStreamsHistoryClient.GetConcurrentStreamsHistory.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ConcurrentStreamsHistoryClient.GetConcurrentStreamsHistory.g.cs
@@ -182,7 +182,7 @@ partial void ProcessGetConcurrentStreamsHistoryResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -377,7 +377,7 @@ partial void ProcessGetConcurrentStreamsHistoryResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_request`: A query parameter is missing or invalid. Common causes: `period_sec` is not one of `60`, `3600`, `86400`, `start_time` / `end_time` not parseable as ISO 8601, `end_time` not strictly after `start_time`, the window between them exceeds the maximum for the requested `period_sec`, or the window would return more than 20000 entries.
+ // Invalid request. Error types: - `invalid_request`: A query parameter is missing or invalid. Common causes: `period_sec` is not one of `60`, `3600`, `86400`, `start_time` / `end_time` not parseable as ISO 8601, `end_time` not strictly after `start_time`, the window between them exceeds the maximum for the requested `period_sec`, or the window would return more than 20000 entries.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -451,7 +451,7 @@ partial void ProcessGetConcurrentStreamsHistoryResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.ConcurrentStreamsHistoryClient.g.cs b/src/libs/Soniox/Generated/Soniox.ConcurrentStreamsHistoryClient.g.cs
index 1c70910..3b2abe8 100644
--- a/src/libs/Soniox/Generated/Soniox.ConcurrentStreamsHistoryClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ConcurrentStreamsHistoryClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class ConcurrentStreamsHistoryClient : global::Soniox.ICon
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.FilesClient.DeleteFile.g.cs b/src/libs/Soniox/Generated/Soniox.FilesClient.DeleteFile.g.cs
index 98c6025..c2fda21 100644
--- a/src/libs/Soniox/Generated/Soniox.FilesClient.DeleteFile.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.FilesClient.DeleteFile.g.cs
@@ -127,7 +127,7 @@ await DeleteFileAsResponseAsync(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -356,7 +356,7 @@ await DeleteFileAsResponseAsync(
h => h.Key,
h => h.Value));
}
- // File not found. Error types: - `file_not_found`: No file with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
+ // File not found. Error types: - `file_not_found`: No file with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
@@ -393,7 +393,7 @@ await DeleteFileAsResponseAsync(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.FilesClient.GetFile.g.cs b/src/libs/Soniox/Generated/Soniox.FilesClient.GetFile.g.cs
index 07c1328..ec57826 100644
--- a/src/libs/Soniox/Generated/Soniox.FilesClient.GetFile.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.FilesClient.GetFile.g.cs
@@ -134,7 +134,7 @@ partial void ProcessGetFileResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -363,7 +363,7 @@ partial void ProcessGetFileResponseContent(
h => h.Key,
h => h.Value));
}
- // File not found. Error types: - `file_not_found`: No file with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
+ // File not found. Error types: - `file_not_found`: No file with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
@@ -400,7 +400,7 @@ partial void ProcessGetFileResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.FilesClient.GetFiles.g.cs b/src/libs/Soniox/Generated/Soniox.FilesClient.GetFiles.g.cs
index 73deb6f..87a27a4 100644
--- a/src/libs/Soniox/Generated/Soniox.FilesClient.GetFiles.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.FilesClient.GetFiles.g.cs
@@ -156,7 +156,7 @@ partial void ProcessGetFilesResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -349,7 +349,7 @@ partial void ProcessGetFilesResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_cursor`: The `cursor` parameter is invalid. Omit `cursor` to start pagination from the beginning.
+ // Invalid request. Error types: - `invalid_cursor`: The `cursor` parameter is invalid. Omit `cursor` to start pagination from the beginning.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -423,7 +423,7 @@ partial void ProcessGetFilesResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, total file count, or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, total file count, or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.FilesClient.GetFilesCount.g.cs b/src/libs/Soniox/Generated/Soniox.FilesClient.GetFilesCount.g.cs
index e49f631..038be18 100644
--- a/src/libs/Soniox/Generated/Soniox.FilesClient.GetFilesCount.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.FilesClient.GetFilesCount.g.cs
@@ -126,7 +126,7 @@ partial void ProcessGetFilesCountResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -354,7 +354,7 @@ partial void ProcessGetFilesCountResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.FilesClient.UploadFile.g.cs b/src/libs/Soniox/Generated/Soniox.FilesClient.UploadFile.g.cs
index 1e41b6a..493baa4 100644
--- a/src/libs/Soniox/Generated/Soniox.FilesClient.UploadFile.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.FilesClient.UploadFile.g.cs
@@ -139,7 +139,7 @@ partial void ProcessUploadFileResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -381,7 +381,7 @@ request.Filename is null
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_request`: One or more parts of the multipart body are missing or invalid (missing `file`, filename or `client_reference_id` too long, malformed multipart body), or the uploaded file exceeds the per-file upload limit.
+ // Invalid request. Error types: - `invalid_request`: One or more parts of the multipart body are missing or invalid (missing `file`, filename or `client_reference_id` too long, malformed multipart body), or the uploaded file exceeds the per-file upload limit.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -455,7 +455,7 @@ request.Filename is null
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, the total file count or total file size cap (organization or project), or this upload would exceed those caps. The `message` describes which limit was hit. Delete unused files via `DELETE /v1/files/{id}` or request a higher limit in the Soniox Console.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, the total file count or total file size cap (organization or project), or this upload would exceed those caps. The `message` describes which limit was hit. Delete unused files via `DELETE /v1/files/{id}` or request a higher limit in the Soniox Console.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
@@ -751,7 +751,7 @@ request.Filename is null
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -993,7 +993,7 @@ request.Filename is null
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_request`: One or more parts of the multipart body are missing or invalid (missing `file`, filename or `client_reference_id` too long, malformed multipart body), or the uploaded file exceeds the per-file upload limit.
+ // Invalid request. Error types: - `invalid_request`: One or more parts of the multipart body are missing or invalid (missing `file`, filename or `client_reference_id` too long, malformed multipart body), or the uploaded file exceeds the per-file upload limit.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -1067,7 +1067,7 @@ request.Filename is null
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, the total file count or total file size cap (organization or project), or this upload would exceed those caps. The `message` describes which limit was hit. Delete unused files via `DELETE /v1/files/{id}` or request a higher limit in the Soniox Console.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, the total file count or total file size cap (organization or project), or this upload would exceed those caps. The `message` describes which limit was hit. Delete unused files via `DELETE /v1/files/{id}` or request a higher limit in the Soniox Console.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
@@ -1319,7 +1319,7 @@ request.Filename is null
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -1561,7 +1561,7 @@ request.Filename is null
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_request`: One or more parts of the multipart body are missing or invalid (missing `file`, filename or `client_reference_id` too long, malformed multipart body), or the uploaded file exceeds the per-file upload limit.
+ // Invalid request. Error types: - `invalid_request`: One or more parts of the multipart body are missing or invalid (missing `file`, filename or `client_reference_id` too long, malformed multipart body), or the uploaded file exceeds the per-file upload limit.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -1635,7 +1635,7 @@ request.Filename is null
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, the total file count or total file size cap (organization or project), or this upload would exceed those caps. The `message` describes which limit was hit. Delete unused files via `DELETE /v1/files/{id}` or request a higher limit in the Soniox Console.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, the total file count or total file size cap (organization or project), or this upload would exceed those caps. The `message` describes which limit was hit. Delete unused files via `DELETE /v1/files/{id}` or request a higher limit in the Soniox Console.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.FilesClient.g.cs b/src/libs/Soniox/Generated/Soniox.FilesClient.g.cs
index 7839084..5900dee 100644
--- a/src/libs/Soniox/Generated/Soniox.FilesClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.FilesClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class FilesClient : global::Soniox.IFilesClient, global::S
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.IAuthClient.g.cs b/src/libs/Soniox/Generated/Soniox.IAuthClient.g.cs
index c852513..bf5d8d7 100644
--- a/src/libs/Soniox/Generated/Soniox.IAuthClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.IAuthClient.g.cs
@@ -39,7 +39,7 @@ public partial interface IAuthClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.IConcurrencyLimitsClient.g.cs b/src/libs/Soniox/Generated/Soniox.IConcurrencyLimitsClient.g.cs
index df4b9af..1356c50 100644
--- a/src/libs/Soniox/Generated/Soniox.IConcurrencyLimitsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.IConcurrencyLimitsClient.g.cs
@@ -39,7 +39,7 @@ public partial interface IConcurrencyLimitsClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.IConcurrentStreamsHistoryClient.g.cs b/src/libs/Soniox/Generated/Soniox.IConcurrentStreamsHistoryClient.g.cs
index b1e77af..3301a67 100644
--- a/src/libs/Soniox/Generated/Soniox.IConcurrentStreamsHistoryClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.IConcurrentStreamsHistoryClient.g.cs
@@ -39,7 +39,7 @@ public partial interface IConcurrentStreamsHistoryClient : global::System.IDispo
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.IFilesClient.g.cs b/src/libs/Soniox/Generated/Soniox.IFilesClient.g.cs
index b0bcbdd..baa60ef 100644
--- a/src/libs/Soniox/Generated/Soniox.IFilesClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.IFilesClient.g.cs
@@ -39,7 +39,7 @@ public partial interface IFilesClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.IModelsClient.g.cs b/src/libs/Soniox/Generated/Soniox.IModelsClient.g.cs
index 7afab46..1e83e70 100644
--- a/src/libs/Soniox/Generated/Soniox.IModelsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.IModelsClient.g.cs
@@ -39,7 +39,7 @@ public partial interface IModelsClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.ISonioxClient.g.cs b/src/libs/Soniox/Generated/Soniox.ISonioxClient.g.cs
index d578e72..270f622 100644
--- a/src/libs/Soniox/Generated/Soniox.ISonioxClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ISonioxClient.g.cs
@@ -60,63 +60,63 @@ public partial interface ISonioxClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
///
- ///
+ ///
///
public AuthClient Auth { get; }
///
- ///
+ ///
///
public ConcurrencyLimitsClient ConcurrencyLimits { get; }
///
- ///
+ ///
///
public ConcurrentStreamsHistoryClient ConcurrentStreamsHistory { get; }
///
- ///
+ ///
///
public FilesClient Files { get; }
///
- ///
+ ///
///
public ModelsClient Models { get; }
///
- ///
+ ///
///
public TranscriptionsClient Transcriptions { get; }
///
- ///
+ ///
///
public TtsClient Tts { get; }
///
- ///
+ ///
///
public TtsModelsClient TtsModels { get; }
///
- ///
+ ///
///
public UsageLogsClient UsageLogs { get; }
///
- ///
+ ///
///
public UsageSummaryClient UsageSummary { get; }
///
- ///
+ ///
///
public VoicesClient Voices { get; }
diff --git a/src/libs/Soniox/Generated/Soniox.ITranscriptionsClient.g.cs b/src/libs/Soniox/Generated/Soniox.ITranscriptionsClient.g.cs
index 71a00dd..5cc7be8 100644
--- a/src/libs/Soniox/Generated/Soniox.ITranscriptionsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ITranscriptionsClient.g.cs
@@ -39,7 +39,7 @@ public partial interface ITranscriptionsClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.ITtsClient.g.cs b/src/libs/Soniox/Generated/Soniox.ITtsClient.g.cs
index 4d93b49..ec40e5a 100644
--- a/src/libs/Soniox/Generated/Soniox.ITtsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ITtsClient.g.cs
@@ -39,7 +39,7 @@ public partial interface ITtsClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.ITtsModelsClient.g.cs b/src/libs/Soniox/Generated/Soniox.ITtsModelsClient.g.cs
index 8ee1ae7..e0cf60d 100644
--- a/src/libs/Soniox/Generated/Soniox.ITtsModelsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ITtsModelsClient.g.cs
@@ -39,7 +39,7 @@ public partial interface ITtsModelsClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.IUsageLogsClient.g.cs b/src/libs/Soniox/Generated/Soniox.IUsageLogsClient.g.cs
index 0e2be7d..6f45d60 100644
--- a/src/libs/Soniox/Generated/Soniox.IUsageLogsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.IUsageLogsClient.g.cs
@@ -39,7 +39,7 @@ public partial interface IUsageLogsClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.IUsageSummaryClient.g.cs b/src/libs/Soniox/Generated/Soniox.IUsageSummaryClient.g.cs
index 79ae672..e4d9dfc 100644
--- a/src/libs/Soniox/Generated/Soniox.IUsageSummaryClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.IUsageSummaryClient.g.cs
@@ -39,7 +39,7 @@ public partial interface IUsageSummaryClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.IVoicesClient.g.cs b/src/libs/Soniox/Generated/Soniox.IVoicesClient.g.cs
index 6db3508..58a4fd0 100644
--- a/src/libs/Soniox/Generated/Soniox.IVoicesClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.IVoicesClient.g.cs
@@ -39,7 +39,7 @@ public partial interface IVoicesClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.ConcurrentStreamKind.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.ConcurrentStreamKind.g.cs
index dc28e6d..76cd70c 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.ConcurrentStreamKind.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.ConcurrentStreamKind.g.cs
@@ -20,7 +20,7 @@ public sealed class ConcurrentStreamKindJsonConverter : global::System.Text.Json
{
return global::Soniox.ConcurrentStreamKindExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.ConcurrentStreamKindNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.ConcurrentStreamKindNullable.g.cs
index 19c177f..20a28cf 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.ConcurrentStreamKindNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.ConcurrentStreamKindNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class ConcurrentStreamKindNullableJsonConverter : global::System.T
{
return global::Soniox.ConcurrentStreamKindExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetConcurrentStreamsHistoryKind2.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetConcurrentStreamsHistoryKind2.g.cs
index 9e6da2b..7b71cdd 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetConcurrentStreamsHistoryKind2.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetConcurrentStreamsHistoryKind2.g.cs
@@ -20,7 +20,7 @@ public sealed class GetConcurrentStreamsHistoryKind2JsonConverter : global::Syst
{
return global::Soniox.GetConcurrentStreamsHistoryKind2Extensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetConcurrentStreamsHistoryKind2Nullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetConcurrentStreamsHistoryKind2Nullable.g.cs
index 8a44b04..78236cf 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetConcurrentStreamsHistoryKind2Nullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetConcurrentStreamsHistoryKind2Nullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetConcurrentStreamsHistoryKind2NullableJsonConverter : glob
{
return global::Soniox.GetConcurrentStreamsHistoryKind2Extensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsPayloadSort.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsPayloadSort.g.cs
index 93aceca..e6cd1bd 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsPayloadSort.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsPayloadSort.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsageLogsPayloadSortJsonConverter : global::System.Text.J
{
return global::Soniox.GetUsageLogsPayloadSortExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsPayloadSortNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsPayloadSortNullable.g.cs
index 839a480..d0accb5 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsPayloadSortNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsPayloadSortNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsageLogsPayloadSortNullableJsonConverter : global::Syste
{
return global::Soniox.GetUsageLogsPayloadSortExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsSort2.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsSort2.g.cs
index e4fb44f..1ee4f0a 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsSort2.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsSort2.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsageLogsSort2JsonConverter : global::System.Text.Json.Se
{
return global::Soniox.GetUsageLogsSort2Extensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsSort2Nullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsSort2Nullable.g.cs
index 737a58b..07a31b8 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsSort2Nullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.GetUsageLogsSort2Nullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsageLogsSort2NullableJsonConverter : global::System.Text
{
return global::Soniox.GetUsageLogsSort2Extensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TTSVoiceGender.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TTSVoiceGender.g.cs
index 45611dd..bf6c644 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TTSVoiceGender.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TTSVoiceGender.g.cs
@@ -20,7 +20,7 @@ public sealed class TTSVoiceGenderJsonConverter : global::System.Text.Json.Seria
{
return global::Soniox.TTSVoiceGenderExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TTSVoiceGenderNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TTSVoiceGenderNullable.g.cs
index e7fd025..7ffef42 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TTSVoiceGenderNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TTSVoiceGenderNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TTSVoiceGenderNullableJsonConverter : global::System.Text.Js
{
return global::Soniox.TTSVoiceGenderExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TemporaryApiKeyUsageType.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TemporaryApiKeyUsageType.g.cs
index 60ba694..e5539c3 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TemporaryApiKeyUsageType.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TemporaryApiKeyUsageType.g.cs
@@ -20,7 +20,7 @@ public sealed class TemporaryApiKeyUsageTypeJsonConverter : global::System.Text.
{
return global::Soniox.TemporaryApiKeyUsageTypeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TemporaryApiKeyUsageTypeNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TemporaryApiKeyUsageTypeNullable.g.cs
index 74a6bd6..7ef0ea0 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TemporaryApiKeyUsageTypeNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TemporaryApiKeyUsageTypeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TemporaryApiKeyUsageTypeNullableJsonConverter : global::Syst
{
return global::Soniox.TemporaryApiKeyUsageTypeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionMode.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionMode.g.cs
index 18a5fe5..aedf160 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionMode.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionMode.g.cs
@@ -20,7 +20,7 @@ public sealed class TranscriptionModeJsonConverter : global::System.Text.Json.Se
{
return global::Soniox.TranscriptionModeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionModeNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionModeNullable.g.cs
index 3ca0dfa..e71978e 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionModeNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionModeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TranscriptionModeNullableJsonConverter : global::System.Text
{
return global::Soniox.TranscriptionModeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionStatus.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionStatus.g.cs
index 26ea220..a1ada22 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionStatus.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionStatus.g.cs
@@ -20,7 +20,7 @@ public sealed class TranscriptionStatusJsonConverter : global::System.Text.Json.
{
return global::Soniox.TranscriptionStatusExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionStatusNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionStatusNullable.g.cs
index a8bb7d5..45c1839 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionStatusNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranscriptionStatusNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TranscriptionStatusNullableJsonConverter : global::System.Te
{
return global::Soniox.TranscriptionStatusExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranslationConfigType.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranslationConfigType.g.cs
index f34a60d..0f940f9 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranslationConfigType.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranslationConfigType.g.cs
@@ -20,7 +20,7 @@ public sealed class TranslationConfigTypeJsonConverter : global::System.Text.Jso
{
return global::Soniox.TranslationConfigTypeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranslationConfigTypeNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranslationConfigTypeNullable.g.cs
index 2755f8f..bcfd7cb 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.TranslationConfigTypeNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.TranslationConfigTypeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TranslationConfigTypeNullableJsonConverter : global::System.
{
return global::Soniox.TranslationConfigTypeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.UnixTimestamp.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.UnixTimestamp.g.cs
index 5d565c0..9d0cb6e 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.UnixTimestamp.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.UnixTimestamp.g.cs
@@ -19,7 +19,7 @@ public class UnixTimestampJsonConverter : global::System.Text.Json.Serialization
{
return global::System.DateTimeOffset.FromUnixTimeSeconds(unixTimestamp);
}
-
+
return global::System.DateTimeOffset.FromUnixTimeMilliseconds(unixTimestamp);
}
if (reader.TryGetInt32(out int unixTimestampInt))
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.UsageLogsSort.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.UsageLogsSort.g.cs
index b7e27b8..f2912e8 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.UsageLogsSort.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.UsageLogsSort.g.cs
@@ -20,7 +20,7 @@ public sealed class UsageLogsSortJsonConverter : global::System.Text.Json.Serial
{
return global::Soniox.UsageLogsSortExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.UsageLogsSortNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.UsageLogsSortNullable.g.cs
index e46278d..96781cb 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.UsageLogsSortNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.UsageLogsSortNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class UsageLogsSortNullableJsonConverter : global::System.Text.Jso
{
return global::Soniox.UsageLogsSortExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.VoiceModelStatus.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.VoiceModelStatus.g.cs
index 3e12c36..1db7141 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.VoiceModelStatus.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.VoiceModelStatus.g.cs
@@ -20,7 +20,7 @@ public sealed class VoiceModelStatusJsonConverter : global::System.Text.Json.Ser
{
return global::Soniox.VoiceModelStatusExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonConverters.VoiceModelStatusNullable.g.cs b/src/libs/Soniox/Generated/Soniox.JsonConverters.VoiceModelStatusNullable.g.cs
index 6058e13..a1936c7 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonConverters.VoiceModelStatusNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonConverters.VoiceModelStatusNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class VoiceModelStatusNullableJsonConverter : global::System.Text.
{
return global::Soniox.VoiceModelStatusExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.JsonSerializerContext.g.cs b/src/libs/Soniox/Generated/Soniox.JsonSerializerContext.g.cs
index c0ee424..6aef6a0 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonSerializerContext.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonSerializerContext.g.cs
@@ -7,7 +7,7 @@
namespace Soniox
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
diff --git a/src/libs/Soniox/Generated/Soniox.JsonSerializerContextTypes.g.cs b/src/libs/Soniox/Generated/Soniox.JsonSerializerContextTypes.g.cs
index 8917e3f..b675d9f 100644
--- a/src/libs/Soniox/Generated/Soniox.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.JsonSerializerContextTypes.g.cs
@@ -6,448 +6,448 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class JsonSerializerContextTypes
{
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringStringDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringObjectDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Text.Json.JsonElement? JsonElement { get; set; }
///
- ///
+ ///
///
public global::Soniox.Voice? Type0 { get; set; }
///
- ///
+ ///
///
public global::System.Guid? Type1 { get; set; }
///
- ///
+ ///
///
public string? Type2 { get; set; }
///
- ///
+ ///
///
public global::System.DateTime? Type3 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type4 { get; set; }
///
- ///
+ ///
///
public global::Soniox.VoiceModel? Type5 { get; set; }
///
- ///
+ ///
///
public global::Soniox.VoiceModelStatus? Type6 { get; set; }
///
- ///
+ ///
///
public object? Type7 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetVoicesResponse? Type8 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type9 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetVoicesCountResponse? Type10 { get; set; }
///
- ///
+ ///
///
public int? Type11 { get; set; }
///
- ///
+ ///
///
public global::Soniox.RecomputeVoicePayload? Type12 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetFilesPayload? Type13 { get; set; }
///
- ///
+ ///
///
public global::Soniox.File? Type14 { get; set; }
///
- ///
+ ///
///
public long? Type15 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetFilesCountResponse? Type16 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetFilesResponse? Type17 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type18 { get; set; }
///
- ///
+ ///
///
public global::Soniox.ApiError? Type19 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type20 { get; set; }
///
- ///
+ ///
///
public global::Soniox.ApiErrorValidationError? Type21 { get; set; }
///
- ///
+ ///
///
public global::Soniox.UploadFilePayload? Type22 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetTranscriptionsPayload? Type23 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetTranscriptionsCountResponse? Type24 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetTranscriptionsResponse? Type25 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type26 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Transcription? Type27 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TranscriptionStatus? Type28 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type29 { get; set; }
///
- ///
+ ///
///
public bool? Type30 { get; set; }
///
- ///
+ ///
///
public global::Soniox.CreateTranscriptionPayload? Type31 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TranslationConfig? Type32 { get; set; }
///
- ///
+ ///
///
public global::Soniox.AnyOf? Type33 { get; set; }
///
- ///
+ ///
///
public global::Soniox.StructuredContext? Type34 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type35 { get; set; }
///
- ///
+ ///
///
public global::Soniox.StructuredContextGeneralItem? Type36 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type37 { get; set; }
///
- ///
+ ///
///
public global::Soniox.StructuredContextTranslationTerm? Type38 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TranslationConfigType? Type39 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TranscriptionTranscript? Type40 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type41 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TranscriptionTranscriptToken? Type42 { get; set; }
///
- ///
+ ///
///
public double? Type43 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetModelsResponse? Type44 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type45 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Model? Type46 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Language? Type47 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TranscriptionMode? Type48 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type49 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type50 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TranslationTarget? Type51 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetTTSModelsResponse? Type52 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type53 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TTSModel? Type54 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type55 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TTSVoice? Type56 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TTSVoiceGender? Type57 { get; set; }
///
- ///
+ ///
///
public global::Soniox.CreateTTSPayload? Type58 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TTSApiError? Type59 { get; set; }
///
- ///
+ ///
///
public global::Soniox.CreateTemporaryApiKeyResponse? Type60 { get; set; }
///
- ///
+ ///
///
public global::Soniox.CreateTemporaryApiKeyPayload? Type61 { get; set; }
///
- ///
+ ///
///
public global::Soniox.TemporaryApiKeyUsageType? Type62 { get; set; }
///
- ///
+ ///
///
public global::Soniox.UsageLogsSort? Type63 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetUsageLogsPayload? Type64 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetUsageLogsPayloadSort? Type65 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetUsageLogsResponse? Type66 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type67 { get; set; }
///
- ///
+ ///
///
public global::Soniox.UsageLogEntry? Type68 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetUsageSummaryResponse? Type69 { get; set; }
///
- ///
+ ///
///
public global::Soniox.UsageSummaryEntry? Type70 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type71 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type72 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type73 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetConcurrencyLimitsResponse? Type74 { get; set; }
///
- ///
+ ///
///
public global::Soniox.ScopeValues? Type75 { get; set; }
///
- ///
+ ///
///
public global::Soniox.CurrentValues? Type76 { get; set; }
///
- ///
+ ///
///
public global::Soniox.LimitValues? Type77 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetConcurrentStreamsHistoryResponse? Type78 { get; set; }
///
- ///
+ ///
///
public global::Soniox.ConcurrentStreamKind? Type79 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type80 { get; set; }
///
- ///
+ ///
///
public global::Soniox.ConcurrentStreamsHistoryEntry? Type81 { get; set; }
///
- ///
+ ///
///
public global::Soniox.UploadFileRequest? Type82 { get; set; }
///
- ///
+ ///
///
public byte[]? Type83 { get; set; }
///
- ///
+ ///
///
public global::Soniox.CreateVoiceRequest? Type84 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetUsageLogsSort2? Type85 { get; set; }
///
- ///
+ ///
///
public global::Soniox.GetConcurrentStreamsHistoryKind2? Type86 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType0 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType1 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType2 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType3 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType4 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType5 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType6 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType7 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType8 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType9 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType10 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType11 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType12 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType13 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType14 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType15 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType16 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType17 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType18 { get; set; }
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ApiError.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ApiError.g.cs
index d958d0b..01cadfe 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.ApiError.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.ApiError.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class ApiError
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ApiErrorValidationError.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ApiErrorValidationError.g.cs
index a7f3794..40117db 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.ApiErrorValidationError.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.ApiErrorValidationError.g.cs
@@ -4,26 +4,26 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class ApiErrorValidationError
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("error_type")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string ErrorType { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("location")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string Location { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("message")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ConcurrentStreamKind.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ConcurrentStreamKind.g.cs
index ef96754..a2a5f6e 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.ConcurrentStreamKind.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.ConcurrentStreamKind.g.cs
@@ -4,16 +4,16 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum ConcurrentStreamKind
{
///
- ///
+ ///
///
Stt,
///
- ///
+ ///
///
Tts,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ConcurrentStreamsHistoryEntry.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ConcurrentStreamsHistoryEntry.g.cs
index 809caee..baa904c 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.ConcurrentStreamsHistoryEntry.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.ConcurrentStreamsHistoryEntry.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class ConcurrentStreamsHistoryEntry
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayload.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayload.g.cs
index 45d706e..ccda276 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayload.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayload.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class CreateTranscriptionPayload
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateVoiceRequest.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateVoiceRequest.g.cs
index d302c1d..7a9115f 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateVoiceRequest.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.CreateVoiceRequest.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class CreateVoiceRequest
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CurrentValues.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CurrentValues.g.cs
index ff34d1c..d46ccff 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.CurrentValues.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.CurrentValues.g.cs
@@ -9,14 +9,14 @@ namespace Soniox
public sealed partial class CurrentValues
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("transcribe_concurrent")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int TranscribeConcurrent { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("tts_concurrent")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetConcurrencyLimitsResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetConcurrencyLimitsResponse.g.cs
index 9264b80..1103546 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetConcurrencyLimitsResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetConcurrencyLimitsResponse.g.cs
@@ -4,19 +4,19 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetConcurrencyLimitsResponse
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("project")]
[global::System.Text.Json.Serialization.JsonRequired]
public required global::Soniox.ScopeValues Project { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("organization")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetConcurrentStreamsHistoryKind2.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetConcurrentStreamsHistoryKind2.g.cs
index 9f07fb0..9da3a2b 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetConcurrentStreamsHistoryKind2.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetConcurrentStreamsHistoryKind2.g.cs
@@ -4,16 +4,16 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum GetConcurrentStreamsHistoryKind2
{
///
- ///
+ ///
///
Stt,
///
- ///
+ ///
///
Tts,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetConcurrentStreamsHistoryResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetConcurrentStreamsHistoryResponse.g.cs
index 0ec93a7..50c14f8 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetConcurrentStreamsHistoryResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetConcurrentStreamsHistoryResponse.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetConcurrentStreamsHistoryResponse
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetFilesCountResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetFilesCountResponse.g.cs
index fadf374..5d2dc9e 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetFilesCountResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetFilesCountResponse.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetFilesCountResponse
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayload.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayload.g.cs
index 5478754..75b6212 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayload.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayload.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetFilesPayload
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCountResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCountResponse.g.cs
index 3cbf844..9958a12 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCountResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCountResponse.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetTranscriptionsCountResponse
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayload.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayload.g.cs
index 0ddc4be..36a4946 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayload.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayload.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetTranscriptionsPayload
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponse.g.cs
index a44df10..68e4c7d 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponse.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetTranscriptionsResponse
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayload.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayload.g.cs
index 99f5fd6..bc0e8f3 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayload.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayload.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetUsageLogsPayload
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadSort.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadSort.g.cs
index e5d092e..d95ea21 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadSort.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadSort.g.cs
@@ -4,16 +4,16 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum GetUsageLogsPayloadSort
{
///
- ///
+ ///
///
EndTimeAsc,
///
- ///
+ ///
///
EndTimeDesc,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponse.g.cs
index 3a4a0da..e949c0d 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponse.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetUsageLogsResponse
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsSort2.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsSort2.g.cs
index d15f900..65e4da7 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsSort2.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsSort2.g.cs
@@ -4,16 +4,16 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum GetUsageLogsSort2
{
///
- ///
+ ///
///
EndTimeAsc,
///
- ///
+ ///
///
EndTimeDesc,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetUsageSummaryResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageSummaryResponse.g.cs
index e3c02e2..d472a19 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageSummaryResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetUsageSummaryResponse.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetUsageSummaryResponse
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCountResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCountResponse.g.cs
index cc8d70c..5e866a4 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCountResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCountResponse.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetVoicesCountResponse
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponse.g.cs
index efe531d..5744c89 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponse.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponse.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class GetVoicesResponse
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.Language.g.cs b/src/libs/Soniox/Generated/Soniox.Models.Language.g.cs
index 51ec628..7517c89 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.Language.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.Language.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class Language
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.LimitValues.g.cs b/src/libs/Soniox/Generated/Soniox.Models.LimitValues.g.cs
index 44afd8b..7ac9a3b 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.LimitValues.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.LimitValues.g.cs
@@ -9,13 +9,13 @@ namespace Soniox
public sealed partial class LimitValues
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("transcribe_concurrent")]
public int? TranscribeConcurrent { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("tts_concurrent")]
public int? TtsConcurrent { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.g.cs b/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.g.cs
index 3bbdfe2..df0b42e 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class LimitValuesTranscribeConcurrent
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.g.cs b/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.g.cs
index 490705c..14c19ef 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class LimitValuesTtsConcurrent
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.Model.g.cs b/src/libs/Soniox/Generated/Soniox.Models.Model.g.cs
index 89b9bf8..5c6ea7e 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.Model.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.Model.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class Model
{
@@ -50,28 +50,28 @@ public sealed partial class Model
public required global::System.Collections.Generic.IList Languages { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("supports_language_hints_strict")]
[global::System.Text.Json.Serialization.JsonRequired]
public required bool SupportsLanguageHintsStrict { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("supports_max_endpoint_delay")]
[global::System.Text.Json.Serialization.JsonRequired]
public required bool SupportsMaxEndpointDelay { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("supports_endpoint_sensitivity")]
[global::System.Text.Json.Serialization.JsonRequired]
public required bool SupportsEndpointSensitivity { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("supports_endpoint_latency_adjustment")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Soniox/Generated/Soniox.Models.RecomputeVoicePayload.g.cs b/src/libs/Soniox/Generated/Soniox.Models.RecomputeVoicePayload.g.cs
index 31142db..43ba409 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.RecomputeVoicePayload.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.RecomputeVoicePayload.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class RecomputeVoicePayload
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ScopeValues.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ScopeValues.g.cs
index 0747dd5..da890d8 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.ScopeValues.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.ScopeValues.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class ScopeValues
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.StructuredContext.g.cs b/src/libs/Soniox/Generated/Soniox.Models.StructuredContext.g.cs
index 5a601bf..7783501 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.StructuredContext.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.StructuredContext.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class StructuredContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.StructuredContextGeneralItem.g.cs b/src/libs/Soniox/Generated/Soniox.Models.StructuredContextGeneralItem.g.cs
index 2c207ca..2b0dc77 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.StructuredContextGeneralItem.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.StructuredContextGeneralItem.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class StructuredContextGeneralItem
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.StructuredContextTranslationTerm.g.cs b/src/libs/Soniox/Generated/Soniox.Models.StructuredContextTranslationTerm.g.cs
index 4c5ffa8..941ef9b 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.StructuredContextTranslationTerm.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.StructuredContextTranslationTerm.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class StructuredContextTranslationTerm
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TTSApiError.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TTSApiError.g.cs
index cffa9d2..408a350 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TTSApiError.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TTSApiError.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class TTSApiError
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TTSModel.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TTSModel.g.cs
index c30cfb2..16d8f7f 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TTSModel.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TTSModel.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class TTSModel
{
@@ -43,7 +43,7 @@ public sealed partial class TTSModel
public required global::System.Collections.Generic.IList Voices { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("supports_timestamps")]
public bool? SupportsTimestamps { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TTSVoice.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TTSVoice.g.cs
index e87db63..531e093 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TTSVoice.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TTSVoice.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class TTSVoice
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TTSVoiceGender.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TTSVoiceGender.g.cs
index 598f0f5..d3326eb 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TTSVoiceGender.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TTSVoiceGender.g.cs
@@ -4,20 +4,20 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum TTSVoiceGender
{
///
- ///
+ ///
///
Female,
///
- ///
+ ///
///
Male,
///
- ///
+ ///
///
Neutral,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TemporaryApiKeyUsageType.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TemporaryApiKeyUsageType.g.cs
index 8b011a1..7e0ea62 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TemporaryApiKeyUsageType.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TemporaryApiKeyUsageType.g.cs
@@ -4,16 +4,16 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum TemporaryApiKeyUsageType
{
///
- ///
+ ///
///
TranscribeWebsocket,
///
- ///
+ ///
///
TtsRt,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TranscriptionMode.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TranscriptionMode.g.cs
index 9a273e4..7d8fe1a 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TranscriptionMode.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TranscriptionMode.g.cs
@@ -4,16 +4,16 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum TranscriptionMode
{
///
- ///
+ ///
///
Async,
///
- ///
+ ///
///
RealTime,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TranscriptionStatus.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TranscriptionStatus.g.cs
index d58bbfc..426b00b 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TranscriptionStatus.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TranscriptionStatus.g.cs
@@ -4,24 +4,24 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum TranscriptionStatus
{
///
- ///
+ ///
///
Completed,
///
- ///
+ ///
///
Error,
///
- ///
+ ///
///
Processing,
///
- ///
+ ///
///
Queued,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfig.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfig.g.cs
index 3401ed1..3844b7b 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfig.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfig.g.cs
@@ -4,12 +4,12 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class TranslationConfig
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("type")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Soniox.JsonConverters.TranslationConfigTypeJsonConverter))]
@@ -17,19 +17,19 @@ public sealed partial class TranslationConfig
public required global::Soniox.TranslationConfigType Type { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("target_language")]
public string? TargetLanguage { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("language_a")]
public string? LanguageA { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("language_b")]
public string? LanguageB { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigLanguageA.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigLanguageA.g.cs
index 387c049..d24e8ab 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigLanguageA.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigLanguageA.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class TranslationConfigLanguageA
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigLanguageB.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigLanguageB.g.cs
index 24712d8..af3565f 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigLanguageB.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigLanguageB.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class TranslationConfigLanguageB
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigTargetLanguage.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigTargetLanguage.g.cs
index 82b35b8..d6855fd 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigTargetLanguage.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigTargetLanguage.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class TranslationConfigTargetLanguage
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigType.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigType.g.cs
index 02ce141..7d360f7 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigType.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TranslationConfigType.g.cs
@@ -4,16 +4,16 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum TranslationConfigType
{
///
- ///
+ ///
///
OneWay,
///
- ///
+ ///
///
TwoWay,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.TranslationTarget.g.cs b/src/libs/Soniox/Generated/Soniox.Models.TranslationTarget.g.cs
index 11c7e78..ab25d96 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.TranslationTarget.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.TranslationTarget.g.cs
@@ -4,26 +4,26 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class TranslationTarget
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("target_language")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string TargetLanguage { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("source_languages")]
[global::System.Text.Json.Serialization.JsonRequired]
public required global::System.Collections.Generic.IList SourceLanguages { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("exclude_source_languages")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Soniox/Generated/Soniox.Models.UploadFilePayload.g.cs b/src/libs/Soniox/Generated/Soniox.Models.UploadFilePayload.g.cs
index adc3e12..f48d21a 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.UploadFilePayload.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.UploadFilePayload.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class UploadFilePayload
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.UploadFileRequest.g.cs b/src/libs/Soniox/Generated/Soniox.Models.UploadFileRequest.g.cs
index 7ec9ec0..22c13f3 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.UploadFileRequest.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.UploadFileRequest.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class UploadFileRequest
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.UsageLogEntry.g.cs b/src/libs/Soniox/Generated/Soniox.Models.UsageLogEntry.g.cs
index bd83ead..362f3c5 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.UsageLogEntry.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.UsageLogEntry.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class UsageLogEntry
{
@@ -51,91 +51,91 @@ public sealed partial class UsageLogEntry
public required global::System.DateTime EndTime { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_text_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int InputTextTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_audio_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int InputAudioTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_audio_duration_ms")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int InputAudioDurationMs { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_text_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int OutputTextTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_audio_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int OutputAudioTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_audio_duration_ms")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int OutputAudioDurationMs { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("cost_usd")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string CostUsd { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_cost_usd")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string InputCostUsd { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_text_cost_usd")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string InputTextCostUsd { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_audio_cost_usd")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string InputAudioCostUsd { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_cost_usd")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string OutputCostUsd { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_text_cost_usd")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string OutputTextCostUsd { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_audio_cost_usd")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Soniox/Generated/Soniox.Models.UsageLogsSort.g.cs b/src/libs/Soniox/Generated/Soniox.Models.UsageLogsSort.g.cs
index 3383efd..860d45b 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.UsageLogsSort.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.UsageLogsSort.g.cs
@@ -4,16 +4,16 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum UsageLogsSort
{
///
- ///
+ ///
///
EndTimeAsc,
///
- ///
+ ///
///
EndTimeDesc,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.UsageSummaryEntry.g.cs b/src/libs/Soniox/Generated/Soniox.Models.UsageSummaryEntry.g.cs
index 79ec467..0ece616 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.UsageSummaryEntry.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.UsageSummaryEntry.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class UsageSummaryEntry
{
@@ -85,42 +85,42 @@ public sealed partial class UsageSummaryEntry
public required int TotalNumRequests { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("total_input_text_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int TotalInputTextTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("total_input_audio_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int TotalInputAudioTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("total_input_audio_duration_ms")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int TotalInputAudioDurationMs { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("total_output_text_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int TotalOutputTextTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("total_output_audio_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int TotalOutputAudioTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("total_output_audio_duration_ms")]
[global::System.Text.Json.Serialization.JsonRequired]
@@ -141,42 +141,42 @@ public sealed partial class UsageSummaryEntry
public required global::System.Collections.Generic.IList NumRequests { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_text_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required global::System.Collections.Generic.IList InputTextTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_audio_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required global::System.Collections.Generic.IList InputAudioTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_audio_duration_ms")]
[global::System.Text.Json.Serialization.JsonRequired]
public required global::System.Collections.Generic.IList InputAudioDurationMs { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_text_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required global::System.Collections.Generic.IList OutputTextTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_audio_tokens")]
[global::System.Text.Json.Serialization.JsonRequired]
public required global::System.Collections.Generic.IList OutputAudioTokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("output_audio_duration_ms")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Soniox/Generated/Soniox.Models.Voice.g.cs b/src/libs/Soniox/Generated/Soniox.Models.Voice.g.cs
index 68723d6..4fed5ba 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.Voice.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.Voice.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class Voice
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.VoiceModel.g.cs b/src/libs/Soniox/Generated/Soniox.Models.VoiceModel.g.cs
index db09466..3bce1cb 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.VoiceModel.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.VoiceModel.g.cs
@@ -4,7 +4,7 @@
namespace Soniox
{
///
- ///
+ ///
///
public sealed partial class VoiceModel
{
diff --git a/src/libs/Soniox/Generated/Soniox.Models.VoiceModelStatus.g.cs b/src/libs/Soniox/Generated/Soniox.Models.VoiceModelStatus.g.cs
index ea3a76e..6aa434d 100644
--- a/src/libs/Soniox/Generated/Soniox.Models.VoiceModelStatus.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Models.VoiceModelStatus.g.cs
@@ -4,24 +4,24 @@
namespace Soniox
{
///
- ///
+ ///
///
public enum VoiceModelStatus
{
///
- ///
+ ///
///
Failed,
///
- ///
+ ///
///
NotComputed,
///
- ///
+ ///
///
Processing,
///
- ///
+ ///
///
Ready,
}
diff --git a/src/libs/Soniox/Generated/Soniox.ModelsClient.GetModels.g.cs b/src/libs/Soniox/Generated/Soniox.ModelsClient.GetModels.g.cs
index a49abc5..164ae69 100644
--- a/src/libs/Soniox/Generated/Soniox.ModelsClient.GetModels.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ModelsClient.GetModels.g.cs
@@ -126,7 +126,7 @@ partial void ProcessGetModelsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Soniox/Generated/Soniox.ModelsClient.g.cs b/src/libs/Soniox/Generated/Soniox.ModelsClient.g.cs
index f376ae4..4c91e56 100644
--- a/src/libs/Soniox/Generated/Soniox.ModelsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.ModelsClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class ModelsClient : global::Soniox.IModelsClient, global:
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.PathBuilder.g.cs b/src/libs/Soniox/Generated/Soniox.PathBuilder.g.cs
index 18b266a..06051d4 100644
--- a/src/libs/Soniox/Generated/Soniox.PathBuilder.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.PathBuilder.g.cs
@@ -266,32 +266,32 @@ public PathBuilder AddRawQueryString(
}
///
- ///
+ ///
///
public class EndPointAuthorization
{
///
- ///
+ ///
///
public string Type { get; set; } = string.Empty;
///
- ///
+ ///
///
public string SchemeId { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Location { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Name { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Value { get; set; } = string.Empty;
}
diff --git a/src/libs/Soniox/Generated/Soniox.Polyfills.g.cs b/src/libs/Soniox/Generated/Soniox.Polyfills.g.cs
index 8f65314..8036c6d 100644
--- a/src/libs/Soniox/Generated/Soniox.Polyfills.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Polyfills.g.cs
@@ -4,13 +4,13 @@
namespace Soniox
{
///
- ///
+ ///
///
public static partial class AutoSdkPolyfills
{
#if !NET6_0_OR_GREATER
///
- ///
+ ///
///
///
///
@@ -23,7 +23,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStringAsync();
}
///
- ///
+ ///
///
///
///
@@ -36,7 +36,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStreamAsync();
}
///
- ///
+ ///
///
///
///
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.TranslationConfigType.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.TranslationConfigType.g.cs
index f4ecf2e..006fe72 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.TranslationConfigType.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.TranslationConfigType.g.cs
@@ -20,7 +20,7 @@ public sealed class TranslationConfigTypeJsonConverter : global::System.Text.Jso
{
return global::Soniox.Realtime.TranslationConfigTypeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.TranslationConfigTypeNullable.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.TranslationConfigTypeNullable.g.cs
index ace1f1c..98e82b9 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.TranslationConfigTypeNullable.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.TranslationConfigTypeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TranslationConfigTypeNullableJsonConverter : global::System.
{
return global::Soniox.Realtime.TranslationConfigTypeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.UnixTimestamp.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.UnixTimestamp.g.cs
index c5d0d54..3207747 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.UnixTimestamp.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.JsonConverters.UnixTimestamp.g.cs
@@ -19,7 +19,7 @@ public class UnixTimestampJsonConverter : global::System.Text.Json.Serialization
{
return global::System.DateTimeOffset.FromUnixTimeSeconds(unixTimestamp);
}
-
+
return global::System.DateTimeOffset.FromUnixTimeMilliseconds(unixTimestamp);
}
if (reader.TryGetInt32(out int unixTimestampInt))
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.JsonSerializerContext.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.JsonSerializerContext.g.cs
index 63557c9..42a437e 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.JsonSerializerContext.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.JsonSerializerContext.g.cs
@@ -7,7 +7,7 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.JsonSerializerContextTypes.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.JsonSerializerContextTypes.g.cs
index 8d726c3..13e4e2e 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.JsonSerializerContextTypes.g.cs
@@ -6,92 +6,92 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public sealed partial class JsonSerializerContextTypes
{
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringStringDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringObjectDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Text.Json.JsonElement? JsonElement { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.RealtimeConfig? Type0 { get; set; }
///
- ///
+ ///
///
public string? Type1 { get; set; }
///
- ///
+ ///
///
public int? Type2 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type3 { get; set; }
///
- ///
+ ///
///
public bool? Type4 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.OneOf? Type5 { get; set; }
///
- ///
+ ///
///
public object? Type6 { get; set; }
///
- ///
+ ///
///
public double? Type7 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.TranslationConfig? Type8 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.TranslationConfigType? Type9 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.RealtimeToken? Type10 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.RealtimeResult? Type11 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type12 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.RealtimeError? Type13 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.ServerEvent? Type14 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType0 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType1 { get; set; }
}
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeConfig.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeConfig.g.cs
index fcc7b06..6ce2cf1 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeConfig.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeConfig.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public sealed partial class RealtimeConfig
{
@@ -97,7 +97,7 @@ public sealed partial class RealtimeConfig
public int? EndpointLatencyAdjustmentLevel { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("translation")]
public global::Soniox.Realtime.TranslationConfig? Translation { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeConfigContext.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeConfigContext.g.cs
index 8d2de51..ba0fe74 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeConfigContext.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeConfigContext.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public sealed partial class RealtimeConfigContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeError.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeError.g.cs
index 6e604c5..b8877dc 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeError.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeError.g.cs
@@ -4,19 +4,19 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public sealed partial class RealtimeError
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("error_code")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int ErrorCode { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("error_message")]
[global::System.Text.Json.Serialization.JsonRequired]
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeResult.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeResult.g.cs
index 2ed90e2..1be476c 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeResult.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeResult.g.cs
@@ -4,30 +4,30 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public sealed partial class RealtimeResult
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("tokens")]
public global::System.Collections.Generic.IList? Tokens { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("final_audio_proc_ms")]
public int? FinalAudioProcMs { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("total_audio_proc_ms")]
public int? TotalAudioProcMs { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("finished")]
public bool? Finished { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeToken.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeToken.g.cs
index c8752fb..7445367 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeToken.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Models.RealtimeToken.g.cs
@@ -4,60 +4,60 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public sealed partial class RealtimeToken
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("text")]
public string? Text { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("start_ms")]
public int? StartMs { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("end_ms")]
public int? EndMs { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("confidence")]
public double? Confidence { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("speaker")]
public string? Speaker { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("language")]
public string? Language { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("is_audio_event")]
public bool? IsAudioEvent { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("translation_status")]
public string? TranslationStatus { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("is_final")]
public bool? IsFinal { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Models.ServerEvent.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Models.ServerEvent.g.cs
index 0d2df05..4212e99 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Models.ServerEvent.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Models.ServerEvent.g.cs
@@ -5,12 +5,12 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public readonly partial struct ServerEvent : global::System.IEquatable
{
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public global::Soniox.Realtime.RealtimeResult? RealtimeResult { get; init; }
@@ -19,7 +19,7 @@ namespace Soniox.Realtime
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(RealtimeResult))]
@@ -27,7 +27,7 @@ namespace Soniox.Realtime
public bool IsRealtimeResult => RealtimeResult != null;
///
- ///
+ ///
///
public bool TryPickRealtimeResult(
#if NET6_0_OR_GREATER
@@ -40,14 +40,14 @@ public bool TryPickRealtimeResult(
}
///
- ///
+ ///
///
public global::Soniox.Realtime.RealtimeResult PickRealtimeResult() => IsRealtimeResult
? RealtimeResult!
: throw new global::System.InvalidOperationException($"Expected union variant 'RealtimeResult' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public global::Soniox.Realtime.RealtimeError? RealtimeError { get; init; }
@@ -56,7 +56,7 @@ public bool TryPickRealtimeResult(
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(RealtimeError))]
@@ -64,7 +64,7 @@ public bool TryPickRealtimeResult(
public bool IsRealtimeError => RealtimeError != null;
///
- ///
+ ///
///
public bool TryPickRealtimeError(
#if NET6_0_OR_GREATER
@@ -77,23 +77,23 @@ public bool TryPickRealtimeError(
}
///
- ///
+ ///
///
public global::Soniox.Realtime.RealtimeError PickRealtimeError() => IsRealtimeError
? RealtimeError!
: throw new global::System.InvalidOperationException($"Expected union variant 'RealtimeError' but the value was {ToString()}.");
///
- ///
+ ///
///
public static implicit operator ServerEvent(global::Soniox.Realtime.RealtimeResult value) => new ServerEvent((global::Soniox.Realtime.RealtimeResult?)value);
///
- ///
+ ///
///
public static implicit operator global::Soniox.Realtime.RealtimeResult?(ServerEvent @this) => @this.RealtimeResult;
///
- ///
+ ///
///
public ServerEvent(global::Soniox.Realtime.RealtimeResult? value)
{
@@ -101,22 +101,22 @@ public ServerEvent(global::Soniox.Realtime.RealtimeResult? value)
}
///
- ///
+ ///
///
public static ServerEvent FromRealtimeResult(global::Soniox.Realtime.RealtimeResult? value) => new ServerEvent(value);
///
- ///
+ ///
///
public static implicit operator ServerEvent(global::Soniox.Realtime.RealtimeError value) => new ServerEvent((global::Soniox.Realtime.RealtimeError?)value);
///
- ///
+ ///
///
public static implicit operator global::Soniox.Realtime.RealtimeError?(ServerEvent @this) => @this.RealtimeError;
///
- ///
+ ///
///
public ServerEvent(global::Soniox.Realtime.RealtimeError? value)
{
@@ -124,12 +124,12 @@ public ServerEvent(global::Soniox.Realtime.RealtimeError? value)
}
///
- ///
+ ///
///
public static ServerEvent FromRealtimeError(global::Soniox.Realtime.RealtimeError? value) => new ServerEvent(value);
///
- ///
+ ///
///
public ServerEvent(
global::Soniox.Realtime.RealtimeResult? realtimeResult,
@@ -141,23 +141,23 @@ public ServerEvent(
}
///
- ///
+ ///
///
public object? Object =>
RealtimeError as object ??
- RealtimeResult as object
+ RealtimeResult as object
;
///
- ///
+ ///
///
public override string? ToString() =>
RealtimeResult?.ToString() ??
- RealtimeError?.ToString()
+ RealtimeError?.ToString()
;
///
- ///
+ ///
///
public bool Validate()
{
@@ -165,7 +165,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public TResult? Match(
global::System.Func? realtimeResult = null,
@@ -190,7 +190,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public void Match(
global::System.Action? realtimeResult = null,
@@ -214,7 +214,7 @@ public void Match(
}
///
- ///
+ ///
///
public void Switch(
global::System.Action? realtimeResult = null,
@@ -237,7 +237,7 @@ public void Switch(
}
///
- ///
+ ///
///
public override int GetHashCode()
{
@@ -258,18 +258,18 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
}
///
- ///
+ ///
///
public bool Equals(ServerEvent other)
{
return
global::System.Collections.Generic.EqualityComparer.Default.Equals(RealtimeResult, other.RealtimeResult) &&
- global::System.Collections.Generic.EqualityComparer.Default.Equals(RealtimeError, other.RealtimeError)
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(RealtimeError, other.RealtimeError)
;
}
///
- ///
+ ///
///
public static bool operator ==(ServerEvent obj1, ServerEvent obj2)
{
@@ -277,7 +277,7 @@ public bool Equals(ServerEvent other)
}
///
- ///
+ ///
///
public static bool operator !=(ServerEvent obj1, ServerEvent obj2)
{
@@ -285,7 +285,7 @@ public bool Equals(ServerEvent other)
}
///
- ///
+ ///
///
public override bool Equals(object? obj)
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Models.TranslationConfig.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Models.TranslationConfig.g.cs
index 29bd929..d4a985b 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Models.TranslationConfig.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Models.TranslationConfig.g.cs
@@ -4,12 +4,12 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public sealed partial class TranslationConfig
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("type")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Soniox.Realtime.JsonConverters.TranslationConfigTypeJsonConverter))]
@@ -17,19 +17,19 @@ public sealed partial class TranslationConfig
public required global::Soniox.Realtime.TranslationConfigType Type { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("target_language")]
public string? TargetLanguage { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("language_a")]
public string? LanguageA { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("language_b")]
public string? LanguageB { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Models.TranslationConfigType.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Models.TranslationConfigType.g.cs
index fc612d0..eb1231b 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Models.TranslationConfigType.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Models.TranslationConfigType.g.cs
@@ -4,16 +4,16 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public enum TranslationConfigType
{
///
- ///
+ ///
///
OneWay,
///
- ///
+ ///
///
TwoWay,
}
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.OneOf.2.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.OneOf.2.g.cs
index 0c7af23..adf7a6d 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.OneOf.2.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.OneOf.2.g.cs
@@ -4,12 +4,12 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public readonly partial struct OneOf : global::System.IEquatable>
{
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T1? Value1 { get; init; }
@@ -18,7 +18,7 @@ namespace Soniox.Realtime
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))]
@@ -26,7 +26,7 @@ namespace Soniox.Realtime
public bool IsValue1 => Value1 != null;
///
- ///
+ ///
///
public bool TryPickValue1(
#if NET6_0_OR_GREATER
@@ -39,14 +39,14 @@ public bool TryPickValue1(
}
///
- ///
+ ///
///
public T1 PickValue1() => IsValue1
? Value1!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value1' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T2? Value2 { get; init; }
@@ -55,7 +55,7 @@ public T1 PickValue1() => IsValue1
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))]
@@ -63,7 +63,7 @@ public T1 PickValue1() => IsValue1
public bool IsValue2 => Value2 != null;
///
- ///
+ ///
///
public bool TryPickValue2(
#if NET6_0_OR_GREATER
@@ -76,23 +76,23 @@ public bool TryPickValue2(
}
///
- ///
+ ///
///
public T2 PickValue2() => IsValue2
? Value2!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value2' but the value was {ToString()}.");
///
- ///
+ ///
///
public static implicit operator OneOf(T1 value) => new OneOf((T1?)value);
///
- ///
+ ///
///
public static implicit operator T1?(OneOf @this) => @this.Value1;
///
- ///
+ ///
///
public OneOf(T1? value)
{
@@ -100,22 +100,22 @@ public OneOf(T1? value)
}
///
- ///
+ ///
///
public static OneOf FromValue1(T1? value) => new OneOf(value);
///
- ///
+ ///
///
public static implicit operator OneOf(T2 value) => new OneOf((T2?)value);
///
- ///
+ ///
///
public static implicit operator T2?(OneOf @this) => @this.Value2;
///
- ///
+ ///
///
public OneOf(T2? value)
{
@@ -123,12 +123,12 @@ public OneOf(T2? value)
}
///
- ///
+ ///
///
public static OneOf FromValue2(T2? value) => new OneOf(value);
///
- ///
+ ///
///
public OneOf(
T1? value1,
@@ -140,23 +140,23 @@ public OneOf(
}
///
- ///
+ ///
///
public object? Object =>
Value2 as object ??
- Value1 as object
+ Value1 as object
;
///
- ///
+ ///
///
public override string? ToString() =>
Value1?.ToString() ??
- Value2?.ToString()
+ Value2?.ToString()
;
///
- ///
+ ///
///
public bool Validate()
{
@@ -164,7 +164,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public TResult? Match(
global::System.Func? value1 = null,
@@ -189,7 +189,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public void Match(
global::System.Action? value1 = null,
@@ -213,7 +213,7 @@ public void Match(
}
///
- ///
+ ///
///
public void Switch(
global::System.Action? value1 = null,
@@ -236,7 +236,7 @@ public void Switch(
}
///
- ///
+ ///
///
public override int GetHashCode()
{
@@ -257,18 +257,18 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
}
///
- ///
+ ///
///
public bool Equals(OneOf other)
{
return
global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) &&
- global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2)
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2)
;
}
///
- ///
+ ///
///
public static bool operator ==(OneOf obj1, OneOf obj2)
{
@@ -276,7 +276,7 @@ public bool Equals(OneOf other)
}
///
- ///
+ ///
///
public static bool operator !=(OneOf obj1, OneOf obj2)
{
@@ -284,7 +284,7 @@ public bool Equals(OneOf other)
}
///
- ///
+ ///
///
public override bool Equals(object? obj)
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.PathBuilder.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.PathBuilder.g.cs
index f03bcf8..25b7029 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.PathBuilder.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.PathBuilder.g.cs
@@ -266,32 +266,32 @@ public PathBuilder AddRawQueryString(
}
///
- ///
+ ///
///
public class EndPointAuthorization
{
///
- ///
+ ///
///
public string Type { get; set; } = string.Empty;
///
- ///
+ ///
///
public string SchemeId { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Location { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Name { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Value { get; set; } = string.Empty;
}
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Polyfills.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Polyfills.g.cs
index 4c13db1..6121eca 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Polyfills.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Polyfills.g.cs
@@ -4,13 +4,13 @@
namespace Soniox.Realtime
{
///
- ///
+ ///
///
public static partial class AutoSdkPolyfills
{
#if !NET6_0_OR_GREATER
///
- ///
+ ///
///
///
///
@@ -23,7 +23,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStringAsync();
}
///
- ///
+ ///
///
///
///
@@ -36,7 +36,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStreamAsync();
}
///
- ///
+ ///
///
///
///
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.SonioxRealtimeClient.RealtimeConfig.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.SonioxRealtimeClient.RealtimeConfig.g.cs
index 7afdf8e..9ed3427 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.SonioxRealtimeClient.RealtimeConfig.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.SonioxRealtimeClient.RealtimeConfig.g.cs
@@ -6,7 +6,7 @@ namespace Soniox.Realtime
public sealed partial class SonioxRealtimeClient
{
///
- ///
+ ///
///
/// The message to send.
/// A cancellation token.
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.SonioxRealtimeClient.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.SonioxRealtimeClient.g.cs
index d10218f..1d3ddd1 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.SonioxRealtimeClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.SonioxRealtimeClient.g.cs
@@ -274,7 +274,7 @@ public AutoSDKWebSocketUnknownMessageEventArgs(
public event global::System.EventHandler>? RealtimeErrorReceived;
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; } = global::Soniox.Realtime.RealtimeSourceGenerationContext.Default;
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonConverters.UnixTimestamp.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonConverters.UnixTimestamp.g.cs
index 794134b..17d26fa 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonConverters.UnixTimestamp.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonConverters.UnixTimestamp.g.cs
@@ -19,7 +19,7 @@ public class UnixTimestampJsonConverter : global::System.Text.Json.Serialization
{
return global::System.DateTimeOffset.FromUnixTimeSeconds(unixTimestamp);
}
-
+
return global::System.DateTimeOffset.FromUnixTimeMilliseconds(unixTimestamp);
}
if (reader.TryGetInt32(out int unixTimestampInt))
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonSerializerContext.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonSerializerContext.g.cs
index 88c318c..a8dd5dc 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonSerializerContext.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonSerializerContext.g.cs
@@ -7,7 +7,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonSerializerContextTypes.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonSerializerContextTypes.g.cs
index 88ecc1e..3c3bdb7 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.JsonSerializerContextTypes.g.cs
@@ -6,92 +6,92 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class JsonSerializerContextTypes
{
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringStringDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringObjectDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Text.Json.JsonElement? JsonElement { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsConfig? Type0 { get; set; }
///
- ///
+ ///
///
public string? Type1 { get; set; }
///
- ///
+ ///
///
public int? Type2 { get; set; }
///
- ///
+ ///
///
public bool? Type3 { get; set; }
///
- ///
+ ///
///
public double? Type4 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsText? Type5 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsCancel? Type6 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsKeepAlive? Type7 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsAudio? Type8 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsTimestamps? Type9 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type10 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type11 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsTerminated? Type12 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsError? Type13 { get; set; }
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.ServerEvent? Type14 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType0 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.List? ListType1 { get; set; }
}
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.ServerEvent.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.ServerEvent.g.cs
index 36e4f02..a8fc74c 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.ServerEvent.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.ServerEvent.g.cs
@@ -5,12 +5,12 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public readonly partial struct ServerEvent : global::System.IEquatable
{
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public global::Soniox.Realtime.Tts.TtsAudio? TtsAudio { get; init; }
@@ -19,7 +19,7 @@ namespace Soniox.Realtime.Tts
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(TtsAudio))]
@@ -27,7 +27,7 @@ namespace Soniox.Realtime.Tts
public bool IsTtsAudio => TtsAudio != null;
///
- ///
+ ///
///
public bool TryPickTtsAudio(
#if NET6_0_OR_GREATER
@@ -40,14 +40,14 @@ public bool TryPickTtsAudio(
}
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsAudio PickTtsAudio() => IsTtsAudio
? TtsAudio!
: throw new global::System.InvalidOperationException($"Expected union variant 'TtsAudio' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public global::Soniox.Realtime.Tts.TtsTerminated? TtsTerminated { get; init; }
@@ -56,7 +56,7 @@ public bool TryPickTtsAudio(
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(TtsTerminated))]
@@ -64,7 +64,7 @@ public bool TryPickTtsAudio(
public bool IsTtsTerminated => TtsTerminated != null;
///
- ///
+ ///
///
public bool TryPickTtsTerminated(
#if NET6_0_OR_GREATER
@@ -77,14 +77,14 @@ public bool TryPickTtsTerminated(
}
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsTerminated PickTtsTerminated() => IsTtsTerminated
? TtsTerminated!
: throw new global::System.InvalidOperationException($"Expected union variant 'TtsTerminated' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public global::Soniox.Realtime.Tts.TtsError? TtsError { get; init; }
@@ -93,7 +93,7 @@ public bool TryPickTtsTerminated(
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(TtsError))]
@@ -101,7 +101,7 @@ public bool TryPickTtsTerminated(
public bool IsTtsError => TtsError != null;
///
- ///
+ ///
///
public bool TryPickTtsError(
#if NET6_0_OR_GREATER
@@ -114,23 +114,23 @@ public bool TryPickTtsError(
}
///
- ///
+ ///
///
public global::Soniox.Realtime.Tts.TtsError PickTtsError() => IsTtsError
? TtsError!
: throw new global::System.InvalidOperationException($"Expected union variant 'TtsError' but the value was {ToString()}.");
///
- ///
+ ///
///
public static implicit operator ServerEvent(global::Soniox.Realtime.Tts.TtsAudio value) => new ServerEvent((global::Soniox.Realtime.Tts.TtsAudio?)value);
///
- ///
+ ///
///
public static implicit operator global::Soniox.Realtime.Tts.TtsAudio?(ServerEvent @this) => @this.TtsAudio;
///
- ///
+ ///
///
public ServerEvent(global::Soniox.Realtime.Tts.TtsAudio? value)
{
@@ -138,22 +138,22 @@ public ServerEvent(global::Soniox.Realtime.Tts.TtsAudio? value)
}
///
- ///
+ ///
///
public static ServerEvent FromTtsAudio(global::Soniox.Realtime.Tts.TtsAudio? value) => new ServerEvent(value);
///
- ///
+ ///
///
public static implicit operator ServerEvent(global::Soniox.Realtime.Tts.TtsTerminated value) => new ServerEvent((global::Soniox.Realtime.Tts.TtsTerminated?)value);
///
- ///
+ ///
///
public static implicit operator global::Soniox.Realtime.Tts.TtsTerminated?(ServerEvent @this) => @this.TtsTerminated;
///
- ///
+ ///
///
public ServerEvent(global::Soniox.Realtime.Tts.TtsTerminated? value)
{
@@ -161,22 +161,22 @@ public ServerEvent(global::Soniox.Realtime.Tts.TtsTerminated? value)
}
///
- ///
+ ///
///
public static ServerEvent FromTtsTerminated(global::Soniox.Realtime.Tts.TtsTerminated? value) => new ServerEvent(value);
///
- ///
+ ///
///
public static implicit operator ServerEvent(global::Soniox.Realtime.Tts.TtsError value) => new ServerEvent((global::Soniox.Realtime.Tts.TtsError?)value);
///
- ///
+ ///
///
public static implicit operator global::Soniox.Realtime.Tts.TtsError?(ServerEvent @this) => @this.TtsError;
///
- ///
+ ///
///
public ServerEvent(global::Soniox.Realtime.Tts.TtsError? value)
{
@@ -184,12 +184,12 @@ public ServerEvent(global::Soniox.Realtime.Tts.TtsError? value)
}
///
- ///
+ ///
///
public static ServerEvent FromTtsError(global::Soniox.Realtime.Tts.TtsError? value) => new ServerEvent(value);
///
- ///
+ ///
///
public ServerEvent(
global::Soniox.Realtime.Tts.TtsAudio? ttsAudio,
@@ -203,25 +203,25 @@ public ServerEvent(
}
///
- ///
+ ///
///
public object? Object =>
TtsError as object ??
TtsTerminated as object ??
- TtsAudio as object
+ TtsAudio as object
;
///
- ///
+ ///
///
public override string? ToString() =>
TtsAudio?.ToString() ??
TtsTerminated?.ToString() ??
- TtsError?.ToString()
+ TtsError?.ToString()
;
///
- ///
+ ///
///
public bool Validate()
{
@@ -229,7 +229,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public TResult? Match(
global::System.Func? ttsAudio = null,
@@ -259,7 +259,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public void Match(
global::System.Action? ttsAudio = null,
@@ -289,7 +289,7 @@ public void Match(
}
///
- ///
+ ///
///
public void Switch(
global::System.Action? ttsAudio = null,
@@ -317,7 +317,7 @@ public void Switch(
}
///
- ///
+ ///
///
public override int GetHashCode()
{
@@ -340,19 +340,19 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
}
///
- ///
+ ///
///
public bool Equals(ServerEvent other)
{
return
global::System.Collections.Generic.EqualityComparer.Default.Equals(TtsAudio, other.TtsAudio) &&
global::System.Collections.Generic.EqualityComparer.Default.Equals(TtsTerminated, other.TtsTerminated) &&
- global::System.Collections.Generic.EqualityComparer.Default.Equals(TtsError, other.TtsError)
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(TtsError, other.TtsError)
;
}
///
- ///
+ ///
///
public static bool operator ==(ServerEvent obj1, ServerEvent obj2)
{
@@ -360,7 +360,7 @@ public bool Equals(ServerEvent other)
}
///
- ///
+ ///
///
public static bool operator !=(ServerEvent obj1, ServerEvent obj2)
{
@@ -368,7 +368,7 @@ public bool Equals(ServerEvent other)
}
///
- ///
+ ///
///
public override bool Equals(object? obj)
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsAudio.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsAudio.g.cs
index aa1e87d..f1005db 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsAudio.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsAudio.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class TtsAudio
{
@@ -28,7 +28,7 @@ public sealed partial class TtsAudio
public bool? AudioEnd { get; set; }
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonPropertyName("timestamps")]
public global::Soniox.Realtime.Tts.TtsTimestamps? Timestamps { get; set; }
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsCancel.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsCancel.g.cs
index bfe39e6..94fea15 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsCancel.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsCancel.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class TtsCancel
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsConfig.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsConfig.g.cs
index d86380d..24a73a9 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsConfig.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsConfig.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class TtsConfig
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsError.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsError.g.cs
index 9fa0de4..1b898d2 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsError.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsError.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class TtsError
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsKeepAlive.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsKeepAlive.g.cs
index fb04563..bcd264f 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsKeepAlive.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsKeepAlive.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class TtsKeepAlive
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsTerminated.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsTerminated.g.cs
index 992d271..0b8b531 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsTerminated.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsTerminated.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class TtsTerminated
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsText.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsText.g.cs
index 4031e41..4b34e4c 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsText.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsText.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class TtsText
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsTimestamps.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsTimestamps.g.cs
index 7274fa5..cc29906 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsTimestamps.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Models.TtsTimestamps.g.cs
@@ -4,7 +4,7 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public sealed partial class TtsTimestamps
{
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.PathBuilder.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.PathBuilder.g.cs
index a53cced..4226222 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.PathBuilder.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.PathBuilder.g.cs
@@ -266,32 +266,32 @@ public PathBuilder AddRawQueryString(
}
///
- ///
+ ///
///
public class EndPointAuthorization
{
///
- ///
+ ///
///
public string Type { get; set; } = string.Empty;
///
- ///
+ ///
///
public string SchemeId { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Location { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Name { get; set; } = string.Empty;
///
- ///
+ ///
///
public string Value { get; set; } = string.Empty;
}
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Polyfills.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Polyfills.g.cs
index f62e445..924ef6a 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Polyfills.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.Polyfills.g.cs
@@ -4,13 +4,13 @@
namespace Soniox.Realtime.Tts
{
///
- ///
+ ///
///
public static partial class AutoSdkPolyfills
{
#if !NET6_0_OR_GREATER
///
- ///
+ ///
///
///
///
@@ -23,7 +23,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStringAsync();
}
///
- ///
+ ///
///
///
///
@@ -36,7 +36,7 @@ public static partial class AutoSdkPolyfills
return content.ReadAsStreamAsync();
}
///
- ///
+ ///
///
///
///
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsCancel.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsCancel.g.cs
index 95f838f..2ac69a8 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsCancel.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsCancel.g.cs
@@ -6,7 +6,7 @@ namespace Soniox.Realtime.Tts
public sealed partial class SonioxTtsRealtimeClient
{
///
- ///
+ ///
///
/// The message to send.
/// A cancellation token.
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsConfig.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsConfig.g.cs
index b0ea20a..f5afedf 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsConfig.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsConfig.g.cs
@@ -6,7 +6,7 @@ namespace Soniox.Realtime.Tts
public sealed partial class SonioxTtsRealtimeClient
{
///
- ///
+ ///
///
/// The message to send.
/// A cancellation token.
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsKeepAlive.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsKeepAlive.g.cs
index 8aff350..9442b90 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsKeepAlive.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsKeepAlive.g.cs
@@ -6,7 +6,7 @@ namespace Soniox.Realtime.Tts
public sealed partial class SonioxTtsRealtimeClient
{
///
- ///
+ ///
///
/// The message to send.
/// A cancellation token.
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsText.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsText.g.cs
index 03a6eaa..9e2ff6c 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsText.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.TtsText.g.cs
@@ -6,7 +6,7 @@ namespace Soniox.Realtime.Tts
public sealed partial class SonioxTtsRealtimeClient
{
///
- ///
+ ///
///
/// The message to send.
/// A cancellation token.
diff --git a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.g.cs b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.g.cs
index 02b4f43..e9e0059 100644
--- a/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.Realtime.Tts.SonioxTtsRealtimeClient.g.cs
@@ -278,7 +278,7 @@ public AutoSDKWebSocketUnknownMessageEventArgs(
public event global::System.EventHandler>? TtsErrorReceived;
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; } = global::Soniox.Realtime.Tts.TtsRealtimeSourceGenerationContext.Default;
diff --git a/src/libs/Soniox/Generated/Soniox.SonioxClient.g.cs b/src/libs/Soniox/Generated/Soniox.SonioxClient.g.cs
index 2a66a65..7beea6a 100644
--- a/src/libs/Soniox/Generated/Soniox.SonioxClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.SonioxClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
@@ -50,7 +50,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
///
- ///
+ ///
///
public AuthClient Auth => new AuthClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -60,7 +60,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public ConcurrencyLimitsClient ConcurrencyLimits => new ConcurrencyLimitsClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -70,7 +70,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public ConcurrentStreamsHistoryClient ConcurrentStreamsHistory => new ConcurrentStreamsHistoryClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -80,7 +80,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public FilesClient Files => new FilesClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -90,7 +90,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public ModelsClient Models => new ModelsClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -100,7 +100,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public TranscriptionsClient Transcriptions => new TranscriptionsClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -110,7 +110,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public TtsClient Tts => new TtsClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -120,7 +120,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public TtsModelsClient TtsModels => new TtsModelsClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -130,7 +130,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public UsageLogsClient UsageLogs => new UsageLogsClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -140,7 +140,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public UsageSummaryClient UsageSummary => new UsageSummaryClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
@@ -150,7 +150,7 @@ public sealed partial class SonioxClient : global::Soniox.ISonioxClient, global:
};
///
- ///
+ ///
///
public VoicesClient Voices => new VoicesClient(HttpClient, baseUri: null, authorizations: Authorizations, options: Options)
{
diff --git a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.CreateTranscription.g.cs b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.CreateTranscription.g.cs
index 25ded51..cc6211b 100644
--- a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.CreateTranscription.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.CreateTranscription.g.cs
@@ -139,7 +139,7 @@ partial void ProcessCreateTranscriptionResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
var __httpRequestContent = new global::System.Net.Http.StringContent(
@@ -337,7 +337,7 @@ partial void ProcessCreateTranscriptionResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_request`: One or more request body fields are missing or invalid (model, audio source, language hints, translation config, webhook config, etc.). Inspect `validation_errors`.
+ // Invalid request. Error types: - `invalid_request`: One or more request body fields are missing or invalid (model, audio source, language hints, translation config, webhook config, etc.). Inspect `validation_errors`.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -411,7 +411,7 @@ partial void ProcessCreateTranscriptionResponseContent(
h => h.Key,
h => h.Value));
}
- // Balance or budget exhausted. Error types: - `organization_balance_exhausted`: The organization's prepaid balance has dropped to zero. Top up at https://console.soniox.com/org/billing/overview or enable autopay. - `organization_monthly_budget_exhausted`: The organization has hit its configured monthly budget cap. Raise the cap at https://console.soniox.com/org/limits, or wait for the month to roll over. - `project_monthly_budget_exhausted`: The project has hit its configured monthly budget cap. Raise the cap at https://console.soniox.com/org/projects/limits, or wait for the month to roll over.
+ // Balance or budget exhausted. Error types: - `organization_balance_exhausted`: The organization's prepaid balance has dropped to zero. Top up at https://console.soniox.com/org/billing/overview or enable autopay. - `organization_monthly_budget_exhausted`: The organization has hit its configured monthly budget cap. Raise the cap at https://console.soniox.com/org/limits, or wait for the month to roll over. - `project_monthly_budget_exhausted`: The project has hit its configured monthly budget cap. Raise the cap at https://console.soniox.com/org/projects/limits, or wait for the month to roll over.
if ((int)__response.StatusCode == 402)
{
string? __content_402 = null;
@@ -448,7 +448,7 @@ partial void ProcessCreateTranscriptionResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, total transcription count, or pending transcription count limit (organization or project). The `message` describes which limit was hit. Delete completed transcriptions via `DELETE /v1/transcriptions/{id}` or request a higher limit in the Soniox Console.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate, total transcription count, or pending transcription count limit (organization or project). The `message` describes which limit was hit. Delete completed transcriptions via `DELETE /v1/transcriptions/{id}` or request a higher limit in the Soniox Console.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.DeleteTranscription.g.cs b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.DeleteTranscription.g.cs
index 893f570..3ea28c9 100644
--- a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.DeleteTranscription.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.DeleteTranscription.g.cs
@@ -127,7 +127,7 @@ await DeleteTranscriptionAsResponseAsync(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -356,7 +356,7 @@ await DeleteTranscriptionAsResponseAsync(
h => h.Key,
h => h.Value));
}
- // Transcription not found. Error types: - `transcription_not_found`: No transcription with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
+ // Transcription not found. Error types: - `transcription_not_found`: No transcription with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
@@ -393,7 +393,7 @@ await DeleteTranscriptionAsResponseAsync(
h => h.Key,
h => h.Value));
}
- // Invalid transcription state. Error types: - `transcription_invalid_state`: The transcription cannot be deleted in its current state — it is still processing. Wait until `status` reaches `completed` or `error` and retry.
+ // Invalid transcription state. Error types: - `transcription_invalid_state`: The transcription cannot be deleted in its current state — it is still processing. Wait until `status` reaches `completed` or `error` and retry.
if ((int)__response.StatusCode == 409)
{
string? __content_409 = null;
@@ -430,7 +430,7 @@ await DeleteTranscriptionAsResponseAsync(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscription.g.cs b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscription.g.cs
index eb76964..bc7f6c8 100644
--- a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscription.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscription.g.cs
@@ -134,7 +134,7 @@ partial void ProcessGetTranscriptionResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -363,7 +363,7 @@ partial void ProcessGetTranscriptionResponseContent(
h => h.Key,
h => h.Value));
}
- // Transcription not found. Error types: - `transcription_not_found`: No transcription with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
+ // Transcription not found. Error types: - `transcription_not_found`: No transcription with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
@@ -400,7 +400,7 @@ partial void ProcessGetTranscriptionResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptionTranscript.g.cs b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptionTranscript.g.cs
index 88f3ef8..7c37455 100644
--- a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptionTranscript.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptionTranscript.g.cs
@@ -134,7 +134,7 @@ partial void ProcessGetTranscriptionTranscriptResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -363,7 +363,7 @@ partial void ProcessGetTranscriptionTranscriptResponseContent(
h => h.Key,
h => h.Value));
}
- // Transcription not found. Error types: - `transcription_not_found`: No transcription with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
+ // Transcription not found. Error types: - `transcription_not_found`: No transcription with this ID exists in the project the API key is scoped to (it may have been deleted, the ID may be wrong, or it may belong to a different project).
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
@@ -400,7 +400,7 @@ partial void ProcessGetTranscriptionTranscriptResponseContent(
h => h.Key,
h => h.Value));
}
- // Invalid transcription state. The transcription exists but the transcript cannot be returned in its current state. Error types: - `transcription_invalid_state`. The `message` indicates which sub-case applies: - **Not completed yet** — transcription is still queued, downloading, or transcribing. Poll `GET /transcriptions/{id}` until `status` is `completed`, or configure a webhook on the transcription. - **Failed** — transcription ended in `failed` state. Inspect `error_type` / `error_message` on `GET /transcriptions/{id}` for the failure reason.
+ // Invalid transcription state. The transcription exists but the transcript cannot be returned in its current state. Error types: - `transcription_invalid_state`. The `message` indicates which sub-case applies: - **Not completed yet** — transcription is still queued, downloading, or transcribing. Poll `GET /transcriptions/{id}` until `status` is `completed`, or configure a webhook on the transcription. - **Failed** — transcription ended in `failed` state. Inspect `error_type` / `error_message` on `GET /transcriptions/{id}` for the failure reason.
if ((int)__response.StatusCode == 409)
{
string? __content_409 = null;
@@ -437,7 +437,7 @@ partial void ProcessGetTranscriptionTranscriptResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptions.g.cs b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptions.g.cs
index 437297b..6399d80 100644
--- a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptions.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptions.g.cs
@@ -156,7 +156,7 @@ partial void ProcessGetTranscriptionsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -349,7 +349,7 @@ partial void ProcessGetTranscriptionsResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_cursor`: The `cursor` parameter is invalid. Omit `cursor` to start pagination from the beginning.
+ // Invalid request. Error types: - `invalid_cursor`: The `cursor` parameter is invalid. Omit `cursor` to start pagination from the beginning.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -423,7 +423,7 @@ partial void ProcessGetTranscriptionsResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptionsCount.g.cs b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptionsCount.g.cs
index dcaa59c..eb23347 100644
--- a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptionsCount.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.GetTranscriptionsCount.g.cs
@@ -126,7 +126,7 @@ partial void ProcessGetTranscriptionsCountResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -354,7 +354,7 @@ partial void ProcessGetTranscriptionsCountResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.g.cs b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.g.cs
index 6ddf9a9..40aac1d 100644
--- a/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TranscriptionsClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class TranscriptionsClient : global::Soniox.ITranscription
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.TtsClient.GenerateTts.g.cs b/src/libs/Soniox/Generated/Soniox.TtsClient.GenerateTts.g.cs
index dec1c2c..5af6549 100644
--- a/src/libs/Soniox/Generated/Soniox.TtsClient.GenerateTts.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TtsClient.GenerateTts.g.cs
@@ -157,7 +157,7 @@ partial void ProcessGenerateTtsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
if (xRequestId != default)
@@ -362,7 +362,7 @@ partial void ProcessGenerateTtsResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Bad request. The request is malformed or contains invalid parameters. `error_type` is one of [`invalid_request`](https://soniox.com/docs/api-reference/errors#invalid-request) or [`model_not_available`](https://soniox.com/docs/api-reference/errors#model-not-available). Possible messages: - `Invalid JSON body` - `Missing required field: model` - `Model name is too long (max length 50).` - `Missing required field: language` - `Language is too long (max length 50).` - `Missing required field: voice` - `Voice is too long (max length 50).` - `Missing required field: audio_format` - `Audio format is too long (max length 50).` - `Missing required field: text` - `Text is too long (max length 5000).` - `API key is too long (max length 250).` - `Client reference ID is too long (max length 256).` - `Invalid voice '' for model ''.` - `Invalid language '' for model ''.` - `The requested model is not available. See https://soniox.com/docs/tts/models for the list of supported TTS models.` (`error_type: model_not_available`)
+ // Bad request. The request is malformed or contains invalid parameters. `error_type` is one of [`invalid_request`](https://soniox.com/docs/api-reference/errors#invalid-request) or [`model_not_available`](https://soniox.com/docs/api-reference/errors#model-not-available). Possible messages: - `Invalid JSON body` - `Missing required field: model` - `Model name is too long (max length 50).` - `Missing required field: language` - `Language is too long (max length 50).` - `Missing required field: voice` - `Voice is too long (max length 50).` - `Missing required field: audio_format` - `Audio format is too long (max length 50).` - `Missing required field: text` - `Text is too long (max length 5000).` - `API key is too long (max length 250).` - `Client reference ID is too long (max length 256).` - `Invalid voice '' for model ''.` - `Invalid language '' for model ''.` - `The requested model is not available. See https://soniox.com/docs/tts/models for the list of supported TTS models.` (`error_type: model_not_available`)
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -399,7 +399,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // Authentication is missing or incorrect. Ensure a valid API key is provided before retrying. `error_type`: [`unauthenticated`](https://soniox.com/docs/api-reference/errors#unauthenticated). Possible messages: - `Missing API key. Provide it as an Authorization header (e.g. 'Authorization: Bearer '). You can get an API key at https://console.soniox.com.` - `Authorization header must use the Bearer scheme (e.g. 'Authorization: Bearer '). You can get an API key at https://console.soniox.com.` - `Incorrect API key provided. You can get an API key at https://console.soniox.com` - `Invalid or expired temporary API key. Create a new temporary API key and retry. See https://soniox.com/docs/guides/temporary-api-keys for details.` - The temporary API key cannot be used for this action. Each temporary API key is scoped to a specific `usage_type`; create a new key with the correct usage type.
+ // Authentication is missing or incorrect. Ensure a valid API key is provided before retrying. `error_type`: [`unauthenticated`](https://soniox.com/docs/api-reference/errors#unauthenticated). Possible messages: - `Missing API key. Provide it as an Authorization header (e.g. 'Authorization: Bearer '). You can get an API key at https://console.soniox.com.` - `Authorization header must use the Bearer scheme (e.g. 'Authorization: Bearer '). You can get an API key at https://console.soniox.com.` - `Incorrect API key provided. You can get an API key at https://console.soniox.com` - `Invalid or expired temporary API key. Create a new temporary API key and retry. See https://soniox.com/docs/guides/temporary-api-keys for details.` - The temporary API key cannot be used for this action. Each temporary API key is scoped to a specific `usage_type`; create a new key with the correct usage type.
if ((int)__response.StatusCode == 401)
{
string? __content_401 = null;
@@ -436,7 +436,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // The organization's balance or monthly budget has been reached. Additional credits or a higher cap are required before making further requests. `error_type` is one of [`organization_balance_exhausted`](https://soniox.com/docs/api-reference/errors#organization-balance-exhausted), [`organization_monthly_budget_exhausted`](https://soniox.com/docs/api-reference/errors#organization-monthly-budget-exhausted), or [`project_monthly_budget_exhausted`](https://soniox.com/docs/api-reference/errors#project-monthly-budget-exhausted). Possible messages: - `Organization balance exhausted. Please either add funds manually or enable autopay.` - `Organization monthly budget exhausted. Please increase it.` - `Project monthly budget exhausted. Please increase it.`
+ // The organization's balance or monthly budget has been reached. Additional credits or a higher cap are required before making further requests. `error_type` is one of [`organization_balance_exhausted`](https://soniox.com/docs/api-reference/errors#organization-balance-exhausted), [`organization_monthly_budget_exhausted`](https://soniox.com/docs/api-reference/errors#organization-monthly-budget-exhausted), or [`project_monthly_budget_exhausted`](https://soniox.com/docs/api-reference/errors#project-monthly-budget-exhausted). Possible messages: - `Organization balance exhausted. Please either add funds manually or enable autopay.` - `Organization monthly budget exhausted. Please increase it.` - `Project monthly budget exhausted. Please increase it.`
if ((int)__response.StatusCode == 402)
{
string? __content_402 = null;
@@ -473,7 +473,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // The temporary API key in use was created with a `max_session_duration_seconds` cap, and that duration has elapsed for the current session. Create a new temporary API key to start a new session. `error_type`: [`temp_api_key_session_expired`](https://soniox.com/docs/api-reference/errors#temp-api-key-session-expired). Possible messages: - `Temporary API key session duration limit exceeded. Create a new temporary API key to start a new session.`
+ // The temporary API key in use was created with a `max_session_duration_seconds` cap, and that duration has elapsed for the current session. Create a new temporary API key to start a new session. `error_type`: [`temp_api_key_session_expired`](https://soniox.com/docs/api-reference/errors#temp-api-key-session-expired). Possible messages: - `Temporary API key session duration limit exceeded. Create a new temporary API key to start a new session.`
if ((int)__response.StatusCode == 403)
{
string? __content_403 = null;
@@ -510,7 +510,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // A backend call exceeded its deadline before completing. Retry the request. `error_type`: [`request_timeout`](https://soniox.com/docs/api-reference/errors#request-timeout).
+ // A backend call exceeded its deadline before completing. Retry the request. `error_type`: [`request_timeout`](https://soniox.com/docs/api-reference/errors#request-timeout).
if ((int)__response.StatusCode == 408)
{
string? __content_408 = null;
@@ -547,7 +547,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // A usage or rate limit has been exceeded. You may retry after a delay or request an increase in limits via the Soniox Console. `error_type`: [`limit_exceeded`](https://soniox.com/docs/api-reference/errors#limit-exceeded). Possible messages: - `Requests per minute limit for text-to-speech has been exceeded for your organization.` - `Requests per minute limit for text-to-speech has been exceeded for your project.` - `Concurrent requests limit for text-to-speech has been exceeded for your organization.` - `Concurrent requests limit for text-to-speech has been exceeded for your project.`
+ // A usage or rate limit has been exceeded. You may retry after a delay or request an increase in limits via the Soniox Console. `error_type`: [`limit_exceeded`](https://soniox.com/docs/api-reference/errors#limit-exceeded). Possible messages: - `Requests per minute limit for text-to-speech has been exceeded for your organization.` - `Requests per minute limit for text-to-speech has been exceeded for your project.` - `Concurrent requests limit for text-to-speech has been exceeded for your organization.` - `Concurrent requests limit for text-to-speech has been exceeded for your project.`
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
@@ -584,7 +584,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // An unexpected server-side error occurred. The request may be retried. `error_type`: [`internal_error`](https://soniox.com/docs/api-reference/errors#internal-error). Possible messages: - `The server had an error processing your request. Sorry about that! You can retry your request, or contact us through our support email support@soniox.com if you keep seeing this error.`
+ // An unexpected server-side error occurred. The request may be retried. `error_type`: [`internal_error`](https://soniox.com/docs/api-reference/errors#internal-error). Possible messages: - `The server had an error processing your request. Sorry about that! You can retry your request, or contact us through our support email support@soniox.com if you keep seeing this error.`
if ((int)__response.StatusCode == 500)
{
string? __content_500 = null;
@@ -621,7 +621,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // The service cannot accept the request right now (upstream overload, cache exhausted, shutdown). Retry with backoff. The numeric `(code N)` in the message identifies the sub-cause for support triage. `error_type`: [`service_unavailable`](https://soniox.com/docs/api-reference/errors#service-unavailable). Possible messages: - `Cannot continue request (code N). Please restart the request. Refer to: https://soniox.com/url/cannot-continue-request`
+ // The service cannot accept the request right now (upstream overload, cache exhausted, shutdown). Retry with backoff. The numeric `(code N)` in the message identifies the sub-cause for support triage. `error_type`: [`service_unavailable`](https://soniox.com/docs/api-reference/errors#service-unavailable). Possible messages: - `Cannot continue request (code N). Please restart the request. Refer to: https://soniox.com/url/cannot-continue-request`
if ((int)__response.StatusCode == 503)
{
string? __content_503 = null;
@@ -789,7 +789,7 @@ partial void ProcessGenerateTtsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
if (xRequestId != default)
@@ -994,7 +994,7 @@ partial void ProcessGenerateTtsResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Bad request. The request is malformed or contains invalid parameters. `error_type` is one of [`invalid_request`](https://soniox.com/docs/api-reference/errors#invalid-request) or [`model_not_available`](https://soniox.com/docs/api-reference/errors#model-not-available). Possible messages: - `Invalid JSON body` - `Missing required field: model` - `Model name is too long (max length 50).` - `Missing required field: language` - `Language is too long (max length 50).` - `Missing required field: voice` - `Voice is too long (max length 50).` - `Missing required field: audio_format` - `Audio format is too long (max length 50).` - `Missing required field: text` - `Text is too long (max length 5000).` - `API key is too long (max length 250).` - `Client reference ID is too long (max length 256).` - `Invalid voice '' for model ''.` - `Invalid language '' for model ''.` - `The requested model is not available. See https://soniox.com/docs/tts/models for the list of supported TTS models.` (`error_type: model_not_available`)
+ // Bad request. The request is malformed or contains invalid parameters. `error_type` is one of [`invalid_request`](https://soniox.com/docs/api-reference/errors#invalid-request) or [`model_not_available`](https://soniox.com/docs/api-reference/errors#model-not-available). Possible messages: - `Invalid JSON body` - `Missing required field: model` - `Model name is too long (max length 50).` - `Missing required field: language` - `Language is too long (max length 50).` - `Missing required field: voice` - `Voice is too long (max length 50).` - `Missing required field: audio_format` - `Audio format is too long (max length 50).` - `Missing required field: text` - `Text is too long (max length 5000).` - `API key is too long (max length 250).` - `Client reference ID is too long (max length 256).` - `Invalid voice '' for model ''.` - `Invalid language '' for model ''.` - `The requested model is not available. See https://soniox.com/docs/tts/models for the list of supported TTS models.` (`error_type: model_not_available`)
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -1031,7 +1031,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // Authentication is missing or incorrect. Ensure a valid API key is provided before retrying. `error_type`: [`unauthenticated`](https://soniox.com/docs/api-reference/errors#unauthenticated). Possible messages: - `Missing API key. Provide it as an Authorization header (e.g. 'Authorization: Bearer '). You can get an API key at https://console.soniox.com.` - `Authorization header must use the Bearer scheme (e.g. 'Authorization: Bearer '). You can get an API key at https://console.soniox.com.` - `Incorrect API key provided. You can get an API key at https://console.soniox.com` - `Invalid or expired temporary API key. Create a new temporary API key and retry. See https://soniox.com/docs/guides/temporary-api-keys for details.` - The temporary API key cannot be used for this action. Each temporary API key is scoped to a specific `usage_type`; create a new key with the correct usage type.
+ // Authentication is missing or incorrect. Ensure a valid API key is provided before retrying. `error_type`: [`unauthenticated`](https://soniox.com/docs/api-reference/errors#unauthenticated). Possible messages: - `Missing API key. Provide it as an Authorization header (e.g. 'Authorization: Bearer '). You can get an API key at https://console.soniox.com.` - `Authorization header must use the Bearer scheme (e.g. 'Authorization: Bearer '). You can get an API key at https://console.soniox.com.` - `Incorrect API key provided. You can get an API key at https://console.soniox.com` - `Invalid or expired temporary API key. Create a new temporary API key and retry. See https://soniox.com/docs/guides/temporary-api-keys for details.` - The temporary API key cannot be used for this action. Each temporary API key is scoped to a specific `usage_type`; create a new key with the correct usage type.
if ((int)__response.StatusCode == 401)
{
string? __content_401 = null;
@@ -1068,7 +1068,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // The organization's balance or monthly budget has been reached. Additional credits or a higher cap are required before making further requests. `error_type` is one of [`organization_balance_exhausted`](https://soniox.com/docs/api-reference/errors#organization-balance-exhausted), [`organization_monthly_budget_exhausted`](https://soniox.com/docs/api-reference/errors#organization-monthly-budget-exhausted), or [`project_monthly_budget_exhausted`](https://soniox.com/docs/api-reference/errors#project-monthly-budget-exhausted). Possible messages: - `Organization balance exhausted. Please either add funds manually or enable autopay.` - `Organization monthly budget exhausted. Please increase it.` - `Project monthly budget exhausted. Please increase it.`
+ // The organization's balance or monthly budget has been reached. Additional credits or a higher cap are required before making further requests. `error_type` is one of [`organization_balance_exhausted`](https://soniox.com/docs/api-reference/errors#organization-balance-exhausted), [`organization_monthly_budget_exhausted`](https://soniox.com/docs/api-reference/errors#organization-monthly-budget-exhausted), or [`project_monthly_budget_exhausted`](https://soniox.com/docs/api-reference/errors#project-monthly-budget-exhausted). Possible messages: - `Organization balance exhausted. Please either add funds manually or enable autopay.` - `Organization monthly budget exhausted. Please increase it.` - `Project monthly budget exhausted. Please increase it.`
if ((int)__response.StatusCode == 402)
{
string? __content_402 = null;
@@ -1105,7 +1105,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // The temporary API key in use was created with a `max_session_duration_seconds` cap, and that duration has elapsed for the current session. Create a new temporary API key to start a new session. `error_type`: [`temp_api_key_session_expired`](https://soniox.com/docs/api-reference/errors#temp-api-key-session-expired). Possible messages: - `Temporary API key session duration limit exceeded. Create a new temporary API key to start a new session.`
+ // The temporary API key in use was created with a `max_session_duration_seconds` cap, and that duration has elapsed for the current session. Create a new temporary API key to start a new session. `error_type`: [`temp_api_key_session_expired`](https://soniox.com/docs/api-reference/errors#temp-api-key-session-expired). Possible messages: - `Temporary API key session duration limit exceeded. Create a new temporary API key to start a new session.`
if ((int)__response.StatusCode == 403)
{
string? __content_403 = null;
@@ -1142,7 +1142,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // A backend call exceeded its deadline before completing. Retry the request. `error_type`: [`request_timeout`](https://soniox.com/docs/api-reference/errors#request-timeout).
+ // A backend call exceeded its deadline before completing. Retry the request. `error_type`: [`request_timeout`](https://soniox.com/docs/api-reference/errors#request-timeout).
if ((int)__response.StatusCode == 408)
{
string? __content_408 = null;
@@ -1179,7 +1179,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // A usage or rate limit has been exceeded. You may retry after a delay or request an increase in limits via the Soniox Console. `error_type`: [`limit_exceeded`](https://soniox.com/docs/api-reference/errors#limit-exceeded). Possible messages: - `Requests per minute limit for text-to-speech has been exceeded for your organization.` - `Requests per minute limit for text-to-speech has been exceeded for your project.` - `Concurrent requests limit for text-to-speech has been exceeded for your organization.` - `Concurrent requests limit for text-to-speech has been exceeded for your project.`
+ // A usage or rate limit has been exceeded. You may retry after a delay or request an increase in limits via the Soniox Console. `error_type`: [`limit_exceeded`](https://soniox.com/docs/api-reference/errors#limit-exceeded). Possible messages: - `Requests per minute limit for text-to-speech has been exceeded for your organization.` - `Requests per minute limit for text-to-speech has been exceeded for your project.` - `Concurrent requests limit for text-to-speech has been exceeded for your organization.` - `Concurrent requests limit for text-to-speech has been exceeded for your project.`
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
@@ -1216,7 +1216,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // An unexpected server-side error occurred. The request may be retried. `error_type`: [`internal_error`](https://soniox.com/docs/api-reference/errors#internal-error). Possible messages: - `The server had an error processing your request. Sorry about that! You can retry your request, or contact us through our support email support@soniox.com if you keep seeing this error.`
+ // An unexpected server-side error occurred. The request may be retried. `error_type`: [`internal_error`](https://soniox.com/docs/api-reference/errors#internal-error). Possible messages: - `The server had an error processing your request. Sorry about that! You can retry your request, or contact us through our support email support@soniox.com if you keep seeing this error.`
if ((int)__response.StatusCode == 500)
{
string? __content_500 = null;
@@ -1253,7 +1253,7 @@ partial void ProcessGenerateTtsResponseContent(
h => h.Key,
h => h.Value));
}
- // The service cannot accept the request right now (upstream overload, cache exhausted, shutdown). Retry with backoff. The numeric `(code N)` in the message identifies the sub-cause for support triage. `error_type`: [`service_unavailable`](https://soniox.com/docs/api-reference/errors#service-unavailable). Possible messages: - `Cannot continue request (code N). Please restart the request. Refer to: https://soniox.com/url/cannot-continue-request`
+ // The service cannot accept the request right now (upstream overload, cache exhausted, shutdown). Retry with backoff. The numeric `(code N)` in the message identifies the sub-cause for support triage. `error_type`: [`service_unavailable`](https://soniox.com/docs/api-reference/errors#service-unavailable). Possible messages: - `Cannot continue request (code N). Please restart the request. Refer to: https://soniox.com/url/cannot-continue-request`
if ((int)__response.StatusCode == 503)
{
string? __content_503 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.TtsClient.g.cs b/src/libs/Soniox/Generated/Soniox.TtsClient.g.cs
index 827aa95..c15087e 100644
--- a/src/libs/Soniox/Generated/Soniox.TtsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TtsClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class TtsClient : global::Soniox.ITtsClient, global::Syste
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.TtsModelsClient.GetTtsModels.g.cs b/src/libs/Soniox/Generated/Soniox.TtsModelsClient.GetTtsModels.g.cs
index 6a0403a..781534c 100644
--- a/src/libs/Soniox/Generated/Soniox.TtsModelsClient.GetTtsModels.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TtsModelsClient.GetTtsModels.g.cs
@@ -126,7 +126,7 @@ partial void ProcessGetTtsModelsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Soniox/Generated/Soniox.TtsModelsClient.g.cs b/src/libs/Soniox/Generated/Soniox.TtsModelsClient.g.cs
index 5eec245..e654b2c 100644
--- a/src/libs/Soniox/Generated/Soniox.TtsModelsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.TtsModelsClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class TtsModelsClient : global::Soniox.ITtsModelsClient, g
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.UsageLogsClient.GetUsageLogs.g.cs b/src/libs/Soniox/Generated/Soniox.UsageLogsClient.GetUsageLogs.g.cs
index dca99c3..03f21d2 100644
--- a/src/libs/Soniox/Generated/Soniox.UsageLogsClient.GetUsageLogs.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.UsageLogsClient.GetUsageLogs.g.cs
@@ -197,7 +197,7 @@ partial void ProcessGetUsageLogsResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -393,7 +393,7 @@ partial void ProcessGetUsageLogsResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_request`: A query parameter is missing or invalid. Common causes: `start_time` / `end_time` not parseable as ISO 8601, `end_time` not strictly after `start_time`, the window between them exceeds 31 days, or `cursor` does not match the supplied `start_time` / `end_time` / `sort`. - `invalid_cursor`: The `cursor` parameter is invalid. Omit `cursor` to start pagination from the beginning.
+ // Invalid request. Error types: - `invalid_request`: A query parameter is missing or invalid. Common causes: `start_time` / `end_time` not parseable as ISO 8601, `end_time` not strictly after `start_time`, the window between them exceeds 31 days, or `cursor` does not match the supplied `start_time` / `end_time` / `sort`. - `invalid_cursor`: The `cursor` parameter is invalid. Omit `cursor` to start pagination from the beginning.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -467,7 +467,7 @@ partial void ProcessGetUsageLogsResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.UsageLogsClient.g.cs b/src/libs/Soniox/Generated/Soniox.UsageLogsClient.g.cs
index aef02e9..280a0f5 100644
--- a/src/libs/Soniox/Generated/Soniox.UsageLogsClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.UsageLogsClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class UsageLogsClient : global::Soniox.IUsageLogsClient, g
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.UsageSummaryClient.GetUsageSummary.g.cs b/src/libs/Soniox/Generated/Soniox.UsageSummaryClient.GetUsageSummary.g.cs
index 927b38f..9899f43 100644
--- a/src/libs/Soniox/Generated/Soniox.UsageSummaryClient.GetUsageSummary.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.UsageSummaryClient.GetUsageSummary.g.cs
@@ -156,7 +156,7 @@ partial void ProcessGetUsageSummaryResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
@@ -349,7 +349,7 @@ partial void ProcessGetUsageSummaryResponseContent(
retryReason: global::System.String.Empty,
cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
}
- // Invalid request. Error types: - `invalid_request`: A query parameter is missing or invalid. Common causes: `start_time` / `end_time` not parseable as ISO 8601, `end_time` not strictly after `start_time`, or the window covers more than 366 UTC days.
+ // Invalid request. Error types: - `invalid_request`: A query parameter is missing or invalid. Common causes: `start_time` / `end_time` not parseable as ISO 8601, `end_time` not strictly after `start_time`, or the window covers more than 366 UTC days.
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
@@ -423,7 +423,7 @@ partial void ProcessGetUsageSummaryResponseContent(
h => h.Key,
h => h.Value));
}
- // Not found. Error types: - `not_found`: The project could not be resolved while collecting its usage. Retry, and contact support if it persists.
+ // Not found. Error types: - `not_found`: The project could not be resolved while collecting its usage. Retry, and contact support if it persists.
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
@@ -460,7 +460,7 @@ partial void ProcessGetUsageSummaryResponseContent(
h => h.Key,
h => h.Value));
}
- // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
+ // Rate / capacity limit exceeded. Error types: - `limit_exceeded`: The caller hit a per-minute request rate or other capacity limit. The `message` describes which limit was hit.
if ((int)__response.StatusCode == 429)
{
string? __content_429 = null;
diff --git a/src/libs/Soniox/Generated/Soniox.UsageSummaryClient.g.cs b/src/libs/Soniox/Generated/Soniox.UsageSummaryClient.g.cs
index a21ecf1..556330f 100644
--- a/src/libs/Soniox/Generated/Soniox.UsageSummaryClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.UsageSummaryClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class UsageSummaryClient : global::Soniox.IUsageSummaryCli
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{
diff --git a/src/libs/Soniox/Generated/Soniox.VoicesClient.CreateVoice.g.cs b/src/libs/Soniox/Generated/Soniox.VoicesClient.CreateVoice.g.cs
index b9b017c..f6b0a09 100644
--- a/src/libs/Soniox/Generated/Soniox.VoicesClient.CreateVoice.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.VoicesClient.CreateVoice.g.cs
@@ -139,7 +139,7 @@ partial void ProcessCreateVoiceResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -784,7 +784,7 @@ request.Filename is null
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
@@ -1385,7 +1385,7 @@ request.Filename is null
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent();
diff --git a/src/libs/Soniox/Generated/Soniox.VoicesClient.DeleteVoice.g.cs b/src/libs/Soniox/Generated/Soniox.VoicesClient.DeleteVoice.g.cs
index a834ae4..a5fcb56 100644
--- a/src/libs/Soniox/Generated/Soniox.VoicesClient.DeleteVoice.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.VoicesClient.DeleteVoice.g.cs
@@ -127,7 +127,7 @@ await DeleteVoiceAsResponseAsync(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoice.g.cs b/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoice.g.cs
index 370e14c..300e9ef 100644
--- a/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoice.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoice.g.cs
@@ -134,7 +134,7 @@ partial void ProcessGetVoiceResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoices.g.cs b/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoices.g.cs
index a4d02ed..ebfe5d1 100644
--- a/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoices.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoices.g.cs
@@ -156,7 +156,7 @@ partial void ProcessGetVoicesResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoicesCount.g.cs b/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoicesCount.g.cs
index 07d63bb..f97938b 100644
--- a/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoicesCount.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.VoicesClient.GetVoicesCount.g.cs
@@ -126,7 +126,7 @@ partial void ProcessGetVoicesCountResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
global::Soniox.AutoSDKRequestOptionsSupport.ApplyHeaders(
request: __httpRequest,
diff --git a/src/libs/Soniox/Generated/Soniox.VoicesClient.RecomputeVoice.g.cs b/src/libs/Soniox/Generated/Soniox.VoicesClient.RecomputeVoice.g.cs
index 40c8470..7303a94 100644
--- a/src/libs/Soniox/Generated/Soniox.VoicesClient.RecomputeVoice.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.VoicesClient.RecomputeVoice.g.cs
@@ -147,7 +147,7 @@ partial void ProcessRecomputeVoiceResponseContent(
__authorization.Location == "Header")
{
__httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
- }
+ }
}
var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
var __httpRequestContent = new global::System.Net.Http.StringContent(
diff --git a/src/libs/Soniox/Generated/Soniox.VoicesClient.g.cs b/src/libs/Soniox/Generated/Soniox.VoicesClient.g.cs
index 77f214d..f3b9bd2 100644
--- a/src/libs/Soniox/Generated/Soniox.VoicesClient.g.cs
+++ b/src/libs/Soniox/Generated/Soniox.VoicesClient.g.cs
@@ -40,7 +40,7 @@ public sealed partial class VoicesClient : global::Soniox.IVoicesClient, global:
internal global::System.Lazy JsonSerializerContextProvider { get; set; } = new(() => global::Soniox.SourceGenerationContext.Default);
///
- ///
+ ///
///
public global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext
{