From da0a69e4a66069f5323d55da842499cc6c4f07a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 24 Jul 2026 03:22:39 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- ...ers.CreateSimulationRunResponseStatus.g.cs | 53 + ...teSimulationRunResponseStatusNullable.g.cs | 60 + .../Generated/Vapi.JsonSerializerContext.g.cs | 160 +- .../Vapi.JsonSerializerContextTypes.g.cs | 1860 +++++++++-------- ....Models.CreateElevenLabsCredentialDTO.g.cs | 4 +- ...s.CreateElevenLabsCredentialDTOApiUrl.g.cs | 2 +- .../Vapi.Models.CreateSesameVoiceDTO.g.cs | 50 +- ...dels.CreateSimulationRunResponse.Json.g.cs | 141 ++ ...pi.Models.CreateSimulationRunResponse.g.cs | 236 +++ ...els.CreateSimulationRunResponseStatus.g.cs | 57 + .../Vapi.Models.ElevenLabsCredential.g.cs | 4 +- ...api.Models.ElevenLabsCredentialApiUrl.g.cs | 2 +- .../Vapi.Models.EvalGroqModelModel.g.cs | 6 - .../Generated/Vapi.Models.GroqModelModel.g.cs | 6 - src/libs/Vapi/Generated/Vapi.Models.Org.g.cs | 24 + ...Vapi.Models.PendingInvitationDTO.Json.g.cs | 141 ++ .../Vapi.Models.PendingInvitationDTO.g.cs | 55 + ...ls.PendingInvitationsResponseDTO.Json.g.cs | 141 ++ ....Models.PendingInvitationsResponseDTO.g.cs | 45 + ...dels.RevokeInvitationResponseDTO.Json.g.cs | 141 ++ ...pi.Models.RevokeInvitationResponseDTO.g.cs | 45 + ....Models.UpdateElevenLabsCredentialDTO.g.cs | 4 +- ...s.UpdateElevenLabsCredentialDTOApiUrl.g.cs | 2 +- src/libs/Vapi/openapi.yaml | 206 +- 24 files changed, 2460 insertions(+), 985 deletions(-) create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.CreateSimulationRunResponseStatus.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.CreateSimulationRunResponseStatusNullable.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponse.Json.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponse.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponseStatus.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.PendingInvitationDTO.Json.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.PendingInvitationDTO.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.PendingInvitationsResponseDTO.Json.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.PendingInvitationsResponseDTO.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.RevokeInvitationResponseDTO.Json.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.RevokeInvitationResponseDTO.g.cs diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateSimulationRunResponseStatus.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateSimulationRunResponseStatus.g.cs new file mode 100644 index 00000000..9f5311fd --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateSimulationRunResponseStatus.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class CreateSimulationRunResponseStatusJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.CreateSimulationRunResponseStatus 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::Vapi.CreateSimulationRunResponseStatusExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.CreateSimulationRunResponseStatus)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.CreateSimulationRunResponseStatus); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.CreateSimulationRunResponseStatus value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Vapi.CreateSimulationRunResponseStatusExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateSimulationRunResponseStatusNullable.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateSimulationRunResponseStatusNullable.g.cs new file mode 100644 index 00000000..a210b6ed --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateSimulationRunResponseStatusNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class CreateSimulationRunResponseStatusNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.CreateSimulationRunResponseStatus? 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::Vapi.CreateSimulationRunResponseStatusExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.CreateSimulationRunResponseStatus)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.CreateSimulationRunResponseStatus?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.CreateSimulationRunResponseStatus? 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::Vapi.CreateSimulationRunResponseStatusExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs b/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs index a9fae45b..cfbc636f 100644 --- a/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs +++ b/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs @@ -2901,6 +2901,10 @@ namespace Vapi typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -5439,6 +5443,10 @@ namespace Vapi typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -9102,6 +9110,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -11640,6 +11652,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -15303,6 +15319,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -17841,6 +17861,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -21504,6 +21528,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -24042,6 +24070,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -24702,6 +24734,8 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfSimulationRunSimulationEntrySimulationRunSuiteEntry2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfSimulationRunTargetAssistantSimulationRunTargetSquad2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SimulationRunItemCounts))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateSimulationRunResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateSimulationRunResponseStatus), TypeInfoPropertyName = "CreateSimulationRunResponseStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SimulationRun))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SimulationRunStatus), TypeInfoPropertyName = "SimulationRunStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SimulationRunItemCallMonitor))] @@ -24804,8 +24838,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfEventsTableStringConditionEventsTableNumberConditionEventsTableBooleanCondition2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EventsTableStringCondition))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EventsTableNumberCondition))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EventsTableBooleanCondition))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringTypeColumnOnCallTableColumn), TypeInfoPropertyName = "FilterStringTypeColumnOnCallTableColumn2")] internal sealed partial class SourceGenerationContextChunk3 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -27705,6 +27737,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -30243,6 +30279,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -30592,6 +30632,8 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EventsTableBooleanCondition))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringTypeColumnOnCallTableColumn), TypeInfoPropertyName = "FilterStringTypeColumnOnCallTableColumn2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringTypeColumnOnCallTableOperator), TypeInfoPropertyName = "FilterStringTypeColumnOnCallTableOperator2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterNumberTypeColumnOnCallTableColumn), TypeInfoPropertyName = "FilterNumberTypeColumnOnCallTableColumn2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterNumberTypeColumnOnCallTableOperator), TypeInfoPropertyName = "FilterNumberTypeColumnOnCallTableOperator2")] @@ -30718,6 +30760,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InviteUserDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfInviteUserDTORoleString2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InviteUserDTORole), TypeInfoPropertyName = "InviteUserDTORole2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PendingInvitationDTO))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PendingInvitationsResponseDTO))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.RevokeInvitationResponseDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateUserRoleDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfUpdateUserRoleDTORoleString2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateUserRoleDTORole), TypeInfoPropertyName = "UpdateUserRoleDTORole2")] @@ -31001,12 +31047,6 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTOProvider), TypeInfoPropertyName = "UpdateSlackOAuth2AuthorizationCredentialDTOProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateGoHighLevelMCPCredentialDTO))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateGoHighLevelMCPCredentialDTOProvider), TypeInfoPropertyName = "UpdateGoHighLevelMCPCredentialDTOProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateInworldCredentialDTO))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateInworldCredentialDTOProvider), TypeInfoPropertyName = "UpdateInworldCredentialDTOProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateEmailCredentialDTO))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateEmailCredentialDTOProvider), TypeInfoPropertyName = "UpdateEmailCredentialDTOProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateSlackWebhookCredentialDTO))] internal sealed partial class SourceGenerationContextChunk4 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -33906,6 +33946,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -36444,6 +36488,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -36793,6 +36841,12 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateGoHighLevelMCPCredentialDTOProvider), TypeInfoPropertyName = "UpdateGoHighLevelMCPCredentialDTOProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateInworldCredentialDTO))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateInworldCredentialDTOProvider), TypeInfoPropertyName = "UpdateInworldCredentialDTOProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateEmailCredentialDTO))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateEmailCredentialDTOProvider), TypeInfoPropertyName = "UpdateEmailCredentialDTOProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateSlackWebhookCredentialDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateSlackWebhookCredentialDTOProvider), TypeInfoPropertyName = "UpdateSlackWebhookCredentialDTOProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateSonioxCredentialDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateSonioxCredentialDTOProvider), TypeInfoPropertyName = "UpdateSonioxCredentialDTOProvider2")] @@ -37202,12 +37256,6 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GladiaTranscriberRegion?), TypeInfoPropertyName = "NullableGladiaTranscriberRegion2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SonioxTranscriberProvider?), TypeInfoPropertyName = "NullableSonioxTranscriberProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SonioxTranscriberModel?), TypeInfoPropertyName = "NullableSonioxTranscriberModel2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SonioxTranscriberLanguage?), TypeInfoPropertyName = "NullableSonioxTranscriberLanguage2_3")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SonioxTranscriberLanguage2?), TypeInfoPropertyName = "NullableSonioxTranscriberLanguage22")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberProvider?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberModel?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberModel2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberLanguage?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberLanguage2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberOperatingPoint?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberOperatingPoint2")] internal sealed partial class SourceGenerationContextChunk5 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -40107,6 +40155,10 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -42645,6 +42697,10 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -42994,6 +43050,12 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SonioxTranscriberLanguage?), TypeInfoPropertyName = "NullableSonioxTranscriberLanguage2_3")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SonioxTranscriberLanguage2?), TypeInfoPropertyName = "NullableSonioxTranscriberLanguage22")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberProvider?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberModel?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberModel2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberLanguage?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberLanguage2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberOperatingPoint?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberOperatingPoint2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberRegion?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberRegion2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SpeechmaticsTranscriberNumeralStyle?), TypeInfoPropertyName = "NullableSpeechmaticsTranscriberNumeralStyle2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TalkscriberTranscriberProvider?), TypeInfoPropertyName = "NullableTalkscriberTranscriberProvider2")] @@ -43403,12 +43465,6 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateCloudflareCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateCloudflareCredentialDTOProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OAuth2AuthenticationPlanType?), TypeInfoPropertyName = "NullableOAuth2AuthenticationPlanType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateCustomLLMCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateCustomLLMCredentialDTOProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateDeepgramCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateDeepgramCredentialDTOProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateDeepInfraCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateDeepInfraCredentialDTOProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateDeepSeekCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateDeepSeekCredentialDTOProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateElevenLabsCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateElevenLabsCredentialDTOProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateElevenLabsCredentialDTOApiUrl?), TypeInfoPropertyName = "NullableCreateElevenLabsCredentialDTOApiUrl2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateGcpCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateGcpCredentialDTOProvider2")] internal sealed partial class SourceGenerationContextChunk6 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -46308,6 +46364,10 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -48846,6 +48906,10 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -49195,6 +49259,12 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateDeepgramCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateDeepgramCredentialDTOProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateDeepInfraCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateDeepInfraCredentialDTOProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateDeepSeekCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateDeepSeekCredentialDTOProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateElevenLabsCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateElevenLabsCredentialDTOProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateElevenLabsCredentialDTOApiUrl?), TypeInfoPropertyName = "NullableCreateElevenLabsCredentialDTOApiUrl2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateGcpCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateGcpCredentialDTOProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateGladiaCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateGladiaCredentialDTOProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateGoHighLevelCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateGoHighLevelCredentialDTOProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateGroqCredentialDTOProvider?), TypeInfoPropertyName = "NullableCreateGroqCredentialDTOProvider2")] @@ -49558,6 +49628,7 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SimulationRunTransportConfigurationProvider?), TypeInfoPropertyName = "NullableSimulationRunTransportConfigurationProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfSimulationRunSimulationEntrySimulationRunSuiteEntry2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfSimulationRunTargetAssistantSimulationRunTargetSquad2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateSimulationRunResponseStatus?), TypeInfoPropertyName = "NullableCreateSimulationRunResponseStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SimulationRunStatus?), TypeInfoPropertyName = "NullableSimulationRunStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfDoubleStringBooleanObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.StructuredOutputEvaluationResultComparator?), TypeInfoPropertyName = "NullableStructuredOutputEvaluationResultComparator2")] @@ -49603,13 +49674,6 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.JSONQueryOnEventsTableOn?), TypeInfoPropertyName = "NullableJSONQueryOnEventsTableOn2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.JSONQueryOnEventsTableOperation?), TypeInfoPropertyName = "NullableJSONQueryOnEventsTableOperation2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfEventsTableStringConditionEventsTableNumberConditionEventsTableBooleanCondition2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringTypeColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterStringTypeColumnOnCallTableColumn2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringTypeColumnOnCallTableOperator?), TypeInfoPropertyName = "NullableFilterStringTypeColumnOnCallTableOperator2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterNumberTypeColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterNumberTypeColumnOnCallTableColumn2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterNumberTypeColumnOnCallTableOperator?), TypeInfoPropertyName = "NullableFilterNumberTypeColumnOnCallTableOperator2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterDateTypeColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterDateTypeColumnOnCallTableColumn2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterDateTypeColumnOnCallTableOperator?), TypeInfoPropertyName = "NullableFilterDateTypeColumnOnCallTableOperator2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStructuredOutputColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterStructuredOutputColumnOnCallTableColumn2")] internal sealed partial class SourceGenerationContextChunk7 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -52509,6 +52573,10 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -55047,6 +55115,10 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -55396,6 +55468,13 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringTypeColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterStringTypeColumnOnCallTableColumn2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringTypeColumnOnCallTableOperator?), TypeInfoPropertyName = "NullableFilterStringTypeColumnOnCallTableOperator2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterNumberTypeColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterNumberTypeColumnOnCallTableColumn2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterNumberTypeColumnOnCallTableOperator?), TypeInfoPropertyName = "NullableFilterNumberTypeColumnOnCallTableOperator2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterDateTypeColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterDateTypeColumnOnCallTableColumn2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterDateTypeColumnOnCallTableOperator?), TypeInfoPropertyName = "NullableFilterDateTypeColumnOnCallTableOperator2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStructuredOutputColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterStructuredOutputColumnOnCallTableColumn2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStructuredOutputColumnOnCallTableOperator?), TypeInfoPropertyName = "NullableFilterStructuredOutputColumnOnCallTableOperator2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn?), TypeInfoPropertyName = "NullableFilterStringArrayTypeColumnOnCallTableColumn2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator?), TypeInfoPropertyName = "NullableFilterStringArrayTypeColumnOnCallTableOperator2")] @@ -55804,13 +55883,6 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider?), TypeInfoPropertyName = "NullableProviderResourceControllerUpdateProviderResourceProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName?), TypeInfoPropertyName = "NullableProviderResourceControllerUpdateProviderResourceResourceName2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfCallCallBatchResponse2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfChatCreateChatStreamResponse2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfResponseObjectResponseTextDeltaEventResponseTextDoneEventResponseCompletedEventResponseErrorEvent2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerCreateResponse?), TypeInfoPropertyName = "NullablePhoneNumberControllerCreateResponse2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider?), TypeInfoPropertyName = "NullablePhoneNumberControllerCreateResponseDiscriminatorProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerFindAllResponseItem?), TypeInfoPropertyName = "NullablePhoneNumberControllerFindAllResponseItem2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminatorProvider?), TypeInfoPropertyName = "NullablePhoneNumberControllerFindAllResponseItemDiscriminatorProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerFindOneResponse?), TypeInfoPropertyName = "NullablePhoneNumberControllerFindOneResponse2")] internal sealed partial class SourceGenerationContextChunk8 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -58710,6 +58782,10 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex typeof(global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter), + typeof(global::Vapi.JsonConverters.SimulationRunStatusJsonConverter), typeof(global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter), @@ -61248,6 +61324,10 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -61597,6 +61677,13 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfChatCreateChatStreamResponse2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf?), TypeInfoPropertyName = "NullableOneOfResponseObjectResponseTextDeltaEventResponseTextDoneEventResponseCompletedEventResponseErrorEvent2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerCreateResponse?), TypeInfoPropertyName = "NullablePhoneNumberControllerCreateResponse2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider?), TypeInfoPropertyName = "NullablePhoneNumberControllerCreateResponseDiscriminatorProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerFindAllResponseItem?), TypeInfoPropertyName = "NullablePhoneNumberControllerFindAllResponseItem2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminatorProvider?), TypeInfoPropertyName = "NullablePhoneNumberControllerFindAllResponseItemDiscriminatorProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerFindOneResponse?), TypeInfoPropertyName = "NullablePhoneNumberControllerFindOneResponse2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerFindOneResponseDiscriminatorProvider?), TypeInfoPropertyName = "NullablePhoneNumberControllerFindOneResponseDiscriminatorProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerUpdateResponse?), TypeInfoPropertyName = "NullablePhoneNumberControllerUpdateResponse2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerUpdateResponseDiscriminatorProvider?), TypeInfoPropertyName = "NullablePhoneNumberControllerUpdateResponseDiscriminatorProvider2")] @@ -61766,6 +61853,7 @@ internal sealed partial class SourceGenerationContextChunk8 : 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))] @@ -63286,6 +63374,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Vapi.JsonConverters.SimulationRunTargetSquadTypeNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.SimulationRunTransportConfigurationProviderNullableJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.CreateSimulationRunResponseStatusNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.SimulationRunStatusJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.SimulationRunStatusNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.StructuredOutputEvaluationResultComparatorJsonConverter()); @@ -64555,6 +64645,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); diff --git a/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs b/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs index f9405580..22a49348 100644 --- a/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs +++ b/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs @@ -6236,3595 +6236,3619 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Vapi.SimulationRun? Type1552 { get; set; } + public global::Vapi.CreateSimulationRunResponse? Type1552 { get; set; } /// /// /// - public global::Vapi.SimulationRunStatus? Type1553 { get; set; } + public global::Vapi.CreateSimulationRunResponseStatus? Type1553 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemCallMonitor? Type1554 { get; set; } + public global::Vapi.SimulationRun? Type1554 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemCallMetadata? Type1555 { get; set; } + public global::Vapi.SimulationRunStatus? Type1555 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemMetadata? Type1556 { get; set; } + public global::Vapi.SimulationRunItemCallMonitor? Type1556 { get; set; } /// /// /// - public global::Vapi.StructuredOutputEvaluationResult? Type1557 { get; set; } + public global::Vapi.SimulationRunItemCallMetadata? Type1557 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1558 { get; set; } + public global::Vapi.SimulationRunItemMetadata? Type1558 { get; set; } /// /// /// - public global::Vapi.StructuredOutputEvaluationResultComparator? Type1559 { get; set; } + public global::Vapi.StructuredOutputEvaluationResult? Type1559 { get; set; } /// /// /// - public global::Vapi.LatencyMetrics? Type1560 { get; set; } + public global::Vapi.OneOf? Type1560 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemResults? Type1561 { get; set; } + public global::Vapi.StructuredOutputEvaluationResultComparator? Type1561 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1562 { get; set; } + public global::Vapi.LatencyMetrics? Type1562 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemImprovementSuggestion? Type1563 { get; set; } + public global::Vapi.SimulationRunItemResults? Type1563 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemImprovements? Type1564 { get; set; } + public global::System.Collections.Generic.IList? Type1564 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1565 { get; set; } + public global::Vapi.SimulationRunItemImprovementSuggestion? Type1565 { get; set; } /// /// /// - public global::Vapi.SimulationRunConfiguration? Type1566 { get; set; } + public global::Vapi.SimulationRunItemImprovements? Type1566 { get; set; } /// /// /// - public global::Vapi.SimulationRunItem? Type1567 { get; set; } + public global::System.Collections.Generic.IList? Type1567 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemStatus? Type1568 { get; set; } + public global::Vapi.SimulationRunConfiguration? Type1568 { get; set; } /// /// /// - public global::Vapi.SimulationSuiteTargetAssignment? Type1569 { get; set; } + public global::Vapi.SimulationRunItem? Type1569 { get; set; } /// /// /// - public global::Vapi.SimulationSuiteTargetAssignmentTargetType? Type1570 { get; set; } + public global::Vapi.SimulationRunItemStatus? Type1570 { get; set; } /// /// /// - public global::Vapi.CreateSimulationSuiteDTO? Type1571 { get; set; } + public global::Vapi.SimulationSuiteTargetAssignment? Type1571 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1572 { get; set; } + public global::Vapi.SimulationSuiteTargetAssignmentTargetType? Type1572 { get; set; } /// /// /// - public global::Vapi.SimulationSuite? Type1573 { get; set; } + public global::Vapi.CreateSimulationSuiteDTO? Type1573 { get; set; } /// /// /// - public global::Vapi.UpdateSimulationSuiteDTO? Type1574 { get; set; } + public global::System.Collections.Generic.IList? Type1574 { get; set; } /// /// /// - public global::Vapi.GenerateScenariosDTO? Type1575 { get; set; } + public global::Vapi.SimulationSuite? Type1575 { get; set; } /// /// /// - public global::Vapi.GeneratedScenario? Type1576 { get; set; } + public global::Vapi.UpdateSimulationSuiteDTO? Type1576 { get; set; } /// /// /// - public global::Vapi.GeneratedScenarioCategory? Type1577 { get; set; } + public global::Vapi.GenerateScenariosDTO? Type1577 { get; set; } /// /// /// - public global::Vapi.GenerateScenariosResponse? Type1578 { get; set; } + public global::Vapi.GeneratedScenario? Type1578 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1579 { get; set; } + public global::Vapi.GeneratedScenarioCategory? Type1579 { get; set; } /// /// /// - public global::Vapi.CreateSimulationDTO? Type1580 { get; set; } + public global::Vapi.GenerateScenariosResponse? Type1580 { get; set; } /// /// /// - public global::Vapi.Simulation? Type1581 { get; set; } + public global::System.Collections.Generic.IList? Type1581 { get; set; } /// /// /// - public global::Vapi.UpdateSimulationDTO? Type1582 { get; set; } + public global::Vapi.CreateSimulationDTO? Type1582 { get; set; } /// /// /// - public global::Vapi.SimulationConcurrencyResponse? Type1583 { get; set; } + public global::Vapi.Simulation? Type1583 { get; set; } /// /// /// - public global::Vapi.BarInsightMetadata? Type1584 { get; set; } + public global::Vapi.UpdateSimulationDTO? Type1584 { get; set; } /// /// /// - public global::Vapi.InsightTimeRangeWithStep? Type1585 { get; set; } + public global::Vapi.SimulationConcurrencyResponse? Type1585 { get; set; } /// /// /// - public global::Vapi.InsightTimeRangeWithStepStep? Type1586 { get; set; } + public global::Vapi.BarInsightMetadata? Type1586 { get; set; } /// /// /// - public global::Vapi.BarInsight? Type1587 { get; set; } + public global::Vapi.InsightTimeRangeWithStep? Type1587 { get; set; } /// /// /// - public global::Vapi.BarInsightType? Type1588 { get; set; } + public global::Vapi.InsightTimeRangeWithStepStep? Type1588 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1589 { get; set; } + public global::Vapi.BarInsight? Type1589 { get; set; } /// /// /// - public global::Vapi.InsightFormula? Type1590 { get; set; } + public global::Vapi.BarInsightType? Type1590 { get; set; } /// /// /// - public global::Vapi.BarInsightGroupBy? Type1591 { get; set; } + public global::System.Collections.Generic.IList? Type1591 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumn? Type1592 { get; set; } + public global::Vapi.InsightFormula? Type1592 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumn? Type1593 { get; set; } + public global::Vapi.BarInsightGroupBy? Type1593 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumn? Type1594 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumn? Type1594 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTable? Type1595 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumn? Type1595 { get; set; } /// /// /// - public global::Vapi.InsightTimeRange? Type1596 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumn? Type1596 { get; set; } /// /// /// - public global::Vapi.PieInsight? Type1597 { get; set; } + public global::Vapi.JSONQueryOnEventsTable? Type1597 { get; set; } /// /// /// - public global::Vapi.PieInsightType? Type1598 { get; set; } + public global::Vapi.InsightTimeRange? Type1598 { get; set; } /// /// /// - public global::Vapi.PieInsightGroupBy? Type1599 { get; set; } + public global::Vapi.PieInsight? Type1599 { get; set; } /// /// /// - public global::Vapi.LineInsightMetadata? Type1600 { get; set; } + public global::Vapi.PieInsightType? Type1600 { get; set; } /// /// /// - public global::Vapi.LineInsight? Type1601 { get; set; } + public global::Vapi.PieInsightGroupBy? Type1601 { get; set; } /// /// /// - public global::Vapi.LineInsightType? Type1602 { get; set; } + public global::Vapi.LineInsightMetadata? Type1602 { get; set; } /// /// /// - public global::Vapi.LineInsightGroupBy? Type1603 { get; set; } + public global::Vapi.LineInsight? Type1603 { get; set; } /// /// /// - public global::Vapi.TextInsight? Type1604 { get; set; } + public global::Vapi.LineInsightType? Type1604 { get; set; } /// /// /// - public global::Vapi.TextInsightType? Type1605 { get; set; } + public global::Vapi.LineInsightGroupBy? Type1605 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTO? Type1606 { get; set; } + public global::Vapi.TextInsight? Type1606 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTOType? Type1607 { get; set; } + public global::Vapi.TextInsightType? Type1607 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTOGroupBy? Type1608 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTO? Type1608 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTO? Type1609 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTOType? Type1609 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTOType? Type1610 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTOGroupBy? Type1610 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTOGroupBy? Type1611 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTO? Type1611 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTO? Type1612 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTOType? Type1612 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTOType? Type1613 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTOGroupBy? Type1613 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTOGroupBy? Type1614 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTO? Type1614 { get; set; } /// /// /// - public global::Vapi.UpdateTextInsightFromCallTableDTO? Type1615 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTOType? Type1615 { get; set; } /// /// /// - public global::Vapi.UpdateTextInsightFromCallTableDTOType? Type1616 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTOGroupBy? Type1616 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTO? Type1617 { get; set; } + public global::Vapi.UpdateTextInsightFromCallTableDTO? Type1617 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTOType? Type1618 { get; set; } + public global::Vapi.UpdateTextInsightFromCallTableDTOType? Type1618 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTOGroupBy? Type1619 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTO? Type1619 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTO? Type1620 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTOType? Type1620 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTOType? Type1621 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTOGroupBy? Type1621 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTOGroupBy? Type1622 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTO? Type1622 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTO? Type1623 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTOType? Type1623 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTOType? Type1624 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTOGroupBy? Type1624 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTOGroupBy? Type1625 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTO? Type1625 { get; set; } /// /// /// - public global::Vapi.CreateTextInsightFromCallTableDTO? Type1626 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTOType? Type1626 { get; set; } /// /// /// - public global::Vapi.CreateTextInsightFromCallTableDTOType? Type1627 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTOGroupBy? Type1627 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnType? Type1628 { get; set; } + public global::Vapi.CreateTextInsightFromCallTableDTO? Type1628 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnTable? Type1629 { get; set; } + public global::Vapi.CreateTextInsightFromCallTableDTOType? Type1629 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTable? Type1630 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnType? Type1630 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTable? Type1631 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnTable? Type1631 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTable? Type1632 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTable? Type1632 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTable? Type1633 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTable? Type1633 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTable? Type1634 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTable? Type1634 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTable? Type1635 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTable? Type1635 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnColumn? Type1636 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTable? Type1636 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnOperation? Type1637 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTable? Type1637 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnType? Type1638 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnColumn? Type1638 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnTable? Type1639 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnOperation? Type1639 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnColumn? Type1640 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnType? Type1640 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnOperation? Type1641 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnTable? Type1641 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnType? Type1642 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnColumn? Type1642 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnTable? Type1643 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnOperation? Type1643 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnColumn? Type1644 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnType? Type1644 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnOperation? Type1645 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnTable? Type1645 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableType? Type1646 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnColumn? Type1646 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableTable? Type1647 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnOperation? Type1647 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableOn? Type1648 { get; set; } + public global::Vapi.JSONQueryOnEventsTableType? Type1648 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableOperation? Type1649 { get; set; } + public global::Vapi.JSONQueryOnEventsTableTable? Type1649 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1650 { get; set; } + public global::Vapi.JSONQueryOnEventsTableOn? Type1650 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1651 { get; set; } + public global::Vapi.JSONQueryOnEventsTableOperation? Type1651 { get; set; } /// /// /// - public global::Vapi.EventsTableStringCondition? Type1652 { get; set; } + public global::System.Collections.Generic.IList>? Type1652 { get; set; } /// /// /// - public global::Vapi.EventsTableNumberCondition? Type1653 { get; set; } + public global::Vapi.OneOf? Type1653 { get; set; } /// /// /// - public global::Vapi.EventsTableBooleanCondition? Type1654 { get; set; } + public global::Vapi.EventsTableStringCondition? Type1654 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTableColumn? Type1655 { get; set; } + public global::Vapi.EventsTableNumberCondition? Type1655 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTableOperator? Type1656 { get; set; } + public global::Vapi.EventsTableBooleanCondition? Type1656 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTableColumn? Type1657 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTableColumn? Type1657 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTableOperator? Type1658 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTableOperator? Type1658 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTableColumn? Type1659 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTableColumn? Type1659 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTableOperator? Type1660 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTableOperator? Type1660 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTableColumn? Type1661 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTableColumn? Type1661 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTableOperator? Type1662 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTableOperator? Type1662 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn? Type1663 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTableColumn? Type1663 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator? Type1664 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTableOperator? Type1664 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTableColumn? Type1665 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn? Type1665 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTableOperator? Type1666 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator? Type1666 { get; set; } /// /// /// - public global::Vapi.EventsTableStringConditionOperator? Type1667 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTableColumn? Type1667 { get; set; } /// /// /// - public global::Vapi.EventsTableNumberConditionOperator? Type1668 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTableOperator? Type1668 { get; set; } /// /// /// - public global::Vapi.EventsTableBooleanConditionOperator? Type1669 { get; set; } + public global::Vapi.EventsTableStringConditionOperator? Type1669 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTable? Type1670 { get; set; } + public global::Vapi.EventsTableNumberConditionOperator? Type1670 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTableType? Type1671 { get; set; } + public global::Vapi.EventsTableBooleanConditionOperator? Type1671 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTableGroupBy? Type1672 { get; set; } + public global::Vapi.BarInsightFromCallTable? Type1672 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTable? Type1673 { get; set; } + public global::Vapi.BarInsightFromCallTableType? Type1673 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTableType? Type1674 { get; set; } + public global::Vapi.BarInsightFromCallTableGroupBy? Type1674 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTableGroupBy? Type1675 { get; set; } + public global::Vapi.PieInsightFromCallTable? Type1675 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTable? Type1676 { get; set; } + public global::Vapi.PieInsightFromCallTableType? Type1676 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTableType? Type1677 { get; set; } + public global::Vapi.PieInsightFromCallTableGroupBy? Type1677 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTableGroupBy? Type1678 { get; set; } + public global::Vapi.LineInsightFromCallTable? Type1678 { get; set; } /// /// /// - public global::Vapi.TextInsightFromCallTable? Type1679 { get; set; } + public global::Vapi.LineInsightFromCallTableType? Type1679 { get; set; } /// /// /// - public global::Vapi.TextInsightFromCallTableType? Type1680 { get; set; } + public global::Vapi.LineInsightFromCallTableGroupBy? Type1680 { get; set; } /// /// /// - public global::Vapi.InsightRunFormatPlan? Type1681 { get; set; } + public global::Vapi.TextInsightFromCallTable? Type1681 { get; set; } /// /// /// - public global::Vapi.InsightRunFormatPlanFormat? Type1682 { get; set; } + public global::Vapi.TextInsightFromCallTableType? Type1682 { get; set; } /// /// /// - public global::Vapi.InsightRunDTO? Type1683 { get; set; } + public global::Vapi.InsightRunFormatPlan? Type1683 { get; set; } /// /// /// - public global::Vapi.InsightRunResponse? Type1684 { get; set; } + public global::Vapi.InsightRunFormatPlanFormat? Type1684 { get; set; } /// /// /// - public global::Vapi.Insight? Type1685 { get; set; } + public global::Vapi.InsightRunDTO? Type1685 { get; set; } /// /// /// - public global::Vapi.InsightType? Type1686 { get; set; } + public global::Vapi.InsightRunResponse? Type1686 { get; set; } /// /// /// - public global::Vapi.InsightPaginatedResponse? Type1687 { get; set; } + public global::Vapi.Insight? Type1687 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1688 { get; set; } + public global::Vapi.InsightType? Type1688 { get; set; } /// /// /// - public global::Vapi.CreateEvalDTO? Type1689 { get; set; } + public global::Vapi.InsightPaginatedResponse? Type1689 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMock? Type1690 { get; set; } + public global::System.Collections.Generic.IList? Type1690 { get; set; } /// /// /// - public global::Vapi.ChatEvalSystemMessageMock? Type1691 { get; set; } + public global::Vapi.CreateEvalDTO? Type1691 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageMock? Type1692 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMock? Type1692 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageEvaluation? Type1693 { get; set; } + public global::Vapi.ChatEvalSystemMessageMock? Type1693 { get; set; } /// /// /// - public global::Vapi.ChatEvalUserMessageMock? Type1694 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageMock? Type1694 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageEvaluation? Type1695 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageEvaluation? Type1695 { get; set; } /// /// /// - public global::Vapi.CreateEvalDTOType? Type1696 { get; set; } + public global::Vapi.ChatEvalUserMessageMock? Type1696 { get; set; } /// /// /// - public global::Vapi.Eval? Type1697 { get; set; } + public global::Vapi.ChatEvalAssistantMessageEvaluation? Type1697 { get; set; } /// /// /// - public global::Vapi.EvalType? Type1698 { get; set; } + public global::Vapi.CreateEvalDTOType? Type1698 { get; set; } /// /// /// - public global::Vapi.EvalModelListOptions? Type1699 { get; set; } + public global::Vapi.Eval? Type1699 { get; set; } /// /// /// - public global::Vapi.EvalModelListOptionsProvider? Type1700 { get; set; } + public global::Vapi.EvalType? Type1700 { get; set; } /// /// /// - public global::Vapi.EvalUserEditable? Type1701 { get; set; } + public global::Vapi.EvalModelListOptions? Type1701 { get; set; } /// /// /// - public global::Vapi.EvalUserEditableType? Type1702 { get; set; } + public global::Vapi.EvalModelListOptionsProvider? Type1702 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMockToolCall? Type1703 { get; set; } + public global::Vapi.EvalUserEditable? Type1703 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMockRole? Type1704 { get; set; } + public global::Vapi.EvalUserEditableType? Type1704 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1705 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMockToolCall? Type1705 { get; set; } /// /// /// - public global::Vapi.ChatEvalSystemMessageMockRole? Type1706 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMockRole? Type1706 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageMockRole? Type1707 { get; set; } + public global::System.Collections.Generic.IList? Type1707 { get; set; } /// /// /// - public global::Vapi.ChatEvalUserMessageMockRole? Type1708 { get; set; } + public global::Vapi.ChatEvalSystemMessageMockRole? Type1708 { get; set; } /// /// /// - public global::Vapi.AssistantMessageEvaluationContinuePlan? Type1709 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageMockRole? Type1709 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageEvaluationRole? Type1710 { get; set; } + public global::Vapi.ChatEvalUserMessageMockRole? Type1710 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1711 { get; set; } + public global::Vapi.AssistantMessageEvaluationContinuePlan? Type1711 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanExact? Type1712 { get; set; } + public global::Vapi.ChatEvalAssistantMessageEvaluationRole? Type1712 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanRegex? Type1713 { get; set; } + public global::Vapi.OneOf? Type1713 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanAI? Type1714 { get; set; } + public global::Vapi.AssistantMessageJudgePlanExact? Type1714 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModel? Type1715 { get; set; } + public global::Vapi.AssistantMessageJudgePlanRegex? Type1715 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModelProvider? Type1716 { get; set; } + public global::Vapi.AssistantMessageJudgePlanAI? Type1716 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModelModel? Type1717 { get; set; } + public global::Vapi.EvalOpenAIModel? Type1717 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModel? Type1718 { get; set; } + public global::Vapi.EvalOpenAIModelProvider? Type1718 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModelProvider? Type1719 { get; set; } + public global::Vapi.EvalOpenAIModelModel? Type1719 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModelModel? Type1720 { get; set; } + public global::Vapi.EvalAnthropicModel? Type1720 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModel? Type1721 { get; set; } + public global::Vapi.EvalAnthropicModelProvider? Type1721 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModelProvider? Type1722 { get; set; } + public global::Vapi.EvalAnthropicModelModel? Type1722 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModelModel? Type1723 { get; set; } + public global::Vapi.EvalGoogleModel? Type1723 { get; set; } /// /// /// - public global::Vapi.EvalGroqModel? Type1724 { get; set; } + public global::Vapi.EvalGoogleModelProvider? Type1724 { get; set; } /// /// /// - public global::Vapi.EvalGroqModelProvider? Type1725 { get; set; } + public global::Vapi.EvalGoogleModelModel? Type1725 { get; set; } /// /// /// - public global::Vapi.EvalGroqModelModel? Type1726 { get; set; } + public global::Vapi.EvalGroqModel? Type1726 { get; set; } /// /// /// - public global::Vapi.EvalCustomModel? Type1727 { get; set; } + public global::Vapi.EvalGroqModelProvider? Type1727 { get; set; } /// /// /// - public global::Vapi.EvalCustomModelProvider? Type1728 { get; set; } + public global::Vapi.EvalGroqModelModel? Type1728 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1729 { get; set; } + public global::Vapi.EvalCustomModel? Type1729 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanAIType? Type1730 { get; set; } + public global::Vapi.EvalCustomModelProvider? Type1730 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageEvaluationRole? Type1731 { get; set; } + public global::Vapi.OneOf? Type1731 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanExactType? Type1732 { get; set; } + public global::Vapi.AssistantMessageJudgePlanAIType? Type1732 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanRegexType? Type1733 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageEvaluationRole? Type1733 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTO? Type1734 { get; set; } + public global::Vapi.AssistantMessageJudgePlanExactType? Type1734 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTOSortOrder? Type1735 { get; set; } + public global::Vapi.AssistantMessageJudgePlanRegexType? Type1735 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTOSortBy? Type1736 { get; set; } + public global::Vapi.GetEvalPaginatedDTO? Type1736 { get; set; } /// /// /// - public global::Vapi.EvalPaginatedResponse? Type1737 { get; set; } + public global::Vapi.GetEvalPaginatedDTOSortOrder? Type1737 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1738 { get; set; } + public global::Vapi.GetEvalPaginatedDTOSortBy? Type1738 { get; set; } /// /// /// - public global::Vapi.UpdateEvalDTO? Type1739 { get; set; } + public global::Vapi.EvalPaginatedResponse? Type1739 { get; set; } /// /// /// - public global::Vapi.UpdateEvalDTOType? Type1740 { get; set; } + public global::System.Collections.Generic.IList? Type1740 { get; set; } /// /// /// - public global::Vapi.CreateEvalRunDTO? Type1741 { get; set; } + public global::Vapi.UpdateEvalDTO? Type1741 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1742 { get; set; } + public global::Vapi.UpdateEvalDTOType? Type1742 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetAssistant? Type1743 { get; set; } + public global::Vapi.CreateEvalRunDTO? Type1743 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetSquad? Type1744 { get; set; } + public global::Vapi.OneOf? Type1744 { get; set; } /// /// /// - public global::Vapi.CreateEvalRunDTOType? Type1745 { get; set; } + public global::Vapi.EvalRunTargetAssistant? Type1745 { get; set; } /// /// /// - public global::Vapi.EvalRunResult? Type1746 { get; set; } + public global::Vapi.EvalRunTargetSquad? Type1746 { get; set; } /// /// /// - public global::Vapi.EvalRunResultStatus? Type1747 { get; set; } + public global::Vapi.CreateEvalRunDTOType? Type1747 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1748 { get; set; } + public global::Vapi.EvalRunResult? Type1748 { get; set; } /// /// /// - public global::Vapi.EvalRun? Type1749 { get; set; } + public global::Vapi.EvalRunResultStatus? Type1749 { get; set; } /// /// /// - public global::Vapi.EvalRunStatus? Type1750 { get; set; } + public global::Vapi.OneOf? Type1750 { get; set; } /// /// /// - public global::Vapi.EvalRunEndedReason? Type1751 { get; set; } + public global::Vapi.EvalRun? Type1751 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1752 { get; set; } + public global::Vapi.EvalRunStatus? Type1752 { get; set; } /// /// /// - public global::Vapi.EvalRunType? Type1753 { get; set; } + public global::Vapi.EvalRunEndedReason? Type1753 { get; set; } /// /// /// - public global::Vapi.EvalRunPaginatedResponse? Type1754 { get; set; } + public global::System.Collections.Generic.IList? Type1754 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1755 { get; set; } + public global::Vapi.EvalRunType? Type1755 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTO? Type1756 { get; set; } + public global::Vapi.EvalRunPaginatedResponse? Type1756 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTOSortOrder? Type1757 { get; set; } + public global::System.Collections.Generic.IList? Type1757 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTOSortBy? Type1758 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTO? Type1758 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetAssistantType? Type1759 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTOSortOrder? Type1759 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetSquadType? Type1760 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTOSortBy? Type1760 { get; set; } /// /// /// - public global::Vapi.Scorecard? Type1761 { get; set; } + public global::Vapi.EvalRunTargetAssistantType? Type1761 { get; set; } /// /// /// - public global::Vapi.ScorecardPaginatedResponse? Type1762 { get; set; } + public global::Vapi.EvalRunTargetSquadType? Type1762 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1763 { get; set; } + public global::Vapi.Scorecard? Type1763 { get; set; } /// /// /// - public global::Vapi.UpdateScorecardDTO? Type1764 { get; set; } + public global::Vapi.ScorecardPaginatedResponse? Type1764 { get; set; } /// /// /// - public global::Vapi.CreateOrgDTO? Type1765 { get; set; } + public global::System.Collections.Generic.IList? Type1765 { get; set; } /// /// /// - public global::Vapi.CreateOrgDTOChannel? Type1766 { get; set; } + public global::Vapi.UpdateScorecardDTO? Type1766 { get; set; } /// /// /// - public global::Vapi.AutoReloadPlan? Type1767 { get; set; } + public global::Vapi.CreateOrgDTO? Type1767 { get; set; } /// /// /// - public global::Vapi.InvoicePlan? Type1768 { get; set; } + public global::Vapi.CreateOrgDTOChannel? Type1768 { get; set; } /// /// /// - public global::Vapi.Subscription? Type1769 { get; set; } + public global::Vapi.AutoReloadPlan? Type1769 { get; set; } /// /// /// - public global::Vapi.SubscriptionType? Type1770 { get; set; } + public global::Vapi.InvoicePlan? Type1770 { get; set; } /// /// /// - public global::Vapi.SubscriptionStatus? Type1771 { get; set; } + public global::Vapi.Subscription? Type1771 { get; set; } /// /// /// - public global::Vapi.SubscriptionMinutesIncludedResetFrequency? Type1772 { get; set; } + public global::Vapi.SubscriptionType? Type1772 { get; set; } /// /// /// - public global::Vapi.Org? Type1773 { get; set; } + public global::Vapi.SubscriptionStatus? Type1773 { get; set; } /// /// /// - public global::Vapi.OrgChannel? Type1774 { get; set; } + public global::Vapi.SubscriptionMinutesIncludedResetFrequency? Type1774 { get; set; } /// /// /// - public global::Vapi.UpdateOrgDTO? Type1775 { get; set; } + public global::Vapi.Org? Type1775 { get; set; } /// /// /// - public global::Vapi.UpdateOrgDTOChannel? Type1776 { get; set; } + public global::Vapi.OrgChannel? Type1776 { get; set; } /// /// /// - public global::Vapi.User? Type1777 { get; set; } + public global::Vapi.UpdateOrgDTO? Type1777 { get; set; } /// /// /// - public global::Vapi.InviteUserDTO? Type1778 { get; set; } + public global::Vapi.UpdateOrgDTOChannel? Type1778 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1779 { get; set; } + public global::Vapi.User? Type1779 { get; set; } /// /// /// - public global::Vapi.InviteUserDTORole? Type1780 { get; set; } + public global::Vapi.InviteUserDTO? Type1780 { get; set; } /// /// /// - public global::Vapi.UpdateUserRoleDTO? Type1781 { get; set; } + public global::Vapi.OneOf? Type1781 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1782 { get; set; } + public global::Vapi.InviteUserDTORole? Type1782 { get; set; } /// /// /// - public global::Vapi.UpdateUserRoleDTORole? Type1783 { get; set; } + public global::Vapi.PendingInvitationDTO? Type1783 { get; set; } /// /// /// - public global::Vapi.JwtResponse? Type1784 { get; set; } + public global::Vapi.PendingInvitationsResponseDTO? Type1784 { get; set; } /// /// /// - public global::Vapi.TokenRestrictions? Type1785 { get; set; } + public global::System.Collections.Generic.IList? Type1785 { get; set; } /// /// /// - public global::Vapi.CreateTokenDTO? Type1786 { get; set; } + public global::Vapi.RevokeInvitationResponseDTO? Type1786 { get; set; } /// /// /// - public global::Vapi.CreateTokenDTOTag? Type1787 { get; set; } + public global::Vapi.UpdateUserRoleDTO? Type1787 { get; set; } /// /// /// - public global::Vapi.Token? Type1788 { get; set; } + public global::Vapi.OneOf? Type1788 { get; set; } /// /// /// - public global::Vapi.TokenTag? Type1789 { get; set; } + public global::Vapi.UpdateUserRoleDTORole? Type1789 { get; set; } /// /// /// - public global::Vapi.UpdateTokenDTO? Type1790 { get; set; } + public global::Vapi.JwtResponse? Type1790 { get; set; } /// /// /// - public global::Vapi.UpdateTokenDTOTag? Type1791 { get; set; } + public global::Vapi.TokenRestrictions? Type1791 { get; set; } /// /// /// - public global::Vapi.AnthropicCredential? Type1792 { get; set; } + public global::Vapi.CreateTokenDTO? Type1792 { get; set; } /// /// /// - public global::Vapi.AnthropicCredentialProvider? Type1793 { get; set; } + public global::Vapi.CreateTokenDTOTag? Type1793 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationArtifact? Type1794 { get; set; } + public global::Vapi.Token? Type1794 { get; set; } /// /// /// - public global::Vapi.AWSStsAssumeRoleUser? Type1795 { get; set; } + public global::Vapi.TokenTag? Type1795 { get; set; } /// /// /// - public global::Vapi.AWSStsCredentials? Type1796 { get; set; } + public global::Vapi.UpdateTokenDTO? Type1796 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationSession? Type1797 { get; set; } + public global::Vapi.UpdateTokenDTOTag? Type1797 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredential? Type1798 { get; set; } + public global::Vapi.AnthropicCredential? Type1798 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredentialProvider? Type1799 { get; set; } + public global::Vapi.AnthropicCredentialProvider? Type1799 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredentialRegion? Type1800 { get; set; } + public global::Vapi.AWSStsAuthenticationArtifact? Type1800 { get; set; } /// /// /// - public global::Vapi.AnyscaleCredential? Type1801 { get; set; } + public global::Vapi.AWSStsAssumeRoleUser? Type1801 { get; set; } /// /// /// - public global::Vapi.AnyscaleCredentialProvider? Type1802 { get; set; } + public global::Vapi.AWSStsCredentials? Type1802 { get; set; } /// /// /// - public global::Vapi.AssemblyAICredential? Type1803 { get; set; } + public global::Vapi.AWSStsAuthenticationSession? Type1803 { get; set; } /// /// /// - public global::Vapi.AssemblyAICredentialProvider? Type1804 { get; set; } + public global::Vapi.AnthropicBedrockCredential? Type1804 { get; set; } /// /// /// - public global::Vapi.AzureCredential? Type1805 { get; set; } + public global::Vapi.AnthropicBedrockCredentialProvider? Type1805 { get; set; } /// /// /// - public global::Vapi.AzureCredentialProvider? Type1806 { get; set; } + public global::Vapi.AnthropicBedrockCredentialRegion? Type1806 { get; set; } /// /// /// - public global::Vapi.AzureCredentialService? Type1807 { get; set; } + public global::Vapi.AnyscaleCredential? Type1807 { get; set; } /// /// /// - public global::Vapi.AzureCredentialRegion? Type1808 { get; set; } + public global::Vapi.AnyscaleCredentialProvider? Type1808 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredential? Type1809 { get; set; } + public global::Vapi.AssemblyAICredential? Type1809 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialProvider? Type1810 { get; set; } + public global::Vapi.AssemblyAICredentialProvider? Type1810 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialRegion? Type1811 { get; set; } + public global::Vapi.AzureCredential? Type1811 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1812 { get; set; } + public global::Vapi.AzureCredentialProvider? Type1812 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialModel? Type1813 { get; set; } + public global::Vapi.AzureCredentialService? Type1813 { get; set; } /// /// /// - public global::Vapi.ByoSipTrunkCredential? Type1814 { get; set; } + public global::Vapi.AzureCredentialRegion? Type1814 { get; set; } /// /// /// - public global::Vapi.ByoSipTrunkCredentialProvider? Type1815 { get; set; } + public global::Vapi.AzureOpenAICredential? Type1815 { get; set; } /// /// /// - public global::Vapi.CartesiaCredential? Type1816 { get; set; } + public global::Vapi.AzureOpenAICredentialProvider? Type1816 { get; set; } /// /// /// - public global::Vapi.CartesiaCredentialProvider? Type1817 { get; set; } + public global::Vapi.AzureOpenAICredentialRegion? Type1817 { get; set; } /// /// /// - public global::Vapi.CerebrasCredential? Type1818 { get; set; } + public global::System.Collections.Generic.IList? Type1818 { get; set; } /// /// /// - public global::Vapi.CerebrasCredentialProvider? Type1819 { get; set; } + public global::Vapi.AzureOpenAICredentialModel? Type1819 { get; set; } /// /// /// - public global::Vapi.CloudflareCredential? Type1820 { get; set; } + public global::Vapi.ByoSipTrunkCredential? Type1820 { get; set; } /// /// /// - public global::Vapi.CloudflareCredentialProvider? Type1821 { get; set; } + public global::Vapi.ByoSipTrunkCredentialProvider? Type1821 { get; set; } /// /// /// - public global::Vapi.Oauth2AuthenticationSession? Type1822 { get; set; } + public global::Vapi.CartesiaCredential? Type1822 { get; set; } /// /// /// - public global::Vapi.CustomLLMCredential? Type1823 { get; set; } + public global::Vapi.CartesiaCredentialProvider? Type1823 { get; set; } /// /// /// - public global::Vapi.CustomLLMCredentialProvider? Type1824 { get; set; } + public global::Vapi.CerebrasCredential? Type1824 { get; set; } /// /// /// - public global::Vapi.DeepgramCredential? Type1825 { get; set; } + public global::Vapi.CerebrasCredentialProvider? Type1825 { get; set; } /// /// /// - public global::Vapi.DeepgramCredentialProvider? Type1826 { get; set; } + public global::Vapi.CloudflareCredential? Type1826 { get; set; } /// /// /// - public global::Vapi.DeepInfraCredential? Type1827 { get; set; } + public global::Vapi.CloudflareCredentialProvider? Type1827 { get; set; } /// /// /// - public global::Vapi.DeepInfraCredentialProvider? Type1828 { get; set; } + public global::Vapi.Oauth2AuthenticationSession? Type1828 { get; set; } /// /// /// - public global::Vapi.DeepSeekCredential? Type1829 { get; set; } + public global::Vapi.CustomLLMCredential? Type1829 { get; set; } /// /// /// - public global::Vapi.DeepSeekCredentialProvider? Type1830 { get; set; } + public global::Vapi.CustomLLMCredentialProvider? Type1830 { get; set; } /// /// /// - public global::Vapi.ElevenLabsCredential? Type1831 { get; set; } + public global::Vapi.DeepgramCredential? Type1831 { get; set; } /// /// /// - public global::Vapi.ElevenLabsCredentialProvider? Type1832 { get; set; } + public global::Vapi.DeepgramCredentialProvider? Type1832 { get; set; } /// /// /// - public global::Vapi.ElevenLabsCredentialApiUrl? Type1833 { get; set; } + public global::Vapi.DeepInfraCredential? Type1833 { get; set; } /// /// /// - public global::Vapi.GcpCredential? Type1834 { get; set; } + public global::Vapi.DeepInfraCredentialProvider? Type1834 { get; set; } /// /// /// - public global::Vapi.GcpCredentialProvider? Type1835 { get; set; } + public global::Vapi.DeepSeekCredential? Type1835 { get; set; } /// /// /// - public global::Vapi.GladiaCredential? Type1836 { get; set; } + public global::Vapi.DeepSeekCredentialProvider? Type1836 { get; set; } /// /// /// - public global::Vapi.GladiaCredentialProvider? Type1837 { get; set; } + public global::Vapi.ElevenLabsCredential? Type1837 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCredential? Type1838 { get; set; } + public global::Vapi.ElevenLabsCredentialProvider? Type1838 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCredentialProvider? Type1839 { get; set; } + public global::Vapi.ElevenLabsCredentialApiUrl? Type1839 { get; set; } /// /// /// - public global::Vapi.GoogleCredential? Type1840 { get; set; } + public global::Vapi.GcpCredential? Type1840 { get; set; } /// /// /// - public global::Vapi.GoogleCredentialProvider? Type1841 { get; set; } + public global::Vapi.GcpCredentialProvider? Type1841 { get; set; } /// /// /// - public global::Vapi.GroqCredential? Type1842 { get; set; } + public global::Vapi.GladiaCredential? Type1842 { get; set; } /// /// /// - public global::Vapi.GroqCredentialProvider? Type1843 { get; set; } + public global::Vapi.GladiaCredentialProvider? Type1843 { get; set; } /// /// /// - public global::Vapi.HumeCredential? Type1844 { get; set; } + public global::Vapi.GoHighLevelCredential? Type1844 { get; set; } /// /// /// - public global::Vapi.HumeCredentialProvider? Type1845 { get; set; } + public global::Vapi.GoHighLevelCredentialProvider? Type1845 { get; set; } /// /// /// - public global::Vapi.InflectionAICredential? Type1846 { get; set; } + public global::Vapi.GoogleCredential? Type1846 { get; set; } /// /// /// - public global::Vapi.InflectionAICredentialProvider? Type1847 { get; set; } + public global::Vapi.GoogleCredentialProvider? Type1847 { get; set; } /// /// /// - public global::Vapi.LangfuseCredential? Type1848 { get; set; } + public global::Vapi.GroqCredential? Type1848 { get; set; } /// /// /// - public global::Vapi.LangfuseCredentialProvider? Type1849 { get; set; } + public global::Vapi.GroqCredentialProvider? Type1849 { get; set; } /// /// /// - public global::Vapi.LmntCredential? Type1850 { get; set; } + public global::Vapi.HumeCredential? Type1850 { get; set; } /// /// /// - public global::Vapi.LmntCredentialProvider? Type1851 { get; set; } + public global::Vapi.HumeCredentialProvider? Type1851 { get; set; } /// /// /// - public global::Vapi.MakeCredential? Type1852 { get; set; } + public global::Vapi.InflectionAICredential? Type1852 { get; set; } /// /// /// - public global::Vapi.MakeCredentialProvider? Type1853 { get; set; } + public global::Vapi.InflectionAICredentialProvider? Type1853 { get; set; } /// /// /// - public global::Vapi.MicrosoftCredential? Type1854 { get; set; } + public global::Vapi.LangfuseCredential? Type1854 { get; set; } /// /// /// - public global::Vapi.MicrosoftCredentialProvider? Type1855 { get; set; } + public global::Vapi.LangfuseCredentialProvider? Type1855 { get; set; } /// /// /// - public global::Vapi.MistralCredential? Type1856 { get; set; } + public global::Vapi.LmntCredential? Type1856 { get; set; } /// /// /// - public global::Vapi.MistralCredentialProvider? Type1857 { get; set; } + public global::Vapi.LmntCredentialProvider? Type1857 { get; set; } /// /// /// - public global::Vapi.NeuphonicCredential? Type1858 { get; set; } + public global::Vapi.MakeCredential? Type1858 { get; set; } /// /// /// - public global::Vapi.NeuphonicCredentialProvider? Type1859 { get; set; } + public global::Vapi.MakeCredentialProvider? Type1859 { get; set; } /// /// /// - public global::Vapi.OpenAICredential? Type1860 { get; set; } + public global::Vapi.MicrosoftCredential? Type1860 { get; set; } /// /// /// - public global::Vapi.OpenAICredentialProvider? Type1861 { get; set; } + public global::Vapi.MicrosoftCredentialProvider? Type1861 { get; set; } /// /// /// - public global::Vapi.OpenRouterCredential? Type1862 { get; set; } + public global::Vapi.MistralCredential? Type1862 { get; set; } /// /// /// - public global::Vapi.OpenRouterCredentialProvider? Type1863 { get; set; } + public global::Vapi.MistralCredentialProvider? Type1863 { get; set; } /// /// /// - public global::Vapi.PerplexityAICredential? Type1864 { get; set; } + public global::Vapi.NeuphonicCredential? Type1864 { get; set; } /// /// /// - public global::Vapi.PerplexityAICredentialProvider? Type1865 { get; set; } + public global::Vapi.NeuphonicCredentialProvider? Type1865 { get; set; } /// /// /// - public global::Vapi.PlayHTCredential? Type1866 { get; set; } + public global::Vapi.OpenAICredential? Type1866 { get; set; } /// /// /// - public global::Vapi.PlayHTCredentialProvider? Type1867 { get; set; } + public global::Vapi.OpenAICredentialProvider? Type1867 { get; set; } /// /// /// - public global::Vapi.RimeAICredential? Type1868 { get; set; } + public global::Vapi.OpenRouterCredential? Type1868 { get; set; } /// /// /// - public global::Vapi.RimeAICredentialProvider? Type1869 { get; set; } + public global::Vapi.OpenRouterCredentialProvider? Type1869 { get; set; } /// /// /// - public global::Vapi.RunpodCredential? Type1870 { get; set; } + public global::Vapi.PerplexityAICredential? Type1870 { get; set; } /// /// /// - public global::Vapi.RunpodCredentialProvider? Type1871 { get; set; } + public global::Vapi.PerplexityAICredentialProvider? Type1871 { get; set; } /// /// /// - public global::Vapi.WellSaidCredential? Type1872 { get; set; } + public global::Vapi.PlayHTCredential? Type1872 { get; set; } /// /// /// - public global::Vapi.WellSaidCredentialProvider? Type1873 { get; set; } + public global::Vapi.PlayHTCredentialProvider? Type1873 { get; set; } /// /// /// - public global::Vapi.S3Credential? Type1874 { get; set; } + public global::Vapi.RimeAICredential? Type1874 { get; set; } /// /// /// - public global::Vapi.S3CredentialProvider? Type1875 { get; set; } + public global::Vapi.RimeAICredentialProvider? Type1875 { get; set; } /// /// /// - public global::Vapi.S3CompatibleBucketPlan? Type1876 { get; set; } + public global::Vapi.RunpodCredential? Type1876 { get; set; } /// /// /// - public global::Vapi.S3CompatibleStorageCredential? Type1877 { get; set; } + public global::Vapi.RunpodCredentialProvider? Type1877 { get; set; } /// /// /// - public global::Vapi.S3CompatibleStorageCredentialProvider? Type1878 { get; set; } + public global::Vapi.WellSaidCredential? Type1878 { get; set; } /// /// /// - public global::Vapi.SmallestAICredential? Type1879 { get; set; } + public global::Vapi.WellSaidCredentialProvider? Type1879 { get; set; } /// /// /// - public global::Vapi.SmallestAICredentialProvider? Type1880 { get; set; } + public global::Vapi.S3Credential? Type1880 { get; set; } /// /// /// - public global::Vapi.SonioxCredential? Type1881 { get; set; } + public global::Vapi.S3CredentialProvider? Type1881 { get; set; } /// /// /// - public global::Vapi.SonioxCredentialProvider? Type1882 { get; set; } + public global::Vapi.S3CompatibleBucketPlan? Type1882 { get; set; } /// /// /// - public global::Vapi.SpeechmaticsCredential? Type1883 { get; set; } + public global::Vapi.S3CompatibleStorageCredential? Type1883 { get; set; } /// /// /// - public global::Vapi.SpeechmaticsCredentialProvider? Type1884 { get; set; } + public global::Vapi.S3CompatibleStorageCredentialProvider? Type1884 { get; set; } /// /// /// - public global::Vapi.SupabaseCredential? Type1885 { get; set; } + public global::Vapi.SmallestAICredential? Type1885 { get; set; } /// /// /// - public global::Vapi.SupabaseCredentialProvider? Type1886 { get; set; } + public global::Vapi.SmallestAICredentialProvider? Type1886 { get; set; } /// /// /// - public global::Vapi.TavusCredential? Type1887 { get; set; } + public global::Vapi.SonioxCredential? Type1887 { get; set; } /// /// /// - public global::Vapi.TavusCredentialProvider? Type1888 { get; set; } + public global::Vapi.SonioxCredentialProvider? Type1888 { get; set; } /// /// /// - public global::Vapi.TogetherAICredential? Type1889 { get; set; } + public global::Vapi.SpeechmaticsCredential? Type1889 { get; set; } /// /// /// - public global::Vapi.TogetherAICredentialProvider? Type1890 { get; set; } + public global::Vapi.SpeechmaticsCredentialProvider? Type1890 { get; set; } /// /// /// - public global::Vapi.TwilioCredential? Type1891 { get; set; } + public global::Vapi.SupabaseCredential? Type1891 { get; set; } /// /// /// - public global::Vapi.TwilioCredentialProvider? Type1892 { get; set; } + public global::Vapi.SupabaseCredentialProvider? Type1892 { get; set; } /// /// /// - public global::Vapi.VonageCredential? Type1893 { get; set; } + public global::Vapi.TavusCredential? Type1893 { get; set; } /// /// /// - public global::Vapi.VonageCredentialProvider? Type1894 { get; set; } + public global::Vapi.TavusCredentialProvider? Type1894 { get; set; } /// /// /// - public global::Vapi.WebhookCredential? Type1895 { get; set; } + public global::Vapi.TogetherAICredential? Type1895 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialProvider? Type1896 { get; set; } + public global::Vapi.TogetherAICredentialProvider? Type1896 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan4? Type1897 { get; set; } + public global::Vapi.TwilioCredential? Type1897 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminator? Type1898 { get; set; } + public global::Vapi.TwilioCredentialProvider? Type1898 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminatorType? Type1899 { get; set; } + public global::Vapi.VonageCredential? Type1899 { get; set; } /// /// /// - public global::Vapi.SpkiPemPublicKeyConfig? Type1900 { get; set; } + public global::Vapi.VonageCredentialProvider? Type1900 { get; set; } /// /// /// - public global::Vapi.SpkiPemPublicKeyConfigFormat? Type1901 { get; set; } + public global::Vapi.WebhookCredential? Type1901 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlan? Type1902 { get; set; } + public global::Vapi.WebhookCredentialProvider? Type1902 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanType? Type1903 { get; set; } + public global::Vapi.AuthenticationPlan4? Type1903 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanAlgorithm? Type1904 { get; set; } + public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminator? Type1904 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator? Type1905 { get; set; } + public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminatorType? Type1905 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat? Type1906 { get; set; } + public global::Vapi.SpkiPemPublicKeyConfig? Type1906 { get; set; } /// /// /// - public global::Vapi.CustomCredential? Type1907 { get; set; } + public global::Vapi.SpkiPemPublicKeyConfigFormat? Type1907 { get; set; } /// /// /// - public global::Vapi.CustomCredentialProvider? Type1908 { get; set; } + public global::Vapi.PublicKeyEncryptionPlan? Type1908 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan5? Type1909 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanType? Type1909 { get; set; } /// /// /// - public global::Vapi.CustomCredentialAuthenticationPlanDiscriminator? Type1910 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanAlgorithm? Type1910 { get; set; } /// /// /// - public global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType? Type1911 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator? Type1911 { get; set; } /// /// /// - public global::Vapi.CustomCredentialEncryptionPlanDiscriminator? Type1912 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat? Type1912 { get; set; } /// /// /// - public global::Vapi.CustomCredentialEncryptionPlanDiscriminatorType? Type1913 { get; set; } + public global::Vapi.CustomCredential? Type1913 { get; set; } /// /// /// - public global::Vapi.XAiCredential? Type1914 { get; set; } + public global::Vapi.CustomCredentialProvider? Type1914 { get; set; } /// /// /// - public global::Vapi.XAiCredentialProvider? Type1915 { get; set; } + public global::Vapi.AuthenticationPlan5? Type1915 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2ClientCredential? Type1916 { get; set; } + public global::Vapi.CustomCredentialAuthenticationPlanDiscriminator? Type1916 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2ClientCredentialProvider? Type1917 { get; set; } + public global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType? Type1917 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2AuthorizationCredential? Type1918 { get; set; } + public global::Vapi.CustomCredentialEncryptionPlanDiscriminator? Type1918 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2AuthorizationCredentialProvider? Type1919 { get; set; } + public global::Vapi.CustomCredentialEncryptionPlanDiscriminatorType? Type1919 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsOAuth2AuthorizationCredential? Type1920 { get; set; } + public global::Vapi.XAiCredential? Type1920 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsOAuth2AuthorizationCredentialProvider? Type1921 { get; set; } + public global::Vapi.XAiCredentialProvider? Type1921 { get; set; } /// /// /// - public global::Vapi.SlackOAuth2AuthorizationCredential? Type1922 { get; set; } + public global::Vapi.GoogleCalendarOAuth2ClientCredential? Type1922 { get; set; } /// /// /// - public global::Vapi.SlackOAuth2AuthorizationCredentialProvider? Type1923 { get; set; } + public global::Vapi.GoogleCalendarOAuth2ClientCredentialProvider? Type1923 { get; set; } /// /// /// - public global::Vapi.GoHighLevelMCPCredential? Type1924 { get; set; } + public global::Vapi.GoogleCalendarOAuth2AuthorizationCredential? Type1924 { get; set; } /// /// /// - public global::Vapi.GoHighLevelMCPCredentialProvider? Type1925 { get; set; } + public global::Vapi.GoogleCalendarOAuth2AuthorizationCredentialProvider? Type1925 { get; set; } /// /// /// - public global::Vapi.InworldCredential? Type1926 { get; set; } + public global::Vapi.GoogleSheetsOAuth2AuthorizationCredential? Type1926 { get; set; } /// /// /// - public global::Vapi.InworldCredentialProvider? Type1927 { get; set; } + public global::Vapi.GoogleSheetsOAuth2AuthorizationCredentialProvider? Type1927 { get; set; } /// /// /// - public global::Vapi.EmailCredential? Type1928 { get; set; } + public global::Vapi.SlackOAuth2AuthorizationCredential? Type1928 { get; set; } /// /// /// - public global::Vapi.EmailCredentialProvider? Type1929 { get; set; } + public global::Vapi.SlackOAuth2AuthorizationCredentialProvider? Type1929 { get; set; } /// /// /// - public global::Vapi.SlackWebhookCredential? Type1930 { get; set; } + public global::Vapi.GoHighLevelMCPCredential? Type1930 { get; set; } /// /// /// - public global::Vapi.SlackWebhookCredentialProvider? Type1931 { get; set; } + public global::Vapi.GoHighLevelMCPCredentialProvider? Type1931 { get; set; } /// /// /// - public global::Vapi.CreateCerebrasCredentialDTOProvider? Type1932 { get; set; } + public global::Vapi.InworldCredential? Type1932 { get; set; } /// /// /// - public global::Vapi.CreateGoogleCredentialDTOProvider? Type1933 { get; set; } + public global::Vapi.InworldCredentialProvider? Type1933 { get; set; } /// /// /// - public global::Vapi.CreateHumeCredentialDTOProvider? Type1934 { get; set; } + public global::Vapi.EmailCredential? Type1934 { get; set; } /// /// /// - public global::Vapi.CreateInflectionAICredentialDTOProvider? Type1935 { get; set; } + public global::Vapi.EmailCredentialProvider? Type1935 { get; set; } /// /// /// - public global::Vapi.CreateMicrosoftCredentialDTOProvider? Type1936 { get; set; } + public global::Vapi.SlackWebhookCredential? Type1936 { get; set; } /// /// /// - public global::Vapi.CreateMistralCredentialDTOProvider? Type1937 { get; set; } + public global::Vapi.SlackWebhookCredentialProvider? Type1937 { get; set; } /// /// /// - public global::Vapi.CreateNeuphonicCredentialDTOProvider? Type1938 { get; set; } + public global::Vapi.CreateCerebrasCredentialDTOProvider? Type1938 { get; set; } /// /// /// - public global::Vapi.CreateWellSaidCredentialDTOProvider? Type1939 { get; set; } + public global::Vapi.CreateGoogleCredentialDTOProvider? Type1939 { get; set; } /// /// /// - public global::Vapi.CreateS3CompatibleCredentialDTOProvider? Type1940 { get; set; } + public global::Vapi.CreateHumeCredentialDTOProvider? Type1940 { get; set; } /// /// /// - public global::Vapi.CreateSonioxCredentialDTOProvider? Type1941 { get; set; } + public global::Vapi.CreateInflectionAICredentialDTOProvider? Type1941 { get; set; } /// /// /// - public global::Vapi.CreateSpeechmaticsCredentialDTOProvider? Type1942 { get; set; } + public global::Vapi.CreateMicrosoftCredentialDTOProvider? Type1942 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOProvider? Type1943 { get; set; } + public global::Vapi.CreateMistralCredentialDTOProvider? Type1943 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan6? Type1944 { get; set; } + public global::Vapi.CreateNeuphonicCredentialDTOProvider? Type1944 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1945 { get; set; } + public global::Vapi.CreateWellSaidCredentialDTOProvider? Type1945 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1946 { get; set; } + public global::Vapi.CreateS3CompatibleCredentialDTOProvider? Type1946 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminator? Type1947 { get; set; } + public global::Vapi.CreateSonioxCredentialDTOProvider? Type1947 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1948 { get; set; } + public global::Vapi.CreateSpeechmaticsCredentialDTOProvider? Type1948 { get; set; } /// /// /// - public global::Vapi.CreateGoHighLevelMCPCredentialDTOProvider? Type1949 { get; set; } + public global::Vapi.CreateCustomCredentialDTOProvider? Type1949 { get; set; } /// /// /// - public global::Vapi.CreateInworldCredentialDTOProvider? Type1950 { get; set; } + public global::Vapi.AuthenticationPlan6? Type1950 { get; set; } /// /// /// - public global::Vapi.CreateEmailCredentialDTOProvider? Type1951 { get; set; } + public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1951 { get; set; } /// /// /// - public global::Vapi.CreateSlackWebhookCredentialDTOProvider? Type1952 { get; set; } + public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1952 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicCredentialDTO? Type1953 { get; set; } + public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminator? Type1953 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicCredentialDTOProvider? Type1954 { get; set; } + public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1954 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicBedrockCredentialDTO? Type1955 { get; set; } + public global::Vapi.CreateGoHighLevelMCPCredentialDTOProvider? Type1955 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicBedrockCredentialDTOProvider? Type1956 { get; set; } + public global::Vapi.CreateInworldCredentialDTOProvider? Type1956 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicBedrockCredentialDTORegion? Type1957 { get; set; } + public global::Vapi.CreateEmailCredentialDTOProvider? Type1957 { get; set; } /// /// /// - public global::Vapi.UpdateAnyscaleCredentialDTO? Type1958 { get; set; } + public global::Vapi.CreateSlackWebhookCredentialDTOProvider? Type1958 { get; set; } /// /// /// - public global::Vapi.UpdateAnyscaleCredentialDTOProvider? Type1959 { get; set; } + public global::Vapi.UpdateAnthropicCredentialDTO? Type1959 { get; set; } /// /// /// - public global::Vapi.UpdateAssemblyAICredentialDTO? Type1960 { get; set; } + public global::Vapi.UpdateAnthropicCredentialDTOProvider? Type1960 { get; set; } /// /// /// - public global::Vapi.UpdateAssemblyAICredentialDTOProvider? Type1961 { get; set; } + public global::Vapi.UpdateAnthropicBedrockCredentialDTO? Type1961 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTO? Type1962 { get; set; } + public global::Vapi.UpdateAnthropicBedrockCredentialDTOProvider? Type1962 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTOProvider? Type1963 { get; set; } + public global::Vapi.UpdateAnthropicBedrockCredentialDTORegion? Type1963 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTOService? Type1964 { get; set; } + public global::Vapi.UpdateAnyscaleCredentialDTO? Type1964 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTORegion? Type1965 { get; set; } + public global::Vapi.UpdateAnyscaleCredentialDTOProvider? Type1965 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTO? Type1966 { get; set; } + public global::Vapi.UpdateAssemblyAICredentialDTO? Type1966 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTOProvider? Type1967 { get; set; } + public global::Vapi.UpdateAssemblyAICredentialDTOProvider? Type1967 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTORegion? Type1968 { get; set; } + public global::Vapi.UpdateAzureCredentialDTO? Type1968 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1969 { get; set; } + public global::Vapi.UpdateAzureCredentialDTOProvider? Type1969 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTOModel? Type1970 { get; set; } + public global::Vapi.UpdateAzureCredentialDTOService? Type1970 { get; set; } /// /// /// - public global::Vapi.UpdateByoSipTrunkCredentialDTO? Type1971 { get; set; } + public global::Vapi.UpdateAzureCredentialDTORegion? Type1971 { get; set; } /// /// /// - public global::Vapi.UpdateByoSipTrunkCredentialDTOProvider? Type1972 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTO? Type1972 { get; set; } /// /// /// - public global::Vapi.UpdateCartesiaCredentialDTO? Type1973 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTOProvider? Type1973 { get; set; } /// /// /// - public global::Vapi.UpdateCartesiaCredentialDTOProvider? Type1974 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTORegion? Type1974 { get; set; } /// /// /// - public global::Vapi.UpdateCerebrasCredentialDTO? Type1975 { get; set; } + public global::System.Collections.Generic.IList? Type1975 { get; set; } /// /// /// - public global::Vapi.UpdateCerebrasCredentialDTOProvider? Type1976 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTOModel? Type1976 { get; set; } /// /// /// - public global::Vapi.UpdateCloudflareCredentialDTO? Type1977 { get; set; } + public global::Vapi.UpdateByoSipTrunkCredentialDTO? Type1977 { get; set; } /// /// /// - public global::Vapi.UpdateCloudflareCredentialDTOProvider? Type1978 { get; set; } + public global::Vapi.UpdateByoSipTrunkCredentialDTOProvider? Type1978 { get; set; } /// /// /// - public global::Vapi.UpdateCustomLLMCredentialDTO? Type1979 { get; set; } + public global::Vapi.UpdateCartesiaCredentialDTO? Type1979 { get; set; } /// /// /// - public global::Vapi.UpdateCustomLLMCredentialDTOProvider? Type1980 { get; set; } + public global::Vapi.UpdateCartesiaCredentialDTOProvider? Type1980 { get; set; } /// /// /// - public global::Vapi.UpdateDeepgramCredentialDTO? Type1981 { get; set; } + public global::Vapi.UpdateCerebrasCredentialDTO? Type1981 { get; set; } /// /// /// - public global::Vapi.UpdateDeepgramCredentialDTOProvider? Type1982 { get; set; } + public global::Vapi.UpdateCerebrasCredentialDTOProvider? Type1982 { get; set; } /// /// /// - public global::Vapi.UpdateDeepInfraCredentialDTO? Type1983 { get; set; } + public global::Vapi.UpdateCloudflareCredentialDTO? Type1983 { get; set; } /// /// /// - public global::Vapi.UpdateDeepInfraCredentialDTOProvider? Type1984 { get; set; } + public global::Vapi.UpdateCloudflareCredentialDTOProvider? Type1984 { get; set; } /// /// /// - public global::Vapi.UpdateDeepSeekCredentialDTO? Type1985 { get; set; } + public global::Vapi.UpdateCustomLLMCredentialDTO? Type1985 { get; set; } /// /// /// - public global::Vapi.UpdateDeepSeekCredentialDTOProvider? Type1986 { get; set; } + public global::Vapi.UpdateCustomLLMCredentialDTOProvider? Type1986 { get; set; } /// /// /// - public global::Vapi.UpdateElevenLabsCredentialDTO? Type1987 { get; set; } + public global::Vapi.UpdateDeepgramCredentialDTO? Type1987 { get; set; } /// /// /// - public global::Vapi.UpdateElevenLabsCredentialDTOProvider? Type1988 { get; set; } + public global::Vapi.UpdateDeepgramCredentialDTOProvider? Type1988 { get; set; } /// /// /// - public global::Vapi.UpdateElevenLabsCredentialDTOApiUrl? Type1989 { get; set; } + public global::Vapi.UpdateDeepInfraCredentialDTO? Type1989 { get; set; } /// /// /// - public global::Vapi.UpdateGcpCredentialDTO? Type1990 { get; set; } + public global::Vapi.UpdateDeepInfraCredentialDTOProvider? Type1990 { get; set; } /// /// /// - public global::Vapi.UpdateGcpCredentialDTOProvider? Type1991 { get; set; } + public global::Vapi.UpdateDeepSeekCredentialDTO? Type1991 { get; set; } /// /// /// - public global::Vapi.UpdateGladiaCredentialDTO? Type1992 { get; set; } + public global::Vapi.UpdateDeepSeekCredentialDTOProvider? Type1992 { get; set; } /// /// /// - public global::Vapi.UpdateGladiaCredentialDTOProvider? Type1993 { get; set; } + public global::Vapi.UpdateElevenLabsCredentialDTO? Type1993 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelCredentialDTO? Type1994 { get; set; } + public global::Vapi.UpdateElevenLabsCredentialDTOProvider? Type1994 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelCredentialDTOProvider? Type1995 { get; set; } + public global::Vapi.UpdateElevenLabsCredentialDTOApiUrl? Type1995 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCredentialDTO? Type1996 { get; set; } + public global::Vapi.UpdateGcpCredentialDTO? Type1996 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCredentialDTOProvider? Type1997 { get; set; } + public global::Vapi.UpdateGcpCredentialDTOProvider? Type1997 { get; set; } /// /// /// - public global::Vapi.UpdateGroqCredentialDTO? Type1998 { get; set; } + public global::Vapi.UpdateGladiaCredentialDTO? Type1998 { get; set; } /// /// /// - public global::Vapi.UpdateGroqCredentialDTOProvider? Type1999 { get; set; } + public global::Vapi.UpdateGladiaCredentialDTOProvider? Type1999 { get; set; } /// /// /// - public global::Vapi.UpdateHumeCredentialDTO? Type2000 { get; set; } + public global::Vapi.UpdateGoHighLevelCredentialDTO? Type2000 { get; set; } /// /// /// - public global::Vapi.UpdateHumeCredentialDTOProvider? Type2001 { get; set; } + public global::Vapi.UpdateGoHighLevelCredentialDTOProvider? Type2001 { get; set; } /// /// /// - public global::Vapi.UpdateInflectionAICredentialDTO? Type2002 { get; set; } + public global::Vapi.UpdateGoogleCredentialDTO? Type2002 { get; set; } /// /// /// - public global::Vapi.UpdateInflectionAICredentialDTOProvider? Type2003 { get; set; } + public global::Vapi.UpdateGoogleCredentialDTOProvider? Type2003 { get; set; } /// /// /// - public global::Vapi.UpdateLangfuseCredentialDTO? Type2004 { get; set; } + public global::Vapi.UpdateGroqCredentialDTO? Type2004 { get; set; } /// /// /// - public global::Vapi.UpdateLangfuseCredentialDTOProvider? Type2005 { get; set; } + public global::Vapi.UpdateGroqCredentialDTOProvider? Type2005 { get; set; } /// /// /// - public global::Vapi.UpdateLmntCredentialDTO? Type2006 { get; set; } + public global::Vapi.UpdateHumeCredentialDTO? Type2006 { get; set; } /// /// /// - public global::Vapi.UpdateLmntCredentialDTOProvider? Type2007 { get; set; } + public global::Vapi.UpdateHumeCredentialDTOProvider? Type2007 { get; set; } /// /// /// - public global::Vapi.UpdateMakeCredentialDTO? Type2008 { get; set; } + public global::Vapi.UpdateInflectionAICredentialDTO? Type2008 { get; set; } /// /// /// - public global::Vapi.UpdateMakeCredentialDTOProvider? Type2009 { get; set; } + public global::Vapi.UpdateInflectionAICredentialDTOProvider? Type2009 { get; set; } /// /// /// - public global::Vapi.UpdateMicrosoftCredentialDTO? Type2010 { get; set; } + public global::Vapi.UpdateLangfuseCredentialDTO? Type2010 { get; set; } /// /// /// - public global::Vapi.UpdateMicrosoftCredentialDTOProvider? Type2011 { get; set; } + public global::Vapi.UpdateLangfuseCredentialDTOProvider? Type2011 { get; set; } /// /// /// - public global::Vapi.UpdateMistralCredentialDTO? Type2012 { get; set; } + public global::Vapi.UpdateLmntCredentialDTO? Type2012 { get; set; } /// /// /// - public global::Vapi.UpdateMistralCredentialDTOProvider? Type2013 { get; set; } + public global::Vapi.UpdateLmntCredentialDTOProvider? Type2013 { get; set; } /// /// /// - public global::Vapi.UpdateNeuphonicCredentialDTO? Type2014 { get; set; } + public global::Vapi.UpdateMakeCredentialDTO? Type2014 { get; set; } /// /// /// - public global::Vapi.UpdateNeuphonicCredentialDTOProvider? Type2015 { get; set; } + public global::Vapi.UpdateMakeCredentialDTOProvider? Type2015 { get; set; } /// /// /// - public global::Vapi.UpdateOpenAICredentialDTO? Type2016 { get; set; } + public global::Vapi.UpdateMicrosoftCredentialDTO? Type2016 { get; set; } /// /// /// - public global::Vapi.UpdateOpenAICredentialDTOProvider? Type2017 { get; set; } + public global::Vapi.UpdateMicrosoftCredentialDTOProvider? Type2017 { get; set; } /// /// /// - public global::Vapi.UpdateOpenRouterCredentialDTO? Type2018 { get; set; } + public global::Vapi.UpdateMistralCredentialDTO? Type2018 { get; set; } /// /// /// - public global::Vapi.UpdateOpenRouterCredentialDTOProvider? Type2019 { get; set; } + public global::Vapi.UpdateMistralCredentialDTOProvider? Type2019 { get; set; } /// /// /// - public global::Vapi.UpdatePerplexityAICredentialDTO? Type2020 { get; set; } + public global::Vapi.UpdateNeuphonicCredentialDTO? Type2020 { get; set; } /// /// /// - public global::Vapi.UpdatePerplexityAICredentialDTOProvider? Type2021 { get; set; } + public global::Vapi.UpdateNeuphonicCredentialDTOProvider? Type2021 { get; set; } /// /// /// - public global::Vapi.UpdatePlayHTCredentialDTO? Type2022 { get; set; } + public global::Vapi.UpdateOpenAICredentialDTO? Type2022 { get; set; } /// /// /// - public global::Vapi.UpdatePlayHTCredentialDTOProvider? Type2023 { get; set; } + public global::Vapi.UpdateOpenAICredentialDTOProvider? Type2023 { get; set; } /// /// /// - public global::Vapi.UpdateRimeAICredentialDTO? Type2024 { get; set; } + public global::Vapi.UpdateOpenRouterCredentialDTO? Type2024 { get; set; } /// /// /// - public global::Vapi.UpdateRimeAICredentialDTOProvider? Type2025 { get; set; } + public global::Vapi.UpdateOpenRouterCredentialDTOProvider? Type2025 { get; set; } /// /// /// - public global::Vapi.UpdateRunpodCredentialDTO? Type2026 { get; set; } + public global::Vapi.UpdatePerplexityAICredentialDTO? Type2026 { get; set; } /// /// /// - public global::Vapi.UpdateRunpodCredentialDTOProvider? Type2027 { get; set; } + public global::Vapi.UpdatePerplexityAICredentialDTOProvider? Type2027 { get; set; } /// /// /// - public global::Vapi.UpdateWellSaidCredentialDTO? Type2028 { get; set; } + public global::Vapi.UpdatePlayHTCredentialDTO? Type2028 { get; set; } /// /// /// - public global::Vapi.UpdateWellSaidCredentialDTOProvider? Type2029 { get; set; } + public global::Vapi.UpdatePlayHTCredentialDTOProvider? Type2029 { get; set; } /// /// /// - public global::Vapi.UpdateS3CredentialDTO? Type2030 { get; set; } + public global::Vapi.UpdateRimeAICredentialDTO? Type2030 { get; set; } /// /// /// - public global::Vapi.UpdateS3CredentialDTOProvider? Type2031 { get; set; } + public global::Vapi.UpdateRimeAICredentialDTOProvider? Type2031 { get; set; } /// /// /// - public global::Vapi.UpdateS3CompatibleBucketPlanDTO? Type2032 { get; set; } + public global::Vapi.UpdateRunpodCredentialDTO? Type2032 { get; set; } /// /// /// - public global::Vapi.UpdateS3CompatibleCredentialDTO? Type2033 { get; set; } + public global::Vapi.UpdateRunpodCredentialDTOProvider? Type2033 { get; set; } /// /// /// - public global::Vapi.UpdateS3CompatibleCredentialDTOProvider? Type2034 { get; set; } + public global::Vapi.UpdateWellSaidCredentialDTO? Type2034 { get; set; } /// /// /// - public global::Vapi.UpdateTogetherAICredentialDTO? Type2035 { get; set; } + public global::Vapi.UpdateWellSaidCredentialDTOProvider? Type2035 { get; set; } /// /// /// - public global::Vapi.UpdateTogetherAICredentialDTOProvider? Type2036 { get; set; } + public global::Vapi.UpdateS3CredentialDTO? Type2036 { get; set; } /// /// /// - public global::Vapi.UpdateTwilioCredentialDTO? Type2037 { get; set; } + public global::Vapi.UpdateS3CredentialDTOProvider? Type2037 { get; set; } /// /// /// - public global::Vapi.UpdateTwilioCredentialDTOProvider? Type2038 { get; set; } + public global::Vapi.UpdateS3CompatibleBucketPlanDTO? Type2038 { get; set; } /// /// /// - public global::Vapi.UpdateVonageCredentialDTO? Type2039 { get; set; } + public global::Vapi.UpdateS3CompatibleCredentialDTO? Type2039 { get; set; } /// /// /// - public global::Vapi.UpdateVonageCredentialDTOProvider? Type2040 { get; set; } + public global::Vapi.UpdateS3CompatibleCredentialDTOProvider? Type2040 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTO? Type2041 { get; set; } + public global::Vapi.UpdateTogetherAICredentialDTO? Type2041 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTOProvider? Type2042 { get; set; } + public global::Vapi.UpdateTogetherAICredentialDTOProvider? Type2042 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan8? Type2043 { get; set; } + public global::Vapi.UpdateTwilioCredentialDTO? Type2043 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type2044 { get; set; } + public global::Vapi.UpdateTwilioCredentialDTOProvider? Type2044 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type2045 { get; set; } + public global::Vapi.UpdateVonageCredentialDTO? Type2045 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTO? Type2046 { get; set; } + public global::Vapi.UpdateVonageCredentialDTOProvider? Type2046 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOProvider? Type2047 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTO? Type2047 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan9? Type2048 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTOProvider? Type2048 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminator? Type2049 { get; set; } + public global::Vapi.AuthenticationPlan8? Type2049 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type2050 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type2050 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminator? Type2051 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type2051 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type2052 { get; set; } + public global::Vapi.UpdateCustomCredentialDTO? Type2052 { get; set; } /// /// /// - public global::Vapi.UpdateXAiCredentialDTO? Type2053 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOProvider? Type2053 { get; set; } /// /// /// - public global::Vapi.UpdateXAiCredentialDTOProvider? Type2054 { get; set; } + public global::Vapi.AuthenticationPlan9? Type2054 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTO? Type2055 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminator? Type2055 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTOProvider? Type2056 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type2056 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTO? Type2057 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminator? Type2057 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTOProvider? Type2058 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type2058 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTO? Type2059 { get; set; } + public global::Vapi.UpdateXAiCredentialDTO? Type2059 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTOProvider? Type2060 { get; set; } + public global::Vapi.UpdateXAiCredentialDTOProvider? Type2060 { get; set; } /// /// /// - public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO? Type2061 { get; set; } + public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTO? Type2061 { get; set; } /// /// /// - public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTOProvider? Type2062 { get; set; } + public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTOProvider? Type2062 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelMCPCredentialDTO? Type2063 { get; set; } + public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTO? Type2063 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelMCPCredentialDTOProvider? Type2064 { get; set; } + public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTOProvider? Type2064 { get; set; } /// /// /// - public global::Vapi.UpdateInworldCredentialDTO? Type2065 { get; set; } + public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTO? Type2065 { get; set; } /// /// /// - public global::Vapi.UpdateInworldCredentialDTOProvider? Type2066 { get; set; } + public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTOProvider? Type2066 { get; set; } /// /// /// - public global::Vapi.UpdateEmailCredentialDTO? Type2067 { get; set; } + public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO? Type2067 { get; set; } /// /// /// - public global::Vapi.UpdateEmailCredentialDTOProvider? Type2068 { get; set; } + public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTOProvider? Type2068 { get; set; } /// /// /// - public global::Vapi.UpdateSlackWebhookCredentialDTO? Type2069 { get; set; } + public global::Vapi.UpdateGoHighLevelMCPCredentialDTO? Type2069 { get; set; } /// /// /// - public global::Vapi.UpdateSlackWebhookCredentialDTOProvider? Type2070 { get; set; } + public global::Vapi.UpdateGoHighLevelMCPCredentialDTOProvider? Type2070 { get; set; } /// /// /// - public global::Vapi.UpdateSonioxCredentialDTO? Type2071 { get; set; } + public global::Vapi.UpdateInworldCredentialDTO? Type2071 { get; set; } /// /// /// - public global::Vapi.UpdateSonioxCredentialDTOProvider? Type2072 { get; set; } + public global::Vapi.UpdateInworldCredentialDTOProvider? Type2072 { get; set; } /// /// /// - public global::Vapi.CredentialSessionResponse? Type2073 { get; set; } + public global::Vapi.UpdateEmailCredentialDTO? Type2073 { get; set; } /// /// /// - public global::Vapi.CredentialEndUser? Type2074 { get; set; } + public global::Vapi.UpdateEmailCredentialDTOProvider? Type2074 { get; set; } /// /// /// - public global::Vapi.CredentialSessionError? Type2075 { get; set; } + public global::Vapi.UpdateSlackWebhookCredentialDTO? Type2075 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTO? Type2076 { get; set; } + public global::Vapi.UpdateSlackWebhookCredentialDTOProvider? Type2076 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOType? Type2077 { get; set; } + public global::Vapi.UpdateSonioxCredentialDTO? Type2077 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOOperation? Type2078 { get; set; } + public global::Vapi.UpdateSonioxCredentialDTOProvider? Type2078 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOAuthMode? Type2079 { get; set; } + public global::Vapi.CredentialSessionResponse? Type2079 { get; set; } /// /// /// - public global::Vapi.CredentialActionRequest? Type2080 { get; set; } + public global::Vapi.CredentialEndUser? Type2080 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanType? Type2081 { get; set; } + public global::Vapi.CredentialSessionError? Type2081 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanAlgorithm? Type2082 { get; set; } + public global::Vapi.CredentialWebhookDTO? Type2082 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanSignatureEncoding? Type2083 { get; set; } + public global::Vapi.CredentialWebhookDTOType? Type2083 { get; set; } /// /// /// - public global::Vapi.BearerAuthenticationPlanType? Type2084 { get; set; } + public global::Vapi.CredentialWebhookDTOOperation? Type2084 { get; set; } /// /// /// - public global::Vapi.AWSIAMCredentialsAuthenticationPlanType? Type2085 { get; set; } + public global::Vapi.CredentialWebhookDTOAuthMode? Type2085 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationPlanType? Type2086 { get; set; } + public global::Vapi.CredentialActionRequest? Type2086 { get; set; } /// /// /// - public global::Vapi.ToolTemplateSetup? Type2087 { get; set; } + public global::Vapi.HMACAuthenticationPlanType? Type2087 { get; set; } /// /// /// - public global::Vapi.MakeToolProviderDetails? Type2088 { get; set; } + public global::Vapi.HMACAuthenticationPlanAlgorithm? Type2088 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2089 { get; set; } + public global::Vapi.HMACAuthenticationPlanSignatureEncoding? Type2089 { get; set; } /// /// /// - public global::Vapi.MakeToolProviderDetailsType? Type2090 { get; set; } + public global::Vapi.BearerAuthenticationPlanType? Type2090 { get; set; } /// /// /// - public global::Vapi.GhlToolProviderDetails? Type2091 { get; set; } + public global::Vapi.AWSIAMCredentialsAuthenticationPlanType? Type2091 { get; set; } /// /// /// - public global::Vapi.GhlToolProviderDetailsType? Type2092 { get; set; } + public global::Vapi.AWSStsAuthenticationPlanType? Type2092 { get; set; } /// /// /// - public global::Vapi.FunctionToolProviderDetails? Type2093 { get; set; } + public global::Vapi.ToolTemplateSetup? Type2093 { get; set; } /// /// /// - public global::Vapi.FunctionToolProviderDetailsType? Type2094 { get; set; } + public global::Vapi.MakeToolProviderDetails? Type2094 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolProviderDetails? Type2095 { get; set; } + public global::System.Collections.Generic.IList? Type2095 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolProviderDetailsType? Type2096 { get; set; } + public global::Vapi.MakeToolProviderDetailsType? Type2096 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolProviderDetails? Type2097 { get; set; } + public global::Vapi.GhlToolProviderDetails? Type2097 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolProviderDetailsType? Type2098 { get; set; } + public global::Vapi.GhlToolProviderDetailsType? Type2098 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetails? Type2099 { get; set; } + public global::Vapi.FunctionToolProviderDetails? Type2099 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetailsType? Type2100 { get; set; } + public global::Vapi.FunctionToolProviderDetailsType? Type2100 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetails? Type2101 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolProviderDetails? Type2101 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetailsType? Type2102 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolProviderDetailsType? Type2102 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolProviderDetails? Type2103 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolProviderDetails? Type2103 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolProviderDetailsType? Type2104 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolProviderDetailsType? Type2104 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolProviderDetails? Type2105 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetails? Type2105 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolProviderDetailsType? Type2106 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetailsType? Type2106 { get; set; } /// /// /// - public global::Vapi.ToolTemplateMetadata? Type2107 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetails? Type2107 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTO? Type2108 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetailsType? Type2108 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOVisibility? Type2109 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolProviderDetails? Type2109 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOType? Type2110 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolProviderDetailsType? Type2110 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOProvider? Type2111 { get; set; } + public global::Vapi.GoHighLevelContactGetToolProviderDetails? Type2111 { get; set; } /// /// /// - public global::Vapi.Template? Type2112 { get; set; } + public global::Vapi.GoHighLevelContactGetToolProviderDetailsType? Type2112 { get; set; } /// /// /// - public global::Vapi.TemplateVisibility? Type2113 { get; set; } + public global::Vapi.ToolTemplateMetadata? Type2113 { get; set; } /// /// /// - public global::Vapi.TemplateType? Type2114 { get; set; } + public global::Vapi.CreateToolTemplateDTO? Type2114 { get; set; } /// /// /// - public global::Vapi.TemplateProvider? Type2115 { get; set; } + public global::Vapi.CreateToolTemplateDTOVisibility? Type2115 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTO? Type2116 { get; set; } + public global::Vapi.CreateToolTemplateDTOType? Type2116 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOVisibility? Type2117 { get; set; } + public global::Vapi.CreateToolTemplateDTOProvider? Type2117 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOType? Type2118 { get; set; } + public global::Vapi.Template? Type2118 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOProvider? Type2119 { get; set; } + public global::Vapi.TemplateVisibility? Type2119 { get; set; } /// /// /// - public global::Vapi.VoiceLibrary? Type2120 { get; set; } + public global::Vapi.TemplateType? Type2120 { get; set; } /// /// /// - public global::Vapi.VoiceLibraryGender? Type2121 { get; set; } + public global::Vapi.TemplateProvider? Type2121 { get; set; } /// /// /// - public global::Vapi.SyncVoiceLibraryDTO? Type2122 { get; set; } + public global::Vapi.UpdateToolTemplateDTO? Type2122 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2123 { get; set; } + public global::Vapi.UpdateToolTemplateDTOVisibility? Type2123 { get; set; } /// /// /// - public global::Vapi.SyncVoiceLibraryDTOProvider? Type2124 { get; set; } + public global::Vapi.UpdateToolTemplateDTOType? Type2124 { get; set; } /// /// /// - public global::Vapi.CreateSesameVoiceDTO? Type2125 { get; set; } + public global::Vapi.UpdateToolTemplateDTOProvider? Type2125 { get; set; } /// /// /// - public global::Vapi.CartesiaPronunciationDictItem? Type2126 { get; set; } + public global::Vapi.VoiceLibrary? Type2126 { get; set; } /// /// /// - public global::Vapi.CartesiaPronunciationDictionary? Type2127 { get; set; } + public global::Vapi.VoiceLibraryGender? Type2127 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2128 { get; set; } + public global::Vapi.SyncVoiceLibraryDTO? Type2128 { get; set; } /// /// /// - public global::Vapi.ElevenLabsPronunciationDictionary? Type2129 { get; set; } + public global::System.Collections.Generic.IList? Type2129 { get; set; } /// /// /// - public global::Vapi.ElevenLabsPronunciationDictionaryPermissionOnResource? Type2130 { get; set; } + public global::Vapi.SyncVoiceLibraryDTOProvider? Type2130 { get; set; } /// /// /// - public global::Vapi.ProviderResource? Type2131 { get; set; } + public global::Vapi.CreateSesameVoiceDTO? Type2131 { get; set; } /// /// /// - public global::Vapi.ProviderResourceProvider? Type2132 { get; set; } + public global::Vapi.CartesiaPronunciationDictItem? Type2132 { get; set; } /// /// /// - public global::Vapi.ProviderResourceResourceName? Type2133 { get; set; } + public global::Vapi.CartesiaPronunciationDictionary? Type2133 { get; set; } /// /// /// - public global::Vapi.ProviderResourcePaginatedResponse? Type2134 { get; set; } + public global::System.Collections.Generic.IList? Type2134 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2135 { get; set; } + public global::Vapi.ElevenLabsPronunciationDictionary? Type2135 { get; set; } /// /// /// - public global::Vapi.VoiceLibraryVoiceResponse? Type2136 { get; set; } + public global::Vapi.ElevenLabsPronunciationDictionaryPermissionOnResource? Type2136 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2137 { get; set; } + public global::Vapi.ProviderResource? Type2137 { get; set; } /// /// /// - public global::Vapi.AddVoiceToProviderDTO? Type2138 { get; set; } + public global::Vapi.ProviderResourceProvider? Type2138 { get; set; } /// /// /// - public global::Vapi.CloneVoiceDTO? Type2139 { get; set; } + public global::Vapi.ProviderResourceResourceName? Type2139 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2140 { get; set; } + public global::Vapi.ProviderResourcePaginatedResponse? Type2140 { get; set; } /// /// /// - public global::Vapi.VariableValueGroupBy? Type2141 { get; set; } + public global::System.Collections.Generic.IList? Type2141 { get; set; } /// /// /// - public global::Vapi.TimeRange? Type2142 { get; set; } + public global::Vapi.VoiceLibraryVoiceResponse? Type2142 { get; set; } /// /// /// - public global::Vapi.TimeRangeStep? Type2143 { get; set; } + public global::Vapi.OneOf? Type2143 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperation? Type2144 { get; set; } + public global::Vapi.AddVoiceToProviderDTO? Type2144 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperationOperation? Type2145 { get; set; } + public global::Vapi.CloneVoiceDTO? Type2145 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperationColumn? Type2146 { get; set; } + public global::System.Collections.Generic.IList? Type2146 { get; set; } /// /// /// - public global::Vapi.AnalyticsQuery? Type2147 { get; set; } + public global::Vapi.VariableValueGroupBy? Type2147 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryTable? Type2148 { get; set; } + public global::Vapi.TimeRange? Type2148 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2149 { get; set; } + public global::Vapi.TimeRangeStep? Type2149 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryGroupByItem? Type2150 { get; set; } + public global::Vapi.AnalyticsOperation? Type2150 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2151 { get; set; } + public global::Vapi.AnalyticsOperationOperation? Type2151 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2152 { get; set; } + public global::Vapi.AnalyticsOperationColumn? Type2152 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryDTO? Type2153 { get; set; } + public global::Vapi.AnalyticsQuery? Type2153 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2154 { get; set; } + public global::Vapi.AnalyticsQueryTable? Type2154 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryResult? Type2155 { get; set; } + public global::System.Collections.Generic.IList? Type2155 { get; set; } /// /// /// - public global::Vapi.ClientMessageWorkflowNodeStarted? Type2156 { get; set; } + public global::Vapi.AnalyticsQueryGroupByItem? Type2156 { get; set; } /// /// /// - public global::Vapi.ClientMessageWorkflowNodeStartedType? Type2157 { get; set; } + public global::System.Collections.Generic.IList? Type2157 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantStarted? Type2158 { get; set; } + public global::System.Collections.Generic.IList? Type2158 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantStartedType? Type2159 { get; set; } + public global::Vapi.AnalyticsQueryDTO? Type2159 { get; set; } /// /// /// - public global::Vapi.ClientMessageConversationUpdate? Type2160 { get; set; } + public global::System.Collections.Generic.IList? Type2160 { get; set; } /// /// /// - public global::Vapi.ClientMessageConversationUpdateType? Type2161 { get; set; } + public global::Vapi.AnalyticsQueryResult? Type2161 { get; set; } /// /// /// - public global::Vapi.ClientMessageHang? Type2162 { get; set; } + public global::Vapi.ClientMessageWorkflowNodeStarted? Type2162 { get; set; } /// /// /// - public global::Vapi.ClientMessageHangType? Type2163 { get; set; } + public global::Vapi.ClientMessageWorkflowNodeStartedType? Type2163 { get; set; } /// /// /// - public global::Vapi.ClientMessageMetadata? Type2164 { get; set; } + public global::Vapi.ClientMessageAssistantStarted? Type2164 { get; set; } /// /// /// - public global::Vapi.ClientMessageMetadataType? Type2165 { get; set; } + public global::Vapi.ClientMessageAssistantStartedType? Type2165 { get; set; } /// /// /// - public global::Vapi.ClientMessageModelOutput? Type2166 { get; set; } + public global::Vapi.ClientMessageConversationUpdate? Type2166 { get; set; } /// /// /// - public global::Vapi.ClientMessageModelOutputType? Type2167 { get; set; } + public global::Vapi.ClientMessageConversationUpdateType? Type2167 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdate? Type2168 { get; set; } + public global::Vapi.ClientMessageHang? Type2168 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateType? Type2169 { get; set; } + public global::Vapi.ClientMessageHangType? Type2169 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateStatus? Type2170 { get; set; } + public global::Vapi.ClientMessageMetadata? Type2170 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateRole? Type2171 { get; set; } + public global::Vapi.ClientMessageMetadataType? Type2171 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscript? Type2172 { get; set; } + public global::Vapi.ClientMessageModelOutput? Type2172 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptType? Type2173 { get; set; } + public global::Vapi.ClientMessageModelOutputType? Type2173 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptRole? Type2174 { get; set; } + public global::Vapi.ClientMessageSpeechUpdate? Type2174 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptTranscriptType? Type2175 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateType? Type2175 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCalls? Type2176 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateStatus? Type2176 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsType? Type2177 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateRole? Type2177 { get; set; } /// /// /// - public global::Vapi.FunctionToolWithToolCall? Type2178 { get; set; } + public global::Vapi.ClientMessageTranscript? Type2178 { get; set; } /// /// /// - public global::Vapi.GhlToolWithToolCall? Type2179 { get; set; } + public global::Vapi.ClientMessageTranscriptType? Type2179 { get; set; } /// /// /// - public global::Vapi.MakeToolWithToolCall? Type2180 { get; set; } + public global::Vapi.ClientMessageTranscriptRole? Type2180 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCall? Type2181 { get; set; } + public global::Vapi.ClientMessageTranscriptTranscriptType? Type2181 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCall? Type2182 { get; set; } + public global::Vapi.ClientMessageToolCalls? Type2182 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCall? Type2183 { get; set; } + public global::Vapi.ClientMessageToolCallsType? Type2183 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolWithToolCall? Type2184 { get; set; } + public global::Vapi.FunctionToolWithToolCall? Type2184 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsResult? Type2185 { get; set; } + public global::Vapi.GhlToolWithToolCall? Type2185 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsResultType? Type2186 { get; set; } + public global::Vapi.MakeToolWithToolCall? Type2186 { get; set; } /// /// /// - public global::Vapi.ClientMessageTransferUpdate? Type2187 { get; set; } + public global::Vapi.BashToolWithToolCall? Type2187 { get; set; } /// /// /// - public global::Vapi.ClientMessageTransferUpdateType? Type2188 { get; set; } + public global::Vapi.ComputerToolWithToolCall? Type2188 { get; set; } /// /// /// - public global::Vapi.ClientMessageUserInterrupted? Type2189 { get; set; } + public global::Vapi.TextEditorToolWithToolCall? Type2189 { get; set; } /// /// /// - public global::Vapi.ClientMessageUserInterruptedType? Type2190 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolWithToolCall? Type2190 { get; set; } /// /// /// - public global::Vapi.ClientMessageLanguageChangeDetected? Type2191 { get; set; } + public global::Vapi.ClientMessageToolCallsResult? Type2191 { get; set; } /// /// /// - public global::Vapi.ClientMessageLanguageChangeDetectedType? Type2192 { get; set; } + public global::Vapi.ClientMessageToolCallsResultType? Type2192 { get; set; } /// /// /// - public global::Vapi.ClientMessageVoiceInput? Type2193 { get; set; } + public global::Vapi.ClientMessageTransferUpdate? Type2193 { get; set; } /// /// /// - public global::Vapi.ClientMessageVoiceInputType? Type2194 { get; set; } + public global::Vapi.ClientMessageTransferUpdateType? Type2194 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeech? Type2195 { get; set; } + public global::Vapi.ClientMessageUserInterrupted? Type2195 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechType? Type2196 { get; set; } + public global::Vapi.ClientMessageUserInterruptedType? Type2196 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechSource? Type2197 { get; set; } + public global::Vapi.ClientMessageLanguageChangeDetected? Type2197 { get; set; } /// /// /// - public global::Vapi.Timing? Type2198 { get; set; } + public global::Vapi.ClientMessageLanguageChangeDetectedType? Type2198 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminator? Type2199 { get; set; } + public global::Vapi.ClientMessageVoiceInput? Type2199 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminatorType? Type2200 { get; set; } + public global::Vapi.ClientMessageVoiceInputType? Type2200 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatCreated? Type2201 { get; set; } + public global::Vapi.ClientMessageAssistantSpeech? Type2201 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatCreatedType? Type2202 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechType? Type2202 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatDeleted? Type2203 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechSource? Type2203 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatDeletedType? Type2204 { get; set; } + public global::Vapi.Timing? Type2204 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionCreated? Type2205 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminator? Type2205 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionCreatedType? Type2206 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminatorType? Type2206 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionUpdated? Type2207 { get; set; } + public global::Vapi.ClientMessageChatCreated? Type2207 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionUpdatedType? Type2208 { get; set; } + public global::Vapi.ClientMessageChatCreatedType? Type2208 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionDeleted? Type2209 { get; set; } + public global::Vapi.ClientMessageChatDeleted? Type2209 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionDeletedType? Type2210 { get; set; } + public global::Vapi.ClientMessageChatDeletedType? Type2210 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleted? Type2211 { get; set; } + public global::Vapi.ClientMessageSessionCreated? Type2211 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeletedType? Type2212 { get; set; } + public global::Vapi.ClientMessageSessionCreatedType? Type2212 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleteFailed? Type2213 { get; set; } + public global::Vapi.ClientMessageSessionUpdated? Type2213 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleteFailedType? Type2214 { get; set; } + public global::Vapi.ClientMessageSessionUpdatedType? Type2214 { get; set; } /// /// /// - public global::Vapi.ClientMessage? Type2215 { get; set; } + public global::Vapi.ClientMessageSessionDeleted? Type2215 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantRequest? Type2216 { get; set; } + public global::Vapi.ClientMessageSessionDeletedType? Type2216 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantRequestType? Type2217 { get; set; } + public global::Vapi.ClientMessageCallDeleted? Type2217 { get; set; } /// /// /// - public global::Vapi.ServerMessageConversationUpdate? Type2218 { get; set; } + public global::Vapi.ClientMessageCallDeletedType? Type2218 { get; set; } /// /// /// - public global::Vapi.ServerMessageConversationUpdateType? Type2219 { get; set; } + public global::Vapi.ClientMessageCallDeleteFailed? Type2219 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReport? Type2220 { get; set; } + public global::Vapi.ClientMessageCallDeleteFailedType? Type2220 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReportType? Type2221 { get; set; } + public global::Vapi.ClientMessage? Type2221 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReportEndedReason? Type2222 { get; set; } + public global::Vapi.ServerMessageAssistantRequest? Type2222 { get; set; } /// /// /// - public global::Vapi.ServerMessageHandoffDestinationRequest? Type2223 { get; set; } + public global::Vapi.ServerMessageAssistantRequestType? Type2223 { get; set; } /// /// /// - public global::Vapi.ServerMessageHandoffDestinationRequestType? Type2224 { get; set; } + public global::Vapi.ServerMessageConversationUpdate? Type2224 { get; set; } /// /// /// - public global::Vapi.ServerMessageHang? Type2225 { get; set; } + public global::Vapi.ServerMessageConversationUpdateType? Type2225 { get; set; } /// /// /// - public global::Vapi.ServerMessageHangType? Type2226 { get; set; } + public global::Vapi.ServerMessageEndOfCallReport? Type2226 { get; set; } /// /// /// - public global::Vapi.ServerMessageKnowledgeBaseRequest? Type2227 { get; set; } + public global::Vapi.ServerMessageEndOfCallReportType? Type2227 { get; set; } /// /// /// - public global::Vapi.ServerMessageKnowledgeBaseRequestType? Type2228 { get; set; } + public global::Vapi.ServerMessageEndOfCallReportEndedReason? Type2228 { get; set; } /// /// /// - public global::Vapi.ServerMessageModelOutput? Type2229 { get; set; } + public global::Vapi.ServerMessageHandoffDestinationRequest? Type2229 { get; set; } /// /// /// - public global::Vapi.ServerMessageModelOutputType? Type2230 { get; set; } + public global::Vapi.ServerMessageHandoffDestinationRequestType? Type2230 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControl? Type2231 { get; set; } + public global::Vapi.ServerMessageHang? Type2231 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControlType? Type2232 { get; set; } + public global::Vapi.ServerMessageHangType? Type2232 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControlRequest? Type2233 { get; set; } + public global::Vapi.ServerMessageKnowledgeBaseRequest? Type2233 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdate? Type2234 { get; set; } + public global::Vapi.ServerMessageKnowledgeBaseRequestType? Type2234 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateType? Type2235 { get; set; } + public global::Vapi.ServerMessageModelOutput? Type2235 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateStatus? Type2236 { get; set; } + public global::Vapi.ServerMessageModelOutputType? Type2236 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateRole? Type2237 { get; set; } + public global::Vapi.ServerMessagePhoneCallControl? Type2237 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdate? Type2238 { get; set; } + public global::Vapi.ServerMessagePhoneCallControlType? Type2238 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateType? Type2239 { get; set; } + public global::Vapi.ServerMessagePhoneCallControlRequest? Type2239 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateStatus? Type2240 { get; set; } + public global::Vapi.ServerMessageSpeechUpdate? Type2240 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateEndedReason? Type2241 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateType? Type2241 { get; set; } /// /// /// - public global::Vapi.ServerMessageToolCalls? Type2242 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateStatus? Type2242 { get; set; } /// /// /// - public global::Vapi.ServerMessageToolCallsType? Type2243 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateRole? Type2243 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferDestinationRequest? Type2244 { get; set; } + public global::Vapi.ServerMessageStatusUpdate? Type2244 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferDestinationRequestType? Type2245 { get; set; } + public global::Vapi.ServerMessageStatusUpdateType? Type2245 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferUpdate? Type2246 { get; set; } + public global::Vapi.ServerMessageStatusUpdateStatus? Type2246 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferUpdateType? Type2247 { get; set; } + public global::Vapi.ServerMessageStatusUpdateEndedReason? Type2247 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscript? Type2248 { get; set; } + public global::Vapi.ServerMessageToolCalls? Type2248 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptType? Type2249 { get; set; } + public global::Vapi.ServerMessageToolCallsType? Type2249 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptRole? Type2250 { get; set; } + public global::Vapi.ServerMessageTransferDestinationRequest? Type2250 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptTranscriptType? Type2251 { get; set; } + public global::Vapi.ServerMessageTransferDestinationRequestType? Type2251 { get; set; } /// /// /// - public global::Vapi.ServerMessageUserInterrupted? Type2252 { get; set; } + public global::Vapi.ServerMessageTransferUpdate? Type2252 { get; set; } /// /// /// - public global::Vapi.ServerMessageUserInterruptedType? Type2253 { get; set; } + public global::Vapi.ServerMessageTransferUpdateType? Type2253 { get; set; } /// /// /// - public global::Vapi.ServerMessageLanguageChangeDetected? Type2254 { get; set; } + public global::Vapi.ServerMessageTranscript? Type2254 { get; set; } /// /// /// - public global::Vapi.ServerMessageLanguageChangeDetectedType? Type2255 { get; set; } + public global::Vapi.ServerMessageTranscriptType? Type2255 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceInput? Type2256 { get; set; } + public global::Vapi.ServerMessageTranscriptRole? Type2256 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceInputType? Type2257 { get; set; } + public global::Vapi.ServerMessageTranscriptTranscriptType? Type2257 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeech? Type2258 { get; set; } + public global::Vapi.ServerMessageUserInterrupted? Type2258 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechType? Type2259 { get; set; } + public global::Vapi.ServerMessageUserInterruptedType? Type2259 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechSource? Type2260 { get; set; } + public global::Vapi.ServerMessageLanguageChangeDetected? Type2260 { get; set; } /// /// /// - public global::Vapi.Timing2? Type2261 { get; set; } + public global::Vapi.ServerMessageLanguageChangeDetectedType? Type2261 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminator? Type2262 { get; set; } + public global::Vapi.ServerMessageVoiceInput? Type2262 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminatorType? Type2263 { get; set; } + public global::Vapi.ServerMessageVoiceInputType? Type2263 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceRequest? Type2264 { get; set; } + public global::Vapi.ServerMessageAssistantSpeech? Type2264 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceRequestType? Type2265 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechType? Type2265 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallEndpointingRequest? Type2266 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechSource? Type2266 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallEndpointingRequestType? Type2267 { get; set; } + public global::Vapi.Timing2? Type2267 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatCreated? Type2268 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminator? Type2268 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatCreatedType? Type2269 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminatorType? Type2269 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatDeleted? Type2270 { get; set; } + public global::Vapi.ServerMessageVoiceRequest? Type2270 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatDeletedType? Type2271 { get; set; } + public global::Vapi.ServerMessageVoiceRequestType? Type2271 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionCreated? Type2272 { get; set; } + public global::Vapi.ServerMessageCallEndpointingRequest? Type2272 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionCreatedType? Type2273 { get; set; } + public global::Vapi.ServerMessageCallEndpointingRequestType? Type2273 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionUpdated? Type2274 { get; set; } + public global::Vapi.ServerMessageChatCreated? Type2274 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionUpdatedType? Type2275 { get; set; } + public global::Vapi.ServerMessageChatCreatedType? Type2275 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionDeleted? Type2276 { get; set; } + public global::Vapi.ServerMessageChatDeleted? Type2276 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionDeletedType? Type2277 { get; set; } + public global::Vapi.ServerMessageChatDeletedType? Type2277 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleted? Type2278 { get; set; } + public global::Vapi.ServerMessageSessionCreated? Type2278 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeletedType? Type2279 { get; set; } + public global::Vapi.ServerMessageSessionCreatedType? Type2279 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleteFailed? Type2280 { get; set; } + public global::Vapi.ServerMessageSessionUpdated? Type2280 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleteFailedType? Type2281 { get; set; } + public global::Vapi.ServerMessageSessionUpdatedType? Type2281 { get; set; } /// /// /// - public global::Vapi.CampaignContact? Type2282 { get; set; } + public global::Vapi.ServerMessageSessionDeleted? Type2282 { get; set; } /// /// /// - public global::Vapi.ServerMessageCampaignPredial? Type2283 { get; set; } + public global::Vapi.ServerMessageSessionDeletedType? Type2283 { get; set; } /// /// /// - public global::Vapi.ServerMessageCampaignPredialType? Type2284 { get; set; } + public global::Vapi.ServerMessageCallDeleted? Type2284 { get; set; } /// /// /// - public global::Vapi.ServerMessage? Type2285 { get; set; } + public global::Vapi.ServerMessageCallDeletedType? Type2285 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseAssistantRequest? Type2286 { get; set; } + public global::Vapi.ServerMessageCallDeleteFailed? Type2286 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseHandoffDestinationRequest? Type2287 { get; set; } + public global::Vapi.ServerMessageCallDeleteFailedType? Type2287 { get; set; } /// /// /// - public global::Vapi.KnowledgeBaseResponseDocument? Type2288 { get; set; } + public global::Vapi.CampaignContact? Type2288 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseKnowledgeBaseRequest? Type2289 { get; set; } + public global::Vapi.ServerMessageCampaignPredial? Type2289 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2290 { get; set; } + public global::Vapi.ServerMessageCampaignPredialType? Type2290 { get; set; } /// /// /// - public global::Vapi.ToolCallResult? Type2291 { get; set; } + public global::Vapi.ServerMessage? Type2291 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2292 { get; set; } + public global::Vapi.ServerMessageResponseAssistantRequest? Type2292 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseToolCalls? Type2293 { get; set; } + public global::Vapi.ServerMessageResponseHandoffDestinationRequest? Type2293 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2294 { get; set; } + public global::Vapi.KnowledgeBaseResponseDocument? Type2294 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseTransferDestinationRequest? Type2295 { get; set; } + public global::Vapi.ServerMessageResponseKnowledgeBaseRequest? Type2295 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseVoiceRequest? Type2296 { get; set; } + public global::System.Collections.Generic.IList? Type2296 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseCallEndpointingRequest? Type2297 { get; set; } + public global::Vapi.ToolCallResult? Type2297 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseCampaignPredial? Type2298 { get; set; } + public global::Vapi.OneOf? Type2298 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponse? Type2299 { get; set; } + public global::Vapi.ServerMessageResponseToolCalls? Type2299 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageAddMessage? Type2300 { get; set; } + public global::System.Collections.Generic.IList? Type2300 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageAddMessageType? Type2301 { get; set; } + public global::Vapi.ServerMessageResponseTransferDestinationRequest? Type2301 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControl? Type2302 { get; set; } + public global::Vapi.ServerMessageResponseVoiceRequest? Type2302 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControlType? Type2303 { get; set; } + public global::Vapi.ServerMessageResponseCallEndpointingRequest? Type2303 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControlControl? Type2304 { get; set; } + public global::Vapi.ServerMessageResponseCampaignPredial? Type2304 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSay? Type2305 { get; set; } + public global::Vapi.ServerMessageResponse? Type2305 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSayType? Type2306 { get; set; } + public global::Vapi.ClientInboundMessageAddMessage? Type2306 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageEndCall? Type2307 { get; set; } + public global::Vapi.ClientInboundMessageAddMessageType? Type2307 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageEndCallType? Type2308 { get; set; } + public global::Vapi.ClientInboundMessageControl? Type2308 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageTransfer? Type2309 { get; set; } + public global::Vapi.ClientInboundMessageControlType? Type2309 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageTransferType? Type2310 { get; set; } + public global::Vapi.ClientInboundMessageControlControl? Type2310 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSendTransportMessage? Type2311 { get; set; } + public global::Vapi.ClientInboundMessageSay? Type2311 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSendTransportMessageType? Type2312 { get; set; } + public global::Vapi.ClientInboundMessageSayType? Type2312 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2313 { get; set; } + public global::Vapi.ClientInboundMessageEndCall? Type2313 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessage? Type2314 { get; set; } + public global::Vapi.ClientInboundMessageEndCallType? Type2314 { get; set; } /// /// /// - public global::Vapi.TwilioTransportMessage? Type2315 { get; set; } + public global::Vapi.ClientInboundMessageTransfer? Type2315 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessage? Type2316 { get; set; } + public global::Vapi.ClientInboundMessageTransferType? Type2316 { get; set; } /// /// /// - public global::Vapi.KnowledgeBaseCostType? Type2317 { get; set; } + public global::Vapi.ClientInboundMessageSendTransportMessage? Type2317 { get; set; } /// /// /// - public global::Vapi.SessionCostType? Type2318 { get; set; } + public global::Vapi.ClientInboundMessageSendTransportMessageType? Type2318 { get; set; } /// /// /// - public global::Vapi.FunctionToolWithToolCallType? Type2319 { get; set; } + public global::Vapi.OneOf? Type2319 { get; set; } /// /// /// - public global::Vapi.GhlToolWithToolCallType? Type2320 { get; set; } + public global::Vapi.VapiSipTransportMessage? Type2320 { get; set; } /// /// /// - public global::Vapi.MakeToolWithToolCallType? Type2321 { get; set; } + public global::Vapi.TwilioTransportMessage? Type2321 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallType? Type2322 { get; set; } + public global::Vapi.ClientInboundMessage? Type2322 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallSubType? Type2323 { get; set; } + public global::Vapi.KnowledgeBaseCostType? Type2323 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallName? Type2324 { get; set; } + public global::Vapi.SessionCostType? Type2324 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallType? Type2325 { get; set; } + public global::Vapi.FunctionToolWithToolCallType? Type2325 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallSubType? Type2326 { get; set; } + public global::Vapi.GhlToolWithToolCallType? Type2326 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallName? Type2327 { get; set; } + public global::Vapi.MakeToolWithToolCallType? Type2327 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallType? Type2328 { get; set; } + public global::Vapi.BashToolWithToolCallType? Type2328 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallSubType? Type2329 { get; set; } + public global::Vapi.BashToolWithToolCallSubType? Type2329 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallName? Type2330 { get; set; } + public global::Vapi.BashToolWithToolCallName? Type2330 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolWithToolCallType? Type2331 { get; set; } + public global::Vapi.ComputerToolWithToolCallType? Type2331 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolWithToolCall? Type2332 { get; set; } + public global::Vapi.ComputerToolWithToolCallSubType? Type2332 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolWithToolCallType? Type2333 { get; set; } + public global::Vapi.ComputerToolWithToolCallName? Type2333 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCall? Type2334 { get; set; } + public global::Vapi.TextEditorToolWithToolCallType? Type2334 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCallType? Type2335 { get; set; } + public global::Vapi.TextEditorToolWithToolCallSubType? Type2335 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCall? Type2336 { get; set; } + public global::Vapi.TextEditorToolWithToolCallName? Type2336 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCallType? Type2337 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolWithToolCallType? Type2337 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolWithToolCall? Type2338 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolWithToolCall? Type2338 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolWithToolCallType? Type2339 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolWithToolCallType? Type2339 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolWithToolCall? Type2340 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCall? Type2340 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolWithToolCallType? Type2341 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCallType? Type2341 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessageTransport? Type2342 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCall? Type2342 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessageSipVerb? Type2343 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCallType? Type2343 { get; set; } /// /// /// - public global::Vapi.TwilioTransportMessageTransport? Type2344 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolWithToolCall? Type2344 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequest? Type2345 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolWithToolCallType? Type2345 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequestDiscriminator? Type2346 { get; set; } + public global::Vapi.GoHighLevelContactGetToolWithToolCall? Type2346 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequestDiscriminatorProvider? Type2347 { get; set; } + public global::Vapi.GoHighLevelContactGetToolWithToolCallType? Type2347 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequest? Type2348 { get; set; } + public global::Vapi.VapiSipTransportMessageTransport? Type2348 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminator? Type2349 { get; set; } + public global::Vapi.VapiSipTransportMessageSipVerb? Type2349 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminatorProvider? Type2350 { get; set; } + public global::Vapi.TwilioTransportMessageTransport? Type2350 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequest? Type2351 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequest? Type2351 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequestDiscriminator? Type2352 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequestDiscriminator? Type2352 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequestDiscriminatorType? Type2353 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequestDiscriminatorProvider? Type2353 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequest? Type2354 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequest? Type2354 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequestDiscriminator? Type2355 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminator? Type2355 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequestDiscriminatorType? Type2356 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminatorProvider? Type2356 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequest? Type2357 { get; set; } + public global::Vapi.ToolControllerCreateRequest? Type2357 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequestDiscriminator? Type2358 { get; set; } + public global::Vapi.ToolControllerCreateRequestDiscriminator? Type2358 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequestDiscriminatorType? Type2359 { get; set; } + public global::Vapi.ToolControllerCreateRequestDiscriminatorType? Type2359 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequest? Type2360 { get; set; } + public global::Vapi.ToolControllerUpdateRequest? Type2360 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequestDiscriminator? Type2361 { get; set; } + public global::Vapi.ToolControllerUpdateRequestDiscriminator? Type2361 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequestDiscriminatorType? Type2362 { get; set; } + public global::Vapi.ToolControllerUpdateRequestDiscriminatorType? Type2362 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequest? Type2363 { get; set; } + public global::Vapi.InsightControllerCreateRequest? Type2363 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequestDiscriminator? Type2364 { get; set; } + public global::Vapi.InsightControllerCreateRequestDiscriminator? Type2364 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequestDiscriminatorType? Type2365 { get; set; } + public global::Vapi.InsightControllerCreateRequestDiscriminatorType? Type2365 { get; set; } /// /// /// - public global::Vapi.ChatControllerListChatsSortOrder? Type2366 { get; set; } + public global::Vapi.InsightControllerUpdateRequest? Type2366 { get; set; } /// /// /// - public global::Vapi.ChatControllerListChatsSortBy? Type2367 { get; set; } + public global::Vapi.InsightControllerUpdateRequestDiscriminator? Type2367 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllStatus? Type2368 { get; set; } + public global::Vapi.InsightControllerUpdateRequestDiscriminatorType? Type2368 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllSortOrder? Type2369 { get; set; } + public global::Vapi.InsightControllerPreviewRequest? Type2369 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllSortBy? Type2370 { get; set; } + public global::Vapi.InsightControllerPreviewRequestDiscriminator? Type2370 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllV2Status? Type2371 { get; set; } + public global::Vapi.InsightControllerPreviewRequestDiscriminatorType? Type2371 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllV2SortOrder? Type2372 { get; set; } + public global::Vapi.ChatControllerListChatsSortOrder? Type2372 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllV2SortBy? Type2373 { get; set; } + public global::Vapi.ChatControllerListChatsSortBy? Type2373 { get; set; } /// /// /// - public global::Vapi.SessionControllerFindAllPaginatedSortOrder? Type2374 { get; set; } + public global::Vapi.CampaignControllerFindAllStatus? Type2374 { get; set; } /// /// /// - public global::Vapi.SessionControllerFindAllPaginatedSortBy? Type2375 { get; set; } + public global::Vapi.CampaignControllerFindAllSortOrder? Type2375 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllPaginatedSortOrder? Type2376 { get; set; } + public global::Vapi.CampaignControllerFindAllSortBy? Type2376 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy? Type2377 { get; set; } + public global::Vapi.CampaignControllerFindAllV2Status? Type2377 { get; set; } /// /// /// - public global::Vapi.StructuredOutputControllerFindAllSortOrder? Type2378 { get; set; } + public global::Vapi.CampaignControllerFindAllV2SortOrder? Type2378 { get; set; } /// /// /// - public global::Vapi.StructuredOutputControllerFindAllSortBy? Type2379 { get; set; } + public global::Vapi.CampaignControllerFindAllV2SortBy? Type2379 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindAllSortOrder? Type2380 { get; set; } + public global::Vapi.SessionControllerFindAllPaginatedSortOrder? Type2380 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindAllSortBy? Type2381 { get; set; } + public global::Vapi.SessionControllerFindAllPaginatedSortBy? Type2381 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetPaginatedSortOrder? Type2382 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllPaginatedSortOrder? Type2382 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetPaginatedSortBy? Type2383 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy? Type2383 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetRunsPaginatedSortOrder? Type2384 { get; set; } + public global::Vapi.StructuredOutputControllerFindAllSortOrder? Type2384 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetRunsPaginatedSortBy? Type2385 { get; set; } + public global::Vapi.StructuredOutputControllerFindAllSortBy? Type2385 { get; set; } /// /// /// - public global::Vapi.ScorecardControllerGetPaginatedSortOrder? Type2386 { get; set; } + public global::Vapi.InsightControllerFindAllSortOrder? Type2386 { get; set; } /// /// /// - public global::Vapi.ScorecardControllerGetPaginatedSortBy? Type2387 { get; set; } + public global::Vapi.InsightControllerFindAllSortBy? Type2387 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerCreateProviderResourceProvider? Type2388 { get; set; } + public global::Vapi.EvalControllerGetPaginatedSortOrder? Type2388 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerCreateProviderResourceResourceName? Type2389 { get; set; } + public global::Vapi.EvalControllerGetPaginatedSortBy? Type2389 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedProvider? Type2390 { get; set; } + public global::Vapi.EvalControllerGetRunsPaginatedSortOrder? Type2390 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedResourceName? Type2391 { get; set; } + public global::Vapi.EvalControllerGetRunsPaginatedSortBy? Type2391 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortOrder? Type2392 { get; set; } + public global::Vapi.ScorecardControllerGetPaginatedSortOrder? Type2392 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortBy? Type2393 { get; set; } + public global::Vapi.ScorecardControllerGetPaginatedSortBy? Type2393 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourceProvider? Type2394 { get; set; } + public global::Vapi.ProviderResourceControllerCreateProviderResourceProvider? Type2394 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourceResourceName? Type2395 { get; set; } + public global::Vapi.ProviderResourceControllerCreateProviderResourceResourceName? Type2395 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerDeleteProviderResourceProvider? Type2396 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedProvider? Type2396 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerDeleteProviderResourceResourceName? Type2397 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedResourceName? Type2397 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider? Type2398 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortOrder? Type2398 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName? Type2399 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortBy? Type2399 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2400 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourceProvider? Type2400 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2401 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourceResourceName? Type2401 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2402 { get; set; } + public global::Vapi.ProviderResourceControllerDeleteProviderResourceProvider? Type2402 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2403 { get; set; } + public global::Vapi.ProviderResourceControllerDeleteProviderResourceResourceName? Type2403 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponse? Type2404 { get; set; } + public global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider? Type2404 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponseDiscriminator? Type2405 { get; set; } + public global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName? Type2405 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider? Type2406 { get; set; } + public global::System.Collections.Generic.IList? Type2406 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2407 { get; set; } + public global::Vapi.OneOf? Type2407 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItem? Type2408 { get; set; } + public global::Vapi.OneOf? Type2408 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminator? Type2409 { get; set; } + public global::Vapi.OneOf? Type2409 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminatorProvider? Type2410 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponse? Type2410 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponse? Type2411 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponseDiscriminator? Type2411 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminator? Type2412 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider? Type2412 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminatorProvider? Type2413 { get; set; } + public global::System.Collections.Generic.IList? Type2413 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponse? Type2414 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItem? Type2414 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminator? Type2415 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminator? Type2415 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminatorProvider? Type2416 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminatorProvider? Type2416 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponse? Type2417 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponse? Type2417 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminator? Type2418 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminator? Type2418 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminatorProvider? Type2419 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminatorProvider? Type2419 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponse? Type2420 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponse? Type2420 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponseDiscriminator? Type2421 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminator? Type2421 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponseDiscriminatorType? Type2422 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminatorProvider? Type2422 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2423 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponse? Type2423 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItem? Type2424 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminator? Type2424 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItemDiscriminator? Type2425 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminatorProvider? Type2425 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItemDiscriminatorType? Type2426 { get; set; } + public global::Vapi.ToolControllerCreateResponse? Type2426 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponse? Type2427 { get; set; } + public global::Vapi.ToolControllerCreateResponseDiscriminator? Type2427 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponseDiscriminator? Type2428 { get; set; } + public global::Vapi.ToolControllerCreateResponseDiscriminatorType? Type2428 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponseDiscriminatorType? Type2429 { get; set; } + public global::System.Collections.Generic.IList? Type2429 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponse? Type2430 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItem? Type2430 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponseDiscriminator? Type2431 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItemDiscriminator? Type2431 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponseDiscriminatorType? Type2432 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItemDiscriminatorType? Type2432 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponse? Type2433 { get; set; } + public global::Vapi.ToolControllerFindOneResponse? Type2433 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponseDiscriminator? Type2434 { get; set; } + public global::Vapi.ToolControllerFindOneResponseDiscriminator? Type2434 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponseDiscriminatorType? Type2435 { get; set; } + public global::Vapi.ToolControllerFindOneResponseDiscriminatorType? Type2435 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2436 { get; set; } + public global::Vapi.ToolControllerUpdateResponse? Type2436 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponse? Type2437 { get; set; } + public global::Vapi.ToolControllerUpdateResponseDiscriminator? Type2437 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponseDiscriminator? Type2438 { get; set; } + public global::Vapi.ToolControllerUpdateResponseDiscriminatorType? Type2438 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponseDiscriminatorType? Type2439 { get; set; } + public global::Vapi.ToolControllerRemoveResponse? Type2439 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponse? Type2440 { get; set; } + public global::Vapi.ToolControllerRemoveResponseDiscriminator? Type2440 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponseDiscriminator? Type2441 { get; set; } + public global::Vapi.ToolControllerRemoveResponseDiscriminatorType? Type2441 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponseDiscriminatorType? Type2442 { get; set; } + public global::System.Collections.Generic.IList? Type2442 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponse? Type2443 { get; set; } + public global::Vapi.InsightControllerCreateResponse? Type2443 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponseDiscriminator? Type2444 { get; set; } + public global::Vapi.InsightControllerCreateResponseDiscriminator? Type2444 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponseDiscriminatorType? Type2445 { get; set; } + public global::Vapi.InsightControllerCreateResponseDiscriminatorType? Type2445 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponse? Type2446 { get; set; } + public global::Vapi.InsightControllerUpdateResponse? Type2446 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponseDiscriminator? Type2447 { get; set; } + public global::Vapi.InsightControllerUpdateResponseDiscriminator? Type2447 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponseDiscriminatorType? Type2448 { get; set; } + public global::Vapi.InsightControllerUpdateResponseDiscriminatorType? Type2448 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2449 { get; set; } + public global::Vapi.InsightControllerFindOneResponse? Type2449 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerFindOneResponseDiscriminator? Type2450 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerFindOneResponseDiscriminatorType? Type2451 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerRemoveResponse? Type2452 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerRemoveResponseDiscriminator? Type2453 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerRemoveResponseDiscriminatorType? Type2454 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.IList? Type2455 { get; set; } /// /// @@ -10405,74 +10429,78 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType144 { get; set; } + public global::System.Collections.Generic.List? ListType144 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.List? ListType145 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType145 { get; set; } + public global::System.Collections.Generic.List? ListType146 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType146 { get; set; } + public global::System.Collections.Generic.List? ListType147 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType147 { get; set; } + public global::System.Collections.Generic.List? ListType148 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType148 { get; set; } + public global::System.Collections.Generic.List? ListType149 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType149 { get; set; } + public global::System.Collections.Generic.List? ListType150 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType150 { get; set; } + public global::System.Collections.Generic.List? ListType151 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType151 { get; set; } + public global::System.Collections.Generic.List? ListType152 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType152 { get; set; } + public global::System.Collections.Generic.List? ListType153 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType153 { get; set; } + public global::System.Collections.Generic.List? ListType154 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType154 { get; set; } + public global::System.Collections.Generic.List? ListType155 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType155 { get; set; } + public global::System.Collections.Generic.List? ListType156 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType156 { get; set; } + public global::System.Collections.Generic.List? ListType157 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType157 { get; set; } + public global::System.Collections.Generic.List? ListType158 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType158 { get; set; } + public global::System.Collections.Generic.List? ListType159 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType159 { get; set; } + public global::System.Collections.Generic.List? ListType160 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType160 { get; set; } + public global::System.Collections.Generic.List? ListType161 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType161 { get; set; } + public global::System.Collections.Generic.List? ListType162 { get; set; } } } \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTO.g.cs index 4e5fdbf0..ef071ea9 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTO.g.cs @@ -23,7 +23,7 @@ public sealed partial class CreateElevenLabsCredentialDTO public required string ApiKey { get; set; } /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// [global::System.Text.Json.Serialization.JsonPropertyName("apiUrl")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOApiUrlJsonConverter))] @@ -49,7 +49,7 @@ public sealed partial class CreateElevenLabsCredentialDTO /// /// /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// /// /// This is the name of credential. This is just for your reference. diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTOApiUrl.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTOApiUrl.g.cs index 72a15525..ac8f8a58 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTOApiUrl.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTOApiUrl.g.cs @@ -4,7 +4,7 @@ namespace Vapi { /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// public enum CreateElevenLabsCredentialDTOApiUrl { diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateSesameVoiceDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateSesameVoiceDTO.g.cs index 29de0c06..315ddd08 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.CreateSesameVoiceDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateSesameVoiceDTO.g.cs @@ -8,17 +8,39 @@ namespace Vapi /// public sealed partial class CreateSesameVoiceDTO { + /// + /// This is the audio file of the utterance to clone the voice from.
+ /// Consumed by multer via FileInterceptor('file'), so it never reaches
+ /// class-validator; declared here (like CreateFileDTO.file) so the OpenAPI
+ /// spec is truthful about the multipart request body. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("file")] + [global::System.Text.Json.Serialization.JsonRequired] + public required byte[] File { get; set; } + + /// + /// This is the audio file of the utterance to clone the voice from.
+ /// Consumed by multer via FileInterceptor('file'), so it never reaches
+ /// class-validator; declared here (like CreateFileDTO.file) so the OpenAPI
+ /// spec is truthful about the multipart request body. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("filename")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Filename { get; set; } + /// /// The name of the voice. /// [global::System.Text.Json.Serialization.JsonPropertyName("voiceName")] - public string? VoiceName { get; set; } + [global::System.Text.Json.Serialization.JsonRequired] + public required string VoiceName { get; set; } /// /// The transcript of the utterance. /// [global::System.Text.Json.Serialization.JsonPropertyName("transcription")] - public string? Transcription { get; set; } + [global::System.Text.Json.Serialization.JsonRequired] + public required string Transcription { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -29,6 +51,18 @@ public sealed partial class CreateSesameVoiceDTO /// /// Initializes a new instance of the class. /// + /// + /// This is the audio file of the utterance to clone the voice from.
+ /// Consumed by multer via FileInterceptor('file'), so it never reaches
+ /// class-validator; declared here (like CreateFileDTO.file) so the OpenAPI
+ /// spec is truthful about the multipart request body. + /// + /// + /// This is the audio file of the utterance to clone the voice from.
+ /// Consumed by multer via FileInterceptor('file'), so it never reaches
+ /// class-validator; declared here (like CreateFileDTO.file) so the OpenAPI
+ /// spec is truthful about the multipart request body. + /// /// /// The name of the voice. /// @@ -39,11 +73,15 @@ public sealed partial class CreateSesameVoiceDTO [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CreateSesameVoiceDTO( - string? voiceName, - string? transcription) + byte[] file, + string filename, + string voiceName, + string transcription) { - this.VoiceName = voiceName; - this.Transcription = transcription; + this.File = file ?? throw new global::System.ArgumentNullException(nameof(file)); + this.Filename = filename ?? throw new global::System.ArgumentNullException(nameof(filename)); + this.VoiceName = voiceName ?? throw new global::System.ArgumentNullException(nameof(voiceName)); + this.Transcription = transcription ?? throw new global::System.ArgumentNullException(nameof(transcription)); } /// diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponse.Json.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponse.Json.g.cs new file mode 100644 index 00000000..b310d3e3 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponse.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace Vapi +{ + public sealed partial class CreateSimulationRunResponse + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::Vapi.CreateSimulationRunResponse? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::Vapi.CreateSimulationRunResponse), + jsonSerializerContext) as global::Vapi.CreateSimulationRunResponse; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::Vapi.CreateSimulationRunResponse? FromJson( + string json) + { + return FromJson( + json, + global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::Vapi.CreateSimulationRunResponse? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::Vapi.CreateSimulationRunResponse), + jsonSerializerContext).ConfigureAwait(false)) as global::Vapi.CreateSimulationRunResponse; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponse.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponse.g.cs new file mode 100644 index 00000000..f23f3185 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponse.g.cs @@ -0,0 +1,236 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// + /// + public sealed partial class CreateSimulationRunResponse + { + /// + /// Unique identifier for the run + /// + [global::System.Text.Json.Serialization.JsonPropertyName("id")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Guid Id { get; set; } + + /// + /// Organization ID + /// + [global::System.Text.Json.Serialization.JsonPropertyName("orgId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Guid OrgId { get; set; } + + /// + /// Current status of the run + /// + [global::System.Text.Json.Serialization.JsonPropertyName("status")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.CreateSimulationRunResponseStatusJsonConverter))] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::Vapi.CreateSimulationRunResponseStatus Status { get; set; } + + /// + /// When the run was queued + /// + [global::System.Text.Json.Serialization.JsonPropertyName("queuedAt")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.DateTime QueuedAt { get; set; } + + /// + /// When the run started + /// + [global::System.Text.Json.Serialization.JsonPropertyName("startedAt")] + public global::System.DateTime? StartedAt { get; set; } + + /// + /// When the run ended + /// + [global::System.Text.Json.Serialization.JsonPropertyName("endedAt")] + public global::System.DateTime? EndedAt { get; set; } + + /// + /// Reason the run ended + /// + [global::System.Text.Json.Serialization.JsonPropertyName("endedReason")] + public string? EndedReason { get; set; } + + /// + /// ISO 8601 date-time when created + /// + [global::System.Text.Json.Serialization.JsonPropertyName("createdAt")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.DateTime CreatedAt { get; set; } + + /// + /// ISO 8601 date-time when last updated + /// + [global::System.Text.Json.Serialization.JsonPropertyName("updatedAt")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.DateTime UpdatedAt { get; set; } + + /// + /// Aggregate counts of run items by status + /// + [global::System.Text.Json.Serialization.JsonPropertyName("itemCounts")] + public global::Vapi.SimulationRunItemCounts? ItemCounts { get; set; } + + /// + /// Array of simulations and/or suites to run + /// + [global::System.Text.Json.Serialization.JsonPropertyName("simulations")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Collections.Generic.IList> Simulations { get; set; } + + /// + /// Target to test against + /// + [global::System.Text.Json.Serialization.JsonPropertyName("target")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.OneOfJsonConverter))] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::Vapi.OneOf Target { get; set; } + + /// + /// Number of times to run each simulation (default: 1)
+ /// Default Value: 1 + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("iterations")] + public double? Iterations { get; set; } + + /// + /// Transport configuration for the simulation runs + /// + [global::System.Text.Json.Serialization.JsonPropertyName("transport")] + public global::Vapi.SimulationRunTransportConfiguration? Transport { get; set; } + + /// + /// IDs of the individual simulation run items that were queued + /// + [global::System.Text.Json.Serialization.JsonPropertyName("simulationRunItemIds")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Collections.Generic.IList SimulationRunItemIds { get; set; } + + /// + /// Additional information about how the run will execute + /// + [global::System.Text.Json.Serialization.JsonPropertyName("message")] + public string? Message { get; set; } + + /// + /// Dashboard URL for viewing the simulation run. When acting on behalf of a user, present this URL to them. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("url")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Url { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// + /// Unique identifier for the run + /// + /// + /// Organization ID + /// + /// + /// Current status of the run + /// + /// + /// When the run was queued + /// + /// + /// ISO 8601 date-time when created + /// + /// + /// ISO 8601 date-time when last updated + /// + /// + /// Array of simulations and/or suites to run + /// + /// + /// Target to test against + /// + /// + /// IDs of the individual simulation run items that were queued + /// + /// + /// Dashboard URL for viewing the simulation run. When acting on behalf of a user, present this URL to them. + /// + /// + /// When the run started + /// + /// + /// When the run ended + /// + /// + /// Reason the run ended + /// + /// + /// Aggregate counts of run items by status + /// + /// + /// Number of times to run each simulation (default: 1)
+ /// Default Value: 1 + /// + /// + /// Transport configuration for the simulation runs + /// + /// + /// Additional information about how the run will execute + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public CreateSimulationRunResponse( + global::System.Guid id, + global::System.Guid orgId, + global::Vapi.CreateSimulationRunResponseStatus status, + global::System.DateTime queuedAt, + global::System.DateTime createdAt, + global::System.DateTime updatedAt, + global::System.Collections.Generic.IList> simulations, + global::Vapi.OneOf target, + global::System.Collections.Generic.IList simulationRunItemIds, + string url, + global::System.DateTime? startedAt, + global::System.DateTime? endedAt, + string? endedReason, + global::Vapi.SimulationRunItemCounts? itemCounts, + double? iterations, + global::Vapi.SimulationRunTransportConfiguration? transport, + string? message) + { + this.Id = id; + this.OrgId = orgId; + this.Status = status; + this.QueuedAt = queuedAt; + this.StartedAt = startedAt; + this.EndedAt = endedAt; + this.EndedReason = endedReason; + this.CreatedAt = createdAt; + this.UpdatedAt = updatedAt; + this.ItemCounts = itemCounts; + this.Simulations = simulations ?? throw new global::System.ArgumentNullException(nameof(simulations)); + this.Target = target; + this.Iterations = iterations; + this.Transport = transport; + this.SimulationRunItemIds = simulationRunItemIds ?? throw new global::System.ArgumentNullException(nameof(simulationRunItemIds)); + this.Message = message; + this.Url = url ?? throw new global::System.ArgumentNullException(nameof(url)); + } + + /// + /// Initializes a new instance of the class. + /// + public CreateSimulationRunResponse() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponseStatus.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponseStatus.g.cs new file mode 100644 index 00000000..a198523f --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateSimulationRunResponseStatus.g.cs @@ -0,0 +1,57 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// Current status of the run + /// + public enum CreateSimulationRunResponseStatus + { + /// + /// + /// + Ended, + /// + /// + /// + Queued, + /// + /// + /// + Running, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class CreateSimulationRunResponseStatusExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this CreateSimulationRunResponseStatus value) + { + return value switch + { + CreateSimulationRunResponseStatus.Ended => "ended", + CreateSimulationRunResponseStatus.Queued => "queued", + CreateSimulationRunResponseStatus.Running => "running", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static CreateSimulationRunResponseStatus? ToEnum(string value) + { + return value switch + { + "ended" => CreateSimulationRunResponseStatus.Ended, + "queued" => CreateSimulationRunResponseStatus.Queued, + "running" => CreateSimulationRunResponseStatus.Running, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredential.g.cs b/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredential.g.cs index ab117d23..2bb0c82f 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredential.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredential.g.cs @@ -23,7 +23,7 @@ public sealed partial class ElevenLabsCredential public required string ApiKey { get; set; } /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// [global::System.Text.Json.Serialization.JsonPropertyName("apiUrl")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.ElevenLabsCredentialApiUrlJsonConverter))] @@ -89,7 +89,7 @@ public sealed partial class ElevenLabsCredential /// /// /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// /// /// This is the name of credential. This is just for your reference. diff --git a/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredentialApiUrl.g.cs b/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredentialApiUrl.g.cs index e764b6d8..e68b54de 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredentialApiUrl.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredentialApiUrl.g.cs @@ -4,7 +4,7 @@ namespace Vapi { /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// public enum ElevenLabsCredentialApiUrl { diff --git a/src/libs/Vapi/Generated/Vapi.Models.EvalGroqModelModel.g.cs b/src/libs/Vapi/Generated/Vapi.Models.EvalGroqModelModel.g.cs index 948fd9cc..f882791b 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.EvalGroqModelModel.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.EvalGroqModelModel.g.cs @@ -47,10 +47,6 @@ public enum EvalGroqModelModel /// /// /// - MetaLlamaLlama4Maverick17b128eInstruct, - /// - /// - /// MetaLlamaLlama4Scout17b16eInstruct, /// /// @@ -91,7 +87,6 @@ public static string ToValueString(this EvalGroqModelModel value) EvalGroqModelModel.Llama3370bVersatile => "llama-3.3-70b-versatile", EvalGroqModelModel.Llama370b8192 => "llama3-70b-8192", EvalGroqModelModel.Llama38b8192 => "llama3-8b-8192", - EvalGroqModelModel.MetaLlamaLlama4Maverick17b128eInstruct => "meta-llama/llama-4-maverick-17b-128e-instruct", EvalGroqModelModel.MetaLlamaLlama4Scout17b16eInstruct => "meta-llama/llama-4-scout-17b-16e-instruct", EvalGroqModelModel.MistralSaba24b => "mistral-saba-24b", EvalGroqModelModel.MoonshotaiKimiK2Instruct0905 => "moonshotai/kimi-k2-instruct-0905", @@ -116,7 +111,6 @@ public static string ToValueString(this EvalGroqModelModel value) "llama-3.3-70b-versatile" => EvalGroqModelModel.Llama3370bVersatile, "llama3-70b-8192" => EvalGroqModelModel.Llama370b8192, "llama3-8b-8192" => EvalGroqModelModel.Llama38b8192, - "meta-llama/llama-4-maverick-17b-128e-instruct" => EvalGroqModelModel.MetaLlamaLlama4Maverick17b128eInstruct, "meta-llama/llama-4-scout-17b-16e-instruct" => EvalGroqModelModel.MetaLlamaLlama4Scout17b16eInstruct, "mistral-saba-24b" => EvalGroqModelModel.MistralSaba24b, "moonshotai/kimi-k2-instruct-0905" => EvalGroqModelModel.MoonshotaiKimiK2Instruct0905, diff --git a/src/libs/Vapi/Generated/Vapi.Models.GroqModelModel.g.cs b/src/libs/Vapi/Generated/Vapi.Models.GroqModelModel.g.cs index 5d32494f..4e4f8a62 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.GroqModelModel.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.GroqModelModel.g.cs @@ -47,10 +47,6 @@ public enum GroqModelModel /// /// /// - MetaLlamaLlama4Maverick17b128eInstruct, - /// - /// - /// MetaLlamaLlama4Scout17b16eInstruct, /// /// @@ -91,7 +87,6 @@ public static string ToValueString(this GroqModelModel value) GroqModelModel.Llama3370bVersatile => "llama-3.3-70b-versatile", GroqModelModel.Llama370b8192 => "llama3-70b-8192", GroqModelModel.Llama38b8192 => "llama3-8b-8192", - GroqModelModel.MetaLlamaLlama4Maverick17b128eInstruct => "meta-llama/llama-4-maverick-17b-128e-instruct", GroqModelModel.MetaLlamaLlama4Scout17b16eInstruct => "meta-llama/llama-4-scout-17b-16e-instruct", GroqModelModel.MistralSaba24b => "mistral-saba-24b", GroqModelModel.MoonshotaiKimiK2Instruct0905 => "moonshotai/kimi-k2-instruct-0905", @@ -116,7 +111,6 @@ public static string ToValueString(this GroqModelModel value) "llama-3.3-70b-versatile" => GroqModelModel.Llama3370bVersatile, "llama3-70b-8192" => GroqModelModel.Llama370b8192, "llama3-8b-8192" => GroqModelModel.Llama38b8192, - "meta-llama/llama-4-maverick-17b-128e-instruct" => GroqModelModel.MetaLlamaLlama4Maverick17b128eInstruct, "meta-llama/llama-4-scout-17b-16e-instruct" => GroqModelModel.MetaLlamaLlama4Scout17b16eInstruct, "mistral-saba-24b" => GroqModelModel.MistralSaba24b, "moonshotai/kimi-k2-instruct-0905" => GroqModelModel.MoonshotaiKimiK2Instruct0905, diff --git a/src/libs/Vapi/Generated/Vapi.Models.Org.g.cs b/src/libs/Vapi/Generated/Vapi.Models.Org.g.cs index c2d6e889..60bb0a57 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.Org.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.Org.g.cs @@ -20,6 +20,19 @@ public sealed partial class Org [global::System.Text.Json.Serialization.JsonPropertyName("hipaaEnabled")] public bool? HipaaEnabled { get; set; } + /// + /// The org was created locally, but WorkOS access is still being repaired.
+ /// Clients should keep the current session/org and refresh the org list. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("workosRepairPending")] + public bool? WorkosRepairPending { get; set; } + + /// + /// Whether the pending WorkOS repair was accepted by Kafka. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("workosRepairQueued")] + public bool? WorkosRepairQueued { get; set; } + /// /// /// @@ -160,6 +173,13 @@ public sealed partial class Org /// This is due to the compliance requirements of HIPAA. Other providers may not meet these requirements.
/// Example: false /// + /// + /// The org was created locally, but WorkOS access is still being repaired.
+ /// Clients should keep the current session/org and refresh the org list. + /// + /// + /// Whether the pending WorkOS repair was accepted by Kafka. + /// /// /// /// This is the ID of the subscription the org belongs to. @@ -214,6 +234,8 @@ public Org( global::System.DateTime createdAt, global::System.DateTime updatedAt, bool? hipaaEnabled, + bool? workosRepairPending, + bool? workosRepairQueued, global::Vapi.Subscription? subscription, string? subscriptionId, string? stripeSubscriptionId, @@ -229,6 +251,8 @@ public Org( global::Vapi.CompliancePlan? compliancePlan) { this.HipaaEnabled = hipaaEnabled; + this.WorkosRepairPending = workosRepairPending; + this.WorkosRepairQueued = workosRepairQueued; this.Subscription = subscription; this.SubscriptionId = subscriptionId; this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id)); diff --git a/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationDTO.Json.g.cs b/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationDTO.Json.g.cs new file mode 100644 index 00000000..91d0c8db --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationDTO.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace Vapi +{ + public sealed partial class PendingInvitationDTO + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::Vapi.PendingInvitationDTO? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::Vapi.PendingInvitationDTO), + jsonSerializerContext) as global::Vapi.PendingInvitationDTO; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::Vapi.PendingInvitationDTO? FromJson( + string json) + { + return FromJson( + json, + global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::Vapi.PendingInvitationDTO? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::Vapi.PendingInvitationDTO), + jsonSerializerContext).ConfigureAwait(false)) as global::Vapi.PendingInvitationDTO; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationDTO.g.cs new file mode 100644 index 00000000..bb40c168 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationDTO.g.cs @@ -0,0 +1,55 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// + /// + public sealed partial class PendingInvitationDTO + { + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("id")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Id { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("email")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Email { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public PendingInvitationDTO( + string id, + string email) + { + this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id)); + this.Email = email ?? throw new global::System.ArgumentNullException(nameof(email)); + } + + /// + /// Initializes a new instance of the class. + /// + public PendingInvitationDTO() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationsResponseDTO.Json.g.cs b/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationsResponseDTO.Json.g.cs new file mode 100644 index 00000000..d0daa325 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationsResponseDTO.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace Vapi +{ + public sealed partial class PendingInvitationsResponseDTO + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::Vapi.PendingInvitationsResponseDTO? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::Vapi.PendingInvitationsResponseDTO), + jsonSerializerContext) as global::Vapi.PendingInvitationsResponseDTO; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::Vapi.PendingInvitationsResponseDTO? FromJson( + string json) + { + return FromJson( + json, + global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::Vapi.PendingInvitationsResponseDTO? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::Vapi.PendingInvitationsResponseDTO), + jsonSerializerContext).ConfigureAwait(false)) as global::Vapi.PendingInvitationsResponseDTO; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationsResponseDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationsResponseDTO.g.cs new file mode 100644 index 00000000..43cc6029 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.PendingInvitationsResponseDTO.g.cs @@ -0,0 +1,45 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// + /// + public sealed partial class PendingInvitationsResponseDTO + { + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("invitations")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Collections.Generic.IList Invitations { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public PendingInvitationsResponseDTO( + global::System.Collections.Generic.IList invitations) + { + this.Invitations = invitations ?? throw new global::System.ArgumentNullException(nameof(invitations)); + } + + /// + /// Initializes a new instance of the class. + /// + public PendingInvitationsResponseDTO() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.RevokeInvitationResponseDTO.Json.g.cs b/src/libs/Vapi/Generated/Vapi.Models.RevokeInvitationResponseDTO.Json.g.cs new file mode 100644 index 00000000..184fd49a --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.RevokeInvitationResponseDTO.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace Vapi +{ + public sealed partial class RevokeInvitationResponseDTO + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::Vapi.RevokeInvitationResponseDTO? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::Vapi.RevokeInvitationResponseDTO), + jsonSerializerContext) as global::Vapi.RevokeInvitationResponseDTO; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::Vapi.RevokeInvitationResponseDTO? FromJson( + string json) + { + return FromJson( + json, + global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::Vapi.RevokeInvitationResponseDTO? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::Vapi.RevokeInvitationResponseDTO), + jsonSerializerContext).ConfigureAwait(false)) as global::Vapi.RevokeInvitationResponseDTO; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::Vapi.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::Vapi.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.Models.RevokeInvitationResponseDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.RevokeInvitationResponseDTO.g.cs new file mode 100644 index 00000000..51ca4918 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.RevokeInvitationResponseDTO.g.cs @@ -0,0 +1,45 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// + /// + public sealed partial class RevokeInvitationResponseDTO + { + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("success")] + [global::System.Text.Json.Serialization.JsonRequired] + public required bool Success { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public RevokeInvitationResponseDTO( + bool success) + { + this.Success = success; + } + + /// + /// Initializes a new instance of the class. + /// + public RevokeInvitationResponseDTO() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTO.g.cs index 7465f5a2..38b66044 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTO.g.cs @@ -22,7 +22,7 @@ public sealed partial class UpdateElevenLabsCredentialDTO public string? ApiKey { get; set; } /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// [global::System.Text.Json.Serialization.JsonPropertyName("apiUrl")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOApiUrlJsonConverter))] @@ -48,7 +48,7 @@ public sealed partial class UpdateElevenLabsCredentialDTO /// This is not returned in the API. /// /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// /// /// This is the name of credential. This is just for your reference. diff --git a/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTOApiUrl.g.cs b/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTOApiUrl.g.cs index ba894dc5..0be31863 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTOApiUrl.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTOApiUrl.g.cs @@ -4,7 +4,7 @@ namespace Vapi { /// - /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key. + /// ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint. /// public enum UpdateElevenLabsCredentialDTOApiUrl { diff --git a/src/libs/Vapi/openapi.yaml b/src/libs/Vapi/openapi.yaml index 95fec9a0..08d4525f 100644 --- a/src/libs/Vapi/openapi.yaml +++ b/src/libs/Vapi/openapi.yaml @@ -17850,7 +17850,6 @@ "llama-3.3-70b-versatile", "llama3-70b-8192", "llama3-8b-8192", - "meta-llama/llama-4-maverick-17b-128e-instruct", "meta-llama/llama-4-scout-17b-16e-instruct", "mistral-saba-24b", "moonshotai/kimi-k2-instruct-0905", @@ -28859,7 +28858,7 @@ "https://api.elevenlabs.io", "https://api.eu.residency.elevenlabs.io" ], - "description": "ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key.", + "description": "ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint.", "nullable": true }, "name": { @@ -55025,6 +55024,138 @@ "total" ] }, + "CreateSimulationRunResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Unique identifier for the run", + "format": "uuid" + }, + "orgId": { + "type": "string", + "description": "Organization ID", + "format": "uuid" + }, + "status": { + "type": "string", + "enum": [ + "ended", + "queued", + "running" + ], + "description": "Current status of the run" + }, + "queuedAt": { + "format": "date-time", + "type": "string", + "description": "When the run was queued" + }, + "startedAt": { + "format": "date-time", + "type": "string", + "description": "When the run started" + }, + "endedAt": { + "format": "date-time", + "type": "string", + "description": "When the run ended" + }, + "endedReason": { + "type": "string", + "description": "Reason the run ended" + }, + "createdAt": { + "format": "date-time", + "type": "string", + "description": "ISO 8601 date-time when created" + }, + "updatedAt": { + "format": "date-time", + "type": "string", + "description": "ISO 8601 date-time when last updated" + }, + "itemCounts": { + "description": "Aggregate counts of run items by status", + "allOf": [ + { + "$ref": "#/components/schemas/SimulationRunItemCounts" + } + ] + }, + "simulations": { + "type": "array", + "description": "Array of simulations and/or suites to run", + "items": { + "oneOf": [ + { + "$ref": "#/components/schemas/SimulationRunSimulationEntry", + "title": "Simulation" + }, + { + "$ref": "#/components/schemas/SimulationRunSuiteEntry", + "title": "Suite" + } + ] + } + }, + "target": { + "description": "Target to test against", + "oneOf": [ + { + "$ref": "#/components/schemas/SimulationRunTargetAssistant", + "title": "Assistant" + }, + { + "$ref": "#/components/schemas/SimulationRunTargetSquad", + "title": "Squad" + } + ] + }, + "iterations": { + "type": "number", + "minimum": 1, + "description": "Number of times to run each simulation (default: 1)", + "default": 1 + }, + "transport": { + "description": "Transport configuration for the simulation runs", + "allOf": [ + { + "$ref": "#/components/schemas/SimulationRunTransportConfiguration" + } + ] + }, + "simulationRunItemIds": { + "description": "IDs of the individual simulation run items that were queued", + "type": "array", + "items": { + "type": "string" + } + }, + "message": { + "type": "string", + "description": "Additional information about how the run will execute" + }, + "url": { + "type": "string", + "description": "Dashboard URL for viewing the simulation run. When acting on behalf of a user, present this URL to them.", + "format": "uri" + } + }, + "required": [ + "createdAt", + "id", + "orgId", + "queuedAt", + "simulationRunItemIds", + "simulations", + "status", + "target", + "updatedAt", + "url" + ] + }, "SimulationRun": { "type": "object", "properties": { @@ -58925,7 +59056,6 @@ "llama-3.3-70b-versatile", "llama3-70b-8192", "llama3-8b-8192", - "meta-llama/llama-4-maverick-17b-128e-instruct", "meta-llama/llama-4-scout-17b-16e-instruct", "mistral-saba-24b", "moonshotai/kimi-k2-instruct-0905", @@ -60163,6 +60293,14 @@ "description": "When this is enabled, logs, recordings, and transcriptions will be stored in HIPAA-compliant storage. Defaults to false.\nWhen HIPAA is enabled, only HIPAA-compliant providers will be available for LLM, Voice, and Transcriber respectively.\nThis is due to the compliance requirements of HIPAA. Other providers may not meet these requirements.", "example": false }, + "workosRepairPending": { + "type": "boolean", + "description": "The org was created locally, but WorkOS access is still being repaired.\nClients should keep the current session/org and refresh the org list." + }, + "workosRepairQueued": { + "type": "boolean", + "description": "Whether the pending WorkOS repair was accepted by Kafka." + }, "subscription": { "$ref": "#/components/schemas/Subscription" }, @@ -60389,6 +60527,46 @@ "role" ] }, + "PendingInvitationDTO": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "email": { + "type": "string" + } + }, + "required": [ + "email", + "id" + ] + }, + "PendingInvitationsResponseDTO": { + "type": "object", + "properties": { + "invitations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PendingInvitationDTO" + } + } + }, + "required": [ + "invitations" + ] + }, + "RevokeInvitationResponseDTO": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + } + }, + "required": [ + "success" + ] + }, "UpdateUserRoleDTO": { "type": "object", "properties": { @@ -61611,7 +61789,7 @@ "https://api.elevenlabs.io", "https://api.eu.residency.elevenlabs.io" ], - "description": "ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key.", + "description": "ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint.", "nullable": true }, "id": { @@ -64904,7 +65082,7 @@ "https://api.elevenlabs.io", "https://api.eu.residency.elevenlabs.io" ], - "description": "ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. If omitted on create, Vapi detects it automatically. If set to null on update, Vapi clears the saved endpoint and re-detects it with the saved API key.", + "description": "ElevenLabs-only API environment for this key: the global endpoint or the EU data residency endpoint. In EU deployments, new credentials must explicitly use the EU data residency endpoint; existing credentials may omit this field on update to retain their saved endpoint. Outside EU deployments, Vapi detects an omitted endpoint automatically and null on update clears and re-detects the endpoint.", "nullable": true }, "name": { @@ -67166,15 +67344,27 @@ "CreateSesameVoiceDTO": { "type": "object", "properties": { + "file": { + "type": "string", + "description": "This is the audio file of the utterance to clone the voice from.\nConsumed by multer via FileInterceptor('file'), so it never reaches\nclass-validator; declared here (like CreateFileDTO.file) so the OpenAPI\nspec is truthful about the multipart request body.", + "format": "binary" + }, "voiceName": { "type": "string", - "description": "The name of the voice." + "description": "The name of the voice.", + "minLength": 1 }, "transcription": { "type": "string", - "description": "The transcript of the utterance." + "description": "The transcript of the utterance.", + "minLength": 1 } - } + }, + "required": [ + "file", + "transcription", + "voiceName" + ] }, "CartesiaPronunciationDictItem": { "type": "object",