@mivis/petmart-api 1.2.40 → 1.2.41

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 +9 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.40",
3
+ "version": "1.2.41",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -310,6 +310,10 @@ declare namespace Components {
310
310
  price: number;
311
311
  }
312
312
 
313
+ export interface IDeleteCartRequest {
314
+ toDelete?: string;
315
+ }
316
+
313
317
  export interface ICart {
314
318
  _id: string;
315
319
  user_id: string;
@@ -317,6 +321,11 @@ declare namespace Components {
317
321
  _id: string;
318
322
  name: string;
319
323
  photo: string[];
324
+ seller_id: {
325
+ _id: string;
326
+ shop_details: IShopDetails;
327
+ delivery_ways: IDeliveryWays;
328
+ };
320
329
  };
321
330
  count: number;
322
331
  price: number;