interface IInput {
    data: {
        filter?: null | {
            coopname?: null | string;
            date_from?: any;
            date_to?: any;
            event_types?: null | LogEventType[];
            initiator?: null | string;
            issue_hash?: null | string;
            project_hash?: null | string;
            show_components_logs?: null | boolean;
            show_issue_logs?: null | boolean;
        };
        pagination?: null | {
            limit: number;
            page: number;
            sortBy?: null | string;
            sortOrder: string;
        };
    };
}

Properties

Properties

data: {
    filter?: null | {
        coopname?: null | string;
        date_from?: any;
        date_to?: any;
        event_types?: null | LogEventType[];
        initiator?: null | string;
        issue_hash?: null | string;
        project_hash?: null | string;
        show_components_logs?: null | boolean;
        show_issue_logs?: null | boolean;
    };
    pagination?: null | {
        limit: number;
        page: number;
        sortBy?: null | string;
        sortOrder: string;
    };
}

Type declaration

  • Optional filter?: null | {
        coopname?: null | string;
        date_from?: any;
        date_to?: any;
        event_types?: null | LogEventType[];
        initiator?: null | string;
        issue_hash?: null | string;
        project_hash?: null | string;
        show_components_logs?: null | boolean;
        show_issue_logs?: null | boolean;
    }

    Фильтры для поиска логов

  • Optional pagination?: null | {
        limit: number;
        page: number;
        sortBy?: null | string;
        sortOrder: string;
    }

    Параметры пагинации