@mivis/petmart-api 1.2.172 → 1.2.174
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 +6 -1
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -573,12 +573,16 @@ declare namespace Components {
|
|
|
573
573
|
lng: number;
|
|
574
574
|
}
|
|
575
575
|
|
|
576
|
+
export interface IShopWorkTime {
|
|
577
|
+
time: string;
|
|
578
|
+
}
|
|
579
|
+
|
|
576
580
|
export interface IShop {
|
|
577
581
|
_id: string;
|
|
578
582
|
name: string;
|
|
579
583
|
address: IShopAddress;
|
|
580
584
|
nearest_metro_station: string;
|
|
581
|
-
work_time
|
|
585
|
+
work_time?: IShopWorkTime[];
|
|
582
586
|
createdAt: Date;
|
|
583
587
|
updatedAt: Date;
|
|
584
588
|
}
|
|
@@ -727,6 +731,7 @@ declare namespace Components {
|
|
|
727
731
|
lat: number;
|
|
728
732
|
lng: number;
|
|
729
733
|
};
|
|
734
|
+
work_time?: IShopWorkTime[];
|
|
730
735
|
}
|
|
731
736
|
|
|
732
737
|
export interface IAdminUpdateNearestPointOfCdekRequest
|