Files
attune/web/src/api/models/WorkflowSummary.ts
David Culbreth 179180d604
Some checks failed
CI / Rustfmt (push) Successful in 22s
CI / Cargo Audit & Deny (push) Failing after 1m2s
CI / Web Blocking Checks (push) Failing after 35s
CI / Security Blocking Checks (push) Successful in 8s
CI / Clippy (push) Successful in 2m43s
CI / Web Advisory Checks (push) Successful in 35s
CI / Security Advisory Checks (push) Successful in 37s
CI / Tests (push) Failing after 9m28s
eslint
2026-03-05 06:52:55 -06:00

51 lines
850 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/**
* Simplified workflow response (for list endpoints)
*/
export type WorkflowSummary = {
/**
* Creation timestamp
*/
created: string;
/**
* Workflow description
*/
description?: string | null;
/**
* Whether the workflow is enabled
*/
enabled: boolean;
/**
* Workflow ID
*/
id: number;
/**
* Human-readable label
*/
label: string;
/**
* Pack reference
*/
pack_ref: string;
/**
* Unique reference identifier
*/
ref: string;
/**
* Tags
*/
tags: Array<string>;
/**
* Last update timestamp
*/
updated: string;
/**
* Workflow version
*/
version: string;
};