@mivis/petmart-api 1.2.172 → 1.2.173

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 +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.172",
3
+ "version": "1.2.173",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
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: string;
585
+ work_time?: IShopWorkTime[];
582
586
  createdAt: Date;
583
587
  updatedAt: Date;
584
588
  }