Type Alias ListFlowsData

ListFlowsData: {
    createdBy?: string;
    orderDesc?: boolean;
    page?: number;
    pathExact?: string;
    pathStart?: string;
    perPage?: number;
    showArchived?: boolean;
    starredOnly?: boolean;
    workspace: string;
}

Type declaration

  • OptionalcreatedBy?: string

    mask to filter exact matching user creator

  • OptionalorderDesc?: boolean

    order by desc order (default true)

  • Optionalpage?: number

    which page to return (start at 1, default 1)

  • OptionalpathExact?: string

    mask to filter exact matching path

  • OptionalpathStart?: string

    mask to filter matching starting path

  • OptionalperPage?: number

    number of items to return for a given page (default 30, max 100)

  • OptionalshowArchived?: boolean

    (default false) show also the archived files. when multiple archived hash share the same path, only the ones with the latest create_at are displayed.

  • OptionalstarredOnly?: boolean

    (default false) show only the starred items

  • workspace: string