feat: filters for profit statistics table

This commit is contained in:
2024-11-21 17:25:09 +04:00
parent c81ee2fdb8
commit 77aedb514f
4 changed files with 23 additions and 1 deletions

View File

@@ -5,6 +5,9 @@
import type { ProfitTableGroupBy } from './ProfitTableGroupBy';
export type GetProfitTableDataRequest = {
dateRange: any[];
clientId: number;
baseMarketplaceKey: string;
dealStatusId: number;
groupTableBy: ProfitTableGroupBy;
};