@mivis/petmart-api 1.2.41 → 1.2.42

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 +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.41",
3
+ "version": "1.2.42",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -458,6 +458,13 @@ declare namespace Components {
458
458
  updatedAt: Date;
459
459
  }
460
460
 
461
+ export interface ISellerShowcaseResponse {
462
+ purchasesCount: number;
463
+ averageRating: number;
464
+ reviewsCount: number;
465
+ seller: ISeller;
466
+ }
467
+
461
468
  export interface ISellerQueryRequest {
462
469
  name?: string;
463
470
  }
@@ -583,7 +590,7 @@ declare namespace Components {
583
590
  _id: string;
584
591
  user_id: {
585
592
  _id: string;
586
- name: string;
593
+ name?: string;
587
594
  };
588
595
  product_id: string;
589
596
  rating: number;