Files
romm/frontend/src/__generated__/models/WatcherTaskStatusResponse.ts
Georges-Antoine Assi 9b636a9d0c don't fail on old tasks
2025-10-27 11:07:19 -04:00

19 lines
522 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { JobStatus } from './JobStatus';
import type { WatcherTaskMeta } from './WatcherTaskMeta';
export type WatcherTaskStatusResponse = {
task_name: string;
task_id: string;
status: JobStatus;
created_at: string;
enqueued_at: (string | null);
started_at: (string | null);
ended_at: (string | null);
task_type: string;
meta: WatcherTaskMeta;
};