UNPKG

449 BTypeScriptView Raw
1import { Op, Workflow } from './OpsYml';
2export declare type OpsFindResponse = {
3 data: (Op | Workflow)[];
4 error: object[] | null;
5};
6export declare type OpsFindQuery = {
7 team_id?: string;
8 name?: string;
9 search?: string;
10};
11export declare type WorkflowsFindResponse = {
12 data: Workflow[];
13 error: object[] | null;
14};
15export declare type WorkflowsFindQuery = {
16 teamId?: string;
17 name?: string;
18 search?: string;
19};