@mivis/petmart-api 1.2.83 → 1.2.85
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 +10 -2
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -387,6 +387,10 @@ declare namespace Components {
|
|
|
387
387
|
cartItem: ICart;
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
+
export interface ISetCartItemCountRequest {
|
|
391
|
+
count: number;
|
|
392
|
+
}
|
|
393
|
+
|
|
390
394
|
export interface ICategory {
|
|
391
395
|
_id: string;
|
|
392
396
|
name: string;
|
|
@@ -645,6 +649,10 @@ declare namespace Components {
|
|
|
645
649
|
reason_of_cancel?: string;
|
|
646
650
|
}
|
|
647
651
|
|
|
652
|
+
export interface IAdminDenyItem {
|
|
653
|
+
item_id: string;
|
|
654
|
+
}
|
|
655
|
+
|
|
648
656
|
export interface IAdminOrdersQueryRequest extends FilterBaseQuery {
|
|
649
657
|
name?: string;
|
|
650
658
|
from?: string;
|
|
@@ -905,11 +913,11 @@ declare namespace Components {
|
|
|
905
913
|
delivery_info?: Partial<IDeliveryFullInfo>;
|
|
906
914
|
shop_id?: string;
|
|
907
915
|
pvz?: Partial<IPVZ>;
|
|
908
|
-
status
|
|
916
|
+
status: EOrderStatus;
|
|
909
917
|
preparation_date?: Date;
|
|
910
918
|
note?: string;
|
|
911
919
|
reason_of_cancel?: string;
|
|
912
|
-
number
|
|
920
|
+
number: number;
|
|
913
921
|
createdAt: Date;
|
|
914
922
|
updatedAt: Date;
|
|
915
923
|
}
|