@coopenomics/sdk
    Preparing search index...
    interface IInput {
        filter?: {
            blockchain_status?: string | null;
            commit_hash?: string | null;
            coopname?: string | null;
            created_date?: string | null;
            project_hash?: string | null;
            status?: CommitStatus | null;
            username?: string | null;
        };
        options?: {
            limit: number;
            page: number;
            sortBy?: string
            | null;
            sortOrder: string;
        };
    }
    Index

    Properties

    Properties

    filter?: {
        blockchain_status?: string | null;
        commit_hash?: string | null;
        coopname?: string | null;
        created_date?: string | null;
        project_hash?: string | null;
        status?: CommitStatus | null;
        username?: string | null;
    }

    Type Declaration

    • Optionalblockchain_status?: string | null

      Фильтр по статусу из блокчейна

    • Optionalcommit_hash?: string | null

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

    • Optionalcoopname?: string | null

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

    • Optionalcreated_date?: string | null

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

    • Optionalproject_hash?: string | null

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

    • Optionalstatus?: CommitStatus | null

      Фильтр по статусу коммита

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