@mivis/petmart-api 1.2.309 → 1.2.310
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 +7 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1495,6 +1495,7 @@ declare namespace Components {
|
|
|
1495
1495
|
PRODUCT = 'PRODUCT',
|
|
1496
1496
|
COLLECTION = 'COLLECTION',
|
|
1497
1497
|
FAVORITES = 'FAVORITES',
|
|
1498
|
+
SUBCATEGORY = 'SUBCATEGORY',
|
|
1498
1499
|
}
|
|
1499
1500
|
|
|
1500
1501
|
export interface IAdminChangeSellerStatusRequest {
|
|
@@ -1697,10 +1698,16 @@ declare namespace Components {
|
|
|
1697
1698
|
seller_id: string;
|
|
1698
1699
|
navigation_path: string | null; // example: "ProductScreen"
|
|
1699
1700
|
navigation_params: Record<string, any> | null; // example: {product_id: "ObjectId"}
|
|
1701
|
+
type: EBannerType;
|
|
1700
1702
|
createdAt: Date;
|
|
1701
1703
|
updatedAt: Date;
|
|
1702
1704
|
}
|
|
1703
1705
|
|
|
1706
|
+
export enum EBannerType {
|
|
1707
|
+
WEB = 'WEB',
|
|
1708
|
+
APP = 'APP',
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1704
1711
|
export interface IMoySkladLinkerRequest {
|
|
1705
1712
|
updateData: {
|
|
1706
1713
|
linker_id: string;
|