@aptos-scp/scp-component-store-selling-features-domain-model 2.5.0 → 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.
@@ -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.5.0",
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",