stash: integrity checks

This commit is contained in:
izzy
2025-11-26 15:45:58 +00:00
parent 13104d49cd
commit f77f43a83d
6 changed files with 142 additions and 2 deletions

View File

@@ -391,7 +391,11 @@ export type JobItem =
| { name: JobName.Ocr; data: IEntityJob }
// Workflow
| { name: JobName.WorkflowRun; data: IWorkflowJob };
| { name: JobName.WorkflowRun; data: IWorkflowJob }
// Integrity
| { name: JobName.IntegrityOrphanedAndMissingFiles; data: IBaseJob }
| { name: JobName.IntegrityChecksumFiles; data: IBaseJob };
export type VectorExtension = (typeof VECTOR_EXTENSIONS)[number];