@aptos-scp/scp-component-store-selling-features-domain-model 2.22.0 → 2.23.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.
@@ -105,6 +105,7 @@ export declare const PRINT_FISCAL_RECEIPT_EVENT: string;
105
105
  export declare const FISCAL_POST_VOID_NO_RECEIPT: string;
106
106
  export declare const PRINT_FISCAL_RETRY_EVENT: string;
107
107
  export declare const PRINT_FISCAL_PRINTER_CHANGE_RETRY_EVENT: string;
108
+ export declare const GET_RECEIPT_FISCAL_DOCUMENT_NUMBER_EVENT: string;
108
109
  export declare const QUANTITY_CHANGE_EVENT: string;
109
110
  export declare const RECEIPT_STATUS_EVENT: string;
110
111
  export declare const RECORD_CASH_DRAWER_STATUS_EVENT: string;
@@ -108,6 +108,7 @@ exports.PRINT_FISCAL_RECEIPT_EVENT = "PrintFiscalReceipt";
108
108
  exports.FISCAL_POST_VOID_NO_RECEIPT = "FiscalPostVoidNoReceipt";
109
109
  exports.PRINT_FISCAL_RETRY_EVENT = "PrintFiscalRetry";
110
110
  exports.PRINT_FISCAL_PRINTER_CHANGE_RETRY_EVENT = "PrintFiscalPrinterChangeRetry";
111
+ exports.GET_RECEIPT_FISCAL_DOCUMENT_NUMBER_EVENT = "GetReceiptFiscalDocumentNumber";
111
112
  exports.QUANTITY_CHANGE_EVENT = "QuantityChange";
112
113
  exports.RECEIPT_STATUS_EVENT = "ReceiptStatus";
113
114
  exports.RECORD_CASH_DRAWER_STATUS_EVENT = "RecordCashDrawerStatus";
@@ -459,7 +459,8 @@ export declare enum UiInputKey {
459
459
  CUSTOMER_INPUT_SCREENS = "input_customerInputScreens",
460
460
  CUSTOMER_INPUT_MODE = "input_customerInputMode",
461
461
  FORCE_FISCAL_COMPLETION = "input_forceFiscalCompletion",
462
- IS_FISCALISE_VOID = "input_isFiscaliseVoid"
462
+ IS_FISCALISE_VOID = "input_isFiscaliseVoid",
463
+ PAYMENT_FUNCTION = "input_paymentFunction"
463
464
  }
464
465
  export declare enum CollectedDataKey {
465
466
  Abort = "abort",
@@ -1086,6 +1087,13 @@ export declare enum AssignCustomerForReturnAction {
1086
1087
  export declare enum CustomerInputMode {
1087
1088
  OptInConfirmation = "OptInConfirmation"
1088
1089
  }
1090
+ export declare enum PaymentFunction {
1091
+ AccountLookup = "AccountLookup",
1092
+ AccountSummaryDisplay = "AccountSummaryDisplay",
1093
+ CustomerInput = "CustomerInput",
1094
+ DonationPrompt = "DonationPrompt",
1095
+ TenderAuthorization = "TenderAuthorization"
1096
+ }
1089
1097
  export declare const DELIVERY_CONTACT_UPDATED_EVENT: string;
1090
1098
  export declare const DELIVERY_ITEM_UPDATED_EVENT: string;
1091
1099
  export declare const PAYMENT_ACCOUNT_LOOKUP_EVENT: string;
@@ -461,6 +461,7 @@ var UiInputKey;
461
461
  UiInputKey["CUSTOMER_INPUT_MODE"] = "input_customerInputMode";
462
462
  UiInputKey["FORCE_FISCAL_COMPLETION"] = "input_forceFiscalCompletion";
463
463
  UiInputKey["IS_FISCALISE_VOID"] = "input_isFiscaliseVoid";
464
+ UiInputKey["PAYMENT_FUNCTION"] = "input_paymentFunction";
464
465
  })(UiInputKey = exports.UiInputKey || (exports.UiInputKey = {}));
465
466
  //
466
467
  // Keys for use in relaying data collectedData (qualification) and nonContextualData (action).
@@ -1092,6 +1093,14 @@ var CustomerInputMode;
1092
1093
  (function (CustomerInputMode) {
1093
1094
  CustomerInputMode["OptInConfirmation"] = "OptInConfirmation";
1094
1095
  })(CustomerInputMode = exports.CustomerInputMode || (exports.CustomerInputMode = {}));
1096
+ var PaymentFunction;
1097
+ (function (PaymentFunction) {
1098
+ PaymentFunction["AccountLookup"] = "AccountLookup";
1099
+ PaymentFunction["AccountSummaryDisplay"] = "AccountSummaryDisplay";
1100
+ PaymentFunction["CustomerInput"] = "CustomerInput";
1101
+ PaymentFunction["DonationPrompt"] = "DonationPrompt";
1102
+ PaymentFunction["TenderAuthorization"] = "TenderAuthorization";
1103
+ })(PaymentFunction = exports.PaymentFunction || (exports.PaymentFunction = {}));
1095
1104
  exports.DELIVERY_CONTACT_UPDATED_EVENT = "Delivery.ContactUpdated";
1096
1105
  exports.DELIVERY_ITEM_UPDATED_EVENT = "Delivery.ItemUpdated";
1097
1106
  exports.PAYMENT_ACCOUNT_LOOKUP_EVENT = "PaymentAccount.Lookup";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-scp/scp-component-store-selling-features-domain-model",
3
- "version": "2.22.0",
3
+ "version": "2.23.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",