feat: Court-Ready Legal & HIPAA Compliance Vault, 21 CFR Part 11 Audit Trail, Subpoena PDF & CMS-1500 coding engine

This commit is contained in:
2026-09-05 16:09:03 -07:00
parent bfe527fb33
commit 99d4f2a2db
7 changed files with 948 additions and 0 deletions
+15
View File
@@ -120,6 +120,17 @@ export interface Icd10CodeItem {
description: string;
}
export interface AuditTrailEvent {
id: string;
timestamp: string;
action: 'created' | 'viewed' | 'amended' | 'signed_locked' | 'subpoena_exported' | 'superbill_billed';
actorName: string;
actorRole: string;
actorIp: string;
hashSignature: string;
details: string;
}
export interface SoapNote {
id: string;
tenantId: string;
@@ -141,6 +152,10 @@ export interface SoapNote {
vasScore: number;
signedAt?: string;
signedBy?: string;
cryptographicHash?: string;
auditTrail?: AuditTrailEvent[];
legalAffidavitId?: string;
licenseNumber?: string;
}
export interface SuperbillLineItem {