Add investment info to API representation of product (#661)

This commit is contained in:
Snarling
2023-07-05 19:50:29 -04:00
committed by GitHub
parent 312e3eb71f
commit 3981f72149
5 changed files with 34 additions and 0 deletions

View File

@@ -7564,6 +7564,10 @@ interface Product {
actualSellAmount: number;
/** A number between 0-100 representing percentage completion */
developmentProgress: number;
/** Funds that were spent on advertising the product */
advertisingInvestment: number;
/** Funds that were spent on designing the product */
designInvestment: number;
}
/**