diff --git a/src/libs/Speechify/Generated/Speechify.IToolDefinitionsClient.TestMCPConnection.g.cs b/src/libs/Speechify/Generated/Speechify.IToolDefinitionsClient.TestMCPConnection.g.cs
index feef9ee..c5b763d 100644
--- a/src/libs/Speechify/Generated/Speechify.IToolDefinitionsClient.TestMCPConnection.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.IToolDefinitionsClient.TestMCPConnection.g.cs
@@ -89,7 +89,21 @@ public partial interface IToolDefinitionsClient
/// the same decision: key on this header and refuse to act twice. One
/// connector serving both transports dedups on one identifier. The key
/// is `<run_id>:<step>`, and `GET /v1/agents/runs/{run_id}` resolves the
- /// run, its agent and the person it acts for from the id alone.
+ /// run, its agent and the person it acts for from the id alone.
+ /// Every request of a tool-call session also carries
+ /// `Speechify-Conversation-Id`, naming the unit of work on Speechify's
+ /// side the call belongs to, so you can trace one end to end: we hold
+ /// the question, your server holds the tool calls, and this is the
+ /// join. On a voice, text or Slack conversation it is the
+ /// conversation's `conv_…` id, set once when the session opens so its
+ /// handshake carries it too, and
+ /// `GET /v1/agents/conversations/{conversation_id}` resolves it. A
+ /// durable run has no conversation, so each tool call sends the run's
+ /// `arun_…` id instead, the same id that prefixes
+ /// `Speechify-Idempotency-Key`. The prefix says which you were sent.
+ /// The tool discovery a durable run performs before a step
+ /// (`initialize` + `tools/list`, no `tools/call`) is the one request
+ /// without it: its result is reused across runs, so it names no run.
///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentLlmConfigReasoningEffort.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentLlmConfigReasoningEffort.g.cs
new file mode 100644
index 0000000..d0432db
--- /dev/null
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentLlmConfigReasoningEffort.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Speechify.JsonConverters
+{
+ ///
+ public sealed class AgentLlmConfigReasoningEffortJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Speechify.AgentLlmConfigReasoningEffort 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::Speechify.AgentLlmConfigReasoningEffortExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Speechify.AgentLlmConfigReasoningEffort)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Speechify.AgentLlmConfigReasoningEffort);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Speechify.AgentLlmConfigReasoningEffort value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Speechify.AgentLlmConfigReasoningEffortExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentLlmConfigReasoningEffortNullable.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentLlmConfigReasoningEffortNullable.g.cs
new file mode 100644
index 0000000..f2dc47a
--- /dev/null
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentLlmConfigReasoningEffortNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Speechify.JsonConverters
+{
+ ///
+ public sealed class AgentLlmConfigReasoningEffortNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Speechify.AgentLlmConfigReasoningEffort? 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::Speechify.AgentLlmConfigReasoningEffortExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Speechify.AgentLlmConfigReasoningEffort)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Speechify.AgentLlmConfigReasoningEffort?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Speechify.AgentLlmConfigReasoningEffort? 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::Speechify.AgentLlmConfigReasoningEffortExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentSnapshotReasoningEffort.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentSnapshotReasoningEffort.g.cs
new file mode 100644
index 0000000..2a88915
--- /dev/null
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentSnapshotReasoningEffort.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Speechify.JsonConverters
+{
+ ///
+ public sealed class AgentSnapshotReasoningEffortJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Speechify.AgentSnapshotReasoningEffort 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::Speechify.AgentSnapshotReasoningEffortExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Speechify.AgentSnapshotReasoningEffort)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Speechify.AgentSnapshotReasoningEffort);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Speechify.AgentSnapshotReasoningEffort value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Speechify.AgentSnapshotReasoningEffortExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentSnapshotReasoningEffortNullable.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentSnapshotReasoningEffortNullable.g.cs
new file mode 100644
index 0000000..4d2730b
--- /dev/null
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentSnapshotReasoningEffortNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Speechify.JsonConverters
+{
+ ///
+ public sealed class AgentSnapshotReasoningEffortNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Speechify.AgentSnapshotReasoningEffort? 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::Speechify.AgentSnapshotReasoningEffortExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Speechify.AgentSnapshotReasoningEffort)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Speechify.AgentSnapshotReasoningEffort?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Speechify.AgentSnapshotReasoningEffort? 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::Speechify.AgentSnapshotReasoningEffortExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentToolConfig.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentToolConfig.g.cs
index c7d52c9..0b728ef 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentToolConfig.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.AgentToolConfig.g.cs
@@ -67,6 +67,7 @@ public class AgentToolConfigJsonConverter : global::System.Text.Json.Serializati
if (__jsonProps.Contains("long_running.filler_message")) __score3++;
if (__jsonProps.Contains("long_running.on_duplicate")) __score3++;
if (__jsonProps.Contains("long_running.wait_audio")) __score3++;
+ if (__jsonProps.Contains("timeout_ms")) __score3++;
if (__jsonProps.Contains("transport")) __score3++;
var __bestScore = 0;
var __bestIndex = -1;
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.CreateAgentToolRequestConfig.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.CreateAgentToolRequestConfig.g.cs
index 4dc5fd7..f2b1230 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonConverters.CreateAgentToolRequestConfig.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.CreateAgentToolRequestConfig.g.cs
@@ -67,6 +67,7 @@ public class CreateAgentToolRequestConfigJsonConverter : global::System.Text.Jso
if (__jsonProps.Contains("long_running.filler_message")) __score3++;
if (__jsonProps.Contains("long_running.on_duplicate")) __score3++;
if (__jsonProps.Contains("long_running.wait_audio")) __score3++;
+ if (__jsonProps.Contains("timeout_ms")) __score3++;
if (__jsonProps.Contains("transport")) __score3++;
var __bestScore = 0;
var __bestIndex = -1;
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.CreateToolRequestConfig.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.CreateToolRequestConfig.g.cs
index 8aa0063..08a89a4 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonConverters.CreateToolRequestConfig.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.CreateToolRequestConfig.g.cs
@@ -63,6 +63,7 @@ public class CreateToolRequestConfigJsonConverter : global::System.Text.Json.Ser
if (__jsonProps.Contains("long_running.filler_message")) __score2++;
if (__jsonProps.Contains("long_running.on_duplicate")) __score2++;
if (__jsonProps.Contains("long_running.wait_audio")) __score2++;
+ if (__jsonProps.Contains("timeout_ms")) __score2++;
if (__jsonProps.Contains("transport")) __score2++;
var __bestScore = 0;
var __bestIndex = -1;
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.ToolConfig.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.ToolConfig.g.cs
index c4063f8..ef94919 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonConverters.ToolConfig.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.ToolConfig.g.cs
@@ -63,6 +63,7 @@ public class ToolConfigJsonConverter : global::System.Text.Json.Serialization.Js
if (__jsonProps.Contains("long_running.filler_message")) __score2++;
if (__jsonProps.Contains("long_running.on_duplicate")) __score2++;
if (__jsonProps.Contains("long_running.wait_audio")) __score2++;
+ if (__jsonProps.Contains("timeout_ms")) __score2++;
if (__jsonProps.Contains("transport")) __score2++;
var __bestScore = 0;
var __bestIndex = -1;
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.UpdateToolRequestConfig.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.UpdateToolRequestConfig.g.cs
index f026579..3df7d70 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonConverters.UpdateToolRequestConfig.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.UpdateToolRequestConfig.g.cs
@@ -63,6 +63,7 @@ public class UpdateToolRequestConfigJsonConverter : global::System.Text.Json.Ser
if (__jsonProps.Contains("long_running.filler_message")) __score2++;
if (__jsonProps.Contains("long_running.on_duplicate")) __score2++;
if (__jsonProps.Contains("long_running.wait_audio")) __score2++;
+ if (__jsonProps.Contains("timeout_ms")) __score2++;
if (__jsonProps.Contains("transport")) __score2++;
var __bestScore = 0;
var __bestIndex = -1;
diff --git a/src/libs/Speechify/Generated/Speechify.JsonSerializerContext.g.cs b/src/libs/Speechify/Generated/Speechify.JsonSerializerContext.g.cs
index 7a9b79b..d04c0b4 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonSerializerContext.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonSerializerContext.g.cs
@@ -78,6 +78,7 @@ namespace Speechify
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentChannel), TypeInfoPropertyName = "AgentChannel2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentAdditionalLanguage))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentLlmConfigProvider), TypeInfoPropertyName = "AgentLlmConfigProvider2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentLlmConfigReasoningEffort), TypeInfoPropertyName = "AgentLlmConfigReasoningEffort2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentLLMConfig))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentTTSConfig))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentTurnHandlingConfigInterruptionSensitivity), TypeInfoPropertyName = "AgentTurnHandlingConfigInterruptionSensitivity2")]
@@ -201,6 +202,7 @@ namespace Speechify
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ConversationChannel), TypeInfoPropertyName = "ConversationChannel2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ConversationEndReason), TypeInfoPropertyName = "ConversationEndReason2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.SkillPin))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentSnapshotReasoningEffort), TypeInfoPropertyName = "AgentSnapshotReasoningEffort2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentSnapshotInterruptionSensitivity), TypeInfoPropertyName = "AgentSnapshotInterruptionSensitivity2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentSnapshotBackgroundNoisePreset), TypeInfoPropertyName = "AgentSnapshotBackgroundNoisePreset2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentSnapshot))]
@@ -512,8 +514,6 @@ namespace Speechify
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PhoneNumberCapability), TypeInfoPropertyName = "PhoneNumberCapability2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PhoneNumberReputationRisk), TypeInfoPropertyName = "PhoneNumberReputationRisk2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PhoneNumberReputation))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PhoneNumber))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -526,6 +526,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
Converters = new global::System.Type[]
{
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PhoneNumber))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ListPhoneNumbersResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.TwilioImportSpec))]
@@ -789,6 +791,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.DateTime?))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentChannel?), TypeInfoPropertyName = "NullableAgentChannel2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentLlmConfigProvider?), TypeInfoPropertyName = "NullableAgentLlmConfigProvider2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentLlmConfigReasoningEffort?), TypeInfoPropertyName = "NullableAgentLlmConfigReasoningEffort2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentTurnHandlingConfigInterruptionSensitivity?), TypeInfoPropertyName = "NullableAgentTurnHandlingConfigInterruptionSensitivity2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentBackgroundNoiseConfigPreset?), TypeInfoPropertyName = "NullableAgentBackgroundNoiseConfigPreset2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.WidgetConfigStyle?), TypeInfoPropertyName = "NullableWidgetConfigStyle2")]
@@ -811,6 +814,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ConversationTransport?), TypeInfoPropertyName = "NullableConversationTransport2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ConversationChannel?), TypeInfoPropertyName = "NullableConversationChannel2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ConversationEndReason?), TypeInfoPropertyName = "NullableConversationEndReason2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentSnapshotReasoningEffort?), TypeInfoPropertyName = "NullableAgentSnapshotReasoningEffort2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentSnapshotInterruptionSensitivity?), TypeInfoPropertyName = "NullableAgentSnapshotInterruptionSensitivity2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentSnapshotBackgroundNoisePreset?), TypeInfoPropertyName = "NullableAgentSnapshotBackgroundNoisePreset2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ConversationIvrSurrenderReason?), TypeInfoPropertyName = "NullableConversationIvrSurrenderReason2")]
@@ -1022,10 +1026,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1038,6 +1038,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
Converters = new global::System.Type[]
{
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
@@ -1218,6 +1222,10 @@ public override bool CanConvert(global::System.Type typeToConvert)
|| typeToConvert == typeof(global::Speechify.AgentLlmConfigProvider?)
+ || typeToConvert == typeof(global::Speechify.AgentLlmConfigReasoningEffort)
+
+ || typeToConvert == typeof(global::Speechify.AgentLlmConfigReasoningEffort?)
+
|| typeToConvert == typeof(global::Speechify.AgentTurnHandlingConfigInterruptionSensitivity)
|| typeToConvert == typeof(global::Speechify.AgentTurnHandlingConfigInterruptionSensitivity?)
@@ -1306,6 +1314,10 @@ public override bool CanConvert(global::System.Type typeToConvert)
|| typeToConvert == typeof(global::Speechify.ConversationEndReason?)
+ || typeToConvert == typeof(global::Speechify.AgentSnapshotReasoningEffort)
+
+ || typeToConvert == typeof(global::Speechify.AgentSnapshotReasoningEffort?)
+
|| typeToConvert == typeof(global::Speechify.AgentSnapshotInterruptionSensitivity)
|| typeToConvert == typeof(global::Speechify.AgentSnapshotInterruptionSensitivity?)
@@ -1937,6 +1949,16 @@ public override bool CanConvert(global::System.Type typeToConvert)
return new global::Speechify.JsonConverters.AgentLlmConfigProviderNullableJsonConverter();
}
+ if (typeToConvert == typeof(global::Speechify.AgentLlmConfigReasoningEffort))
+ {
+ return new global::Speechify.JsonConverters.AgentLlmConfigReasoningEffortJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::Speechify.AgentLlmConfigReasoningEffort?))
+ {
+ return new global::Speechify.JsonConverters.AgentLlmConfigReasoningEffortNullableJsonConverter();
+ }
+
if (typeToConvert == typeof(global::Speechify.AgentTurnHandlingConfigInterruptionSensitivity))
{
return new global::Speechify.JsonConverters.AgentTurnHandlingConfigInterruptionSensitivityJsonConverter();
@@ -2157,6 +2179,16 @@ public override bool CanConvert(global::System.Type typeToConvert)
return new global::Speechify.JsonConverters.ConversationEndReasonNullableJsonConverter();
}
+ if (typeToConvert == typeof(global::Speechify.AgentSnapshotReasoningEffort))
+ {
+ return new global::Speechify.JsonConverters.AgentSnapshotReasoningEffortJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::Speechify.AgentSnapshotReasoningEffort?))
+ {
+ return new global::Speechify.JsonConverters.AgentSnapshotReasoningEffortNullableJsonConverter();
+ }
+
if (typeToConvert == typeof(global::Speechify.AgentSnapshotInterruptionSensitivity))
{
return new global::Speechify.JsonConverters.AgentSnapshotInterruptionSensitivityJsonConverter();
diff --git a/src/libs/Speechify/Generated/Speechify.JsonSerializerContextTypes.g.cs b/src/libs/Speechify/Generated/Speechify.JsonSerializerContextTypes.g.cs
index 8692b61..35f68ad 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonSerializerContextTypes.g.cs
@@ -277,2691 +277,2699 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Speechify.AgentLLMConfig? Type61 { get; set; }
+ public global::Speechify.AgentLlmConfigReasoningEffort? Type61 { get; set; }
///
///
///
- public global::Speechify.AgentTTSConfig? Type62 { get; set; }
+ public global::Speechify.AgentLLMConfig? Type62 { get; set; }
///
///
///
- public global::Speechify.AgentTurnHandlingConfigInterruptionSensitivity? Type63 { get; set; }
+ public global::Speechify.AgentTTSConfig? Type63 { get; set; }
///
///
///
- public global::Speechify.AgentTurnHandlingConfig? Type64 { get; set; }
+ public global::Speechify.AgentTurnHandlingConfigInterruptionSensitivity? Type64 { get; set; }
///
///
///
- public global::Speechify.AgentMemoryConfig? Type65 { get; set; }
+ public global::Speechify.AgentTurnHandlingConfig? Type65 { get; set; }
///
///
///
- public global::Speechify.AgentNavigatorConfig? Type66 { get; set; }
+ public global::Speechify.AgentMemoryConfig? Type66 { get; set; }
///
///
///
- public global::Speechify.AgentGuardrailsConfig? Type67 { get; set; }
+ public global::Speechify.AgentNavigatorConfig? Type67 { get; set; }
///
///
///
- public global::Speechify.AgentBackgroundNoiseConfigPreset? Type68 { get; set; }
+ public global::Speechify.AgentGuardrailsConfig? Type68 { get; set; }
///
///
///
- public global::Speechify.AgentBackgroundNoiseConfig? Type69 { get; set; }
+ public global::Speechify.AgentBackgroundNoiseConfigPreset? Type69 { get; set; }
///
///
///
- public global::Speechify.WidgetConfigStyle? Type70 { get; set; }
+ public global::Speechify.AgentBackgroundNoiseConfig? Type70 { get; set; }
///
///
///
- public global::Speechify.WidgetConfigTheme? Type71 { get; set; }
+ public global::Speechify.WidgetConfigStyle? Type71 { get; set; }
///
///
///
- public global::Speechify.WidgetConfigAvatarType? Type72 { get; set; }
+ public global::Speechify.WidgetConfigTheme? Type72 { get; set; }
///
///
///
- public global::Speechify.WidgetConfigAvatar? Type73 { get; set; }
+ public global::Speechify.WidgetConfigAvatarType? Type73 { get; set; }
///
///
///
- public global::Speechify.WidgetConfigText? Type74 { get; set; }
+ public global::Speechify.WidgetConfigAvatar? Type74 { get; set; }
///
///
///
- public global::Speechify.WidgetConfigTerms? Type75 { get; set; }
+ public global::Speechify.WidgetConfigText? Type75 { get; set; }
///
///
///
- public global::Speechify.WidgetConfigTranscript? Type76 { get; set; }
+ public global::Speechify.WidgetConfigTerms? Type76 { get; set; }
///
///
///
- public global::Speechify.WidgetConfigTelemetry? Type77 { get; set; }
+ public global::Speechify.WidgetConfigTranscript? Type77 { get; set; }
///
///
///
- public global::Speechify.WidgetConfig? Type78 { get; set; }
+ public global::Speechify.WidgetConfigTelemetry? Type78 { get; set; }
///
///
///
- public global::Speechify.AmdConfigOnVoicemailAction? Type79 { get; set; }
+ public global::Speechify.WidgetConfig? Type79 { get; set; }
///
///
///
- public global::Speechify.AmdConfigOnVoicemail? Type80 { get; set; }
+ public global::Speechify.AmdConfigOnVoicemailAction? Type80 { get; set; }
///
///
///
- public global::Speechify.AmdConfigOnIvrAction? Type81 { get; set; }
+ public global::Speechify.AmdConfigOnVoicemail? Type81 { get; set; }
///
///
///
- public global::Speechify.AmdConfigOnIvr? Type82 { get; set; }
+ public global::Speechify.AmdConfigOnIvrAction? Type82 { get; set; }
///
///
///
- public global::Speechify.AmdConfigOnUnavailableAction? Type83 { get; set; }
+ public global::Speechify.AmdConfigOnIvr? Type83 { get; set; }
///
///
///
- public global::Speechify.AmdConfigOnUnavailable? Type84 { get; set; }
+ public global::Speechify.AmdConfigOnUnavailableAction? Type84 { get; set; }
///
///
///
- public global::Speechify.AmdConfigTuning? Type85 { get; set; }
+ public global::Speechify.AmdConfigOnUnavailable? Type85 { get; set; }
///
///
///
- public global::Speechify.AMDConfig? Type86 { get; set; }
+ public global::Speechify.AmdConfigTuning? Type86 { get; set; }
///
///
///
- public global::Speechify.AIDisclosure? Type87 { get; set; }
+ public global::Speechify.AMDConfig? Type87 { get; set; }
///
///
///
- public global::Speechify.Agent? Type88 { get; set; }
+ public global::Speechify.AIDisclosure? Type88 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type89 { get; set; }
+ public global::Speechify.Agent? Type89 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type90 { get; set; }
+ public global::System.Collections.Generic.IList? Type90 { get; set; }
///
///
///
- public global::Speechify.ListAgentsResponse? Type91 { get; set; }
+ public global::System.Collections.Generic.IList? Type91 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type92 { get; set; }
+ public global::Speechify.ListAgentsResponse? Type92 { get; set; }
///
///
///
- public global::Speechify.CreateAgentRequest? Type93 { get; set; }
+ public global::System.Collections.Generic.IList? Type93 { get; set; }
///
///
///
- public global::Speechify.AgentVoiceType? Type94 { get; set; }
+ public global::Speechify.CreateAgentRequest? Type94 { get; set; }
///
///
///
- public global::Speechify.AgentVoiceModelName? Type95 { get; set; }
+ public global::Speechify.AgentVoiceType? Type95 { get; set; }
///
///
///
- public global::Speechify.AgentVoiceLanguage? Type96 { get; set; }
+ public global::Speechify.AgentVoiceModelName? Type96 { get; set; }
///
///
///
- public global::Speechify.AgentVoiceModel? Type97 { get; set; }
+ public global::Speechify.AgentVoiceLanguage? Type97 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type98 { get; set; }
+ public global::Speechify.AgentVoiceModel? Type98 { get; set; }
///
///
///
- public global::Speechify.AgentVoiceGender? Type99 { get; set; }
+ public global::System.Collections.Generic.IList? Type99 { get; set; }
///
///
///
- public global::Speechify.AgentVoice? Type100 { get; set; }
+ public global::Speechify.AgentVoiceGender? Type100 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type101 { get; set; }
+ public global::Speechify.AgentVoice? Type101 { get; set; }
///
///
///
- public global::Speechify.MultilingualLanguage? Type102 { get; set; }
+ public global::System.Collections.Generic.IList? Type102 { get; set; }
///
///
///
- public global::Speechify.ListAgentVoicesResponse? Type103 { get; set; }
+ public global::Speechify.MultilingualLanguage? Type103 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type104 { get; set; }
+ public global::Speechify.ListAgentVoicesResponse? Type104 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type105 { get; set; }
+ public global::System.Collections.Generic.IList? Type105 { get; set; }
///
///
///
- public global::Speechify.AgentTTSModelInfo? Type106 { get; set; }
+ public global::System.Collections.Generic.IList? Type106 { get; set; }
///
///
///
- public global::Speechify.AgentTTSModelsResponse? Type107 { get; set; }
+ public global::Speechify.AgentTTSModelInfo? Type107 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type108 { get; set; }
+ public global::Speechify.AgentTTSModelsResponse? Type108 { get; set; }
///
///
///
- public global::Speechify.AgentPhoneNumberReferenceResourceType? Type109 { get; set; }
+ public global::System.Collections.Generic.IList? Type109 { get; set; }
///
///
///
- public global::Speechify.AgentPhoneNumberReference? Type110 { get; set; }
+ public global::Speechify.AgentPhoneNumberReferenceResourceType? Type110 { get; set; }
///
///
///
- public global::Speechify.AgentPhoneNumberUsedBy? Type111 { get; set; }
+ public global::Speechify.AgentPhoneNumberReference? Type111 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type112 { get; set; }
+ public global::Speechify.AgentPhoneNumberUsedBy? Type112 { get; set; }
///
///
///
- public global::Speechify.AgentInUseErrorDetailDetails? Type113 { get; set; }
+ public global::System.Collections.Generic.IList? Type113 { get; set; }
///
///
///
- public global::Speechify.AgentInUseErrorDetail? Type114 { get; set; }
+ public global::Speechify.AgentInUseErrorDetailDetails? Type114 { get; set; }
///
///
///
- public global::Speechify.AgentInUseError? Type115 { get; set; }
+ public global::Speechify.AgentInUseErrorDetail? Type115 { get; set; }
///
///
///
- public global::Speechify.UpdateAgentRequest? Type116 { get; set; }
+ public global::Speechify.AgentInUseError? Type116 { get; set; }
///
///
///
- public global::Speechify.AgentFlowGetSchemaResponse200? Type117 { get; set; }
+ public global::Speechify.UpdateAgentRequest? Type117 { get; set; }
///
///
///
- public global::Speechify.PublishGateResultDecision? Type118 { get; set; }
+ public global::Speechify.AgentFlowGetSchemaResponse200? Type118 { get; set; }
///
///
///
- public global::Speechify.EvaluationCaseVerdictOutcome? Type119 { get; set; }
+ public global::Speechify.PublishGateResultDecision? Type119 { get; set; }
///
///
///
- public global::Speechify.EvaluationCaseVerdictFault? Type120 { get; set; }
+ public global::Speechify.EvaluationCaseVerdictOutcome? Type120 { get; set; }
///
///
///
- public global::Speechify.EvaluationCriterionVerdictStatus? Type121 { get; set; }
+ public global::Speechify.EvaluationCaseVerdictFault? Type121 { get; set; }
///
///
///
- public global::Speechify.EvaluationCriterionVerdict? Type122 { get; set; }
+ public global::Speechify.EvaluationCriterionVerdictStatus? Type122 { get; set; }
///
///
///
- public global::Speechify.EvaluationCaseVerdict? Type123 { get; set; }
+ public global::Speechify.EvaluationCriterionVerdict? Type123 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type124 { get; set; }
+ public global::Speechify.EvaluationCaseVerdict? Type124 { get; set; }
///
///
///
- public global::Speechify.EvaluationVerdict? Type125 { get; set; }
+ public global::System.Collections.Generic.IList? Type125 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type126 { get; set; }
+ public global::Speechify.EvaluationVerdict? Type126 { get; set; }
///
///
///
- public global::Speechify.PublishGateResult? Type127 { get; set; }
+ public global::System.Collections.Generic.IList? Type127 { get; set; }
///
///
///
- public global::Speechify.FlowVersion? Type128 { get; set; }
+ public global::Speechify.PublishGateResult? Type128 { get; set; }
///
///
///
- public global::Speechify.FlowGraphNodesItems? Type129 { get; set; }
+ public global::Speechify.FlowVersion? Type129 { get; set; }
///
///
///
- public global::Speechify.FlowGraphEdgesItems? Type130 { get; set; }
+ public global::Speechify.FlowGraphNodesItems? Type130 { get; set; }
///
///
///
- public global::Speechify.FlowGraphVariablesItems? Type131 { get; set; }
+ public global::Speechify.FlowGraphEdgesItems? Type131 { get; set; }
///
///
///
- public global::Speechify.FlowGraph? Type132 { get; set; }
+ public global::Speechify.FlowGraphVariablesItems? Type132 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type133 { get; set; }
+ public global::Speechify.FlowGraph? Type133 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type134 { get; set; }
+ public global::System.Collections.Generic.IList? Type134 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type135 { get; set; }
+ public global::System.Collections.Generic.IList? Type135 { get; set; }
///
///
///
- public global::Speechify.GetFlowResponse? Type136 { get; set; }
+ public global::System.Collections.Generic.IList? Type136 { get; set; }
///
///
///
- public global::Speechify.PutFlowRequestNodesItems? Type137 { get; set; }
+ public global::Speechify.GetFlowResponse? Type137 { get; set; }
///
///
///
- public global::Speechify.PutFlowRequestEdgesItems? Type138 { get; set; }
+ public global::Speechify.PutFlowRequestNodesItems? Type138 { get; set; }
///
///
///
- public global::Speechify.PutFlowRequestVariablesItems? Type139 { get; set; }
+ public global::Speechify.PutFlowRequestEdgesItems? Type139 { get; set; }
///
///
///
- public global::Speechify.PutFlowRequest? Type140 { get; set; }
+ public global::Speechify.PutFlowRequestVariablesItems? Type140 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type141 { get; set; }
+ public global::Speechify.PutFlowRequest? Type141 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type142 { get; set; }
+ public global::System.Collections.Generic.IList? Type142 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type143 { get; set; }
+ public global::System.Collections.Generic.IList? Type143 { get; set; }
///
///
///
- public global::Speechify.FlowValidationIssue? Type144 { get; set; }
+ public global::System.Collections.Generic.IList? Type144 { get; set; }
///
///
///
- public global::Speechify.FlowValidationError? Type145 { get; set; }
+ public global::Speechify.FlowValidationIssue? Type145 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type146 { get; set; }
+ public global::Speechify.FlowValidationError? Type146 { get; set; }
///
///
///
- public global::Speechify.PublishFlowRequest? Type147 { get; set; }
+ public global::System.Collections.Generic.IList? Type147 { get; set; }
///
///
///
- public global::Speechify.RollbackFlowRequest? Type148 { get; set; }
+ public global::Speechify.PublishFlowRequest? Type148 { get; set; }
///
///
///
- public global::Speechify.ListFlowVersionsResponse? Type149 { get; set; }
+ public global::Speechify.RollbackFlowRequest? Type149 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type150 { get; set; }
+ public global::Speechify.ListFlowVersionsResponse? Type150 { get; set; }
///
///
///
- public global::Speechify.FlowTemplate? Type151 { get; set; }
+ public global::System.Collections.Generic.IList? Type151 { get; set; }
///
///
///
- public global::Speechify.ListFlowTemplatesResponse? Type152 { get; set; }
+ public global::Speechify.FlowTemplate? Type152 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type153 { get; set; }
+ public global::Speechify.ListFlowTemplatesResponse? Type153 { get; set; }
///
///
///
- public global::Speechify.FlowGraphInputNodesItems? Type154 { get; set; }
+ public global::System.Collections.Generic.IList? Type154 { get; set; }
///
///
///
- public global::Speechify.FlowGraphInputEdgesItems? Type155 { get; set; }
+ public global::Speechify.FlowGraphInputNodesItems? Type155 { get; set; }
///
///
///
- public global::Speechify.FlowGraphInputVariablesItems? Type156 { get; set; }
+ public global::Speechify.FlowGraphInputEdgesItems? Type156 { get; set; }
///
///
///
- public global::Speechify.FlowGraphInput? Type157 { get; set; }
+ public global::Speechify.FlowGraphInputVariablesItems? Type157 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type158 { get; set; }
+ public global::Speechify.FlowGraphInput? Type158 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type159 { get; set; }
+ public global::System.Collections.Generic.IList? Type159 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type160 { get; set; }
+ public global::System.Collections.Generic.IList? Type160 { get; set; }
///
///
///
- public global::Speechify.CreateFlowTemplateRequest? Type161 { get; set; }
+ public global::System.Collections.Generic.IList? Type161 { get; set; }
///
///
///
- public global::Speechify.CloneFlowTemplateRequest? Type162 { get; set; }
+ public global::Speechify.CreateFlowTemplateRequest? Type162 { get; set; }
///
///
///
- public global::Speechify.EvaluationCriterion? Type163 { get; set; }
+ public global::Speechify.CloneFlowTemplateRequest? Type163 { get; set; }
///
///
///
- public global::Speechify.DataCollectionFieldType? Type164 { get; set; }
+ public global::Speechify.EvaluationCriterion? Type164 { get; set; }
///
///
///
- public global::Speechify.DataCollectionField? Type165 { get; set; }
+ public global::Speechify.DataCollectionFieldType? Type165 { get; set; }
///
///
///
- public global::Speechify.EvaluationConfig? Type166 { get; set; }
+ public global::Speechify.DataCollectionField? Type166 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type167 { get; set; }
+ public global::Speechify.EvaluationConfig? Type167 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type168 { get; set; }
+ public global::System.Collections.Generic.IList? Type168 { get; set; }
///
///
///
- public global::Speechify.UpdateEvaluationConfigRequest? Type169 { get; set; }
+ public global::System.Collections.Generic.IList? Type169 { get; set; }
///
///
///
- public global::Speechify.DynamicVariableType? Type170 { get; set; }
+ public global::Speechify.UpdateEvaluationConfigRequest? Type170 { get; set; }
///
///
///
- public global::Speechify.DynamicVariable? Type171 { get; set; }
+ public global::Speechify.DynamicVariableType? Type171 { get; set; }
///
///
///
- public global::Speechify.SystemVariableDoc? Type172 { get; set; }
+ public global::Speechify.DynamicVariable? Type172 { get; set; }
///
///
///
- public global::Speechify.ListDynamicVariablesResponse? Type173 { get; set; }
+ public global::Speechify.SystemVariableDoc? Type173 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type174 { get; set; }
+ public global::Speechify.ListDynamicVariablesResponse? Type174 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type175 { get; set; }
+ public global::System.Collections.Generic.IList? Type175 { get; set; }
///
///
///
- public global::Speechify.UpdateDynamicVariablesRequest? Type176 { get; set; }
+ public global::System.Collections.Generic.IList? Type176 { get; set; }
///
///
///
- public global::Speechify.CreateConversationOverrides? Type177 { get; set; }
+ public global::Speechify.UpdateDynamicVariablesRequest? Type177 { get; set; }
///
///
///
- public global::Speechify.CreateConversationRequest? Type178 { get; set; }
+ public global::Speechify.CreateConversationOverrides? Type178 { get; set; }
///
///
///
- public global::Speechify.ConversationStatus? Type179 { get; set; }
+ public global::Speechify.CreateConversationRequest? Type179 { get; set; }
///
///
///
- public global::Speechify.ConversationTransport? Type180 { get; set; }
+ public global::Speechify.ConversationStatus? Type180 { get; set; }
///
///
///
- public global::Speechify.ConversationChannel? Type181 { get; set; }
+ public global::Speechify.ConversationTransport? Type181 { get; set; }
///
///
///
- public global::Speechify.ConversationEndReason? Type182 { get; set; }
+ public global::Speechify.ConversationChannel? Type182 { get; set; }
///
///
///
- public global::Speechify.SkillPin? Type183 { get; set; }
+ public global::Speechify.ConversationEndReason? Type183 { get; set; }
///
///
///
- public global::Speechify.AgentSnapshotInterruptionSensitivity? Type184 { get; set; }
+ public global::Speechify.SkillPin? Type184 { get; set; }
///
///
///
- public global::Speechify.AgentSnapshotBackgroundNoisePreset? Type185 { get; set; }
+ public global::Speechify.AgentSnapshotReasoningEffort? Type185 { get; set; }
///
///
///
- public global::Speechify.AgentSnapshot? Type186 { get; set; }
+ public global::Speechify.AgentSnapshotInterruptionSensitivity? Type186 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type187 { get; set; }
+ public global::Speechify.AgentSnapshotBackgroundNoisePreset? Type187 { get; set; }
///
///
///
- public global::Speechify.ConversationIvrSurrenderReason? Type188 { get; set; }
+ public global::Speechify.AgentSnapshot? Type188 { get; set; }
///
///
///
- public global::Speechify.Conversation? Type189 { get; set; }
+ public global::System.Collections.Generic.IList? Type189 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList