@mivis/petmart-api 1.1.2 → 1.1.3

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 +2 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -146,18 +146,14 @@ declare namespace Components {
146
146
  }
147
147
  export interface ICart {
148
148
  _id: string;
149
- owner: string;
149
+ owner?: string;
150
150
  product: {
151
151
  _id: string;
152
152
  name: string;
153
153
  photo: string[];
154
154
  };
155
155
  count: number;
156
- variation: IVariation[];
157
- status: string;
158
- date: Date;
159
- deliveryDate: Date;
160
- orderNumber: string;
156
+ variation: IVariation;
161
157
  }
162
158
 
163
159
  export interface ICategory {