feat: add multi-file upload and import detection endpoints to ImportHandler

This commit is contained in:
Wikid82
2025-11-24 18:55:53 +00:00
parent 5de6f9b714
commit ad98d9fea2
5 changed files with 298 additions and 8 deletions

View File

@@ -2,9 +2,10 @@ import client from './client';
export interface ImportSession {
id: string;
state: 'pending' | 'reviewing' | 'completed' | 'failed';
state: 'pending' | 'reviewing' | 'completed' | 'failed' | 'transient';
created_at: string;
updated_at: string;
source_file?: string;
}
export interface ImportPreview {