feat: printing attributes in cards on dashboard

This commit is contained in:
2025-03-14 11:33:00 +04:00
parent ca80920af6
commit 3e66d6300b
7 changed files with 66 additions and 22 deletions

View File

@@ -4,6 +4,7 @@
/* eslint-disable */
import type { BaseMarketplaceSchema } from './BaseMarketplaceSchema';
import type { BoardSchema } from './BoardSchema';
import type { CardAttributeSchema } from './CardAttributeSchema';
import type { CardBillRequestSchema } from './CardBillRequestSchema';
import type { CardGroupSchema } from './CardGroupSchema';
import type { CardTagSchema } from './CardTagSchema';
@@ -20,6 +21,7 @@ export type CardSummary = {
baseMarketplace?: (BaseMarketplaceSchema | null);
totalProducts: number;
tags: Array<CardTagSchema>;
attributes: Array<CardAttributeSchema>;
shipmentWarehouseId: (number | null);
shipmentWarehouseName: (string | null);
billRequest?: (CardBillRequestSchema | null);