Optimize products list analytics loading
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 54s
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 54s
This commit is contained in:
12
src/types.ts
12
src/types.ts
@@ -69,6 +69,18 @@ export interface DashboardAnalytics {
|
||||
}>;
|
||||
}
|
||||
|
||||
export interface ProductAnalyticsItem {
|
||||
id: string;
|
||||
name: string;
|
||||
quantitySold: number;
|
||||
revenue: number;
|
||||
orderLineCount: number;
|
||||
lastPrice: number;
|
||||
stock: number;
|
||||
firstSaleDate: string | null;
|
||||
lastSaleDate: string | null;
|
||||
}
|
||||
|
||||
export interface ClientAnalyticsItem {
|
||||
customerKey: string;
|
||||
clientToken: string;
|
||||
|
||||
Reference in New Issue
Block a user