brands-in-shops feature implemented
This commit is contained in:
@@ -122,4 +122,19 @@ export interface ShopStats {
|
||||
total_spent: number;
|
||||
visit_count: number;
|
||||
avg_per_visit: number;
|
||||
}
|
||||
|
||||
export interface BrandInShop {
|
||||
id: number;
|
||||
shop_id: number;
|
||||
brand_id: number;
|
||||
created_at: string;
|
||||
updated_at?: string;
|
||||
shop: Shop;
|
||||
brand: Brand;
|
||||
}
|
||||
|
||||
export interface BrandInShopCreate {
|
||||
shop_id: number;
|
||||
brand_id: number;
|
||||
}
|
||||
Reference in New Issue
Block a user