optymalizacja zapytań; filtr scenerii pocz.

This commit is contained in:
2023-06-03 15:49:15 +02:00
parent 44ebf53798
commit c3481470cb
6 changed files with 332 additions and 318 deletions
@@ -0,0 +1,18 @@
import { JournalTimetableSorter } from '../../../types/Journal/JournalTimetablesTypes';
export interface TimetablesQueryParams {
driverName?: string;
trainNo?: string;
authorName?: string;
timestampFrom?: number;
timestampTo?: number;
issuedFrom?: string;
countFrom?: number;
countLimit?: number;
fulfilled?: number;
terminated?: number;
sortBy?: JournalTimetableSorter['id'];
}