@aptos-scp/scp-component-store-selling-features-domain-model 2.4.2 → 2.6.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.
|
@@ -94,6 +94,7 @@ export declare const PRICE_CHANGE_EVENT: string;
|
|
|
94
94
|
export declare const CREATE_EINVOICE_EVENT: string;
|
|
95
95
|
export declare const PRINT_RECEIPT_EVENT: string;
|
|
96
96
|
export declare const PRINT_PENDING_RECEIPT_LINES: string;
|
|
97
|
+
export declare const PRINT_PAYMENT_ACCOUNT_RECEIPT_EVENT: string;
|
|
97
98
|
export declare const PRINT_FISCAL_RECEIPT_EVENT: string;
|
|
98
99
|
export declare const FISCAL_POST_VOID_NO_RECEIPT: string;
|
|
99
100
|
export declare const PRINT_FISCAL_RETRY_EVENT: string;
|
|
@@ -97,6 +97,7 @@ exports.PRICE_CHANGE_EVENT = "PriceChange";
|
|
|
97
97
|
exports.CREATE_EINVOICE_EVENT = "CreateEInvoice";
|
|
98
98
|
exports.PRINT_RECEIPT_EVENT = "PrintReceipt";
|
|
99
99
|
exports.PRINT_PENDING_RECEIPT_LINES = "PrintPendingReceipts";
|
|
100
|
+
exports.PRINT_PAYMENT_ACCOUNT_RECEIPT_EVENT = "PrintPaymentAccountReceipt";
|
|
100
101
|
exports.PRINT_FISCAL_RECEIPT_EVENT = "PrintFiscalReceipt";
|
|
101
102
|
exports.FISCAL_POST_VOID_NO_RECEIPT = "FiscalPostVoidNoReceipt";
|
|
102
103
|
exports.PRINT_FISCAL_RETRY_EVENT = "PrintFiscalRetry";
|
|
@@ -360,6 +360,7 @@ function loadOfflineAuthorizationFields(tenderAuthorizationSessionJsonObj) {
|
|
|
360
360
|
authorizationAmount: tenderAuthorizationSessionJsonObj._offlineAuthorizationFields.authorizationAmount &&
|
|
361
361
|
new scp_component_business_core_1.Money(tenderAuthorizationSessionJsonObj._offlineAuthorizationFields.authorizationAmount.amount, tenderAuthorizationSessionJsonObj._offlineAuthorizationFields.authorizationAmount.currency),
|
|
362
362
|
originalRequestType: tenderAuthorizationSessionJsonObj._offlineAuthorizationFields.originalRequestType,
|
|
363
|
+
tenderId: tenderAuthorizationSessionJsonObj._offlineAuthorizationFields.tenderId,
|
|
363
364
|
});
|
|
364
365
|
}
|
|
365
366
|
//# sourceMappingURL=TenderAuthorizationSession.js.map
|
|
@@ -5,6 +5,7 @@ export interface IOfflineAuthorizationFields {
|
|
|
5
5
|
originalRequestType: PaymentRequestType;
|
|
6
6
|
phoneNumber: string;
|
|
7
7
|
authorizationAmount: Money;
|
|
8
|
+
tenderId: string;
|
|
8
9
|
}
|
|
9
10
|
/**
|
|
10
11
|
* Approval code validation is only currently supported based on Aurus offline approval code algorithm as follows
|
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.
|
|
3
|
+
"version": "2.6.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",
|