Improve the sales import

This commit is contained in:
Urtzi Alfaro
2025-10-15 21:09:42 +02:00
parent 8f9e9a7edc
commit dbb48d8e2c
21 changed files with 992 additions and 409 deletions

View File

@@ -169,6 +169,7 @@ export interface TrainingJobStatus {
products_failed: number;
error_message?: string | null;
estimated_time_remaining_seconds?: number | null; // Estimated time remaining in seconds
estimated_completion_time?: string | null; // ISO datetime string of estimated completion
message?: string | null; // Optional status message
}
@@ -185,6 +186,8 @@ export interface TrainingJobProgress {
products_completed: number;
products_total: number;
estimated_time_remaining_minutes?: number | null;
estimated_time_remaining_seconds?: number | null;
estimated_completion_time?: string | null; // ISO datetime string of estimated completion
timestamp: string; // ISO datetime string
}