@mivis/petmart-api 1.2.80 → 1.2.81
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 -2
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -765,7 +765,7 @@ declare namespace Components {
|
|
|
765
765
|
}
|
|
766
766
|
|
|
767
767
|
export interface ICreateOrder {
|
|
768
|
-
items: Omit<IOrderItem[], '_id'>;
|
|
768
|
+
items: Omit<IOrderItem[], '_id' | 'items_status'>;
|
|
769
769
|
receive_method: ERecieveMethod;
|
|
770
770
|
receive_method_data: IDeliveryInfo | IPVZ | IPickUpPoint;
|
|
771
771
|
seller_id: string;
|
|
@@ -837,7 +837,7 @@ declare namespace Components {
|
|
|
837
837
|
export interface GetDeliverySum {
|
|
838
838
|
address: string;
|
|
839
839
|
type: ERecieveMethod.COURIER | ERecieveMethod.PVZ;
|
|
840
|
-
items: IOrderItem[]
|
|
840
|
+
items: Omit<IOrderItem[], '_id' | 'items_status'>;
|
|
841
841
|
}
|
|
842
842
|
|
|
843
843
|
export interface IDeliverySum {
|