@chopkola/common 1.0.199 → 1.0.200
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LucideIcon } from "lucide-react";
|
|
2
2
|
import { Category } from "./category";
|
|
3
|
-
import { JsonObject, MoneyString, Nullable, QuantityString, Timestamps, UUID } from "./global";
|
|
3
|
+
import { Currency, JsonObject, MoneyString, Nullable, QuantityString, Timestamps, UUID } from "./global";
|
|
4
4
|
import { ProductTypeEnum, StockMovementReasonEnum, StockStatusEnum, VendorProductsStatisticsIconEnum } from "./enum/collection";
|
|
5
5
|
export interface BackendVendorProductStatistic {
|
|
6
6
|
key: "total_products" | "low_stock" | "out_of_stock" | "top_category";
|
|
@@ -196,6 +196,7 @@ export interface VendorProductsManagementData {
|
|
|
196
196
|
export interface VendorCreateOrEditProductPageData {
|
|
197
197
|
categories: Category[];
|
|
198
198
|
product?: ProductAggregate;
|
|
199
|
+
currency: Currency;
|
|
199
200
|
}
|
|
200
201
|
export interface ProductDetailsData {
|
|
201
202
|
product: ProductAggregate;
|