Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -573,9 +573,9 @@ partial void ProcessAssistantControllerCreateResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Assistant> AssistantControllerCreateAsync(
global::Vapi.OneOf<global::Vapi.AssemblyAITranscriber, global::Vapi.AzureSpeechTranscriber, global::Vapi.CustomTranscriber, global::Vapi.DeepgramTranscriber, global::Vapi.ElevenLabsTranscriber, global::Vapi.GladiaTranscriber, global::Vapi.GoogleTranscriber, global::Vapi.SpeechmaticsTranscriber, global::Vapi.TalkscriberTranscriber, global::Vapi.OpenAITranscriber, global::Vapi.CartesiaTranscriber, global::Vapi.SonioxTranscriber>? transcriber = default,
global::Vapi.OneOf<global::Vapi.AssemblyAITranscriber, global::Vapi.AzureSpeechTranscriber, global::Vapi.CustomTranscriber, global::Vapi.DeepgramTranscriber, global::Vapi.ElevenLabsTranscriber, global::Vapi.GladiaTranscriber, global::Vapi.GoogleTranscriber, global::Vapi.SpeechmaticsTranscriber, global::Vapi.TalkscriberTranscriber, global::Vapi.OpenAITranscriber, global::Vapi.CartesiaTranscriber, global::Vapi.SonioxTranscriber, global::Vapi.XaiTranscriber>? transcriber = default,
global::Vapi.OneOf<global::Vapi.AnthropicModel, global::Vapi.AnthropicBedrockModel, global::Vapi.AnyscaleModel, global::Vapi.CerebrasModel, global::Vapi.CustomLLMModel, global::Vapi.DeepInfraModel, global::Vapi.DeepSeekModel, global::Vapi.GoogleModel, global::Vapi.GroqModel, global::Vapi.InflectionAIModel, global::Vapi.MinimaxLLMModel, global::Vapi.OpenAIModel, global::Vapi.OpenRouterModel, global::Vapi.PerplexityAIModel, global::Vapi.TogetherAIModel, global::Vapi.XaiModel>? model = default,
global::Vapi.OneOf<global::Vapi.AzureVoice, global::Vapi.CartesiaVoice, global::Vapi.CustomVoice, global::Vapi.DeepgramVoice, global::Vapi.ElevenLabsVoice, global::Vapi.HumeVoice, global::Vapi.LMNTVoice, global::Vapi.NeuphonicVoice, global::Vapi.OpenAIVoice, global::Vapi.PlayHTVoice, global::Vapi.WellSaidVoice, global::Vapi.RimeAIVoice, global::Vapi.SmallestAIVoice, global::Vapi.TavusVoice, global::Vapi.VapiVoice, global::Vapi.SesameVoice, global::Vapi.InworldVoice, global::Vapi.MinimaxVoice>? voice = default,
global::Vapi.OneOf<global::Vapi.AzureVoice, global::Vapi.CartesiaVoice, global::Vapi.CustomVoice, global::Vapi.DeepgramVoice, global::Vapi.ElevenLabsVoice, global::Vapi.HumeVoice, global::Vapi.LMNTVoice, global::Vapi.NeuphonicVoice, global::Vapi.OpenAIVoice, global::Vapi.PlayHTVoice, global::Vapi.WellSaidVoice, global::Vapi.RimeAIVoice, global::Vapi.SmallestAIVoice, global::Vapi.TavusVoice, global::Vapi.VapiVoice, global::Vapi.SesameVoice, global::Vapi.InworldVoice, global::Vapi.MinimaxVoice, global::Vapi.XaiVoice>? voice = default,
string? firstMessage = default,
bool? firstMessageInterruptionsEnabled = default,
global::Vapi.CreateAssistantDTOFirstMessageMode? firstMessageMode = default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ public partial class AssistantsClient
};
partial void PrepareAssistantControllerFindOneArguments(
global::System.Net.Http.HttpClient httpClient,
ref string id);
ref global::System.Guid id);
partial void PrepareAssistantControllerFindOneRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string id);
global::System.Guid id);
partial void ProcessAssistantControllerFindOneResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
Expand All @@ -49,7 +49,7 @@ partial void ProcessAssistantControllerFindOneResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Assistant> AssistantControllerFindOneAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand All @@ -69,7 +69,7 @@ partial void ProcessAssistantControllerFindOneResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.AutoSDKHttpResponse<global::Vapi.Assistant>> AssistantControllerFindOneAsResponseAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ public partial class AssistantsClient
};
partial void PrepareAssistantControllerRemoveArguments(
global::System.Net.Http.HttpClient httpClient,
ref string id);
ref global::System.Guid id);
partial void PrepareAssistantControllerRemoveRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string id);
global::System.Guid id);
partial void ProcessAssistantControllerRemoveResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
Expand All @@ -49,7 +49,7 @@ partial void ProcessAssistantControllerRemoveResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Assistant> AssistantControllerRemoveAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand All @@ -69,7 +69,7 @@ partial void ProcessAssistantControllerRemoveResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.AutoSDKHttpResponse<global::Vapi.Assistant>> AssistantControllerRemoveAsResponseAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ public partial class AssistantsClient
};
partial void PrepareAssistantControllerUpdateArguments(
global::System.Net.Http.HttpClient httpClient,
ref string id,
ref global::System.Guid id,
global::Vapi.UpdateAssistantDTO request);
partial void PrepareAssistantControllerUpdateRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string id,
global::System.Guid id,
global::Vapi.UpdateAssistantDTO request);
partial void ProcessAssistantControllerUpdateResponse(
global::System.Net.Http.HttpClient httpClient,
Expand All @@ -52,7 +52,7 @@ partial void ProcessAssistantControllerUpdateResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Assistant> AssistantControllerUpdateAsync(
string id,
global::System.Guid id,

global::Vapi.UpdateAssistantDTO request,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
Expand All @@ -77,7 +77,7 @@ partial void ProcessAssistantControllerUpdateResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.AutoSDKHttpResponse<global::Vapi.Assistant>> AssistantControllerUpdateAsResponseAsync(
string id,
global::System.Guid id,

global::Vapi.UpdateAssistantDTO request,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
Expand Down Expand Up @@ -583,10 +583,10 @@ partial void ProcessAssistantControllerUpdateResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Assistant> AssistantControllerUpdateAsync(
string id,
global::Vapi.OneOf<global::Vapi.AssemblyAITranscriber, global::Vapi.AzureSpeechTranscriber, global::Vapi.CustomTranscriber, global::Vapi.DeepgramTranscriber, global::Vapi.ElevenLabsTranscriber, global::Vapi.GladiaTranscriber, global::Vapi.GoogleTranscriber, global::Vapi.SpeechmaticsTranscriber, global::Vapi.TalkscriberTranscriber, global::Vapi.OpenAITranscriber, global::Vapi.CartesiaTranscriber, global::Vapi.SonioxTranscriber>? transcriber = default,
global::System.Guid id,
global::Vapi.OneOf<global::Vapi.AssemblyAITranscriber, global::Vapi.AzureSpeechTranscriber, global::Vapi.CustomTranscriber, global::Vapi.DeepgramTranscriber, global::Vapi.ElevenLabsTranscriber, global::Vapi.GladiaTranscriber, global::Vapi.GoogleTranscriber, global::Vapi.SpeechmaticsTranscriber, global::Vapi.TalkscriberTranscriber, global::Vapi.OpenAITranscriber, global::Vapi.CartesiaTranscriber, global::Vapi.SonioxTranscriber, global::Vapi.XaiTranscriber>? transcriber = default,
global::Vapi.OneOf<global::Vapi.AnthropicModel, global::Vapi.AnthropicBedrockModel, global::Vapi.AnyscaleModel, global::Vapi.CerebrasModel, global::Vapi.CustomLLMModel, global::Vapi.DeepInfraModel, global::Vapi.DeepSeekModel, global::Vapi.GoogleModel, global::Vapi.GroqModel, global::Vapi.InflectionAIModel, global::Vapi.MinimaxLLMModel, global::Vapi.OpenAIModel, global::Vapi.OpenRouterModel, global::Vapi.PerplexityAIModel, global::Vapi.TogetherAIModel, global::Vapi.XaiModel>? model = default,
global::Vapi.OneOf<global::Vapi.AzureVoice, global::Vapi.CartesiaVoice, global::Vapi.CustomVoice, global::Vapi.DeepgramVoice, global::Vapi.ElevenLabsVoice, global::Vapi.HumeVoice, global::Vapi.LMNTVoice, global::Vapi.NeuphonicVoice, global::Vapi.OpenAIVoice, global::Vapi.PlayHTVoice, global::Vapi.WellSaidVoice, global::Vapi.RimeAIVoice, global::Vapi.SmallestAIVoice, global::Vapi.TavusVoice, global::Vapi.VapiVoice, global::Vapi.SesameVoice, global::Vapi.InworldVoice, global::Vapi.MinimaxVoice>? voice = default,
global::Vapi.OneOf<global::Vapi.AzureVoice, global::Vapi.CartesiaVoice, global::Vapi.CustomVoice, global::Vapi.DeepgramVoice, global::Vapi.ElevenLabsVoice, global::Vapi.HumeVoice, global::Vapi.LMNTVoice, global::Vapi.NeuphonicVoice, global::Vapi.OpenAIVoice, global::Vapi.PlayHTVoice, global::Vapi.WellSaidVoice, global::Vapi.RimeAIVoice, global::Vapi.SmallestAIVoice, global::Vapi.TavusVoice, global::Vapi.VapiVoice, global::Vapi.SesameVoice, global::Vapi.InworldVoice, global::Vapi.MinimaxVoice, global::Vapi.XaiVoice>? voice = default,
string? firstMessage = default,
bool? firstMessageInterruptionsEnabled = default,
global::Vapi.UpdateAssistantDTOFirstMessageMode? firstMessageMode = default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ public partial class CallsClient
};
partial void PrepareCallControllerFindOneArguments(
global::System.Net.Http.HttpClient httpClient,
ref string id);
ref global::System.Guid id);
partial void PrepareCallControllerFindOneRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string id);
global::System.Guid id);
partial void ProcessCallControllerFindOneResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
Expand All @@ -49,7 +49,7 @@ partial void ProcessCallControllerFindOneResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Call> CallControllerFindOneAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand All @@ -69,7 +69,7 @@ partial void ProcessCallControllerFindOneResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.AutoSDKHttpResponse<global::Vapi.Call>> CallControllerFindOneAsResponseAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ public partial class CallsClient
};
partial void PrepareCallControllerUpdateArguments(
global::System.Net.Http.HttpClient httpClient,
ref string id,
ref global::System.Guid id,
global::Vapi.UpdateCallDTO request);
partial void PrepareCallControllerUpdateRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string id,
global::System.Guid id,
global::Vapi.UpdateCallDTO request);
partial void ProcessCallControllerUpdateResponse(
global::System.Net.Http.HttpClient httpClient,
Expand All @@ -52,7 +52,7 @@ partial void ProcessCallControllerUpdateResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Call> CallControllerUpdateAsync(
string id,
global::System.Guid id,

global::Vapi.UpdateCallDTO request,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
Expand All @@ -77,7 +77,7 @@ partial void ProcessCallControllerUpdateResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.AutoSDKHttpResponse<global::Vapi.Call>> CallControllerUpdateAsResponseAsync(
string id,
global::System.Guid id,

global::Vapi.UpdateCallDTO request,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
Expand Down Expand Up @@ -455,7 +455,7 @@ partial void ProcessCallControllerUpdateResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Call> CallControllerUpdateAsync(
string id,
global::System.Guid id,
string? name = default,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ public partial class CampaignsClient
};
partial void PrepareCampaignControllerFindOneArguments(
global::System.Net.Http.HttpClient httpClient,
ref string id);
ref global::System.Guid id);
partial void PrepareCampaignControllerFindOneRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string id);
global::System.Guid id);
partial void ProcessCampaignControllerFindOneResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
Expand All @@ -49,7 +49,7 @@ partial void ProcessCampaignControllerFindOneResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Campaign> CampaignControllerFindOneAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand All @@ -69,7 +69,7 @@ partial void ProcessCampaignControllerFindOneResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.AutoSDKHttpResponse<global::Vapi.Campaign>> CampaignControllerFindOneAsResponseAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ public partial class CampaignsClient
};
partial void PrepareCampaignControllerRemoveArguments(
global::System.Net.Http.HttpClient httpClient,
ref string id);
ref global::System.Guid id);
partial void PrepareCampaignControllerRemoveRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string id);
global::System.Guid id);
partial void ProcessCampaignControllerRemoveResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
Expand All @@ -49,7 +49,7 @@ partial void ProcessCampaignControllerRemoveResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.Campaign> CampaignControllerRemoveAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand All @@ -69,7 +69,7 @@ partial void ProcessCampaignControllerRemoveResponseContent(
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Vapi.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Vapi.AutoSDKHttpResponse<global::Vapi.Campaign>> CampaignControllerRemoveAsResponseAsync(
string id,
global::System.Guid id,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
Expand Down
Loading
Loading