@mivis/petmart-api 1.2.84 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +6 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.84",
3
+ "version": "1.2.85",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -649,6 +649,10 @@ declare namespace Components {
649
649
  reason_of_cancel?: string;
650
650
  }
651
651
 
652
+ export interface IAdminDenyItem {
653
+ item_id: string;
654
+ }
655
+
652
656
  export interface IAdminOrdersQueryRequest extends FilterBaseQuery {
653
657
  name?: string;
654
658
  from?: string;
@@ -909,11 +913,11 @@ declare namespace Components {
909
913
  delivery_info?: Partial<IDeliveryFullInfo>;
910
914
  shop_id?: string;
911
915
  pvz?: Partial<IPVZ>;
912
- status?: EOrderStatus;
916
+ status: EOrderStatus;
913
917
  preparation_date?: Date;
914
918
  note?: string;
915
919
  reason_of_cancel?: string;
916
- number?: number;
920
+ number: number;
917
921
  createdAt: Date;
918
922
  updatedAt: Date;
919
923
  }