New filter panel layout at client page
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m20s

This commit is contained in:
Cauê Faleiros
2026-06-23 13:46:55 -03:00
parent 62e0239ee4
commit 3524405712
6 changed files with 642 additions and 107 deletions

View File

@@ -110,6 +110,24 @@ export interface ClientAnalyticsItem {
lastPurchaseDate: string;
}
export interface ClientMetadataFilters {
marketplace: string;
canal_venda: string;
seller: string;
}
export interface ClientSellerFilterOption {
value: string;
id: string;
name: string;
}
export interface ClientFilterOptions {
marketplaces: string[];
salesChannels: string[];
sellers: ClientSellerFilterOption[];
}
export interface RfmClient {
customerKey: string;
clientToken: string;