diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.AddKnowledgeBaseSources.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.AddKnowledgeBaseSources.g.cs index 5dcb11f..2cc36b2 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.AddKnowledgeBaseSources.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.AddKnowledgeBaseSources.g.cs @@ -125,13 +125,13 @@ partial void ProcessAddKnowledgeBaseSourcesResponseContent( } var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"{knowledgeBaseId}"), + content: new global::System.Net.Http.StringContent(knowledgeBaseId ?? string.Empty), name: "\"knowledge_base_id\""); if (request.KnowledgeBaseTexts != default) { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.KnowledgeBaseTexts, x => x))}]"), + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.KnowledgeBaseTexts, x => x.ToJson(JsonSerializerContext)))}]"), name: "\"knowledge_base_texts\""); } if (request.KnowledgeBaseFiles != default) @@ -140,6 +140,7 @@ partial void ProcessAddKnowledgeBaseSourcesResponseContent( for (var __iKnowledgeBaseFiles = 0; __iKnowledgeBaseFiles < request.KnowledgeBaseFiles.Count; __iKnowledgeBaseFiles++) { var __contentKnowledgeBaseFiles = new global::System.Net.Http.ByteArrayContent(request.KnowledgeBaseFiles[__iKnowledgeBaseFiles]); + __contentKnowledgeBaseFiles.Headers.ContentType = new global::System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream"); __httpRequestContent.Add( content: __contentKnowledgeBaseFiles, name: "\"knowledge_base_files\"", @@ -169,7 +170,7 @@ partial void ProcessAddKnowledgeBaseSourcesResponseContent( PrepareAddKnowledgeBaseSourcesRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - knowledgeBaseId: knowledgeBaseId, + knowledgeBaseId: knowledgeBaseId!, request: request); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.AgentPlaygroundCompletion.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.AgentPlaygroundCompletion.g.cs index 4eb34e5..d82c28c 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.AgentPlaygroundCompletion.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.AgentPlaygroundCompletion.g.cs @@ -146,7 +146,7 @@ partial void ProcessAgentPlaygroundCompletionResponseContent( PrepareAgentPlaygroundCompletionRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId, + agentId: agentId!, version: version, request: request); diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.CloneVoice.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.CloneVoice.g.cs index 6e681a5..a08a1d4 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.CloneVoice.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.CloneVoice.g.cs @@ -120,6 +120,7 @@ partial void ProcessCloneVoiceResponseContent( for (var __iFiles = 0; __iFiles < request.Files.Count; __iFiles++) { var __contentFiles = new global::System.Net.Http.ByteArrayContent(request.Files[__iFiles]); + __contentFiles.Headers.ContentType = new global::System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream"); __httpRequestContent.Add( content: __contentFiles, name: "\"files\"", @@ -130,10 +131,10 @@ partial void ProcessCloneVoiceResponseContent( } } __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"{request.VoiceName}"), + content: new global::System.Net.Http.StringContent(request.VoiceName ?? string.Empty), name: "\"voice_name\""); __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"{request.VoiceProvider.ToValueString()}"), + content: new global::System.Net.Http.StringContent(request.VoiceProvider.ToValueString()), name: "\"voice_provider\""); __httpRequest.Content = __httpRequestContent; global::RetellAI.AutoSDKRequestOptionsSupport.ApplyHeaders( diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.CreateKnowledgeBase.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.CreateKnowledgeBase.g.cs index 51d89f4..77a4e27 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.CreateKnowledgeBase.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.CreateKnowledgeBase.g.cs @@ -118,13 +118,13 @@ partial void ProcessCreateKnowledgeBaseResponseContent( } var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"{request.KnowledgeBaseName}"), + content: new global::System.Net.Http.StringContent(request.KnowledgeBaseName ?? string.Empty), name: "\"knowledge_base_name\""); if (request.KnowledgeBaseTexts != default) { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.KnowledgeBaseTexts, x => x))}]"), + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.KnowledgeBaseTexts, x => x.ToJson(JsonSerializerContext)))}]"), name: "\"knowledge_base_texts\""); } if (request.KnowledgeBaseFiles != default) @@ -133,6 +133,7 @@ partial void ProcessCreateKnowledgeBaseResponseContent( for (var __iKnowledgeBaseFiles = 0; __iKnowledgeBaseFiles < request.KnowledgeBaseFiles.Count; __iKnowledgeBaseFiles++) { var __contentKnowledgeBaseFiles = new global::System.Net.Http.ByteArrayContent(request.KnowledgeBaseFiles[__iKnowledgeBaseFiles]); + __contentKnowledgeBaseFiles.Headers.ContentType = new global::System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream"); __httpRequestContent.Add( content: __contentKnowledgeBaseFiles, name: "\"knowledge_base_files\"", @@ -154,21 +155,21 @@ partial void ProcessCreateKnowledgeBaseResponseContent( { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"{request.EnableAutoRefresh}"), + content: new global::System.Net.Http.StringContent((global::System.Convert.ToString(request.EnableAutoRefresh, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty).ToLowerInvariant()), name: "\"enable_auto_refresh\""); } if (request.MaxChunkSize != default) { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"{request.MaxChunkSize}"), + content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.MaxChunkSize, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty), name: "\"max_chunk_size\""); } if (request.MinChunkSize != default) { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent($"{request.MinChunkSize}"), + content: new global::System.Net.Http.StringContent(global::System.Convert.ToString(request.MinChunkSize, global::System.Globalization.CultureInfo.InvariantCulture) ?? string.Empty), name: "\"min_chunk_size\""); } __httpRequest.Content = __httpRequestContent; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteAgent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteAgent.g.cs index 77d92f1..0d52b08 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteAgent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteAgent.g.cs @@ -121,7 +121,7 @@ partial void ProcessDeleteAgentResponse( PrepareDeleteAgentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId); + agentId: agentId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteCall.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteCall.g.cs index 8927b17..fcc707e 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteCall.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteCall.g.cs @@ -121,7 +121,7 @@ partial void ProcessDeleteCallResponse( PrepareDeleteCallRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - callId: callId); + callId: callId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteChatAgent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteChatAgent.g.cs index ac4749d..91693e3 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteChatAgent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteChatAgent.g.cs @@ -121,7 +121,7 @@ partial void ProcessDeleteChatAgentResponse( PrepareDeleteChatAgentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId); + agentId: agentId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteConversationFlow.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteConversationFlow.g.cs index 02631ca..b7f8c1d 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteConversationFlow.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteConversationFlow.g.cs @@ -119,7 +119,7 @@ partial void ProcessDeleteConversationFlowResponse( PrepareDeleteConversationFlowRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - conversationFlowId: conversationFlowId); + conversationFlowId: conversationFlowId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteConversationFlowComponent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteConversationFlowComponent.g.cs index e9586b8..c163156 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteConversationFlowComponent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteConversationFlowComponent.g.cs @@ -119,7 +119,7 @@ partial void ProcessDeleteConversationFlowComponentResponse( PrepareDeleteConversationFlowComponentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - conversationFlowComponentId: conversationFlowComponentId); + conversationFlowComponentId: conversationFlowComponentId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteKnowledgeBase.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteKnowledgeBase.g.cs index 27a6238..c9a3514 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteKnowledgeBase.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteKnowledgeBase.g.cs @@ -121,7 +121,7 @@ partial void ProcessDeleteKnowledgeBaseResponse( PrepareDeleteKnowledgeBaseRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - knowledgeBaseId: knowledgeBaseId); + knowledgeBaseId: knowledgeBaseId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteKnowledgeBaseSource.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteKnowledgeBaseSource.g.cs index f1f3846..f903df4 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteKnowledgeBaseSource.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteKnowledgeBaseSource.g.cs @@ -133,8 +133,8 @@ partial void ProcessDeleteKnowledgeBaseSourceResponseContent( PrepareDeleteKnowledgeBaseSourceRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - knowledgeBaseId: knowledgeBaseId, - sourceId: sourceId); + knowledgeBaseId: knowledgeBaseId!, + sourceId: sourceId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeletePhoneNumber.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeletePhoneNumber.g.cs index 991b320..e666bca 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeletePhoneNumber.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeletePhoneNumber.g.cs @@ -121,7 +121,7 @@ partial void ProcessDeletePhoneNumberResponse( PrepareDeletePhoneNumberRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - phoneNumber: phoneNumber); + phoneNumber: phoneNumber!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteRetellLLM.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteRetellLLM.g.cs index 506030b..0336240 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteRetellLLM.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteRetellLLM.g.cs @@ -121,7 +121,7 @@ partial void ProcessDeleteRetellLLMResponse( PrepareDeleteRetellLLMRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - llmId: llmId); + llmId: llmId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteTestCaseDefinition.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteTestCaseDefinition.g.cs index d7a6b26..73a81fa 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteTestCaseDefinition.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.DeleteTestCaseDefinition.g.cs @@ -119,7 +119,7 @@ partial void ProcessDeleteTestCaseDefinitionResponse( PrepareDeleteTestCaseDefinitionRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - testCaseDefinitionId: testCaseDefinitionId); + testCaseDefinitionId: testCaseDefinitionId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.EndChat.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.EndChat.g.cs index e0fef71..e40e24c 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.EndChat.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.EndChat.g.cs @@ -121,7 +121,7 @@ partial void ProcessEndChatResponse( PrepareEndChatRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - chatId: chatId); + chatId: chatId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetAgent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetAgent.g.cs index dde6eb3..44f913d 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetAgent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetAgent.g.cs @@ -136,7 +136,7 @@ partial void ProcessGetAgentResponseContent( PrepareGetAgentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId, + agentId: agentId!, version: version); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetAgentVersions.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetAgentVersions.g.cs index 8eed473..a7f8d6a 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetAgentVersions.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetAgentVersions.g.cs @@ -126,7 +126,7 @@ partial void ProcessGetAgentVersionsResponseContent( PrepareGetAgentVersionsRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId); + agentId: agentId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetBatchTest.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetBatchTest.g.cs index b64092f..7f3ea58 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetBatchTest.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetBatchTest.g.cs @@ -124,7 +124,7 @@ partial void ProcessGetBatchTestResponseContent( PrepareGetBatchTestRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - testCaseBatchJobId: testCaseBatchJobId); + testCaseBatchJobId: testCaseBatchJobId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetCall.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetCall.g.cs index 65ec665..53bd56c 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetCall.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetCall.g.cs @@ -126,7 +126,7 @@ partial void ProcessGetCallResponseContent( PrepareGetCallRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - callId: callId); + callId: callId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChat.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChat.g.cs index 3583d7f..e4791b9 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChat.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChat.g.cs @@ -126,7 +126,7 @@ partial void ProcessGetChatResponseContent( PrepareGetChatRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - chatId: chatId); + chatId: chatId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChatAgent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChatAgent.g.cs index f2bc49a..09c103a 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChatAgent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChatAgent.g.cs @@ -136,7 +136,7 @@ partial void ProcessGetChatAgentResponseContent( PrepareGetChatAgentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId, + agentId: agentId!, version: version); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChatAgentVersions.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChatAgentVersions.g.cs index 82ed840..5700210 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChatAgentVersions.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetChatAgentVersions.g.cs @@ -126,7 +126,7 @@ partial void ProcessGetChatAgentVersionsResponseContent( PrepareGetChatAgentVersionsRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId); + agentId: agentId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetConversationFlow.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetConversationFlow.g.cs index 1776f3e..2712872 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetConversationFlow.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetConversationFlow.g.cs @@ -134,7 +134,7 @@ partial void ProcessGetConversationFlowResponseContent( PrepareGetConversationFlowRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - conversationFlowId: conversationFlowId, + conversationFlowId: conversationFlowId!, version: version); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetConversationFlowComponent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetConversationFlowComponent.g.cs index f0d40b7..bd14c11 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetConversationFlowComponent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetConversationFlowComponent.g.cs @@ -124,7 +124,7 @@ partial void ProcessGetConversationFlowComponentResponseContent( PrepareGetConversationFlowComponentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - conversationFlowComponentId: conversationFlowComponentId); + conversationFlowComponentId: conversationFlowComponentId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetKnowledgeBase.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetKnowledgeBase.g.cs index 6be0c87..020d4b1 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetKnowledgeBase.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetKnowledgeBase.g.cs @@ -126,7 +126,7 @@ partial void ProcessGetKnowledgeBaseResponseContent( PrepareGetKnowledgeBaseRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - knowledgeBaseId: knowledgeBaseId); + knowledgeBaseId: knowledgeBaseId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetMCPTools.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetMCPTools.g.cs index a3d0d41..85621dc 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetMCPTools.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetMCPTools.g.cs @@ -152,9 +152,9 @@ partial void ProcessGetMCPToolsResponseContent( PrepareGetMCPToolsRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId, + agentId: agentId!, version: version, - mcpId: mcpId, + mcpId: mcpId!, componentId: componentId); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetPhoneNumber.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetPhoneNumber.g.cs index c99f58f..42ddc9a 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetPhoneNumber.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetPhoneNumber.g.cs @@ -126,7 +126,7 @@ partial void ProcessGetPhoneNumberResponseContent( PrepareGetPhoneNumberRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - phoneNumber: phoneNumber); + phoneNumber: phoneNumber!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetRetellLLM.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetRetellLLM.g.cs index d17fcf2..f170ecd 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetRetellLLM.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetRetellLLM.g.cs @@ -136,7 +136,7 @@ partial void ProcessGetRetellLLMResponseContent( PrepareGetRetellLLMRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - llmId: llmId, + llmId: llmId!, version: version); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetTestCaseDefinition.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetTestCaseDefinition.g.cs index a234170..95c99fc 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetTestCaseDefinition.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetTestCaseDefinition.g.cs @@ -124,7 +124,7 @@ partial void ProcessGetTestCaseDefinitionResponseContent( PrepareGetTestCaseDefinitionRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - testCaseDefinitionId: testCaseDefinitionId); + testCaseDefinitionId: testCaseDefinitionId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetTestRun.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetTestRun.g.cs index 8c87fee..770e124 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetTestRun.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetTestRun.g.cs @@ -124,7 +124,7 @@ partial void ProcessGetTestRunResponseContent( PrepareGetTestRunRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - testCaseJobId: testCaseJobId); + testCaseJobId: testCaseJobId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetVoice.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetVoice.g.cs index 481824f..81d9d91 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetVoice.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.GetVoice.g.cs @@ -126,7 +126,7 @@ partial void ProcessGetVoiceResponseContent( PrepareGetVoiceRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - voiceId: voiceId); + voiceId: voiceId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListBatchTests.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListBatchTests.g.cs index 020b9ac..18c0fd2 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListBatchTests.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListBatchTests.g.cs @@ -145,7 +145,7 @@ partial void ProcessListBatchTestsResponseContent( PrepareListBatchTestsRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - type: type, + type: type!, llmId: llmId, conversationFlowId: conversationFlowId, version: version); diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListBatchTestsV2.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListBatchTestsV2.g.cs index 44788cc..e871444 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListBatchTestsV2.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListBatchTestsV2.g.cs @@ -159,7 +159,7 @@ partial void ProcessListBatchTestsV2ResponseContent( PrepareListBatchTestsV2Request( httpClient: HttpClient, httpRequestMessage: __httpRequest, - type: type, + type: type!, llmId: llmId, conversationFlowId: conversationFlowId, version: version, diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestCaseDefinitions.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestCaseDefinitions.g.cs index 0127866..2658c7e 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestCaseDefinitions.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestCaseDefinitions.g.cs @@ -139,7 +139,7 @@ partial void ProcessListTestCaseDefinitionsResponseContent( PrepareListTestCaseDefinitionsRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - type: type, + type: type!, llmId: llmId, conversationFlowId: conversationFlowId); diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestCaseDefinitionsV2.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestCaseDefinitionsV2.g.cs index d187f76..0496493 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestCaseDefinitionsV2.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestCaseDefinitionsV2.g.cs @@ -153,7 +153,7 @@ partial void ProcessListTestCaseDefinitionsV2ResponseContent( PrepareListTestCaseDefinitionsV2Request( httpClient: HttpClient, httpRequestMessage: __httpRequest, - type: type, + type: type!, llmId: llmId, conversationFlowId: conversationFlowId, limit: limit, diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestRuns.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestRuns.g.cs index a0991f9..6d83139 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestRuns.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestRuns.g.cs @@ -124,7 +124,7 @@ partial void ProcessListTestRunsResponseContent( PrepareListTestRunsRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - testCaseBatchJobId: testCaseBatchJobId); + testCaseBatchJobId: testCaseBatchJobId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestRunsV2.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestRunsV2.g.cs index e34cffd..00c1c03 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestRunsV2.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.ListTestRunsV2.g.cs @@ -140,7 +140,7 @@ partial void ProcessListTestRunsV2ResponseContent( PrepareListTestRunsV2Request( httpClient: HttpClient, httpRequestMessage: __httpRequest, - testCaseBatchJobId: testCaseBatchJobId, + testCaseBatchJobId: testCaseBatchJobId!, limit: limit, paginationKey: paginationKey); diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.PublishAgent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.PublishAgent.g.cs index ff0a820..e9355a7 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.PublishAgent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.PublishAgent.g.cs @@ -121,7 +121,7 @@ partial void ProcessPublishAgentResponse( PreparePublishAgentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId); + agentId: agentId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.PublishChatAgent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.PublishChatAgent.g.cs index 2626fdf..2cf2fa8 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.PublishChatAgent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.PublishChatAgent.g.cs @@ -121,7 +121,7 @@ partial void ProcessPublishChatAgentResponse( PreparePublishChatAgentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId); + agentId: agentId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.StopCall.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.StopCall.g.cs index a39edf3..31854f2 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.StopCall.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.StopCall.g.cs @@ -121,7 +121,7 @@ partial void ProcessStopCallResponse( PrepareStopCallRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - callId: callId); + callId: callId!); return __httpRequest; } diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateAgent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateAgent.g.cs index 8eeb1d9..07bb937 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateAgent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateAgent.g.cs @@ -150,7 +150,7 @@ partial void ProcessUpdateAgentResponseContent( PrepareUpdateAgentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId, + agentId: agentId!, version: version, request: request); diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateCallMetadata.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateCallMetadata.g.cs index 959342b..acf1e32 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateCallMetadata.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateCallMetadata.g.cs @@ -140,7 +140,7 @@ partial void ProcessUpdateCallMetadataResponseContent( PrepareUpdateCallMetadataRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - callId: callId, + callId: callId!, request: request); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateChatAgent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateChatAgent.g.cs index af4a3b7..2e90439 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateChatAgent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateChatAgent.g.cs @@ -150,7 +150,7 @@ partial void ProcessUpdateChatAgentResponseContent( PrepareUpdateChatAgentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - agentId: agentId, + agentId: agentId!, version: version, request: request); diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateChatMetadata.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateChatMetadata.g.cs index fca4b94..5921255 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateChatMetadata.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateChatMetadata.g.cs @@ -140,7 +140,7 @@ partial void ProcessUpdateChatMetadataResponseContent( PrepareUpdateChatMetadataRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - chatId: chatId, + chatId: chatId!, request: request); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateConversationFlow.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateConversationFlow.g.cs index 1f18197..81467db 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateConversationFlow.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateConversationFlow.g.cs @@ -146,7 +146,7 @@ partial void ProcessUpdateConversationFlowResponseContent( PrepareUpdateConversationFlowRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - conversationFlowId: conversationFlowId, + conversationFlowId: conversationFlowId!, version: version, request: request); diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateConversationFlowComponent.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateConversationFlowComponent.g.cs index a7385bd..46df552 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateConversationFlowComponent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateConversationFlowComponent.g.cs @@ -138,7 +138,7 @@ partial void ProcessUpdateConversationFlowComponentResponseContent( PrepareUpdateConversationFlowComponentRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - conversationFlowComponentId: conversationFlowComponentId, + conversationFlowComponentId: conversationFlowComponentId!, request: request); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdatePhoneNumber.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdatePhoneNumber.g.cs index d417baf..a9789ae 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdatePhoneNumber.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdatePhoneNumber.g.cs @@ -140,7 +140,7 @@ partial void ProcessUpdatePhoneNumberResponseContent( PrepareUpdatePhoneNumberRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - phoneNumber: phoneNumber, + phoneNumber: phoneNumber!, request: request); return __httpRequest; diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateRetellLLM.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateRetellLLM.g.cs index f24cea8..8386787 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateRetellLLM.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateRetellLLM.g.cs @@ -148,7 +148,7 @@ partial void ProcessUpdateRetellLLMResponseContent( PrepareUpdateRetellLLMRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - llmId: llmId, + llmId: llmId!, version: version, request: request); diff --git a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateTestCaseDefinition.g.cs b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateTestCaseDefinition.g.cs index 7985296..8d060eb 100644 --- a/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateTestCaseDefinition.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.RetellAiClient.UpdateTestCaseDefinition.g.cs @@ -138,7 +138,7 @@ partial void ProcessUpdateTestCaseDefinitionResponseContent( PrepareUpdateTestCaseDefinitionRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, - testCaseDefinitionId: testCaseDefinitionId, + testCaseDefinitionId: testCaseDefinitionId!, request: request); return __httpRequest;