@aptos-scp/scp-component-store-selling-features-domain-model 1.8.0 → 1.9.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.
@@ -106,3 +106,4 @@ export * from "./taxLottery/";
106
106
  export * from "./lottery/";
107
107
  export * from "./ITransactionMetadataPersistanceObject";
108
108
  export * from "./IReceipt";
109
+ export * from "./storeGoals/";
@@ -0,0 +1,12 @@
1
+ import { Money } from "@aptos-scp/scp-component-business-core";
2
+ export interface IStoreGoalsSummary {
3
+ retailLocationId: string;
4
+ todaysGoals: IStoreGoals;
5
+ weekToDateGoals: IStoreGoals;
6
+ monthToDateGoals: IStoreGoals;
7
+ }
8
+ export interface IStoreGoals {
9
+ fromBusinessDayDate: Date;
10
+ toBusinessDayDate: Date;
11
+ goalAmount?: Money;
12
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=StoreGoalsSummary.js.map
@@ -0,0 +1 @@
1
+ export * from "./StoreGoalsSummary";
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-scp/scp-component-store-selling-features-domain-model",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "This component library provides the common components to handle the coordination of processing the business events from the UI.",
5
5
  "private": false,
6
6
  "license": "SEE LICENSE IN LICENSE.md",