@aptos-scp/scp-component-store-selling-features-domain-model 1.38.0 → 1.40.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.
- package/lib/domain/model/Constants.d.ts +3 -0
- package/lib/domain/model/Constants.js +3 -0
- package/lib/domain/model/IReceipt.d.ts +1 -0
- package/lib/domain/model/fiscalDevice/FiscalDeviceStatusLine.js +2 -0
- package/lib/domain/model/receipt/BaseReceiptLineDecorator.d.ts +1 -0
- package/lib/domain/model/receipt/BaseReceiptLineDecorator.js +3 -0
- package/lib/domain/model/receipt/IReceiptLine.d.ts +1 -0
- package/lib/domain/model/receipt/ReceiptLine.d.ts +3 -1
- package/lib/domain/model/receipt/ReceiptLine.js +10 -4
- package/package.json +3 -3
|
@@ -141,6 +141,7 @@ export declare enum UiInputKey {
|
|
|
141
141
|
FISCAL_DEVICE_ACTIVITY_SUCCESSFUL = "fiscalDeviceActivitySuccessful",
|
|
142
142
|
FISCAL_DEVICE_ERROR_CODE = "fiscalDeviceErrorCode",
|
|
143
143
|
FISCAL_DEVICE_ERROR_DESCRIPTION = "fiscalDeviceErrorDescription",
|
|
144
|
+
FISCAL_DEVICE_USER_MESSAGE = "fiscalDeviceUserMessage",
|
|
144
145
|
FISCAL_DEVICE_INFORMATION = "fiscalDeviceInformation",
|
|
145
146
|
FISCAL_TRANSACTION_INFORMATION = "fiscalTransactionInformation",
|
|
146
147
|
FISCAL_VARIANCE_INFORMATION = "fiscalVarianceInformation",
|
|
@@ -502,6 +503,7 @@ export declare enum CollectedDataKey {
|
|
|
502
503
|
TaxExemptDisplayName = "taxExemptDisplayName",
|
|
503
504
|
TaxExemptAuthorities = "taxExemptAuthorities",
|
|
504
505
|
ExemptedItemLineReference = "exemptedItemLineReference",
|
|
506
|
+
ExtensibilityFormName = "extensibilityFormName",
|
|
505
507
|
CertificateAttachmentLineReference = "certificateAttachmentLineReference",
|
|
506
508
|
ExpiredPasswordChange = "expiredPasswordChange",
|
|
507
509
|
FastDiscount = "fastDiscount",
|
|
@@ -537,6 +539,7 @@ export declare enum CollectedDataKey {
|
|
|
537
539
|
FiscalVarianceInformation = "FiscalVarianceInformation",
|
|
538
540
|
FiscalDeviceErrorCode = "fiscalDeviceErrorCode",
|
|
539
541
|
FiscalDeviceErrorDescription = "fiscalDeviceErrorDescription",
|
|
542
|
+
FiscalDeviceUserMessage = "fiscalDeviceUserMessage",
|
|
540
543
|
ForcedAuthorizationApproval = "ForcedAuthorizationApproval",
|
|
541
544
|
ForfeitChangeConfirmation = "ForfeitChangeConfirmation",
|
|
542
545
|
FooterScanCodes = "FooterScanCodes",
|
|
@@ -144,6 +144,7 @@ var UiInputKey;
|
|
|
144
144
|
UiInputKey["FISCAL_DEVICE_ACTIVITY_SUCCESSFUL"] = "fiscalDeviceActivitySuccessful";
|
|
145
145
|
UiInputKey["FISCAL_DEVICE_ERROR_CODE"] = "fiscalDeviceErrorCode";
|
|
146
146
|
UiInputKey["FISCAL_DEVICE_ERROR_DESCRIPTION"] = "fiscalDeviceErrorDescription";
|
|
147
|
+
UiInputKey["FISCAL_DEVICE_USER_MESSAGE"] = "fiscalDeviceUserMessage";
|
|
147
148
|
UiInputKey["FISCAL_DEVICE_INFORMATION"] = "fiscalDeviceInformation";
|
|
148
149
|
UiInputKey["FISCAL_TRANSACTION_INFORMATION"] = "fiscalTransactionInformation";
|
|
149
150
|
UiInputKey["FISCAL_VARIANCE_INFORMATION"] = "fiscalVarianceInformation";
|
|
@@ -511,6 +512,7 @@ var CollectedDataKey;
|
|
|
511
512
|
CollectedDataKey["TaxExemptDisplayName"] = "taxExemptDisplayName";
|
|
512
513
|
CollectedDataKey["TaxExemptAuthorities"] = "taxExemptAuthorities";
|
|
513
514
|
CollectedDataKey["ExemptedItemLineReference"] = "exemptedItemLineReference";
|
|
515
|
+
CollectedDataKey["ExtensibilityFormName"] = "extensibilityFormName";
|
|
514
516
|
CollectedDataKey["CertificateAttachmentLineReference"] = "certificateAttachmentLineReference";
|
|
515
517
|
CollectedDataKey["ExpiredPasswordChange"] = "expiredPasswordChange";
|
|
516
518
|
CollectedDataKey["FastDiscount"] = "fastDiscount";
|
|
@@ -546,6 +548,7 @@ var CollectedDataKey;
|
|
|
546
548
|
CollectedDataKey["FiscalVarianceInformation"] = "FiscalVarianceInformation";
|
|
547
549
|
CollectedDataKey["FiscalDeviceErrorCode"] = "fiscalDeviceErrorCode";
|
|
548
550
|
CollectedDataKey["FiscalDeviceErrorDescription"] = "fiscalDeviceErrorDescription";
|
|
551
|
+
CollectedDataKey["FiscalDeviceUserMessage"] = "fiscalDeviceUserMessage";
|
|
549
552
|
CollectedDataKey["ForcedAuthorizationApproval"] = "ForcedAuthorizationApproval";
|
|
550
553
|
CollectedDataKey["ForfeitChangeConfirmation"] = "ForfeitChangeConfirmation";
|
|
551
554
|
CollectedDataKey["FooterScanCodes"] = "FooterScanCodes";
|
|
@@ -26,6 +26,7 @@ export interface ReceiptCount {
|
|
|
26
26
|
export interface Receipt extends CoreReceipt {
|
|
27
27
|
isTemplate?: boolean;
|
|
28
28
|
htmlDocument?: string;
|
|
29
|
+
extensibilityFormName?: string;
|
|
29
30
|
}
|
|
30
31
|
export interface ReceiptTemplate extends Receipt {
|
|
31
32
|
receiptCategory: ReceiptCategory;
|
|
@@ -33,12 +33,14 @@ class FiscalDeviceStatusLine extends BaseTransactionLine_1.BaseTransactionLine {
|
|
|
33
33
|
successful: false,
|
|
34
34
|
errorCode: undefined,
|
|
35
35
|
errorDescription: undefined,
|
|
36
|
+
userMessage: undefined,
|
|
36
37
|
};
|
|
37
38
|
fiscalDeviceActivityResult.successful = (_a = collectedData.get(Constants_1.CollectedDataKey.FiscalDeviceActivitySuccessful), (_a !== null && _a !== void 0 ? _a : false));
|
|
38
39
|
if (!fiscalDeviceActivityResult.successful ||
|
|
39
40
|
collectedData.get(Constants_1.CollectedDataKey.FiscalDeviceErrorCode) === scp_types_commerce_devices_1.FiscalResponseCode.Warning) {
|
|
40
41
|
fiscalDeviceActivityResult.errorCode = collectedData.get(Constants_1.CollectedDataKey.FiscalDeviceErrorCode);
|
|
41
42
|
fiscalDeviceActivityResult.errorDescription = collectedData.get(Constants_1.CollectedDataKey.FiscalDeviceErrorDescription);
|
|
43
|
+
fiscalDeviceActivityResult.userMessage = collectedData.get(Constants_1.CollectedDataKey.FiscalDeviceUserMessage);
|
|
42
44
|
}
|
|
43
45
|
const transactionLineReference = collectedData.get(Constants_1.CollectedDataKey.TransactionLineReference);
|
|
44
46
|
const fiscalDeviceInformation = collectedData.get(Constants_1.CollectedDataKey.FiscalDeviceInformation);
|
|
@@ -41,6 +41,7 @@ export declare abstract class BaseReceiptLineDecorator extends BaseLineDecorator
|
|
|
41
41
|
get fiscalId(): string;
|
|
42
42
|
get printerSerialNumber(): string;
|
|
43
43
|
get duplicateCopy(): boolean;
|
|
44
|
+
get extensibilityFormName(): string;
|
|
44
45
|
get revenueStamp(): IMoney;
|
|
45
46
|
get reprintCount(): number;
|
|
46
47
|
get documentTarget(): string;
|
|
@@ -93,6 +93,9 @@ class BaseReceiptLineDecorator extends BaseLineDecorator_1.BaseLineDecorator {
|
|
|
93
93
|
get duplicateCopy() {
|
|
94
94
|
return this.decoratedTransactionLine.duplicateCopy;
|
|
95
95
|
}
|
|
96
|
+
get extensibilityFormName() {
|
|
97
|
+
return this.decoratedTransactionLine.extensibilityFormName;
|
|
98
|
+
}
|
|
96
99
|
get revenueStamp() {
|
|
97
100
|
return this.decoratedTransactionLine.revenueStamp;
|
|
98
101
|
}
|
|
@@ -30,6 +30,7 @@ export interface IReceiptLine extends ITransactionLine, ITransactionLineReferenc
|
|
|
30
30
|
readonly fiscalId: string;
|
|
31
31
|
readonly printerSerialNumber: string;
|
|
32
32
|
readonly duplicateCopy?: boolean;
|
|
33
|
+
readonly extensibilityFormName?: string;
|
|
33
34
|
readonly revenueStamp?: IMoney;
|
|
34
35
|
readonly reprintCount?: number;
|
|
35
36
|
readonly documentTarget?: string;
|
|
@@ -30,6 +30,7 @@ export declare class ReceiptLine extends ReceiptOptionLine implements IReceiptLi
|
|
|
30
30
|
private _fiscalId?;
|
|
31
31
|
private _printerSerialNumber?;
|
|
32
32
|
private _duplicateCopy?;
|
|
33
|
+
private _extensibilityFormName?;
|
|
33
34
|
private _revenueStamp?;
|
|
34
35
|
private _reprintCount?;
|
|
35
36
|
private _eInvoiceReference?;
|
|
@@ -75,13 +76,14 @@ export declare class ReceiptLine extends ReceiptOptionLine implements IReceiptLi
|
|
|
75
76
|
get printerSerialNumber(): string;
|
|
76
77
|
set printerSerialNumber(printerSerialNumber: string);
|
|
77
78
|
get duplicateCopy(): boolean;
|
|
79
|
+
get extensibilityFormName(): string;
|
|
78
80
|
get revenueStamp(): Money;
|
|
79
81
|
get reprintCount(): number;
|
|
80
82
|
get eInvoiceReference(): string;
|
|
81
83
|
get barcodeFormats(): BarcodeFormats;
|
|
82
84
|
get footerScanCodes(): FooterScanCode[];
|
|
83
85
|
get receiptCategories(): ReceiptCategory[];
|
|
84
|
-
protected constructor(lineNumber: number, lineType: string, receiptType: ReceiptType, receipt: Receipt, emailAddress: string, printer: string, countryCode: string, phoneNumber: string, emailStatus: ReceiptStatus, printerStatus: ReceiptStatus, smsStatus: ReceiptStatus, receiptLineNumber: number, transactionLineReference: ITransactionLineReferenceType, receiptCategory: ReceiptCategory, receiptIdentifier: number, originalReceiptCategory: ReceiptCategory, isLastReceipt?: boolean, preventReprint?: boolean, fiscalCode?: string, fiscalStatus?: string, fiscalYReceiptNumber?: string, fiscalReceiptAmount?: string, fiscalReceiptDate?: string, fiscalReceiptTime?: string, zReportNumber?: string, fiscalId?: string, printerSerialNumber?: string, duplicateCopy?: boolean, revenueStamp?: Money, reprintCount?: number, documentTarget?: string, eInvoiceReference?: string, barcodeFormats?: BarcodeFormats, footerScanCodes?: FooterScanCode[], receiptCategories?: ReceiptCategory[]);
|
|
86
|
+
protected constructor(lineNumber: number, lineType: string, receiptType: ReceiptType, receipt: Receipt, emailAddress: string, printer: string, countryCode: string, phoneNumber: string, emailStatus: ReceiptStatus, printerStatus: ReceiptStatus, smsStatus: ReceiptStatus, receiptLineNumber: number, transactionLineReference: ITransactionLineReferenceType, receiptCategory: ReceiptCategory, receiptIdentifier: number, originalReceiptCategory: ReceiptCategory, isLastReceipt?: boolean, preventReprint?: boolean, fiscalCode?: string, fiscalStatus?: string, fiscalYReceiptNumber?: string, fiscalReceiptAmount?: string, fiscalReceiptDate?: string, fiscalReceiptTime?: string, zReportNumber?: string, fiscalId?: string, printerSerialNumber?: string, duplicateCopy?: boolean, revenueStamp?: Money, reprintCount?: number, documentTarget?: string, eInvoiceReference?: string, barcodeFormats?: BarcodeFormats, footerScanCodes?: FooterScanCode[], receiptCategories?: ReceiptCategory[], extensibilityFormName?: string);
|
|
85
87
|
protected newTransactionLine(): BaseTransactionLine;
|
|
86
88
|
}
|
|
87
89
|
export declare function isReceiptLine(transactionLine: ITransactionLine): transactionLine is ReceiptLine;
|
|
@@ -7,7 +7,7 @@ exports.RECEIPT_LINE_TYPE = "Receipt";
|
|
|
7
7
|
exports.RECEIPT_STATUS_LINE_TYPE = "ReceiptStatus";
|
|
8
8
|
class ReceiptLine extends ReceiptOptionLine_1.ReceiptOptionLine {
|
|
9
9
|
// Since the constructor is only called from the create methods it is made protected to prevent use by others.
|
|
10
|
-
constructor(lineNumber, lineType, receiptType, receipt, emailAddress, printer, countryCode, phoneNumber, emailStatus, printerStatus, smsStatus, receiptLineNumber, transactionLineReference, receiptCategory, receiptIdentifier, originalReceiptCategory, isLastReceipt, preventReprint, fiscalCode, fiscalStatus, fiscalYReceiptNumber, fiscalReceiptAmount, fiscalReceiptDate, fiscalReceiptTime, zReportNumber, fiscalId, printerSerialNumber, duplicateCopy, revenueStamp, reprintCount, documentTarget, eInvoiceReference, barcodeFormats, footerScanCodes, receiptCategories) {
|
|
10
|
+
constructor(lineNumber, lineType, receiptType, receipt, emailAddress, printer, countryCode, phoneNumber, emailStatus, printerStatus, smsStatus, receiptLineNumber, transactionLineReference, receiptCategory, receiptIdentifier, originalReceiptCategory, isLastReceipt, preventReprint, fiscalCode, fiscalStatus, fiscalYReceiptNumber, fiscalReceiptAmount, fiscalReceiptDate, fiscalReceiptTime, zReportNumber, fiscalId, printerSerialNumber, duplicateCopy, revenueStamp, reprintCount, documentTarget, eInvoiceReference, barcodeFormats, footerScanCodes, receiptCategories, extensibilityFormName) {
|
|
11
11
|
super(lineNumber, lineType, receiptType, emailAddress, printer, receiptCategory, originalReceiptCategory, countryCode, phoneNumber);
|
|
12
12
|
this._receipt = receipt;
|
|
13
13
|
this._emailStatus = emailStatus;
|
|
@@ -34,6 +34,7 @@ class ReceiptLine extends ReceiptOptionLine_1.ReceiptOptionLine {
|
|
|
34
34
|
this._barcodeFormats = barcodeFormats;
|
|
35
35
|
this._footerScanCodes = footerScanCodes;
|
|
36
36
|
this._receiptCategories = receiptCategories;
|
|
37
|
+
this._extensibilityFormName = extensibilityFormName;
|
|
37
38
|
}
|
|
38
39
|
/**
|
|
39
40
|
* The create method is called by the transaction line factory to create an instance and initialize it from the
|
|
@@ -74,13 +75,14 @@ class ReceiptLine extends ReceiptOptionLine_1.ReceiptOptionLine {
|
|
|
74
75
|
const fiscalId = collectedData.get(Constants_1.CollectedDataKey.FiscalId);
|
|
75
76
|
const printerSerialNumber = collectedData.get(Constants_1.CollectedDataKey.PrinterSerialNumber);
|
|
76
77
|
const duplicateCopy = !!collectedData.get(Constants_1.CollectedDataKey.DuplicateFlag);
|
|
78
|
+
const extensibilityFormName = collectedData.get(Constants_1.CollectedDataKey.ExtensibilityFormName);
|
|
77
79
|
const revenueStamp = collectedData.get(Constants_1.CollectedDataKey.RevenueStamp);
|
|
78
80
|
const reprintCount = collectedData.get(Constants_1.CollectedDataKey.ReprintCount);
|
|
79
81
|
const eInvoiceReference = collectedData.get(Constants_1.CollectedDataKey.EInvoiceReference);
|
|
80
82
|
const barcodeFormats = collectedData.get(Constants_1.CollectedDataKey.BarcodeFormats);
|
|
81
83
|
const footerScanCodes = collectedData.get(Constants_1.CollectedDataKey.FooterScanCodes);
|
|
82
84
|
const receiptCategories = collectedData.get(Constants_1.CollectedDataKey.ReceiptCategories);
|
|
83
|
-
const receiptLine = new ReceiptLine(lineNumber, lineType, receiptType, receipt, emailAddress, printer, countryCode, phoneNumber, emailStatus, printerStatus, smsStatus, receiptLineNumber, transactionLineReference, receiptCategory, receiptIdentifier, originalReceiptCategory, isLastReceipt, preventReprint, fiscalCode, fiscalStatus, fiscalYReceiptNumber, fiscalReceiptAmount, fiscalReceiptDate, fiscalReceiptTime, zReportNumber, fiscalId, printerSerialNumber, duplicateCopy, revenueStamp, reprintCount, documentTarget, eInvoiceReference, barcodeFormats, footerScanCodes, receiptCategories);
|
|
85
|
+
const receiptLine = new ReceiptLine(lineNumber, lineType, receiptType, receipt, emailAddress, printer, countryCode, phoneNumber, emailStatus, printerStatus, smsStatus, receiptLineNumber, transactionLineReference, receiptCategory, receiptIdentifier, originalReceiptCategory, isLastReceipt, preventReprint, fiscalCode, fiscalStatus, fiscalYReceiptNumber, fiscalReceiptAmount, fiscalReceiptDate, fiscalReceiptTime, zReportNumber, fiscalId, printerSerialNumber, duplicateCopy, revenueStamp, reprintCount, documentTarget, eInvoiceReference, barcodeFormats, footerScanCodes, receiptCategories, extensibilityFormName);
|
|
84
86
|
return receiptLine;
|
|
85
87
|
}
|
|
86
88
|
static createFromJsonObject(transactionLineJsonObj) {
|
|
@@ -113,13 +115,14 @@ class ReceiptLine extends ReceiptOptionLine_1.ReceiptOptionLine {
|
|
|
113
115
|
const fiscalId = transactionLineJsonObj._fiscalId;
|
|
114
116
|
const printerSerialNumber = transactionLineJsonObj._printerSerialNumber;
|
|
115
117
|
const duplicateCopy = transactionLineJsonObj._duplicateCopy;
|
|
118
|
+
const extensibilityFormName = transactionLineJsonObj._extensibilityFormName;
|
|
116
119
|
const revenueStamp = transactionLineJsonObj._revenueStamp;
|
|
117
120
|
const reprintCount = transactionLineJsonObj._reprintCount;
|
|
118
121
|
const eInvoiceReference = transactionLineJsonObj._eInvoiceReference;
|
|
119
122
|
const barcodeFormats = transactionLineJsonObj._barcodeFormats;
|
|
120
123
|
const footerScanCodes = transactionLineJsonObj._footerScanCodes;
|
|
121
124
|
const receiptCategories = transactionLineJsonObj._receiptCategories;
|
|
122
|
-
const receiptLine = new ReceiptLine(lineNumber, lineType, receiptType, receipt, emailAddress, printer, countryCode, phoneNumber, emailStatus, printerStatus, smsStatus, receiptLineNumber, transactionLineReference, receiptCategory, receiptIdentifier, originalReceiptCategory, isLastReceipt, preventReprint, fiscalCode, fiscalStatus, fiscalYReceiptNumber, fiscalReceiptAmount, fiscalReceiptDate, fiscalReceiptTime, zReportNumber, fiscalId, printerSerialNumber, duplicateCopy, revenueStamp, reprintCount, documentTarget, eInvoiceReference, barcodeFormats, footerScanCodes, receiptCategories);
|
|
125
|
+
const receiptLine = new ReceiptLine(lineNumber, lineType, receiptType, receipt, emailAddress, printer, countryCode, phoneNumber, emailStatus, printerStatus, smsStatus, receiptLineNumber, transactionLineReference, receiptCategory, receiptIdentifier, originalReceiptCategory, isLastReceipt, preventReprint, fiscalCode, fiscalStatus, fiscalYReceiptNumber, fiscalReceiptAmount, fiscalReceiptDate, fiscalReceiptTime, zReportNumber, fiscalId, printerSerialNumber, duplicateCopy, revenueStamp, reprintCount, documentTarget, eInvoiceReference, barcodeFormats, footerScanCodes, receiptCategories, extensibilityFormName);
|
|
123
126
|
receiptLine.loadFromJsonObject(transactionLineJsonObj);
|
|
124
127
|
return receiptLine;
|
|
125
128
|
}
|
|
@@ -201,6 +204,9 @@ class ReceiptLine extends ReceiptOptionLine_1.ReceiptOptionLine {
|
|
|
201
204
|
get duplicateCopy() {
|
|
202
205
|
return this._duplicateCopy;
|
|
203
206
|
}
|
|
207
|
+
get extensibilityFormName() {
|
|
208
|
+
return this._extensibilityFormName;
|
|
209
|
+
}
|
|
204
210
|
get revenueStamp() {
|
|
205
211
|
return this._revenueStamp;
|
|
206
212
|
}
|
|
@@ -220,7 +226,7 @@ class ReceiptLine extends ReceiptOptionLine_1.ReceiptOptionLine {
|
|
|
220
226
|
return this._receiptCategories;
|
|
221
227
|
}
|
|
222
228
|
newTransactionLine() {
|
|
223
|
-
return new ReceiptLine(this.lineNumber, this.lineType, this.receiptType, this._receipt, this.emailAddress, this.printer, this.countryCode, this.phoneNumber, this._emailStatus, this._printerStatus, this._smsStatus, this._receiptLineNumber, this._transactionLineReference, this.receiptCategory, this._receiptIdentifier, this.originalReceiptCategory, this._isLastReceipt, this._preventReprint, this._fiscalCode, this._fiscalStatus, this._fiscalYReceiptNumber, this._fiscalReceiptAmount, this._fiscalReceiptDate, this._fiscalReceiptTime, this._zReportNumber, this._fiscalId, this._printerSerialNumber, this._duplicateCopy, this._revenueStamp, this._reprintCount, this._documentTarget, this._eInvoiceReference, this._barcodeFormats, this._footerScanCodes, this._receiptCategories);
|
|
229
|
+
return new ReceiptLine(this.lineNumber, this.lineType, this.receiptType, this._receipt, this.emailAddress, this.printer, this.countryCode, this.phoneNumber, this._emailStatus, this._printerStatus, this._smsStatus, this._receiptLineNumber, this._transactionLineReference, this.receiptCategory, this._receiptIdentifier, this.originalReceiptCategory, this._isLastReceipt, this._preventReprint, this._fiscalCode, this._fiscalStatus, this._fiscalYReceiptNumber, this._fiscalReceiptAmount, this._fiscalReceiptDate, this._fiscalReceiptTime, this._zReportNumber, this._fiscalId, this._printerSerialNumber, this._duplicateCopy, this._revenueStamp, this._reprintCount, this._documentTarget, this._eInvoiceReference, this._barcodeFormats, this._footerScanCodes, this._receiptCategories, this._extensibilityFormName);
|
|
224
230
|
}
|
|
225
231
|
}
|
|
226
232
|
exports.ReceiptLine = ReceiptLine;
|
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.40.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",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@aptos-scp/scp-types-client-registration": "^1.4.0",
|
|
63
63
|
"@aptos-scp/scp-types-core-config": "^2.2.1",
|
|
64
64
|
"@aptos-scp/scp-types-commerce-devices": "^3.3.0",
|
|
65
|
-
"@aptos-scp/scp-types-commerce-transaction": "^1.
|
|
65
|
+
"@aptos-scp/scp-types-commerce-transaction": "^1.67.0",
|
|
66
66
|
"@aptos-scp/scp-types-customer": "^3.7.0",
|
|
67
67
|
"@aptos-scp/scp-types-einvoice": "^1.17.0",
|
|
68
68
|
"@aptos-scp/scp-types-inventory": "^2.0.0",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@aptos-scp/scp-component-user": "^1.4.0",
|
|
85
85
|
"@aptos-scp/scp-types-client-registration": "^1.4.0",
|
|
86
86
|
"@aptos-scp/scp-types-commerce-devices": "^3.6.0",
|
|
87
|
-
"@aptos-scp/scp-types-commerce-transaction": "^1.
|
|
87
|
+
"@aptos-scp/scp-types-commerce-transaction": "^1.67.0",
|
|
88
88
|
"@aptos-scp/scp-types-core": "^1.0.5",
|
|
89
89
|
"@aptos-scp/scp-types-core-config": "^2.2.1",
|
|
90
90
|
"@aptos-scp/scp-types-currency-conversion": "^1.2.0",
|