@coopenomics/sdk
    Preparing search index...
    interface IInput {
        filter?: {
            coopname?: string | null;
            created_by?: string | null;
            creators?: string[] | null;
            cycle_id?: string | null;
            master?: string | null;
            priorities?: IssuePriority[] | null;
            project_hash?: string | null;
            statuses?: IssueStatus[] | null;
            submaster?: string | null;
            title?: string | null;
        };
        options?: {
            limit: number;
            page: number;
            sortBy?: string
            | null;
            sortOrder: string;
        };
    }
    Index

    Properties

    Properties

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

    Type Declaration

    • Optionalcoopname?: string | null

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

    • Optionalcreated_by?: string | null

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

    • Optionalcreators?: string[] | null

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

    • Optionalcycle_id?: string | null

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

    • Optionalmaster?: string | null

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

    • Optionalpriorities?: IssuePriority[] | null

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

    • Optionalproject_hash?: string | null

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

    • Optionalstatuses?: IssueStatus[] | null

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

    • Optionalsubmaster?: string | null

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

    • Optionaltitle?: string | null

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

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

    Type Declaration

    • limit: number

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

    • page: number

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

    • OptionalsortBy?: string | null

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

    • sortOrder: string

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