@mivis/petmart-api 1.2.247 → 1.2.249
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 +2 -1
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -879,7 +879,7 @@ declare namespace Components {
|
|
|
879
879
|
|
|
880
880
|
export interface IPopulatedOrderItem
|
|
881
881
|
extends Omit<IOrderItem, 'product_id'> {
|
|
882
|
-
product_id:
|
|
882
|
+
product_id: IProductResponse;
|
|
883
883
|
}
|
|
884
884
|
|
|
885
885
|
export type IPopulatedOrder = Omit<
|
|
@@ -1434,6 +1434,7 @@ declare namespace Components {
|
|
|
1434
1434
|
ORDER = 'ORDER',
|
|
1435
1435
|
PRODUCT = 'PRODUCT',
|
|
1436
1436
|
COLLECTION = 'COLLECTION',
|
|
1437
|
+
FAVORITES = 'FAVORITES',
|
|
1437
1438
|
}
|
|
1438
1439
|
|
|
1439
1440
|
export interface IAdminChangeSellerStatusRequest {
|