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 @@ -120,7 +120,7 @@ partial void ProcessDeleteConversationResponse(
PrepareDeleteConversationRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
conversationId: conversationId);
conversationId: conversationId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ partial void ProcessEndConversationResponse(
PrepareEndConversationRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
conversationId: conversationId);
conversationId: conversationId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ partial void ProcessGetConversationResponseContent(
PrepareGetConversationRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
conversationId: conversationId,
conversationId: conversationId!,
verbose: verbose);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ partial void ProcessDeleteDocumentResponse(
PrepareDeleteDocumentRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
documentId: documentId);
documentId: documentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ partial void ProcessGetDocumentResponseContent(
PrepareGetDocumentRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
documentId: documentId);
documentId: documentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessRecrawlDocumentResponseContent(
PrepareRecrawlDocumentRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
documentId: documentId,
documentId: documentId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessUpdateDocumentResponseContent(
PrepareUpdateDocumentRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
documentId: documentId,
documentId: documentId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ partial void ProcessDeleteGuardrailsResponse(
PrepareDeleteGuardrailsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
guardrailsId: guardrailsId);
guardrailsId: guardrailsId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ partial void ProcessGetGuardrailsResponseContent(
PrepareGetGuardrailsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
guardrailsId: guardrailsId);
guardrailsId: guardrailsId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessPatchGuardrailsResponseContent(
PreparePatchGuardrailsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
guardrailsId: guardrailsId,
guardrailsId: guardrailsId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ partial void ProcessDeleteMemoryResponse(
PrepareDeleteMemoryRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
memoryStore: memoryStore,
memoryId: memoryId);
memoryStore: memoryStore!,
memoryId: memoryId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ partial void ProcessDeleteObjectivesResponse(
PrepareDeleteObjectivesRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
objectivesId: objectivesId);
objectivesId: objectivesId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ partial void ProcessGetObjectivesResponseContent(
PrepareGetObjectivesRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
objectivesId: objectivesId);
objectivesId: objectivesId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessPatchObjectivesResponseContent(
PreparePatchObjectivesRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
objectivesId: objectivesId,
objectivesId: objectivesId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ partial void ProcessDeletePersonaResponse(
PrepareDeletePersonaRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
personaId: personaId);
personaId: personaId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ partial void ProcessGetPersonaResponseContent(
PrepareGetPersonaRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
personaId: personaId);
personaId: personaId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessPatchPersonaResponseContent(
PreparePatchPersonaRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
personaId: personaId,
personaId: personaId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ partial void ProcessDeleteReplicaResponse(
PrepareDeleteReplicaRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
replicaId: replicaId);
replicaId: replicaId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ partial void ProcessGetReplicaResponseContent(
PrepareGetReplicaRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
replicaId: replicaId);
replicaId: replicaId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessRenameReplicaResponseContent(
PrepareRenameReplicaRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
replicaId: replicaId,
replicaId: replicaId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ partial void ProcessDeleteVideoResponse(
PrepareDeleteVideoRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
videoId: videoId);
videoId: videoId!);

return __httpRequest;
}
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Tavus/Generated/Tavus.VideosClient.GetVideo.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ partial void ProcessGetVideoResponseContent(
PrepareGetVideoRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
videoId: videoId);
videoId: videoId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessRenameVideoResponseContent(
PrepareRenameVideoRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
videoId: videoId,
videoId: videoId!,
request: request);

return __httpRequest;
Expand Down