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