mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-09 22:33:37 +00:00
38 lines
936 B
TypeScript
38 lines
936 B
TypeScript
import type { PaginationMeta } from "@qltysh/fabro-api-client";
|
|
|
|
/**
|
|
* Opaque persisted `WorkflowSettings` snapshot returned by `/api/v1/runs/:id/settings`.
|
|
* Treated as a loose JSON object on the web side; consumers only render it.
|
|
*/
|
|
export type WorkflowSettingsSnapshot = Record<string, unknown>;
|
|
|
|
export interface WorkflowScheduleSummary {
|
|
expression: string;
|
|
next_run?: string | null;
|
|
}
|
|
|
|
export interface WorkflowLastRunSummary {
|
|
ran_at?: string | null;
|
|
}
|
|
|
|
export interface WorkflowListItem {
|
|
name: string;
|
|
slug: string;
|
|
filename: string;
|
|
last_run?: WorkflowLastRunSummary | null;
|
|
schedule?: WorkflowScheduleSummary | null;
|
|
}
|
|
|
|
export interface PaginatedWorkflowListResponse {
|
|
data: WorkflowListItem[];
|
|
pagination?: PaginationMeta;
|
|
}
|
|
|
|
export interface WorkflowDetailResponse {
|
|
name: string;
|
|
slug: string;
|
|
description: string;
|
|
filename: string;
|
|
settings: WorkflowSettingsSnapshot;
|
|
graph: string;
|
|
}
|