@mivis/petmart-api 1.2.188 → 1.2.189
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.
- package/package.json +1 -1
- package/type.d.ts +4 -1
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -968,7 +968,10 @@ declare namespace Components {
|
|
|
968
968
|
|
|
969
969
|
export interface IPopulatedOrderItemApp
|
|
970
970
|
extends Omit<IOrderItem, 'product_id'> {
|
|
971
|
-
product_id: Pick<
|
|
971
|
+
product_id: Pick<
|
|
972
|
+
IProduct,
|
|
973
|
+
'_id' | 'name' | 'photo' | 'discount' | 'slug'
|
|
974
|
+
>;
|
|
972
975
|
}
|
|
973
976
|
|
|
974
977
|
export type IPopulatedOrderUserApp = Pick<
|