@aptos-scp/scp-component-store-selling-features-domain-model 2.45.1 → 2.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.
|
@@ -191,6 +191,8 @@ export declare const UPDATE_USER_PREFERRED_LANGUAGE_EVENT: string;
|
|
|
191
191
|
export declare const UPDATE_USER_PREFERENCES_EVENT: string;
|
|
192
192
|
export declare const PRINT_Z_REPORT: string;
|
|
193
193
|
export declare const PRINT_X_REPORT: string;
|
|
194
|
+
export declare const PRINT_PERIODIC_REPORT: string;
|
|
195
|
+
export declare const PRINT_PERIODIC_SUM_REPORT: string;
|
|
194
196
|
export declare const FISCAL_REPORT_STATUS: string;
|
|
195
197
|
export declare const SYNC_FISCAL_PRINTER_ABORT_EVENT: string;
|
|
196
198
|
export declare const FISCAL_PRINTER_STATUS_EVENT: string;
|
|
@@ -194,6 +194,8 @@ exports.UPDATE_USER_PREFERRED_LANGUAGE_EVENT = "UpdateUserPreferredLanguage";
|
|
|
194
194
|
exports.UPDATE_USER_PREFERENCES_EVENT = "UpdateUserPreferences";
|
|
195
195
|
exports.PRINT_Z_REPORT = "printZReport";
|
|
196
196
|
exports.PRINT_X_REPORT = "printXReport";
|
|
197
|
+
exports.PRINT_PERIODIC_REPORT = "printPeriodicReport";
|
|
198
|
+
exports.PRINT_PERIODIC_SUM_REPORT = "printPeriodicSummaryReport";
|
|
197
199
|
exports.FISCAL_REPORT_STATUS = "PrintFiscalReportStatus";
|
|
198
200
|
exports.SYNC_FISCAL_PRINTER_ABORT_EVENT = "SyncFiscalPrinterAbortEvent";
|
|
199
201
|
exports.FISCAL_PRINTER_STATUS_EVENT = "FiscalPrinterStatusEvent";
|
|
@@ -166,6 +166,7 @@ export declare enum UiInputKey {
|
|
|
166
166
|
FORFEIT_TENDER_CHANGE_CONFIRMATION = "input_forfeitTenderChange",
|
|
167
167
|
REWARD_CARD_CONFIG = "input_rewardCardConfig",
|
|
168
168
|
CUSTOMER_REWARD_CARD = "input_customerRewardCard",
|
|
169
|
+
REWARD_CARD_TENDER = "input_rewardCardTender",
|
|
169
170
|
REDEEM_CARD_NUMBER = "input_redeemCardNumber",
|
|
170
171
|
REDEEMED_REDEMPTIONS = "input_redeemedRedemptions",
|
|
171
172
|
LOYALTY_PLANS = "input_loyaltyPlans",
|
|
@@ -245,6 +246,8 @@ export declare enum UiInputKey {
|
|
|
245
246
|
ADDED_ITEM_LINE_NUMBERS = "input_addedItemLineNumbers",
|
|
246
247
|
PRINTER = "printer",
|
|
247
248
|
ReportType = "reportType",
|
|
249
|
+
FiscReportStartDate = "input_fiscReportStartDate",
|
|
250
|
+
FiscReportEndDate = "input_fiscReportEndDate",
|
|
248
251
|
PRINTER_STATUS = "input_printerStatus",
|
|
249
252
|
PRIMARY_LANGUAGE = "primaryLanguage",
|
|
250
253
|
PRINTER_INFO = "printerInfo",
|
|
@@ -771,6 +774,8 @@ export declare enum CollectedDataKey {
|
|
|
771
774
|
SupervisorOverrideLineReference = "supervisorOverrideLineReference",
|
|
772
775
|
SupervisorOverride = "supervisorOverride",
|
|
773
776
|
ReportType = "reportType",
|
|
777
|
+
FiscReportStartDate = "fiscReportStartDate",
|
|
778
|
+
FiscReportEndDate = "fiscReportEndDate",
|
|
774
779
|
SearchItemKey = "searchItemKey",
|
|
775
780
|
SearchItemKeyType = "searchItemKeyType",
|
|
776
781
|
SkipConfirmClose = "skipConfirmClose",
|
|
@@ -167,6 +167,7 @@ var UiInputKey;
|
|
|
167
167
|
UiInputKey["FORFEIT_TENDER_CHANGE_CONFIRMATION"] = "input_forfeitTenderChange";
|
|
168
168
|
UiInputKey["REWARD_CARD_CONFIG"] = "input_rewardCardConfig";
|
|
169
169
|
UiInputKey["CUSTOMER_REWARD_CARD"] = "input_customerRewardCard";
|
|
170
|
+
UiInputKey["REWARD_CARD_TENDER"] = "input_rewardCardTender";
|
|
170
171
|
UiInputKey["REDEEM_CARD_NUMBER"] = "input_redeemCardNumber";
|
|
171
172
|
UiInputKey["REDEEMED_REDEMPTIONS"] = "input_redeemedRedemptions";
|
|
172
173
|
UiInputKey["LOYALTY_PLANS"] = "input_loyaltyPlans";
|
|
@@ -246,6 +247,8 @@ var UiInputKey;
|
|
|
246
247
|
UiInputKey["ADDED_ITEM_LINE_NUMBERS"] = "input_addedItemLineNumbers";
|
|
247
248
|
UiInputKey["PRINTER"] = "printer";
|
|
248
249
|
UiInputKey["ReportType"] = "reportType";
|
|
250
|
+
UiInputKey["FiscReportStartDate"] = "input_fiscReportStartDate";
|
|
251
|
+
UiInputKey["FiscReportEndDate"] = "input_fiscReportEndDate";
|
|
249
252
|
UiInputKey["PRINTER_STATUS"] = "input_printerStatus";
|
|
250
253
|
UiInputKey["PRIMARY_LANGUAGE"] = "primaryLanguage";
|
|
251
254
|
UiInputKey["PRINTER_INFO"] = "printerInfo";
|
|
@@ -778,6 +781,8 @@ var CollectedDataKey;
|
|
|
778
781
|
CollectedDataKey["SupervisorOverrideLineReference"] = "supervisorOverrideLineReference";
|
|
779
782
|
CollectedDataKey["SupervisorOverride"] = "supervisorOverride";
|
|
780
783
|
CollectedDataKey["ReportType"] = "reportType";
|
|
784
|
+
CollectedDataKey["FiscReportStartDate"] = "fiscReportStartDate";
|
|
785
|
+
CollectedDataKey["FiscReportEndDate"] = "fiscReportEndDate";
|
|
781
786
|
CollectedDataKey["SearchItemKey"] = "searchItemKey";
|
|
782
787
|
CollectedDataKey["SearchItemKeyType"] = "searchItemKeyType";
|
|
783
788
|
CollectedDataKey["SkipConfirmClose"] = "skipConfirmClose";
|
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.
|
|
3
|
+
"version": "2.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",
|