@aptos-scp/scp-component-store-selling-features-domain-model 1.41.1 → 1.41.3

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.
@@ -237,7 +237,8 @@ export declare enum UiInputKey {
237
237
  RECEIPT_CATEGORY = "input_receiptCategory",
238
238
  RECEIPT_CATEGORIES = "input_receiptCategories",
239
239
  REPRINT_RECEIPT_COUNT = "input_reprintReceiptCount",
240
- REPRINT_GIFT_RECEIPT_OPTION = "input_reprintGiftReceiptOption",
240
+ REPRINT_GIFT_RECEIPT_LINE_NUMBERS = "input_reprintGiftReceiptLineNumbers",
241
+ REPRINT_GIFT_RECEIPT_MODE = "input_reprintGiftReceiptMode",
241
242
  RECEIPT_TYPE = "input_receiptType",
242
243
  TENDER_REFERENCE_DATA = "input_tenderReferenceData",
243
244
  RESUME_TRANSACTION = "input_resumeTransaction",
@@ -671,7 +672,8 @@ export declare enum CollectedDataKey {
671
672
  ReprintTransaction = "reprintTransaction",
672
673
  ReprintTransactionType = "reprintTransactionType",
673
674
  ReprintReceiptCount = "reprintReceiptCount",
674
- ReprintGiftReceiptOption = "reprintGiftReceiptOption",
675
+ ReprintGiftReceiptLineNumbers = "reprintGiftReceiptLineNumbers",
676
+ ReprintGiftReceiptMode = "reprintGiftReceiptMode",
675
677
  GiftItems = "giftItems",
676
678
  GiftItemForReprint = "giftItemForReprint",
677
679
  ResultCashDrawerStatusCode = "ResultCashDrawerStatusCode",
@@ -240,7 +240,8 @@ var UiInputKey;
240
240
  UiInputKey["RECEIPT_CATEGORY"] = "input_receiptCategory";
241
241
  UiInputKey["RECEIPT_CATEGORIES"] = "input_receiptCategories";
242
242
  UiInputKey["REPRINT_RECEIPT_COUNT"] = "input_reprintReceiptCount";
243
- UiInputKey["REPRINT_GIFT_RECEIPT_OPTION"] = "input_reprintGiftReceiptOption";
243
+ UiInputKey["REPRINT_GIFT_RECEIPT_LINE_NUMBERS"] = "input_reprintGiftReceiptLineNumbers";
244
+ UiInputKey["REPRINT_GIFT_RECEIPT_MODE"] = "input_reprintGiftReceiptMode";
244
245
  UiInputKey["RECEIPT_TYPE"] = "input_receiptType";
245
246
  UiInputKey["TENDER_REFERENCE_DATA"] = "input_tenderReferenceData";
246
247
  UiInputKey["RESUME_TRANSACTION"] = "input_resumeTransaction";
@@ -680,7 +681,8 @@ var CollectedDataKey;
680
681
  CollectedDataKey["ReprintTransaction"] = "reprintTransaction";
681
682
  CollectedDataKey["ReprintTransactionType"] = "reprintTransactionType";
682
683
  CollectedDataKey["ReprintReceiptCount"] = "reprintReceiptCount";
683
- CollectedDataKey["ReprintGiftReceiptOption"] = "reprintGiftReceiptOption";
684
+ CollectedDataKey["ReprintGiftReceiptLineNumbers"] = "reprintGiftReceiptLineNumbers";
685
+ CollectedDataKey["ReprintGiftReceiptMode"] = "reprintGiftReceiptMode";
684
686
  CollectedDataKey["GiftItems"] = "giftItems";
685
687
  CollectedDataKey["GiftItemForReprint"] = "giftItemForReprint";
686
688
  CollectedDataKey["ResultCashDrawerStatusCode"] = "ResultCashDrawerStatusCode";
@@ -6,3 +6,12 @@ export interface IExtensibilityForm {
6
6
  export interface IExtensibilityFormFields {
7
7
  [k: string]: any;
8
8
  }
9
+ export declare enum ExtensibilityFormTypeOfDataEnum {
10
+ StringData = "StringData",
11
+ IntegerData = "IntegerData",
12
+ BooleanData = "BooleanData",
13
+ DateData = "DateData",
14
+ TimeData = "TimeData",
15
+ DateTimeData = "DateTimeData",
16
+ Unknown = "Unknown"
17
+ }
@@ -1,3 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ var ExtensibilityFormTypeOfDataEnum;
4
+ (function (ExtensibilityFormTypeOfDataEnum) {
5
+ ExtensibilityFormTypeOfDataEnum["StringData"] = "StringData";
6
+ ExtensibilityFormTypeOfDataEnum["IntegerData"] = "IntegerData";
7
+ ExtensibilityFormTypeOfDataEnum["BooleanData"] = "BooleanData";
8
+ ExtensibilityFormTypeOfDataEnum["DateData"] = "DateData";
9
+ ExtensibilityFormTypeOfDataEnum["TimeData"] = "TimeData";
10
+ ExtensibilityFormTypeOfDataEnum["DateTimeData"] = "DateTimeData";
11
+ ExtensibilityFormTypeOfDataEnum["Unknown"] = "Unknown";
12
+ })(ExtensibilityFormTypeOfDataEnum = exports.ExtensibilityFormTypeOfDataEnum || (exports.ExtensibilityFormTypeOfDataEnum = {}));
3
13
  //# sourceMappingURL=IExtensibilityForm.js.map
@@ -3,6 +3,7 @@ function __export(m) {
3
3
  for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
4
4
  }
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ __export(require("./IExtensibilityForm"));
6
7
  __export(require("./ExtensibilityFormDataLine"));
7
8
  __export(require("./VoidedExtensibilityFormDataLineDecorator"));
8
9
  __export(require("./BaseExtensibilityFormDataLineDecorator"));
@@ -1,9 +1,5 @@
1
1
  import { Quantity } from "@aptos-scp/scp-component-business-core";
2
- import { GiftReceiptMode, ItemLookupKey } from "..";
3
- export interface IReprintGiftReceiptOption {
4
- lineNumbers: number[];
5
- giftReceiptMode: GiftReceiptMode;
6
- }
2
+ import { ItemLookupKey } from "..";
7
3
  export interface IGiftItem {
8
4
  name: string;
9
5
  itemLookupKey: ItemLookupKey;
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.41.1",
3
+ "version": "1.41.3",
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",