@mivis/petmart-api 1.2.309 → 1.2.311
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 +9 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -622,6 +622,7 @@ declare namespace Components {
|
|
|
622
622
|
suggested_characteristics?: ISuggestedCharacteristic[];
|
|
623
623
|
slug: string;
|
|
624
624
|
number: number;
|
|
625
|
+
is_returnable: boolean;
|
|
625
626
|
createdAt: Date;
|
|
626
627
|
updatedAt: Date;
|
|
627
628
|
}
|
|
@@ -639,6 +640,7 @@ declare namespace Components {
|
|
|
639
640
|
h1?: string;
|
|
640
641
|
seoText?: string;
|
|
641
642
|
suggested_characteristics?: ISuggestedCharacteristic[];
|
|
643
|
+
is_returnable?: boolean;
|
|
642
644
|
}
|
|
643
645
|
|
|
644
646
|
export interface ISuggestedCharacteristic {
|
|
@@ -1495,6 +1497,7 @@ declare namespace Components {
|
|
|
1495
1497
|
PRODUCT = 'PRODUCT',
|
|
1496
1498
|
COLLECTION = 'COLLECTION',
|
|
1497
1499
|
FAVORITES = 'FAVORITES',
|
|
1500
|
+
SUBCATEGORY = 'SUBCATEGORY',
|
|
1498
1501
|
}
|
|
1499
1502
|
|
|
1500
1503
|
export interface IAdminChangeSellerStatusRequest {
|
|
@@ -1697,10 +1700,16 @@ declare namespace Components {
|
|
|
1697
1700
|
seller_id: string;
|
|
1698
1701
|
navigation_path: string | null; // example: "ProductScreen"
|
|
1699
1702
|
navigation_params: Record<string, any> | null; // example: {product_id: "ObjectId"}
|
|
1703
|
+
type: EBannerType;
|
|
1700
1704
|
createdAt: Date;
|
|
1701
1705
|
updatedAt: Date;
|
|
1702
1706
|
}
|
|
1703
1707
|
|
|
1708
|
+
export enum EBannerType {
|
|
1709
|
+
WEB = 'WEB',
|
|
1710
|
+
APP = 'APP',
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1704
1713
|
export interface IMoySkladLinkerRequest {
|
|
1705
1714
|
updateData: {
|
|
1706
1715
|
linker_id: string;
|