@aptos-scp/scp-component-store-selling-features-domain-model 1.0.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/LICENSE.md +1 -0
- package/README.md +96 -0
- package/lib/config/DiTypes.d.ts +6 -0
- package/lib/config/DiTypes.js +10 -0
- package/lib/config/ErrorCodes.d.ts +10 -0
- package/lib/config/ErrorCodes.js +14 -0
- package/lib/config/index.d.ts +3 -0
- package/lib/config/index.js +9 -0
- package/lib/config/inversify/binding-helpers.d.ts +3 -0
- package/lib/config/inversify/binding-helpers.js +7 -0
- package/lib/config/inversify/index.d.ts +3 -0
- package/lib/config/inversify/index.js +9 -0
- package/lib/config/inversify/inversify.app.config.d.ts +19 -0
- package/lib/config/inversify/inversify.app.config.js +45 -0
- package/lib/config/inversify/inversify.terminal.config/index.d.ts +1 -0
- package/lib/config/inversify/inversify.terminal.config/index.js +7 -0
- package/lib/config/inversify/inversify.terminal.config/transaction-services.config.d.ts +11 -0
- package/lib/config/inversify/inversify.terminal.config/transaction-services.config.js +30 -0
- package/lib/domain/UIBusinessEventTypes.d.ts +305 -0
- package/lib/domain/UIBusinessEventTypes.js +313 -0
- package/lib/domain/index.d.ts +5 -0
- package/lib/domain/index.js +10 -0
- package/lib/domain/model/AddressVerification.d.ts +21 -0
- package/lib/domain/model/AddressVerification.js +3 -0
- package/lib/domain/model/ApplicationControlTransaction.d.ts +13 -0
- package/lib/domain/model/ApplicationControlTransaction.js +47 -0
- package/lib/domain/model/AtcudCodePrefixData.d.ts +19 -0
- package/lib/domain/model/AtcudCodePrefixData.js +3 -0
- package/lib/domain/model/BaseLineDecorator.d.ts +83 -0
- package/lib/domain/model/BaseLineDecorator.js +216 -0
- package/lib/domain/model/BaseTransactionLine.d.ts +71 -0
- package/lib/domain/model/BaseTransactionLine.js +183 -0
- package/lib/domain/model/CashDrawerDetail.d.ts +21 -0
- package/lib/domain/model/CashDrawerDetail.js +3 -0
- package/lib/domain/model/Constants.d.ts +977 -0
- package/lib/domain/model/Constants.js +985 -0
- package/lib/domain/model/CorruptedTransaction.d.ts +16 -0
- package/lib/domain/model/CorruptedTransaction.js +58 -0
- package/lib/domain/model/Coupon.d.ts +8 -0
- package/lib/domain/model/Coupon.js +3 -0
- package/lib/domain/model/CreateEinvoiceLine.d.ts +32 -0
- package/lib/domain/model/CreateEinvoiceLine.js +71 -0
- package/lib/domain/model/Customer.d.ts +387 -0
- package/lib/domain/model/Customer.js +320 -0
- package/lib/domain/model/CustomerServiceTransaction.d.ts +12 -0
- package/lib/domain/model/CustomerServiceTransaction.js +39 -0
- package/lib/domain/model/Department.d.ts +15 -0
- package/lib/domain/model/Department.js +3 -0
- package/lib/domain/model/EmailVerification.d.ts +24 -0
- package/lib/domain/model/EmailVerification.js +35 -0
- package/lib/domain/model/Employee.d.ts +80 -0
- package/lib/domain/model/Employee.js +73 -0
- package/lib/domain/model/EndOfTransactionTenderingSession.d.ts +39 -0
- package/lib/domain/model/EndOfTransactionTenderingSession.js +89 -0
- package/lib/domain/model/ExchangeRates.d.ts +13 -0
- package/lib/domain/model/ExchangeRates.js +8 -0
- package/lib/domain/model/FiscalControlTransaction.d.ts +12 -0
- package/lib/domain/model/FiscalControlTransaction.js +43 -0
- package/lib/domain/model/FulfillmentGroup.d.ts +35 -0
- package/lib/domain/model/FulfillmentGroup.js +137 -0
- package/lib/domain/model/IAppLocalFeaturesStorage.d.ts +78 -0
- package/lib/domain/model/IAppLocalFeaturesStorage.js +3 -0
- package/lib/domain/model/ICreateEinvoiceLine.d.ts +9 -0
- package/lib/domain/model/ICreateEinvoiceLine.js +3 -0
- package/lib/domain/model/IEmployeeDiscount.d.ts +15 -0
- package/lib/domain/model/IEmployeeDiscount.js +3 -0
- package/lib/domain/model/IFiscalTransactionNumberMaintainer.d.ts +10 -0
- package/lib/domain/model/IFiscalTransactionNumberMaintainer.js +8 -0
- package/lib/domain/model/IInvoiceOperation.d.ts +10 -0
- package/lib/domain/model/IInvoiceOperation.js +8 -0
- package/lib/domain/model/ILastRetailTransactionInfo.d.ts +13 -0
- package/lib/domain/model/ILastRetailTransactionInfo.js +3 -0
- package/lib/domain/model/ILastTransactionStatus.d.ts +5 -0
- package/lib/domain/model/ILastTransactionStatus.js +3 -0
- package/lib/domain/model/ILoyaltyVoucher.d.ts +28 -0
- package/lib/domain/model/ILoyaltyVoucher.js +9 -0
- package/lib/domain/model/IPrinterInfo.d.ts +6 -0
- package/lib/domain/model/IPrinterInfo.js +3 -0
- package/lib/domain/model/ISequence.d.ts +8 -0
- package/lib/domain/model/ISequence.js +3 -0
- package/lib/domain/model/IServiceResultLine.d.ts +4 -0
- package/lib/domain/model/IServiceResultLine.js +3 -0
- package/lib/domain/model/ISingleUseCoupon.d.ts +22 -0
- package/lib/domain/model/ISingleUseCoupon.js +38 -0
- package/lib/domain/model/ITransactionMetadataPersistanceObject.d.ts +12 -0
- package/lib/domain/model/ITransactionMetadataPersistanceObject.js +3 -0
- package/lib/domain/model/Inventory.d.ts +156 -0
- package/lib/domain/model/Inventory.js +78 -0
- package/lib/domain/model/ItemHandlingSession.d.ts +40 -0
- package/lib/domain/model/ItemHandlingSession.js +131 -0
- package/lib/domain/model/LoyaltyMembership.d.ts +153 -0
- package/lib/domain/model/LoyaltyMembership.js +23 -0
- package/lib/domain/model/MerchandiseTransaction.d.ts +310 -0
- package/lib/domain/model/MerchandiseTransaction.js +1299 -0
- package/lib/domain/model/MetricsLogs.d.ts +41 -0
- package/lib/domain/model/MetricsLogs.js +3 -0
- package/lib/domain/model/MunicipalFiscalCode.d.ts +25 -0
- package/lib/domain/model/MunicipalFiscalCode.js +3 -0
- package/lib/domain/model/NoSaleTransaction.d.ts +13 -0
- package/lib/domain/model/NoSaleTransaction.js +49 -0
- package/lib/domain/model/Order.d.ts +67 -0
- package/lib/domain/model/Order.js +190 -0
- package/lib/domain/model/OrderTotals.d.ts +44 -0
- package/lib/domain/model/OrderTotals.js +76 -0
- package/lib/domain/model/Organization.d.ts +99 -0
- package/lib/domain/model/Organization.js +3 -0
- package/lib/domain/model/PrepaidTender.d.ts +14 -0
- package/lib/domain/model/PrepaidTender.js +3 -0
- package/lib/domain/model/ReceiptSession.d.ts +87 -0
- package/lib/domain/model/ReceiptSession.js +206 -0
- package/lib/domain/model/ReprintReceiptTransaction.d.ts +49 -0
- package/lib/domain/model/ReprintReceiptTransaction.js +179 -0
- package/lib/domain/model/ResumeTransactionSession.d.ts +22 -0
- package/lib/domain/model/ResumeTransactionSession.js +56 -0
- package/lib/domain/model/RetailTransaction.d.ts +127 -0
- package/lib/domain/model/RetailTransaction.js +556 -0
- package/lib/domain/model/Sendsale.d.ts +4 -0
- package/lib/domain/model/Sendsale.js +3 -0
- package/lib/domain/model/StoreItem.d.ts +175 -0
- package/lib/domain/model/StoreItem.js +750 -0
- package/lib/domain/model/StoredValueCardSession.d.ts +29 -0
- package/lib/domain/model/StoredValueCardSession.js +65 -0
- package/lib/domain/model/StoredValueCertificateSession.d.ts +47 -0
- package/lib/domain/model/StoredValueCertificateSession.js +153 -0
- package/lib/domain/model/SubscriptionTokenSession.d.ts +22 -0
- package/lib/domain/model/SubscriptionTokenSession.js +60 -0
- package/lib/domain/model/Subscriptions.d.ts +12 -0
- package/lib/domain/model/Subscriptions.js +3 -0
- package/lib/domain/model/TaxRefundControlTransaction.d.ts +13 -0
- package/lib/domain/model/TaxRefundControlTransaction.js +50 -0
- package/lib/domain/model/TenderAuthorizationSession.d.ts +102 -0
- package/lib/domain/model/TenderAuthorizationSession.js +337 -0
- package/lib/domain/model/TenderControlTransaction.d.ts +30 -0
- package/lib/domain/model/TenderControlTransaction.js +138 -0
- package/lib/domain/model/TenderHandlingSession.d.ts +100 -0
- package/lib/domain/model/TenderHandlingSession.js +379 -0
- package/lib/domain/model/TenderType.d.ts +161 -0
- package/lib/domain/model/TenderType.js +1317 -0
- package/lib/domain/model/TerminalControlTransaction.d.ts +14 -0
- package/lib/domain/model/TerminalControlTransaction.js +55 -0
- package/lib/domain/model/TerminalSession.d.ts +49 -0
- package/lib/domain/model/TerminalSession.js +122 -0
- package/lib/domain/model/TillControlTransaction.d.ts +20 -0
- package/lib/domain/model/TillControlTransaction.js +79 -0
- package/lib/domain/model/TillSession.d.ts +67 -0
- package/lib/domain/model/TillSession.js +222 -0
- package/lib/domain/model/TransactionFlowState.d.ts +26 -0
- package/lib/domain/model/TransactionFlowState.js +72 -0
- package/lib/domain/model/TransactionReferenceLine.d.ts +112 -0
- package/lib/domain/model/TransactionReferenceLine.js +323 -0
- package/lib/domain/model/User.d.ts +115 -0
- package/lib/domain/model/User.js +210 -0
- package/lib/domain/model/UserSession.d.ts +36 -0
- package/lib/domain/model/UserSession.js +186 -0
- package/lib/domain/model/UserTransaction.d.ts +12 -0
- package/lib/domain/model/UserTransaction.js +38 -0
- package/lib/domain/model/VoidInterfaces.d.ts +15 -0
- package/lib/domain/model/VoidInterfaces.js +23 -0
- package/lib/domain/model/cashDrawer/CashDrawerRequestLine.d.ts +17 -0
- package/lib/domain/model/cashDrawer/CashDrawerRequestLine.js +50 -0
- package/lib/domain/model/cashDrawer/CashDrawerSession.d.ts +67 -0
- package/lib/domain/model/cashDrawer/CashDrawerSession.js +211 -0
- package/lib/domain/model/cashDrawer/CashDrawerStatusChangeLine.d.ts +30 -0
- package/lib/domain/model/cashDrawer/CashDrawerStatusChangeLine.js +86 -0
- package/lib/domain/model/cashDrawer/ICashDrawerRequestLine.d.ts +6 -0
- package/lib/domain/model/cashDrawer/ICashDrawerRequestLine.js +3 -0
- package/lib/domain/model/cashDrawer/ICashDrawerStatusChangeLine.d.ts +13 -0
- package/lib/domain/model/cashDrawer/ICashDrawerStatusChangeLine.js +3 -0
- package/lib/domain/model/cashDrawer/index.d.ts +5 -0
- package/lib/domain/model/cashDrawer/index.js +9 -0
- package/lib/domain/model/configuration/ConfigurationUtils.d.ts +3 -0
- package/lib/domain/model/configuration/ConfigurationUtils.js +8 -0
- package/lib/domain/model/configuration/DataEntryRule.d.ts +31 -0
- package/lib/domain/model/configuration/DataEntryRule.js +303 -0
- package/lib/domain/model/configuration/I18nReceiptFormattingInterface.d.ts +38 -0
- package/lib/domain/model/configuration/I18nReceiptFormattingInterface.js +3 -0
- package/lib/domain/model/configuration/I18nTaxFreeConfig.d.ts +11 -0
- package/lib/domain/model/configuration/I18nTaxFreeConfig.js +3 -0
- package/lib/domain/model/configuration/IAccessPolicyConfig.d.ts +5 -0
- package/lib/domain/model/configuration/IAccessPolicyConfig.js +3 -0
- package/lib/domain/model/configuration/IAdapterPoliciesConfig.d.ts +24 -0
- package/lib/domain/model/configuration/IAdapterPoliciesConfig.js +13 -0
- package/lib/domain/model/configuration/IConditionalAttributeBehaviorRuleConfig.d.ts +32 -0
- package/lib/domain/model/configuration/IConditionalAttributeBehaviorRuleConfig.js +8 -0
- package/lib/domain/model/configuration/ICustomerConfig.d.ts +31 -0
- package/lib/domain/model/configuration/ICustomerConfig.js +15 -0
- package/lib/domain/model/configuration/IDataEntryRuleConfig.d.ts +66 -0
- package/lib/domain/model/configuration/IDataEntryRuleConfig.js +22 -0
- package/lib/domain/model/configuration/IDiscountAttributesConfig .d.ts +26 -0
- package/lib/domain/model/configuration/IDiscountAttributesConfig .js +8 -0
- package/lib/domain/model/configuration/IDiscountBehaviorsConfig.d.ts +27 -0
- package/lib/domain/model/configuration/IDiscountBehaviorsConfig.js +21 -0
- package/lib/domain/model/configuration/IDonationBehaviorsConfig.d.ts +9 -0
- package/lib/domain/model/configuration/IDonationBehaviorsConfig.js +3 -0
- package/lib/domain/model/configuration/IFeatureAccessConfig.d.ts +186 -0
- package/lib/domain/model/configuration/IFeatureAccessConfig.js +51 -0
- package/lib/domain/model/configuration/IFeesConfig.d.ts +109 -0
- package/lib/domain/model/configuration/IFeesConfig.js +86 -0
- package/lib/domain/model/configuration/IPrinterTypeConfig.d.ts +25 -0
- package/lib/domain/model/configuration/IPrinterTypeConfig.js +3 -0
- package/lib/domain/model/configuration/IProductInquiryBehaviorsConfig.d.ts +8 -0
- package/lib/domain/model/configuration/IProductInquiryBehaviorsConfig.js +8 -0
- package/lib/domain/model/configuration/IReasonCodesConfig.d.ts +16 -0
- package/lib/domain/model/configuration/IReasonCodesConfig.js +3 -0
- package/lib/domain/model/configuration/IReceiptConfig.d.ts +64 -0
- package/lib/domain/model/configuration/IReceiptConfig.js +24 -0
- package/lib/domain/model/configuration/IReceiptFormattingConfig.d.ts +155 -0
- package/lib/domain/model/configuration/IReceiptFormattingConfig.js +27 -0
- package/lib/domain/model/configuration/IReceiptStylingConfig.d.ts +52 -0
- package/lib/domain/model/configuration/IReceiptStylingConfig.js +18 -0
- package/lib/domain/model/configuration/IReserveInventoryConfig.d.ts +4 -0
- package/lib/domain/model/configuration/IReserveInventoryConfig.js +8 -0
- package/lib/domain/model/configuration/ISelfCheckoutModeBehaviorsConfig.d.ts +14 -0
- package/lib/domain/model/configuration/ISelfCheckoutModeBehaviorsConfig.js +3 -0
- package/lib/domain/model/configuration/ISequenceConfig.d.ts +44 -0
- package/lib/domain/model/configuration/ISequenceConfig.js +26 -0
- package/lib/domain/model/configuration/IStoreOperationsBehavior.d.ts +7 -0
- package/lib/domain/model/configuration/IStoreOperationsBehavior.js +8 -0
- package/lib/domain/model/configuration/IStoreShippingMethodConfig.d.ts +21 -0
- package/lib/domain/model/configuration/IStoreShippingMethodConfig.js +3 -0
- package/lib/domain/model/configuration/ITaxBehaviorConfig.d.ts +14 -0
- package/lib/domain/model/configuration/ITaxBehaviorConfig.js +3 -0
- package/lib/domain/model/configuration/ITaxRefundConfig.d.ts +8 -0
- package/lib/domain/model/configuration/ITaxRefundConfig.js +3 -0
- package/lib/domain/model/configuration/ITendersConfig.d.ts +88 -0
- package/lib/domain/model/configuration/ITendersConfig.js +22 -0
- package/lib/domain/model/configuration/Ii18n.d.ts +4 -0
- package/lib/domain/model/configuration/Ii18n.js +3 -0
- package/lib/domain/model/configuration/TaxLottery.d.ts +4 -0
- package/lib/domain/model/configuration/TaxLottery.js +8 -0
- package/lib/domain/model/configuration/index.d.ts +30 -0
- package/lib/domain/model/configuration/index.js +25 -0
- package/lib/domain/model/customer/CreateCustomerLine.d.ts +151 -0
- package/lib/domain/model/customer/CreateCustomerLine.js +312 -0
- package/lib/domain/model/customer/CustomerLine.d.ts +43 -0
- package/lib/domain/model/customer/CustomerLine.js +109 -0
- package/lib/domain/model/customer/ICreateCustomerLine.d.ts +16 -0
- package/lib/domain/model/customer/ICreateCustomerLine.js +3 -0
- package/lib/domain/model/customer/ICustomerI18nFormats.d.ts +126 -0
- package/lib/domain/model/customer/ICustomerI18nFormats.js +67 -0
- package/lib/domain/model/customer/ICustomerLine.d.ts +8 -0
- package/lib/domain/model/customer/ICustomerLine.js +3 -0
- package/lib/domain/model/customer/ITaxCustomerLine.d.ts +46 -0
- package/lib/domain/model/customer/ITaxCustomerLine.js +3 -0
- package/lib/domain/model/customer/IUpdateCustomerLine.d.ts +30 -0
- package/lib/domain/model/customer/IUpdateCustomerLine.js +3 -0
- package/lib/domain/model/customer/TaxCustomerLine.d.ts +105 -0
- package/lib/domain/model/customer/TaxCustomerLine.js +252 -0
- package/lib/domain/model/customer/UpdateCustomerLine.d.ts +148 -0
- package/lib/domain/model/customer/UpdateCustomerLine.js +296 -0
- package/lib/domain/model/customer/index.d.ts +9 -0
- package/lib/domain/model/customer/index.js +11 -0
- package/lib/domain/model/digitalSignature/DigitalSignatureFailureLine.d.ts +11 -0
- package/lib/domain/model/digitalSignature/DigitalSignatureFailureLine.js +33 -0
- package/lib/domain/model/digitalSignature/index.d.ts +1 -0
- package/lib/domain/model/digitalSignature/index.js +7 -0
- package/lib/domain/model/discounts/BaseManualDiscountLine.d.ts +119 -0
- package/lib/domain/model/discounts/BaseManualDiscountLine.js +435 -0
- package/lib/domain/model/discounts/BaseManualDiscountLineDecorator.d.ts +42 -0
- package/lib/domain/model/discounts/BaseManualDiscountLineDecorator.js +107 -0
- package/lib/domain/model/discounts/BasePromotionCouponLine.d.ts +22 -0
- package/lib/domain/model/discounts/BasePromotionCouponLine.js +45 -0
- package/lib/domain/model/discounts/BasePromotionCouponLineDecorator.d.ts +15 -0
- package/lib/domain/model/discounts/BasePromotionCouponLineDecorator.js +38 -0
- package/lib/domain/model/discounts/ExpiredCouponOverrideLine.d.ts +27 -0
- package/lib/domain/model/discounts/ExpiredCouponOverrideLine.js +54 -0
- package/lib/domain/model/discounts/IManualDiscountLine.d.ts +33 -0
- package/lib/domain/model/discounts/IManualDiscountLine.js +3 -0
- package/lib/domain/model/discounts/IPromotionCouponLine.d.ts +10 -0
- package/lib/domain/model/discounts/IPromotionCouponLine.js +3 -0
- package/lib/domain/model/discounts/LoyaltyActivityDiscountLineTotalDecorator.d.ts +15 -0
- package/lib/domain/model/discounts/LoyaltyActivityDiscountLineTotalDecorator.js +32 -0
- package/lib/domain/model/discounts/LoyaltyDiscountLine.d.ts +52 -0
- package/lib/domain/model/discounts/LoyaltyDiscountLine.js +131 -0
- package/lib/domain/model/discounts/LoyaltyDiscountLineTotalDecorator.d.ts +26 -0
- package/lib/domain/model/discounts/LoyaltyDiscountLineTotalDecorator.js +66 -0
- package/lib/domain/model/discounts/ManualDiscountLineModificationDecorator.d.ts +49 -0
- package/lib/domain/model/discounts/ManualDiscountLineModificationDecorator.js +143 -0
- package/lib/domain/model/discounts/ManualDiscountLineTotalDecorator.d.ts +15 -0
- package/lib/domain/model/discounts/ManualDiscountLineTotalDecorator.js +32 -0
- package/lib/domain/model/discounts/ManualItemDiscountLine.d.ts +27 -0
- package/lib/domain/model/discounts/ManualItemDiscountLine.js +53 -0
- package/lib/domain/model/discounts/ManualTransactionDiscountLine.d.ts +22 -0
- package/lib/domain/model/discounts/ManualTransactionDiscountLine.js +40 -0
- package/lib/domain/model/discounts/ModifyManualDiscountLine.d.ts +29 -0
- package/lib/domain/model/discounts/ModifyManualDiscountLine.js +62 -0
- package/lib/domain/model/discounts/PromotionCouponLine.d.ts +22 -0
- package/lib/domain/model/discounts/PromotionCouponLine.js +59 -0
- package/lib/domain/model/discounts/VoidedDiscountLineDecorator.d.ts +15 -0
- package/lib/domain/model/discounts/VoidedDiscountLineDecorator.js +38 -0
- package/lib/domain/model/discounts/VoidedLoyaltyDiscountLineDecorator.d.ts +18 -0
- package/lib/domain/model/discounts/VoidedLoyaltyDiscountLineDecorator.js +46 -0
- package/lib/domain/model/discounts/VoidedPromotionCouponLineDecorator.d.ts +13 -0
- package/lib/domain/model/discounts/VoidedPromotionCouponLineDecorator.js +32 -0
- package/lib/domain/model/discounts/employee/EmployeeDiscountLine.d.ts +17 -0
- package/lib/domain/model/discounts/employee/EmployeeDiscountLine.js +43 -0
- package/lib/domain/model/discounts/employee/index.d.ts +1 -0
- package/lib/domain/model/discounts/employee/index.js +7 -0
- package/lib/domain/model/discounts/index.d.ts +19 -0
- package/lib/domain/model/discounts/index.js +23 -0
- package/lib/domain/model/discounts/lineTypes.d.ts +12 -0
- package/lib/domain/model/discounts/lineTypes.js +30 -0
- package/lib/domain/model/donation/BaseDonationLineDecorator.d.ts +16 -0
- package/lib/domain/model/donation/BaseDonationLineDecorator.js +38 -0
- package/lib/domain/model/donation/DonationLine.d.ts +43 -0
- package/lib/domain/model/donation/DonationLine.js +102 -0
- package/lib/domain/model/donation/IDonationLine.d.ts +9 -0
- package/lib/domain/model/donation/IDonationLine.js +3 -0
- package/lib/domain/model/donation/VoidedDonationLineDecorator.d.ts +17 -0
- package/lib/domain/model/donation/VoidedDonationLineDecorator.js +43 -0
- package/lib/domain/model/donation/index.d.ts +4 -0
- package/lib/domain/model/donation/index.js +9 -0
- package/lib/domain/model/employeeCustomer/BaseEmployeeCustomerLineDecorator.d.ts +13 -0
- package/lib/domain/model/employeeCustomer/BaseEmployeeCustomerLineDecorator.js +32 -0
- package/lib/domain/model/employeeCustomer/EmployeeCustomerLine.d.ts +39 -0
- package/lib/domain/model/employeeCustomer/EmployeeCustomerLine.js +98 -0
- package/lib/domain/model/employeeCustomer/IEmployeeCustomerLine.d.ts +8 -0
- package/lib/domain/model/employeeCustomer/IEmployeeCustomerLine.js +3 -0
- package/lib/domain/model/employeeCustomer/VoidedEmployeeCustomerLineDecorator.d.ts +15 -0
- package/lib/domain/model/employeeCustomer/VoidedEmployeeCustomerLineDecorator.js +38 -0
- package/lib/domain/model/employeeCustomer/index.d.ts +4 -0
- package/lib/domain/model/employeeCustomer/index.js +9 -0
- package/lib/domain/model/extensibilityForm/ExtensibilityFormDataLine.d.ts +26 -0
- package/lib/domain/model/extensibilityForm/ExtensibilityFormDataLine.js +74 -0
- package/lib/domain/model/extensibilityForm/IExtensibilityForm.d.ts +8 -0
- package/lib/domain/model/extensibilityForm/IExtensibilityForm.js +3 -0
- package/lib/domain/model/extensibilityForm/index.d.ts +2 -0
- package/lib/domain/model/extensibilityForm/index.js +7 -0
- package/lib/domain/model/fee/BaseFeeLineDecorator.d.ts +68 -0
- package/lib/domain/model/fee/BaseFeeLineDecorator.js +194 -0
- package/lib/domain/model/fee/FeeLine.d.ts +179 -0
- package/lib/domain/model/fee/FeeLine.js +660 -0
- package/lib/domain/model/fee/FeeLineBaseTaxAdjustmentDecorator.d.ts +18 -0
- package/lib/domain/model/fee/FeeLineBaseTaxAdjustmentDecorator.js +52 -0
- package/lib/domain/model/fee/FeeLineChangeQuantityDecorator.d.ts +14 -0
- package/lib/domain/model/fee/FeeLineChangeQuantityDecorator.js +35 -0
- package/lib/domain/model/fee/FeeLineExtendedAmountDecorator.d.ts +38 -0
- package/lib/domain/model/fee/FeeLineExtendedAmountDecorator.js +134 -0
- package/lib/domain/model/fee/FeeLineOriginalPricingAdjustmentDecorator.d.ts +22 -0
- package/lib/domain/model/fee/FeeLineOriginalPricingAdjustmentDecorator.js +82 -0
- package/lib/domain/model/fee/FeeLinePricingExtendedAmountDecorator.d.ts +22 -0
- package/lib/domain/model/fee/FeeLinePricingExtendedAmountDecorator.js +82 -0
- package/lib/domain/model/fee/FeeLineTaxExemptDecorator.d.ts +24 -0
- package/lib/domain/model/fee/FeeLineTaxExemptDecorator.js +67 -0
- package/lib/domain/model/fee/FeeLineTaxOverrideDecorator.d.ts +21 -0
- package/lib/domain/model/fee/FeeLineTaxOverrideDecorator.js +63 -0
- package/lib/domain/model/fee/FeeQuantityChangeLine.d.ts +19 -0
- package/lib/domain/model/fee/FeeQuantityChangeLine.js +52 -0
- package/lib/domain/model/fee/IFeeLine.d.ts +104 -0
- package/lib/domain/model/fee/IFeeLine.js +3 -0
- package/lib/domain/model/fee/VoidedFeeLineDecorator.d.ts +15 -0
- package/lib/domain/model/fee/VoidedFeeLineDecorator.js +38 -0
- package/lib/domain/model/fee/index.d.ts +12 -0
- package/lib/domain/model/fee/index.js +17 -0
- package/lib/domain/model/fiscalDevice/FiscalDeviceManagementLine.d.ts +34 -0
- package/lib/domain/model/fiscalDevice/FiscalDeviceManagementLine.js +69 -0
- package/lib/domain/model/fiscalDevice/FiscalDeviceManagementRetryLine.d.ts +15 -0
- package/lib/domain/model/fiscalDevice/FiscalDeviceManagementRetryLine.js +45 -0
- package/lib/domain/model/fiscalDevice/FiscalDeviceStatusLine.d.ts +35 -0
- package/lib/domain/model/fiscalDevice/FiscalDeviceStatusLine.js +87 -0
- package/lib/domain/model/fiscalDevice/index.d.ts +3 -0
- package/lib/domain/model/fiscalDevice/index.js +9 -0
- package/lib/domain/model/foreignCurrency/ExchangeRateManualEntryLine.d.ts +29 -0
- package/lib/domain/model/foreignCurrency/ExchangeRateManualEntryLine.js +67 -0
- package/lib/domain/model/foreignCurrency/index.d.ts +1 -0
- package/lib/domain/model/foreignCurrency/index.js +7 -0
- package/lib/domain/model/geoLocation.d.ts +23 -0
- package/lib/domain/model/geoLocation.js +3 -0
- package/lib/domain/model/giftCard/BalanceInquiryLine.d.ts +34 -0
- package/lib/domain/model/giftCard/BalanceInquiryLine.js +86 -0
- package/lib/domain/model/giftCard/index.d.ts +1 -0
- package/lib/domain/model/giftCard/index.js +7 -0
- package/lib/domain/model/index.d.ts +108 -0
- package/lib/domain/model/index.js +95 -0
- package/lib/domain/model/inventory/ReserveInventoryLine.d.ts +32 -0
- package/lib/domain/model/inventory/ReserveInventoryLine.js +76 -0
- package/lib/domain/model/inventory/index.d.ts +1 -0
- package/lib/domain/model/inventory/index.js +7 -0
- package/lib/domain/model/item/BaseItemLineDecorator.d.ts +148 -0
- package/lib/domain/model/item/BaseItemLineDecorator.js +400 -0
- package/lib/domain/model/item/BasePriceChangeLineDecorator.d.ts +20 -0
- package/lib/domain/model/item/BasePriceChangeLineDecorator.js +50 -0
- package/lib/domain/model/item/IAllLinePricingAdjustments.d.ts +32 -0
- package/lib/domain/model/item/IAllLinePricingAdjustments.js +66 -0
- package/lib/domain/model/item/IHardSoftStopItemInfo.d.ts +11 -0
- package/lib/domain/model/item/IHardSoftStopItemInfo.js +3 -0
- package/lib/domain/model/item/IItemLine.d.ts +313 -0
- package/lib/domain/model/item/IItemLine.js +7 -0
- package/lib/domain/model/item/ISerializedPriceCalculationResultsWithSource.d.ts +45 -0
- package/lib/domain/model/item/ISerializedPriceCalculationResultsWithSource.js +3 -0
- package/lib/domain/model/item/ItemLine.d.ts +303 -0
- package/lib/domain/model/item/ItemLine.js +1169 -0
- package/lib/domain/model/item/ItemLineBaseDiscountDecorator.d.ts +75 -0
- package/lib/domain/model/item/ItemLineBaseDiscountDecorator.js +178 -0
- package/lib/domain/model/item/ItemLineBaseTaxAdjustmentDecorator.d.ts +19 -0
- package/lib/domain/model/item/ItemLineBaseTaxAdjustmentDecorator.js +51 -0
- package/lib/domain/model/item/ItemLineCommentReceiptDecorator.d.ts +17 -0
- package/lib/domain/model/item/ItemLineCommentReceiptDecorator.js +40 -0
- package/lib/domain/model/item/ItemLineExtendedAmountDecorator.d.ts +30 -0
- package/lib/domain/model/item/ItemLineExtendedAmountDecorator.js +124 -0
- package/lib/domain/model/item/ItemLineExtensibilityFormDataDecorator.d.ts +18 -0
- package/lib/domain/model/item/ItemLineExtensibilityFormDataDecorator.js +43 -0
- package/lib/domain/model/item/ItemLineGiftIssueDecorator.d.ts +17 -0
- package/lib/domain/model/item/ItemLineGiftIssueDecorator.js +53 -0
- package/lib/domain/model/item/ItemLineGiftReceiptDecorator.d.ts +15 -0
- package/lib/domain/model/item/ItemLineGiftReceiptDecorator.js +37 -0
- package/lib/domain/model/item/ItemLineManualDiscountDecorator.d.ts +57 -0
- package/lib/domain/model/item/ItemLineManualDiscountDecorator.js +198 -0
- package/lib/domain/model/item/ItemLineNonFinancialRewardDecorator.d.ts +40 -0
- package/lib/domain/model/item/ItemLineNonFinancialRewardDecorator.js +116 -0
- package/lib/domain/model/item/ItemLineOriginalAdjustmentDecorator.d.ts +13 -0
- package/lib/domain/model/item/ItemLineOriginalAdjustmentDecorator.js +54 -0
- package/lib/domain/model/item/ItemLinePriceChangeDecorator.d.ts +18 -0
- package/lib/domain/model/item/ItemLinePriceChangeDecorator.js +47 -0
- package/lib/domain/model/item/ItemLinePromotionDecorator.d.ts +45 -0
- package/lib/domain/model/item/ItemLinePromotionDecorator.js +142 -0
- package/lib/domain/model/item/ItemLineQuantityChangeDecorator.d.ts +18 -0
- package/lib/domain/model/item/ItemLineQuantityChangeDecorator.js +57 -0
- package/lib/domain/model/item/ItemLineReasonCodeChangeDecorator.d.ts +16 -0
- package/lib/domain/model/item/ItemLineReasonCodeChangeDecorator.js +49 -0
- package/lib/domain/model/item/ItemLineRegularPriceDecorator.d.ts +21 -0
- package/lib/domain/model/item/ItemLineRegularPriceDecorator.js +58 -0
- package/lib/domain/model/item/ItemLineReserveInventoryDecorator.d.ts +17 -0
- package/lib/domain/model/item/ItemLineReserveInventoryDecorator.js +42 -0
- package/lib/domain/model/item/ItemLineRewardDecorator.d.ts +39 -0
- package/lib/domain/model/item/ItemLineRewardDecorator.js +115 -0
- package/lib/domain/model/item/ItemLineSalePriceDecorator.d.ts +19 -0
- package/lib/domain/model/item/ItemLineSalePriceDecorator.js +51 -0
- package/lib/domain/model/item/ItemLineSalespersonDecorator.d.ts +17 -0
- package/lib/domain/model/item/ItemLineSalespersonDecorator.js +44 -0
- package/lib/domain/model/item/ItemLineSendSaleDecorator.d.ts +16 -0
- package/lib/domain/model/item/ItemLineSendSaleDecorator.js +39 -0
- package/lib/domain/model/item/ItemLineSubscriptionDecorator.d.ts +17 -0
- package/lib/domain/model/item/ItemLineSubscriptionDecorator.js +40 -0
- package/lib/domain/model/item/ItemLineTaxExemptDecorator.d.ts +21 -0
- package/lib/domain/model/item/ItemLineTaxExemptDecorator.js +64 -0
- package/lib/domain/model/item/ItemLineTaxOverrideDecorator.d.ts +19 -0
- package/lib/domain/model/item/ItemLineTaxOverrideDecorator.js +59 -0
- package/lib/domain/model/item/ItemOrderCancellationLine.d.ts +27 -0
- package/lib/domain/model/item/ItemOrderCancellationLine.js +65 -0
- package/lib/domain/model/item/ItemPriceChangeLine.d.ts +44 -0
- package/lib/domain/model/item/ItemPriceChangeLine.js +131 -0
- package/lib/domain/model/item/ItemQuantityChangeLine.d.ts +31 -0
- package/lib/domain/model/item/ItemQuantityChangeLine.js +93 -0
- package/lib/domain/model/item/ReasonCodeChangeLine.d.ts +32 -0
- package/lib/domain/model/item/ReasonCodeChangeLine.js +83 -0
- package/lib/domain/model/item/ReservedOrderItemLineCancellationDecorator.d.ts +19 -0
- package/lib/domain/model/item/ReservedOrderItemLineCancellationDecorator.js +52 -0
- package/lib/domain/model/item/VoidedItemLineDecorator.d.ts +28 -0
- package/lib/domain/model/item/VoidedItemLineDecorator.js +65 -0
- package/lib/domain/model/item/VoidedPriceChangeLineDecorator.d.ts +15 -0
- package/lib/domain/model/item/VoidedPriceChangeLineDecorator.js +38 -0
- package/lib/domain/model/item/index.d.ts +37 -0
- package/lib/domain/model/item/index.js +41 -0
- package/lib/domain/model/lottery/TaxLotteryAddLine.d.ts +24 -0
- package/lib/domain/model/lottery/TaxLotteryAddLine.js +54 -0
- package/lib/domain/model/lottery/TaxLotteryModificationLine.d.ts +26 -0
- package/lib/domain/model/lottery/TaxLotteryModificationLine.js +61 -0
- package/lib/domain/model/lottery/TaxLotteryVoidLine.d.ts +28 -0
- package/lib/domain/model/lottery/TaxLotteryVoidLine.js +66 -0
- package/lib/domain/model/lottery/index.d.ts +3 -0
- package/lib/domain/model/lottery/index.js +9 -0
- package/lib/domain/model/loyaltyMembership/LoyaltyEnrollmentLine.d.ts +46 -0
- package/lib/domain/model/loyaltyMembership/LoyaltyEnrollmentLine.js +105 -0
- package/lib/domain/model/loyaltyMembership/LoyaltyMembershipLine.d.ts +34 -0
- package/lib/domain/model/loyaltyMembership/LoyaltyMembershipLine.js +117 -0
- package/lib/domain/model/loyaltyMembership/index.d.ts +2 -0
- package/lib/domain/model/loyaltyMembership/index.js +8 -0
- package/lib/domain/model/mixedBasket/IMixedBasket.d.ts +4 -0
- package/lib/domain/model/mixedBasket/IMixedBasket.js +3 -0
- package/lib/domain/model/mixedBasket/MixedBasketSession.d.ts +21 -0
- package/lib/domain/model/mixedBasket/MixedBasketSession.js +55 -0
- package/lib/domain/model/mixedBasket/index.d.ts +2 -0
- package/lib/domain/model/mixedBasket/index.js +7 -0
- package/lib/domain/model/noSale/NoSaleLine.d.ts +32 -0
- package/lib/domain/model/noSale/NoSaleLine.js +75 -0
- package/lib/domain/model/noSale/StartNoSaleLine.d.ts +33 -0
- package/lib/domain/model/noSale/StartNoSaleLine.js +75 -0
- package/lib/domain/model/noSale/index.d.ts +2 -0
- package/lib/domain/model/noSale/index.js +8 -0
- package/lib/domain/model/order/IOrderTotalsAccumulator.d.ts +23 -0
- package/lib/domain/model/order/IOrderTotalsAccumulator.js +3 -0
- package/lib/domain/model/order/OrderDeliveryAssignmentLine.d.ts +20 -0
- package/lib/domain/model/order/OrderDeliveryAssignmentLine.js +64 -0
- package/lib/domain/model/order/OrderItemReference.d.ts +5 -0
- package/lib/domain/model/order/OrderItemReference.js +3 -0
- package/lib/domain/model/order/OrderTotalsAccumulator.d.ts +39 -0
- package/lib/domain/model/order/OrderTotalsAccumulator.js +48 -0
- package/lib/domain/model/order/index.d.ts +4 -0
- package/lib/domain/model/order/index.js +8 -0
- package/lib/domain/model/paidOperation/PaidOperationLine.d.ts +23 -0
- package/lib/domain/model/paidOperation/PaidOperationLine.js +65 -0
- package/lib/domain/model/paidOperation/PaidOperationSignatureLine.d.ts +27 -0
- package/lib/domain/model/paidOperation/PaidOperationSignatureLine.js +58 -0
- package/lib/domain/model/paidOperation/StartPaidOperationLine.d.ts +34 -0
- package/lib/domain/model/paidOperation/StartPaidOperationLine.js +75 -0
- package/lib/domain/model/paidOperation/index.d.ts +3 -0
- package/lib/domain/model/paidOperation/index.js +9 -0
- package/lib/domain/model/paymentDevice/IUploadDeviceLogsLine.d.ts +6 -0
- package/lib/domain/model/paymentDevice/IUploadDeviceLogsLine.js +3 -0
- package/lib/domain/model/paymentDevice/UploadDeviceLogLine.d.ts +28 -0
- package/lib/domain/model/paymentDevice/UploadDeviceLogLine.js +57 -0
- package/lib/domain/model/paymentDevice/index.d.ts +1 -0
- package/lib/domain/model/paymentDevice/index.js +7 -0
- package/lib/domain/model/print/PrintStatusLine.d.ts +27 -0
- package/lib/domain/model/print/PrintStatusLine.js +55 -0
- package/lib/domain/model/print/index.d.ts +1 -0
- package/lib/domain/model/print/index.js +7 -0
- package/lib/domain/model/receipt/BaseReceiptLineDecorator.d.ts +49 -0
- package/lib/domain/model/receipt/BaseReceiptLineDecorator.js +115 -0
- package/lib/domain/model/receipt/FiscalReceiptLine.d.ts +63 -0
- package/lib/domain/model/receipt/FiscalReceiptLine.js +170 -0
- package/lib/domain/model/receipt/GiftReceiptLine.d.ts +17 -0
- package/lib/domain/model/receipt/GiftReceiptLine.js +51 -0
- package/lib/domain/model/receipt/IPrintRetryLine.d.ts +4 -0
- package/lib/domain/model/receipt/IPrintRetryLine.js +3 -0
- package/lib/domain/model/receipt/IReceiptLine.d.ts +37 -0
- package/lib/domain/model/receipt/IReceiptLine.js +3 -0
- package/lib/domain/model/receipt/IReceiptRefundMessage.d.ts +4 -0
- package/lib/domain/model/receipt/IReceiptRefundMessage.js +3 -0
- package/lib/domain/model/receipt/ItemCommentLine.d.ts +16 -0
- package/lib/domain/model/receipt/ItemCommentLine.js +50 -0
- package/lib/domain/model/receipt/PrintRetryLine.d.ts +14 -0
- package/lib/domain/model/receipt/PrintRetryLine.js +43 -0
- package/lib/domain/model/receipt/PrintRetryLineDecorator.d.ts +12 -0
- package/lib/domain/model/receipt/PrintRetryLineDecorator.js +28 -0
- package/lib/domain/model/receipt/PrinterStatusReceiptLineDecorator.d.ts +12 -0
- package/lib/domain/model/receipt/PrinterStatusReceiptLineDecorator.js +38 -0
- package/lib/domain/model/receipt/ReceiptDestinationReceiptLineDecorator.d.ts +18 -0
- package/lib/domain/model/receipt/ReceiptDestinationReceiptLineDecorator.js +44 -0
- package/lib/domain/model/receipt/ReceiptLine.d.ts +88 -0
- package/lib/domain/model/receipt/ReceiptLine.js +236 -0
- package/lib/domain/model/receipt/ReceiptOptionLine.d.ts +44 -0
- package/lib/domain/model/receipt/ReceiptOptionLine.js +107 -0
- package/lib/domain/model/receipt/index.d.ts +12 -0
- package/lib/domain/model/receipt/index.js +15 -0
- package/lib/domain/model/reprint/ReprintTransactionLine.d.ts +30 -0
- package/lib/domain/model/reprint/ReprintTransactionLine.js +64 -0
- package/lib/domain/model/reprint/index.d.ts +1 -0
- package/lib/domain/model/reprint/index.js +7 -0
- package/lib/domain/model/salesperson/SalespersonLine.d.ts +27 -0
- package/lib/domain/model/salesperson/SalespersonLine.js +60 -0
- package/lib/domain/model/salesperson/index.d.ts +1 -0
- package/lib/domain/model/salesperson/index.js +7 -0
- package/lib/domain/model/sendsale/SendSaleConversionLine.d.ts +25 -0
- package/lib/domain/model/sendsale/SendSaleConversionLine.js +50 -0
- package/lib/domain/model/sendsale/index.d.ts +1 -0
- package/lib/domain/model/sendsale/index.js +7 -0
- package/lib/domain/model/shipping/ShippingFeeChangeLine.d.ts +39 -0
- package/lib/domain/model/shipping/ShippingFeeChangeLine.js +95 -0
- package/lib/domain/model/shipping/ShippingFeeLineChangeDecorator.d.ts +26 -0
- package/lib/domain/model/shipping/ShippingFeeLineChangeDecorator.js +81 -0
- package/lib/domain/model/shipping/index.d.ts +2 -0
- package/lib/domain/model/shipping/index.js +8 -0
- package/lib/domain/model/subscription/AddSubscriptionLine.d.ts +31 -0
- package/lib/domain/model/subscription/AddSubscriptionLine.js +69 -0
- package/lib/domain/model/subscription/ModifySubscriptionLine.d.ts +31 -0
- package/lib/domain/model/subscription/ModifySubscriptionLine.js +69 -0
- package/lib/domain/model/subscription/RemoveSubscriptionLine.d.ts +25 -0
- package/lib/domain/model/subscription/RemoveSubscriptionLine.js +50 -0
- package/lib/domain/model/subscription/index.d.ts +3 -0
- package/lib/domain/model/subscription/index.js +9 -0
- package/lib/domain/model/supervisorOverride/ISupervisorCredentials.d.ts +4 -0
- package/lib/domain/model/supervisorOverride/ISupervisorCredentials.js +3 -0
- package/lib/domain/model/supervisorOverride/SupervisorOverrideLine.d.ts +24 -0
- package/lib/domain/model/supervisorOverride/SupervisorOverrideLine.js +51 -0
- package/lib/domain/model/supervisorOverride/index.d.ts +2 -0
- package/lib/domain/model/supervisorOverride/index.js +7 -0
- package/lib/domain/model/taxExempt/BaseTaxExemptLine.d.ts +53 -0
- package/lib/domain/model/taxExempt/BaseTaxExemptLine.js +187 -0
- package/lib/domain/model/taxExempt/BaseTaxExemptLineDecorator.d.ts +27 -0
- package/lib/domain/model/taxExempt/BaseTaxExemptLineDecorator.js +74 -0
- package/lib/domain/model/taxExempt/ITaxExemptLine.d.ts +22 -0
- package/lib/domain/model/taxExempt/ITaxExemptLine.js +3 -0
- package/lib/domain/model/taxExempt/ItemTaxExemptLine.d.ts +23 -0
- package/lib/domain/model/taxExempt/ItemTaxExemptLine.js +47 -0
- package/lib/domain/model/taxExempt/ItemTaxExemptLineModificationDecorator.d.ts +32 -0
- package/lib/domain/model/taxExempt/ItemTaxExemptLineModificationDecorator.js +91 -0
- package/lib/domain/model/taxExempt/ModifyItemTaxExemptLine.d.ts +28 -0
- package/lib/domain/model/taxExempt/ModifyItemTaxExemptLine.js +62 -0
- package/lib/domain/model/taxExempt/ModifyTransactionTaxExemptLine.d.ts +28 -0
- package/lib/domain/model/taxExempt/ModifyTransactionTaxExemptLine.js +62 -0
- package/lib/domain/model/taxExempt/TransactionTaxExemptLine.d.ts +23 -0
- package/lib/domain/model/taxExempt/TransactionTaxExemptLine.js +47 -0
- package/lib/domain/model/taxExempt/TransactionTaxExemptLineModificationDecorator.d.ts +32 -0
- package/lib/domain/model/taxExempt/TransactionTaxExemptLineModificationDecorator.js +93 -0
- package/lib/domain/model/taxExempt/VoidedItemTaxExemptLineDecorator.d.ts +15 -0
- package/lib/domain/model/taxExempt/VoidedItemTaxExemptLineDecorator.js +38 -0
- package/lib/domain/model/taxExempt/VoidedTransactionTaxExemptLineDecorator.d.ts +15 -0
- package/lib/domain/model/taxExempt/VoidedTransactionTaxExemptLineDecorator.js +38 -0
- package/lib/domain/model/taxExempt/index.d.ts +11 -0
- package/lib/domain/model/taxExempt/index.js +16 -0
- package/lib/domain/model/taxLottery/TaxLotteryLine.d.ts +24 -0
- package/lib/domain/model/taxLottery/TaxLotteryLine.js +49 -0
- package/lib/domain/model/taxLottery/index.d.ts +1 -0
- package/lib/domain/model/taxLottery/index.js +7 -0
- package/lib/domain/model/taxOverride/BaseTaxOverrideLine.d.ts +40 -0
- package/lib/domain/model/taxOverride/BaseTaxOverrideLine.js +153 -0
- package/lib/domain/model/taxOverride/BaseTaxOverrideLineDecorator.d.ts +21 -0
- package/lib/domain/model/taxOverride/BaseTaxOverrideLineDecorator.js +54 -0
- package/lib/domain/model/taxOverride/ITaxOverrideLine.d.ts +19 -0
- package/lib/domain/model/taxOverride/ITaxOverrideLine.js +3 -0
- package/lib/domain/model/taxOverride/ModifyTaxOverrideLine.d.ts +31 -0
- package/lib/domain/model/taxOverride/ModifyTaxOverrideLine.js +70 -0
- package/lib/domain/model/taxOverride/TaxOverrideLine.d.ts +15 -0
- package/lib/domain/model/taxOverride/TaxOverrideLine.js +49 -0
- package/lib/domain/model/taxOverride/TaxOverrideLineModificationDecorator.d.ts +14 -0
- package/lib/domain/model/taxOverride/TaxOverrideLineModificationDecorator.js +39 -0
- package/lib/domain/model/taxOverride/VoidedTaxOverrideLineDecorator.d.ts +15 -0
- package/lib/domain/model/taxOverride/VoidedTaxOverrideLineDecorator.js +38 -0
- package/lib/domain/model/taxOverride/index.d.ts +7 -0
- package/lib/domain/model/taxOverride/index.js +12 -0
- package/lib/domain/model/taxRecord/ITaxRecordLine.d.ts +90 -0
- package/lib/domain/model/taxRecord/ITaxRecordLine.js +3 -0
- package/lib/domain/model/taxRecord/TaxRecordLine.d.ts +67 -0
- package/lib/domain/model/taxRecord/TaxRecordLine.js +175 -0
- package/lib/domain/model/taxRecord/index.d.ts +2 -0
- package/lib/domain/model/taxRecord/index.js +7 -0
- package/lib/domain/model/taxRefund/ReprintTaxRefundLine.d.ts +30 -0
- package/lib/domain/model/taxRefund/ReprintTaxRefundLine.js +64 -0
- package/lib/domain/model/taxRefund/StartTaxRefundLine.d.ts +29 -0
- package/lib/domain/model/taxRefund/StartTaxRefundLine.js +62 -0
- package/lib/domain/model/taxRefund/TaxRefundInterfaces.d.ts +229 -0
- package/lib/domain/model/taxRefund/TaxRefundInterfaces.js +36 -0
- package/lib/domain/model/taxRefund/TaxRefundLine.d.ts +34 -0
- package/lib/domain/model/taxRefund/TaxRefundLine.js +73 -0
- package/lib/domain/model/taxRefund/TaxRefundSession.d.ts +84 -0
- package/lib/domain/model/taxRefund/TaxRefundSession.js +214 -0
- package/lib/domain/model/taxRefund/VoidTaxRefundLine.d.ts +30 -0
- package/lib/domain/model/taxRefund/VoidTaxRefundLine.js +71 -0
- package/lib/domain/model/taxRefund/index.d.ts +6 -0
- package/lib/domain/model/taxRefund/index.js +12 -0
- package/lib/domain/model/tender/BaseTenderLineDecorator.d.ts +47 -0
- package/lib/domain/model/tender/BaseTenderLineDecorator.js +110 -0
- package/lib/domain/model/tender/CancelSubscriptionTokenLine.d.ts +11 -0
- package/lib/domain/model/tender/CancelSubscriptionTokenLine.js +32 -0
- package/lib/domain/model/tender/ITenderLine.d.ts +45 -0
- package/lib/domain/model/tender/ITenderLine.js +3 -0
- package/lib/domain/model/tender/OfflineAuthorization.d.ts +17 -0
- package/lib/domain/model/tender/OfflineAuthorization.js +47 -0
- package/lib/domain/model/tender/RefundedTenderLineDecorator.d.ts +12 -0
- package/lib/domain/model/tender/RefundedTenderLineDecorator.js +42 -0
- package/lib/domain/model/tender/TenderAuthorizationStatusLine.d.ts +65 -0
- package/lib/domain/model/tender/TenderAuthorizationStatusLine.js +220 -0
- package/lib/domain/model/tender/TenderChangeCancelLine.d.ts +25 -0
- package/lib/domain/model/tender/TenderChangeCancelLine.js +51 -0
- package/lib/domain/model/tender/TenderLine.d.ts +113 -0
- package/lib/domain/model/tender/TenderLine.js +385 -0
- package/lib/domain/model/tender/TenderSignatureLine.d.ts +29 -0
- package/lib/domain/model/tender/TenderSignatureLine.js +66 -0
- package/lib/domain/model/tender/TenderTaxLineDecorator.d.ts +12 -0
- package/lib/domain/model/tender/TenderTaxLineDecorator.js +29 -0
- package/lib/domain/model/tender/TenderUtils.d.ts +9 -0
- package/lib/domain/model/tender/TenderUtils.js +43 -0
- package/lib/domain/model/tender/VoidedTenderLineDecorator.d.ts +13 -0
- package/lib/domain/model/tender/VoidedTenderLineDecorator.js +43 -0
- package/lib/domain/model/tender/exchange/StartTenderExchangeLine.d.ts +28 -0
- package/lib/domain/model/tender/exchange/StartTenderExchangeLine.js +56 -0
- package/lib/domain/model/tender/exchange/index.d.ts +1 -0
- package/lib/domain/model/tender/exchange/index.js +7 -0
- package/lib/domain/model/tender/index.d.ts +16 -0
- package/lib/domain/model/tender/index.js +21 -0
- package/lib/domain/model/tender/reversals/Interfaces.d.ts +25 -0
- package/lib/domain/model/tender/reversals/Interfaces.js +10 -0
- package/lib/domain/model/tender/reversals/index.d.ts +1 -0
- package/lib/domain/model/tender/reversals/index.js +7 -0
- package/lib/domain/model/tender/valueCard/Interfaces.d.ts +84 -0
- package/lib/domain/model/tender/valueCard/Interfaces.js +104 -0
- package/lib/domain/model/tender/valueCard/index.d.ts +1 -0
- package/lib/domain/model/tender/valueCard/index.js +7 -0
- package/lib/domain/model/tender/valueCertificate/Interfaces.d.ts +228 -0
- package/lib/domain/model/tender/valueCertificate/Interfaces.js +78 -0
- package/lib/domain/model/tender/valueCertificate/index.d.ts +1 -0
- package/lib/domain/model/tender/valueCertificate/index.js +7 -0
- package/lib/domain/model/terminal/FiscalPrinterAbortLineType.d.ts +21 -0
- package/lib/domain/model/terminal/FiscalPrinterAbortLineType.js +45 -0
- package/lib/domain/model/terminal/FiscalPrinterReportLineType.d.ts +34 -0
- package/lib/domain/model/terminal/FiscalPrinterReportLineType.js +85 -0
- package/lib/domain/model/terminal/FiscalPrinterStatusLineType.d.ts +24 -0
- package/lib/domain/model/terminal/FiscalPrinterStatusLineType.js +55 -0
- package/lib/domain/model/terminal/FiscalPrinterSyncLineType.d.ts +28 -0
- package/lib/domain/model/terminal/FiscalPrinterSyncLineType.js +67 -0
- package/lib/domain/model/terminal/TerminalStateChangeLine.d.ts +27 -0
- package/lib/domain/model/terminal/TerminalStateChangeLine.js +61 -0
- package/lib/domain/model/terminal/index.d.ts +5 -0
- package/lib/domain/model/terminal/index.js +11 -0
- package/lib/domain/model/till/StartTillLine.d.ts +58 -0
- package/lib/domain/model/till/StartTillLine.js +119 -0
- package/lib/domain/model/till/TenderTransferLine.d.ts +33 -0
- package/lib/domain/model/till/TenderTransferLine.js +140 -0
- package/lib/domain/model/till/TillAdjustmentLine.d.ts +21 -0
- package/lib/domain/model/till/TillAdjustmentLine.js +64 -0
- package/lib/domain/model/till/TillCountLine.d.ts +27 -0
- package/lib/domain/model/till/TillCountLine.js +96 -0
- package/lib/domain/model/till/TillFloatLine.d.ts +29 -0
- package/lib/domain/model/till/TillFloatLine.js +90 -0
- package/lib/domain/model/till/TillStateChangeLine.d.ts +26 -0
- package/lib/domain/model/till/TillStateChangeLine.js +78 -0
- package/lib/domain/model/till/index.d.ts +6 -0
- package/lib/domain/model/till/index.js +12 -0
- package/lib/domain/model/transaction/AttachmentLine.d.ts +17 -0
- package/lib/domain/model/transaction/AttachmentLine.js +45 -0
- package/lib/domain/model/transaction/CloseTransactionLine.d.ts +22 -0
- package/lib/domain/model/transaction/CloseTransactionLine.js +44 -0
- package/lib/domain/model/transaction/IPostVoidSearchResult.d.ts +7 -0
- package/lib/domain/model/transaction/IPostVoidSearchResult.js +4 -0
- package/lib/domain/model/transaction/RecordTransactionLine.d.ts +29 -0
- package/lib/domain/model/transaction/RecordTransactionLine.js +60 -0
- package/lib/domain/model/transaction/SignatureLine.d.ts +30 -0
- package/lib/domain/model/transaction/SignatureLine.js +67 -0
- package/lib/domain/model/transaction/SuspendTransactionLine.d.ts +24 -0
- package/lib/domain/model/transaction/SuspendTransactionLine.js +52 -0
- package/lib/domain/model/transaction/TotalTransactionLine.d.ts +26 -0
- package/lib/domain/model/transaction/TotalTransactionLine.js +55 -0
- package/lib/domain/model/transaction/TransactionResumeCompleteLine.d.ts +22 -0
- package/lib/domain/model/transaction/TransactionResumeCompleteLine.js +44 -0
- package/lib/domain/model/transaction/TransactionResumeStartLine.d.ts +25 -0
- package/lib/domain/model/transaction/TransactionResumeStartLine.js +55 -0
- package/lib/domain/model/transaction/TransactionReturnModeLine.d.ts +23 -0
- package/lib/domain/model/transaction/TransactionReturnModeLine.js +45 -0
- package/lib/domain/model/transaction/fiscal/FiscalTransactionLine.d.ts +27 -0
- package/lib/domain/model/transaction/fiscal/FiscalTransactionLine.js +61 -0
- package/lib/domain/model/transaction/fiscal/index.d.ts +1 -0
- package/lib/domain/model/transaction/fiscal/index.js +7 -0
- package/lib/domain/model/transaction/index.d.ts +12 -0
- package/lib/domain/model/transaction/index.js +18 -0
- package/lib/domain/model/transaction/order/ItemFulfillmentReferenceLine.d.ts +25 -0
- package/lib/domain/model/transaction/order/ItemFulfillmentReferenceLine.js +51 -0
- package/lib/domain/model/transaction/order/ItemPickupSignatureLine.d.ts +28 -0
- package/lib/domain/model/transaction/order/ItemPickupSignatureLine.js +63 -0
- package/lib/domain/model/transaction/order/OrderReferenceLine.d.ts +25 -0
- package/lib/domain/model/transaction/order/OrderReferenceLine.js +50 -0
- package/lib/domain/model/transaction/order/index.d.ts +3 -0
- package/lib/domain/model/transaction/order/index.js +9 -0
- package/lib/domain/model/user/AuthenticationFailedLine.d.ts +16 -0
- package/lib/domain/model/user/AuthenticationFailedLine.js +45 -0
- package/lib/domain/model/user/IPasswordExpiration.d.ts +4 -0
- package/lib/domain/model/user/IPasswordExpiration.js +3 -0
- package/lib/domain/model/user/PasswordExpiration.d.ts +10 -0
- package/lib/domain/model/user/PasswordExpiration.js +38 -0
- package/lib/domain/model/user/UserLine.d.ts +33 -0
- package/lib/domain/model/user/UserLine.js +84 -0
- package/lib/domain/model/user/index.d.ts +4 -0
- package/lib/domain/model/user/index.js +9 -0
- package/lib/domain/model/void/LineVoidLine.d.ts +50 -0
- package/lib/domain/model/void/LineVoidLine.js +158 -0
- package/lib/domain/model/void/TransactionVoidLine.d.ts +34 -0
- package/lib/domain/model/void/TransactionVoidLine.js +86 -0
- package/lib/domain/model/void/VoidedLineDecorator.d.ts +10 -0
- package/lib/domain/model/void/VoidedLineDecorator.js +40 -0
- package/lib/domain/model/void/index.d.ts +3 -0
- package/lib/domain/model/void/index.js +9 -0
- package/lib/domain/processing/PosBusinessAction.d.ts +9 -0
- package/lib/domain/processing/PosBusinessAction.js +55 -0
- package/lib/domain/processing/index.d.ts +1 -0
- package/lib/domain/processing/index.js +7 -0
- package/lib/domain/service/IReceiptFormattingService.d.ts +48 -0
- package/lib/domain/service/IReceiptFormattingService.js +3 -0
- package/lib/domain/service/ITransactionAccountingService.d.ts +6 -0
- package/lib/domain/service/ITransactionAccountingService.js +3 -0
- package/lib/domain/service/ITransactionReferenceFormatter.d.ts +4 -0
- package/lib/domain/service/ITransactionReferenceFormatter.js +3 -0
- package/lib/domain/service/index.d.ts +3 -0
- package/lib/domain/service/index.js +3 -0
- package/lib/domain/utility/index.d.ts +3 -0
- package/lib/domain/utility/index.js +9 -0
- package/lib/domain/utility/orderUtils.d.ts +6 -0
- package/lib/domain/utility/orderUtils.js +47 -0
- package/lib/domain/utility/supervisorOverride.d.ts +28 -0
- package/lib/domain/utility/supervisorOverride.js +298 -0
- package/lib/domain/utility/utils.d.ts +12 -0
- package/lib/domain/utility/utils.js +128 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +8 -0
- package/package.json +194 -0
- package/types/es-symbol/index.d.ts +4 -0
|
@@ -0,0 +1,977 @@
|
|
|
1
|
+
import { Quantity } from "@aptos-scp/scp-component-business-core";
|
|
2
|
+
export interface ILabel {
|
|
3
|
+
i18nCode?: string;
|
|
4
|
+
default?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface IPinRules {
|
|
7
|
+
gcEntryMethodRule?: IEntryMethodRule;
|
|
8
|
+
}
|
|
9
|
+
export interface IEntryMethodRule {
|
|
10
|
+
usage?: Usage;
|
|
11
|
+
}
|
|
12
|
+
export interface ITenderReferenceData {
|
|
13
|
+
referenceNumber?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare enum Usage {
|
|
16
|
+
Required = "Required",
|
|
17
|
+
Optional = "Optional",
|
|
18
|
+
NotUsed = "NotUsed",
|
|
19
|
+
ConditionallyRequired = "ConditionallyRequired",
|
|
20
|
+
ConditionallyShow = "ConditionallyShow"
|
|
21
|
+
}
|
|
22
|
+
export declare enum ReceiptType {
|
|
23
|
+
None = "None",
|
|
24
|
+
Email = "Email",
|
|
25
|
+
Print = "Print",
|
|
26
|
+
SMS = "SMS",
|
|
27
|
+
Both = "Both"
|
|
28
|
+
}
|
|
29
|
+
export declare enum ReceiptStatus {
|
|
30
|
+
Error = "Error",
|
|
31
|
+
NotSent = "NotSent",
|
|
32
|
+
Sent = "Sent",
|
|
33
|
+
Success = "Success"
|
|
34
|
+
}
|
|
35
|
+
export declare enum ReprintTransactionType {
|
|
36
|
+
Last = "Last",
|
|
37
|
+
Selected = "Selected"
|
|
38
|
+
}
|
|
39
|
+
export declare enum GiftReceiptMode {
|
|
40
|
+
Individual = "Individual",
|
|
41
|
+
Shared = "Shared",
|
|
42
|
+
None = "None"
|
|
43
|
+
}
|
|
44
|
+
export declare enum VoidSource {
|
|
45
|
+
LineVoid = "LineVoid",
|
|
46
|
+
TransactionVoid = "TransactionVoid",
|
|
47
|
+
PostVoid = "PostVoid",
|
|
48
|
+
Suspend = "Suspend"
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Categories of tender, groupings based on how categories are presented in UI and authorized
|
|
52
|
+
*/
|
|
53
|
+
export declare enum TenderAuthCategory {
|
|
54
|
+
None = "None",
|
|
55
|
+
PaymentDevice = "PaymentDevice",
|
|
56
|
+
TapToPayOnPOS = "TapToPayOnPOS",
|
|
57
|
+
NonIntegratedDevice = "NonIntegratedDevice",
|
|
58
|
+
GiftDevice = "GiftDevice",
|
|
59
|
+
LoyaltyVoucherService = "LoyaltyVoucherService",
|
|
60
|
+
StoredValueCardService = "StoredValueCardService",
|
|
61
|
+
StoredValueCertificateService = "StoredValueCertificateService",
|
|
62
|
+
Wallet = "Wallet"
|
|
63
|
+
}
|
|
64
|
+
export declare enum OverTenderRule {
|
|
65
|
+
NotAllowed = "NotAllowed",
|
|
66
|
+
Unlimited = "Unlimited"
|
|
67
|
+
}
|
|
68
|
+
export declare enum TenderAdjustmentType {
|
|
69
|
+
OverpaymentRounding = "OverpaymentRounding",
|
|
70
|
+
DenominationRounding = "DenominationRounding",
|
|
71
|
+
OrderDiscountRounding = "OrderDiscountRounding"
|
|
72
|
+
}
|
|
73
|
+
export declare enum SecurityAuthorizationStatusType {
|
|
74
|
+
Approved = "Approved",
|
|
75
|
+
Pending = "Pending"
|
|
76
|
+
}
|
|
77
|
+
export declare enum LotteryVoidReason {
|
|
78
|
+
VOIDED_BY_USER = "UserVoid",
|
|
79
|
+
VOIDED_FOR_BUSINESS = "BusinessSale",
|
|
80
|
+
VOIDED_FOR_INVOICE = "RequestedInvoice",
|
|
81
|
+
VOIDED_FOR_MINIMUM_AMOUNT = "SaleAmount",
|
|
82
|
+
VOIDED_FOR_INELIGIBLE_TENDER = "IneligibleTender"
|
|
83
|
+
}
|
|
84
|
+
export declare enum LotteryVoidDescription {
|
|
85
|
+
VOIDED_BY_USER = "Voided by user",
|
|
86
|
+
VOIDED_FOR_BUSINESS = "Voided since the purchase was intended for business",
|
|
87
|
+
VOIDED_FOR_INVOICE = "Voided since the customer requested an invoice",
|
|
88
|
+
VOIDED_FOR_MINIMUM_AMOUNT = "Voided since the purchase value is less than minimum amount required for lottery processing",
|
|
89
|
+
VOIDED_FOR_INELIGIBLE_TENDER = "Voided since the customer made payment with ineligible tender"
|
|
90
|
+
}
|
|
91
|
+
export declare enum UiInputKey {
|
|
92
|
+
ABORT = "input_abort",
|
|
93
|
+
ACTION_TYPE = "input_actionType",
|
|
94
|
+
AMOUNT = "input_discountAmount",
|
|
95
|
+
API_LIMIT = "input_limit",
|
|
96
|
+
API_OFFSET = "input_offset",
|
|
97
|
+
ASSIGN_CUSTOMER = "input_assignCustomer",
|
|
98
|
+
ASSIGN_TO_TRANSACTION = "input_assignToTransaction",
|
|
99
|
+
AUTHORIZATION_DEVICE_ID = "input_authorizationDeviceId",
|
|
100
|
+
BUSINESS_DAY_DATE = "input_businessDayDate",
|
|
101
|
+
BILLING = "input_billing",
|
|
102
|
+
CASH_DRAWER_STATUS = "input_cashDrawerStatus",
|
|
103
|
+
COMPLETE_RESUME_EVENT = "input_resumeCompleteEvent",
|
|
104
|
+
COUNTRY_CODE = "input_countryCode",
|
|
105
|
+
COUNTRY_NAME = "input_countryName",
|
|
106
|
+
COUPON_CODE = "input_couponCode",
|
|
107
|
+
COUPON_NUMBER = "input_couponNumber",
|
|
108
|
+
COUPON_VALID_UNTIL_DATE = "input_couponValidUntilDate",
|
|
109
|
+
CUSTOMER_OLD = "input_customer_old",
|
|
110
|
+
CUSTOMER = "input_customer",
|
|
111
|
+
CUSTOMER_NUMBER = "input_customerNumber",
|
|
112
|
+
CONTACT = "input_contact",
|
|
113
|
+
CONTACT_VERIFICATION = "input_contactVerification",
|
|
114
|
+
DEVICE_ID = "deviceId",
|
|
115
|
+
DEVICE_STATUSES = "input_deviceStatuses",
|
|
116
|
+
DISALLOWED_MEMBER = "input_disallowedMember",
|
|
117
|
+
DISCOUNT_ENTRY_TYPE = "input_discountEntryType",
|
|
118
|
+
DISCOUNT_LINE_NUMBER = "input_discountLineNumber",
|
|
119
|
+
DISCOUNT_TYPE = "input_discountType",
|
|
120
|
+
DONATION_AMOUNT = "input_donationAmount",
|
|
121
|
+
DONATION_CODE = "input_donationCode",
|
|
122
|
+
DONATION_AMOUNT_TYPE = "input_donationAmountType",
|
|
123
|
+
EXCHANGE_RATE = "input_exchangeRate",
|
|
124
|
+
EMPLOYEE_DISCOUNT_EVENT = "input_discountEvent",
|
|
125
|
+
EMPLOYEE_SERVICE_RESPONSE = "input_employeeServiceResponse",
|
|
126
|
+
EMPLOYEE_DISCOUNT_OVERRIDE = "input_employeeDiscountOverride",
|
|
127
|
+
EXCHANGE_RATE_VALUE = "input_exchangeRateValue",
|
|
128
|
+
EMPLOYEE_ID = "input_employeeId",
|
|
129
|
+
EXEMPTED_TAX_AUTHORITIES = "input_exemptedTaxAuthorities",
|
|
130
|
+
EXISTING_GIFT_CARD = "input_existingGiftCard",
|
|
131
|
+
EXPIRED_COUPON_OVERRIDE = "input_expiredCouponOverride",
|
|
132
|
+
EXPIRED_PASSWORD_CHANGE = "input_expiredPasswordChange",
|
|
133
|
+
EXPIRED_PASSWORD_USER_ID = "input_expiredPasswordUserId",
|
|
134
|
+
FAST_DISCOUNT = "input_fastDiscount",
|
|
135
|
+
FAST_DISCOUNT_BUTTON = "input_fastDiscountButton",
|
|
136
|
+
FEE_QUANTITY = "input_feeQuantity",
|
|
137
|
+
FEE_TYPE = "input_feeType",
|
|
138
|
+
FEE_UNIT_COST = "input_feeUnitCost",
|
|
139
|
+
FISCAL_CODE = "fiscalCode",
|
|
140
|
+
FISCAL_DEVICE_ACTIVITY_SUCCESSFUL = "fiscalDeviceActivitySuccessful",
|
|
141
|
+
FISCAL_DEVICE_ERROR_CODE = "fiscalDeviceErrorCode",
|
|
142
|
+
FISCAL_DEVICE_ERROR_DESCRIPTION = "fiscalDeviceErrorDescription",
|
|
143
|
+
FISCAL_DEVICE_INFORMATION = "fiscalDeviceInformation",
|
|
144
|
+
FISCAL_TRANSACTION_INFORMATION = "fiscalTransactionInformation",
|
|
145
|
+
FISCAL_RFECEIPT_AMOUNT = "fiscalReceiptAmount",
|
|
146
|
+
FISCAL_RFECEIPT_DATE = "fiscalReceiptDate",
|
|
147
|
+
FISCAL_RFECEIPT_TIME = "fiscalReceiptTime",
|
|
148
|
+
FISCAL_STATUS = "fiscalStatus",
|
|
149
|
+
FISCAL_NUMBER = "fiscalNumber",
|
|
150
|
+
RESPONSE_CODE = "responseCode",
|
|
151
|
+
FISCAL_Y_RFECEIPT_NUMBER = "fiscalYReceiptNumber",
|
|
152
|
+
FISCAL_ID = "fiscalId",
|
|
153
|
+
FOREIGN_TENDER_AMOUNT = "input_foreignTenderAmount",
|
|
154
|
+
FORFEIT_TENDER_CHANGE_CONFIRMATION = "input_forfeitTenderChange",
|
|
155
|
+
REDEEM_CARD_NUMBER = "input_redeemCardNumber",
|
|
156
|
+
REDEEMED_REDEMPTIONS = "input_redeemedRedemptions",
|
|
157
|
+
LOYALTY_PLANS = "input_loyaltyPlans",
|
|
158
|
+
GIFT_CARD_PIN = "input_giftCardPin",
|
|
159
|
+
GIFT_RECEIPT_MODE = "input_giftReceiptMode",
|
|
160
|
+
INVOICE_NUMBER = "input_invoiceNumber",
|
|
161
|
+
IS_INVOICE = "input_isInvoice",
|
|
162
|
+
ITEM_COMMENT = "input_selectedComment",
|
|
163
|
+
ITEM_FILTER_BY = "input_itemFilterBy",
|
|
164
|
+
ITEM_CALCULATION_PROFILE = "item_calculationProfile",
|
|
165
|
+
ITEM_FULFILLMENT_TYPE = "input_itemFulfillmentType",
|
|
166
|
+
ITEM_LOOKUP_TYPE = "input_itemLookupType",
|
|
167
|
+
LAST_TRANSACTION = "input_lastTransaction",
|
|
168
|
+
LINE_NUMBER = "input_lineNumber",
|
|
169
|
+
LINE_NUMBERS = "input_lineNumbers",
|
|
170
|
+
RECEIPT_REQUIRED_DATA = "input_receiptRequiredData",
|
|
171
|
+
LOYALTY_DISCOUNT = "input_loyaltyDiscount",
|
|
172
|
+
MANUAL_SUBSCRIPTION_DISCOUNT_FLAG = "input_manualSubscriptionDiscountFlag",
|
|
173
|
+
ORDER = "input_order",
|
|
174
|
+
ORDER_CUSTOMER = "input_orderCustomer",
|
|
175
|
+
ORDER_ITEM = "input_orderItem",
|
|
176
|
+
ORDER_REFERENCE = "input_orderReference",
|
|
177
|
+
ORDER_REFERENCE_ID = "input_orderReferenceId",
|
|
178
|
+
CUSTOMER_KEY = "input_customerKey",
|
|
179
|
+
ORIGINAL_ORDER_TRANSACTION_REFERENCE = "input_originalOrderTransactionReference",
|
|
180
|
+
RESERVATION_ORDER = "input_reservationOrder",
|
|
181
|
+
VALUE_CERTIFICATE_NUMBER = "input_valueCertificateNumber",
|
|
182
|
+
VALUE_CERTIFICATE_STATUS = "input_valueCertificateStatus",
|
|
183
|
+
NETWORK_DELIVERY_METHODS = "input_networkDeliveryMethod",
|
|
184
|
+
ORIGINAL_RECEIPT_CATEGORY = "input_originalReceiptCategory",
|
|
185
|
+
ORIGINAL_TRANSACTION = "input_originalTransaction",
|
|
186
|
+
ORIGINAL_TRANSACTION_ID = "input_originalTransactionId",
|
|
187
|
+
RETURNING_ITEM = "input_returningItem",
|
|
188
|
+
RETURNING_ITEM_FEE = "input_returningItemFee",
|
|
189
|
+
REFUND_ITEM_FEE_ITEM_LINE_REFERENCE = "input_refundFeeItemItemLineReference",
|
|
190
|
+
RETURNING_ITEM_QUANTITY = "input_returningItemQuantity",
|
|
191
|
+
SHIPPING = "input_shipping",
|
|
192
|
+
HAS_SHIPPING_FEE_OVERRIDE = "input_hasShippingFeeOverride",
|
|
193
|
+
SHIPPING_METHOD = "input_shippingMethod",
|
|
194
|
+
SHIPPING_FEE = "input_shippingFee",
|
|
195
|
+
FULFILLMENT_GROUP_ID = "input_fulfillmentGroupId",
|
|
196
|
+
FEE_DEFINITION_TYPE = "input_feeDefinitionType",
|
|
197
|
+
FEE_AUTO_APPLIED = "input_feeAutoApplied",
|
|
198
|
+
SUBLINE_INDEX = "input_subLineindex",
|
|
199
|
+
TOTALS_BEFORE_VOID = "input_totalsBeforeVoid",
|
|
200
|
+
CHECK_ITEM_LINE_NUMBER = "input_checkItemLineNumber",
|
|
201
|
+
ITEM_LINE_NUMBER = "input_itemLineNumber",
|
|
202
|
+
NEW_PRICE = "input_newPrice",
|
|
203
|
+
COMPETITIVE_PRICE = "input_CompetitivePrice",
|
|
204
|
+
OFFLINE_BUSINESS_DAY_DATE = "input_offlineBusinessDayDate",
|
|
205
|
+
ORIGINAL_ITEM = "input_originalItem",
|
|
206
|
+
ORIGINAL_TRANSACTION_LINE_REFERENCES = "input_originalTransactionLineReferences",
|
|
207
|
+
PAID_AMOUNT = "input_paidAmount",
|
|
208
|
+
PAID_OUT_REFERENCE = "input_paidOutReference",
|
|
209
|
+
ATTACHMENTS = "input_attachments",
|
|
210
|
+
PASSWORD = "input_password",
|
|
211
|
+
PERCENT = "input_percentage",
|
|
212
|
+
PERIPHERAL_DEVICE_ID = "peripheralDeviceId",
|
|
213
|
+
PHONE_NUMBER = "input_phoneNumber",
|
|
214
|
+
POSTVOID_AUTOMATED_PARTNER_VOID_FLAG = "POSTVOID_AUTOMATED_PARTNER_VOID_FLAG",
|
|
215
|
+
PRECONFIGURED_DISCOUNT_NAME = "input_preConfiguredDiscountName",
|
|
216
|
+
PRECONFIGURED_DISCOUNT_SECURITY_POLICY = "input_preConfiguredDiscountSecurityPolicy",
|
|
217
|
+
PREFERREDLANGUAGE = "input_preferredlanguage",
|
|
218
|
+
PREVENT_REPRINT = "input_preventReprint",
|
|
219
|
+
PRICING_RULE_ID = "input_pricingRuleId",
|
|
220
|
+
ADDED_ITEM_LINE_NUMBERS = "input_addedItemLineNumbers",
|
|
221
|
+
PRINTER = "printer",
|
|
222
|
+
ReportType = "reportType",
|
|
223
|
+
PRINTER_STATUS = "input_printerStatus",
|
|
224
|
+
PRIMARY_LANGUAGE = "primaryLanguage",
|
|
225
|
+
PRINTER_INFO = "printerInfo",
|
|
226
|
+
QUANTITY = "input_quantity",
|
|
227
|
+
RETURN_ITEM_REASON_CODE = "input_returnItemReasonCode",
|
|
228
|
+
REASON_CODE = "input_reasonCode",
|
|
229
|
+
REASON_DESCRIPTION = "input_reasonDescription",
|
|
230
|
+
REASON_LIST_TYPE = "input_reasonListType",
|
|
231
|
+
REASON_COMMENT = "input_reasonComment",
|
|
232
|
+
RECEIPT = "input_receipt",
|
|
233
|
+
RECEIPT_CATEGORY = "input_receiptCategory",
|
|
234
|
+
RECEIPT_CATEGORIES = "input_receiptCategories",
|
|
235
|
+
REPRINT_RECEIPT_COUNT = "input_reprintReceiptCount",
|
|
236
|
+
RECEIPT_TYPE = "input_receiptType",
|
|
237
|
+
TENDER_REFERENCE_DATA = "input_tenderReferenceData",
|
|
238
|
+
RESUME_TRANSACTION = "input_resumeTransaction",
|
|
239
|
+
RESTORE_COUPON_SERVICE_RESULTS = "input_restoredCouponServiceResults",
|
|
240
|
+
RESTORE_INTERNAL_COUPON_CODE = "input_restoredInternalCouponCode",
|
|
241
|
+
RESTORE_LAST_ITEM_SALESPERSON = "input_restoreLastItemSalesperson",
|
|
242
|
+
REFUNDED_LINE_REFERENCE = "input_refundedLineReference",
|
|
243
|
+
RETRIEVED_TRANSACTION = "input_retrievedTransaction",
|
|
244
|
+
RETRY_VOID_AS_REFUND = "input_retryVoidAsRefund",
|
|
245
|
+
RETRY_CHANGE = "input_retryChange",
|
|
246
|
+
SECURITY_AUTHORIZATION_STATUS = "input_securityAuthStatus",
|
|
247
|
+
SALESPERSON = "salesperson",
|
|
248
|
+
SALESPERSON_ID = "input_salespersonId",
|
|
249
|
+
SELECTED_ORDER_ITEMS = "input_selectedOrderItems",
|
|
250
|
+
CANCELLED_ORDER_ITEM_LINE_NUMBER = "input_cancelledOrderItemLineNumber",
|
|
251
|
+
SUBSCRIPTIONS = "input_subscriptions",
|
|
252
|
+
VAT_NUMBER = "input_vatNumber",
|
|
253
|
+
CUSTOMER_TYPE = "input_customerType",
|
|
254
|
+
SEARCH_TERM = "input_searchTerm",
|
|
255
|
+
SEARCHED_ITEM_LOOKUP_KEY = "input_searchedItemLookupKey",
|
|
256
|
+
SELL_SOFT_STOPPED_ITEM = "input_sellSoftStoppedItem",
|
|
257
|
+
SINGLE_USE_COUPON_NUMBER = "input_singleUseCouponNumber",
|
|
258
|
+
SKIP_PASSWORD_CHANGE = "input_skipPasswordChange",
|
|
259
|
+
SKIP_CONFIRM_CLOSE = "input_skipConfirmClose",
|
|
260
|
+
STORE_ITEM = "input_item",
|
|
261
|
+
STORE_ITEM_KEY = "input_itemKey",
|
|
262
|
+
STORE_ITEM_KEY_TYPE = "input_itemKeyType",
|
|
263
|
+
STORE_ITEM_ORDER_BY = "input_itemOrderBy",
|
|
264
|
+
STORE_ITEM_MERCHANDISE_HIERARCHY_NODES = "input_itemMerchandiseHierarchyNodes",
|
|
265
|
+
STORE_ITEM_PRODUCT_ATTRIBUTES = "input_productAttributes",
|
|
266
|
+
STORE_ITEM_SEARCH_LANGUAGE = "input_searchLanguage",
|
|
267
|
+
STORE_ITEM_TYPES = "input_itemTypes",
|
|
268
|
+
RESTORE_SUPERVISOR_OVERRIDE = "input_restoreSupervisorOverride",
|
|
269
|
+
SUPERVISOR_OVERRIDE = "input_supervisorOverride",
|
|
270
|
+
TENDER_FALLBACK_SUPERVISOR_OVERRIDE = "input_tenderFallbackSupervisorOverride",
|
|
271
|
+
SUSPEND_TRANSACTION_RESUME_TOKEN = "input_suspendResumeToken",
|
|
272
|
+
SUBSCRIPTION_PAYMENT_TENDER_LINE = "input_subscriptionInputTenderLine",
|
|
273
|
+
TAX_CUSTOMER = "input_taxCustomer",
|
|
274
|
+
TAX_EXEMPT_CERTIFICATE_ID = "input_taxExemptCertificateId",
|
|
275
|
+
TAX_EXEMPT_LINE_NUMBER = "input_taxExemptLineNumber",
|
|
276
|
+
TAX_EXEMPT_TYPE = "input_taxExemptType",
|
|
277
|
+
TAX_OVERRIDE_TYPE = "input_taxOverrideType",
|
|
278
|
+
TAX_OVERRIDE_MODIFIER_TYPE = "input_taxOverrideModifierType",
|
|
279
|
+
TAX_OVERRIDE_PERCENT = "input_taxOverridePercent",
|
|
280
|
+
TAX_OVERRIDE_AMOUNT = "input_taxOverrideAmount",
|
|
281
|
+
TAX_OVERRIDE_REASON = "input_taxOverrideReason",
|
|
282
|
+
TAX_OVERRIDE_LINE_NUMBER = "input_taxOverrideLineNumber",
|
|
283
|
+
TAX_OVERRIDE_LINE_REFERENCES = "input_taxOverrideLineReferences",
|
|
284
|
+
TENDER_AMOUNT = "input_tenderAmount",
|
|
285
|
+
TENDER_AMOUNT_ORIGINAL = "input_tenderAmountOriginal",
|
|
286
|
+
TENDER_AUTH_CATEGORY_NAME = "input_tenderAuthCategoryName",
|
|
287
|
+
TENDER_AUTH_RESPONSE = "input_authResponse",
|
|
288
|
+
TENDER_NON_INTEGRATED_CONFIRMATION = "input_tenderNonIntegratedConfirmation",
|
|
289
|
+
TENDER_AUTH_STATUS = "input_tenderAuthorizationStatus",
|
|
290
|
+
TENDER_ID = "input_tenderId",
|
|
291
|
+
TENDER_OFFLINE_AUTH_RESPONSE_CODE = "input_offlineAuthResponseCode",
|
|
292
|
+
TENDER_OFFLINE_APPROVAL_CODE = "input_offlineApprovalCode",
|
|
293
|
+
TENDER_SUB_TYPE = "input_tenderSubType",
|
|
294
|
+
TENDER_TYPE = "input_tenderType",
|
|
295
|
+
TENDER_TYPE_NAME = "input_tenderTypeName",
|
|
296
|
+
IS_TENDER_FALLBACK = "input_isTenderFallback",
|
|
297
|
+
MAPPED_REFUND_TENDER_TYPE_NAME = "input_mappedRefundTenderTypeName",
|
|
298
|
+
TRANSACTION_NUMBER_FIELD = "input_transactionNumberField",
|
|
299
|
+
TRANSACTION_REFERENCE_NUMBER_FIELD = "input_referenceNumberField",
|
|
300
|
+
CASH_DRAWER_KEY = "input_cashDrawerKey",
|
|
301
|
+
CASH_DRAWER_RESET = "input_cashDrawerReset",
|
|
302
|
+
ALTERNATE_KEY = "input_alternateKey",
|
|
303
|
+
ALTERNATE_KEY_ADD = "input_alternateKeyAdd",
|
|
304
|
+
ALTERNATE_KEY_SWAP = "input_alternateKeySwap",
|
|
305
|
+
ALTERNATE_KEY_REMOVE = "input_alternateKeyRemove",
|
|
306
|
+
TILL_KEY = "input_tillKey",
|
|
307
|
+
TILL_ACTUAL_AMOUNT = "input_tillActualAmount",
|
|
308
|
+
TILL_TRANSFER_AMOUNT = "input_tillTransferAmount",
|
|
309
|
+
TILL_FLOAT_AMOUNT = "input_tillFloatAmount",
|
|
310
|
+
TILL_EXPECTED_AMOUNT = "input_tillExpectedAmount",
|
|
311
|
+
TILL_VARIANCE_AMOUNT = "input_tillVarianceAmount",
|
|
312
|
+
TILL_VARIANCE_REASON = "input_tillVarianceReason",
|
|
313
|
+
TILL_VARIANCE_COMMENT = "input_tillVarianceComment",
|
|
314
|
+
TILL_VARIANCE_CHECKED = "input_tillVarianceChecked",
|
|
315
|
+
PAID_USER_COMMENTS = "input_PaidUserComments",
|
|
316
|
+
NO_SALE_COMMENT = "input_NoSaleComment",
|
|
317
|
+
UI_BUSINESS_EVENT = "input_uiBusinessEvent",
|
|
318
|
+
UI_INPUTS = "input_uiInputs",
|
|
319
|
+
UNUSED_COUPONS = "input_unusedCoupons",
|
|
320
|
+
USER = "input_user",
|
|
321
|
+
USERNAME = "input_username",
|
|
322
|
+
VOID_SOURCE = "input_voidSource",
|
|
323
|
+
Z_REPORT_NUMBER = "ZReportNumber",
|
|
324
|
+
RESPONSE_COMMAND = "responseCommand",
|
|
325
|
+
RESPONSE_DATA = "responseData",
|
|
326
|
+
SYNC_TYPE = "syncType",
|
|
327
|
+
RECEIPT_LOGO = "receiptLogo",
|
|
328
|
+
PRINTER_STATUS_KEY = "printerStatus",
|
|
329
|
+
REQUEST_DATA = "requestData",
|
|
330
|
+
REQUEST_TYPE = "requestType",
|
|
331
|
+
PRINTER_SERIAL_NUMBER = "printerSerialNumber",
|
|
332
|
+
RETURN_WITH_TRANSACTION = "input_returnWithTransaction",
|
|
333
|
+
TILL_ADJUST_TO_ACTUAL_AMOUNT = "input_tillAdjustToActualAmount",
|
|
334
|
+
SEAL_BAG_KEY = "input_sealBagKey",
|
|
335
|
+
TRANSACTION_FOR_RETURN = "input_transactionForReturn",
|
|
336
|
+
FROM_TILL_SUCCESS = "input_fromTillSuccess",
|
|
337
|
+
TAX_REFUND_TOKEN = "input_taxRefundToken",
|
|
338
|
+
TAX_REFUND_STATUS_TYPE = "input_taxRefundStatusType",
|
|
339
|
+
TAX_REFUND_STATUS_PAYLOAD = "input_taxRefundStatusPayload",
|
|
340
|
+
TRANSACTION_ID_FOR_RETURN = "input_transactionIdForReturn",
|
|
341
|
+
ORDER_NUMBER_FOR_RETURN = "input_OrderNumberForReturn",
|
|
342
|
+
OFFLINE_RETURN_REFERENCE = "input_OfflineReturnReference",
|
|
343
|
+
RECORD_TRANSACTION_REFERENCE_ON_RESUME = "input_recordTransactionReferenceOnResume",
|
|
344
|
+
DOCUMENT_IDENTIFIER = "input_documentIdentifier",
|
|
345
|
+
PRINT_STATUS = "input_printStatus",
|
|
346
|
+
RETURN_WITH_TRANSACTION_QUANTITIES_CHANGED = "input_returnWithTransactionQuantitiesChanged",
|
|
347
|
+
LOTTERY_CODE = "input_lotteryCode",
|
|
348
|
+
VOID_LOTTERY_CODE = "input_voidLotteryCode",
|
|
349
|
+
VOID_REASON = "input_voidReason",
|
|
350
|
+
VOID_REASON_DESC = "input_voidReasonDescription",
|
|
351
|
+
SOFT_MAX_PROCEED = "softMaxProceed",
|
|
352
|
+
ALLOW_VOID_OF_ITEM_DISCOUNTS = "input_allowVoidOfItemDiscounts",
|
|
353
|
+
OFFLINE_RETURN_RETAIL_LOCATION_ID = "input_retailLocationId",
|
|
354
|
+
OFFLINE_RETURN_DEVICE_ID = "input_deviceId",
|
|
355
|
+
OFFLINE_RETURN_TRANSACTION_NUMBER = "input_transactionNumber",
|
|
356
|
+
OFFLINE_RETURN_BUSINESS_DAY_DATE = "input_businessDayDate",
|
|
357
|
+
LOYALTY_PLAN_KEY = "input_loyaltyPlanKey",
|
|
358
|
+
MEMBERSHIP_TYPE_KEY = "input_membershipTypeKey",
|
|
359
|
+
MEMBERSHIP_TYPE_NAME = "input_membershipTypeName",
|
|
360
|
+
MEMBERSHIP_TYPE_DESCRIPTION = "input_membershipTypeDescription",
|
|
361
|
+
MEMBERSHIP_DISCOUNT_PERCENTAGE = "input_membershipDiscountPercentage",
|
|
362
|
+
DELIVERY_CODE = "input_deliveryCode",
|
|
363
|
+
DELIVERY_INTERVAL = "input_deliveryInterval",
|
|
364
|
+
DELIVERY_FREQUENCY_TEXT = "input_deliveryFrequencyText",
|
|
365
|
+
DENOMINATION_ROUNDING = "input_denominationRounding",
|
|
366
|
+
CURRENCY_CODE = "input_currency_code",
|
|
367
|
+
COMPETITOR = "input_competitor",
|
|
368
|
+
FORM_OF_PROOF = "input_formOfProof",
|
|
369
|
+
COMPETITOR_CODE = "input_competitorCode",
|
|
370
|
+
FORM_OF_PROOF_CODE = "input_formOfProofCode",
|
|
371
|
+
CUSTOM_COMPETITOR_NAME = "input_customCompetitorName",
|
|
372
|
+
CUSTOM_FORM_OF_PROOF = "input_customFormOfProof",
|
|
373
|
+
TENDER_TAX = "input_tenderTax",
|
|
374
|
+
EMPLOYEE_INFORMATION_CONFIRMATION = "input_employeeInformationConfirmation",
|
|
375
|
+
DOMAIN_NOTIFICATION_EVENT_TYPE = "input_domainNotificationEventType",
|
|
376
|
+
HISTORICAL_TRANSACTION = "input_historicalTransaction",
|
|
377
|
+
TAX_LOTTERY_CUSTOMER_CODE = "input_taxLotteryCustomerCode",
|
|
378
|
+
RETAIL_LOCATION_IDS = "input_retailLocationIds",
|
|
379
|
+
DOCUMENT_TARGET = "input_documentTarget",
|
|
380
|
+
EMPLOYEE_DISCOUNT_VALIDATED = "input_employeeDiscountValidated",
|
|
381
|
+
USER_CONFIRMATION = "input_userConfirmation",
|
|
382
|
+
IS_MANUAL_EXCHANGE_RATE_ENTRY = "input_isManualExchangeRateEntry",
|
|
383
|
+
DATE_TIME = "input_dateTime",
|
|
384
|
+
FIELDS = "input_fields",
|
|
385
|
+
FORM_NAME = "input_formName",
|
|
386
|
+
NAMESPACE = "input_namespace",
|
|
387
|
+
IS_GIFT_CERT_ISSUE = "input_isGiftCertIssue",
|
|
388
|
+
GIFT_CERT_ACTION = "input_giftCertAction",
|
|
389
|
+
PICKUP_AT_ANOTHER_LOCATION_ID = "input_pickupAtAnotherLocationId",
|
|
390
|
+
PREPAID_TENDERS_TO_APPLY = "input_prepaidTendersToApply",
|
|
391
|
+
PREPAID_TENDER_TO_APPLY = "input_prepaidTenderToApply",
|
|
392
|
+
LEVEL_ID = "input_levelId",
|
|
393
|
+
NODE_IN_LEVEL_ID = "input_nodeInLevelId",
|
|
394
|
+
PARENT_LEVEL_ID = "input_parentLevelId",
|
|
395
|
+
PARENT_NODE_IN_LEVEL_ID = "input_parentNodeInLevelId",
|
|
396
|
+
GROUP_ID = "input_groupId",
|
|
397
|
+
ALL = "input_all",
|
|
398
|
+
INCLUDE_NODES_WITH_GROUPS_ONLY = "input_includeNodesWithGroupsOnly",
|
|
399
|
+
PRESET_EXEMPTION_CATEGORY = "input_presetExemptionCategory",
|
|
400
|
+
PRESET_EXEMPTION_RATE = "input_presetExemptionRate",
|
|
401
|
+
ORDER_DISCOUNT_ROUNDING_ADJUSTMENT_AMOUNT = "input_orderDiscountRoundingAdjustmentAmount",
|
|
402
|
+
CONFIRM_CUSTOMER_FOR_RETURN = "input_confirmCustomerForReturn",
|
|
403
|
+
INPUT_FROM_UNAVAILABLE_SCREEN = "input_fromUnavailableScreen",
|
|
404
|
+
FISCAL_PRINTER_APP_RELOAD = "input_fiscalPrinterAppReload",
|
|
405
|
+
CARD_NUMBER = "input_cardNumber",
|
|
406
|
+
REFERENCE_NUMBER = "input_referenceNumber",
|
|
407
|
+
REFUNDABLE_TENDERS_AS_TENDERTYPE = "input_refundableTenders_As_TenderType",
|
|
408
|
+
ORIGINAL_TENDER = "input_originalTender",
|
|
409
|
+
REFUNDABLE_TENDERS = "input_refundableTenders",
|
|
410
|
+
BEST_REDEMPTION_PROMPT_STATUS = "input_bestRedemptionPromptStatus",
|
|
411
|
+
TENDER_IS_ORIGINAL_TENDER = "input_tenderIsOriginalTender"
|
|
412
|
+
}
|
|
413
|
+
export declare enum CollectedDataKey {
|
|
414
|
+
Abort = "abort",
|
|
415
|
+
AccountingCurrency = "accountingCurrency",
|
|
416
|
+
ActionType = "actionType",
|
|
417
|
+
AllowedDiscountType = "allowedDiscountType",
|
|
418
|
+
Amount = "amount",
|
|
419
|
+
AssignCustomer = "assignCustomer",
|
|
420
|
+
AssignedToTransaction = "assignedToTransaction",
|
|
421
|
+
AssignSalesperson = "assignSalesperson",
|
|
422
|
+
attachments = "attachments",
|
|
423
|
+
ApplyDiscountToBasePrice = "ApplyDiscountToBasePrice",
|
|
424
|
+
AuthorizationDeviceId = "AuthorizationDeviceId",
|
|
425
|
+
AutoApplied = "AutoApplied",
|
|
426
|
+
BalanceInquiry = "BalanceInquiry",
|
|
427
|
+
Billing = "Billing",
|
|
428
|
+
BalanceInquiryResponse = "BalanceInquiryResponse",
|
|
429
|
+
ExchangeRateValue = "exchangeRateValue",
|
|
430
|
+
FeesByFulfillmentGroup = "FeesByFulfillmentGroup",
|
|
431
|
+
FulfillmentGroupId = "FulfillmentGroupId",
|
|
432
|
+
BusinessDayDate = "BusinessDayDate",
|
|
433
|
+
CardNumber = "CardNumber",
|
|
434
|
+
CashDrawerStatus = "CashDrawerStatus",
|
|
435
|
+
CashDrawerStatusChangeSuccess = "cashDrawerStatusChangeSuccess",
|
|
436
|
+
CashDrawerRequestType = "cashDrawerRequestType",
|
|
437
|
+
CertificateId = "CertificateId",
|
|
438
|
+
CustomFeeType = "CustomFeeType",
|
|
439
|
+
Comment = "comment",
|
|
440
|
+
Contact = "contact",
|
|
441
|
+
ContactVerification = "contactVerification",
|
|
442
|
+
CountryCode = "countryCode",
|
|
443
|
+
CouponAuthorizationRequired = "couponAuthorizationRequired",
|
|
444
|
+
CouponCode = "couponCode",
|
|
445
|
+
CouponServiceResult = "CouponServiceResult",
|
|
446
|
+
CouponNumber = "couponNumber",
|
|
447
|
+
CustomerName = "customerName",
|
|
448
|
+
CustomerRestored = "customerRestored",
|
|
449
|
+
DateTime = "dateTime",
|
|
450
|
+
DaysUntilPasswordExpiration = "daysUntilPasswordExpiration",
|
|
451
|
+
DefaultSalesperson = "defaultSalesperson",
|
|
452
|
+
DefaultReturnPrice = "defaultReturnPrice",
|
|
453
|
+
DeliveryRetailLocation = "DeliveryRetailLocation",
|
|
454
|
+
DeviceStatuses = "DeviceStatuses",
|
|
455
|
+
DisableSupervisorOverride = "disableSupervisorOverride",
|
|
456
|
+
DiscountEntryType = "discountEntryType",
|
|
457
|
+
DiscountType = "discountType",
|
|
458
|
+
DiscountAmountValue = "discountAmountValue",
|
|
459
|
+
DonationAmountType = "donationAmountType",
|
|
460
|
+
DonationAmount = "donationAmount",
|
|
461
|
+
DonationCode = "donationCode",
|
|
462
|
+
DonationName = "donationName",
|
|
463
|
+
DonationExternalId = "donationExternalId",
|
|
464
|
+
DuplicateFlag = "duplicateFlag",
|
|
465
|
+
EmailAddress = "emailAddress",
|
|
466
|
+
EmployeeCustomer = "employeeCustomer",
|
|
467
|
+
EmployeeCustomerDiscountDefinitionKey = "employeeCustomerDiscountDefinitionKey",
|
|
468
|
+
Employee = "employee",
|
|
469
|
+
EmployeeId = "employeeId",
|
|
470
|
+
EntryMethod = "entryMethod",
|
|
471
|
+
EvaluateOnly = "evaluateOnly",
|
|
472
|
+
ExchangeRate = "exchangeRate",
|
|
473
|
+
ExchangeRates = "exchangeRates",
|
|
474
|
+
ForeignTenderAmount = "foreignTenderAmount",
|
|
475
|
+
FiscalConfigValidation = "fiscalConfigValidation",
|
|
476
|
+
TaxExemptDisplayName = "taxExemptDisplayName",
|
|
477
|
+
TaxExemptAuthorities = "taxExemptAuthorities",
|
|
478
|
+
ExemptedItemLineReference = "exemptedItemLineReference",
|
|
479
|
+
ExpiredPasswordChange = "expiredPasswordChange",
|
|
480
|
+
FastDiscount = "fastDiscount",
|
|
481
|
+
FeeDepartment = "feeDepartment",
|
|
482
|
+
FeeDepartmentGroup = "feeDepartmentGroup",
|
|
483
|
+
FeeDescription = "feeDescription",
|
|
484
|
+
FeeExternalId = "feeExternalId",
|
|
485
|
+
FeeId = "feeId",
|
|
486
|
+
FeeLongDescription = "feeLongDescription",
|
|
487
|
+
FeeQuantity = "feeQuantity",
|
|
488
|
+
PrevFeeQuantity = "prevFeeQuantity",
|
|
489
|
+
FeeLineReference = "feeLineReference",
|
|
490
|
+
FeeType = "feeType",
|
|
491
|
+
PreviousFeeUnitAmount = "previousFeeUnitAmount",
|
|
492
|
+
FeeUnitAmount = "feeUnitAmount",
|
|
493
|
+
FeeReturnRule = "feeReturnRule",
|
|
494
|
+
FeeQuantityAllowed = "feeQuantityAllowed",
|
|
495
|
+
FiscalCode = "fiscalCode",
|
|
496
|
+
FiscalReceiptAmount = "fiscalReceiptAmount",
|
|
497
|
+
FiscalReceiptDate = "fiscalReceiptDate",
|
|
498
|
+
FiscalReceiptTime = "fiscalReceiptTime",
|
|
499
|
+
FiscalStatus = "fiscalStatus",
|
|
500
|
+
FiscalYReceiptNumber = "fiscalYReceiptNumber",
|
|
501
|
+
FiscalNumber = "fiscalNumber",
|
|
502
|
+
FiscalId = "fiscalId",
|
|
503
|
+
FiscalDeviceActivitySuccessful = "fiscalDeviceActivitySuccessful",
|
|
504
|
+
FiscalDeviceInformation = "fiscalDeviceInformation",
|
|
505
|
+
FiscalTransactionInformation = "fiscalTransactionInformation",
|
|
506
|
+
FiscalDeviceErrorCode = "fiscalDeviceErrorCode",
|
|
507
|
+
FiscalDeviceErrorDescription = "fiscalDeviceErrorDescription",
|
|
508
|
+
ForcedAuthorizationApproval = "ForcedAuthorizationApproval",
|
|
509
|
+
ForfeitChangeConfirmation = "ForfeitChangeConfirmation",
|
|
510
|
+
FooterScanCodes = "FooterScanCodes",
|
|
511
|
+
FulfillmentType = "fulfillmentType",
|
|
512
|
+
FullPageInvoice = "fullPageInvoice",
|
|
513
|
+
BarcodeFormats = "BarcodeFormats",
|
|
514
|
+
GiftCardIssueResponse = "GiftCardIssueResponse",
|
|
515
|
+
GiftCardPin = "GiftCardPin",
|
|
516
|
+
GiftReceiptMode = "GiftReceiptMode",
|
|
517
|
+
HardSoftStopItems = "hardSoftStopItems",
|
|
518
|
+
IncomingCashDrawerStatusCode = "IncomingCashDrawerStatusCode",
|
|
519
|
+
InputSource = "inputSource",
|
|
520
|
+
InternalCouponNumber = "internalCouponNumber",
|
|
521
|
+
InvoiceNumber = "invoiceNumber",
|
|
522
|
+
IsChangeProcessing = "IsChangeProcessing",
|
|
523
|
+
ItemLineReference = "ItemLineReference",
|
|
524
|
+
FeeItemItemLineReference = "FeeItemItemLineReference",
|
|
525
|
+
AddedItemLineNumbers = "AddedItemLineNumbers",
|
|
526
|
+
ItemQuantityInBasket = "itemQuantityInBasket",
|
|
527
|
+
ItemStatus = "itemStatus",
|
|
528
|
+
ItemStopStatusMessage = "itemStopStatusMessage",
|
|
529
|
+
LastTransaction = "lastTransaction",
|
|
530
|
+
LineNumberReference = "lineNumberReference",
|
|
531
|
+
LineNumbers = "LineNumbers",
|
|
532
|
+
LineNumber = "lineNumber",
|
|
533
|
+
LoyaltyPlanKey = "LoyaltyPlanKey",
|
|
534
|
+
LoyaltyActivityId = "LoyaltyActivityId",
|
|
535
|
+
LoyaltyDiscountProratedByService = "LoyaltyDiscountProratedByService",
|
|
536
|
+
ProratedLoyaltyItemLines = "ProratedLoyaltyItemLines",
|
|
537
|
+
ManualSubscriptionDiscountFlag = "ManualSubscriptionDiscountFlag",
|
|
538
|
+
Redemptions = "Redemptions",
|
|
539
|
+
RedemptionType = "RedemptionType",
|
|
540
|
+
RedemptionCode = "RedemptionCode",
|
|
541
|
+
RedemptionDescription = "RedemptionDescription",
|
|
542
|
+
RedemptionName = "RedemptionName",
|
|
543
|
+
IncludeMerchandiseItemsOnly = "IncludeMerchandiseItemsOnly",
|
|
544
|
+
LoyaltyMembershipResponse = "LoyaltyMembershipResponse",
|
|
545
|
+
ValueCertificates = "valueCertificates",
|
|
546
|
+
ValueCertificateNumber = "valueCertificateNumber",
|
|
547
|
+
ManuallyEnteredPrice = "manuallyEnteredPrice",
|
|
548
|
+
NewPrice = "newPrice",
|
|
549
|
+
CompetitivePrice = "competitivePrice",
|
|
550
|
+
Competitor = "competitor",
|
|
551
|
+
FormOfProof = "formOfProof",
|
|
552
|
+
CompetitorCode = "competitorCode",
|
|
553
|
+
FormOfProofCode = "formOfProofCode",
|
|
554
|
+
CustomCompetitorName = "customCompetitorName",
|
|
555
|
+
CustomFormOfProof = "customFormOfProof",
|
|
556
|
+
IsCompetitivePriceDiscount = "isCompetitivePriceDiscount",
|
|
557
|
+
NextTransactionNumber = "nextTransactionNumber",
|
|
558
|
+
Offline = "offline",
|
|
559
|
+
OfflineApprovalCode = "offlineApprovalCode",
|
|
560
|
+
OfflineAuthorizationCode = "OfflineAuthorizationCode",
|
|
561
|
+
OriginalExtendedAmount = "OriginalExtendedAmount",
|
|
562
|
+
Order = "order",
|
|
563
|
+
OrderInquiryCustomerOrders = "orderInquiryCustomerOrders",
|
|
564
|
+
LineNumberFromOrder = "lineNumberFromOrder",
|
|
565
|
+
OrderLineReference = "orderLineReference",
|
|
566
|
+
OrderReference = "orderReference",
|
|
567
|
+
OrderReferenceId = "orderReferenceId",
|
|
568
|
+
OrderReferenceOrder = "orderReferenceOrder",
|
|
569
|
+
OriginalOrderTransactionReference = "originalOrderTransactionReference",
|
|
570
|
+
ExtendedAmountFromExternalItem = "extendedAmountFromExternalItem",
|
|
571
|
+
ExtendedAmountIncludingTaxFromExternalItem = "extendedAmountIncludingTaxFromExternalItem",
|
|
572
|
+
ExtendedAmountExcludingTaxFromExternalItem = "extendedAmountExcludingTaxFromExternalItem",
|
|
573
|
+
OriginalTenderLineReferences = "originalTenderLineReferences",
|
|
574
|
+
OriginalTenderReferences = "originalTenderReferences",
|
|
575
|
+
OriginalTransactionReference = "originalTransactionReference",
|
|
576
|
+
OriginalTransaction = "originalTransaction",
|
|
577
|
+
OriginalTransactionLines = "originalTransactionLines",
|
|
578
|
+
OriginalTransactionLineReference = "originalTransactionLineReference",
|
|
579
|
+
OriginalTransactionNumber = "originalTransactionNumber",
|
|
580
|
+
OriginalReceiptCategory = "originalReceiptCategory",
|
|
581
|
+
OriginalPromotionCoupons = "originalPromotionCoupons",
|
|
582
|
+
OriginalEmployeeCustomer = "originalEmployeeCustomer",
|
|
583
|
+
OriginalPriceOverride = "originalPriceOverride",
|
|
584
|
+
OriginalComments = "originalComments",
|
|
585
|
+
OriginalLoyaltyInformation = "originalLoyaltyInformation",
|
|
586
|
+
OriginalCompetitivePriceInformation = "originalCompetitivePriceInformation",
|
|
587
|
+
OriginalSupervisorOverrideInformation = "originalSupervisorOverrideInformation",
|
|
588
|
+
OriginalTaxOverride = "originalTaxOverride",
|
|
589
|
+
OriginalDiscountReason = "OriginalDiscountReason",
|
|
590
|
+
InitialReceiptCategory = "initialReceiptCategory",
|
|
591
|
+
OriginalReceipts = "originalReceipts",
|
|
592
|
+
ShippingFee = "shippingFee",
|
|
593
|
+
ShippingMethod = "shippingMethod",
|
|
594
|
+
TaxFreeFormKey = "taxFreeFormKey",
|
|
595
|
+
TaxOverrideAmount = "taxOverrideAmount",
|
|
596
|
+
TaxOverrideRate = "taxOverrideRate",
|
|
597
|
+
TaxOverrideModifierType = "taxOverrideModifierType",
|
|
598
|
+
TaxOverrideReason = "taxOverrideReason",
|
|
599
|
+
TaxOverrideLineReferences = "taxOverrideLineReferences",
|
|
600
|
+
TaxOverrideTransactionLine = "taxOverrideTransactionLine",
|
|
601
|
+
TimezoneOffsetInMinutes = "timezoneOffsetInMinutes",
|
|
602
|
+
TenderPaymentIsCompleted = "tenderPaymentIsCompleted",
|
|
603
|
+
PaginationMetadata = "paginationMetadata",
|
|
604
|
+
PaidAmount = "PaidAmount",
|
|
605
|
+
PaidOutReference = "paidOutReference",
|
|
606
|
+
PhoneNumber = "phoneNumber",
|
|
607
|
+
Percent = "percentage",
|
|
608
|
+
PeripheralDeviceId = "peripheralDeviceId",
|
|
609
|
+
PreviousCashDrawerStatusCode = "PreviousCashDrawerStatusCode",
|
|
610
|
+
PreventReprint = "preventReprint",
|
|
611
|
+
Price = "price",
|
|
612
|
+
PricingRuleId = "pricingRuleId",
|
|
613
|
+
Printer = "printer",
|
|
614
|
+
PrinterStatus = "printerStatus",
|
|
615
|
+
FiscalDeviceStatusCode = "fiscalDeviceStatusCode",
|
|
616
|
+
PrinterInfo = "printerInfo",
|
|
617
|
+
PrimaryLanguage = "primaryLanguage",
|
|
618
|
+
ProductInquiryInventory = "productInquiryLocalInventory",
|
|
619
|
+
ProximitySearchInventory = "proximitySearchLocalInventory",
|
|
620
|
+
QualifiedUserRestriction = "QualifiedUserRestriction",
|
|
621
|
+
Quantity = "quantity",
|
|
622
|
+
ReasonComment = "reasonComment",
|
|
623
|
+
ReasonCode = "reasonCode",
|
|
624
|
+
ResponseCode = "responseCode",
|
|
625
|
+
ReasonDescription = "reasonDescription",
|
|
626
|
+
ReasonListType = "reasonListType",
|
|
627
|
+
Receipt = "receipt",
|
|
628
|
+
ReceiptCategory = "receiptCategory",
|
|
629
|
+
ReceiptType = "receiptType",
|
|
630
|
+
ReferenceNumber = "referenceNumber",
|
|
631
|
+
RefundedLineReference = "RefundedLineReference",
|
|
632
|
+
ReprintTransaction = "reprintTransaction",
|
|
633
|
+
ReprintTransactionType = "reprintTransactionType",
|
|
634
|
+
ReprintReceiptCount = "reprintReceiptCount",
|
|
635
|
+
ResultCashDrawerStatusCode = "ResultCashDrawerStatusCode",
|
|
636
|
+
ResumeTransaction = "resumeTransaction",
|
|
637
|
+
ResumeCompleteEvent = "resumeCompleteEvent",
|
|
638
|
+
RetrievedTransaction = "retrievedTransaction",
|
|
639
|
+
RevenueStamp = "revenueStamp",
|
|
640
|
+
ReversalTransaction = "reversalTransaction",
|
|
641
|
+
RequestedDiscountAmount = "requestedDiscountAmount",
|
|
642
|
+
LoyaltyDiscountsRemoved = "loyaltyDiscountsRemoved",
|
|
643
|
+
DenominationRounding = "denominationRounding",
|
|
644
|
+
DenominationRoundingTenderType = "denominationRoundingTenderType",
|
|
645
|
+
SecurityAuthorizationStatus = "securityAuthorizationStatus",
|
|
646
|
+
ReturnItemFeeInputs = "returnItemFeeInputs",
|
|
647
|
+
Salesperson = "salesperson",
|
|
648
|
+
SalespersonId = "salespersonId",
|
|
649
|
+
ReceiptCategories = "ReceiptCategories",
|
|
650
|
+
SellSoftStopItem = "sellSoftStopItem",
|
|
651
|
+
ServiceResult = "serviceResult",
|
|
652
|
+
SupervisorOverrideLineReference = "supervisorOverrideLineReference",
|
|
653
|
+
SupervisorOverride = "supervisorOverride",
|
|
654
|
+
ReportType = "reportType",
|
|
655
|
+
SearchItemKey = "searchItemKey",
|
|
656
|
+
SearchItemKeyType = "searchItemKeyType",
|
|
657
|
+
SkipConfirmClose = "skipConfirmClose",
|
|
658
|
+
StoreItem = "storeItem",
|
|
659
|
+
SuspendTransactionResult = "SuspendTransactionResult",
|
|
660
|
+
SuspendTransactionResumeToken = "SuspendTransactionResumeToken",
|
|
661
|
+
TaxLotteryNumber = "taxLotteryNumber",
|
|
662
|
+
TaxLotteryCode = "taxLotteryCode",
|
|
663
|
+
TaxLotteryCustomerCode = "taxLotteryCustomerCode",
|
|
664
|
+
TaxPreviousLotteryCode = "previousTaxLotteryCode",
|
|
665
|
+
TaxCustomer = "taxCustomer",
|
|
666
|
+
TaxExemptType = "taxExemptType",
|
|
667
|
+
TaxGroupId = "taxGroupId",
|
|
668
|
+
TaxOverrideType = "taxOverrideType",
|
|
669
|
+
TenderAdjustmentType = "TenderAdjustmentType",
|
|
670
|
+
TenderAmount = "TenderAmount",
|
|
671
|
+
TenderAmountOriginal = "TenderAmountOriginal",
|
|
672
|
+
TenderAuthCategory = "TenderAuthCategory",
|
|
673
|
+
TenderAuthFailureReasonCode = "TenderAuthFailureReasonCode",
|
|
674
|
+
TenderAuthorizationRequired = "TenderAuthorizationRequired",
|
|
675
|
+
TenderAuthorizationStatus = "TenderAuthorizationStatus",
|
|
676
|
+
TenderAuthResponse = "TenderAuthResponse",
|
|
677
|
+
TenderDecline = "TenderDecline",
|
|
678
|
+
TenderId = "tenderId",
|
|
679
|
+
TenderName = "tenderName",
|
|
680
|
+
TenderPreventsTransactionVoid = "TenderPreventsTransactionVoid",
|
|
681
|
+
TenderReversalFailed = "tenderReversalFailed",
|
|
682
|
+
TenderSubType = "tenderSubType",
|
|
683
|
+
TenderType = "TenderType",
|
|
684
|
+
TenderTypeName = "TenderTypeName",
|
|
685
|
+
TerminalState = "TerminalState",
|
|
686
|
+
TerminalStatus = "TerminalStatus",
|
|
687
|
+
TerminalPendingUpdate = "TerminalPendingUpdate",
|
|
688
|
+
TransactionLineReference = "TransactionLineReference",
|
|
689
|
+
HistoricalTransactions = "HistoricalTransactions",
|
|
690
|
+
HistoricalTransactionWithAdditionalData = "HistoricalTransactionWithAdditionalData",
|
|
691
|
+
TillState = "tillState",
|
|
692
|
+
TillStatus = "tillStatus",
|
|
693
|
+
TillEvent = "tillEvent",
|
|
694
|
+
userComments = "userComments",
|
|
695
|
+
CashDrawerAttachedToDeviceId = "cashDrawerAttachedToDeviceId",
|
|
696
|
+
CashDrawerKey = "cashDrawerKey",
|
|
697
|
+
AlternateKey = "alternateKey",
|
|
698
|
+
TillKey = "tillKey",
|
|
699
|
+
TillAccountabilityMode = "tillAccountabilityMode",
|
|
700
|
+
AccountabilityMode = "accountabilityMode",
|
|
701
|
+
TillTenderId = "tillTenderId",
|
|
702
|
+
TillTenderType = "tillTenderType",
|
|
703
|
+
TillTransferAmount = "tillTransferAmount",
|
|
704
|
+
TillCountedAmount = "tillCountedAmount",
|
|
705
|
+
TillFloatAmount = "tillFloatAmount",
|
|
706
|
+
MaintainFloatInTill = "maintainFloatInTill",
|
|
707
|
+
TillExpectedFloatAmount = "tillExpectedFloatAmount",
|
|
708
|
+
TillLastFloat = "tillLastFloat",
|
|
709
|
+
TillExpectedAmount = "tillExpectedAmount",
|
|
710
|
+
TillVarianceAmount = "tillVarianceAmount",
|
|
711
|
+
TillVarianceComment = "tillVarianceComment",
|
|
712
|
+
TillCurrentTotal = "tillCurrentTotal",
|
|
713
|
+
TillEventServiceResult = "tillEventServiceResult",
|
|
714
|
+
NoSaleComment = "NoSaleComment",
|
|
715
|
+
UiBusinessInputType = "UiBusinessInputType",
|
|
716
|
+
UiBusinessEvent = "UiBusinessEvent",
|
|
717
|
+
UnusedCoupons = "unusedCoupons",
|
|
718
|
+
UserAuthFailureReason = "UserAuthFailureReason",
|
|
719
|
+
Username = "Username",
|
|
720
|
+
UserContinueCashDrawerOpen = "UserContinueCashDrawerOpen",
|
|
721
|
+
VariationPercent = "VariationPercent",
|
|
722
|
+
VariationAmount = "VariationAmount",
|
|
723
|
+
VoidSource = "VoidSource",
|
|
724
|
+
ZReportNumber = "zReportNumber",
|
|
725
|
+
ResponseCommand = "responseCommand",
|
|
726
|
+
ResponseData = "responseData",
|
|
727
|
+
SyncType = "syncType",
|
|
728
|
+
ReceiptLogo = "receiptLogo",
|
|
729
|
+
RequestData = "requestData",
|
|
730
|
+
RequestType = "requestType",
|
|
731
|
+
TillActualAmount = "tillActualAmount",
|
|
732
|
+
TillReplacementAmount = "tillReplacementAmount",
|
|
733
|
+
PrinterSerialNumber = "printerSerialNumber",
|
|
734
|
+
ReturnWithTransaction = "ReturnWithTransaction",
|
|
735
|
+
SealBagKey = "SealBagKey",
|
|
736
|
+
TransactionInformationForReturn = "TransactionInformationForReturn",
|
|
737
|
+
LineNumberFromReturnTransaction = "LineNumberFromReturnTransaction",
|
|
738
|
+
SublineIndexFromReturnItem = "SublineIndexFromReturnItem",
|
|
739
|
+
TaxRefundToken = "TaxRefundToken",
|
|
740
|
+
TaxRefundEligibility = "TaxRefundEligibility",
|
|
741
|
+
TaxRefundGroupId = "TaxRefundGroupId",
|
|
742
|
+
TaxRefundSender = "TaxRefundSender",
|
|
743
|
+
TaxRefundIssueModel = "TaxRefundIssueModel",
|
|
744
|
+
TaxRefundWebviewData = "TaxRefundWebviewData",
|
|
745
|
+
TaxRefundWebviewUrl = "TaxRefundWebviewUrl",
|
|
746
|
+
TaxRefundResponsePayload = "TaxRefundResponsePayload",
|
|
747
|
+
TaxRefundResponseType = "TaxRefundResponseType",
|
|
748
|
+
TaxRefundError = "TaxRefundError",
|
|
749
|
+
TaxRefundIssuingStarted = "TaxRefundIssuingStarted",
|
|
750
|
+
TaxRefundEncodedTaxFreeForm = "TaxRefundEncodedTaxFreeForm",
|
|
751
|
+
TaxRefundDocumentIdentifier = "TaxRefundDocumentIdentifier",
|
|
752
|
+
TaxRefundGrossAmount = "TaxRefundGrossAmount",
|
|
753
|
+
TaxRefundGrossAmountAsNumber = "TaxRefundGrossAmountAsNumber",
|
|
754
|
+
TaxRefundWebSocketUrl = "TaxRefundWebSocketUrl",
|
|
755
|
+
TaxRefundShopId = "TaxRefundShopId",
|
|
756
|
+
TaxRefundDeskId = "TaxRefundDeskId",
|
|
757
|
+
TaxRefundIsActive = "TaxRefundIsActive",
|
|
758
|
+
TaxRefundResultCode = "TaxRefundResultCode",
|
|
759
|
+
TaxRefundMetaError = "TaxRefundMetaError",
|
|
760
|
+
Connected = "Connected",
|
|
761
|
+
PreferredLanguage = "PreferredLanguage",
|
|
762
|
+
DefaultLanguage = "DefaultLanguage",
|
|
763
|
+
OriginalSublineFromExternalItem = "OriginalSublineFromExternalItem",
|
|
764
|
+
LineNumberFromReturnCanonicalTransaction = "LineNumberFromReturnCanonicalTransaction",
|
|
765
|
+
LineNumberFromReturnCanonicalSubItem = "LineNumberFromReturnCanonicalSubItem",
|
|
766
|
+
OriginalUnitPriceFromExternalItem = "OriginalUnitPriceFromExternalItem",
|
|
767
|
+
OriginalTransactionSalesperson = "OriginalTransactionSalesperson",
|
|
768
|
+
OriginalAlternativeLookupCodesExternalItem = "OriginalAlternativeLookupCodesExternalItem",
|
|
769
|
+
StageCode = "stageCode",
|
|
770
|
+
IsTransactionForReturnReference = "IsTransactionForReturnReference",
|
|
771
|
+
IsTransactionForOfflineReturnReference = "IsTransactionForOfflineReturnReference",
|
|
772
|
+
RecordTransactionReferenceOnResume = "RecordTransactionReferenceOnResume",
|
|
773
|
+
UserAuthFailureMessage = "UserAuthFailureMessage",
|
|
774
|
+
PrintStatus = "PrintStatus",
|
|
775
|
+
DocumentIdentifier = "DocumentIdentifier",
|
|
776
|
+
MimeType = "MimeType",
|
|
777
|
+
TaxRefundVoidSuccessful = "TaxRefundVoidSuccessful",
|
|
778
|
+
SequenceNumber = "SequenceNumber",
|
|
779
|
+
SequenceNumberGenerator = "SequenceNumberGenerator",
|
|
780
|
+
CreditNoteNumber = "CreditNoteNumber",
|
|
781
|
+
ResidentLimit = "ResidentLimit",
|
|
782
|
+
PromptRuleType = "PromptRuleType",
|
|
783
|
+
LotteryCode = "LotteryCode",
|
|
784
|
+
VoidLotteryCode = "VoidLotteryCode",
|
|
785
|
+
VoidLotteryReason = "VoidLotteryReason",
|
|
786
|
+
VoidLotteryReasonDescription = "VoidLotteryReasonDescription",
|
|
787
|
+
OriginalTransactionPerformingUser = "OriginalTransactionPerformingUser",
|
|
788
|
+
OriginalCustomer = "OriginalCustomer",
|
|
789
|
+
ReserveInventoryRequest = "ReserveInventoryRequest",
|
|
790
|
+
ReserveInventoryResponse = "ReserveInventoryResponse",
|
|
791
|
+
MaintainAppliedItemDiscounts = "maintainAppliedItemDiscounts",
|
|
792
|
+
TaxInvoiceNumber = "TaxInvoiceNumber",
|
|
793
|
+
TaxInvoicePrintDateTime = "TaxInvoicePrintDateTime",
|
|
794
|
+
LoyaltyEnrollmentResponse = "LoyaltyEnrollmentResponse",
|
|
795
|
+
LoyaltyEnrollmentFailureMessage = "LoyaltyEnrollmentFailureMessage",
|
|
796
|
+
DeliveryCode = "DeliveryCode",
|
|
797
|
+
DeliveryInterval = "DeliveryInterval",
|
|
798
|
+
DeliveryFrequencyText = "DeliveryFrequencyText",
|
|
799
|
+
MappedRefundTenderTypeName = "MappedRefundTenderTypeName",
|
|
800
|
+
VatNumberIsRequired = "VatNumberIsRequired",
|
|
801
|
+
FiscalSignatureRequired = "FiscalSignatureRequired",
|
|
802
|
+
FiscalTransactionRequired = "FiscalTransactionRequired",
|
|
803
|
+
WorkstationNumber = "workstationNumber",
|
|
804
|
+
TransactionId = "transactionId",
|
|
805
|
+
TransactionNumber = "transactionNumber",
|
|
806
|
+
DeviceId = "deviceId",
|
|
807
|
+
RetailLocationId = "retailLocationId",
|
|
808
|
+
TenantId = "tenantId",
|
|
809
|
+
TransactionStartDateTime = "transactionStartDateTime",
|
|
810
|
+
ResumeTransactionCompleted = "ResumeTransactionCompleted",
|
|
811
|
+
TenderTax = "TenderTax",
|
|
812
|
+
IsTenderFallback = "IsTenderFallback",
|
|
813
|
+
ItemPermanentPrice = "itemPermanentPrice",
|
|
814
|
+
ItemPermanentPriceSource = "itemPermanentPriceSource",
|
|
815
|
+
ItemTemporaryPrice = "itemTemporaryPrice",
|
|
816
|
+
ItemTemporaryPriceSource = "itemTemporaryPriceSource",
|
|
817
|
+
ItemSelectedUnitPrice = "itemSelectedUnitPrice",
|
|
818
|
+
ItemFullPrice = "itemFullPrice",
|
|
819
|
+
ItemFullPriceSource = "itemFullPriceSource",
|
|
820
|
+
ItemEmployeeDiscountPercent = "itemEmployeeDiscountPercent",
|
|
821
|
+
EmployeeDiscountOverride = "employeeDiscountOverride",
|
|
822
|
+
ReprintCount = "reprintCount",
|
|
823
|
+
DisplayEmployeeConfirmationScreen = "displayEmployeeConfirmationScreen",
|
|
824
|
+
EmployeeInformationConfirmed = "employeeInformationConfirmed",
|
|
825
|
+
LineSavings = "lineSavings",
|
|
826
|
+
DomainNotificationEventType = "domainNotificationEventType",
|
|
827
|
+
NeedToRestoreOrderItem = "needToRestoreOrderItem",
|
|
828
|
+
FiscalTransactionNumber = "fiscalTransactionNumber",
|
|
829
|
+
FiscalTypeCode = "fiscalTypeCode",
|
|
830
|
+
FiscalTransactionStartDateTime = "fiscalTransactionStartDateTime",
|
|
831
|
+
FiscalTransactionEndDateTime = "fiscalTransactionEndDateTime",
|
|
832
|
+
FiscalSignature = "fiscalSignature",
|
|
833
|
+
EmployeeDiscount = "EmployeeDiscount",
|
|
834
|
+
DocumentTarget = "documentTarget",
|
|
835
|
+
InvoiceSequenceNumber = "invoiceSequenceNumber",
|
|
836
|
+
InvoiceFiscalTransactionNumber = "invoiceFiscalTransactionNumber",
|
|
837
|
+
InvoiceTransactionNumber = "invoiceTransactionNumber",
|
|
838
|
+
TaxRecordLineData = "taxRecordLineData",
|
|
839
|
+
ExchangeRateManualEntryLineReference = "exchangeRateManualEntryLineReference",
|
|
840
|
+
ExtensibilityFormData = "extensibilityFormData",
|
|
841
|
+
FormName = "formName",
|
|
842
|
+
Fields = "fields",
|
|
843
|
+
EInvoiceReference = "eInvoiceReference",
|
|
844
|
+
PrevFields = "prevFields",
|
|
845
|
+
Namespace = "namespace",
|
|
846
|
+
CashDrawerReset = "CashDrawerReset",
|
|
847
|
+
TransactionTotal = "transactionTotal",
|
|
848
|
+
PrepaidTendersToApply = "prepaidTendersToApply",
|
|
849
|
+
PrepaidTenderToApply = "prepaidTenderToApply",
|
|
850
|
+
MerchandiseHierarchySearchCriteria = "merchandiseHierarchySearchCriteria",
|
|
851
|
+
MerchandiseHierarchyNodes = "merchandiseHierarchyNodes",
|
|
852
|
+
PrepaidAmount = "prepaidAmount",
|
|
853
|
+
PrepaidTaxAmount = "prepaidTaxAmount",
|
|
854
|
+
PrepaidSavingsAmount = "prepaidSavingsAmount",
|
|
855
|
+
PreviouslyCollectedTender = "previouslyCollectedTender",
|
|
856
|
+
PresetRateExemption = "presetRateExemption",
|
|
857
|
+
PresetExemptionCategory = "presetExemptionCategory",
|
|
858
|
+
PresetExemptionRate = "presetExemptionRate",
|
|
859
|
+
OrderDiscountRoundingAmount = "orderDiscountRoundingAmount",
|
|
860
|
+
SelectedOrderItemsTotalAmount = "selectedOrderItemsTotalAmount",
|
|
861
|
+
FromResumeTransaction = "fromResumeTransaction",
|
|
862
|
+
SendSaleItem = "sendSaleItem",
|
|
863
|
+
TransactionInformationForOrder = "transactionInformationForOrder",
|
|
864
|
+
HandleCrmErrorForReturnTransaction = "HandleCrmErrorForReturnTransaction",
|
|
865
|
+
InputFromResumeScreen = "inputFromResumeScreen",
|
|
866
|
+
OriginalRedemptionLoyaltyTransactionKeys = "OriginalRedemptionLoyaltyTransactionKeys",
|
|
867
|
+
OriginalSaleLoyaltyTransactionKeys = "OriginalSaleLoyaltyTransactionKeys",
|
|
868
|
+
FiscalPrinterAppReload = "FiscalPrinterAppReload",
|
|
869
|
+
MaximumAmount = "MaximumAmount",
|
|
870
|
+
LastTenderPaymentLineNumber = "LastTenderPaymentLineNumber",
|
|
871
|
+
RefundableTenders = "RefundableTenders",
|
|
872
|
+
ActiveRefundableTenders = "ActiveRefundableTenders",
|
|
873
|
+
RefundableTendersRequest = "RefundableTendersRequest",
|
|
874
|
+
OriginalTransactionDetails = "OriginalTransactionDetails",
|
|
875
|
+
HandleDuplicateLineForTransaction = "HandleDuplicateLineForTransaction",
|
|
876
|
+
CustomerKey = "customerKey",
|
|
877
|
+
MembershipTypeKey = "membershipTypeKey",
|
|
878
|
+
MembershipTypeName = "membershipTypeName",
|
|
879
|
+
MembershipTypeDescription = "membershipTypeDescription",
|
|
880
|
+
IsPermanentMembershipDiscount = "isPermanentMembershipDiscount",
|
|
881
|
+
TerminalForceClosed = "TerminalForceClosed"
|
|
882
|
+
}
|
|
883
|
+
export declare enum ItemLookupType {
|
|
884
|
+
ProductInquiryDetail = "ProductInquiryDetail",
|
|
885
|
+
ProductInquiry = "ProductInquiry"
|
|
886
|
+
}
|
|
887
|
+
export declare enum TillState {
|
|
888
|
+
InDrawer = "InDrawer",
|
|
889
|
+
OutOfDrawer = "OutOfDrawer"
|
|
890
|
+
}
|
|
891
|
+
export declare enum TillAccountabilityMode {
|
|
892
|
+
Shared = "Shared",
|
|
893
|
+
Terminal = "Terminal",
|
|
894
|
+
Operator = "Operator"
|
|
895
|
+
}
|
|
896
|
+
export declare enum SourceForOrderHistory {
|
|
897
|
+
OMS = "OMS",
|
|
898
|
+
TransactionHistory = "TransactionHistory"
|
|
899
|
+
}
|
|
900
|
+
export declare const APPLICATION_CONTEXT = "StoreSellingApp";
|
|
901
|
+
export declare const PRODUCT_ATTRIBUTE_TYPE_STYLE = "Style";
|
|
902
|
+
export declare const APPLICATION_STARTUP_EVENT: string;
|
|
903
|
+
export declare const TRANSACTION_WAITING_ON_STARTUP_EVENT: string;
|
|
904
|
+
export declare const TRANSACTION_RESUMING_ON_STARTUP_EVENT: string;
|
|
905
|
+
export declare const STORED_VALUE_REVERSAL_COMPLETED_EVENT_TYPE: string;
|
|
906
|
+
export declare const STORED_VALUE_CERTIFICATE_REVERSAL_COMPLETED_EVENT_TYPE: string;
|
|
907
|
+
export declare const TENDER_CHANGE_CANCEL_EVENT_TYPE: string;
|
|
908
|
+
export declare const CASH_DRAWER_OPEN_REQUESTED_EVENT: string;
|
|
909
|
+
export interface ICashDrawerEventData {
|
|
910
|
+
cashDrawerKey: string;
|
|
911
|
+
inputSource: string;
|
|
912
|
+
lineNumber?: number;
|
|
913
|
+
}
|
|
914
|
+
export declare const ITEM_QUANTITY_CHANGE_EVENT: string;
|
|
915
|
+
export interface IItemQuantityChangeEventData {
|
|
916
|
+
sourceLineNumber: number;
|
|
917
|
+
quantity: Quantity;
|
|
918
|
+
addedLineNumbers?: number[];
|
|
919
|
+
}
|
|
920
|
+
export declare const RETURN_WITH_TRANSACTION_ITEM_EVENT: string;
|
|
921
|
+
export interface IReturnWithTransactionItemEventData {
|
|
922
|
+
originalItemLineNumber: number;
|
|
923
|
+
originalItemSubLineIndex: number;
|
|
924
|
+
returnItemLineNumber: number;
|
|
925
|
+
returnItemLineQuantity: Quantity;
|
|
926
|
+
}
|
|
927
|
+
export declare const USER_NOTIFICATION_ERROR_EVENT_TYPE: string;
|
|
928
|
+
export declare enum ItemDiscountBehavior {
|
|
929
|
+
ClearPriorDiscounts = "ClearPriorDiscounts",
|
|
930
|
+
ApplyPriorToOtherDiscounts = "ApplyPriorToOtherDiscounts"
|
|
931
|
+
}
|
|
932
|
+
export declare enum CheckThresholdAgainst {
|
|
933
|
+
OriginalPrice = "OriginalPrice",
|
|
934
|
+
CurrentPrice = "CurrentPrice"
|
|
935
|
+
}
|
|
936
|
+
export declare enum CalculationProfileTypesEnum {
|
|
937
|
+
sellingLocation = "sellingLocation",
|
|
938
|
+
deliveryProfile = "deliveryProfile",
|
|
939
|
+
customProfile = "customProfile"
|
|
940
|
+
}
|
|
941
|
+
export declare enum DigitalSignatureCategory {
|
|
942
|
+
FiscalSignature = "FiscalSignature",
|
|
943
|
+
FiscalSignatureTrade = "FiscalSignatureTrade",
|
|
944
|
+
FiscalSignatureInvoice = "FiscalSignatureInvoice",
|
|
945
|
+
FiscalSignatureReprint = "FiscalSignatureReprint",
|
|
946
|
+
FiscalSignatureReprintInvoice = "FiscalSignatureReprintInvoice",
|
|
947
|
+
FiscalSignatureTradeTypeSale = "FiscalSignatureTradeTypeSale",
|
|
948
|
+
FiscalSignatureTradeTypeReturn = "FiscalSignatureTradeTypeReturn",
|
|
949
|
+
FiscalSignatureTradeTypePostVoid = "FiscalSignatureTradeTypePostVoid"
|
|
950
|
+
}
|
|
951
|
+
export declare enum OrderTypeCode {
|
|
952
|
+
Reservation = "Reservation",
|
|
953
|
+
Regular = "Regular"
|
|
954
|
+
}
|
|
955
|
+
export declare enum EmployeeValidation {
|
|
956
|
+
UseEmployeeValidationService = "UseEmployeeValidationService",
|
|
957
|
+
UseAOEmployeeFile = "UseAOEmployeeFile",
|
|
958
|
+
DoNotValidateEmployee = "DoNotValidateEmployee"
|
|
959
|
+
}
|
|
960
|
+
export declare enum ATCUDDataEnum {
|
|
961
|
+
TaxRegistrationNumber = "TaxRegistrationNumber",
|
|
962
|
+
ValidationCode = "ValidationCode"
|
|
963
|
+
}
|
|
964
|
+
export declare enum SendSaleTaxEnum {
|
|
965
|
+
LocalTax = "LocalTax",
|
|
966
|
+
ExternalTax = "ExternalTax"
|
|
967
|
+
}
|
|
968
|
+
export declare enum LinePropertyOverrides {
|
|
969
|
+
TargetLineNumber = "targetLineNumber",
|
|
970
|
+
CopiedFromLineNumber = "copiedFromLineNumber"
|
|
971
|
+
}
|
|
972
|
+
export declare enum AssignCustomerForReturnAction {
|
|
973
|
+
Assign = "Assign",
|
|
974
|
+
Replace = "Replace",
|
|
975
|
+
Skip = "Skip"
|
|
976
|
+
}
|
|
977
|
+
export declare const DELIVERY_CONTACT_UPDATED_EVENT: string;
|