@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.
- package/package.json +1 -1
- package/type.d.ts +8 -1
package/package.json
CHANGED
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
|
|
593
|
+
name?: string;
|
|
587
594
|
};
|
|
588
595
|
product_id: string;
|
|
589
596
|
rating: number;
|