mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-24 05:41:40 +00:00
Fix cron dashboard rendering for partial jobs
This commit is contained in:
parent
e407376c50
commit
e572737274
2 changed files with 139 additions and 87 deletions
|
|
@ -553,13 +553,14 @@ export interface ModelsAnalyticsResponse {
|
|||
|
||||
export interface CronJob {
|
||||
id: string;
|
||||
name?: string;
|
||||
prompt: string;
|
||||
schedule: { kind: string; expr: string; display: string };
|
||||
schedule_display: string;
|
||||
name?: string | null;
|
||||
prompt?: string | null;
|
||||
script?: string | null;
|
||||
schedule?: { kind?: string; expr?: string; display?: string };
|
||||
schedule_display?: string | null;
|
||||
enabled: boolean;
|
||||
state: string;
|
||||
deliver?: string;
|
||||
state?: string | null;
|
||||
deliver?: string | null;
|
||||
last_run_at?: string | null;
|
||||
next_run_at?: string | null;
|
||||
last_error?: string | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue