@vita-mojo/types 1.0.25 → 1.0.26-VMOS-12775-56ce505-720-rc.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vita-mojo/types",
3
- "version": "1.0.25",
3
+ "version": "1.0.26-VMOS-12775-56ce505-720-rc.0",
4
4
  "peerDependencies": {
5
5
  "tslib": "2.4.1"
6
6
  },
@@ -29,6 +29,19 @@ export interface Deal {
29
29
  basketUUID: string;
30
30
  promotion: Promotion;
31
31
  }
32
+ export interface Adjustment {
33
+ amount: number;
34
+ depleteStock: boolean;
35
+ employee: {
36
+ uuid: string;
37
+ email: string;
38
+ };
39
+ note: string | null;
40
+ percentage: number;
41
+ reason: string;
42
+ time: string;
43
+ type: string;
44
+ }
32
45
  export interface Bundle {
33
46
  uuid: string;
34
47
  menuUUID?: string;
@@ -97,4 +110,5 @@ export interface Bundle {
97
110
  parentID?: string;
98
111
  quantity?: number;
99
112
  basketEntries?: Record<string, Partial<Bundle>>;
113
+ adjustment?: Adjustment;
100
114
  }