@aptos-scp/scp-component-store-selling-features-domain-model 1.45.1 → 1.46.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.
|
@@ -4,7 +4,7 @@ export interface ITendersConfig extends IConfigurationValues {
|
|
|
4
4
|
defaultTenderId: string;
|
|
5
5
|
tenderDefinitions: ITenderAuthCategory[];
|
|
6
6
|
}
|
|
7
|
-
export declare type ITenderAuthCategory = IAuthCategoryPaymentDevice | IAuthCategoryWallet | IAuthCategoryGiftDevice | IAuthCategoryNone | IAuthCategoryLoyaltyVoucherService | IAuthCategoryNoneCash;
|
|
7
|
+
export declare type ITenderAuthCategory = IAuthCategoryPaymentDevice | IAuthCategoryWallet | IAuthCategoryGiftDevice | IAuthCategoryNone | IAuthCategoryLoyaltyVoucherService | IAuthCategoryNoneCash | IPLCCTenderDefinition;
|
|
8
8
|
interface IAuthCategoryPaymentDevice extends IAuthCategoryAdditionalInfo {
|
|
9
9
|
}
|
|
10
10
|
interface IAuthCategoryWallet extends IAuthCategoryAdditionalInfo {
|
|
@@ -71,6 +71,14 @@ interface ICommonAuthorizedTenderDefinition extends ICommonTenderDefinitionWithR
|
|
|
71
71
|
interface ICommonTenderDefinitionWithRefundWithoutReceipt extends ICommonTenderDefinition {
|
|
72
72
|
allowRefund?: AllowRefund[];
|
|
73
73
|
}
|
|
74
|
+
interface IPLCCTenderDefinition extends ICommonTenderDefinition {
|
|
75
|
+
manualEntry?: {
|
|
76
|
+
enabled: boolean;
|
|
77
|
+
};
|
|
78
|
+
accountLookup?: {
|
|
79
|
+
enabled: boolean;
|
|
80
|
+
};
|
|
81
|
+
}
|
|
74
82
|
interface ICommonTenderDefinition {
|
|
75
83
|
tenderId: string;
|
|
76
84
|
tenderName: string;
|
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.
|
|
3
|
+
"version": "1.46.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",
|