meemup-library 1.3.52 → 1.3.53

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.
@@ -0,0 +1,5 @@
1
+ declare enum EnumInventoryMovementType {
2
+ INBOUND = 1,
3
+ OUTBOUND = 2
4
+ }
5
+ export default EnumInventoryMovementType;
@@ -0,0 +1,6 @@
1
+ var EnumInventoryMovementType;
2
+ (function (EnumInventoryMovementType) {
3
+ EnumInventoryMovementType[EnumInventoryMovementType["INBOUND"] = 1] = "INBOUND";
4
+ EnumInventoryMovementType[EnumInventoryMovementType["OUTBOUND"] = 2] = "OUTBOUND";
5
+ })(EnumInventoryMovementType || (EnumInventoryMovementType = {}));
6
+ export default EnumInventoryMovementType;
@@ -0,0 +1,9 @@
1
+ export default interface IManagementAddIngredientMaterial {
2
+ typeId: number;
3
+ unitId: number;
4
+ name: string;
5
+ enabled: boolean;
6
+ initialMinorValue: number;
7
+ initialMajorValue: number;
8
+ }
9
+ export declare const initManagementAddIngredientMaterial: IManagementAddIngredientMaterial;
@@ -1,4 +1,4 @@
1
- export const initManagementIngredientMaterialForm = {
1
+ export const initManagementAddIngredientMaterial = {
2
2
  name: "",
3
3
  unitId: -1,
4
4
  typeId: -1,
@@ -0,0 +1,5 @@
1
+ import IManagementAddIngredientMaterial from "./IManagementAddIngredientMaterial";
2
+ export default interface IManagementUpdateIngredientMaterial extends IManagementAddIngredientMaterial {
3
+ id: number;
4
+ }
5
+ export declare const initManagementUpdateIngredientMaterial: IManagementUpdateIngredientMaterial;
@@ -0,0 +1,2 @@
1
+ import { initManagementAddIngredientMaterial } from "./IManagementAddIngredientMaterial";
2
+ export const initManagementUpdateIngredientMaterial = Object.assign(Object.assign({}, initManagementAddIngredientMaterial), { id: -1 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.3.52",
3
+ "version": "1.3.53",
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.52 \" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.3.53 \" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"
@@ -1,9 +0,0 @@
1
- export default interface IManagementIngredientMaterialForm {
2
- typeId: number;
3
- unitId: number;
4
- name: string;
5
- enabled: boolean;
6
- initialMinorValue: number;
7
- initialMajorValue: number;
8
- }
9
- export declare const initManagementIngredientMaterialForm: IManagementIngredientMaterialForm;