@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.
- package/package.json +1 -1
- package/type.d.ts +2 -6
package/package.json
CHANGED
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
|
|
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 {
|