meemup-library 1.5.97 → 1.5.99
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/dist/interfaces/cdn/{ICompanyTimeZone.d.ts → CompanyTimeZone.d.ts} +2 -1
- package/dist/interfaces/cdn/CompanyTimes.d.ts +5 -0
- package/dist/interfaces/cdn/CompanyTimes.js +2 -0
- package/dist/interfaces/cdn/ICompany.d.ts +5 -3
- package/dist/interfaces/pos/IPointOfSaleLocalSetting.d.ts +1 -0
- package/dist/interfaces/pos/IPointOfSaleLocalSetting.js +2 -1
- package/package.json +2 -2
- /package/dist/interfaces/cdn/{ICompanyTimeZone.js → CompanyTimeZone.js} +0 -0
|
@@ -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
|
|
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:
|
|
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
|
}
|
|
@@ -74,6 +74,7 @@ interface IPointOfSaleLocalSetting {
|
|
|
74
74
|
printService: boolean;
|
|
75
75
|
cashDrawers: IPointOfSaleLocalSettingCashDrawer[];
|
|
76
76
|
defaultCashDrawerId: number | null;
|
|
77
|
+
useSignalRAuth: boolean;
|
|
77
78
|
}
|
|
78
79
|
export default IPointOfSaleLocalSetting;
|
|
79
80
|
export declare const initPointOfSaleLocalSetting: IPointOfSaleLocalSetting;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meemup-library",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.99",
|
|
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.
|
|
14
|
+
"commit": "git add . && git commit -m \"version.1.5.99\" && git push origin "
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"/dist"
|
|
File without changes
|