add size property to getProduct (#893)

This commit is contained in:
Caldwell
2023-10-30 08:56:54 +01:00
committed by GitHub
parent 2a149df13e
commit 009622069f
2 changed files with 3 additions and 0 deletions

View File

@@ -7900,6 +7900,8 @@ interface Product {
advertisingInvestment: number;
/** Funds that were spent on designing the product */
designInvestment: number;
/** How much warehouse space is occupied per unit of this product */
size: number;
}
/**