meemup-library 1.3.37 → 1.3.39
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/IApiShop.d.ts +2 -0
- package/dist/interfaces/IApiShop.js +2 -1
- package/dist/interfaces/IProduct.d.ts +1 -1
- package/dist/interfaces/IProduct.js +1 -1
- package/dist/interfaces/pos/IPointOfSaleActionCashDrawer.d.ts +6 -0
- package/dist/interfaces/pos/IPointOfSaleActionCashDrawer.js +1 -0
- package/dist/interfaces/pos/IPointOfSaleActionFormCashDrawer.d.ts +8 -0
- package/dist/interfaces/pos/IPointOfSaleActionFormCashDrawer.js +6 -0
- package/dist/interfaces/pos/IPointOfSaleAddCashDrawer.d.ts +5 -0
- package/dist/interfaces/pos/IPointOfSaleAddCashDrawer.js +4 -0
- package/dist/interfaces/pos/IPointOfSaleCashDrawer.d.ts +7 -0
- package/dist/interfaces/pos/IPointOfSaleCashDrawer.js +1 -0
- package/dist/interfaces/pos/IPointOfSaleEditCashDrawer.d.ts +6 -0
- package/dist/interfaces/pos/IPointOfSaleEditCashDrawer.js +5 -0
- package/dist/types/TCashDrawerMode.d.ts +2 -0
- package/dist/types/TCashDrawerMode.js +1 -0
- package/package.json +2 -2
|
@@ -12,6 +12,7 @@ import IBaseCustomer from "./IBaseCustomer";
|
|
|
12
12
|
import IPointOfSaleSetting from "./IPointOfSaleSetting";
|
|
13
13
|
import IPointOfSaleLocalSetting from "./pos/IPointOfSaleLocalSetting";
|
|
14
14
|
import IPointOfSaleRestaurantTable from "./pos/IPointOfSaleRestaurantTable";
|
|
15
|
+
import IPointOfSaleCashDrawer from "./pos/IPointOfSaleCashDrawer";
|
|
15
16
|
interface IApiShop {
|
|
16
17
|
ok: boolean;
|
|
17
18
|
products: IProduct[];
|
|
@@ -30,6 +31,7 @@ interface IApiShop {
|
|
|
30
31
|
localSetting: IPointOfSaleLocalSetting;
|
|
31
32
|
restaurantTables: IPointOfSaleRestaurantTable[];
|
|
32
33
|
snoozes: ITextValue[];
|
|
34
|
+
cashDrawers: IPointOfSaleCashDrawer[];
|
|
33
35
|
}
|
|
34
36
|
export default IApiShop;
|
|
35
37
|
export declare const initApiShop: IApiShop;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import TCashDrawerMode from "../../types/TCashDrawerMode";
|
|
2
|
+
export default interface IPointOfSaleActionFormCashDrawer {
|
|
3
|
+
mode: TCashDrawerMode;
|
|
4
|
+
money: string;
|
|
5
|
+
reason: string;
|
|
6
|
+
openCashDrawer: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const initPointOfSaleActionFormCashDrawer: IPointOfSaleActionFormCashDrawer;
|
|
@@ -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.3.
|
|
3
|
+
"version": "1.3.39",
|
|
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.3.
|
|
14
|
+
"commit": "git add . && git commit -m \"version.1.3.39 \" && git push origin "
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"/dist"
|