UNPKG

@cto.ai/ops

Version:

💻 CTO.ai - The CLI built for Teams 🚀

20 lines (19 loc) • 437 B
import { OpCommand, OpWorkflow } from './OpsYml'; export type OpsFindResponse = { data: (OpCommand | OpWorkflow)[]; error: object[] | null; }; export type OpsFindQuery = { team_id?: string; name?: string; search?: string; }; export type WorkflowsFindResponse = { data: OpWorkflow[]; error: object[] | null; }; export type WorkflowsFindQuery = { teamId?: string; name?: string; search?: string; };