@aptos-scp/scp-component-store-selling-features-domain-model 3.0.0 → 3.1.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.
@@ -12,6 +12,10 @@ export declare enum CustomerIdentifierOptions {
12
12
  AlternativeCustomerId = "AlternativeCustomerId",
13
13
  None = "None"
14
14
  }
15
+ export declare enum TaxDisplay {
16
+ Combined = "Combined",
17
+ Breakdown = "Breakdown"
18
+ }
15
19
  export interface ILoyaltyMembershipFormat {
16
20
  includeOnReceipt?: boolean;
17
21
  customMessage?: ILabel;
@@ -52,6 +56,7 @@ export interface IReceiptFormattingConfig {
52
56
  productAttributes?: IProductAttributesConfig;
53
57
  itemDescription?: IDisplayConfig;
54
58
  includeUnusedTax?: boolean;
59
+ taxDisplay?: TaxDisplay;
55
60
  }
56
61
  export interface BarcodeFormats {
57
62
  transactionReferenceNumber?: IBarcodeFormat;
@@ -12,6 +12,11 @@ var CustomerIdentifierOptions;
12
12
  CustomerIdentifierOptions["AlternativeCustomerId"] = "AlternativeCustomerId";
13
13
  CustomerIdentifierOptions["None"] = "None";
14
14
  })(CustomerIdentifierOptions = exports.CustomerIdentifierOptions || (exports.CustomerIdentifierOptions = {}));
15
+ var TaxDisplay;
16
+ (function (TaxDisplay) {
17
+ TaxDisplay["Combined"] = "Combined";
18
+ TaxDisplay["Breakdown"] = "Breakdown";
19
+ })(TaxDisplay = exports.TaxDisplay || (exports.TaxDisplay = {}));
15
20
  var ThresholdLimit;
16
21
  (function (ThresholdLimit) {
17
22
  ThresholdLimit["Minimum"] = "minimum";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-scp/scp-component-store-selling-features-domain-model",
3
- "version": "3.0.0",
3
+ "version": "3.1.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",