feat: complete release readiness work

- consolidate API ownership and remove dead vendor code

- add Stripe billing, learning paths, and public CV hardening

- add migration, recovery, security, audit, and browser gates
This commit is contained in:
cesnimda
2026-07-31 16:54:16 +02:00
parent a23c3dfc97
commit ce76046a29
1634 changed files with 6889 additions and 135429 deletions
+34
View File
@@ -0,0 +1,34 @@
namespace JobTrackerApi.Models;
public sealed class CvUploadArtifact
{
public int Id { get; set; }
public string OwnerUserId { get; set; } = string.Empty;
public string OriginalFileName { get; set; } = string.Empty;
public string StoredFileName { get; set; } = string.Empty;
public string MimeType { get; set; } = string.Empty;
public long ByteSize { get; set; }
public string Sha256 { get; set; } = string.Empty;
public string StoragePath { get; set; } = string.Empty;
public DateTimeOffset UploadedAtUtc { get; set; } = DateTimeOffset.UtcNow;
}
public sealed class CvExtractionRun
{
public int Id { get; set; }
public string OwnerUserId { get; set; } = string.Empty;
public int? ArtifactId { get; set; }
public CvUploadArtifact? Artifact { get; set; }
public string Trigger { get; set; } = string.Empty;
public string ParserVersion { get; set; } = string.Empty;
public string NormalizerVersion { get; set; } = string.Empty;
public string LlmPromptVersion { get; set; } = string.Empty;
public string Status { get; set; } = string.Empty;
public string? RawExtractedText { get; set; }
public string? NormalizedText { get; set; }
public string? StructuredProfileJson { get; set; }
public string? ErrorMessage { get; set; }
public DateTimeOffset StartedAtUtc { get; set; } = DateTimeOffset.UtcNow;
public DateTimeOffset? CompletedAtUtc { get; set; }
public DateTimeOffset? AppliedAtUtc { get; set; }
}