@aptos-scp/scp-component-store-selling-features-domain-model 1.41.1 → 1.41.2
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
|
-
|
|
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
|
-
|
|
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["
|
|
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["
|
|
684
|
+
CollectedDataKey["ReprintGiftReceiptLineNumbers"] = "reprintGiftReceiptLineNumbers";
|
|
685
|
+
CollectedDataKey["ReprintGiftReceiptMode"] = "reprintGiftReceiptMode";
|
|
684
686
|
CollectedDataKey["GiftItems"] = "giftItems";
|
|
685
687
|
CollectedDataKey["GiftItemForReprint"] = "giftItemForReprint";
|
|
686
688
|
CollectedDataKey["ResultCashDrawerStatusCode"] = "ResultCashDrawerStatusCode";
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { Quantity } from "@aptos-scp/scp-component-business-core";
|
|
2
|
-
import {
|
|
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.
|
|
3
|
+
"version": "1.41.2",
|
|
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",
|