feat(cv)!: queue durable processing
CI and Deploy / test (pull_request) Failing after 1m39s
CI and Deploy / deploy (pull_request) Has been skipped

CV upload now returns 202 with an owner-scoped operation instead of holding the request through parsing. Existing review approval remains required.

BREAKING CHANGE: profile-cv upload responses use the durable operation contract.
This commit is contained in:
cesnimda
2026-08-09 15:11:03 +02:00
parent 39e98049ea
commit c3c5af8329
9 changed files with 614 additions and 141 deletions
+9 -1
View File
@@ -17,4 +17,12 @@ public sealed record CvExtractionRunListItem(
string ParserVersion,
string NormalizerVersion,
string LlmPromptVersion,
string? ErrorMessage);
string? ErrorMessage,
OperationDto? Operation);
public sealed record CvProcessingOperationResponse(
bool Queued,
int ExtractionRunId,
string Status,
OperationDto? Operation,
string? StatusUrl,
bool Created);