interface IInput {
    filter?: {
        coopname?: null | string;
        created_by?: null | string;
        creators?: null | string[];
        cycle_id?: null | string;
        master?: null | string;
        priorities?: null | IssuePriority[];
        project_hash?: null | string;
        statuses?: null | IssueStatus[];
        submaster?: null | string;
        title?: null | string;
    };
    options?: {
        limit: number;
        page: number;
        sortBy?: null | string;
        sortOrder: string;
    };
}

Properties

Properties

filter?: {
    coopname?: null | string;
    created_by?: null | string;
    creators?: null | string[];
    cycle_id?: null | string;
    master?: null | string;
    priorities?: null | IssuePriority[];
    project_hash?: null | string;
    statuses?: null | IssueStatus[];
    submaster?: null | string;
    title?: null | string;
}

Type declaration

  • Optional coopname?: null | string

    Фильтр по имени аккаунта кооператива

  • Optional created_by?: null | string

    Фильтр по ID создателя

  • Optional creators?: null | string[]

    Фильтр по массиву имен пользователей создателей

  • Optional cycle_id?: null | string

    Фильтр по ID цикла

  • Optional master?: null | string

    Фильтр по имени пользователя мастера проекта (показывать только задачи проектов, где указанный пользователь является мастером)

  • Optional priorities?: null | IssuePriority[]

    Фильтр по приоритетам задач

  • Optional project_hash?: null | string

    Фильтр по хешу проекта

  • Optional statuses?: null | IssueStatus[]

    Фильтр по статусам задач

  • Optional submaster?: null | string

    Фильтр по имени пользователя подмастерья

  • Optional title?: null | string

    Фильтр по названию задачи

options?: {
    limit: number;
    page: number;
    sortBy?: null | string;
    sortOrder: string;
}

Type declaration

  • limit: number

    Количество элементов на странице

  • page: number

    Номер страницы

  • Optional sortBy?: null | string

    Ключ сортировки (например, "name")

  • sortOrder: string

    Направление сортировки ("ASC" или "DESC")