meemup-library 1.5.97 → 1.5.98

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.
@@ -1,6 +1,7 @@
1
- export default interface ICompanyTimeZone {
1
+ export default interface CompanyTimeZone {
2
2
  id: number;
3
3
  key: string;
4
4
  name: string;
5
5
  offset: number;
6
+ value?: string;
6
7
  }
@@ -0,0 +1,5 @@
1
+ export default interface CompanyTimes {
2
+ preparationTime: number;
3
+ pickupTime: number;
4
+ deliveryTime: number;
5
+ }
@@ -0,0 +1,2 @@
1
+ ;
2
+ export {};
@@ -1,14 +1,15 @@
1
+ import ICompanyGiftCardSetting from "../gift-card/ICompanyGiftCardSetting";
1
2
  import IEmergencyBrake from "../IEmergencyBrake";
2
3
  import ILocation from "../ILocation";
4
+ import CompanyTimes from "./CompanyTimes";
3
5
  import ICompanyBranch from "./ICompanyBranch";
4
6
  import ICompanyColor from "./ICompanyColor";
5
- import ICompanyGiftCardSetting from "../gift-card/ICompanyGiftCardSetting";
6
7
  import ICompanyHours from "./ICompanyHours";
7
8
  import ICompanyReservation from "./ICompanyReservation";
8
9
  import ICompanyRewardsProgram from "./ICompanyRewardsProgram";
9
10
  import ICompanySeo from "./ICompanySeo";
10
11
  import ICompanyTemplate from "./ICompanyTemplate";
11
- import ICompanyTimeZone from "./ICompanyTimeZone";
12
+ import CompanyTimeZone from "./CompanyTimeZone";
12
13
  import IShopSocialNetwork from "./IShopSocialNetwork";
13
14
  export default interface ICompany {
14
15
  id: number;
@@ -44,11 +45,12 @@ export default interface ICompany {
44
45
  hours: ICompanyHours;
45
46
  branches: ICompanyBranch[];
46
47
  ownerCompany: number;
47
- timeZone: ICompanyTimeZone;
48
+ timeZone: CompanyTimeZone;
48
49
  rewardsProgram: ICompanyRewardsProgram;
49
50
  template: ICompanyTemplate;
50
51
  colors: ICompanyColor;
51
52
  seo: ICompanySeo;
52
53
  reservation: ICompanyReservation;
53
54
  giftCards: ICompanyGiftCardSetting;
55
+ times: CompanyTimes;
54
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.5.97",
3
+ "version": "1.5.98",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "remove:one": "rimraf dist",
12
12
  "remove:two": "rimraf ./src/dist",
13
13
  "test": "echo \"Error: no test specified\" && exit 1",
14
- "commit": "git add . && git commit -m \"version.1.5.97\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.5.98\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"