diff --git a/src/libs/ResembleAI/Generated/ResembleAI.AudioEnhancementClient.CreateAudioEnhancement.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.AudioEnhancementClient.CreateAudioEnhancement.g.cs
index e4fd491..a01f103 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.AudioEnhancementClient.CreateAudioEnhancement.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.AudioEnhancementClient.CreateAudioEnhancement.g.cs
@@ -51,8 +51,7 @@ partial void ProcessCreateAudioEnhancementResponseContent(
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
@@ -75,8 +74,7 @@ partial void ProcessCreateAudioEnhancementResponseContent(
}
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
@@ -193,14 +191,6 @@ request.AudioFilename is null
__contentAudioFile.Headers.ContentDisposition.FileNameStar = null;
}
- if (request.EnhancementEngine != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent((request.EnhancementEngine).HasValue ? (request.EnhancementEngine).GetValueOrDefault().ToValueString() : string.Empty),
- name: "\"enhancement_engine\"");
-
- }
if (request.RemoveNoise != default)
{
@@ -224,30 +214,6 @@ request.AudioFilename is null
content: new global::System.Net.Http.StringContent((global::System.Convert.ToString(request.StudioSound, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty).ToLowerInvariant()),
name: "\"studio_sound\"");
- }
- if (request.EnhancementLevel != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.EnhancementLevel, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"enhancement_level\"");
-
- }
- if (request.LoudnessTargetLevel != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.LoudnessTargetLevel, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"loudness_target_level\"");
-
- }
- if (request.LoudnessPeakLimit != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.LoudnessPeakLimit, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"loudness_peak_limit\"");
-
}
__httpRequest.Content = __httpRequestContent;
@@ -614,8 +580,7 @@ request.AudioFilename is null
}
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
@@ -623,46 +588,27 @@ request.AudioFilename is null
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
///
- ///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
///
- /// Remove background noise. Engine v2 only.
+ /// Remove background noise.
/// Default Value: true
///
///
- /// Normalize audio levels. Engine v2 only.
+ /// Normalize audio levels.
/// Default Value: true
///
///
- /// Apply studio-quality enhancement. Engine v2 only.
+ /// Apply studio-quality enhancement.
/// Default Value: true
///
- ///
- /// Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy).
- ///
- ///
- /// Target loudness in LUFS. Engine v1 only (legacy).
- /// Default Value: -14
- ///
- ///
- /// Peak limit in dBTP. Engine v1 only (legacy).
- /// Default Value: -1
- ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task CreateAudioEnhancementAsync(
byte[] audioFile,
string audioFilename,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? enhancementEngine = default,
bool? removeNoise = default,
bool? normalize = default,
bool? studioSound = default,
- double? enhancementLevel = default,
- int? loudnessTargetLevel = default,
- int? loudnessPeakLimit = default,
global::ResembleAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
@@ -670,13 +616,9 @@ request.AudioFilename is null
{
AudioFile = audioFile,
AudioFilename = audioFilename,
- EnhancementEngine = enhancementEngine,
RemoveNoise = removeNoise,
Normalize = normalize,
StudioSound = studioSound,
- EnhancementLevel = enhancementLevel,
- LoudnessTargetLevel = loudnessTargetLevel,
- LoudnessPeakLimit = loudnessPeakLimit,
};
return await CreateAudioEnhancementAsync(
@@ -687,8 +629,7 @@ request.AudioFilename is null
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
@@ -696,46 +637,27 @@ request.AudioFilename is null
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
///
- ///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
///
- /// Remove background noise. Engine v2 only.
+ /// Remove background noise.
/// Default Value: true
///
///
- /// Normalize audio levels. Engine v2 only.
+ /// Normalize audio levels.
/// Default Value: true
///
///
- /// Apply studio-quality enhancement. Engine v2 only.
+ /// Apply studio-quality enhancement.
/// Default Value: true
///
- ///
- /// Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy).
- ///
- ///
- /// Target loudness in LUFS. Engine v1 only (legacy).
- /// Default Value: -14
- ///
- ///
- /// Peak limit in dBTP. Engine v1 only (legacy).
- /// Default Value: -1
- ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task CreateAudioEnhancementAsync(
global::System.IO.Stream audioFile,
string audioFilename,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? enhancementEngine = default,
bool? removeNoise = default,
bool? normalize = default,
bool? studioSound = default,
- double? enhancementLevel = default,
- int? loudnessTargetLevel = default,
- int? loudnessPeakLimit = default,
global::ResembleAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
@@ -745,13 +667,9 @@ request.AudioFilename is null
{
AudioFile = global::System.Array.Empty(),
AudioFilename = audioFilename,
- EnhancementEngine = enhancementEngine,
RemoveNoise = removeNoise,
Normalize = normalize,
StudioSound = studioSound,
- EnhancementLevel = enhancementLevel,
- LoudnessTargetLevel = loudnessTargetLevel,
- LoudnessPeakLimit = loudnessPeakLimit,
};
PrepareArguments(
client: HttpClient);
@@ -856,14 +774,6 @@ request.AudioFilename is null
__contentAudioFile.Headers.ContentDisposition.FileNameStar = null;
}
- if (request.EnhancementEngine != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent((request.EnhancementEngine).HasValue ? (request.EnhancementEngine).GetValueOrDefault().ToValueString() : string.Empty),
- name: "\"enhancement_engine\"");
-
- }
if (request.RemoveNoise != default)
{
@@ -887,30 +797,6 @@ request.AudioFilename is null
content: new global::System.Net.Http.StringContent((global::System.Convert.ToString(request.StudioSound, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty).ToLowerInvariant()),
name: "\"studio_sound\"");
- }
- if (request.EnhancementLevel != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.EnhancementLevel, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"enhancement_level\"");
-
- }
- if (request.LoudnessTargetLevel != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.LoudnessTargetLevel, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"loudness_target_level\"");
-
- }
- if (request.LoudnessPeakLimit != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.LoudnessPeakLimit, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"loudness_peak_limit\"");
-
}
__httpRequest.Content = __httpRequestContent;
@@ -1269,8 +1155,7 @@ request.AudioFilename is null
}
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
@@ -1278,46 +1163,27 @@ request.AudioFilename is null
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
///
- ///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
///
- /// Remove background noise. Engine v2 only.
+ /// Remove background noise.
/// Default Value: true
///
///
- /// Normalize audio levels. Engine v2 only.
+ /// Normalize audio levels.
/// Default Value: true
///
///
- /// Apply studio-quality enhancement. Engine v2 only.
+ /// Apply studio-quality enhancement.
/// Default Value: true
///
- ///
- /// Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy).
- ///
- ///
- /// Target loudness in LUFS. Engine v1 only (legacy).
- /// Default Value: -14
- ///
- ///
- /// Peak limit in dBTP. Engine v1 only (legacy).
- /// Default Value: -1
- ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task> CreateAudioEnhancementAsResponseAsync(
global::System.IO.Stream audioFile,
string audioFilename,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? enhancementEngine = default,
bool? removeNoise = default,
bool? normalize = default,
bool? studioSound = default,
- double? enhancementLevel = default,
- int? loudnessTargetLevel = default,
- int? loudnessPeakLimit = default,
global::ResembleAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
@@ -1327,13 +1193,9 @@ request.AudioFilename is null
{
AudioFile = global::System.Array.Empty(),
AudioFilename = audioFilename,
- EnhancementEngine = enhancementEngine,
RemoveNoise = removeNoise,
Normalize = normalize,
StudioSound = studioSound,
- EnhancementLevel = enhancementLevel,
- LoudnessTargetLevel = loudnessTargetLevel,
- LoudnessPeakLimit = loudnessPeakLimit,
};
PrepareArguments(
client: HttpClient);
@@ -1438,14 +1300,6 @@ request.AudioFilename is null
__contentAudioFile.Headers.ContentDisposition.FileNameStar = null;
}
- if (request.EnhancementEngine != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent((request.EnhancementEngine).HasValue ? (request.EnhancementEngine).GetValueOrDefault().ToValueString() : string.Empty),
- name: "\"enhancement_engine\"");
-
- }
if (request.RemoveNoise != default)
{
@@ -1469,30 +1323,6 @@ request.AudioFilename is null
content: new global::System.Net.Http.StringContent((global::System.Convert.ToString(request.StudioSound, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty).ToLowerInvariant()),
name: "\"studio_sound\"");
- }
- if (request.EnhancementLevel != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.EnhancementLevel, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"enhancement_level\"");
-
- }
- if (request.LoudnessTargetLevel != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.LoudnessTargetLevel, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"loudness_target_level\"");
-
- }
- if (request.LoudnessPeakLimit != default)
- {
-
- __httpRequestContent.Add(
- content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.LoudnessPeakLimit, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty),
- name: "\"loudness_peak_limit\"");
-
}
__httpRequest.Content = __httpRequestContent;
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.IAudioEnhancementClient.CreateAudioEnhancement.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.IAudioEnhancementClient.CreateAudioEnhancement.g.cs
index 509057b..fd3815f 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.IAudioEnhancementClient.CreateAudioEnhancement.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.IAudioEnhancementClient.CreateAudioEnhancement.g.cs
@@ -6,8 +6,7 @@ public partial interface IAudioEnhancementClient
{
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
@@ -20,8 +19,7 @@ public partial interface IAudioEnhancementClient
global::System.Threading.CancellationToken cancellationToken = default);
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
@@ -34,8 +32,7 @@ public partial interface IAudioEnhancementClient
global::System.Threading.CancellationToken cancellationToken = default);
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
@@ -43,53 +40,33 @@ public partial interface IAudioEnhancementClient
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
///
- ///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
///
- /// Remove background noise. Engine v2 only.
+ /// Remove background noise.
/// Default Value: true
///
///
- /// Normalize audio levels. Engine v2 only.
+ /// Normalize audio levels.
/// Default Value: true
///
///
- /// Apply studio-quality enhancement. Engine v2 only.
+ /// Apply studio-quality enhancement.
/// Default Value: true
///
- ///
- /// Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy).
- ///
- ///
- /// Target loudness in LUFS. Engine v1 only (legacy).
- /// Default Value: -14
- ///
- ///
- /// Peak limit in dBTP. Engine v1 only (legacy).
- /// Default Value: -1
- ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task CreateAudioEnhancementAsync(
byte[] audioFile,
string audioFilename,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? enhancementEngine = default,
bool? removeNoise = default,
bool? normalize = default,
bool? studioSound = default,
- double? enhancementLevel = default,
- int? loudnessTargetLevel = default,
- int? loudnessPeakLimit = default,
global::ResembleAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
@@ -97,52 +74,32 @@ public partial interface IAudioEnhancementClient
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
///
- ///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
///
- /// Remove background noise. Engine v2 only.
+ /// Remove background noise.
/// Default Value: true
///
///
- /// Normalize audio levels. Engine v2 only.
+ /// Normalize audio levels.
/// Default Value: true
///
///
- /// Apply studio-quality enhancement. Engine v2 only.
+ /// Apply studio-quality enhancement.
/// Default Value: true
///
- ///
- /// Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy).
- ///
- ///
- /// Target loudness in LUFS. Engine v1 only (legacy).
- /// Default Value: -14
- ///
- ///
- /// Peak limit in dBTP. Engine v1 only (legacy).
- /// Default Value: -1
- ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task CreateAudioEnhancementAsync(
global::System.IO.Stream audioFile,
string audioFilename,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? enhancementEngine = default,
bool? removeNoise = default,
bool? normalize = default,
bool? studioSound = default,
- double? enhancementLevel = default,
- int? loudnessTargetLevel = default,
- int? loudnessPeakLimit = default,
global::ResembleAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
///
/// Create audio enhancement
- /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
- /// The API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.
+ /// Submit an audio file for enhancement. Processing happens asynchronously in the background.
///
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
@@ -150,46 +107,27 @@ public partial interface IAudioEnhancementClient
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
///
- ///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
///
- /// Remove background noise. Engine v2 only.
+ /// Remove background noise.
/// Default Value: true
///
///
- /// Normalize audio levels. Engine v2 only.
+ /// Normalize audio levels.
/// Default Value: true
///
///
- /// Apply studio-quality enhancement. Engine v2 only.
+ /// Apply studio-quality enhancement.
/// Default Value: true
///
- ///
- /// Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy).
- ///
- ///
- /// Target loudness in LUFS. Engine v1 only (legacy).
- /// Default Value: -14
- ///
- ///
- /// Peak limit in dBTP. Engine v1 only (legacy).
- /// Default Value: -1
- ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task> CreateAudioEnhancementAsResponseAsync(
global::System.IO.Stream audioFile,
string audioFilename,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? enhancementEngine = default,
bool? removeNoise = default,
bool? normalize = default,
bool? studioSound = default,
- double? enhancementLevel = default,
- int? loudnessTargetLevel = default,
- int? loudnessPeakLimit = default,
global::ResembleAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.g.cs
deleted file mode 100644
index ed5bb0d..0000000
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace ResembleAI.JsonConverters
-{
- ///
- public sealed class AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine Read(
- ref global::System.Text.Json.Utf8JsonReader reader,
- global::System.Type typeToConvert,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- switch (reader.TokenType)
- {
- case global::System.Text.Json.JsonTokenType.String:
- {
- var stringValue = reader.GetString();
- if (stringValue != null)
- {
- return global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineNullable.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineNullable.g.cs
deleted file mode 100644
index d5a6bcf..0000000
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace ResembleAI.JsonConverters
-{
- ///
- public sealed class AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine? Read(
- ref global::System.Text.Json.Utf8JsonReader reader,
- global::System.Type typeToConvert,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- switch (reader.TokenType)
- {
- case global::System.Text.Json.JsonTokenType.String:
- {
- var stringValue = reader.GetString();
- if (stringValue != null)
- {
- return global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine? value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- if (value == null)
- {
- writer.WriteNullValue();
- }
- else
- {
- writer.WriteStringValue(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.g.cs
deleted file mode 100644
index 4d6cd68..0000000
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace ResembleAI.JsonConverters
-{
- ///
- public sealed class AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine Read(
- ref global::System.Text.Json.Utf8JsonReader reader,
- global::System.Type typeToConvert,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- switch (reader.TokenType)
- {
- case global::System.Text.Json.JsonTokenType.String:
- {
- var stringValue = reader.GetString();
- if (stringValue != null)
- {
- return global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineNullable.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineNullable.g.cs
deleted file mode 100644
index eb689b6..0000000
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace ResembleAI.JsonConverters
-{
- ///
- public sealed class AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? Read(
- ref global::System.Text.Json.Utf8JsonReader reader,
- global::System.Type typeToConvert,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- switch (reader.TokenType)
- {
- case global::System.Text.Json.JsonTokenType.String:
- {
- var stringValue = reader.GetString();
- if (stringValue != null)
- {
- return global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- if (value == null)
- {
- writer.WriteNullValue();
- }
- else
- {
- writer.WriteStringValue(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
index 813e5ef..6800fdd 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
@@ -277,12 +277,10 @@ namespace ResembleAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SpeechToTextUuidQuestionsQuestionUuidGetResponsesContentApplicationJsonSchemaItem))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SpeechToTextGetTranscriptQuestionResponse200))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus), TypeInfoPropertyName = "AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine), TypeInfoPropertyName = "AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementListAudioEnhancementsResponse200))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.ListAudioEnhancementsRequestBadRequestError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine), TypeInfoPropertyName = "AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus), TypeInfoPropertyName = "AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementCreateAudioEnhancementResponse202))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.CreateAudioEnhancementRequestBadRequestError))]
@@ -514,6 +512,8 @@ namespace ResembleAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidFeedbackPostRequestBodyContentApplicationJsonSchemaType?), TypeInfoPropertyName = "NullableDetectUuidFeedbackPostRequestBodyContentApplicationJsonSchemaType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentTier?), TypeInfoPropertyName = "NullableDetectAgentTier2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentRunSummaryStatus?), TypeInfoPropertyName = "NullableDetectAgentRunSummaryStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Guid?))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.IntelligencePostRequestBodyContentApplicationJsonSchemaMediaType?), TypeInfoPropertyName = "NullableIntelligencePostRequestBodyContentApplicationJsonSchemaMediaType2")]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -526,8 +526,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
Converters = new global::System.Type[]
{
})]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Guid?))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.IntelligencePostRequestBodyContentApplicationJsonSchemaMediaType?), TypeInfoPropertyName = "NullableIntelligencePostRequestBodyContentApplicationJsonSchemaMediaType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItemMediaType?), TypeInfoPropertyName = "NullableIntelligencePostResponsesContentApplicationJsonSchemaItemMediaType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraudType?), TypeInfoPropertyName = "NullableIntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraudType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLivenessAssessment?), TypeInfoPropertyName = "NullableIntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLivenessAssessment2")]
@@ -582,8 +580,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SpeechToTextPostResponsesContentApplicationJsonSchemaItemStatus?), TypeInfoPropertyName = "NullableSpeechToTextPostResponsesContentApplicationJsonSchemaItemStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemStatus?), TypeInfoPropertyName = "NullableSpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus?), TypeInfoPropertyName = "NullableAudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine?), TypeInfoPropertyName = "NullableAudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine?), TypeInfoPropertyName = "NullableAudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus?), TypeInfoPropertyName = "NullableAudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.AudioEnhancementsEnhancementUuidGetResponsesContentApplicationJsonSchemaStatus?), TypeInfoPropertyName = "NullableAudioEnhancementsEnhancementUuidGetResponsesContentApplicationJsonSchemaStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.PronunciationsGetParametersStatus?), TypeInfoPropertyName = "NullablePronunciationsGetParametersStatus2")]
@@ -1013,14 +1009,6 @@ public override bool CanConvert(global::System.Type typeToConvert)
|| typeToConvert == typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus?)
- || typeToConvert == typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine)
-
- || typeToConvert == typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine?)
-
- || typeToConvert == typeof(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine)
-
- || typeToConvert == typeof(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine?)
-
|| typeToConvert == typeof(global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus)
|| typeToConvert == typeof(global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus?)
@@ -1820,26 +1808,6 @@ public override bool CanConvert(global::System.Type typeToConvert)
return new global::ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatusNullableJsonConverter();
}
- if (typeToConvert == typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine))
- {
- return new global::ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineJsonConverter();
- }
-
- if (typeToConvert == typeof(global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine?))
- {
- return new global::ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineNullableJsonConverter();
- }
-
- if (typeToConvert == typeof(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine))
- {
- return new global::ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineJsonConverter();
- }
-
- if (typeToConvert == typeof(global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine?))
- {
- return new global::ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineNullableJsonConverter();
- }
-
if (typeToConvert == typeof(global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus))
{
return new global::ResembleAI.JsonConverters.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatusJsonConverter();
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
index b1426df..22c4704 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
@@ -1069,831 +1069,823 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine? Type259 { get; set; }
+ public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems? Type259 { get; set; }
///
///
///
- public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems? Type260 { get; set; }
+ public global::ResembleAI.AudioEnhancementListAudioEnhancementsResponse200? Type260 { get; set; }
///
///
///
- public global::ResembleAI.AudioEnhancementListAudioEnhancementsResponse200? Type261 { get; set; }
+ public global::System.Collections.Generic.IList? Type261 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type262 { get; set; }
+ public global::ResembleAI.ListAudioEnhancementsRequestBadRequestError? Type262 { get; set; }
///
///
///
- public global::ResembleAI.ListAudioEnhancementsRequestBadRequestError? Type263 { get; set; }
+ public global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus? Type263 { get; set; }
///
///
///
- public global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? Type264 { get; set; }
+ public global::ResembleAI.AudioEnhancementCreateAudioEnhancementResponse202? Type264 { get; set; }
///
///
///
- public global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus? Type265 { get; set; }
+ public global::ResembleAI.CreateAudioEnhancementRequestBadRequestError? Type265 { get; set; }
///
///
///
- public global::ResembleAI.AudioEnhancementCreateAudioEnhancementResponse202? Type266 { get; set; }
+ public global::ResembleAI.CreateAudioEnhancementRequestForbiddenError? Type266 { get; set; }
///
///
///
- public global::ResembleAI.CreateAudioEnhancementRequestBadRequestError? Type267 { get; set; }
+ public global::ResembleAI.AudioEnhancementsEnhancementUuidGetResponsesContentApplicationJsonSchemaStatus? Type267 { get; set; }
///
///
///
- public global::ResembleAI.CreateAudioEnhancementRequestForbiddenError? Type268 { get; set; }
+ public global::ResembleAI.AudioEnhancementGetAudioEnhancementResponse200? Type268 { get; set; }
///
///
///
- public global::ResembleAI.AudioEnhancementsEnhancementUuidGetResponsesContentApplicationJsonSchemaStatus? Type269 { get; set; }
+ public global::ResembleAI.GetAudioEnhancementRequestNotFoundError? Type269 { get; set; }
///
///
///
- public global::ResembleAI.AudioEnhancementGetAudioEnhancementResponse200? Type270 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type270 { get; set; }
///
///
///
- public global::ResembleAI.GetAudioEnhancementRequestNotFoundError? Type271 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatus? Type271 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type272 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusTextToSpeech? Type272 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatus? Type273 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusFill? Type273 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusTextToSpeech? Type274 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusVoiceConversion? Type274 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusFill? Type275 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsApiSupport? Type275 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusVoiceConversion? Type276 { get; set; }
+ public global::ResembleAI.VoicesListVoicesResponse200? Type276 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsApiSupport? Type277 { get; set; }
+ public global::System.Collections.Generic.IList? Type277 { get; set; }
///
///
///
- public global::ResembleAI.VoicesListVoicesResponse200? Type278 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem? Type278 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type279 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus? Type279 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem? Type280 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type280 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus? Type281 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type281 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type282 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type282 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type283 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemApiSupport? Type283 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type284 { get; set; }
+ public global::ResembleAI.VoicesCreateVoiceResponse200? Type284 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemApiSupport? Type285 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItem? Type285 { get; set; }
///
///
///
- public global::ResembleAI.VoicesCreateVoiceResponse200? Type286 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatus? Type286 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItem? Type287 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type287 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatus? Type288 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type288 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type289 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type289 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type290 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemApiSupport? Type290 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type291 { get; set; }
+ public global::ResembleAI.VoicesGetVoiceResponse200? Type291 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemApiSupport? Type292 { get; set; }
+ public global::ResembleAI.VoicesDeleteVoiceResponse200? Type292 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetVoiceResponse200? Type293 { get; set; }
+ public global::ResembleAI.VoicesBuildVoiceResponse200? Type293 { get; set; }
///
///
///
- public global::ResembleAI.VoicesDeleteVoiceResponse200? Type294 { get; set; }
+ public global::ResembleAI.VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems? Type294 { get; set; }
///
///
///
- public global::ResembleAI.VoicesBuildVoiceResponse200? Type295 { get; set; }
+ public global::ResembleAI.VoiceDesignGenerateVoiceDesignResponse200? Type295 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems? Type296 { get; set; }
+ public global::System.Collections.Generic.IList? Type296 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignGenerateVoiceDesignResponse200? Type297 { get; set; }
+ public global::ResembleAI.VoiceDesignCreateVoiceFromCandidateResponse200? Type297 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type298 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems? Type298 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignCreateVoiceFromCandidateResponse200? Type299 { get; set; }
+ public global::ResembleAI.RecordingsListRecordingsResponse200? Type299 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems? Type300 { get; set; }
+ public global::System.Collections.Generic.IList? Type300 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsListRecordingsResponse200? Type301 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem? Type301 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type302 { get; set; }
+ public global::ResembleAI.RecordingsCreateRecordingResponse200? Type302 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem? Type303 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem? Type303 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsCreateRecordingResponse200? Type304 { get; set; }
+ public global::ResembleAI.RecordingsGetRecordingResponse200? Type304 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem? Type305 { get; set; }
+ public global::ResembleAI.RecordingsDeleteRecordingResponse200? Type305 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsGetRecordingResponse200? Type306 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem? Type306 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsDeleteRecordingResponse200? Type307 { get; set; }
+ public global::ResembleAI.RecordingsUpdateRecordingResponse200? Type307 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem? Type308 { get; set; }
+ public global::ResembleAI.TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems? Type308 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsUpdateRecordingResponse200? Type309 { get; set; }
+ public global::ResembleAI.TermSubstitutionsListTermSubstitutionsResponse200? Type309 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems? Type310 { get; set; }
+ public global::System.Collections.Generic.IList? Type310 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsListTermSubstitutionsResponse200? Type311 { get; set; }
+ public global::ResembleAI.TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem? Type311 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type312 { get; set; }
+ public global::ResembleAI.TermSubstitutionsCreateTermSubstitutionResponse200? Type312 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem? Type313 { get; set; }
+ public global::ResembleAI.TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem? Type313 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsCreateTermSubstitutionResponse200? Type314 { get; set; }
+ public global::ResembleAI.TermSubstitutionsGetTermSubstitutionResponse200? Type314 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem? Type315 { get; set; }
+ public global::ResembleAI.TermSubstitutionsDeleteTermSubstitutionResponse200? Type315 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsGetTermSubstitutionResponse200? Type316 { get; set; }
+ public global::ResembleAI.PronunciationsGetParametersStatus? Type316 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsDeleteTermSubstitutionResponse200? Type317 { get; set; }
+ public global::ResembleAI.CustomPronunciationStatus? Type317 { get; set; }
///
///
///
- public global::ResembleAI.PronunciationsGetParametersStatus? Type318 { get; set; }
+ public global::ResembleAI.CustomPronunciation? Type318 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationStatus? Type319 { get; set; }
+ public global::ResembleAI.CustomPronunciationsListPronunciationsResponse200? Type319 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciation? Type320 { get; set; }
+ public global::System.Collections.Generic.IList? Type320 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsListPronunciationsResponse200? Type321 { get; set; }
+ public global::ResembleAI.CustomPronunciationsCreatePronunciationResponse201? Type321 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type322 { get; set; }
+ public global::ResembleAI.PronunciationsBulkPostResponsesContentApplicationJsonSchemaErrorsItems? Type322 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsCreatePronunciationResponse201? Type323 { get; set; }
+ public global::ResembleAI.CustomPronunciationsBulkCreatePronunciationsResponse201? Type323 { get; set; }
///
///
///
- public global::ResembleAI.PronunciationsBulkPostResponsesContentApplicationJsonSchemaErrorsItems? Type324 { get; set; }
+ public global::System.Collections.Generic.IList? Type324 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsBulkCreatePronunciationsResponse201? Type325 { get; set; }
+ public global::ResembleAI.CustomPronunciationsGetPronunciationResponse200? Type325 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type326 { get; set; }
+ public global::ResembleAI.CustomPronunciationsDeletePronunciationResponse200? Type326 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsGetPronunciationResponse200? Type327 { get; set; }
+ public global::ResembleAI.CustomPronunciationsUpdatePronunciationResponse200? Type327 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsDeletePronunciationResponse200? Type328 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsGetResponsesContentApplicationJsonSchemaItemsItems? Type328 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsUpdatePronunciationResponse200? Type329 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsListVoiceSettingsPresetsResponse200? Type329 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsGetResponsesContentApplicationJsonSchemaItemsItems? Type330 { get; set; }
+ public global::System.Collections.Generic.IList? Type330 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsListVoiceSettingsPresetsResponse200? Type331 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsPostResponsesContentApplicationJsonSchemaData? Type331 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type332 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsCreateVoiceSettingsPresetResponse201? Type332 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsPostResponsesContentApplicationJsonSchemaData? Type333 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUuidGetResponsesContentApplicationJsonSchemaData? Type333 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsCreateVoiceSettingsPresetResponse201? Type334 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsGetVoiceSettingsPresetResponse200? Type334 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUuidGetResponsesContentApplicationJsonSchemaData? Type335 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsDeleteVoiceSettingsPresetResponse200? Type335 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsGetVoiceSettingsPresetResponse200? Type336 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUuidPatchResponsesContentApplicationJsonSchemaData? Type336 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsDeleteVoiceSettingsPresetResponse200? Type337 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUpdateVoiceSettingsPresetResponse200? Type337 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUuidPatchResponsesContentApplicationJsonSchemaData? Type338 { get; set; }
+ public global::ResembleAI.ProjectsGetResponsesContentApplicationJsonSchemaItemsItems? Type338 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUpdateVoiceSettingsPresetResponse200? Type339 { get; set; }
+ public global::ResembleAI.ProjectsListProjectsResponse200? Type339 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsGetResponsesContentApplicationJsonSchemaItemsItems? Type340 { get; set; }
+ public global::System.Collections.Generic.IList? Type340 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsListProjectsResponse200? Type341 { get; set; }
+ public global::ResembleAI.ProjectsPostResponsesContentApplicationJsonSchemaItem? Type341 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type342 { get; set; }
+ public global::ResembleAI.ProjectsCreateProjectResponse200? Type342 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsPostResponsesContentApplicationJsonSchemaItem? Type343 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidGetResponsesContentApplicationJsonSchemaItem? Type343 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsCreateProjectResponse200? Type344 { get; set; }
+ public global::ResembleAI.ProjectsGetProjectResponse200? Type344 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidGetResponsesContentApplicationJsonSchemaItem? Type345 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidPutResponsesContentApplicationJsonSchemaItem? Type345 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsGetProjectResponse200? Type346 { get; set; }
+ public global::ResembleAI.ProjectsUpdateProjectResponse200? Type346 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidPutResponsesContentApplicationJsonSchemaItem? Type347 { get; set; }
+ public global::ResembleAI.ProjectsDeleteProjectResponse200? Type347 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsUpdateProjectResponse200? Type348 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsGetResponsesContentApplicationJsonSchemaItemsItems? Type348 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsDeleteProjectResponse200? Type349 { get; set; }
+ public global::ResembleAI.ClipsListClipsResponse200? Type349 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsGetResponsesContentApplicationJsonSchemaItemsItems? Type350 { get; set; }
+ public global::System.Collections.Generic.IList? Type350 { get; set; }
///
///
///
- public global::ResembleAI.ClipsListClipsResponse200? Type351 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsClipUuidGetResponsesContentApplicationJsonSchemaItem? Type351 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type352 { get; set; }
+ public global::ResembleAI.ClipsGetClipResponse200? Type352 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsClipUuidGetResponsesContentApplicationJsonSchemaItem? Type353 { get; set; }
+ public global::ResembleAI.ClipsDeleteClipResponse200? Type353 { get; set; }
///
///
///
- public global::ResembleAI.ClipsGetClipResponse200? Type354 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsClipUuidPatchResponsesContentApplicationJsonSchemaItem? Type354 { get; set; }
///
///
///
- public global::ResembleAI.ClipsDeleteClipResponse200? Type355 { get; set; }
+ public global::ResembleAI.ClipsUpdateClipResponse200? Type355 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsClipUuidPatchResponsesContentApplicationJsonSchemaItem? Type356 { get; set; }
+ public global::ResembleAI.DuetVoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type356 { get; set; }
///
///
///
- public global::ResembleAI.ClipsUpdateClipResponse200? Type357 { get; set; }
+ public global::ResembleAI.DuetsListDuetVoicesResponse200? Type357 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type358 { get; set; }
+ public global::System.Collections.Generic.IList? Type358 { get; set; }
///
///
///
- public global::ResembleAI.DuetsListDuetVoicesResponse200? Type359 { get; set; }
+ public global::ResembleAI.DuetVoicesPostResponsesContentApplicationJsonSchemaItem? Type359 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type360 { get; set; }
+ public global::ResembleAI.DuetsCreateDuetVoiceResponse200? Type360 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesPostResponsesContentApplicationJsonSchemaItem? Type361 { get; set; }
+ public global::ResembleAI.DuetVoicesIdPutResponsesContentApplicationJsonSchemaItem? Type361 { get; set; }
///
///
///
- public global::ResembleAI.DuetsCreateDuetVoiceResponse200? Type362 { get; set; }
+ public global::ResembleAI.DuetsUpdateDuetVoiceResponse200? Type362 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesIdPutResponsesContentApplicationJsonSchemaItem? Type363 { get; set; }
+ public global::ResembleAI.DuetsDeleteDuetVoiceResponse200? Type363 { get; set; }
///
///
///
- public global::ResembleAI.DuetsUpdateDuetVoiceResponse200? Type364 { get; set; }
+ public global::ResembleAI.DuetVoicePairsGetResponsesContentApplicationJsonSchemaItemsItems? Type364 { get; set; }
///
///
///
- public global::ResembleAI.DuetsDeleteDuetVoiceResponse200? Type365 { get; set; }
+ public global::ResembleAI.DuetsListDuetVoicePairsResponse200? Type365 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicePairsGetResponsesContentApplicationJsonSchemaItemsItems? Type366 { get; set; }
+ public global::System.Collections.Generic.IList? Type366 { get; set; }
///
///
///
- public global::ResembleAI.DuetsListDuetVoicePairsResponse200? Type367 { get; set; }
+ public global::ResembleAI.DuetVoicePairsPostResponsesContentApplicationJsonSchemaItem? Type367 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type368 { get; set; }
+ public global::ResembleAI.DuetsCreateDuetVoicePairResponse200? Type368 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicePairsPostResponsesContentApplicationJsonSchemaItem? Type369 { get; set; }
+ public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItemsSpeaker? Type369 { get; set; }
///
///
///
- public global::ResembleAI.DuetsCreateDuetVoicePairResponse200? Type370 { get; set; }
+ public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItems? Type370 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItemsSpeaker? Type371 { get; set; }
+ public global::ResembleAI.DuetPostResponsesContentApplicationJsonSchemaItem? Type371 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItems? Type372 { get; set; }
+ public global::ResembleAI.DuetsGenerateDuetResponse200? Type372 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostResponsesContentApplicationJsonSchemaItem? Type373 { get; set; }
+ public global::ResembleAI.AccountGetResponsesContentApplicationJsonSchemaItem? Type373 { get; set; }
///
///
///
- public global::ResembleAI.DuetsGenerateDuetResponse200? Type374 { get; set; }
+ public global::ResembleAI.AccountGetAccountResponse200? Type374 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetResponsesContentApplicationJsonSchemaItem? Type375 { get; set; }
+ public global::ResembleAI.AccountTeamsGetResponsesContentApplicationJsonSchemaItemsItems? Type375 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetAccountResponse200? Type376 { get; set; }
+ public global::ResembleAI.AccountGetTeamsResponse200? Type376 { get; set; }
///
///
///
- public global::ResembleAI.AccountTeamsGetResponsesContentApplicationJsonSchemaItemsItems? Type377 { get; set; }
+ public global::System.Collections.Generic.IList? Type377 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetTeamsResponse200? Type378 { get; set; }
+ public global::ResembleAI.AccountTeamsTeamUuidGetResponsesContentApplicationJsonSchemaItem? Type378 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type379 { get; set; }
+ public global::ResembleAI.AccountGetTeamResponse200? Type379 { get; set; }
///
///
///
- public global::ResembleAI.AccountTeamsTeamUuidGetResponsesContentApplicationJsonSchemaItem? Type380 { get; set; }
+ public global::ResembleAI.BillingPlanPlanType? Type380 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetTeamResponse200? Type381 { get; set; }
+ public global::ResembleAI.BillingPlanBillingInterval? Type381 { get; set; }
///
///
///
- public global::ResembleAI.BillingPlanPlanType? Type382 { get; set; }
+ public global::ResembleAI.BillingPlanFamily? Type382 { get; set; }
///
///
///
- public global::ResembleAI.BillingPlanBillingInterval? Type383 { get; set; }
+ public global::ResembleAI.BillingPlanProductCategory? Type383 { get; set; }
///
///
///
- public global::ResembleAI.BillingPlanFamily? Type384 { get; set; }
+ public global::ResembleAI.BillingProductRateTier? Type384 { get; set; }
///
///
///
- public global::ResembleAI.BillingPlanProductCategory? Type385 { get; set; }
+ public global::ResembleAI.BillingProductFamily? Type385 { get; set; }
///
///
///
- public global::ResembleAI.BillingProductRateTier? Type386 { get; set; }
+ public global::ResembleAI.BillingPlanProduct? Type386 { get; set; }
///
///
///
- public global::ResembleAI.BillingProductFamily? Type387 { get; set; }
+ public global::System.Collections.Generic.IList? Type387 { get; set; }
///
///
///
- public global::ResembleAI.BillingPlanProduct? Type388 { get; set; }
+ public global::ResembleAI.BillingPlan? Type388 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type389 { get; set; }
+ public global::System.Collections.Generic.IList? Type389 { get; set; }
///
///
///
- public global::ResembleAI.BillingPlan? Type390 { get; set; }
+ public global::ResembleAI.BillingPlansResponse? Type390 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type391 { get; set; }
+ public global::System.Collections.Generic.IList? Type391 { get; set; }
///
///
///
- public global::ResembleAI.BillingPlansResponse? Type392 { get; set; }
+ public global::ResembleAI.BillingError? Type392 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type393 { get; set; }
+ public global::ResembleAI.BillingPlanResponse? Type393 { get; set; }
///
///
///
- public global::ResembleAI.BillingError? Type394 { get; set; }
+ public global::ResembleAI.BillingSubscriptionStatus? Type394 { get; set; }
///
///
///
- public global::ResembleAI.BillingPlanResponse? Type395 { get; set; }
+ public global::ResembleAI.BillingSubscriptionProductCategory? Type395 { get; set; }
///
///
///
- public global::ResembleAI.BillingSubscriptionStatus? Type396 { get; set; }
+ public global::ResembleAI.BillingSubscriptionProduct? Type396 { get; set; }
///
///
///
- public global::ResembleAI.BillingSubscriptionProductCategory? Type397 { get; set; }
+ public global::ResembleAI.BillingSubscriptionPlanProduct? Type397 { get; set; }
///
///
///
- public global::ResembleAI.BillingSubscriptionProduct? Type398 { get; set; }
+ public global::ResembleAI.BillingSubscriptionItem? Type398 { get; set; }
///
///
///
- public global::ResembleAI.BillingSubscriptionPlanProduct? Type399 { get; set; }
+ public global::ResembleAI.BillingSubscription? Type399 { get; set; }
///
///
///
- public global::ResembleAI.BillingSubscriptionItem? Type400 { get; set; }
+ public global::System.Collections.Generic.IList? Type400 { get; set; }
///
///
///
- public global::ResembleAI.BillingSubscription? Type401 { get; set; }
+ public global::ResembleAI.BillingSubscriptionResponse? Type401 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type402 { get; set; }
+ public global::ResembleAI.BillingForbiddenError? Type402 { get; set; }
///
///
///
- public global::ResembleAI.BillingSubscriptionResponse? Type403 { get; set; }
+ public global::ResembleAI.BillingProductQuantityChange? Type403 { get; set; }
///
///
///
- public global::ResembleAI.BillingForbiddenError? Type404 { get; set; }
+ public global::ResembleAI.BillingUpdateProductsRequest? Type404 { get; set; }
///
///
///
- public global::ResembleAI.BillingProductQuantityChange? Type405 { get; set; }
+ public global::System.Collections.Generic.IList? Type405 { get; set; }
///
///
///
- public global::ResembleAI.BillingUpdateProductsRequest? Type406 { get; set; }
+ public global::ResembleAI.BillingPaymentActionRequired? Type406 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type407 { get; set; }
+ public global::ResembleAI.BillingValidationErrors? Type407 { get; set; }
///
///
///
- public global::ResembleAI.BillingPaymentActionRequired? Type408 { get; set; }
+ public global::ResembleAI.UpdateBillingSubscriptionProductsRequestUnprocessableEntityError? Type408 { get; set; }
///
///
///
- public global::ResembleAI.BillingValidationErrors? Type409 { get; set; }
+ public global::ResembleAI.BillingConfirmPaymentRequest? Type409 { get; set; }
///
///
///
- public global::ResembleAI.UpdateBillingSubscriptionProductsRequestUnprocessableEntityError? Type410 { get; set; }
+ public global::ResembleAI.ConfirmBillingSubscriptionPaymentRequestUnprocessableEntityError? Type410 { get; set; }
///
///
///
- public global::ResembleAI.BillingConfirmPaymentRequest? Type411 { get; set; }
+ public global::ResembleAI.BillingChangePlanRequest? Type411 { get; set; }
///
///
///
- public global::ResembleAI.ConfirmBillingSubscriptionPaymentRequestUnprocessableEntityError? Type412 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type412 { get; set; }
///
///
///
- public global::ResembleAI.BillingChangePlanRequest? Type413 { get; set; }
+ public global::ResembleAI.ChangeBillingPlanRequestUnprocessableEntityError? Type413 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type414 { get; set; }
+ public global::ResembleAI.BillingWallet? Type414 { get; set; }
///
///
///
- public global::ResembleAI.ChangeBillingPlanRequestUnprocessableEntityError? Type415 { get; set; }
+ public global::ResembleAI.BillingWalletResponse? Type415 { get; set; }
///
///
///
- public global::ResembleAI.BillingWallet? Type416 { get; set; }
+ public global::ResembleAI.BillingWalletTransactionTransactionType? Type416 { get; set; }
///
///
///
- public global::ResembleAI.BillingWalletResponse? Type417 { get; set; }
+ public global::ResembleAI.BillingWalletTransaction? Type417 { get; set; }
///
///
///
- public global::ResembleAI.BillingWalletTransactionTransactionType? Type418 { get; set; }
+ public global::ResembleAI.BillingPagination? Type418 { get; set; }
///
///
///
- public global::ResembleAI.BillingWalletTransaction? Type419 { get; set; }
+ public global::ResembleAI.BillingTransactionsResponse? Type419 { get; set; }
///
///
///
- public global::ResembleAI.BillingPagination? Type420 { get; set; }
+ public global::System.Collections.Generic.IList? Type420 { get; set; }
///
///
///
- public global::ResembleAI.BillingTransactionsResponse? Type421 { get; set; }
+ public global::ResembleAI.BillingAutoReloadSetting? Type421 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type422 { get; set; }
+ public global::ResembleAI.BillingAutoReloadResponse? Type422 { get; set; }
///
///
///
- public global::ResembleAI.BillingAutoReloadSetting? Type423 { get; set; }
+ public global::ResembleAI.BillingUpdateAutoReloadRequest? Type423 { get; set; }
///
///
///
- public global::ResembleAI.BillingAutoReloadResponse? Type424 { get; set; }
+ public global::ResembleAI.BillingWalletUpdateBillingAutoReloadResponse200? Type424 { get; set; }
///
///
///
- public global::ResembleAI.BillingUpdateAutoReloadRequest? Type425 { get; set; }
+ public global::ResembleAI.UpdateBillingAutoReloadRequestUnprocessableEntityError? Type425 { get; set; }
///
///
///
- public global::ResembleAI.BillingWalletUpdateBillingAutoReloadResponse200? Type426 { get; set; }
+ public global::ResembleAI.AccountBillingUsageGetResponsesContentApplicationJsonSchemaItem? Type426 { get; set; }
///
///
///
- public global::ResembleAI.UpdateBillingAutoReloadRequestUnprocessableEntityError? Type427 { get; set; }
+ public global::ResembleAI.AccountGetBillingUsageResponse200? Type427 { get; set; }
///
///
///
- public global::ResembleAI.AccountBillingUsageGetResponsesContentApplicationJsonSchemaItem? Type428 { get; set; }
+ public global::ResembleAI.CreateDetectionRequest? Type428 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetBillingUsageResponse200? Type429 { get; set; }
+ public global::ResembleAI.CreateDetectBatchRequest? Type429 { get; set; }
///
///
///
- public global::ResembleAI.CreateDetectionRequest? Type430 { get; set; }
+ public global::System.Collections.Generic.IList? Type430 { get; set; }
///
///
///
- public global::ResembleAI.CreateDetectBatchRequest? Type431 { get; set; }
+ public global::ResembleAI.CreateDetectFeedbackRequest? Type431 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type432 { get; set; }
+ public global::ResembleAI.RunDetectAgentInvestigationRequest? Type432 { get; set; }
///
///
///
- public global::ResembleAI.CreateDetectFeedbackRequest? Type433 { get; set; }
+ public global::ResembleAI.RunIntelligenceRequest? Type433 { get; set; }
///
///
///
- public global::ResembleAI.RunDetectAgentInvestigationRequest? Type434 { get; set; }
+ public global::ResembleAI.AskDetectIntelligenceQuestionRequest? Type434 { get; set; }
///
///
///
- public global::ResembleAI.RunIntelligenceRequest? Type435 { get; set; }
+ public global::ResembleAI.CreateIdentityAttachmentRequest? Type435 { get; set; }
///
///
///
- public global::ResembleAI.AskDetectIntelligenceQuestionRequest? Type436 { get; set; }
+ public global::ResembleAI.SearchIdentitiesRequest? Type436 { get; set; }
///
///
///
- public global::ResembleAI.CreateIdentityAttachmentRequest? Type437 { get; set; }
+ public global::ResembleAI.CreateSignalSubmissionRequest? Type437 { get; set; }
///
///
///
- public global::ResembleAI.SearchIdentitiesRequest? Type438 { get; set; }
+ public global::ResembleAI.CreateSecureUploadRequest? Type438 { get; set; }
///
///
///
- public global::ResembleAI.CreateSignalSubmissionRequest? Type439 { get; set; }
+ public global::ResembleAI.SynthesizeRequest? Type439 { get; set; }
///
///
///
- public global::ResembleAI.CreateSecureUploadRequest? Type440 { get; set; }
+ public global::ResembleAI.StreamSynthesizeRequest? Type440 { get; set; }
///
///
///
- public global::ResembleAI.SynthesizeRequest? Type441 { get; set; }
+ public global::ResembleAI.CreateTranscriptRequest? Type441 { get; set; }
///
///
///
- public global::ResembleAI.StreamSynthesizeRequest? Type442 { get; set; }
+ public global::ResembleAI.AskTranscriptQuestionRequest? Type442 { get; set; }
///
///
///
- public global::ResembleAI.CreateTranscriptRequest? Type443 { get; set; }
+ public global::ResembleAI.CreateAudioEnhancementRequest? Type443 { get; set; }
///
///
///
- public global::ResembleAI.AskTranscriptQuestionRequest? Type444 { get; set; }
+ public global::ResembleAI.CreateVoiceRequest? Type444 { get; set; }
///
///
///
- public global::ResembleAI.CreateAudioEnhancementRequest? Type445 { get; set; }
+ public global::ResembleAI.BuildVoiceRequest? Type445 { get; set; }
///
///
///
- public global::ResembleAI.CreateVoiceRequest? Type446 { get; set; }
+ public global::ResembleAI.GenerateVoiceDesignRequest? Type446 { get; set; }
///
///
///
- public global::ResembleAI.BuildVoiceRequest? Type447 { get; set; }
+ public global::ResembleAI.CreateVoiceFromCandidateRequest? Type447 { get; set; }
///
///
///
- public global::ResembleAI.GenerateVoiceDesignRequest? Type448 { get; set; }
+ public global::ResembleAI.CreateRecordingRequest? Type448 { get; set; }
///
///
///
- public global::ResembleAI.CreateVoiceFromCandidateRequest? Type449 { get; set; }
+ public global::ResembleAI.UpdateRecordingRequest? Type449 { get; set; }
///
///
///
- public global::ResembleAI.CreateRecordingRequest? Type450 { get; set; }
+ public global::ResembleAI.CreateTermSubstitutionRequest? Type450 { get; set; }
///
///
///
- public global::ResembleAI.UpdateRecordingRequest? Type451 { get; set; }
+ public global::ResembleAI.CreatePronunciationRequest? Type451 { get; set; }
///
///
///
- public global::ResembleAI.CreateTermSubstitutionRequest? Type452 { get; set; }
+ public global::ResembleAI.BulkCreatePronunciationsRequest? Type452 { get; set; }
///
///
///
- public global::ResembleAI.CreatePronunciationRequest? Type453 { get; set; }
+ public global::ResembleAI.UpdatePronunciationRequest? Type453 { get; set; }
///
///
///
- public global::ResembleAI.BulkCreatePronunciationsRequest? Type454 { get; set; }
+ public global::ResembleAI.CreateVoiceSettingsPresetRequest? Type454 { get; set; }
///
///
///
- public global::ResembleAI.UpdatePronunciationRequest? Type455 { get; set; }
+ public global::ResembleAI.UpdateVoiceSettingsPresetRequest? Type455 { get; set; }
///
///
///
- public global::ResembleAI.CreateVoiceSettingsPresetRequest? Type456 { get; set; }
+ public global::ResembleAI.CreateProjectRequest? Type456 { get; set; }
///
///
///
- public global::ResembleAI.UpdateVoiceSettingsPresetRequest? Type457 { get; set; }
+ public global::ResembleAI.UpdateProjectRequest? Type457 { get; set; }
///
///
///
- public global::ResembleAI.CreateProjectRequest? Type458 { get; set; }
+ public global::ResembleAI.UpdateClipRequest? Type458 { get; set; }
///
///
///
- public global::ResembleAI.UpdateProjectRequest? Type459 { get; set; }
+ public global::ResembleAI.CreateDuetVoiceRequest? Type459 { get; set; }
///
///
///
- public global::ResembleAI.UpdateClipRequest? Type460 { get; set; }
+ public global::ResembleAI.UpdateDuetVoiceRequest? Type460 { get; set; }
///
///
///
- public global::ResembleAI.CreateDuetVoiceRequest? Type461 { get; set; }
+ public global::ResembleAI.CreateDuetVoicePairRequest? Type461 { get; set; }
///
///
///
- public global::ResembleAI.UpdateDuetVoiceRequest? Type462 { get; set; }
+ public global::ResembleAI.GenerateDuetRequest? Type462 { get; set; }
///
///
///
- public global::ResembleAI.CreateDuetVoicePairRequest? Type463 { get; set; }
- ///
- ///
- ///
- public global::ResembleAI.GenerateDuetRequest? Type464 { get; set; }
- ///
- ///
- ///
- public global::System.Collections.Generic.IList? Type465 { get; set; }
+ public global::System.Collections.Generic.IList? Type463 { get; set; }
///
///
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems.g.cs
index e222d27..1797cc0 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems.g.cs
@@ -21,13 +21,6 @@ public sealed partial class AudioEnhancementsGetResponsesContentApplicationJsonS
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatusJsonConverter))]
public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus? Status { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("enhancement_engine")]
- [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineJsonConverter))]
- public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine? EnhancementEngine { get; set; }
-
///
///
///
@@ -35,41 +28,23 @@ public sealed partial class AudioEnhancementsGetResponsesContentApplicationJsonS
public string? ErrorMessage { get; set; }
///
- /// Engine v2 only.
+ /// Whether background noise removal was applied.
///
[global::System.Text.Json.Serialization.JsonPropertyName("remove_noise")]
public bool? RemoveNoise { get; set; }
///
- /// Engine v2 only.
+ /// Whether loudness normalization was applied.
///
[global::System.Text.Json.Serialization.JsonPropertyName("normalize")]
public bool? Normalize { get; set; }
///
- /// Engine v2 only.
+ /// Whether studio-quality enhancement was applied.
///
[global::System.Text.Json.Serialization.JsonPropertyName("studio_sound")]
public bool? StudioSound { get; set; }
- ///
- /// Engine v1 only.
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("loudness_target_level")]
- public int? LoudnessTargetLevel { get; set; }
-
- ///
- /// Engine v1 only.
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("loudness_peak_limit")]
- public int? LoudnessPeakLimit { get; set; }
-
- ///
- /// Engine v1 only.
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("enhancement_level")]
- public double? EnhancementLevel { get; set; }
-
///
///
///
@@ -93,25 +68,15 @@ public sealed partial class AudioEnhancementsGetResponsesContentApplicationJsonS
///
///
///
- ///
///
///
- /// Engine v2 only.
+ /// Whether background noise removal was applied.
///
///
- /// Engine v2 only.
+ /// Whether loudness normalization was applied.
///
///
- /// Engine v2 only.
- ///
- ///
- /// Engine v1 only.
- ///
- ///
- /// Engine v1 only.
- ///
- ///
- /// Engine v1 only.
+ /// Whether studio-quality enhancement was applied.
///
///
///
@@ -121,27 +86,19 @@ public sealed partial class AudioEnhancementsGetResponsesContentApplicationJsonS
public AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems(
string? uuid,
global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus? status,
- global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine? enhancementEngine,
string? errorMessage,
bool? removeNoise,
bool? normalize,
bool? studioSound,
- int? loudnessTargetLevel,
- int? loudnessPeakLimit,
- double? enhancementLevel,
string? originalAudioUrl,
string? enhancedAudioUrl)
{
this.Uuid = uuid;
this.Status = status;
- this.EnhancementEngine = enhancementEngine;
this.ErrorMessage = errorMessage;
this.RemoveNoise = removeNoise;
this.Normalize = normalize;
this.StudioSound = studioSound;
- this.LoudnessTargetLevel = loudnessTargetLevel;
- this.LoudnessPeakLimit = loudnessPeakLimit;
- this.EnhancementLevel = enhancementLevel;
this.OriginalAudioUrl = originalAudioUrl;
this.EnhancedAudioUrl = enhancedAudioUrl;
}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.g.cs
deleted file mode 100644
index 102623f..0000000
--- a/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.g.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-
-#nullable enable
-
-namespace ResembleAI
-{
- ///
- ///
- ///
- public enum AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine
- {
- ///
- ///
- ///
- V1,
- ///
- ///
- ///
- V2,
- }
-
- ///
- /// Enum extensions to do fast conversions without the reflection.
- ///
- public static class AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngineExtensions
- {
- ///
- /// Converts an enum to a string.
- ///
- public static string ToValueString(this AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine value)
- {
- return value switch
- {
- AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.V1 => "v1",
- AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.V2 => "v2",
- _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
- };
- }
- ///
- /// Converts an string to a enum.
- ///
- public static AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine? ToEnum(string value)
- {
- return value switch
- {
- "v1" => AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.V1,
- "v2" => AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine.V2,
- _ => null,
- };
- }
- }
-}
\ No newline at end of file
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.g.cs
deleted file mode 100644
index 4cbce4e..0000000
--- a/src/libs/ResembleAI/Generated/ResembleAI.Models.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.g.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-
-#nullable enable
-
-namespace ResembleAI
-{
- ///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
- public enum AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine
- {
- ///
- ///
- ///
- V1,
- ///
- ///
- ///
- V2,
- }
-
- ///
- /// Enum extensions to do fast conversions without the reflection.
- ///
- public static class AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineExtensions
- {
- ///
- /// Converts an enum to a string.
- ///
- public static string ToValueString(this AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine value)
- {
- return value switch
- {
- AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.V1 => "v1",
- AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.V2 => "v2",
- _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
- };
- }
- ///
- /// Converts an string to a enum.
- ///
- public static AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? ToEnum(string value)
- {
- return value switch
- {
- "v1" => AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.V1,
- "v2" => AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine.V2,
- _ => null,
- };
- }
- }
-}
\ No newline at end of file
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.CreateAudioEnhancementRequest.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.CreateAudioEnhancementRequest.g.cs
index 124bc8b..83a7cca 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.Models.CreateAudioEnhancementRequest.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.CreateAudioEnhancementRequest.g.cs
@@ -23,54 +23,26 @@ public sealed partial class CreateAudioEnhancementRequest
public required string AudioFilename { get; set; }
///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("enhancement_engine")]
- [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngineJsonConverter))]
- public global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? EnhancementEngine { get; set; }
-
- ///
- /// Remove background noise. Engine v2 only.
+ /// Remove background noise.
/// Default Value: true
///
[global::System.Text.Json.Serialization.JsonPropertyName("remove_noise")]
public bool? RemoveNoise { get; set; }
///
- /// Normalize audio levels. Engine v2 only.
+ /// Normalize audio levels.
/// Default Value: true
///
[global::System.Text.Json.Serialization.JsonPropertyName("normalize")]
public bool? Normalize { get; set; }
///
- /// Apply studio-quality enhancement. Engine v2 only.
+ /// Apply studio-quality enhancement.
/// Default Value: true
///
[global::System.Text.Json.Serialization.JsonPropertyName("studio_sound")]
public bool? StudioSound { get; set; }
- ///
- /// Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy).
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("enhancement_level")]
- public double? EnhancementLevel { get; set; }
-
- ///
- /// Target loudness in LUFS. Engine v1 only (legacy).
- /// Default Value: -14
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("loudness_target_level")]
- public int? LoudnessTargetLevel { get; set; }
-
- ///
- /// Peak limit in dBTP. Engine v1 only (legacy).
- /// Default Value: -1
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("loudness_peak_limit")]
- public int? LoudnessPeakLimit { get; set; }
-
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -86,56 +58,33 @@ public sealed partial class CreateAudioEnhancementRequest
///
/// Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB.
///
- ///
- /// Enhancement engine to use. Default is v2.
- /// Default Value: v2
- ///
///
- /// Remove background noise. Engine v2 only.
+ /// Remove background noise.
/// Default Value: true
///
///
- /// Normalize audio levels. Engine v2 only.
+ /// Normalize audio levels.
/// Default Value: true
///
///
- /// Apply studio-quality enhancement. Engine v2 only.
+ /// Apply studio-quality enhancement.
/// Default Value: true
///
- ///
- /// Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy).
- ///
- ///
- /// Target loudness in LUFS. Engine v1 only (legacy).
- /// Default Value: -14
- ///
- ///
- /// Peak limit in dBTP. Engine v1 only (legacy).
- /// Default Value: -1
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
public CreateAudioEnhancementRequest(
byte[] audioFile,
string audioFilename,
- global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? enhancementEngine,
bool? removeNoise,
bool? normalize,
- bool? studioSound,
- double? enhancementLevel,
- int? loudnessTargetLevel,
- int? loudnessPeakLimit)
+ bool? studioSound)
{
this.AudioFile = audioFile ?? throw new global::System.ArgumentNullException(nameof(audioFile));
this.AudioFilename = audioFilename ?? throw new global::System.ArgumentNullException(nameof(audioFilename));
- this.EnhancementEngine = enhancementEngine;
this.RemoveNoise = removeNoise;
this.Normalize = normalize;
this.StudioSound = studioSound;
- this.EnhancementLevel = enhancementLevel;
- this.LoudnessTargetLevel = loudnessTargetLevel;
- this.LoudnessPeakLimit = loudnessPeakLimit;
}
///
diff --git a/src/libs/ResembleAI/openapi.yaml b/src/libs/ResembleAI/openapi.yaml
index 74c2cfe..846e7d9 100644
--- a/src/libs/ResembleAI/openapi.yaml
+++ b/src/libs/ResembleAI/openapi.yaml
@@ -3429,7 +3429,7 @@
"post": {
"operationId": "create-audio-enhancement",
"summary": "Create audio enhancement",
- "description": "Submit an audio file for enhancement. Processing happens asynchronously in the background.\nThe API defaults to the v2 enhancement engine. The v1 engine is legacy and will be sunset in a future release.\n",
+ "description": "Submit an audio file for enhancement. Processing happens asynchronously in the background.\n",
"tags": [
"audioEnhancement"
],
@@ -3487,43 +3487,20 @@
"format": "binary",
"description": "Audio file to enhance (WAV, MP3, M4A, MP4, OGG, AAC, FLAC). Max 150 MB."
},
- "enhancement_engine": {
- "$ref": "#/components/schemas/AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine",
- "description": "Enhancement engine to use. Default is v2."
- },
"remove_noise": {
"type": "boolean",
"default": true,
- "description": "Remove background noise. Engine v2 only."
+ "description": "Remove background noise."
},
"normalize": {
"type": "boolean",
"default": true,
- "description": "Normalize audio levels. Engine v2 only."
+ "description": "Normalize audio levels."
},
"studio_sound": {
"type": "boolean",
"default": true,
- "description": "Apply studio-quality enhancement. Engine v2 only."
- },
- "enhancement_level": {
- "type": "number",
- "format": "double",
- "description": "Enhancement intensity (0.0 to 1.0). Engine v1 only (legacy)."
- },
- "loudness_target_level": {
- "type": "integer",
- "minimum": -70,
- "maximum": -5,
- "default": -14,
- "description": "Target loudness in LUFS. Engine v1 only (legacy)."
- },
- "loudness_peak_limit": {
- "type": "integer",
- "minimum": -9,
- "maximum": 0,
- "default": -1,
- "description": "Peak limit in dBTP. Engine v1 only (legacy)."
+ "description": "Apply studio-quality enhancement."
}
},
"required": [
@@ -11590,14 +11567,6 @@
],
"title": "AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus"
},
- "AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine": {
- "type": "string",
- "enum": [
- "v1",
- "v2"
- ],
- "title": "AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine"
- },
"AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems": {
"type": "object",
"properties": {
@@ -11607,9 +11576,6 @@
"status": {
"$ref": "#/components/schemas/AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus"
},
- "enhancement_engine": {
- "$ref": "#/components/schemas/AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine"
- },
"error_message": {
"type": [
"string",
@@ -11618,28 +11584,15 @@
},
"remove_noise": {
"type": "boolean",
- "description": "Engine v2 only."
+ "description": "Whether background noise removal was applied."
},
"normalize": {
"type": "boolean",
- "description": "Engine v2 only."
+ "description": "Whether loudness normalization was applied."
},
"studio_sound": {
"type": "boolean",
- "description": "Engine v2 only."
- },
- "loudness_target_level": {
- "type": "integer",
- "description": "Engine v1 only."
- },
- "loudness_peak_limit": {
- "type": "integer",
- "description": "Engine v1 only."
- },
- "enhancement_level": {
- "type": "number",
- "format": "double",
- "description": "Engine v1 only."
+ "description": "Whether studio-quality enhancement was applied."
},
"original_audio_url": {
"type": "string",
@@ -11691,16 +11644,6 @@
},
"title": "ListAudioEnhancementsRequestBadRequestError"
},
- "AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine": {
- "type": "string",
- "enum": [
- "v1",
- "v2"
- ],
- "default": "v2",
- "description": "Enhancement engine to use. Default is v2.",
- "title": "AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine"
- },
"AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus": {
"type": "string",
"enum": [