@aptos-scp/scp-component-store-selling-features-domain-model 1.12.1 → 1.13.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.
@@ -59,6 +59,9 @@ export interface IFeatureAccessConfig {
59
59
  byFeeType?: IFeeType;
60
60
  defaultSelection?: IDefaultSelectionForManualDiscount;
61
61
  addAttachments?: IAttachmentSettings;
62
+ issuer?: IAuthority;
63
+ issueDate?: IAppliedDate;
64
+ expirationDate?: IAppliedDate;
62
65
  }
63
66
  export interface ITranslatableMessage {
64
67
  [locale: string]: string;
@@ -195,3 +198,13 @@ export declare enum IDefaultSelectionForManualDiscount {
195
198
  Amount = "Amount",
196
199
  Percent = "Percent"
197
200
  }
201
+ export interface IAuthority {
202
+ enabled: boolean;
203
+ required: boolean;
204
+ label: ILabel;
205
+ }
206
+ export interface IAppliedDate {
207
+ enabled: boolean;
208
+ required: boolean;
209
+ dateRequired: boolean;
210
+ }
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.12.1",
3
+ "version": "1.13.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",