@coopenomics/sdk
    Preparing search index...
    interface IInput {
        filter?: {
            end_date?: string | null;
            is_active?: boolean | null;
            name?: string | null;
            start_date?: string | null;
            status?: CycleStatus | null;
        };
        options?: {
            limit: number;
            page: number;
            sortBy?: string
            | null;
            sortOrder: string;
        };
    }
    Index

    Properties

    Properties

    filter?: {
        end_date?: string | null;
        is_active?: boolean | null;
        name?: string | null;
        start_date?: string | null;
        status?: CycleStatus | null;
    }

    Type Declaration

    • Optionalend_date?: string | null

      Фильтр по дате окончания (YYYY-MM-DD)

    • Optionalis_active?: boolean | null

      Показать только активные циклы

    • Optionalname?: string | null

      Фильтр по названию цикла

    • Optionalstart_date?: string | null

      Фильтр по дате начала (YYYY-MM-DD)

    • Optionalstatus?: CycleStatus | 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")