meemup-library 1.5.83 → 1.5.84
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/ICompany.d.ts +2 -0
- package/dist/interfaces/gift-card/IAccountGiftCard.d.ts +12 -0
- package/dist/interfaces/gift-card/IAccountGiftCard.js +1 -0
- package/dist/interfaces/gift-card/ICompanyGiftCardSetting.d.ts +7 -0
- package/dist/interfaces/gift-card/ICompanyGiftCardSetting.js +1 -0
- package/dist/interfaces/gift-card/IGiftCardBackgroundGroup.d.ts +6 -0
- package/dist/interfaces/gift-card/IGiftCardBackgroundGroup.js +1 -0
- package/dist/interfaces/gift-card/IGiftCardBackgroundItem.d.ts +4 -0
- package/dist/interfaces/gift-card/IGiftCardBackgroundItem.js +1 -0
- package/dist/interfaces/gift-card/IPurchaseGiftCard.d.ts +10 -0
- package/dist/interfaces/gift-card/IPurchaseGiftCard.js +1 -0
- package/package.json +3 -3
|
@@ -2,6 +2,7 @@ import IEmergencyBrake from "../IEmergencyBrake";
|
|
|
2
2
|
import ILocation from "../ILocation";
|
|
3
3
|
import ICompanyBranch from "./ICompanyBranch";
|
|
4
4
|
import ICompanyColor from "./ICompanyColor";
|
|
5
|
+
import ICompanyGiftCardSetting from "../gift-card/ICompanyGiftCardSetting";
|
|
5
6
|
import ICompanyHours from "./ICompanyHours";
|
|
6
7
|
import ICompanyReservation from "./ICompanyReservation";
|
|
7
8
|
import ICompanyRewardsProgram from "./ICompanyRewardsProgram";
|
|
@@ -49,4 +50,5 @@ export default interface ICompany {
|
|
|
49
50
|
colors: ICompanyColor;
|
|
50
51
|
seo: ICompanySeo;
|
|
51
52
|
reservation: ICompanyReservation;
|
|
53
|
+
giftCards: ICompanyGiftCardSetting;
|
|
52
54
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meemup-library",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.84",
|
|
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.84\" && git push origin "
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"/dist"
|
|
@@ -26,4 +26,4 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"dayjs": "^1.11.13"
|
|
28
28
|
}
|
|
29
|
-
}
|
|
29
|
+
}
|