@zeniai/client-epic-state 5.1.39 → 5.1.40-betaAK0

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 (749) hide show
  1. package/lib/entity/invoicing/coupon/couponConstants.d.ts +11 -0
  2. package/lib/entity/invoicing/coupon/couponConstants.js +29 -0
  3. package/lib/entity/invoicing/coupon/couponPayload.d.ts +56 -0
  4. package/lib/entity/invoicing/coupon/couponPayload.js +47 -0
  5. package/lib/entity/invoicing/coupon/couponReducer.d.ts +9 -0
  6. package/lib/entity/invoicing/coupon/couponReducer.js +47 -0
  7. package/lib/entity/invoicing/coupon/couponSelector.d.ts +5 -0
  8. package/lib/entity/invoicing/coupon/couponSelector.js +9 -0
  9. package/lib/entity/invoicing/coupon/couponState.d.ts +39 -0
  10. package/lib/entity/invoicing/coupon/couponState.js +2 -0
  11. package/lib/entity/invoicing/creditNote/creditNotePayload.d.ts +45 -0
  12. package/lib/entity/invoicing/creditNote/creditNotePayload.js +60 -0
  13. package/lib/entity/invoicing/creditNote/creditNoteReducer.d.ts +9 -0
  14. package/lib/entity/invoicing/creditNote/creditNoteReducer.js +49 -0
  15. package/lib/entity/invoicing/creditNote/creditNoteSelector.d.ts +4 -0
  16. package/lib/entity/invoicing/creditNote/creditNoteSelector.js +17 -0
  17. package/lib/entity/invoicing/creditNote/creditNoteState.d.ts +46 -0
  18. package/lib/entity/invoicing/creditNote/creditNoteState.js +2 -0
  19. package/lib/entity/invoicing/dunningCase/dunningCasePayload.d.ts +25 -0
  20. package/lib/entity/invoicing/dunningCase/dunningCasePayload.js +35 -0
  21. package/lib/entity/invoicing/dunningCase/dunningCaseReducer.d.ts +9 -0
  22. package/lib/entity/invoicing/dunningCase/dunningCaseReducer.js +49 -0
  23. package/lib/entity/invoicing/dunningCase/dunningCaseSelector.d.ts +4 -0
  24. package/lib/entity/invoicing/dunningCase/dunningCaseSelector.js +17 -0
  25. package/lib/entity/invoicing/dunningCase/dunningCaseState.d.ts +28 -0
  26. package/lib/entity/invoicing/dunningCase/dunningCaseState.js +2 -0
  27. package/lib/entity/invoicing/invoice/invoicePayload.d.ts +100 -0
  28. package/lib/entity/invoicing/invoice/invoicePayload.js +128 -0
  29. package/lib/entity/invoicing/invoice/invoiceReducer.d.ts +9 -0
  30. package/lib/entity/invoicing/invoice/invoiceReducer.js +49 -0
  31. package/lib/entity/invoicing/invoice/invoiceSelector.d.ts +5 -0
  32. package/lib/entity/invoicing/invoice/invoiceSelector.js +9 -0
  33. package/lib/entity/invoicing/invoice/invoiceState.d.ts +103 -0
  34. package/lib/entity/invoicing/invoice/invoiceState.js +2 -0
  35. package/lib/entity/invoicing/invoicingCommonPayload.d.ts +67 -0
  36. package/lib/entity/invoicing/invoicingCommonPayload.js +2 -0
  37. package/lib/entity/invoicing/invoicingCommonState.d.ts +40 -0
  38. package/lib/entity/invoicing/invoicingCommonState.js +2 -0
  39. package/lib/entity/invoicing/invoicingCustomer/invoicingCustomerPayload.d.ts +55 -0
  40. package/lib/entity/invoicing/invoicingCustomer/invoicingCustomerPayload.js +71 -0
  41. package/lib/entity/invoicing/invoicingCustomer/invoicingCustomerReducer.d.ts +9 -0
  42. package/lib/entity/invoicing/invoicingCustomer/invoicingCustomerReducer.js +47 -0
  43. package/lib/entity/invoicing/invoicingCustomer/invoicingCustomerSelector.d.ts +4 -0
  44. package/lib/entity/invoicing/invoicingCustomer/invoicingCustomerSelector.js +17 -0
  45. package/lib/entity/invoicing/invoicingCustomer/invoicingCustomerState.d.ts +50 -0
  46. package/lib/entity/invoicing/invoicingCustomer/invoicingCustomerState.js +2 -0
  47. package/lib/entity/invoicing/invoicingSubscription/invoicingSubscriptionPayload.d.ts +76 -0
  48. package/lib/entity/invoicing/invoicingSubscription/invoicingSubscriptionPayload.js +104 -0
  49. package/lib/entity/invoicing/invoicingSubscription/invoicingSubscriptionReducer.d.ts +9 -0
  50. package/lib/entity/invoicing/invoicingSubscription/invoicingSubscriptionReducer.js +49 -0
  51. package/lib/entity/invoicing/invoicingSubscription/invoicingSubscriptionSelector.d.ts +5 -0
  52. package/lib/entity/invoicing/invoicingSubscription/invoicingSubscriptionSelector.js +17 -0
  53. package/lib/entity/invoicing/invoicingSubscription/invoicingSubscriptionState.d.ts +75 -0
  54. package/lib/entity/invoicing/invoicingSubscription/invoicingSubscriptionState.js +2 -0
  55. package/lib/entity/invoicing/invoicingTransaction/invoicingTransactionPayload.d.ts +50 -0
  56. package/lib/entity/invoicing/invoicingTransaction/invoicingTransactionPayload.js +62 -0
  57. package/lib/entity/invoicing/invoicingTransaction/invoicingTransactionReducer.d.ts +9 -0
  58. package/lib/entity/invoicing/invoicingTransaction/invoicingTransactionReducer.js +49 -0
  59. package/lib/entity/invoicing/invoicingTransaction/invoicingTransactionSelector.d.ts +4 -0
  60. package/lib/entity/invoicing/invoicingTransaction/invoicingTransactionSelector.js +17 -0
  61. package/lib/entity/invoicing/invoicingTransaction/invoicingTransactionState.d.ts +53 -0
  62. package/lib/entity/invoicing/invoicingTransaction/invoicingTransactionState.js +2 -0
  63. package/lib/entity/invoicing/plan/planPayload.d.ts +38 -0
  64. package/lib/entity/invoicing/plan/planPayload.js +49 -0
  65. package/lib/entity/invoicing/plan/planReducer.d.ts +9 -0
  66. package/lib/entity/invoicing/plan/planReducer.js +47 -0
  67. package/lib/entity/invoicing/plan/planSelector.d.ts +4 -0
  68. package/lib/entity/invoicing/plan/planSelector.js +17 -0
  69. package/lib/entity/invoicing/plan/planState.d.ts +41 -0
  70. package/lib/entity/invoicing/plan/planState.js +2 -0
  71. package/lib/entity/invoicing/product/productPayload.d.ts +64 -0
  72. package/lib/entity/invoicing/product/productPayload.js +77 -0
  73. package/lib/entity/invoicing/product/productReducer.d.ts +9 -0
  74. package/lib/entity/invoicing/product/productReducer.js +47 -0
  75. package/lib/entity/invoicing/product/productSelector.d.ts +4 -0
  76. package/lib/entity/invoicing/product/productSelector.js +17 -0
  77. package/lib/entity/invoicing/product/productState.d.ts +66 -0
  78. package/lib/entity/invoicing/product/productState.js +2 -0
  79. package/lib/entity/tenant/clearAllEpic.d.ts +44 -2
  80. package/lib/entity/tenant/clearAllEpic.js +86 -2
  81. package/lib/entity/tenant/tenantReducer.js +3 -3
  82. package/lib/epic.d.ts +41 -3
  83. package/lib/epic.js +60 -3
  84. package/lib/esm/entity/invoicing/coupon/couponConstants.js +26 -0
  85. package/lib/esm/entity/invoicing/coupon/couponPayload.js +42 -0
  86. package/lib/esm/entity/invoicing/coupon/couponReducer.js +40 -0
  87. package/lib/esm/entity/invoicing/coupon/couponSelector.js +4 -0
  88. package/lib/esm/entity/invoicing/coupon/couponState.js +1 -0
  89. package/lib/esm/entity/invoicing/creditNote/creditNotePayload.js +54 -0
  90. package/lib/esm/entity/invoicing/creditNote/creditNoteReducer.js +42 -0
  91. package/lib/esm/entity/invoicing/creditNote/creditNoteSelector.js +10 -0
  92. package/lib/esm/entity/invoicing/creditNote/creditNoteState.js +1 -0
  93. package/lib/esm/entity/invoicing/dunningCase/dunningCasePayload.js +31 -0
  94. package/lib/esm/entity/invoicing/dunningCase/dunningCaseReducer.js +42 -0
  95. package/lib/esm/entity/invoicing/dunningCase/dunningCaseSelector.js +10 -0
  96. package/lib/esm/entity/invoicing/dunningCase/dunningCaseState.js +1 -0
  97. package/lib/esm/entity/invoicing/invoice/invoicePayload.js +123 -0
  98. package/lib/esm/entity/invoicing/invoice/invoiceReducer.js +42 -0
  99. package/lib/esm/entity/invoicing/invoice/invoiceSelector.js +4 -0
  100. package/lib/esm/entity/invoicing/invoice/invoiceState.js +1 -0
  101. package/lib/esm/entity/invoicing/invoicingCommonPayload.js +1 -0
  102. package/lib/esm/entity/invoicing/invoicingCommonState.js +1 -0
  103. package/lib/esm/entity/invoicing/invoicingCustomer/invoicingCustomerPayload.js +67 -0
  104. package/lib/esm/entity/invoicing/invoicingCustomer/invoicingCustomerReducer.js +40 -0
  105. package/lib/esm/entity/invoicing/invoicingCustomer/invoicingCustomerSelector.js +10 -0
  106. package/lib/esm/entity/invoicing/invoicingCustomer/invoicingCustomerState.js +1 -0
  107. package/lib/esm/entity/invoicing/invoicingSubscription/invoicingSubscriptionPayload.js +97 -0
  108. package/lib/esm/entity/invoicing/invoicingSubscription/invoicingSubscriptionReducer.js +42 -0
  109. package/lib/esm/entity/invoicing/invoicingSubscription/invoicingSubscriptionSelector.js +10 -0
  110. package/lib/esm/entity/invoicing/invoicingSubscription/invoicingSubscriptionState.js +1 -0
  111. package/lib/esm/entity/invoicing/invoicingTransaction/invoicingTransactionPayload.js +58 -0
  112. package/lib/esm/entity/invoicing/invoicingTransaction/invoicingTransactionReducer.js +42 -0
  113. package/lib/esm/entity/invoicing/invoicingTransaction/invoicingTransactionSelector.js +10 -0
  114. package/lib/esm/entity/invoicing/invoicingTransaction/invoicingTransactionState.js +1 -0
  115. package/lib/esm/entity/invoicing/plan/planPayload.js +45 -0
  116. package/lib/esm/entity/invoicing/plan/planReducer.js +40 -0
  117. package/lib/esm/entity/invoicing/plan/planSelector.js +10 -0
  118. package/lib/esm/entity/invoicing/plan/planState.js +1 -0
  119. package/lib/esm/entity/invoicing/product/productPayload.js +72 -0
  120. package/lib/esm/entity/invoicing/product/productReducer.js +40 -0
  121. package/lib/esm/entity/invoicing/product/productSelector.js +10 -0
  122. package/lib/esm/entity/invoicing/product/productState.js +1 -0
  123. package/lib/esm/entity/tenant/clearAllEpic.js +84 -0
  124. package/lib/esm/entity/tenant/tenantReducer.js +3 -3
  125. package/lib/esm/entity/transactionActivityLog/transactionActivityLogPayload.js +1 -1
  126. package/lib/esm/epic.js +60 -3
  127. package/lib/esm/index.js +97 -0
  128. package/lib/esm/reducer.js +129 -0
  129. package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationEpic.js +2 -1
  130. package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationViewEpic.js +7 -4
  131. package/lib/esm/view/expenseAutomationView/reducers/transactionsViewReducer.js +1 -2
  132. package/lib/esm/view/fileView/fileUploadHelpers.js +1 -2
  133. package/lib/esm/view/invoicing/approvalAction/approvalActionEpic.js +27 -0
  134. package/lib/esm/view/invoicing/approvalAction/approvalActionPayload.js +1 -0
  135. package/lib/esm/view/invoicing/approvalAction/approvalActionReducer.js +36 -0
  136. package/lib/esm/view/invoicing/approvalAction/approvalActionSelector.js +5 -0
  137. package/lib/esm/view/invoicing/approvalAction/approvalActionState.js +1 -0
  138. package/lib/esm/view/invoicing/approvalsView/approvalsViewEpics.js +35 -0
  139. package/lib/esm/view/invoicing/approvalsView/approvalsViewPayload.js +1 -0
  140. package/lib/esm/view/invoicing/approvalsView/approvalsViewReducer.js +62 -0
  141. package/lib/esm/view/invoicing/approvalsView/approvalsViewSelector.js +8 -0
  142. package/lib/esm/view/invoicing/approvalsView/approvalsViewState.js +1 -0
  143. package/lib/esm/view/invoicing/auditView/auditViewEpics.js +44 -0
  144. package/lib/esm/view/invoicing/auditView/auditViewPayload.js +1 -0
  145. package/lib/esm/view/invoicing/auditView/auditViewReducer.js +56 -0
  146. package/lib/esm/view/invoicing/auditView/auditViewSelector.js +8 -0
  147. package/lib/esm/view/invoicing/auditView/auditViewState.js +1 -0
  148. package/lib/esm/view/invoicing/couponView/couponViewEpics.js +93 -0
  149. package/lib/esm/view/invoicing/couponView/couponViewPayload.js +1 -0
  150. package/lib/esm/view/invoicing/couponView/couponViewReducer.js +104 -0
  151. package/lib/esm/view/invoicing/couponView/couponViewSelector.js +37 -0
  152. package/lib/esm/view/invoicing/couponView/couponViewState.js +39 -0
  153. package/lib/esm/view/invoicing/createInvoice/createInvoiceEpic.js +22 -0
  154. package/lib/esm/view/invoicing/createInvoice/createInvoicePayload.js +1 -0
  155. package/lib/esm/view/invoicing/createInvoice/createInvoiceReducer.js +36 -0
  156. package/lib/esm/view/invoicing/createInvoice/createInvoiceSelector.js +28 -0
  157. package/lib/esm/view/invoicing/createInvoice/createInvoiceState.js +1 -0
  158. package/lib/esm/view/invoicing/customerPaymentMethod/customerPaymentMethodEpic.js +60 -0
  159. package/lib/esm/view/invoicing/customerPaymentMethod/customerPaymentMethodPayload.js +1 -0
  160. package/lib/esm/view/invoicing/customerPaymentMethod/customerPaymentMethodReducer.js +84 -0
  161. package/lib/esm/view/invoicing/customerPaymentMethod/customerPaymentMethodSelector.js +7 -0
  162. package/lib/esm/view/invoicing/customerPaymentMethod/customerPaymentMethodState.js +1 -0
  163. package/lib/esm/view/invoicing/dataImportAction/dataImportActionEpic.js +35 -0
  164. package/lib/esm/view/invoicing/dataImportAction/dataImportActionPayload.js +1 -0
  165. package/lib/esm/view/invoicing/dataImportAction/dataImportActionReducer.js +68 -0
  166. package/lib/esm/view/invoicing/dataImportAction/dataImportActionSelector.js +5 -0
  167. package/lib/esm/view/invoicing/dataImportAction/dataImportActionState.js +1 -0
  168. package/lib/esm/view/invoicing/dataImportView/dataImportViewEpics.js +34 -0
  169. package/lib/esm/view/invoicing/dataImportView/dataImportViewPayload.js +1 -0
  170. package/lib/esm/view/invoicing/dataImportView/dataImportViewReducer.js +66 -0
  171. package/lib/esm/view/invoicing/dataImportView/dataImportViewSelector.js +8 -0
  172. package/lib/esm/view/invoicing/dataImportView/dataImportViewState.js +1 -0
  173. package/lib/esm/view/invoicing/dunningAction/dunningActionEpic.js +27 -0
  174. package/lib/esm/view/invoicing/dunningAction/dunningActionPayload.js +1 -0
  175. package/lib/esm/view/invoicing/dunningAction/dunningActionReducer.js +36 -0
  176. package/lib/esm/view/invoicing/dunningAction/dunningActionRequestPayload.js +2 -0
  177. package/lib/esm/view/invoicing/dunningAction/dunningActionSelector.js +5 -0
  178. package/lib/esm/view/invoicing/dunningAction/dunningActionState.js +1 -0
  179. package/lib/esm/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewPayload.js +1 -0
  180. package/lib/esm/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewReducer.js +39 -0
  181. package/lib/esm/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewSelector.js +24 -0
  182. package/lib/esm/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewState.js +1 -0
  183. package/lib/esm/view/invoicing/editInvoicingCatalogItemDetailView/saveInvoicingCatalogItemEpic.js +37 -0
  184. package/lib/esm/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewPayload.js +1 -0
  185. package/lib/esm/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewReducer.js +36 -0
  186. package/lib/esm/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewSelector.js +29 -0
  187. package/lib/esm/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewState.js +1 -0
  188. package/lib/esm/view/invoicing/editInvoicingCouponDetailView/saveInvoicingCouponEpic.js +28 -0
  189. package/lib/esm/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewPayload.js +1 -0
  190. package/lib/esm/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewReducer.js +36 -0
  191. package/lib/esm/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewSelector.js +19 -0
  192. package/lib/esm/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewState.js +1 -0
  193. package/lib/esm/view/invoicing/editInvoicingCustomerDetailView/saveInvoicingCustomerEpic.js +22 -0
  194. package/lib/esm/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewPayload.js +1 -0
  195. package/lib/esm/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewReducer.js +45 -0
  196. package/lib/esm/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewSelector.js +31 -0
  197. package/lib/esm/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewState.js +1 -0
  198. package/lib/esm/view/invoicing/editInvoicingSubscriptionDetailView/fetchInvoicingSubscriptionFormPageEpic.js +29 -0
  199. package/lib/esm/view/invoicing/editInvoicingSubscriptionDetailView/saveInvoicingSubscriptionEpic.js +24 -0
  200. package/lib/esm/view/invoicing/invoiceAction/invoiceActionEpic.js +49 -0
  201. package/lib/esm/view/invoicing/invoiceAction/invoiceActionPayload.js +1 -0
  202. package/lib/esm/view/invoicing/invoiceAction/invoiceActionReducer.js +42 -0
  203. package/lib/esm/view/invoicing/invoiceAction/invoiceActionRequestPayload.js +2 -0
  204. package/lib/esm/view/invoicing/invoiceAction/invoiceActionSelector.js +5 -0
  205. package/lib/esm/view/invoicing/invoiceAction/invoiceActionState.js +1 -0
  206. package/lib/esm/view/invoicing/invoiceDetail/fetchInvoiceDetailEpic.js +22 -0
  207. package/lib/esm/view/invoicing/invoiceDetail/invoiceDetailPayload.js +1 -0
  208. package/lib/esm/view/invoicing/invoiceDetail/invoiceDetailReducer.js +38 -0
  209. package/lib/esm/view/invoicing/invoiceDetail/invoiceDetailSelector.js +13 -0
  210. package/lib/esm/view/invoicing/invoiceDetail/invoiceDetailState.js +1 -0
  211. package/lib/esm/view/invoicing/invoiceList/fetchInvoiceCountsEpic.js +32 -0
  212. package/lib/esm/view/invoicing/invoiceList/fetchInvoiceKPIsEpic.js +15 -0
  213. package/lib/esm/view/invoicing/invoiceList/fetchInvoiceListEpic.js +53 -0
  214. package/lib/esm/view/invoicing/invoiceList/fetchInvoiceListPageEpic.js +30 -0
  215. package/lib/esm/view/invoicing/invoiceList/invoiceListPayload.js +1 -0
  216. package/lib/esm/view/invoicing/invoiceList/invoiceListReducer.js +105 -0
  217. package/lib/esm/view/invoicing/invoiceList/invoiceListSelector.js +23 -0
  218. package/lib/esm/view/invoicing/invoiceList/invoiceListState.js +19 -0
  219. package/lib/esm/view/invoicing/invoicingApiHelper.js +14 -0
  220. package/lib/esm/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewEpics.js +24 -0
  221. package/lib/esm/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewPayload.js +1 -0
  222. package/lib/esm/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewReducer.js +34 -0
  223. package/lib/esm/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewSelector.js +14 -0
  224. package/lib/esm/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewState.js +1 -0
  225. package/lib/esm/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogCountsEpic.js +20 -0
  226. package/lib/esm/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogListPageEpic.js +33 -0
  227. package/lib/esm/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogPlanListEpic.js +43 -0
  228. package/lib/esm/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogProductListEpic.js +46 -0
  229. package/lib/esm/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewPayload.js +1 -0
  230. package/lib/esm/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewReducer.js +132 -0
  231. package/lib/esm/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewSelector.js +26 -0
  232. package/lib/esm/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewState.js +18 -0
  233. package/lib/esm/view/invoicing/invoicingCouponDetailView/fetchInvoicingCouponDetailEpic.js +22 -0
  234. package/lib/esm/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewPayload.js +1 -0
  235. package/lib/esm/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewReducer.js +38 -0
  236. package/lib/esm/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewSelector.js +11 -0
  237. package/lib/esm/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewState.js +1 -0
  238. package/lib/esm/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewEpics.js +19 -0
  239. package/lib/esm/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewPayload.js +1 -0
  240. package/lib/esm/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewReducer.js +31 -0
  241. package/lib/esm/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewSelector.js +11 -0
  242. package/lib/esm/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewState.js +1 -0
  243. package/lib/esm/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteCountsEpic.js +23 -0
  244. package/lib/esm/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteListEpic.js +43 -0
  245. package/lib/esm/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteListPageEpic.js +27 -0
  246. package/lib/esm/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewPayload.js +1 -0
  247. package/lib/esm/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewReducer.js +89 -0
  248. package/lib/esm/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewSelector.js +21 -0
  249. package/lib/esm/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewState.js +39 -0
  250. package/lib/esm/view/invoicing/invoicingCustomerDetailView/fetchInvoicingCustomerDetailEpic.js +22 -0
  251. package/lib/esm/view/invoicing/invoicingCustomerDetailView/fetchInvoicingCustomerDetailPageEpic.js +41 -0
  252. package/lib/esm/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewPayload.js +1 -0
  253. package/lib/esm/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewReducer.js +51 -0
  254. package/lib/esm/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewSelector.js +25 -0
  255. package/lib/esm/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewState.js +1 -0
  256. package/lib/esm/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerCountsEpic.js +20 -0
  257. package/lib/esm/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerListEpic.js +40 -0
  258. package/lib/esm/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerListPageEpic.js +27 -0
  259. package/lib/esm/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewPayload.js +1 -0
  260. package/lib/esm/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewReducer.js +89 -0
  261. package/lib/esm/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewSelector.js +21 -0
  262. package/lib/esm/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewState.js +34 -0
  263. package/lib/esm/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewEpics.js +19 -0
  264. package/lib/esm/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewPayload.js +1 -0
  265. package/lib/esm/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewReducer.js +31 -0
  266. package/lib/esm/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewSelector.js +13 -0
  267. package/lib/esm/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewState.js +1 -0
  268. package/lib/esm/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseCountsEpic.js +20 -0
  269. package/lib/esm/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseListEpic.js +40 -0
  270. package/lib/esm/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseListPageEpic.js +27 -0
  271. package/lib/esm/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewPayload.js +1 -0
  272. package/lib/esm/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewReducer.js +89 -0
  273. package/lib/esm/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewSelector.js +21 -0
  274. package/lib/esm/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewState.js +40 -0
  275. package/lib/esm/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewChurnEpic.js +17 -0
  276. package/lib/esm/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewDashboardSummaryEpic.js +17 -0
  277. package/lib/esm/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewEpic.js +55 -0
  278. package/lib/esm/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewKPIsEpic.js +17 -0
  279. package/lib/esm/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewMRREpic.js +17 -0
  280. package/lib/esm/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewPlanRevenueEpic.js +17 -0
  281. package/lib/esm/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewRevenueEpic.js +17 -0
  282. package/lib/esm/view/invoicing/invoicingOverview/invoicingOverviewPayload.js +87 -0
  283. package/lib/esm/view/invoicing/invoicingOverview/invoicingOverviewReducer.js +115 -0
  284. package/lib/esm/view/invoicing/invoicingOverview/invoicingOverviewSelector.js +65 -0
  285. package/lib/esm/view/invoicing/invoicingOverview/invoicingOverviewState.js +1 -0
  286. package/lib/esm/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewEpics.js +19 -0
  287. package/lib/esm/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewPayload.js +1 -0
  288. package/lib/esm/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewReducer.js +31 -0
  289. package/lib/esm/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewSelector.js +13 -0
  290. package/lib/esm/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewState.js +1 -0
  291. package/lib/esm/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionCountsEpic.js +23 -0
  292. package/lib/esm/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionListEpic.js +49 -0
  293. package/lib/esm/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionListPageEpic.js +27 -0
  294. package/lib/esm/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewPayload.js +1 -0
  295. package/lib/esm/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewReducer.js +89 -0
  296. package/lib/esm/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewSelector.js +22 -0
  297. package/lib/esm/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewState.js +41 -0
  298. package/lib/esm/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewEpics.js +19 -0
  299. package/lib/esm/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewPayload.js +1 -0
  300. package/lib/esm/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewReducer.js +31 -0
  301. package/lib/esm/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewSelector.js +13 -0
  302. package/lib/esm/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewState.js +1 -0
  303. package/lib/esm/view/invoicing/invoicingTransactionListView/epics/fetchInvoicingTransactionListEpic.js +46 -0
  304. package/lib/esm/view/invoicing/invoicingTransactionListView/epics/fetchInvoicingTransactionListPageEpic.js +24 -0
  305. package/lib/esm/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewPayload.js +1 -0
  306. package/lib/esm/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewReducer.js +74 -0
  307. package/lib/esm/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewSelector.js +19 -0
  308. package/lib/esm/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewState.js +39 -0
  309. package/lib/esm/view/invoicing/paymentAction/paymentActionEpic.js +27 -0
  310. package/lib/esm/view/invoicing/paymentAction/paymentActionPayload.js +1 -0
  311. package/lib/esm/view/invoicing/paymentAction/paymentActionReducer.js +36 -0
  312. package/lib/esm/view/invoicing/paymentAction/paymentActionRequestPayload.js +2 -0
  313. package/lib/esm/view/invoicing/paymentAction/paymentActionSelector.js +5 -0
  314. package/lib/esm/view/invoicing/paymentAction/paymentActionState.js +1 -0
  315. package/lib/esm/view/invoicing/recordPayment/recordPaymentEpic.js +22 -0
  316. package/lib/esm/view/invoicing/recordPayment/recordPaymentPayload.js +1 -0
  317. package/lib/esm/view/invoicing/recordPayment/recordPaymentReducer.js +36 -0
  318. package/lib/esm/view/invoicing/recordPayment/recordPaymentSelector.js +5 -0
  319. package/lib/esm/view/invoicing/recordPayment/recordPaymentState.js +1 -0
  320. package/lib/esm/view/invoicing/settingsView/settingsViewEpics.js +66 -0
  321. package/lib/esm/view/invoicing/settingsView/settingsViewPayload.js +1 -0
  322. package/lib/esm/view/invoicing/settingsView/settingsViewReducer.js +75 -0
  323. package/lib/esm/view/invoicing/settingsView/settingsViewSelector.js +7 -0
  324. package/lib/esm/view/invoicing/settingsView/settingsViewState.js +1 -0
  325. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionEpic.js +27 -0
  326. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionPayload.js +1 -0
  327. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionReducer.js +36 -0
  328. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionRequestPayload.js +2 -0
  329. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionSelector.js +5 -0
  330. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionState.js +1 -0
  331. package/lib/esm/view/onboardingView/cockpitView/epic/initializeOnboardingCustomerViewUpdateDataEpic.js +1 -5
  332. package/lib/esm/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewLocalStoreDataEpic.js +5 -4
  333. package/lib/esm/view/spendManagement/commonSetup/setupViewReducer.js +2 -1
  334. package/lib/esm/view/transactionDetail/epics/saveTransactionDetailEpic.js +1 -1
  335. package/lib/index.d.ts +161 -0
  336. package/lib/index.js +353 -1
  337. package/lib/reducer.d.ts +129 -0
  338. package/lib/reducer.js +132 -3
  339. package/lib/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationEpic.js +2 -1
  340. package/lib/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationViewEpic.js +7 -4
  341. package/lib/view/expenseAutomationView/reducers/transactionsViewReducer.js +1 -2
  342. package/lib/view/expenseAutomationView/types/fluxAnalysisViewState.d.ts +1 -1
  343. package/lib/view/fileView/fileUploadHelpers.js +1 -2
  344. package/lib/view/invoicing/approvalAction/approvalActionEpic.d.ts +8 -0
  345. package/lib/view/invoicing/approvalAction/approvalActionEpic.js +31 -0
  346. package/lib/view/invoicing/approvalAction/approvalActionPayload.d.ts +3 -0
  347. package/lib/view/invoicing/approvalAction/approvalActionPayload.js +2 -0
  348. package/lib/view/invoicing/approvalAction/approvalActionReducer.d.ts +17 -0
  349. package/lib/view/invoicing/approvalAction/approvalActionReducer.js +40 -0
  350. package/lib/view/invoicing/approvalAction/approvalActionSelector.d.ts +3 -0
  351. package/lib/view/invoicing/approvalAction/approvalActionSelector.js +9 -0
  352. package/lib/view/invoicing/approvalAction/approvalActionState.d.ts +5 -0
  353. package/lib/view/invoicing/approvalAction/approvalActionState.js +2 -0
  354. package/lib/view/invoicing/approvalsView/approvalsViewEpics.d.ts +7 -0
  355. package/lib/view/invoicing/approvalsView/approvalsViewEpics.js +39 -0
  356. package/lib/view/invoicing/approvalsView/approvalsViewPayload.d.ts +14 -0
  357. package/lib/view/invoicing/approvalsView/approvalsViewPayload.js +2 -0
  358. package/lib/view/invoicing/approvalsView/approvalsViewReducer.d.ts +22 -0
  359. package/lib/view/invoicing/approvalsView/approvalsViewReducer.js +66 -0
  360. package/lib/view/invoicing/approvalsView/approvalsViewSelector.d.ts +9 -0
  361. package/lib/view/invoicing/approvalsView/approvalsViewSelector.js +16 -0
  362. package/lib/view/invoicing/approvalsView/approvalsViewState.d.ts +14 -0
  363. package/lib/view/invoicing/approvalsView/approvalsViewState.js +2 -0
  364. package/lib/view/invoicing/auditView/auditViewEpics.d.ts +7 -0
  365. package/lib/view/invoicing/auditView/auditViewEpics.js +48 -0
  366. package/lib/view/invoicing/auditView/auditViewPayload.d.ts +14 -0
  367. package/lib/view/invoicing/auditView/auditViewPayload.js +2 -0
  368. package/lib/view/invoicing/auditView/auditViewReducer.d.ts +22 -0
  369. package/lib/view/invoicing/auditView/auditViewReducer.js +60 -0
  370. package/lib/view/invoicing/auditView/auditViewSelector.d.ts +9 -0
  371. package/lib/view/invoicing/auditView/auditViewSelector.js +16 -0
  372. package/lib/view/invoicing/auditView/auditViewState.d.ts +17 -0
  373. package/lib/view/invoicing/auditView/auditViewState.js +2 -0
  374. package/lib/view/invoicing/couponView/couponViewEpics.d.ts +16 -0
  375. package/lib/view/invoicing/couponView/couponViewEpics.js +100 -0
  376. package/lib/view/invoicing/couponView/couponViewPayload.d.ts +6 -0
  377. package/lib/view/invoicing/couponView/couponViewPayload.js +2 -0
  378. package/lib/view/invoicing/couponView/couponViewReducer.d.ts +32 -0
  379. package/lib/view/invoicing/couponView/couponViewReducer.js +108 -0
  380. package/lib/view/invoicing/couponView/couponViewSelector.d.ts +33 -0
  381. package/lib/view/invoicing/couponView/couponViewSelector.js +47 -0
  382. package/lib/view/invoicing/couponView/couponViewState.d.ts +43 -0
  383. package/lib/view/invoicing/couponView/couponViewState.js +44 -0
  384. package/lib/view/invoicing/createInvoice/createInvoiceEpic.d.ts +8 -0
  385. package/lib/view/invoicing/createInvoice/createInvoiceEpic.js +26 -0
  386. package/lib/view/invoicing/createInvoice/createInvoicePayload.d.ts +24 -0
  387. package/lib/view/invoicing/createInvoice/createInvoicePayload.js +2 -0
  388. package/lib/view/invoicing/createInvoice/createInvoiceReducer.d.ts +10 -0
  389. package/lib/view/invoicing/createInvoice/createInvoiceReducer.js +40 -0
  390. package/lib/view/invoicing/createInvoice/createInvoiceSelector.d.ts +23 -0
  391. package/lib/view/invoicing/createInvoice/createInvoiceSelector.js +34 -0
  392. package/lib/view/invoicing/createInvoice/createInvoiceState.d.ts +6 -0
  393. package/lib/view/invoicing/createInvoice/createInvoiceState.js +2 -0
  394. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodEpic.d.ts +11 -0
  395. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodEpic.js +67 -0
  396. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodPayload.d.ts +18 -0
  397. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodPayload.js +2 -0
  398. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodReducer.d.ts +21 -0
  399. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodReducer.js +88 -0
  400. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodSelector.d.ts +10 -0
  401. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodSelector.js +17 -0
  402. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodState.d.ts +23 -0
  403. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodState.js +2 -0
  404. package/lib/view/invoicing/dataImportAction/dataImportActionEpic.d.ts +7 -0
  405. package/lib/view/invoicing/dataImportAction/dataImportActionEpic.js +39 -0
  406. package/lib/view/invoicing/dataImportAction/dataImportActionPayload.d.ts +3 -0
  407. package/lib/view/invoicing/dataImportAction/dataImportActionPayload.js +2 -0
  408. package/lib/view/invoicing/dataImportAction/dataImportActionReducer.d.ts +13 -0
  409. package/lib/view/invoicing/dataImportAction/dataImportActionReducer.js +72 -0
  410. package/lib/view/invoicing/dataImportAction/dataImportActionSelector.d.ts +4 -0
  411. package/lib/view/invoicing/dataImportAction/dataImportActionSelector.js +9 -0
  412. package/lib/view/invoicing/dataImportAction/dataImportActionState.d.ts +5 -0
  413. package/lib/view/invoicing/dataImportAction/dataImportActionState.js +2 -0
  414. package/lib/view/invoicing/dataImportView/dataImportViewEpics.d.ts +9 -0
  415. package/lib/view/invoicing/dataImportView/dataImportViewEpics.js +40 -0
  416. package/lib/view/invoicing/dataImportView/dataImportViewPayload.d.ts +50 -0
  417. package/lib/view/invoicing/dataImportView/dataImportViewPayload.js +2 -0
  418. package/lib/view/invoicing/dataImportView/dataImportViewReducer.d.ts +7 -0
  419. package/lib/view/invoicing/dataImportView/dataImportViewReducer.js +70 -0
  420. package/lib/view/invoicing/dataImportView/dataImportViewSelector.d.ts +9 -0
  421. package/lib/view/invoicing/dataImportView/dataImportViewSelector.js +17 -0
  422. package/lib/view/invoicing/dataImportView/dataImportViewState.d.ts +10 -0
  423. package/lib/view/invoicing/dataImportView/dataImportViewState.js +2 -0
  424. package/lib/view/invoicing/dunningAction/dunningActionEpic.d.ts +8 -0
  425. package/lib/view/invoicing/dunningAction/dunningActionEpic.js +31 -0
  426. package/lib/view/invoicing/dunningAction/dunningActionPayload.d.ts +3 -0
  427. package/lib/view/invoicing/dunningAction/dunningActionPayload.js +2 -0
  428. package/lib/view/invoicing/dunningAction/dunningActionReducer.d.ts +20 -0
  429. package/lib/view/invoicing/dunningAction/dunningActionReducer.js +40 -0
  430. package/lib/view/invoicing/dunningAction/dunningActionRequestPayload.d.ts +24 -0
  431. package/lib/view/invoicing/dunningAction/dunningActionRequestPayload.js +3 -0
  432. package/lib/view/invoicing/dunningAction/dunningActionSelector.d.ts +3 -0
  433. package/lib/view/invoicing/dunningAction/dunningActionSelector.js +9 -0
  434. package/lib/view/invoicing/dunningAction/dunningActionState.d.ts +5 -0
  435. package/lib/view/invoicing/dunningAction/dunningActionState.js +2 -0
  436. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewPayload.d.ts +4 -0
  437. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewPayload.js +2 -0
  438. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewReducer.d.ts +17 -0
  439. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewReducer.js +43 -0
  440. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewSelector.d.ts +21 -0
  441. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewSelector.js +31 -0
  442. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewState.d.ts +7 -0
  443. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/editInvoicingCatalogItemDetailViewState.js +2 -0
  444. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/saveInvoicingCatalogItemEpic.d.ts +9 -0
  445. package/lib/view/invoicing/editInvoicingCatalogItemDetailView/saveInvoicingCatalogItemEpic.js +41 -0
  446. package/lib/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewPayload.d.ts +3 -0
  447. package/lib/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewPayload.js +2 -0
  448. package/lib/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewReducer.d.ts +14 -0
  449. package/lib/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewReducer.js +40 -0
  450. package/lib/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewSelector.d.ts +28 -0
  451. package/lib/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewSelector.js +34 -0
  452. package/lib/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewState.d.ts +5 -0
  453. package/lib/view/invoicing/editInvoicingCouponDetailView/editInvoicingCouponDetailViewState.js +2 -0
  454. package/lib/view/invoicing/editInvoicingCouponDetailView/saveInvoicingCouponEpic.d.ts +8 -0
  455. package/lib/view/invoicing/editInvoicingCouponDetailView/saveInvoicingCouponEpic.js +32 -0
  456. package/lib/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewPayload.d.ts +3 -0
  457. package/lib/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewPayload.js +2 -0
  458. package/lib/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewReducer.d.ts +14 -0
  459. package/lib/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewReducer.js +40 -0
  460. package/lib/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewSelector.d.ts +15 -0
  461. package/lib/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewSelector.js +23 -0
  462. package/lib/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewState.d.ts +5 -0
  463. package/lib/view/invoicing/editInvoicingCustomerDetailView/editInvoicingCustomerDetailViewState.js +2 -0
  464. package/lib/view/invoicing/editInvoicingCustomerDetailView/saveInvoicingCustomerEpic.d.ts +8 -0
  465. package/lib/view/invoicing/editInvoicingCustomerDetailView/saveInvoicingCustomerEpic.js +26 -0
  466. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewPayload.d.ts +3 -0
  467. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewPayload.js +2 -0
  468. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewReducer.d.ts +18 -0
  469. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewReducer.js +49 -0
  470. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewSelector.d.ts +34 -0
  471. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewSelector.js +36 -0
  472. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewState.d.ts +5 -0
  473. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/editInvoicingSubscriptionDetailViewState.js +2 -0
  474. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/fetchInvoicingSubscriptionFormPageEpic.d.ts +20 -0
  475. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/fetchInvoicingSubscriptionFormPageEpic.js +33 -0
  476. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/saveInvoicingSubscriptionEpic.d.ts +8 -0
  477. package/lib/view/invoicing/editInvoicingSubscriptionDetailView/saveInvoicingSubscriptionEpic.js +28 -0
  478. package/lib/view/invoicing/invoiceAction/invoiceActionEpic.d.ts +9 -0
  479. package/lib/view/invoicing/invoiceAction/invoiceActionEpic.js +54 -0
  480. package/lib/view/invoicing/invoiceAction/invoiceActionPayload.d.ts +3 -0
  481. package/lib/view/invoicing/invoiceAction/invoiceActionPayload.js +2 -0
  482. package/lib/view/invoicing/invoiceAction/invoiceActionReducer.d.ts +24 -0
  483. package/lib/view/invoicing/invoiceAction/invoiceActionReducer.js +46 -0
  484. package/lib/view/invoicing/invoiceAction/invoiceActionRequestPayload.d.ts +47 -0
  485. package/lib/view/invoicing/invoiceAction/invoiceActionRequestPayload.js +3 -0
  486. package/lib/view/invoicing/invoiceAction/invoiceActionSelector.d.ts +3 -0
  487. package/lib/view/invoicing/invoiceAction/invoiceActionSelector.js +9 -0
  488. package/lib/view/invoicing/invoiceAction/invoiceActionState.d.ts +5 -0
  489. package/lib/view/invoicing/invoiceAction/invoiceActionState.js +2 -0
  490. package/lib/view/invoicing/invoiceDetail/fetchInvoiceDetailEpic.d.ts +8 -0
  491. package/lib/view/invoicing/invoiceDetail/fetchInvoiceDetailEpic.js +26 -0
  492. package/lib/view/invoicing/invoiceDetail/invoiceDetailPayload.d.ts +3 -0
  493. package/lib/view/invoicing/invoiceDetail/invoiceDetailPayload.js +2 -0
  494. package/lib/view/invoicing/invoiceDetail/invoiceDetailReducer.d.ts +16 -0
  495. package/lib/view/invoicing/invoiceDetail/invoiceDetailReducer.js +43 -0
  496. package/lib/view/invoicing/invoiceDetail/invoiceDetailSelector.d.ts +13 -0
  497. package/lib/view/invoicing/invoiceDetail/invoiceDetailSelector.js +20 -0
  498. package/lib/view/invoicing/invoiceDetail/invoiceDetailState.d.ts +7 -0
  499. package/lib/view/invoicing/invoiceDetail/invoiceDetailState.js +2 -0
  500. package/lib/view/invoicing/invoiceList/fetchInvoiceCountsEpic.d.ts +7 -0
  501. package/lib/view/invoicing/invoiceList/fetchInvoiceCountsEpic.js +36 -0
  502. package/lib/view/invoicing/invoiceList/fetchInvoiceKPIsEpic.d.ts +7 -0
  503. package/lib/view/invoicing/invoiceList/fetchInvoiceKPIsEpic.js +19 -0
  504. package/lib/view/invoicing/invoiceList/fetchInvoiceListEpic.d.ts +8 -0
  505. package/lib/view/invoicing/invoiceList/fetchInvoiceListEpic.js +57 -0
  506. package/lib/view/invoicing/invoiceList/fetchInvoiceListPageEpic.d.ts +11 -0
  507. package/lib/view/invoicing/invoiceList/fetchInvoiceListPageEpic.js +34 -0
  508. package/lib/view/invoicing/invoiceList/invoiceListPayload.d.ts +6 -0
  509. package/lib/view/invoicing/invoiceList/invoiceListPayload.js +2 -0
  510. package/lib/view/invoicing/invoiceList/invoiceListReducer.d.ts +32 -0
  511. package/lib/view/invoicing/invoiceList/invoiceListReducer.js +109 -0
  512. package/lib/view/invoicing/invoiceList/invoiceListSelector.d.ts +23 -0
  513. package/lib/view/invoicing/invoiceList/invoiceListSelector.js +26 -0
  514. package/lib/view/invoicing/invoiceList/invoiceListState.d.ts +36 -0
  515. package/lib/view/invoicing/invoiceList/invoiceListState.js +23 -0
  516. package/lib/view/invoicing/invoicingApiHelper.d.ts +15 -0
  517. package/lib/view/invoicing/invoicingApiHelper.js +19 -0
  518. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewEpics.d.ts +9 -0
  519. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewEpics.js +28 -0
  520. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewPayload.d.ts +4 -0
  521. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewPayload.js +2 -0
  522. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewReducer.d.ts +13 -0
  523. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewReducer.js +38 -0
  524. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewSelector.d.ts +18 -0
  525. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewSelector.js +20 -0
  526. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewState.d.ts +6 -0
  527. package/lib/view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewState.js +2 -0
  528. package/lib/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogCountsEpic.d.ts +7 -0
  529. package/lib/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogCountsEpic.js +24 -0
  530. package/lib/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogListPageEpic.d.ts +17 -0
  531. package/lib/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogListPageEpic.js +37 -0
  532. package/lib/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogPlanListEpic.d.ts +8 -0
  533. package/lib/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogPlanListEpic.js +47 -0
  534. package/lib/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogProductListEpic.d.ts +8 -0
  535. package/lib/view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogProductListEpic.js +50 -0
  536. package/lib/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewPayload.d.ts +7 -0
  537. package/lib/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewPayload.js +2 -0
  538. package/lib/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewReducer.d.ts +49 -0
  539. package/lib/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewReducer.js +136 -0
  540. package/lib/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewSelector.d.ts +28 -0
  541. package/lib/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewSelector.js +29 -0
  542. package/lib/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewState.d.ts +49 -0
  543. package/lib/view/invoicing/invoicingCatalogListView/invoicingCatalogListViewState.js +22 -0
  544. package/lib/view/invoicing/invoicingCouponDetailView/fetchInvoicingCouponDetailEpic.d.ts +8 -0
  545. package/lib/view/invoicing/invoicingCouponDetailView/fetchInvoicingCouponDetailEpic.js +26 -0
  546. package/lib/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewPayload.d.ts +3 -0
  547. package/lib/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewPayload.js +2 -0
  548. package/lib/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewReducer.d.ts +16 -0
  549. package/lib/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewReducer.js +43 -0
  550. package/lib/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewSelector.d.ts +12 -0
  551. package/lib/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewSelector.js +18 -0
  552. package/lib/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewState.d.ts +7 -0
  553. package/lib/view/invoicing/invoicingCouponDetailView/invoicingCouponDetailViewState.js +2 -0
  554. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewEpics.d.ts +8 -0
  555. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewEpics.js +23 -0
  556. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewPayload.d.ts +3 -0
  557. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewPayload.js +2 -0
  558. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewReducer.d.ts +11 -0
  559. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewReducer.js +35 -0
  560. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewSelector.d.ts +14 -0
  561. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewSelector.js +16 -0
  562. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewState.d.ts +4 -0
  563. package/lib/view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewState.js +2 -0
  564. package/lib/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteCountsEpic.d.ts +7 -0
  565. package/lib/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteCountsEpic.js +27 -0
  566. package/lib/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteListEpic.d.ts +8 -0
  567. package/lib/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteListEpic.js +47 -0
  568. package/lib/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteListPageEpic.d.ts +16 -0
  569. package/lib/view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteListPageEpic.js +31 -0
  570. package/lib/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewPayload.d.ts +5 -0
  571. package/lib/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewPayload.js +2 -0
  572. package/lib/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewReducer.d.ts +31 -0
  573. package/lib/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewReducer.js +93 -0
  574. package/lib/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewSelector.d.ts +22 -0
  575. package/lib/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewSelector.js +24 -0
  576. package/lib/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewState.d.ts +42 -0
  577. package/lib/view/invoicing/invoicingCreditNoteListView/invoicingCreditNoteListViewState.js +44 -0
  578. package/lib/view/invoicing/invoicingCustomerDetailView/fetchInvoicingCustomerDetailEpic.d.ts +8 -0
  579. package/lib/view/invoicing/invoicingCustomerDetailView/fetchInvoicingCustomerDetailEpic.js +26 -0
  580. package/lib/view/invoicing/invoicingCustomerDetailView/fetchInvoicingCustomerDetailPageEpic.d.ts +18 -0
  581. package/lib/view/invoicing/invoicingCustomerDetailView/fetchInvoicingCustomerDetailPageEpic.js +45 -0
  582. package/lib/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewPayload.d.ts +3 -0
  583. package/lib/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewPayload.js +2 -0
  584. package/lib/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewReducer.d.ts +22 -0
  585. package/lib/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewReducer.js +56 -0
  586. package/lib/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewSelector.d.ts +25 -0
  587. package/lib/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewSelector.js +32 -0
  588. package/lib/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewState.d.ts +7 -0
  589. package/lib/view/invoicing/invoicingCustomerDetailView/invoicingCustomerDetailViewState.js +2 -0
  590. package/lib/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerCountsEpic.d.ts +7 -0
  591. package/lib/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerCountsEpic.js +24 -0
  592. package/lib/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerListEpic.d.ts +8 -0
  593. package/lib/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerListEpic.js +44 -0
  594. package/lib/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerListPageEpic.d.ts +16 -0
  595. package/lib/view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerListPageEpic.js +31 -0
  596. package/lib/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewPayload.d.ts +5 -0
  597. package/lib/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewPayload.js +2 -0
  598. package/lib/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewReducer.d.ts +31 -0
  599. package/lib/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewReducer.js +93 -0
  600. package/lib/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewSelector.d.ts +24 -0
  601. package/lib/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewSelector.js +24 -0
  602. package/lib/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewState.d.ts +41 -0
  603. package/lib/view/invoicing/invoicingCustomerListView/invoicingCustomerListViewState.js +39 -0
  604. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewEpics.d.ts +8 -0
  605. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewEpics.js +23 -0
  606. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewPayload.d.ts +3 -0
  607. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewPayload.js +2 -0
  608. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewReducer.d.ts +11 -0
  609. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewReducer.js +35 -0
  610. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewSelector.d.ts +15 -0
  611. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewSelector.js +18 -0
  612. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewState.d.ts +4 -0
  613. package/lib/view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewState.js +2 -0
  614. package/lib/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseCountsEpic.d.ts +7 -0
  615. package/lib/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseCountsEpic.js +24 -0
  616. package/lib/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseListEpic.d.ts +8 -0
  617. package/lib/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseListEpic.js +44 -0
  618. package/lib/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseListPageEpic.d.ts +16 -0
  619. package/lib/view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseListPageEpic.js +31 -0
  620. package/lib/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewPayload.d.ts +5 -0
  621. package/lib/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewPayload.js +2 -0
  622. package/lib/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewReducer.d.ts +31 -0
  623. package/lib/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewReducer.js +93 -0
  624. package/lib/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewSelector.d.ts +22 -0
  625. package/lib/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewSelector.js +24 -0
  626. package/lib/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewState.d.ts +41 -0
  627. package/lib/view/invoicing/invoicingDunningCaseListView/invoicingDunningCaseListViewState.js +45 -0
  628. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewChurnEpic.d.ts +7 -0
  629. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewChurnEpic.js +21 -0
  630. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewDashboardSummaryEpic.d.ts +7 -0
  631. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewDashboardSummaryEpic.js +21 -0
  632. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewEpic.d.ts +14 -0
  633. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewEpic.js +59 -0
  634. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewKPIsEpic.d.ts +7 -0
  635. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewKPIsEpic.js +21 -0
  636. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewMRREpic.d.ts +7 -0
  637. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewMRREpic.js +21 -0
  638. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewPlanRevenueEpic.d.ts +7 -0
  639. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewPlanRevenueEpic.js +21 -0
  640. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewRevenueEpic.d.ts +7 -0
  641. package/lib/view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewRevenueEpic.js +21 -0
  642. package/lib/view/invoicing/invoicingOverview/invoicingOverviewPayload.d.ts +98 -0
  643. package/lib/view/invoicing/invoicingOverview/invoicingOverviewPayload.js +96 -0
  644. package/lib/view/invoicing/invoicingOverview/invoicingOverviewReducer.d.ts +10 -0
  645. package/lib/view/invoicing/invoicingOverview/invoicingOverviewReducer.js +119 -0
  646. package/lib/view/invoicing/invoicingOverview/invoicingOverviewSelector.d.ts +32 -0
  647. package/lib/view/invoicing/invoicingOverview/invoicingOverviewSelector.js +70 -0
  648. package/lib/view/invoicing/invoicingOverview/invoicingOverviewState.d.ts +110 -0
  649. package/lib/view/invoicing/invoicingOverview/invoicingOverviewState.js +2 -0
  650. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewEpics.d.ts +8 -0
  651. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewEpics.js +23 -0
  652. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewPayload.d.ts +3 -0
  653. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewPayload.js +2 -0
  654. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewReducer.d.ts +11 -0
  655. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewReducer.js +35 -0
  656. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewSelector.d.ts +15 -0
  657. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewSelector.js +18 -0
  658. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewState.d.ts +4 -0
  659. package/lib/view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewState.js +2 -0
  660. package/lib/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionCountsEpic.d.ts +7 -0
  661. package/lib/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionCountsEpic.js +27 -0
  662. package/lib/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionListEpic.d.ts +8 -0
  663. package/lib/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionListEpic.js +53 -0
  664. package/lib/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionListPageEpic.d.ts +16 -0
  665. package/lib/view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionListPageEpic.js +31 -0
  666. package/lib/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewPayload.d.ts +5 -0
  667. package/lib/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewPayload.js +2 -0
  668. package/lib/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewReducer.d.ts +31 -0
  669. package/lib/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewReducer.js +93 -0
  670. package/lib/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewSelector.d.ts +25 -0
  671. package/lib/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewSelector.js +25 -0
  672. package/lib/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewState.d.ts +44 -0
  673. package/lib/view/invoicing/invoicingSubscriptionListView/invoicingSubscriptionListViewState.js +46 -0
  674. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewEpics.d.ts +8 -0
  675. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewEpics.js +23 -0
  676. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewPayload.d.ts +3 -0
  677. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewPayload.js +2 -0
  678. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewReducer.d.ts +11 -0
  679. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewReducer.js +35 -0
  680. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewSelector.d.ts +16 -0
  681. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewSelector.js +18 -0
  682. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewState.d.ts +4 -0
  683. package/lib/view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewState.js +2 -0
  684. package/lib/view/invoicing/invoicingTransactionListView/epics/fetchInvoicingTransactionListEpic.d.ts +8 -0
  685. package/lib/view/invoicing/invoicingTransactionListView/epics/fetchInvoicingTransactionListEpic.js +50 -0
  686. package/lib/view/invoicing/invoicingTransactionListView/epics/fetchInvoicingTransactionListPageEpic.d.ts +16 -0
  687. package/lib/view/invoicing/invoicingTransactionListView/epics/fetchInvoicingTransactionListPageEpic.js +28 -0
  688. package/lib/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewPayload.d.ts +4 -0
  689. package/lib/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewPayload.js +2 -0
  690. package/lib/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewReducer.d.ts +30 -0
  691. package/lib/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewReducer.js +78 -0
  692. package/lib/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewSelector.d.ts +19 -0
  693. package/lib/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewSelector.js +22 -0
  694. package/lib/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewState.d.ts +40 -0
  695. package/lib/view/invoicing/invoicingTransactionListView/invoicingTransactionListViewState.js +44 -0
  696. package/lib/view/invoicing/paymentAction/paymentActionEpic.d.ts +8 -0
  697. package/lib/view/invoicing/paymentAction/paymentActionEpic.js +31 -0
  698. package/lib/view/invoicing/paymentAction/paymentActionPayload.d.ts +3 -0
  699. package/lib/view/invoicing/paymentAction/paymentActionPayload.js +2 -0
  700. package/lib/view/invoicing/paymentAction/paymentActionReducer.d.ts +19 -0
  701. package/lib/view/invoicing/paymentAction/paymentActionReducer.js +40 -0
  702. package/lib/view/invoicing/paymentAction/paymentActionRequestPayload.d.ts +7 -0
  703. package/lib/view/invoicing/paymentAction/paymentActionRequestPayload.js +3 -0
  704. package/lib/view/invoicing/paymentAction/paymentActionSelector.d.ts +3 -0
  705. package/lib/view/invoicing/paymentAction/paymentActionSelector.js +9 -0
  706. package/lib/view/invoicing/paymentAction/paymentActionState.d.ts +5 -0
  707. package/lib/view/invoicing/paymentAction/paymentActionState.js +2 -0
  708. package/lib/view/invoicing/recordPayment/recordPaymentEpic.d.ts +8 -0
  709. package/lib/view/invoicing/recordPayment/recordPaymentEpic.js +26 -0
  710. package/lib/view/invoicing/recordPayment/recordPaymentPayload.d.ts +23 -0
  711. package/lib/view/invoicing/recordPayment/recordPaymentPayload.js +2 -0
  712. package/lib/view/invoicing/recordPayment/recordPaymentReducer.d.ts +10 -0
  713. package/lib/view/invoicing/recordPayment/recordPaymentReducer.js +40 -0
  714. package/lib/view/invoicing/recordPayment/recordPaymentSelector.d.ts +4 -0
  715. package/lib/view/invoicing/recordPayment/recordPaymentSelector.js +10 -0
  716. package/lib/view/invoicing/recordPayment/recordPaymentState.d.ts +6 -0
  717. package/lib/view/invoicing/recordPayment/recordPaymentState.js +2 -0
  718. package/lib/view/invoicing/settingsView/settingsViewEpics.d.ts +10 -0
  719. package/lib/view/invoicing/settingsView/settingsViewEpics.js +73 -0
  720. package/lib/view/invoicing/settingsView/settingsViewPayload.d.ts +18 -0
  721. package/lib/view/invoicing/settingsView/settingsViewPayload.js +2 -0
  722. package/lib/view/invoicing/settingsView/settingsViewReducer.d.ts +12 -0
  723. package/lib/view/invoicing/settingsView/settingsViewReducer.js +79 -0
  724. package/lib/view/invoicing/settingsView/settingsViewSelector.d.ts +7 -0
  725. package/lib/view/invoicing/settingsView/settingsViewSelector.js +14 -0
  726. package/lib/view/invoicing/settingsView/settingsViewState.d.ts +7 -0
  727. package/lib/view/invoicing/settingsView/settingsViewState.js +2 -0
  728. package/lib/view/invoicing/subscriptionAction/subscriptionActionEpic.d.ts +8 -0
  729. package/lib/view/invoicing/subscriptionAction/subscriptionActionEpic.js +31 -0
  730. package/lib/view/invoicing/subscriptionAction/subscriptionActionPayload.d.ts +3 -0
  731. package/lib/view/invoicing/subscriptionAction/subscriptionActionPayload.js +2 -0
  732. package/lib/view/invoicing/subscriptionAction/subscriptionActionReducer.d.ts +19 -0
  733. package/lib/view/invoicing/subscriptionAction/subscriptionActionReducer.js +40 -0
  734. package/lib/view/invoicing/subscriptionAction/subscriptionActionRequestPayload.d.ts +43 -0
  735. package/lib/view/invoicing/subscriptionAction/subscriptionActionRequestPayload.js +3 -0
  736. package/lib/view/invoicing/subscriptionAction/subscriptionActionSelector.d.ts +3 -0
  737. package/lib/view/invoicing/subscriptionAction/subscriptionActionSelector.js +9 -0
  738. package/lib/view/invoicing/subscriptionAction/subscriptionActionState.d.ts +5 -0
  739. package/lib/view/invoicing/subscriptionAction/subscriptionActionState.js +2 -0
  740. package/lib/view/onboardingView/cockpitView/epic/initializeOnboardingCustomerViewUpdateDataEpic.js +1 -5
  741. package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewLocalStoreDataEpic.js +5 -4
  742. package/lib/view/spendManagement/billPay/billList/billListReducer.d.ts +1 -1
  743. package/lib/view/spendManagement/billPay/billList/billListState.d.ts +1 -1
  744. package/lib/view/spendManagement/commonSetup/setupViewReducer.js +2 -1
  745. package/lib/view/spendManagement/reimbursement/remiListView/remiListReducer.d.ts +1 -1
  746. package/lib/view/spendManagement/reimbursement/remiListView/remiListState.d.ts +3 -3
  747. package/lib/view/transactionDetail/epics/saveTransactionDetailEpic.js +1 -1
  748. package/lib/zeniAPI.d.ts +1 -0
  749. package/package.json +1 -1
package/lib/epic.js CHANGED
@@ -54,8 +54,8 @@ const createSessionEpic_1 = require("./view/aiCfoView/epics/createSessionEpic");
54
54
  const deleteChatSessionEpic_1 = require("./view/aiCfoView/epics/deleteChatSessionEpic");
55
55
  const fetchChatHistoryEpic_1 = require("./view/aiCfoView/epics/fetchChatHistoryEpic");
56
56
  const fetchChatSessionsForUserEpic_1 = require("./view/aiCfoView/epics/fetchChatSessionsForUserEpic");
57
- const fetchSuggestedQuestionsEpic_1 = require("./view/aiCfoView/epics/fetchSuggestedQuestionsEpic");
58
57
  const fetchSkillsEpic_1 = require("./view/aiCfoView/epics/fetchSkillsEpic");
58
+ const fetchSuggestedQuestionsEpic_1 = require("./view/aiCfoView/epics/fetchSuggestedQuestionsEpic");
59
59
  const stopSubmitEpic_1 = require("./view/aiCfoView/epics/stopSubmitEpic");
60
60
  const stopSubmitQuestionEpic_1 = require("./view/aiCfoView/epics/stopSubmitQuestionEpic");
61
61
  const submitFeedbackEpic_1 = require("./view/aiCfoView/epics/submitFeedbackEpic");
@@ -167,8 +167,8 @@ const reparseStatementEpic_1 = require("./view/expenseAutomationView/epics/accou
167
167
  const saveReconciliationDetailEpic_1 = require("./view/expenseAutomationView/epics/accountRecon/saveReconciliationDetailEpic");
168
168
  const saveReconciliationReviewEpic_1 = require("./view/expenseAutomationView/epics/accountRecon/saveReconciliationReviewEpic");
169
169
  const updateReconcileTabLocalDataEpic_1 = require("./view/expenseAutomationView/epics/accountRecon/updateReconcileTabLocalDataEpic");
170
- const uploadAccountStatementEpic_1 = require("./view/expenseAutomationView/epics/accountRecon/uploadAccountStatementEpic");
171
170
  const updateStatementInfoEpic_1 = require("./view/expenseAutomationView/epics/accountRecon/updateStatementInfoEpic");
171
+ const uploadAccountStatementEpic_1 = require("./view/expenseAutomationView/epics/accountRecon/uploadAccountStatementEpic");
172
172
  const fetchAllExpenseAutomationTabsEpic_1 = require("./view/expenseAutomationView/epics/common/fetchAllExpenseAutomationTabsEpic");
173
173
  const refreshExpenseAutomationCurrentTabEpic_1 = require("./view/expenseAutomationView/epics/common/refreshExpenseAutomationCurrentTabEpic");
174
174
  const fetchFluxAnalysisViewEpic_1 = require("./view/expenseAutomationView/epics/fluxAnalysis/fetchFluxAnalysisViewEpic");
@@ -221,6 +221,63 @@ const createGlobalMerchantEpic_1 = require("./view/globalMerchantView/epics/crea
221
221
  const fetchGlobalMerchantRecommendationEpic_1 = require("./view/globalMerchantView/epics/fetchGlobalMerchantRecommendationEpic");
222
222
  const fetchGlobalMerchantAutoCompleteViewEpic_1 = require("./view/globalMerchantView/globalMerchantAutoCompleteView/fetchGlobalMerchantAutoCompleteViewEpic");
223
223
  const insightsCardEpic_1 = require("./view/insightsCard/insightsCardEpic");
224
+ const approvalActionEpic_1 = require("./view/invoicing/approvalAction/approvalActionEpic");
225
+ const approvalsViewEpics_1 = require("./view/invoicing/approvalsView/approvalsViewEpics");
226
+ const auditViewEpics_1 = require("./view/invoicing/auditView/auditViewEpics");
227
+ const couponViewEpics_1 = require("./view/invoicing/couponView/couponViewEpics");
228
+ const createInvoiceEpic_1 = require("./view/invoicing/createInvoice/createInvoiceEpic");
229
+ const customerPaymentMethodEpic_1 = require("./view/invoicing/customerPaymentMethod/customerPaymentMethodEpic");
230
+ const dataImportActionEpic_1 = require("./view/invoicing/dataImportAction/dataImportActionEpic");
231
+ const dataImportViewEpics_1 = require("./view/invoicing/dataImportView/dataImportViewEpics");
232
+ const dunningActionEpic_1 = require("./view/invoicing/dunningAction/dunningActionEpic");
233
+ const saveInvoicingCatalogItemEpic_1 = require("./view/invoicing/editInvoicingCatalogItemDetailView/saveInvoicingCatalogItemEpic");
234
+ const saveInvoicingCouponEpic_1 = require("./view/invoicing/editInvoicingCouponDetailView/saveInvoicingCouponEpic");
235
+ const saveInvoicingCustomerEpic_1 = require("./view/invoicing/editInvoicingCustomerDetailView/saveInvoicingCustomerEpic");
236
+ const fetchInvoicingSubscriptionFormPageEpic_1 = require("./view/invoicing/editInvoicingSubscriptionDetailView/fetchInvoicingSubscriptionFormPageEpic");
237
+ const saveInvoicingSubscriptionEpic_1 = require("./view/invoicing/editInvoicingSubscriptionDetailView/saveInvoicingSubscriptionEpic");
238
+ const invoiceActionEpic_1 = require("./view/invoicing/invoiceAction/invoiceActionEpic");
239
+ const fetchInvoiceDetailEpic_1 = require("./view/invoicing/invoiceDetail/fetchInvoiceDetailEpic");
240
+ const fetchInvoiceCountsEpic_1 = require("./view/invoicing/invoiceList/fetchInvoiceCountsEpic");
241
+ const fetchInvoiceKPIsEpic_1 = require("./view/invoicing/invoiceList/fetchInvoiceKPIsEpic");
242
+ const fetchInvoiceListEpic_1 = require("./view/invoicing/invoiceList/fetchInvoiceListEpic");
243
+ const fetchInvoiceListPageEpic_1 = require("./view/invoicing/invoiceList/fetchInvoiceListPageEpic");
244
+ const invoicingCatalogItemDetailViewEpics_1 = require("./view/invoicing/invoicingCatalogItemDetailView/invoicingCatalogItemDetailViewEpics");
245
+ const fetchInvoicingCatalogCountsEpic_1 = require("./view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogCountsEpic");
246
+ const fetchInvoicingCatalogListPageEpic_1 = require("./view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogListPageEpic");
247
+ const fetchInvoicingCatalogPlanListEpic_1 = require("./view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogPlanListEpic");
248
+ const fetchInvoicingCatalogProductListEpic_1 = require("./view/invoicing/invoicingCatalogListView/epics/fetchInvoicingCatalogProductListEpic");
249
+ const fetchInvoicingCouponDetailEpic_1 = require("./view/invoicing/invoicingCouponDetailView/fetchInvoicingCouponDetailEpic");
250
+ const invoicingCreditNoteDetailViewEpics_1 = require("./view/invoicing/invoicingCreditNoteDetailView/invoicingCreditNoteDetailViewEpics");
251
+ const fetchInvoicingCreditNoteCountsEpic_1 = require("./view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteCountsEpic");
252
+ const fetchInvoicingCreditNoteListEpic_1 = require("./view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteListEpic");
253
+ const fetchInvoicingCreditNoteListPageEpic_1 = require("./view/invoicing/invoicingCreditNoteListView/epics/fetchInvoicingCreditNoteListPageEpic");
254
+ const fetchInvoicingCustomerDetailEpic_1 = require("./view/invoicing/invoicingCustomerDetailView/fetchInvoicingCustomerDetailEpic");
255
+ const fetchInvoicingCustomerDetailPageEpic_1 = require("./view/invoicing/invoicingCustomerDetailView/fetchInvoicingCustomerDetailPageEpic");
256
+ const fetchInvoicingCustomerCountsEpic_1 = require("./view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerCountsEpic");
257
+ const fetchInvoicingCustomerListEpic_1 = require("./view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerListEpic");
258
+ const fetchInvoicingCustomerListPageEpic_1 = require("./view/invoicing/invoicingCustomerListView/epics/fetchInvoicingCustomerListPageEpic");
259
+ const invoicingDunningCaseDetailViewEpics_1 = require("./view/invoicing/invoicingDunningCaseDetailView/invoicingDunningCaseDetailViewEpics");
260
+ const fetchInvoicingDunningCaseCountsEpic_1 = require("./view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseCountsEpic");
261
+ const fetchInvoicingDunningCaseListEpic_1 = require("./view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseListEpic");
262
+ const fetchInvoicingDunningCaseListPageEpic_1 = require("./view/invoicing/invoicingDunningCaseListView/epics/fetchInvoicingDunningCaseListPageEpic");
263
+ const fetchInvoicingOverviewChurnEpic_1 = require("./view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewChurnEpic");
264
+ const fetchInvoicingOverviewDashboardSummaryEpic_1 = require("./view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewDashboardSummaryEpic");
265
+ const fetchInvoicingOverviewEpic_1 = require("./view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewEpic");
266
+ const fetchInvoicingOverviewKPIsEpic_1 = require("./view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewKPIsEpic");
267
+ const fetchInvoicingOverviewMRREpic_1 = require("./view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewMRREpic");
268
+ const fetchInvoicingOverviewPlanRevenueEpic_1 = require("./view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewPlanRevenueEpic");
269
+ const fetchInvoicingOverviewRevenueEpic_1 = require("./view/invoicing/invoicingOverview/epics/fetchInvoicingOverviewRevenueEpic");
270
+ const invoicingSubscriptionDetailViewEpics_1 = require("./view/invoicing/invoicingSubscriptionDetailView/invoicingSubscriptionDetailViewEpics");
271
+ const fetchInvoicingSubscriptionCountsEpic_1 = require("./view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionCountsEpic");
272
+ const fetchInvoicingSubscriptionListEpic_1 = require("./view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionListEpic");
273
+ const fetchInvoicingSubscriptionListPageEpic_1 = require("./view/invoicing/invoicingSubscriptionListView/epics/fetchInvoicingSubscriptionListPageEpic");
274
+ const invoicingTransactionDetailViewEpics_1 = require("./view/invoicing/invoicingTransactionDetailView/invoicingTransactionDetailViewEpics");
275
+ const fetchInvoicingTransactionListEpic_1 = require("./view/invoicing/invoicingTransactionListView/epics/fetchInvoicingTransactionListEpic");
276
+ const fetchInvoicingTransactionListPageEpic_1 = require("./view/invoicing/invoicingTransactionListView/epics/fetchInvoicingTransactionListPageEpic");
277
+ const paymentActionEpic_1 = require("./view/invoicing/paymentAction/paymentActionEpic");
278
+ const recordPaymentEpic_1 = require("./view/invoicing/recordPayment/recordPaymentEpic");
279
+ const settingsViewEpics_1 = require("./view/invoicing/settingsView/settingsViewEpics");
280
+ const subscriptionActionEpic_1 = require("./view/invoicing/subscriptionAction/subscriptionActionEpic");
224
281
  const fetchMonthClosePerformanceTrendEpic_1 = require("./view/monthEndCloseChecksView/epics/fetchMonthClosePerformanceTrendEpic");
225
282
  const fetchMonthEndCloseChecksEpic_1 = require("./view/monthEndCloseChecksView/epics/fetchMonthEndCloseChecksEpic");
226
283
  const fetchNetBurnOrIncomeWithForecastEpic_1 = require("./view/netBurnOrIncome/fetchNetBurnOrIncomeWithForecastEpic");
@@ -623,7 +680,7 @@ const fetchZeniAccStatementPageEpic_1 = require("./view/zeniAccStatementList/fet
623
680
  const zeniAccountsPromoCardEpic_1 = require("./view/zeniAccountsPromoCard/zeniAccountsPromoCardEpic");
624
681
  const approveOAuthConsentEpic_1 = require("./view/zeniOAuthView/epics/approveOAuthConsentEpic");
625
682
  // Note: Please maintain strict alphabetical order
626
- const combinedEpics = (0, redux_observable_1.combineEpics)(acceptBillPayTermsEpic_1.acceptBillPayTermsEpic, acceptBillPayUpdatedTermsEpic_1.acceptBillPayUpdatedTermsEpic, acceptChargeCardTermsEpic_1.acceptChargeCardTermsEpic, acceptEmployeeRemiTermsEpic_1.acceptEmployeeRemiTermsEpic, acceptMasterTOSEpic_1.acceptMasterTOSEpic, acceptRemiTermsEpic_1.acceptRemiTermsEpic, acceptTreasuryTermsEpic_1.acceptTreasuryTermsEpic, acceptZeniAccountTermsEpic_1.acceptZeniAccountTermsEpic, addCardPaymentSourceEpic_1.addCardPaymentSourceEpic, approveOAuthConsentEpic_1.approveOAuthConsentEpic, approveOrRejectBillEpic_1.approveOrRejectBillEpic, approveOrRejectBillsBulkActionEpic_1.approveOrRejectBillsBulkActionEpic, approveOrRejectRemiEpic_1.approveOrRejectRemiEpic, approveOrRejectRemisBulkActionEpic_1.approveOrRejectRemisBulkActionEpic, approveVendorGlobalReviewEpic_1.approveVendorGlobalReviewEpic, archiveTaskEpic_1.archiveTaskEpic, backgroundRefetchReviewTabEpic_1.backgroundRefetchReviewTabEpic, bulkUpdateTaskListEpic_1.bulkUpdateTaskListEpic, cancelAiAccountantOnboardingEpic_1.cancelAiAccountantOnboardingEpic, cancelAndDeleteBillEpic_1.cancelAndDeleteBillEpic, cancelAndDeleteRemiEpic_1.cancelAndDeleteRemiEpic, cancelOrDeleteBillsBulkActionEpic_1.cancelOrDeleteBillsBulkActionEpic, cancelOrDeleteRemisBulkActionEpic_1.cancelOrDeleteRemisBulkActionEpic, cancelScheduleAccruedJournalEntryEpic_1.cancelScheduleAccruedJournalEntryEpic, changeZeniPersonRolesEpic_1.changeZeniPersonRolesEpic, checkDepositEpic_1.checkDepositEpic, clearAllEpic_1.clearAllEpic, closeChargeCardEpic_1.closeChargeCardEpic, closeChargeCardsEpic_1.closeChargeCardsEpic, companyManagementSavePendingUpdates_1.companyManagementSavePendingUpdatesEpic, companyManagementSaveUpdatesEpic_1.companyManagementSaveUpdatesEpic, confirmCardSetupIntentEpic_1.confirmCardSetupIntentEpic, convertAmountToHomeCurrencyEpic_1.convertAmountToHomeCurrencyEpic, createAddressEpic_1.createAddressEpic, createAutoTransferRuleEpic_1.createAutoTransferRuleEpic, createBankAccountEpic_1.createBankAccountEpic, createCardSetupIntentEpic_1.createCardSetupIntentEpic, createCheckingAccountEpic_1.createCheckingAccountEpic, createCompanyAddressEpic_1.createCompanyAddressEpic, createCompanyOfficersEpic_1.createCompanyOfficersEpic, createCompanyUserAddressEpic_1.createCompanyUserAddressEpic, createGlobalMerchantEpic_1.createGlobalMerchantEpic, createInternationalBankAccountEpic_1.createInternationalBankAccountEpic, createNewSchedulesAccruedEpic_1.createNewSchedulesAccruedEpic, createNewSchedulesEpic_1.createNewSchedulesEpic, createNewTaskGroupEpic_1.createNewTaskGroupEpic, createInternationalPaymentInstrumentEpic_1.createPaymentInstrumentEpic, createSessionAndSubmitEpic_1.createSessionAndSubmitEpic, createSessionEpic_1.createSessionEpic, createTagEpic_1.createTagEpic, createTaskFromTaskGroupTemplateEpic_1.createTaskFromTaskGroupTemplateEpic, createTransferEntryEpic_1.createTransferEntryEpic, createUserBankAccountEpic_1.createUserBankAccountEpic, deleteAccountStatementEpic_1.deleteAccountStatementEpic, deleteAutoTransferRuleEpic_1.deleteAutoTransferRuleEpic, excludeAccountFromReconciliationEpic_1.excludeAccountFromReconciliationEpic, includeAccountInReconciliationEpic_1.includeAccountInReconciliationEpic, deleteBankAccountEpic_1.deleteBankAccountEpic, deleteBillEpic_1.deleteBillEpic, deleteChatSessionEpic_1.deleteChatSessionEpic, deleteConnectionEpic_1.deleteConnectionEpic, deleteBillPayApprovalRuleEpic_1.deleteBillPayApprovalRuleEpic, reorderBillPayApprovalRulesEpic_1.reorderBillPayApprovalRulesEpic, deleteFileEpic_1.deleteFileEpic, deleteFileListEpic_1.deleteFileListEpic, deleteInternationalBankAccountEpic_1.deleteInternationalBankAccountEpic, deletePaymentInstrumentEpic_1.deletePaymentInstrumentEpic, deletePersonEpic_1.deletePersonEpic, deleteRemiApprovalRuleEpic_1.deleteRemiApprovalRuleEpic, reorderRemiApprovalRulesEpic_1.reorderRemiApprovalRulesEpic, deleteRemiEpic_1.deleteRemiEpic, deleteScheduleAccruedDetailEpic_1.deleteScheduleAccruedDetailEpic, deleteScheduleDetailEpic_1.deleteScheduleDetailEpic, deleteTagEpic_1.deleteTagEpic, deleteTaskEpic_1.deleteTaskEpic, snoozeTaskEpic_1.snoozeTaskEpic, unsnoozeTaskEpic_1.unsnoozeTaskEpic, deleteTaskGroupEpic_1.deleteTaskGroupEpic, deleteTransactionAttachmentEpic_1.deleteTransactionAttachmentEpic, deleteUserBankAccountEpic_1.deleteUserBankAccountEpic, doMagicLinkSignInEpic_1.doMagicLinkSignInEpic, signInUserEpic_1.doSignInEpic, signOutUserEpic_1.doSignOutEpic, sendEmailMagicLinkToUserEpic_1.sendEmailMagicLinkToUserEpic, sessionHeartbeatEpic_1.sessionHeartbeatEpic, verifyDeviceWithTwoFAEpic_1.verifyDeviceWithTwoFAEpic, downloadAccountingProviderAttachmentEpic_1.downloadAccountingProviderAttachmentEpic, dragNDropTasksEpic_1.dragNDropTasksEpic, enableChargeCardAutoPayEpic_1.enableChargeCardAutoPayEpic, enableSetupEpic_1.enableSetupEpic, establishOnboardingPlaidConnectionEpic_1.establishOnboardingPlaidConnectionEpic, establishPlaidConnectionEpic_1.establishPlaidConnectionEpic, expressInterestChargeCardEpic_1.expressInterestChargeCardEpic, fetchAccountListEpic_1.fetchAccountListEpic, fetchAccountListForAccountTypesEpic_1.fetchAccountListForAccountTypesEpic, fetchAccountSettingsListForAccountTypesEpic_1.fetchAccountSettingsListForAccountTypesEpic, fetchAccruedScheduleListEpic_1.fetchAccruedScheduleListEpic, fetchActiveTenantEpic_1.fetchActiveTenantEpic, fetchAddressEpic_1.fetchAddressEpic, fetchAiAccountantCustomersEpic_1.fetchAiAccountantCustomersEpic, fetchAiAccountantJobsEpic_1.fetchAiAccountantJobsEpic, fetchAllCockpitViewsEpic_1.fetchAllCockpitViewsEpic, fetchAllExpenseAutomationTabsEpic_1.fetchAllExpenseAutomationTabsEpic, fetchAllPeopleRequiredViewsEpic_1.fetchAllPeopleRequiredViewsEpic, fetchAllTagsEpic_1.fetchAllTagsEpic, fetchAllTaskGroupsEpic_1.fetchAllTaskGroupsEpic, fetchAllTenantsEpic_1.fetchAllTenantsEpic, fetchAndUpdateVendorRecommendationsEpic_1.fetchAndUpdateVendorRecommendationsEpic, aggregatedReportEpic_1.fetchAggregatedReportEpic, fetchApAgingDetailEpic_1.fetchApAgingDetailEpic, fetchApAgingEpic_1.fetchApAgingEpic, fetchArAgingDetailEpic_1.fetchArAgingDetailEpic, fetchArAgingEpic_1.fetchArAgingEpic, fetchAuditReportGroupViewEpic_1.fetchAuditReportGroupViewEpic, fetchAuditRuleGroupViewEpic_1.fetchAuditRuleGroupViewEpic, fetchAutoTransferReviewDetailEpic_1.fetchAutoTransferReviewDetailEpic, fetchAutoTransferRuleHistory_1.fetchAutoTransferRuleHistoryEpic, fetchAutoTransferRulesEpic_1.fetchAutoTransferRulesEpic, balanceSheetEpic_1.fetchBalanceSheetEpic, balanceSheetForTimeframeEpic_1.fetchBalanceSheetForTimeframeEpic, fetchBankAccountsListEpic_1.fetchBankAccountsListEpic, fetchBankConnectionsViewEpic_1.fetchBankConnectionsViewEpic, fetchBankCountryNameByIbanEpic_1.fetchBankCountryNameByIbanEpic, fetchBankNameByRoutingEpic_1.fetchBankNameByRoutingEpic, fetchBankNameBySwiftEpic_1.fetchBankNameBySwiftEpic, fetchBillAndInitializeLocalStoreEpic_1.fetchBillAndInitializeLocalStoreEpic, fetchBillDetailEpic_1.fetchBillDetailEpic, fetchBillingAccountsViewEpic_1.fetchBillingAccountsListEpic, fetchBillListEpic_1.fetchBillListEpic, fetchBillListPerTabEpic_1.fetchBillListPerTabEpic, fetchBillPayApproversDetailsEpic_1.fetchBillPayApproversDetailsEpic, fetchBillPayApproversListEpic_1.fetchBillPayApproversListEpic, fetchBillPayCardEpic_1.fetchBillPayCardEpic, fetchBillPayConfigEpic_1.fetchBillPayConfigEpic, fetchBillPaySetupApproverViewEpic_1.fetchBillPaySetupApproverViewEpic, fetchBillPaySetupViewEpic_1.fetchBillPaySetupViewEpic, cardBalanceEpic_1.fetchCardBalanceEpic, archiveCardPolicyEpic_1.archiveCardPolicyEpic, createCardPolicyTemplateEpic_1.createCardPolicyTemplatesEpic, extractPolicyDocumentEpic_1.extractPolicyDocumentEpic, policyRecommendationFromUploadEpic_1.policyRecommendationFromUploadEpic, policyDocumentExtractionToRecommendationBridgeEpic_1.policyDocumentExtractionToRecommendationBridgeEpic, fetchCardPolicyDetailEpic_1.fetchCardPolicyDetailEpic, fetchCardPolicyListEpic_1.fetchCardPolicyListEpic, fetchCardPolicyMccCategoriesEpic_1.fetchCardPolicyMccCategoriesEpic, fetchCardPolicyVendorOptionsEpic_1.fetchCardPolicyVendorOptionsEpic, fetchCardProfilesEpic_1.fetchCardProfilesEpic, updateCardPolicyEpic_1.updateCardPolicyEpic, fetchCashbackDetailEpic_1.fetchCashbackDetailEpic, cashBalanceEpic_1.fetchCashBalanceEpic, cashFlowEpic_1.fetchCashFlowEpic, cashFlowForTimeframeEpic_1.fetchCashFlowForTimeframeEpic, cashInCashOutEpic_1.fetchCashInCashOutEpic, fetchCashManagementSettingsEpic_1.fetchCashManagementSettingsEpic, saveAutoSweepSettingsEpic_1.saveAutoSweepSettingsEpic, fetchCashManagementBannerEpic_1.fetchCashManagementBannerEpic, fetchCashManagementOverviewPageEpic_1.fetchCashManagementOverviewPageEpic, fetchCashManagementRecommendationEpic_1.fetchCashManagementRecommendationEpic, fetchRecentTransferEpic_1.fetchRecentTransferEpic, cashPositionEpic_1.fetchCashPositionEpic, fetchChargeCardConfigEpic_1.fetchChargeCardConfigEpic, fetchChargeCardDetailEpic_1.fetchChargeCardDetailEpic, fetchChargeCardDetailPageEpic_1.fetchChargeCardDetailPageEpic, fetchChargeCardListEpic_1.fetchChargeCardListEpic, fetchChargeCardListPageEpic_1.fetchChargeCardListPageEpic, fetchChargeCardPaymentPageEpic_1.fetchChargeCardPaymentPageEpic, fetchChargeCardRepaymentDetailEpic_1.fetchChargeCardRepaymentDetailEpic, fetchChargeCardPaymentHistoryEpic_1.fetchChargeCardPaymentHistoryEpic, fetchChargeCardSetupViewEpic_1.fetchChargeCardSetupViewEpic, fetchChargeCardStatementListEpic_1.fetchChargeCardStatementListEpic, fetchChargeCardTransactionAttachmentsEpic_1.fetchChargeCardTransactionAttachmentsEpic, fetchChargeCardTransactionListEpic_1.fetchChargeCardTransactionListEpic, fetchChargeCardTransactionStatisticsEpic_1.fetchChargeCardTransactionStatisticsEpic, fetchChargeCardsRecurringExpensesEpic_1.fetchChargeCardsRecurringExpensesEpic, fetchChatHistoryEpic_1.fetchChatHistoryEpic, fetchChatSessionsForUserEpic_1.fetchChatSessionsForUserEpic, fetchClassListEpic_1.fetchClassListEpic, fetchCollaborationAuthTokenEpic_1.fetchCollaborationAuthTokenEpic, fetchCockpitContextEpic_1.fetchCockpitContextEpic, fetchCompanyBillingAddressEpic_1.fetchCompanyBillingAddressEpic, companyConfigEpic_1.fetchCompanyConfigEpic, fetchCompanyHealthMetricConfigEpic_1.fetchCompanyHealthMetricConfigEpic, fetchCompanyHealthMetricViewEpic_1.fetchCompanyHealthMetricViewEpic, fetchCompanyManagementViewEpic_1.fetchCompanyManagementViewEpic, fetchCompanyMetaDataEpic_1.fetchCompanyMetaDataEpic, fetchCompanyMonthEndReportHistoricDataEpic_1.fetchCompanyMonthEndReportHistoricDataEpic, fetchCompanyMonthEndReportHistoricDatesEpic_1.fetchCompanyMonthEndReportHistoricDatesEpic, fetchCompanyMonthEndReportTemplatesEpic_1.fetchCompanyMonthEndReportTemplatesEpic, fetchCompanyMonthEndReportViewEpic_1.fetchCompanyMonthEndReportViewEpic, fetchCompanyOnboardingViewEpic_1.fetchCompanyOnboardingViewEpic, fetchCompanyPassportViewEpic_1.fetchCompanyPassportViewEpic, fetchCompanyPortfolioViewEpic_1.fetchCompanyPortfolioViewEpic, fetchCompanyTaskManagerViewEpic_1.fetchCompanyTaskManagerViewEpic, fetchTaskManagerMetricsEpic_1.fetchTaskManagerMetricsEpic, updateCompanyTaskManagerViewFiltersEpic_1.updateCompanyTaskManagerViewFiltersEpic, fetchCreditAccountEpic_1.fetchCreditAccountEpic, fetchCreditAccountRepaymentEpic_1.fetchCreditAccountRepaymentEpic, fetchCreditAgentMacroEpic_1.fetchCreditAgentMacroEpic, fetchCurrencyConversionValueEpic_1.fetchCurrencyConversionValueEpic, dashboardEpic_1.fetchDashboardEpic, fetchDashboardLayoutEpic_1.fetchDashboardLayoutEpic, fetchDebitCardSummaryEpic_1.fetchDebitCardSummaryEpic, fetchDepositAccountDetailEpic_1.fetchDepositAccountDetailEpic, fetchDepositAccountEpic_1.fetchDepositAccountEpic, fetchDepositAccountHistoryEpic_1.fetchDepositAccountHistoryEpic, fetchDepositAccountLimitEpic_1.fetchDepositAccountLimitEpic, fetchDepositAccountListEpic_1.fetchDepositAccountListEpic, fetchDepositAccountListForCardsEpic_1.fetchDepositAccountListForCardsEpic, fetchDepositAccountTransactionListEpic_1.fetchDepositAccountTransactionListEpic, fetchDownloadSchedulesEpic_1.fetchDownloadSchedulesEpic, fetchDuplicateBillEpic_1.fetchDuplicateBillPayReviewEpic, fetchDuplicateReimbursementEpic_1.fetchDuplicateReimbursementEpic, fetchEditBillDetailPageEpic_1.fetchEditBillDetailPageEpic, fetchEditRemiDetailPageEpic_1.fetchEditRemiDetailPageEpic, fetchEligibleActionsForBillEpic_1.fetchEligibleActionsForBillEpic, fetchEntityAutoCompleteEpic_1.fetchEntityAutoCompleteEpic, fetchEntityHistoryEpic_1.fetchEntityHistoryEpic, fetchEntityRecommendationsByTransactionIdEpic_1.fetchEntityRecommendationsByTransactionIdEpic, fetchEntityRecommendationsForLineUpdateEpic_1.fetchEntityRecommendationsForLineUpdateEpic, fetchExcludedResourcesEpic_1.fetchExcludedResourcesEpic, fetchFluxAnalysisViewEpic_1.fetchFluxAnalysisViewEpic, initializeTransactionCategorizationLocalDataEpic_1.initializeTransactionCategorizationViewLocalDataEpic, fetchJeSchedulesEpic_1.fetchJeSchedulesEpic, fetchJeSchedulePageEpic_1.fetchJeSchedulesPageEpic, markTransactionAsNotMiscategorizedEpic_1.markTransactionAsNotMiscategorizedEpic, fetchMissingReceiptsEpic_1.fetchMissingReceiptsEpic, bulkUploadReceiptsEpic_1.bulkUploadReceiptsEpic, confirmBulkUploadMatchEpic_1.confirmBulkUploadMatchEpic, fetchBulkUploadBatchDetailsEpic_1.fetchBulkUploadBatchDetailsEpic, fetchMultipleBatchDetailsEpic_1.fetchMultipleBatchDetailsEpic, fetchMoreBatchDetailsEpic_1.fetchMoreBatchDetailsEpic, fetchBulkUploadBatchesEpic_1.fetchBulkUploadBatchesEpic, fetchCompletedTransactionsEpic_1.fetchCompletedTransactionsEpic, refetchCompletedTransactionsOnBulkUploadSortEpic_1.refetchCompletedTransactionsOnBulkUploadSortEpic, refreshBatchDetailsForBatchIdEpic_1.refreshBatchDetailsForBatchIdEpic, watchBulkUploadBatchStatusEpic_1.bulkUploadAutomatchingTimeoutEpic, bulkUploadMatchResultToastEpic_1.bulkUploadMatchResultToastEpic, syncTabsAfterAutomatchEpic_1.syncTabsAfterAutomatchEpic, watchBulkUploadBatchStatusEpic_1.pollBulkUploadBatchStatusEpic, watchBulkUploadBatchStatusEpic_1.pusherBatchStatusCompletionEpic, restoreBulkUploadAutomatchingOnMountEpic_1.restoreBulkUploadAutomatchingOnMountEpic, searchTransactionsForManualMatchEpic_1.searchTransactionsForManualMatchEpic, fetchReconciliationViewEpic_1.fetchReconciliationViewEpic, saveTransactionCategorizationEpic_1.saveTransactionCategorizationEpic, fetchTransactionCategorizationEpic_1.fetchTransactionCategorizationEpic, fetchTransactionCategorizationViewEpic_1.fetchTransactionCategorizationViewEpic, updateTransactionCategorizationEpic_1.updateTransactionCategorizationEpic, fetchExpenseTrendEpic_1.fetchExpenseTrendEpic, fetchExpressPayInitialDetailsEpic_1.fetchExpressPayInitialDetailsEpic, fetchExternalConnectionsEpic_1.fetchExternalConnectionsEpic, fetchFileEpic_1.fetchFileEpic, fetchFileListEpic_1.fetchFileListEpic, financeStatementEpic_1.fetchFinanceStatementEpic, fetchForecastListEpic_1.fetchForecastListEpic, reportsClassViewRefetchingEpic_1.initiateReportsClassViewRefetchingEpic, reportsResyncEpic_1.reportsResyncEpic, fetchGlobalMerchantAutoCompleteViewEpic_1.fetchGlobalMerchantAutoCompleteViewEpic, fetchGlobalMerchantRecommendationEpic_1.fetchGlobalMerchantRecommendationEpic, fetchIncomeTrendEpic_1.fetchIncomeTrendEpic, insightsCardEpic_1.fetchInsightsCardEpic, fetchInternationalWireDynamicFormEpic_1.fetchInternationalWireDynamicFormEpic, fetchIntlVerificationFormEpic_1.fetchIntlVerificationFormEpic, fetchIssueCardPageEpic_1.fetchIssueCardPageEpic, seedAiCardCreationFormDraftEpic_1.seedAiCardCreationFormDraftEpic, seedAiCardPolicyFormDraftEpic_1.seedAiCardPolicyFormDraftEpic, applyExtractedPolicyToDraftEpic_1.applyExtractedPolicyToDraftEpic, fetchMagicLinkBankNameByRoutingEpic_1.fetchMagicLinkBankNameByRoutingEpic, fetchMagicLinkBankNameBySwiftEpic_1.fetchMagicLinkBankNameBySwiftEpic, fetchMagicLinkBillEpic_1.fetchMagicLinkBillEpic, fetchMagicLinkTenantEpic_1.fetchMagicLinkTenantEpic, fetchManagementViewEpic_1.fetchManagementViewEpic, fetchMerchantListEpic_1.fetchMerchantListEpic, fetchMonthClosePerformanceTrendEpic_1.fetchMonthClosePerformanceTrendEpic, fetchMonthEndCloseChecksEpic_1.fetchMonthEndCloseChecksEpic, fetchMyProfileEpic_1.fetchMyProfileEpic, fetchMyProfileViewEpic_1.fetchMyProfileViewEpic, netBurnOrIncomeClassesViewEpic_1.fetchNetBurnOrIncomeClassesViewEpic, netBurnOrIncomeEpic_1.fetchNetBurnOrIncomeEpic, netBurnOrIncomeForTimeframeClassesViewEpic_1.fetchNetBurnOrIncomeForTimeframeClassesViewEpic, netBurnOrIncomeForTimeframeEpic_1.fetchNetBurnOrIncomeForTimeframeEpic, fetchNetBurnOrIncomeStoryCardEpic_1.fetchNetBurnOrIncomeStoryCardEpic, fetchNetBurnOrIncomeWithForecastEpic_1.fetchNetBurnOrIncomeWithForecastEpic, fetchNotificationSettingsEpic_1.fetchNotificationSettingsEpic, fetchNotificationSettingsViewEpic_1.fetchNotificationSettingsViewEpic, fetchNotificationUnreadCountEpic_1.fetchNotificationUnreadCountEpic, fetchNotificationViewEpic_1.fetchNotificationViewEpic, fetchRegisteredInterestsEpic_1.fetchRegisteredInterestsEpic, fetchOnboardingCompletedCompaniesEpic_1.fetchOnboardingCompletedCompaniesEpic, fetchOnboardingCustomerSetupViewEpic_1.fetchOnboardingCustomerSetupViewEpic, fetchOnboardingCustomerViewEpic_1.fetchOnboardingCustomerViewEpic, fetchOnboardingViewEpic_1.fetchOnboardingViewEpic, fetchOpExByVendorReportEpic_1.fetchOpExByVendorEpic, fetchOpExByVendorReportForTimeframeEpic_1.fetchOpExByVendorReportForTimeframeEpic, fetchOpExByVendorReportSummaryEpic_1.fetchOpExByVendorReportSummaryEpic, refreshOpExByVendorReportEpic_1.refreshOpExByVendorReportEpic, opExClassesViewEpic_1.fetchOpExClassesViewEpic, opExEpic_1.fetchOpExEpic, opExForTimeframeClassesViewEpic_1.fetchOpExForTimeframeClassesViewEpic, opExForTimeFrameEpic_1.fetchOpExReportForTimeframeEpic, fetchOpExWithForecastEpic_1.fetchOpExWithForecastEpic, fetchOwnerListEpic_1.fetchOwnerListEpic, fetchParentSubsidiaryManagementViewEpic_1.fetchParentSubsidiaryManagementViewEpic, fetchPaymentAccountBalanceEpic_1.fetchPaymentAccountBalanceEpic, fetchPaymentAccountListEpic_1.fetchPaymentAccountListEpic, fetchPaymentSourcesEpic_1.fetchPaymentSourcesEpic, fetchPeopleEpic_1.fetchPeopleEpic, peoplePageEpic_1.fetchPeoplePageEpic, fetchPortfolioViewEpic_1.fetchPortfolioViewEpic, fetchPreviousBillsEpic_1.fetchPreviousBillsEpic, profitAndLossClassesViewEpic_1.fetchProfitAndLossClassesViewEpic, profitAndLossEpic_1.fetchProfitAndLossEpic, profitAndLossForTimeframeClassesViewEpic_1.fetchProfitAndLossForTimeframeClassesViewEpic, profitAndLossForTimeframeProjectViewEpic_1.fetchProfitAndLossForTimeframeProjectViewEpic, profitAndLossForTimeframeEpic_1.fetchProfitAndLossForTimeframeEpic, profitAndLossProjectViewEpic_1.fetchProfitAndLossProjectViewEpic, fetchProjectListEpic_1.fetchProjectListEpic, fetchQBOConnectionPoolEpic_1.fetchQBOConnectionPoolEpic, fetchRecommendationByEntityIdEpic_1.fetchRecommendationByEntityIdEpic, fetchRecommendationByEntityNameEpic_1.fetchRecommendationByEntityNameEpic, fetchRecommendationForAccountSettingsEpic_1.fetchRecommendationForAccountSettingsEpic, fetchRecommendationForAccountTypeEpic_1.fetchRecommendationForAccountTypeEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic_1.fetchRecommendationsAndUpdateMerchantRecommendationsEpic, fetchRecommendedTransactionRowIndexEpic_1.fetchRecommendedTransactionRowIndexEpic, fetchReferralsEpic_1.fetchReferralsEpic, fetchReimbursementCardEpic_1.fetchReimbursementCardEpic, fetchReimbursementConfigEpic_1.fetchReimbursementConfigEpic, fetchRemiAndInitializeLocalStoreEpic_1.fetchRemiAndInitializeLocalStoreEpic, fetchRemiApproversDetailsEpic_1.fetchRemiApproversDetailsEpic, fetchRemiApproversListEpic_1.fetchRemiApproversListEpic, fetchRemiDetailEpic_1.fetchRemiDetailEpic, fetchRemiListEpic_1.fetchRemiListEpic, fetchRemiListPerTabEpic_1.fetchRemiListPerTabEpic, fetchRemiSetupApproverViewEpic_1.fetchRemiSetupApproverViewEpic, fetchRemiSetupViewEpic_1.fetchRemiSetupViewEpic, revenueClassesViewEpic_1.fetchRevenueClassesViewEpic, revenueEpic_1.fetchRevenueEpic, revenueForTimeframeClassesViewEpic_1.fetchRevenueForTimeframeClassesViewEpic, revenueForTimeframeEpic_1.fetchRevenueForTimeframeEpic, fetchRevenueWithForecastEpic_1.fetchRevenueWithForecastEpic, fetchReviewCompanyViewEpic_1.fetchReviewCompanyViewEpic, fetchReviewTransferDetailEpic_1.fetchReviewTransferDetailEpic, fetchRewardsPlanEpic_1.fetchRewardsPlanEpic, fetchScheduleAccruedDetailsEpic_1.fetchScheduleAccruedDetailsEpic, fetchScheduleAccruedDetailsPageEpic_1.fetchScheduleAccruedDetailsPageEpic, fetchScheduleDetailsEpic_1.fetchScheduleDetailsEpic, fetchScheduleDetailsPageEpic_1.fetchScheduleDetailsPageEpic, fetchScheduleListEpic_1.fetchScheduleListEpic, fetchSchedulesAccountEpic_1.fetchSchedulesAccountEpic, fetchSubscriptionAddOnsEpic_1.fetchSubscriptionAddOnsEpic, fetchSubscriptionCouponsEpic_1.fetchSubscriptionCouponsEpic, fetchSubscriptionCreateEstimateEpic_1.fetchSubscriptionCreateEstimateEpic, fetchSubscriptionDetailsEpic_1.fetchSubscriptionDetailsEpic, fetchSubscriptionListEpic_1.fetchSubscriptionListEpic, fetchSubscriptionPlansEpic_1.fetchSubscriptionPlansEpic, fetchSubscriptionSummaryForTenantEpic_1.fetchSubscriptionSummaryForTenantEpic, fetchSubscriptionUpdateEstimateEpic_1.fetchSubscriptionUpdateEstimateEpic, fetchSubscriptionViewEpic_1.fetchSubscriptionViewEpic, fetchSuggestedQuestionsEpic_1.fetchSuggestedQuestionsEpic, fetchSkillsEpic_1.fetchSkillsEpic, fetchTaskDetailEpic_1.fetchTaskDetailEpic, fetchTaskDetailPageEpic_1.fetchTaskDetailPageEpic, fetchTaskGroupTemplatesEpic_1.fetchTaskGroupTemplatesEpic, fetchTaskHistoryEpic_1.fetchTaskHistoryEpic, fetchTaskListEpic_1.fetchTaskListEpic, fetchTaskListPageEpic_1.fetchTaskListPageEpic, fetchTasksCardEpic_1.fetchTasksCardEpic, topExEpic_1.fetchTopExEpic, fetchTransactionActivityLogEpic_1.fetchTransactionActivityLogEpic, transactionDetailEpic_1.fetchTransactionDetailEpic, fetchTransactionListByAccountEpic_1.fetchTransactionListByAccountEpic, fetchTransactionListByClassEpic_1.fetchTransactionListByClassEpic, fetchTransactionListByProjectEpic_1.fetchTransactionListByProjectEpic, fetchTransactionListByEntityEpic_1.fetchTransactionListByEntityEpic, fetchTransactionsForEntityEpic_1.fetchTransactionsForEntityEpic, fetchTransactionsListByCategoryTypeEpic_1.fetchTransactionsListByCategoryTypeEpic, fetchTransferAccountsEpic_1.fetchTransferAccountsEpic, fetchTreasuryDetailEpic_1.fetchTreasuryDetailEpic, fetchTreasuryFundsEpic_1.fetchTreasuryFundsEpic, fetchTreasuryHistoryEpic_1.fetchTreasuryHistoryEpic, fetchTreasurySetupViewEpic_1.fetchTreasurySetupViewEpic, fetchTreasuryStatementListEpic_1.fetchTreasuryStatementListEpic, fetchTreasuryTaxLetterListEpic_1.fetchTreasuryTaxLetterListEpic, fetchTreasuryTransactionListEpic_1.fetchTreasuryTransactionListEpic, updatePortfolioAllocationEpic_1.updatePortfolioAllocationEpic, fetchPortfolioAllocationEpic_1.fetchPortfolioAllocationEpic, fetchTrendForEntityEpic_1.fetchTrendForEntityEpic, fetchUserDetailEpic_1.fetchUserDetailEpic, fetchUserFinancialAccountEpic_1.fetchUserFinancialAccountEpic, fetchUserListByTypeEpic_1.fetchUserListByTypeEpic, userRoleConfigEpic_1.fetchUserRoleConfigEpic, vendor1099TypeListEpic_1.fetchVendor1099TypeListEpic, fetchVendorAndUpdateBillLocalDataEpic_1.fetchVendorAndUpdateBillLocalDataEpic, fetchVendorByNameAndParseInvoice_1.fetchVendorByNameAndParseInvoiceEpic, fetchVendorDetailsEpic_1.fetchVendorDetailsEpic, fetchVendorEpic_1.fetchVendorEpic, fetchVendorFirstReviewAttachmentsEpic_1.fetchVendorFirstReviewAttachmentsEpic, fetchVendorFirstReviewViewEpic_1.fetchVendorFirstReviewViewEpic, fetchVendorGlobalReviewViewEpic_1.fetchVendorGlobalReviewViewEpic, fetchVendorsFiling1099AllEpic_1.fetchVendorsFiling1099AllEpic, fetchVendorsFiling1099DownloadEpic_1.fetchVendorsFiling1099DownloadEpic, fetchVendorsFiling1099ListEpic_1.fetchVendorsFiling1099ListEpic, fetchVendorsListEpic_1.fetchVendorsListEpic, fetchVendorsTabVendorDetailPageViewEpic_1.fetchVendorsTabVendorDetailPageViewEpic, fetchVendorsTabVendorDetailsEpic_1.fetchVendorsTabVendorDetailsEpic, fetchVendorsTabVendorEpic_1.fetchVendorsTabVendorEpic, fetchVendorTabViewEpic_1.fetchVendorTabViewEpic, vendorTypeListEpic_1.fetchVendorTypeListEpic, fetchZeniAccountListPageEpic_1.fetchZeniAccountListEpic, fetchZeniAccountsConfigEpic_1.fetchZeniAccountsConfigEpic, fetchZeniAccountSetupViewEpic_1.fetchZeniAccountSetupViewEpic, zeniAccountsPromoCardEpic_1.fetchZeniAccountsPromoCardEpic, fetchZeniAccStatementListEpic_1.fetchZeniAccStatementListEpic, fetchZeniAccStatementPageEpic_1.fetchZeniAccStatementPageEpic, fetchZeniUsersEpic_1.fetchZeniUsersEpic, getOnboardingEmailGroupEpic_1.getOnboardingEmailGroupEpic, getOnboardingPlaidLinkTokenEpic_1.getOnboardingPlaidLinkTokenEpic, getPaymentAccountsEpic_1.getPaymentAccountsEpic, getPlaidLinkTokenEpic_1.getPlaidLinkTokenEpic, ignoreRecommendedJeScheduleEpic_1.ignoreRecommendedJeScheduleEpic, improveUsingZeniGPTEpic_1.improveUsingZeniGPTEpic, initialiseLocalDataForSelectedAccountIdEpic_1.initialiseDataForSelectedAccountIdEpic, initializeAccountMappingViewEpic_1.initializeAccountMappingViewEpic, initializeAccountSettingsViewEpic_1.initializeAccountSettingsViewEpic, initializeBillPaySetupApproverViewUpdateDataEpic_1.initializeBillPaySetupApproverViewUpdateDataEpic, initializeBillToLocalStoreEpic_1.initializeBillToLocalStoreEpic, initializeCardUserOnboardingLocalDataEpic_1.initializeCardUserOnboardingLocalDataEpic, initializeCompanyHealthMetricViewLocalData_1.initializeCompanyHealthMetricViewLocalDataEpic, initializeDynamicFormEpic_1.initializeDynamicFormEpic, initializeEditPersonEpic_1.initializeEditPersonEpic, initializeJeScheduleLocalDataEpic_1.initializeJeScheduleLocalDataEpic, initializeInternationalWireLocalDataEpic_1.initializeInternationalWireLocalDataEpic, initializeIntlVerificationFormEpic_1.initializeIntlVerificationFormEpic, initializeMyProfileLocalDataEpic_1.initializeMyProfileLocalDataEpic, initializeOnboardingCustomerViewUpdateDataEpic_1.initializeOnboardingCustomerViewUpdateDataEpic, initializeRemiSetupApproverViewUpdateDataEpic_1.initializeRemiSetupApproverViewUpdateDataEpic, initializeRemiToLocalStoreEpic_1.initializeRemiToLocalStoreEpic, initializeScheduleAccruedDetailLocalDataEpic_1.initializeScheduleAccruedDetailLocalDataEpic, initializeScheduleDetailLocalDataEpic_1.initializeScheduleDetailLocalDataEpic, initializeSubscriptionLocalDataEpic_1.initializeSubscriptionLocalDataEpic, initializeTaskToLocalStoreEpic_1.initializeTaskToLocalStoreEpic, initializeTransactionDetailLocalDataEpic_1.initializeTransactionDetailLocalDataEpic, initializeVendorAddressEpic_1.initializeVendorAddressEpic, initiateChargeCardRepaymentEpic_1.initiateChargeCardRepaymentEpic, invitePeopleEpic_1.invitePeopleEpic, inviteZeniPeopleEpic_1.inviteZeniPeopleEpic, issueChargeCardEpic_1.issueChargeCardEpic, lockChargeCardEpic_1.lockChargeCardEpic, lockChargeCardsEpic_1.lockChargeCardsEpic, markAsCompleteScheduleDetailEpic_1.markAsCompleteScheduleDetailEpic, markTransactionAsNotMiscategorizedEpic_2.markTransactionAsNotMiscategorizedEpic, notifyMeForFeatureEpic_1.notifyMeForFeatureEpic, parallelFetchAccountTransactionListEpic_1.parallelFetchAccountTransactionListEpic, parallelFetchClassTransactionListEpic_1.parallelFetchClassTransactionListEpic, parallelFetchProjectTransactionListEpic_1.parallelFetchProjectTransactionListEpic, parallelFetchEntityTransactionListEpic_1.parallelFetchEntityTransactionListEpic, parallelFetchTransactionListByCategoryTypeEpic_1.parallelFetchTransactionListByCategoryTypeEpic, parseInvoiceToBillEpic_1.parseInvoiceToBillEpic, parseReceiptsToRemiEpic_1.parseReceiptsToRemiEpic, peopleSaveUpdatesEpic_1.peopleSaveUpdatesEpic, pushToastNotificationEpic_1.pushToastNotificationEpic, refreshExpenseAutomationCurrentTabEpic_1.refreshExpenseAutomationCurrentTabEpic, refreshIntegrationsDataEpic_1.refreshIntegrationsDataEpic, rejectVendorGlobalReviewEpic_1.rejectVendorGlobalReviewEpic, resendCardInviteEpic_1.resendCardInviteEpic, resendInviteEpic_1.resendInviteEpic, resendOtpEpic_1.resendOtpEpic, resendVerifyDeviceOTPEpic_1.resendVerifyDeviceOTPEpic, resendReferralInviteEpic_1.resendReferralInviteEpic, resetTransactionVendorLocalDataEpic_1.resetTransactionVendorLocalDataEpic, resetVendorDetailLocalDataEpic_1.resetVendorDetailLocalDataEpic, resetVendorsTabVendorDetailLocalDataEpic_1.resetVendorsTabVendorDetailLocalDataEpic, retryBankAccountConnectionEpic_1.retryBankAccountConnectionEpic, retryBankAccountConnectionForOnboardingEpic_1.retryBankAccountConnectionForOnboardingEpic, retryJeSchedulesEpic_1.retryJeScheduleEpic, retryOrRefundBillEpic_1.retryOrRefundBillEpic, validateBillsBulkActionEpic_ts_1.validateBillsBulkActionEpic, reviewDraftRemisBulkActionEpic_ts_1.reviewDraftRemisBulkActionEpic, reviewFluxAnalysisEpic_1.reviewFluxAnalysisViewEpic, revokeCardInviteEpic_1.revokeCardInviteEpic, revokeChargeCardsInviteEpic_1.revokeChargeCardsInviteEpic, saveAccountMappingViewEpic_1.saveAccountMappingViewEpic, saveAccountSettingsViewEpic_1.saveAccountSettingsViewEpic, saveAPIKeyConnectionEpic_1.saveAPIKeyConnectionEpic, saveBillDetailEpic_1.saveBillDetailEpic, saveBillPaySetupApproverViewUpdatesEpic_1.saveBillPaySetupApproverViewUpdatesEpic, saveCardOnboardingUserDetailsEpic_1.saveCardOnboardingUserDetailsEpic, saveCompanyBillingAddressEpic_1.saveCompanyBillingAddressEpic, saveCompanyHealthMetricByIdEpic_1.saveCompanyHealthMetricByIdEpic, saveCompanyMonthEndReportEpic_1.saveCompanyMonthEndReportEpic, saveCompanyPassportDetailsEpic_1.saveCompanyPassportDetailsEpic, initEmailConnectOAuthEpic_1.initEmailConnectOAuthEpic, saveConnectorCredentialsEpic_1.saveConnectorCredentialsEpic, saveCreditAgentMacroEpic_1.saveCreditAgentMacroEpic, saveReconciliationDetailEpic_1.saveReconciliationDetailsEpic, saveReconciliationReviewEpic_1.saveReconciliationReviewEpic, saveExternalConnectionEpic_1.saveExternalConnectionEpic, saveMagicLinkBankAccountEpic_1.saveMagicLinkBankAccountEpic, saveNewAddressEpic_1.saveNewAddressEpic, saveNotificationSettingsEpic_1.saveNotificationSettingsEpic, saveOAuthConnectionEpic_1.saveOAuthConnectionEpic, saveOnboardingCustomerCompletedStatusEpic_1.saveOnboardingCustomerCompletedStatusEpic, saveOnboardingCustomerNotesEpic_1.saveOnboardingCustomerNotesEpic, saveOnboardingCustomerViewUpdatesEpic_1.saveOnboardingCustomerViewUpdatesEpic, saveRealTimeApprovalEpic_1.saveRealTimeApprovalEpic, saveReasonForAuditRuleEpic_1.saveReasonForAuditRuleEpic, saveRemiDetailEpic_1.saveRemiDetailEpic, saveRemiSetupApproverViewUpdatesEpic_1.saveRemiSetupApproverViewUpdatesEpic, saveScheduleAccruedDetailsEpic_1.saveScheduleAccruedDetailsEpic, saveScheduleDetailsEpic_1.saveScheduleDetailsEpic, saveSubscriptionNotesUpdatesEpic_1.saveSubscriptionNotesUpdatesEpic, saveSubscriptionUpdatesEpic_1.saveSubscriptionUpdatesEpic, saveTaskDetailEpic_1.saveTaskDetailEpic, saveTransactionDetailEpic_1.saveTransactionDetailEpic, saveTransactionVendorEpic_1.saveTransactionVendorEpic, saveVendorDetailsViewEpic_1.saveVendorDetailsViewEpic, saveVendorEpic_1.saveVendorEpic, saveVendorFirstReviewViewEpic_1.saveVendorFirstReviewViewEpic, saveVendorsTabVendorEpic_1.saveVendorsTabVendorEpic, scheduleTenantCreditScoreCronEpic_1.scheduleTenantCreditScoreCronEpic, sendCompanyMonthEndReportEpic_1.sendCompanyMonthEndReportEpic, sendOnboardingCustomerViewInviteEpic_1.sendOnboardingCustomerViewInviteEpic, sendOtpEpic_1.sendOtpEpic, sendReferralInviteEpic_1.sendReferralInviteEpic, statementCloseDayEpic_1.statementCloseDayEpic, stopSubmitEpic_1.stopSubmitEpic, stopSubmitQuestionEpic_1.stopSubmitQuestionEpic, submitDraftBillsBulkActionEpic_1.submitDraftBillsBulkActionEpic, submitDraftRemisBulkActionEpic_1.submitDraftRemisBulkActionEpic, submitExpressPayEpic_1.submitExpressPayEpic, submitFeedbackEpic_1.submitFeedbackEpic, submitIntlVerificationEpic_1.submitIntlVerificationEpic, submitQuestionEpic_1.submitQuestionEpic, toggleReportUIOptionForecastModeEpic_1.toggleReportUIOptionForecastModeEpic, transferMoneyEpic_1.transferMoneyEpic, treasuryTransferMoneyEpic_1.treasuryTransferMoneyEpic, triggerAiAccountantJobEpic_1.triggerAiAccountantJobEpic, triggerReviewTabRefetchEpic_1.triggerReviewTabRefetchEpic, unlinkPaymentAccountEpic_1.unlinkPaymentAccountEpic, unlockChargeCardEpic_1.unlockChargeCardEpic, unlockChargeCardsEpic_1.unlockChargeCardsEpic, updateAccruedJESchedulesEpic_1.updateAccruedJESchedulesEpic, updateAddressEpic_1.updateAddressEpic, updateAmountsInScheduleAccruedDetailEpic_1.updateAmountsInScheduleAccruedDetailEpic, updateAmountsInScheduleDetailEpic_1.updateAmountsInScheduleDetailEpic, updateAutoTransferRuleEpic_1.updateAutoTransferRuleEpic, updateBusinessVerificationDetailsEpic_1.updateBusinessVerificationDetailsEpic, updateCardProfileEpic_1.updateCardProfileEpic, updateChargeCardDetailEpic_1.updateChargeCardDetailEpic, updateChargeCardLimitEpic_1.updateChargeCardLimitEpic, updateChargeCardNameEpic_1.updateChargeCardNameEpic, updateChargeCardsLimitEpic_1.updateChargeCardsLimitEpic, updateAccountingClassesEnabledEpic_1.updateAccountingClassesEnabledEpic, dismissCapitalizationOnboardingEpic_1.dismissCapitalizationOnboardingEpic, updateCapitalizationAccountThresholdEpic_1.updateCapitalizationAccountThresholdEpic, updateCompanyDetailsEpic_1.updateCompanyDetailsEpic, updateCompanyOfficerEpic_1.updateCompanyOfficerEpic, updateCompanyPassportLocalStoreDataEpic_1.updateCompanyPassportLocalStoreDataEpic, updateDashboardLayoutEpic_1.updateDashboardLayoutEpic, updateDebitCardPinAttemptEpic_1.updateDebitCardPinAttemptEpic, updateDepositAccountEpic_1.updateDepositAccountEpic, updateReconcileTabLocalDataEpic_1.updateReconcileTabLocalDataEpic, updateFileNameEpic_1.updateFileNameEpic, updateFilesMetadataEpic_1.updateFilesMetadataEpic, updateJESchedulesEpic_1.updateJESchedulesEpic, updateMappedCashAccountEpic_1.updateMappedCashAccountEpic, updateMileageDetailsEpic_1.updateMileageDetailsEpic, updateMyProfileEpic_1.updateMyProfileEpic, updateNetBurnOrIncomeStoryCardSettingsEpic_1.updateNetBurnOrIncomeStoryCardSettingsEpic, updateNotificationViewAllNotificationsStatusEpic_1.updateNotificationViewAllNotificationsStatusEpic, updateNotificationViewNotificationStatusEpic_1.updateNotificationViewNotificationStatusEpic, updateOnboardingCustomerViewCompleteStatusEpic_1.updateOnboardingCustomerViewCompleteStatusEpic, acknowledgeOnboardingAiActivationViewedEpic_1.acknowledgeOnboardingAiActivationViewedEpic, acknowledgeOnboardingAiFinanceTeamEpic_1.acknowledgeOnboardingAiFinanceTeamEpic, fetchAiAgentsActivationStatusEpic_1.fetchAiAgentsActivationStatusEpic, updateOnboardingCustomerViewDashboardLoadedEpic_1.updateOnboardingCustomerViewDashboardLoadedEpic, updateOnboardingCustomerViewEpic_1.updateOnboardingCustomerViewEpic, updateOnboardingCustomerViewLocalStoreDataEpic_1.updateOnboardingCustomerViewLocalStoreDataEpic, updateOnboardingPaymentAccountLoginStatusEpic_1.updateOnboardingPaymentAccountLoginStatusEpic, updateOnboardingPaymentAccountStatusEpic_1.updateOnboardingPaymentAccountStatusEpic, updatePaymentAccountEpic_1.updatePaymentAccountEpic, updatePaymentAccountLoginStatusEpic_1.updatePaymentAccountLoginStatusEpic, updatePaymentAccountStatusEpic_1.updatePaymentAccountStatusEpic, updatePhysicalChargeCardAttemptEpic_1.updatePhysicalChargeCardAttemptEpic, updatePrimaryContactEpic_1.updatePrimaryContactEpic, updatePrimaryFundingAccountEpic_1.updatePrimaryFundingAccountEpic, updateQBOConnectionPoolExternalConnectionEpic_1.updateQBOConnectionPoolExternalConnectionEpic, updateReferViewedEpic_1.updateReferViewedEpic, updateRemiSetupViewLocalStoreDataEpic_1.updateRemiSetupViewLocalStoreDataEpic, updateReportUIOptionCOABalancesRangeEpic_1.updateReportUIOptionCOABalancesRangeEpic, updateReportUIOptionCompareModeEpic_1.updateReportUIOptionIsCompareModeEpic, updateReportUIOptionIsCompareModeOnEpic_1.updateReportUIOptionIsCompareModeOnEpic, updateReportUIOptionThisPeriodEpic_1.updateReportUIOptionThisPeriodEpic, updateReportUIOptionTimeFrameEpic_1.updateReportUIOptionTimeFrameEpic, sectionAccountsViewEpic_1.updateSectionAccountsViewEpic, sectionClassesViewEpic_1.updateSectionClassesViewEpic, sectionProjectViewEpic_1.updateSectionProjectViewEpic, updateSelectedVendorForCreateFlowEpic_1.updateSelectedVendorForCreateFlowEpic, updateSetupViewLocalStoreDataEpic_1.updateSetupViewLocalStoreDataEpic, parseUploadedKycDocumentEpic_1.parseUploadedKycDocumentEpic, parseUploadedKybDocumentEpic_1.parseUploadedKybDocumentEpic, updateTaskFromListViewEpic_1.updateTaskFromListViewEpic, updateTaskGroupNameEpic_1.updateTaskGroupNameEpic, fetchCannedResponsesEpic_1.fetchCannedResponsesEpic, saveCannedResponseEpic_1.saveCannedResponseEpic, deleteCannedResponseEpic_1.deleteCannedResponseEpic, updateTransactionDetailEpic_1.updateTransactionDetailEpic, updateTreasuryPromoIntroClosedByOutsideClickEpic_1.updateTreasuryPromoIntroClosedByOutsideClickEpic, updateTreasuryPromoRemindMeLaterClickedEpic_1.updateTreasuryPromoRemindMeLaterClickedEpic, updateTreasuryVideoViewedEpic_1.updateTreasuryVideoViewedEpic, updateVendorContactEpic_1.updateVendorContactEpic, uploadAccountStatementEpic_1.uploadAccountStatementEpic, parseStatementEpic_1.parseStatementEpic, reparseStatementEpic_1.reparseStatementEpic, updateStatementInfoEpic_1.updateStatementInfoEpic, uploadMissingAttachmentSuccessEpic_1.uploadMissingAttachmentSuccessEpic, uploadMissingReceiptSuccessEpic_1.uploadMissingReceiptSuccessEpic, uploadTransactionReceiptSuccessEpic_1.uploadTransactionReceiptSuccessEpic, vendorFiling1099UploadDetailsSaveEpic_1.vendorFiling1099UploadDetailsSaveEpic, verifyOtpEpic_1.verifyOtpEpic, verifyUserEpic_1.verifyUserEpic, fetchBillAndInitializeLocalStoreEpic_1.waitForBillDetailThenInitializeLocalStoreEpic, fetchNetBurnOrIncomeWithForecastEpic_1.waitForForecastListThenFetchNetBurnOrIncomeWithForecastEpic, fetchOpExWithForecastEpic_1.waitForForecastListThenFetchOpExWithForecastEpic, fetchRevenueWithForecastEpic_1.waitForForecastListThenFetchRevenueWithForecastEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic_1.waitForMerchantRecommendationFetchThenUpdateRecommendationInMerchantEpic, fetchVendorAndUpdateBillLocalDataEpic_1.waitForVendorByIdThenSaveBillUpdatetoLocalStoreEpic, fetchVendorByNameAndParseInvoice_1.waitForVendorByNameThenParsetoLocalStoreEpic, fetchBillDetailEpic_1.waitForVendorByNameThenUpdateBillDetailEpic, fetchAndUpdateVendorRecommendationsEpic_1.waitForVendorRecommendationFetchThenUpdateRecommendationInBillEpic, wiseRedirectEpic_1.wiseRedirectEpic);
683
+ const combinedEpics = (0, redux_observable_1.combineEpics)(fetchInvoiceListEpic_1.fetchInvoiceListEpic, fetchInvoiceListPageEpic_1.fetchInvoiceListPageEpic, fetchInvoiceCountsEpic_1.fetchInvoiceCountsEpic, fetchInvoiceKPIsEpic_1.fetchInvoiceKPIsEpic, fetchInvoiceDetailEpic_1.fetchInvoiceDetailEpic, createInvoiceEpic_1.createInvoiceEpic, recordPaymentEpic_1.recordPaymentEpic, fetchInvoicingOverviewEpic_1.fetchInvoicingOverviewEpic, fetchInvoicingOverviewKPIsEpic_1.fetchInvoicingOverviewKPIsEpic, fetchInvoicingOverviewRevenueEpic_1.fetchInvoicingOverviewRevenueEpic, fetchInvoicingOverviewMRREpic_1.fetchInvoicingOverviewMRREpic, fetchInvoicingOverviewChurnEpic_1.fetchInvoicingOverviewChurnEpic, fetchInvoicingOverviewPlanRevenueEpic_1.fetchInvoicingOverviewPlanRevenueEpic, fetchInvoicingOverviewDashboardSummaryEpic_1.fetchInvoicingOverviewDashboardSummaryEpic, approvalsViewEpics_1.fetchInvoicingApprovalsEpic, approvalActionEpic_1.runInvoicingApprovalActionEpic, auditViewEpics_1.fetchInvoicingAuditLogEpic, saveInvoicingCatalogItemEpic_1.saveInvoicingCatalogItemEpic, saveInvoicingCouponEpic_1.saveInvoicingCouponEpic, saveInvoicingCustomerEpic_1.saveInvoicingCustomerEpic, saveInvoicingSubscriptionEpic_1.saveInvoicingSubscriptionEpic, fetchInvoicingSubscriptionFormPageEpic_1.fetchInvoicingSubscriptionFormPageEpic, dataImportActionEpic_1.invoicingDataImportActionEpic, dataImportViewEpics_1.fetchInvoicingMigrationSessionsEpic, dataImportViewEpics_1.fetchInvoicingMigrationSessionEpic, dataImportViewEpics_1.fetchInvoicingDataImportStatusEpic, invoiceActionEpic_1.runInvoicingInvoiceActionEpic, invoiceActionEpic_1.updateInvoicingInvoiceEpic, subscriptionActionEpic_1.runInvoicingSubscriptionActionEpic, dunningActionEpic_1.runInvoicingDunningActionEpic, paymentActionEpic_1.runInvoicingPaymentActionEpic, fetchInvoicingCustomerListEpic_1.fetchInvoicingCustomerListEpic, fetchInvoicingCustomerListPageEpic_1.fetchInvoicingCustomerListPageEpic, fetchInvoicingCustomerCountsEpic_1.fetchInvoicingCustomerCountsEpic, fetchInvoicingCustomerDetailEpic_1.fetchInvoicingCustomerDetailEpic, fetchInvoicingCustomerDetailPageEpic_1.fetchInvoicingCustomerDetailPageEpic, customerPaymentMethodEpic_1.createInvoicingSetupIntentEpic, customerPaymentMethodEpic_1.fetchInvoicingPlaidLinkTokenEpic, customerPaymentMethodEpic_1.saveInvoicingPaymentMethodEpic, customerPaymentMethodEpic_1.sendInvoicingPaymentLinkEpic, fetchInvoicingSubscriptionListEpic_1.fetchInvoicingSubscriptionListEpic, fetchInvoicingSubscriptionListPageEpic_1.fetchInvoicingSubscriptionListPageEpic, fetchInvoicingSubscriptionCountsEpic_1.fetchInvoicingSubscriptionCountsEpic, invoicingSubscriptionDetailViewEpics_1.fetchInvoicingSubscriptionDetailEpic, fetchInvoicingTransactionListEpic_1.fetchInvoicingTransactionListEpic, fetchInvoicingTransactionListPageEpic_1.fetchInvoicingTransactionListPageEpic, invoicingTransactionDetailViewEpics_1.fetchInvoicingTransactionDetailEpic, fetchInvoicingCreditNoteListEpic_1.fetchInvoicingCreditNoteListEpic, fetchInvoicingCreditNoteListPageEpic_1.fetchInvoicingCreditNoteListPageEpic, fetchInvoicingCreditNoteCountsEpic_1.fetchInvoicingCreditNoteCountsEpic, invoicingCreditNoteDetailViewEpics_1.fetchInvoicingCreditNoteDetailEpic, couponViewEpics_1.fetchInvoicingCouponListEpic, couponViewEpics_1.fetchInvoicingCouponListPageEpic, couponViewEpics_1.fetchInvoicingCouponCountsEpic, couponViewEpics_1.fetchInvoicingCouponKPIsEpic, fetchInvoicingCouponDetailEpic_1.fetchInvoicingCouponDetailEpic, fetchInvoicingDunningCaseListEpic_1.fetchInvoicingDunningCaseListEpic, fetchInvoicingDunningCaseListPageEpic_1.fetchInvoicingDunningCaseListPageEpic, fetchInvoicingDunningCaseCountsEpic_1.fetchInvoicingDunningCaseCountsEpic, invoicingDunningCaseDetailViewEpics_1.fetchInvoicingDunningCaseDetailEpic, fetchInvoicingCatalogPlanListEpic_1.fetchInvoicingCatalogPlanListEpic, fetchInvoicingCatalogProductListEpic_1.fetchInvoicingCatalogProductListEpic, fetchInvoicingCatalogListPageEpic_1.fetchInvoicingCatalogListPageEpic, fetchInvoicingCatalogCountsEpic_1.fetchInvoicingCatalogCountsEpic, invoicingCatalogItemDetailViewEpics_1.fetchInvoicingCatalogItemDetailEpic, settingsViewEpics_1.fetchInvoicingSettingsEpic, settingsViewEpics_1.saveInvoicingSettingsEpic, settingsViewEpics_1.connectInvoicingStripeEpic, settingsViewEpics_1.disconnectInvoicingStripeEpic, acceptBillPayTermsEpic_1.acceptBillPayTermsEpic, acceptBillPayUpdatedTermsEpic_1.acceptBillPayUpdatedTermsEpic, acceptChargeCardTermsEpic_1.acceptChargeCardTermsEpic, acceptEmployeeRemiTermsEpic_1.acceptEmployeeRemiTermsEpic, acceptMasterTOSEpic_1.acceptMasterTOSEpic, acceptRemiTermsEpic_1.acceptRemiTermsEpic, acceptTreasuryTermsEpic_1.acceptTreasuryTermsEpic, acceptZeniAccountTermsEpic_1.acceptZeniAccountTermsEpic, addCardPaymentSourceEpic_1.addCardPaymentSourceEpic, approveOAuthConsentEpic_1.approveOAuthConsentEpic, approveOrRejectBillEpic_1.approveOrRejectBillEpic, approveOrRejectBillsBulkActionEpic_1.approveOrRejectBillsBulkActionEpic, approveOrRejectRemiEpic_1.approveOrRejectRemiEpic, approveOrRejectRemisBulkActionEpic_1.approveOrRejectRemisBulkActionEpic, approveVendorGlobalReviewEpic_1.approveVendorGlobalReviewEpic, archiveTaskEpic_1.archiveTaskEpic, backgroundRefetchReviewTabEpic_1.backgroundRefetchReviewTabEpic, bulkUpdateTaskListEpic_1.bulkUpdateTaskListEpic, cancelAiAccountantOnboardingEpic_1.cancelAiAccountantOnboardingEpic, cancelAndDeleteBillEpic_1.cancelAndDeleteBillEpic, cancelAndDeleteRemiEpic_1.cancelAndDeleteRemiEpic, cancelOrDeleteBillsBulkActionEpic_1.cancelOrDeleteBillsBulkActionEpic, cancelOrDeleteRemisBulkActionEpic_1.cancelOrDeleteRemisBulkActionEpic, cancelScheduleAccruedJournalEntryEpic_1.cancelScheduleAccruedJournalEntryEpic, changeZeniPersonRolesEpic_1.changeZeniPersonRolesEpic, checkDepositEpic_1.checkDepositEpic, clearAllEpic_1.clearAllEpic, closeChargeCardEpic_1.closeChargeCardEpic, closeChargeCardsEpic_1.closeChargeCardsEpic, companyManagementSavePendingUpdates_1.companyManagementSavePendingUpdatesEpic, companyManagementSaveUpdatesEpic_1.companyManagementSaveUpdatesEpic, confirmCardSetupIntentEpic_1.confirmCardSetupIntentEpic, convertAmountToHomeCurrencyEpic_1.convertAmountToHomeCurrencyEpic, createAddressEpic_1.createAddressEpic, createAutoTransferRuleEpic_1.createAutoTransferRuleEpic, createBankAccountEpic_1.createBankAccountEpic, createCardSetupIntentEpic_1.createCardSetupIntentEpic, createCheckingAccountEpic_1.createCheckingAccountEpic, createCompanyAddressEpic_1.createCompanyAddressEpic, createCompanyOfficersEpic_1.createCompanyOfficersEpic, createCompanyUserAddressEpic_1.createCompanyUserAddressEpic, createGlobalMerchantEpic_1.createGlobalMerchantEpic, createInternationalBankAccountEpic_1.createInternationalBankAccountEpic, createNewSchedulesAccruedEpic_1.createNewSchedulesAccruedEpic, createNewSchedulesEpic_1.createNewSchedulesEpic, createNewTaskGroupEpic_1.createNewTaskGroupEpic, createInternationalPaymentInstrumentEpic_1.createPaymentInstrumentEpic, createSessionAndSubmitEpic_1.createSessionAndSubmitEpic, createSessionEpic_1.createSessionEpic, createTagEpic_1.createTagEpic, createTaskFromTaskGroupTemplateEpic_1.createTaskFromTaskGroupTemplateEpic, createTransferEntryEpic_1.createTransferEntryEpic, createUserBankAccountEpic_1.createUserBankAccountEpic, deleteAccountStatementEpic_1.deleteAccountStatementEpic, deleteAutoTransferRuleEpic_1.deleteAutoTransferRuleEpic, excludeAccountFromReconciliationEpic_1.excludeAccountFromReconciliationEpic, includeAccountInReconciliationEpic_1.includeAccountInReconciliationEpic, deleteBankAccountEpic_1.deleteBankAccountEpic, deleteBillEpic_1.deleteBillEpic, deleteChatSessionEpic_1.deleteChatSessionEpic, deleteConnectionEpic_1.deleteConnectionEpic, deleteBillPayApprovalRuleEpic_1.deleteBillPayApprovalRuleEpic, reorderBillPayApprovalRulesEpic_1.reorderBillPayApprovalRulesEpic, deleteFileEpic_1.deleteFileEpic, deleteFileListEpic_1.deleteFileListEpic, deleteInternationalBankAccountEpic_1.deleteInternationalBankAccountEpic, deletePaymentInstrumentEpic_1.deletePaymentInstrumentEpic, deletePersonEpic_1.deletePersonEpic, deleteRemiApprovalRuleEpic_1.deleteRemiApprovalRuleEpic, reorderRemiApprovalRulesEpic_1.reorderRemiApprovalRulesEpic, deleteRemiEpic_1.deleteRemiEpic, deleteScheduleAccruedDetailEpic_1.deleteScheduleAccruedDetailEpic, deleteScheduleDetailEpic_1.deleteScheduleDetailEpic, deleteTagEpic_1.deleteTagEpic, deleteTaskEpic_1.deleteTaskEpic, snoozeTaskEpic_1.snoozeTaskEpic, unsnoozeTaskEpic_1.unsnoozeTaskEpic, deleteTaskGroupEpic_1.deleteTaskGroupEpic, deleteTransactionAttachmentEpic_1.deleteTransactionAttachmentEpic, deleteUserBankAccountEpic_1.deleteUserBankAccountEpic, doMagicLinkSignInEpic_1.doMagicLinkSignInEpic, signInUserEpic_1.doSignInEpic, signOutUserEpic_1.doSignOutEpic, sendEmailMagicLinkToUserEpic_1.sendEmailMagicLinkToUserEpic, sessionHeartbeatEpic_1.sessionHeartbeatEpic, verifyDeviceWithTwoFAEpic_1.verifyDeviceWithTwoFAEpic, downloadAccountingProviderAttachmentEpic_1.downloadAccountingProviderAttachmentEpic, dragNDropTasksEpic_1.dragNDropTasksEpic, enableChargeCardAutoPayEpic_1.enableChargeCardAutoPayEpic, enableSetupEpic_1.enableSetupEpic, establishOnboardingPlaidConnectionEpic_1.establishOnboardingPlaidConnectionEpic, establishPlaidConnectionEpic_1.establishPlaidConnectionEpic, expressInterestChargeCardEpic_1.expressInterestChargeCardEpic, fetchAccountListEpic_1.fetchAccountListEpic, fetchAccountListForAccountTypesEpic_1.fetchAccountListForAccountTypesEpic, fetchAccountSettingsListForAccountTypesEpic_1.fetchAccountSettingsListForAccountTypesEpic, fetchAccruedScheduleListEpic_1.fetchAccruedScheduleListEpic, fetchActiveTenantEpic_1.fetchActiveTenantEpic, fetchAddressEpic_1.fetchAddressEpic, fetchAiAccountantCustomersEpic_1.fetchAiAccountantCustomersEpic, fetchAiAccountantJobsEpic_1.fetchAiAccountantJobsEpic, fetchAllCockpitViewsEpic_1.fetchAllCockpitViewsEpic, fetchAllExpenseAutomationTabsEpic_1.fetchAllExpenseAutomationTabsEpic, fetchAllPeopleRequiredViewsEpic_1.fetchAllPeopleRequiredViewsEpic, fetchAllTagsEpic_1.fetchAllTagsEpic, fetchAllTaskGroupsEpic_1.fetchAllTaskGroupsEpic, fetchAllTenantsEpic_1.fetchAllTenantsEpic, fetchAndUpdateVendorRecommendationsEpic_1.fetchAndUpdateVendorRecommendationsEpic, aggregatedReportEpic_1.fetchAggregatedReportEpic, fetchApAgingDetailEpic_1.fetchApAgingDetailEpic, fetchApAgingEpic_1.fetchApAgingEpic, fetchArAgingDetailEpic_1.fetchArAgingDetailEpic, fetchArAgingEpic_1.fetchArAgingEpic, fetchAuditReportGroupViewEpic_1.fetchAuditReportGroupViewEpic, fetchAuditRuleGroupViewEpic_1.fetchAuditRuleGroupViewEpic, fetchAutoTransferReviewDetailEpic_1.fetchAutoTransferReviewDetailEpic, fetchAutoTransferRuleHistory_1.fetchAutoTransferRuleHistoryEpic, fetchAutoTransferRulesEpic_1.fetchAutoTransferRulesEpic, balanceSheetEpic_1.fetchBalanceSheetEpic, balanceSheetForTimeframeEpic_1.fetchBalanceSheetForTimeframeEpic, fetchBankAccountsListEpic_1.fetchBankAccountsListEpic, fetchBankConnectionsViewEpic_1.fetchBankConnectionsViewEpic, fetchBankCountryNameByIbanEpic_1.fetchBankCountryNameByIbanEpic, fetchBankNameByRoutingEpic_1.fetchBankNameByRoutingEpic, fetchBankNameBySwiftEpic_1.fetchBankNameBySwiftEpic, fetchBillAndInitializeLocalStoreEpic_1.fetchBillAndInitializeLocalStoreEpic, fetchBillDetailEpic_1.fetchBillDetailEpic, fetchBillingAccountsViewEpic_1.fetchBillingAccountsListEpic, fetchBillListEpic_1.fetchBillListEpic, fetchBillListPerTabEpic_1.fetchBillListPerTabEpic, fetchBillPayApproversDetailsEpic_1.fetchBillPayApproversDetailsEpic, fetchBillPayApproversListEpic_1.fetchBillPayApproversListEpic, fetchBillPayCardEpic_1.fetchBillPayCardEpic, fetchBillPayConfigEpic_1.fetchBillPayConfigEpic, fetchBillPaySetupApproverViewEpic_1.fetchBillPaySetupApproverViewEpic, fetchBillPaySetupViewEpic_1.fetchBillPaySetupViewEpic, cardBalanceEpic_1.fetchCardBalanceEpic, archiveCardPolicyEpic_1.archiveCardPolicyEpic, createCardPolicyTemplateEpic_1.createCardPolicyTemplatesEpic, extractPolicyDocumentEpic_1.extractPolicyDocumentEpic, policyRecommendationFromUploadEpic_1.policyRecommendationFromUploadEpic, policyDocumentExtractionToRecommendationBridgeEpic_1.policyDocumentExtractionToRecommendationBridgeEpic, fetchCardPolicyDetailEpic_1.fetchCardPolicyDetailEpic, fetchCardPolicyListEpic_1.fetchCardPolicyListEpic, fetchCardPolicyMccCategoriesEpic_1.fetchCardPolicyMccCategoriesEpic, fetchCardPolicyVendorOptionsEpic_1.fetchCardPolicyVendorOptionsEpic, fetchCardProfilesEpic_1.fetchCardProfilesEpic, updateCardPolicyEpic_1.updateCardPolicyEpic, fetchCashbackDetailEpic_1.fetchCashbackDetailEpic, cashBalanceEpic_1.fetchCashBalanceEpic, cashFlowEpic_1.fetchCashFlowEpic, cashFlowForTimeframeEpic_1.fetchCashFlowForTimeframeEpic, cashInCashOutEpic_1.fetchCashInCashOutEpic, fetchCashManagementSettingsEpic_1.fetchCashManagementSettingsEpic, saveAutoSweepSettingsEpic_1.saveAutoSweepSettingsEpic, fetchCashManagementBannerEpic_1.fetchCashManagementBannerEpic, fetchCashManagementOverviewPageEpic_1.fetchCashManagementOverviewPageEpic, fetchCashManagementRecommendationEpic_1.fetchCashManagementRecommendationEpic, fetchRecentTransferEpic_1.fetchRecentTransferEpic, cashPositionEpic_1.fetchCashPositionEpic, fetchChargeCardConfigEpic_1.fetchChargeCardConfigEpic, fetchChargeCardDetailEpic_1.fetchChargeCardDetailEpic, fetchChargeCardDetailPageEpic_1.fetchChargeCardDetailPageEpic, fetchChargeCardListEpic_1.fetchChargeCardListEpic, fetchChargeCardListPageEpic_1.fetchChargeCardListPageEpic, fetchChargeCardPaymentPageEpic_1.fetchChargeCardPaymentPageEpic, fetchChargeCardRepaymentDetailEpic_1.fetchChargeCardRepaymentDetailEpic, fetchChargeCardPaymentHistoryEpic_1.fetchChargeCardPaymentHistoryEpic, fetchChargeCardSetupViewEpic_1.fetchChargeCardSetupViewEpic, fetchChargeCardStatementListEpic_1.fetchChargeCardStatementListEpic, fetchChargeCardTransactionAttachmentsEpic_1.fetchChargeCardTransactionAttachmentsEpic, fetchChargeCardTransactionListEpic_1.fetchChargeCardTransactionListEpic, fetchChargeCardTransactionStatisticsEpic_1.fetchChargeCardTransactionStatisticsEpic, fetchChargeCardsRecurringExpensesEpic_1.fetchChargeCardsRecurringExpensesEpic, fetchChatHistoryEpic_1.fetchChatHistoryEpic, fetchChatSessionsForUserEpic_1.fetchChatSessionsForUserEpic, fetchClassListEpic_1.fetchClassListEpic, fetchCollaborationAuthTokenEpic_1.fetchCollaborationAuthTokenEpic, fetchCockpitContextEpic_1.fetchCockpitContextEpic, fetchCompanyBillingAddressEpic_1.fetchCompanyBillingAddressEpic, companyConfigEpic_1.fetchCompanyConfigEpic, fetchCompanyHealthMetricConfigEpic_1.fetchCompanyHealthMetricConfigEpic, fetchCompanyHealthMetricViewEpic_1.fetchCompanyHealthMetricViewEpic, fetchCompanyManagementViewEpic_1.fetchCompanyManagementViewEpic, fetchCompanyMetaDataEpic_1.fetchCompanyMetaDataEpic, fetchCompanyMonthEndReportHistoricDataEpic_1.fetchCompanyMonthEndReportHistoricDataEpic, fetchCompanyMonthEndReportHistoricDatesEpic_1.fetchCompanyMonthEndReportHistoricDatesEpic, fetchCompanyMonthEndReportTemplatesEpic_1.fetchCompanyMonthEndReportTemplatesEpic, fetchCompanyMonthEndReportViewEpic_1.fetchCompanyMonthEndReportViewEpic, fetchCompanyOnboardingViewEpic_1.fetchCompanyOnboardingViewEpic, fetchCompanyPassportViewEpic_1.fetchCompanyPassportViewEpic, fetchCompanyPortfolioViewEpic_1.fetchCompanyPortfolioViewEpic, fetchCompanyTaskManagerViewEpic_1.fetchCompanyTaskManagerViewEpic, fetchTaskManagerMetricsEpic_1.fetchTaskManagerMetricsEpic, updateCompanyTaskManagerViewFiltersEpic_1.updateCompanyTaskManagerViewFiltersEpic, fetchCreditAccountEpic_1.fetchCreditAccountEpic, fetchCreditAccountRepaymentEpic_1.fetchCreditAccountRepaymentEpic, fetchCreditAgentMacroEpic_1.fetchCreditAgentMacroEpic, fetchCurrencyConversionValueEpic_1.fetchCurrencyConversionValueEpic, dashboardEpic_1.fetchDashboardEpic, fetchDashboardLayoutEpic_1.fetchDashboardLayoutEpic, fetchDebitCardSummaryEpic_1.fetchDebitCardSummaryEpic, fetchDepositAccountDetailEpic_1.fetchDepositAccountDetailEpic, fetchDepositAccountEpic_1.fetchDepositAccountEpic, fetchDepositAccountHistoryEpic_1.fetchDepositAccountHistoryEpic, fetchDepositAccountLimitEpic_1.fetchDepositAccountLimitEpic, fetchDepositAccountListEpic_1.fetchDepositAccountListEpic, fetchDepositAccountListForCardsEpic_1.fetchDepositAccountListForCardsEpic, fetchDepositAccountTransactionListEpic_1.fetchDepositAccountTransactionListEpic, fetchDownloadSchedulesEpic_1.fetchDownloadSchedulesEpic, fetchDuplicateBillEpic_1.fetchDuplicateBillPayReviewEpic, fetchDuplicateReimbursementEpic_1.fetchDuplicateReimbursementEpic, fetchEditBillDetailPageEpic_1.fetchEditBillDetailPageEpic, fetchEditRemiDetailPageEpic_1.fetchEditRemiDetailPageEpic, fetchEligibleActionsForBillEpic_1.fetchEligibleActionsForBillEpic, fetchEntityAutoCompleteEpic_1.fetchEntityAutoCompleteEpic, fetchEntityHistoryEpic_1.fetchEntityHistoryEpic, fetchEntityRecommendationsByTransactionIdEpic_1.fetchEntityRecommendationsByTransactionIdEpic, fetchEntityRecommendationsForLineUpdateEpic_1.fetchEntityRecommendationsForLineUpdateEpic, fetchExcludedResourcesEpic_1.fetchExcludedResourcesEpic, fetchFluxAnalysisViewEpic_1.fetchFluxAnalysisViewEpic, initializeTransactionCategorizationLocalDataEpic_1.initializeTransactionCategorizationViewLocalDataEpic, fetchJeSchedulesEpic_1.fetchJeSchedulesEpic, fetchJeSchedulePageEpic_1.fetchJeSchedulesPageEpic, markTransactionAsNotMiscategorizedEpic_1.markTransactionAsNotMiscategorizedEpic, fetchMissingReceiptsEpic_1.fetchMissingReceiptsEpic, bulkUploadReceiptsEpic_1.bulkUploadReceiptsEpic, confirmBulkUploadMatchEpic_1.confirmBulkUploadMatchEpic, fetchBulkUploadBatchDetailsEpic_1.fetchBulkUploadBatchDetailsEpic, fetchMultipleBatchDetailsEpic_1.fetchMultipleBatchDetailsEpic, fetchMoreBatchDetailsEpic_1.fetchMoreBatchDetailsEpic, fetchBulkUploadBatchesEpic_1.fetchBulkUploadBatchesEpic, fetchCompletedTransactionsEpic_1.fetchCompletedTransactionsEpic, refetchCompletedTransactionsOnBulkUploadSortEpic_1.refetchCompletedTransactionsOnBulkUploadSortEpic, refreshBatchDetailsForBatchIdEpic_1.refreshBatchDetailsForBatchIdEpic, watchBulkUploadBatchStatusEpic_1.bulkUploadAutomatchingTimeoutEpic, bulkUploadMatchResultToastEpic_1.bulkUploadMatchResultToastEpic, syncTabsAfterAutomatchEpic_1.syncTabsAfterAutomatchEpic, watchBulkUploadBatchStatusEpic_1.pollBulkUploadBatchStatusEpic, watchBulkUploadBatchStatusEpic_1.pusherBatchStatusCompletionEpic, restoreBulkUploadAutomatchingOnMountEpic_1.restoreBulkUploadAutomatchingOnMountEpic, searchTransactionsForManualMatchEpic_1.searchTransactionsForManualMatchEpic, fetchReconciliationViewEpic_1.fetchReconciliationViewEpic, saveTransactionCategorizationEpic_1.saveTransactionCategorizationEpic, fetchTransactionCategorizationEpic_1.fetchTransactionCategorizationEpic, fetchTransactionCategorizationViewEpic_1.fetchTransactionCategorizationViewEpic, updateTransactionCategorizationEpic_1.updateTransactionCategorizationEpic, fetchExpenseTrendEpic_1.fetchExpenseTrendEpic, fetchExpressPayInitialDetailsEpic_1.fetchExpressPayInitialDetailsEpic, fetchExternalConnectionsEpic_1.fetchExternalConnectionsEpic, fetchFileEpic_1.fetchFileEpic, fetchFileListEpic_1.fetchFileListEpic, financeStatementEpic_1.fetchFinanceStatementEpic, fetchForecastListEpic_1.fetchForecastListEpic, reportsClassViewRefetchingEpic_1.initiateReportsClassViewRefetchingEpic, reportsResyncEpic_1.reportsResyncEpic, fetchGlobalMerchantAutoCompleteViewEpic_1.fetchGlobalMerchantAutoCompleteViewEpic, fetchGlobalMerchantRecommendationEpic_1.fetchGlobalMerchantRecommendationEpic, fetchIncomeTrendEpic_1.fetchIncomeTrendEpic, insightsCardEpic_1.fetchInsightsCardEpic, fetchInternationalWireDynamicFormEpic_1.fetchInternationalWireDynamicFormEpic, fetchIntlVerificationFormEpic_1.fetchIntlVerificationFormEpic, fetchIssueCardPageEpic_1.fetchIssueCardPageEpic, seedAiCardCreationFormDraftEpic_1.seedAiCardCreationFormDraftEpic, seedAiCardPolicyFormDraftEpic_1.seedAiCardPolicyFormDraftEpic, applyExtractedPolicyToDraftEpic_1.applyExtractedPolicyToDraftEpic, fetchMagicLinkBankNameByRoutingEpic_1.fetchMagicLinkBankNameByRoutingEpic, fetchMagicLinkBankNameBySwiftEpic_1.fetchMagicLinkBankNameBySwiftEpic, fetchMagicLinkBillEpic_1.fetchMagicLinkBillEpic, fetchMagicLinkTenantEpic_1.fetchMagicLinkTenantEpic, fetchManagementViewEpic_1.fetchManagementViewEpic, fetchMerchantListEpic_1.fetchMerchantListEpic, fetchMonthClosePerformanceTrendEpic_1.fetchMonthClosePerformanceTrendEpic, fetchMonthEndCloseChecksEpic_1.fetchMonthEndCloseChecksEpic, fetchMyProfileEpic_1.fetchMyProfileEpic, fetchMyProfileViewEpic_1.fetchMyProfileViewEpic, netBurnOrIncomeClassesViewEpic_1.fetchNetBurnOrIncomeClassesViewEpic, netBurnOrIncomeEpic_1.fetchNetBurnOrIncomeEpic, netBurnOrIncomeForTimeframeClassesViewEpic_1.fetchNetBurnOrIncomeForTimeframeClassesViewEpic, netBurnOrIncomeForTimeframeEpic_1.fetchNetBurnOrIncomeForTimeframeEpic, fetchNetBurnOrIncomeStoryCardEpic_1.fetchNetBurnOrIncomeStoryCardEpic, fetchNetBurnOrIncomeWithForecastEpic_1.fetchNetBurnOrIncomeWithForecastEpic, fetchNotificationSettingsEpic_1.fetchNotificationSettingsEpic, fetchNotificationSettingsViewEpic_1.fetchNotificationSettingsViewEpic, fetchNotificationUnreadCountEpic_1.fetchNotificationUnreadCountEpic, fetchNotificationViewEpic_1.fetchNotificationViewEpic, fetchRegisteredInterestsEpic_1.fetchRegisteredInterestsEpic, fetchOnboardingCompletedCompaniesEpic_1.fetchOnboardingCompletedCompaniesEpic, fetchOnboardingCustomerSetupViewEpic_1.fetchOnboardingCustomerSetupViewEpic, fetchOnboardingCustomerViewEpic_1.fetchOnboardingCustomerViewEpic, fetchOnboardingViewEpic_1.fetchOnboardingViewEpic, fetchOpExByVendorReportEpic_1.fetchOpExByVendorEpic, fetchOpExByVendorReportForTimeframeEpic_1.fetchOpExByVendorReportForTimeframeEpic, fetchOpExByVendorReportSummaryEpic_1.fetchOpExByVendorReportSummaryEpic, refreshOpExByVendorReportEpic_1.refreshOpExByVendorReportEpic, opExClassesViewEpic_1.fetchOpExClassesViewEpic, opExEpic_1.fetchOpExEpic, opExForTimeframeClassesViewEpic_1.fetchOpExForTimeframeClassesViewEpic, opExForTimeFrameEpic_1.fetchOpExReportForTimeframeEpic, fetchOpExWithForecastEpic_1.fetchOpExWithForecastEpic, fetchOwnerListEpic_1.fetchOwnerListEpic, fetchParentSubsidiaryManagementViewEpic_1.fetchParentSubsidiaryManagementViewEpic, fetchPaymentAccountBalanceEpic_1.fetchPaymentAccountBalanceEpic, fetchPaymentAccountListEpic_1.fetchPaymentAccountListEpic, fetchPaymentSourcesEpic_1.fetchPaymentSourcesEpic, fetchPeopleEpic_1.fetchPeopleEpic, peoplePageEpic_1.fetchPeoplePageEpic, fetchPortfolioViewEpic_1.fetchPortfolioViewEpic, fetchPreviousBillsEpic_1.fetchPreviousBillsEpic, profitAndLossClassesViewEpic_1.fetchProfitAndLossClassesViewEpic, profitAndLossEpic_1.fetchProfitAndLossEpic, profitAndLossForTimeframeClassesViewEpic_1.fetchProfitAndLossForTimeframeClassesViewEpic, profitAndLossForTimeframeProjectViewEpic_1.fetchProfitAndLossForTimeframeProjectViewEpic, profitAndLossForTimeframeEpic_1.fetchProfitAndLossForTimeframeEpic, profitAndLossProjectViewEpic_1.fetchProfitAndLossProjectViewEpic, fetchProjectListEpic_1.fetchProjectListEpic, fetchQBOConnectionPoolEpic_1.fetchQBOConnectionPoolEpic, fetchRecommendationByEntityIdEpic_1.fetchRecommendationByEntityIdEpic, fetchRecommendationByEntityNameEpic_1.fetchRecommendationByEntityNameEpic, fetchRecommendationForAccountSettingsEpic_1.fetchRecommendationForAccountSettingsEpic, fetchRecommendationForAccountTypeEpic_1.fetchRecommendationForAccountTypeEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic_1.fetchRecommendationsAndUpdateMerchantRecommendationsEpic, fetchRecommendedTransactionRowIndexEpic_1.fetchRecommendedTransactionRowIndexEpic, fetchReferralsEpic_1.fetchReferralsEpic, fetchReimbursementCardEpic_1.fetchReimbursementCardEpic, fetchReimbursementConfigEpic_1.fetchReimbursementConfigEpic, fetchRemiAndInitializeLocalStoreEpic_1.fetchRemiAndInitializeLocalStoreEpic, fetchRemiApproversDetailsEpic_1.fetchRemiApproversDetailsEpic, fetchRemiApproversListEpic_1.fetchRemiApproversListEpic, fetchRemiDetailEpic_1.fetchRemiDetailEpic, fetchRemiListEpic_1.fetchRemiListEpic, fetchRemiListPerTabEpic_1.fetchRemiListPerTabEpic, fetchRemiSetupApproverViewEpic_1.fetchRemiSetupApproverViewEpic, fetchRemiSetupViewEpic_1.fetchRemiSetupViewEpic, revenueClassesViewEpic_1.fetchRevenueClassesViewEpic, revenueEpic_1.fetchRevenueEpic, revenueForTimeframeClassesViewEpic_1.fetchRevenueForTimeframeClassesViewEpic, revenueForTimeframeEpic_1.fetchRevenueForTimeframeEpic, fetchRevenueWithForecastEpic_1.fetchRevenueWithForecastEpic, fetchReviewCompanyViewEpic_1.fetchReviewCompanyViewEpic, fetchReviewTransferDetailEpic_1.fetchReviewTransferDetailEpic, fetchRewardsPlanEpic_1.fetchRewardsPlanEpic, fetchScheduleAccruedDetailsEpic_1.fetchScheduleAccruedDetailsEpic, fetchScheduleAccruedDetailsPageEpic_1.fetchScheduleAccruedDetailsPageEpic, fetchScheduleDetailsEpic_1.fetchScheduleDetailsEpic, fetchScheduleDetailsPageEpic_1.fetchScheduleDetailsPageEpic, fetchScheduleListEpic_1.fetchScheduleListEpic, fetchSchedulesAccountEpic_1.fetchSchedulesAccountEpic, fetchSubscriptionAddOnsEpic_1.fetchSubscriptionAddOnsEpic, fetchSubscriptionCouponsEpic_1.fetchSubscriptionCouponsEpic, fetchSubscriptionCreateEstimateEpic_1.fetchSubscriptionCreateEstimateEpic, fetchSubscriptionDetailsEpic_1.fetchSubscriptionDetailsEpic, fetchSubscriptionListEpic_1.fetchSubscriptionListEpic, fetchSubscriptionPlansEpic_1.fetchSubscriptionPlansEpic, fetchSubscriptionSummaryForTenantEpic_1.fetchSubscriptionSummaryForTenantEpic, fetchSubscriptionUpdateEstimateEpic_1.fetchSubscriptionUpdateEstimateEpic, fetchSubscriptionViewEpic_1.fetchSubscriptionViewEpic, fetchSuggestedQuestionsEpic_1.fetchSuggestedQuestionsEpic, fetchSkillsEpic_1.fetchSkillsEpic, fetchTaskDetailEpic_1.fetchTaskDetailEpic, fetchTaskDetailPageEpic_1.fetchTaskDetailPageEpic, fetchTaskGroupTemplatesEpic_1.fetchTaskGroupTemplatesEpic, fetchTaskHistoryEpic_1.fetchTaskHistoryEpic, fetchTaskListEpic_1.fetchTaskListEpic, fetchTaskListPageEpic_1.fetchTaskListPageEpic, fetchTasksCardEpic_1.fetchTasksCardEpic, topExEpic_1.fetchTopExEpic, fetchTransactionActivityLogEpic_1.fetchTransactionActivityLogEpic, transactionDetailEpic_1.fetchTransactionDetailEpic, fetchTransactionListByAccountEpic_1.fetchTransactionListByAccountEpic, fetchTransactionListByClassEpic_1.fetchTransactionListByClassEpic, fetchTransactionListByProjectEpic_1.fetchTransactionListByProjectEpic, fetchTransactionListByEntityEpic_1.fetchTransactionListByEntityEpic, fetchTransactionsForEntityEpic_1.fetchTransactionsForEntityEpic, fetchTransactionsListByCategoryTypeEpic_1.fetchTransactionsListByCategoryTypeEpic, fetchTransferAccountsEpic_1.fetchTransferAccountsEpic, fetchTreasuryDetailEpic_1.fetchTreasuryDetailEpic, fetchTreasuryFundsEpic_1.fetchTreasuryFundsEpic, fetchTreasuryHistoryEpic_1.fetchTreasuryHistoryEpic, fetchTreasurySetupViewEpic_1.fetchTreasurySetupViewEpic, fetchTreasuryStatementListEpic_1.fetchTreasuryStatementListEpic, fetchTreasuryTaxLetterListEpic_1.fetchTreasuryTaxLetterListEpic, fetchTreasuryTransactionListEpic_1.fetchTreasuryTransactionListEpic, updatePortfolioAllocationEpic_1.updatePortfolioAllocationEpic, fetchPortfolioAllocationEpic_1.fetchPortfolioAllocationEpic, fetchTrendForEntityEpic_1.fetchTrendForEntityEpic, fetchUserDetailEpic_1.fetchUserDetailEpic, fetchUserFinancialAccountEpic_1.fetchUserFinancialAccountEpic, fetchUserListByTypeEpic_1.fetchUserListByTypeEpic, userRoleConfigEpic_1.fetchUserRoleConfigEpic, vendor1099TypeListEpic_1.fetchVendor1099TypeListEpic, fetchVendorAndUpdateBillLocalDataEpic_1.fetchVendorAndUpdateBillLocalDataEpic, fetchVendorByNameAndParseInvoice_1.fetchVendorByNameAndParseInvoiceEpic, fetchVendorDetailsEpic_1.fetchVendorDetailsEpic, fetchVendorEpic_1.fetchVendorEpic, fetchVendorFirstReviewAttachmentsEpic_1.fetchVendorFirstReviewAttachmentsEpic, fetchVendorFirstReviewViewEpic_1.fetchVendorFirstReviewViewEpic, fetchVendorGlobalReviewViewEpic_1.fetchVendorGlobalReviewViewEpic, fetchVendorsFiling1099AllEpic_1.fetchVendorsFiling1099AllEpic, fetchVendorsFiling1099DownloadEpic_1.fetchVendorsFiling1099DownloadEpic, fetchVendorsFiling1099ListEpic_1.fetchVendorsFiling1099ListEpic, fetchVendorsListEpic_1.fetchVendorsListEpic, fetchVendorsTabVendorDetailPageViewEpic_1.fetchVendorsTabVendorDetailPageViewEpic, fetchVendorsTabVendorDetailsEpic_1.fetchVendorsTabVendorDetailsEpic, fetchVendorsTabVendorEpic_1.fetchVendorsTabVendorEpic, fetchVendorTabViewEpic_1.fetchVendorTabViewEpic, vendorTypeListEpic_1.fetchVendorTypeListEpic, fetchZeniAccountListPageEpic_1.fetchZeniAccountListEpic, fetchZeniAccountsConfigEpic_1.fetchZeniAccountsConfigEpic, fetchZeniAccountSetupViewEpic_1.fetchZeniAccountSetupViewEpic, zeniAccountsPromoCardEpic_1.fetchZeniAccountsPromoCardEpic, fetchZeniAccStatementListEpic_1.fetchZeniAccStatementListEpic, fetchZeniAccStatementPageEpic_1.fetchZeniAccStatementPageEpic, fetchZeniUsersEpic_1.fetchZeniUsersEpic, getOnboardingEmailGroupEpic_1.getOnboardingEmailGroupEpic, getOnboardingPlaidLinkTokenEpic_1.getOnboardingPlaidLinkTokenEpic, getPaymentAccountsEpic_1.getPaymentAccountsEpic, getPlaidLinkTokenEpic_1.getPlaidLinkTokenEpic, ignoreRecommendedJeScheduleEpic_1.ignoreRecommendedJeScheduleEpic, improveUsingZeniGPTEpic_1.improveUsingZeniGPTEpic, initialiseLocalDataForSelectedAccountIdEpic_1.initialiseDataForSelectedAccountIdEpic, initializeAccountMappingViewEpic_1.initializeAccountMappingViewEpic, initializeAccountSettingsViewEpic_1.initializeAccountSettingsViewEpic, initializeBillPaySetupApproverViewUpdateDataEpic_1.initializeBillPaySetupApproverViewUpdateDataEpic, initializeBillToLocalStoreEpic_1.initializeBillToLocalStoreEpic, initializeCardUserOnboardingLocalDataEpic_1.initializeCardUserOnboardingLocalDataEpic, initializeCompanyHealthMetricViewLocalData_1.initializeCompanyHealthMetricViewLocalDataEpic, initializeDynamicFormEpic_1.initializeDynamicFormEpic, initializeEditPersonEpic_1.initializeEditPersonEpic, initializeJeScheduleLocalDataEpic_1.initializeJeScheduleLocalDataEpic, initializeInternationalWireLocalDataEpic_1.initializeInternationalWireLocalDataEpic, initializeIntlVerificationFormEpic_1.initializeIntlVerificationFormEpic, initializeMyProfileLocalDataEpic_1.initializeMyProfileLocalDataEpic, initializeOnboardingCustomerViewUpdateDataEpic_1.initializeOnboardingCustomerViewUpdateDataEpic, initializeRemiSetupApproverViewUpdateDataEpic_1.initializeRemiSetupApproverViewUpdateDataEpic, initializeRemiToLocalStoreEpic_1.initializeRemiToLocalStoreEpic, initializeScheduleAccruedDetailLocalDataEpic_1.initializeScheduleAccruedDetailLocalDataEpic, initializeScheduleDetailLocalDataEpic_1.initializeScheduleDetailLocalDataEpic, initializeSubscriptionLocalDataEpic_1.initializeSubscriptionLocalDataEpic, initializeTaskToLocalStoreEpic_1.initializeTaskToLocalStoreEpic, initializeTransactionDetailLocalDataEpic_1.initializeTransactionDetailLocalDataEpic, initializeVendorAddressEpic_1.initializeVendorAddressEpic, initiateChargeCardRepaymentEpic_1.initiateChargeCardRepaymentEpic, invitePeopleEpic_1.invitePeopleEpic, inviteZeniPeopleEpic_1.inviteZeniPeopleEpic, issueChargeCardEpic_1.issueChargeCardEpic, lockChargeCardEpic_1.lockChargeCardEpic, lockChargeCardsEpic_1.lockChargeCardsEpic, markAsCompleteScheduleDetailEpic_1.markAsCompleteScheduleDetailEpic, markTransactionAsNotMiscategorizedEpic_2.markTransactionAsNotMiscategorizedEpic, notifyMeForFeatureEpic_1.notifyMeForFeatureEpic, parallelFetchAccountTransactionListEpic_1.parallelFetchAccountTransactionListEpic, parallelFetchClassTransactionListEpic_1.parallelFetchClassTransactionListEpic, parallelFetchProjectTransactionListEpic_1.parallelFetchProjectTransactionListEpic, parallelFetchEntityTransactionListEpic_1.parallelFetchEntityTransactionListEpic, parallelFetchTransactionListByCategoryTypeEpic_1.parallelFetchTransactionListByCategoryTypeEpic, parseInvoiceToBillEpic_1.parseInvoiceToBillEpic, parseReceiptsToRemiEpic_1.parseReceiptsToRemiEpic, peopleSaveUpdatesEpic_1.peopleSaveUpdatesEpic, pushToastNotificationEpic_1.pushToastNotificationEpic, refreshExpenseAutomationCurrentTabEpic_1.refreshExpenseAutomationCurrentTabEpic, refreshIntegrationsDataEpic_1.refreshIntegrationsDataEpic, rejectVendorGlobalReviewEpic_1.rejectVendorGlobalReviewEpic, resendCardInviteEpic_1.resendCardInviteEpic, resendInviteEpic_1.resendInviteEpic, resendOtpEpic_1.resendOtpEpic, resendVerifyDeviceOTPEpic_1.resendVerifyDeviceOTPEpic, resendReferralInviteEpic_1.resendReferralInviteEpic, resetTransactionVendorLocalDataEpic_1.resetTransactionVendorLocalDataEpic, resetVendorDetailLocalDataEpic_1.resetVendorDetailLocalDataEpic, resetVendorsTabVendorDetailLocalDataEpic_1.resetVendorsTabVendorDetailLocalDataEpic, retryBankAccountConnectionEpic_1.retryBankAccountConnectionEpic, retryBankAccountConnectionForOnboardingEpic_1.retryBankAccountConnectionForOnboardingEpic, retryJeSchedulesEpic_1.retryJeScheduleEpic, retryOrRefundBillEpic_1.retryOrRefundBillEpic, validateBillsBulkActionEpic_ts_1.validateBillsBulkActionEpic, reviewDraftRemisBulkActionEpic_ts_1.reviewDraftRemisBulkActionEpic, reviewFluxAnalysisEpic_1.reviewFluxAnalysisViewEpic, revokeCardInviteEpic_1.revokeCardInviteEpic, revokeChargeCardsInviteEpic_1.revokeChargeCardsInviteEpic, saveAccountMappingViewEpic_1.saveAccountMappingViewEpic, saveAccountSettingsViewEpic_1.saveAccountSettingsViewEpic, saveAPIKeyConnectionEpic_1.saveAPIKeyConnectionEpic, saveBillDetailEpic_1.saveBillDetailEpic, saveBillPaySetupApproverViewUpdatesEpic_1.saveBillPaySetupApproverViewUpdatesEpic, saveCardOnboardingUserDetailsEpic_1.saveCardOnboardingUserDetailsEpic, saveCompanyBillingAddressEpic_1.saveCompanyBillingAddressEpic, saveCompanyHealthMetricByIdEpic_1.saveCompanyHealthMetricByIdEpic, saveCompanyMonthEndReportEpic_1.saveCompanyMonthEndReportEpic, saveCompanyPassportDetailsEpic_1.saveCompanyPassportDetailsEpic, initEmailConnectOAuthEpic_1.initEmailConnectOAuthEpic, saveConnectorCredentialsEpic_1.saveConnectorCredentialsEpic, saveCreditAgentMacroEpic_1.saveCreditAgentMacroEpic, saveReconciliationDetailEpic_1.saveReconciliationDetailsEpic, saveReconciliationReviewEpic_1.saveReconciliationReviewEpic, saveExternalConnectionEpic_1.saveExternalConnectionEpic, saveMagicLinkBankAccountEpic_1.saveMagicLinkBankAccountEpic, saveNewAddressEpic_1.saveNewAddressEpic, saveNotificationSettingsEpic_1.saveNotificationSettingsEpic, saveOAuthConnectionEpic_1.saveOAuthConnectionEpic, saveOnboardingCustomerCompletedStatusEpic_1.saveOnboardingCustomerCompletedStatusEpic, saveOnboardingCustomerNotesEpic_1.saveOnboardingCustomerNotesEpic, saveOnboardingCustomerViewUpdatesEpic_1.saveOnboardingCustomerViewUpdatesEpic, saveRealTimeApprovalEpic_1.saveRealTimeApprovalEpic, saveReasonForAuditRuleEpic_1.saveReasonForAuditRuleEpic, saveRemiDetailEpic_1.saveRemiDetailEpic, saveRemiSetupApproverViewUpdatesEpic_1.saveRemiSetupApproverViewUpdatesEpic, saveScheduleAccruedDetailsEpic_1.saveScheduleAccruedDetailsEpic, saveScheduleDetailsEpic_1.saveScheduleDetailsEpic, saveSubscriptionNotesUpdatesEpic_1.saveSubscriptionNotesUpdatesEpic, saveSubscriptionUpdatesEpic_1.saveSubscriptionUpdatesEpic, saveTaskDetailEpic_1.saveTaskDetailEpic, saveTransactionDetailEpic_1.saveTransactionDetailEpic, saveTransactionVendorEpic_1.saveTransactionVendorEpic, saveVendorDetailsViewEpic_1.saveVendorDetailsViewEpic, saveVendorEpic_1.saveVendorEpic, saveVendorFirstReviewViewEpic_1.saveVendorFirstReviewViewEpic, saveVendorsTabVendorEpic_1.saveVendorsTabVendorEpic, scheduleTenantCreditScoreCronEpic_1.scheduleTenantCreditScoreCronEpic, sendCompanyMonthEndReportEpic_1.sendCompanyMonthEndReportEpic, sendOnboardingCustomerViewInviteEpic_1.sendOnboardingCustomerViewInviteEpic, sendOtpEpic_1.sendOtpEpic, sendReferralInviteEpic_1.sendReferralInviteEpic, statementCloseDayEpic_1.statementCloseDayEpic, stopSubmitEpic_1.stopSubmitEpic, stopSubmitQuestionEpic_1.stopSubmitQuestionEpic, submitDraftBillsBulkActionEpic_1.submitDraftBillsBulkActionEpic, submitDraftRemisBulkActionEpic_1.submitDraftRemisBulkActionEpic, submitExpressPayEpic_1.submitExpressPayEpic, submitFeedbackEpic_1.submitFeedbackEpic, submitIntlVerificationEpic_1.submitIntlVerificationEpic, submitQuestionEpic_1.submitQuestionEpic, toggleReportUIOptionForecastModeEpic_1.toggleReportUIOptionForecastModeEpic, transferMoneyEpic_1.transferMoneyEpic, treasuryTransferMoneyEpic_1.treasuryTransferMoneyEpic, triggerAiAccountantJobEpic_1.triggerAiAccountantJobEpic, triggerReviewTabRefetchEpic_1.triggerReviewTabRefetchEpic, unlinkPaymentAccountEpic_1.unlinkPaymentAccountEpic, unlockChargeCardEpic_1.unlockChargeCardEpic, unlockChargeCardsEpic_1.unlockChargeCardsEpic, updateAccruedJESchedulesEpic_1.updateAccruedJESchedulesEpic, updateAddressEpic_1.updateAddressEpic, updateAmountsInScheduleAccruedDetailEpic_1.updateAmountsInScheduleAccruedDetailEpic, updateAmountsInScheduleDetailEpic_1.updateAmountsInScheduleDetailEpic, updateAutoTransferRuleEpic_1.updateAutoTransferRuleEpic, updateBusinessVerificationDetailsEpic_1.updateBusinessVerificationDetailsEpic, updateCardProfileEpic_1.updateCardProfileEpic, updateChargeCardDetailEpic_1.updateChargeCardDetailEpic, updateChargeCardLimitEpic_1.updateChargeCardLimitEpic, updateChargeCardNameEpic_1.updateChargeCardNameEpic, updateChargeCardsLimitEpic_1.updateChargeCardsLimitEpic, updateAccountingClassesEnabledEpic_1.updateAccountingClassesEnabledEpic, dismissCapitalizationOnboardingEpic_1.dismissCapitalizationOnboardingEpic, updateCapitalizationAccountThresholdEpic_1.updateCapitalizationAccountThresholdEpic, updateCompanyDetailsEpic_1.updateCompanyDetailsEpic, updateCompanyOfficerEpic_1.updateCompanyOfficerEpic, updateCompanyPassportLocalStoreDataEpic_1.updateCompanyPassportLocalStoreDataEpic, updateDashboardLayoutEpic_1.updateDashboardLayoutEpic, updateDebitCardPinAttemptEpic_1.updateDebitCardPinAttemptEpic, updateDepositAccountEpic_1.updateDepositAccountEpic, updateReconcileTabLocalDataEpic_1.updateReconcileTabLocalDataEpic, updateFileNameEpic_1.updateFileNameEpic, updateFilesMetadataEpic_1.updateFilesMetadataEpic, updateJESchedulesEpic_1.updateJESchedulesEpic, updateMappedCashAccountEpic_1.updateMappedCashAccountEpic, updateMileageDetailsEpic_1.updateMileageDetailsEpic, updateMyProfileEpic_1.updateMyProfileEpic, updateNetBurnOrIncomeStoryCardSettingsEpic_1.updateNetBurnOrIncomeStoryCardSettingsEpic, updateNotificationViewAllNotificationsStatusEpic_1.updateNotificationViewAllNotificationsStatusEpic, updateNotificationViewNotificationStatusEpic_1.updateNotificationViewNotificationStatusEpic, updateOnboardingCustomerViewCompleteStatusEpic_1.updateOnboardingCustomerViewCompleteStatusEpic, acknowledgeOnboardingAiActivationViewedEpic_1.acknowledgeOnboardingAiActivationViewedEpic, acknowledgeOnboardingAiFinanceTeamEpic_1.acknowledgeOnboardingAiFinanceTeamEpic, fetchAiAgentsActivationStatusEpic_1.fetchAiAgentsActivationStatusEpic, updateOnboardingCustomerViewDashboardLoadedEpic_1.updateOnboardingCustomerViewDashboardLoadedEpic, updateOnboardingCustomerViewEpic_1.updateOnboardingCustomerViewEpic, updateOnboardingCustomerViewLocalStoreDataEpic_1.updateOnboardingCustomerViewLocalStoreDataEpic, updateOnboardingPaymentAccountLoginStatusEpic_1.updateOnboardingPaymentAccountLoginStatusEpic, updateOnboardingPaymentAccountStatusEpic_1.updateOnboardingPaymentAccountStatusEpic, updatePaymentAccountEpic_1.updatePaymentAccountEpic, updatePaymentAccountLoginStatusEpic_1.updatePaymentAccountLoginStatusEpic, updatePaymentAccountStatusEpic_1.updatePaymentAccountStatusEpic, updatePhysicalChargeCardAttemptEpic_1.updatePhysicalChargeCardAttemptEpic, updatePrimaryContactEpic_1.updatePrimaryContactEpic, updatePrimaryFundingAccountEpic_1.updatePrimaryFundingAccountEpic, updateQBOConnectionPoolExternalConnectionEpic_1.updateQBOConnectionPoolExternalConnectionEpic, updateReferViewedEpic_1.updateReferViewedEpic, updateRemiSetupViewLocalStoreDataEpic_1.updateRemiSetupViewLocalStoreDataEpic, updateReportUIOptionCOABalancesRangeEpic_1.updateReportUIOptionCOABalancesRangeEpic, updateReportUIOptionCompareModeEpic_1.updateReportUIOptionIsCompareModeEpic, updateReportUIOptionIsCompareModeOnEpic_1.updateReportUIOptionIsCompareModeOnEpic, updateReportUIOptionThisPeriodEpic_1.updateReportUIOptionThisPeriodEpic, updateReportUIOptionTimeFrameEpic_1.updateReportUIOptionTimeFrameEpic, sectionAccountsViewEpic_1.updateSectionAccountsViewEpic, sectionClassesViewEpic_1.updateSectionClassesViewEpic, sectionProjectViewEpic_1.updateSectionProjectViewEpic, updateSelectedVendorForCreateFlowEpic_1.updateSelectedVendorForCreateFlowEpic, updateSetupViewLocalStoreDataEpic_1.updateSetupViewLocalStoreDataEpic, parseUploadedKycDocumentEpic_1.parseUploadedKycDocumentEpic, parseUploadedKybDocumentEpic_1.parseUploadedKybDocumentEpic, updateTaskFromListViewEpic_1.updateTaskFromListViewEpic, updateTaskGroupNameEpic_1.updateTaskGroupNameEpic, fetchCannedResponsesEpic_1.fetchCannedResponsesEpic, saveCannedResponseEpic_1.saveCannedResponseEpic, deleteCannedResponseEpic_1.deleteCannedResponseEpic, updateTransactionDetailEpic_1.updateTransactionDetailEpic, updateTreasuryPromoIntroClosedByOutsideClickEpic_1.updateTreasuryPromoIntroClosedByOutsideClickEpic, updateTreasuryPromoRemindMeLaterClickedEpic_1.updateTreasuryPromoRemindMeLaterClickedEpic, updateTreasuryVideoViewedEpic_1.updateTreasuryVideoViewedEpic, updateVendorContactEpic_1.updateVendorContactEpic, uploadAccountStatementEpic_1.uploadAccountStatementEpic, parseStatementEpic_1.parseStatementEpic, reparseStatementEpic_1.reparseStatementEpic, updateStatementInfoEpic_1.updateStatementInfoEpic, uploadMissingAttachmentSuccessEpic_1.uploadMissingAttachmentSuccessEpic, uploadMissingReceiptSuccessEpic_1.uploadMissingReceiptSuccessEpic, uploadTransactionReceiptSuccessEpic_1.uploadTransactionReceiptSuccessEpic, vendorFiling1099UploadDetailsSaveEpic_1.vendorFiling1099UploadDetailsSaveEpic, verifyOtpEpic_1.verifyOtpEpic, verifyUserEpic_1.verifyUserEpic, fetchBillAndInitializeLocalStoreEpic_1.waitForBillDetailThenInitializeLocalStoreEpic, fetchNetBurnOrIncomeWithForecastEpic_1.waitForForecastListThenFetchNetBurnOrIncomeWithForecastEpic, fetchOpExWithForecastEpic_1.waitForForecastListThenFetchOpExWithForecastEpic, fetchRevenueWithForecastEpic_1.waitForForecastListThenFetchRevenueWithForecastEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic_1.waitForMerchantRecommendationFetchThenUpdateRecommendationInMerchantEpic, fetchVendorAndUpdateBillLocalDataEpic_1.waitForVendorByIdThenSaveBillUpdatetoLocalStoreEpic, fetchVendorByNameAndParseInvoice_1.waitForVendorByNameThenParsetoLocalStoreEpic, fetchBillDetailEpic_1.waitForVendorByNameThenUpdateBillDetailEpic, fetchAndUpdateVendorRecommendationsEpic_1.waitForVendorRecommendationFetchThenUpdateRecommendationInBillEpic, wiseRedirectEpic_1.wiseRedirectEpic);
627
684
  const rootEpic = (action$, store$, dependencies) => combinedEpics(action$, store$, dependencies).pipe((0, operators_1.map)(rxjs_1.identity), (0, operators_1.catchError)((error, source) => {
628
685
  console.error(error);
629
686
  return source;
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Coupon form select options. Single source of truth (CES-owned) for the value
3
+ * sets that back the coupon's string-union domain fields; surfaced to the form
4
+ * via `getInvoicingCouponFormView` so web-components need not hardcode them.
5
+ */
6
+ export const INVOICING_DISCOUNT_TYPE_OPTIONS = [
7
+ { label: 'Percentage', value: 'percentage' },
8
+ { label: 'Fixed amount', value: 'fixed_amount' },
9
+ { label: 'Offer quantity', value: 'offer_quantity' },
10
+ ];
11
+ export const INVOICING_COUPON_DURATION_TYPE_OPTIONS = [
12
+ { label: 'One time', value: 'one_time' },
13
+ { label: 'Forever', value: 'forever' },
14
+ { label: 'Limited period', value: 'limited_period' },
15
+ ];
16
+ export const INVOICING_COUPON_PERIOD_UNIT_OPTIONS = [
17
+ { label: 'Day', value: 'day' },
18
+ { label: 'Week', value: 'week' },
19
+ { label: 'Month', value: 'month' },
20
+ { label: 'Year', value: 'year' },
21
+ ];
22
+ export const INVOICING_COUPON_APPLY_ON_OPTIONS = [
23
+ { label: 'Invoice amount', value: 'invoice_amount' },
24
+ { label: 'Each specified item', value: 'each_specified_item' },
25
+ { label: 'Specified items total', value: 'specified_items_total' },
26
+ ];
@@ -0,0 +1,42 @@
1
+ import { toAmount } from '../../../commonStateTypes/amount';
2
+ import { defaultCustomerCurrency } from '../../../commonStateTypes/currencyHelper';
3
+ import { date } from '../../../zeniDayJS';
4
+ // ── Payload → State mappers (snake_case wire shape → camelCase domain shape) ──
5
+ export const mapInvoicingCouponPayloadToState = (payload) => {
6
+ const currencyCode = payload.currency_code ?? defaultCustomerCurrency.currencyCode;
7
+ const currencySymbol = payload.currency_symbol ?? defaultCustomerCurrency.currencySymbol;
8
+ return {
9
+ id: payload.id,
10
+ applyOn: payload.apply_on,
11
+ couponCode: payload.coupon_code,
12
+ createdAt: payload.created_at != null ? date(payload.created_at) : undefined,
13
+ currencyCode: payload.currency_code,
14
+ discountAmount: payload.discount_amount != null
15
+ ? toAmount(payload.discount_amount, currencyCode, currencySymbol)
16
+ : undefined,
17
+ discountPercentage: payload.discount_percentage,
18
+ discountQuantity: payload.discount_quantity,
19
+ discountType: payload.discount_type,
20
+ durationType: payload.duration_type,
21
+ invoiceName: payload.invoice_name,
22
+ invoiceNotes: payload.invoice_notes,
23
+ itemConstraints: payload.item_constraints,
24
+ maxRedemptions: payload.max_redemptions,
25
+ name: payload.name,
26
+ period: payload.period,
27
+ periodUnit: payload.period_unit,
28
+ redemptions: payload.redemptions,
29
+ restrictedProducts: payload.restricted_products,
30
+ revRecTreatment: payload.rev_rec_treatment,
31
+ status: payload.status,
32
+ updatedAt: payload.updated_at != null ? date(payload.updated_at) : undefined,
33
+ validFrom: payload.valid_from != null ? date(payload.valid_from) : undefined,
34
+ validTill: payload.valid_till != null ? date(payload.valid_till) : undefined,
35
+ };
36
+ };
37
+ export const mapInvoicingDiscountKPIsPayloadToState = (payload) => ({
38
+ totalActive: payload.total_active,
39
+ totalDiscountedAmount: toAmount(payload.total_discounted_amount, defaultCustomerCurrency.currencyCode, defaultCustomerCurrency.currencySymbol),
40
+ totalExpired: payload.total_expired,
41
+ totalRedemptions: payload.total_redemptions,
42
+ });
@@ -0,0 +1,40 @@
1
+ import { createSlice } from '@reduxjs/toolkit';
2
+ import assignWith from 'lodash/assignWith';
3
+ import { mapInvoicingCouponPayloadToState, } from './couponPayload';
4
+ export const initialState = { couponByID: {} };
5
+ const coupon = createSlice({
6
+ name: 'invoicingCoupon',
7
+ initialState,
8
+ reducers: {
9
+ updateInvoicingCoupons: {
10
+ reducer(draft, action) {
11
+ doUpdateInvoicingCoupons(draft.couponByID, action.payload, action.meta.updateType);
12
+ },
13
+ prepare(payload, updateType = 'replace') {
14
+ return { payload, meta: { updateType } };
15
+ },
16
+ },
17
+ removeInvoicingCoupon(draft, action) {
18
+ delete draft.couponByID[action.payload];
19
+ },
20
+ clearAllInvoicingCoupons(draft) {
21
+ Object.assign(draft, initialState);
22
+ },
23
+ },
24
+ });
25
+ export const { updateInvoicingCoupons, removeInvoicingCoupon, clearAllInvoicingCoupons, } = coupon.actions;
26
+ export default coupon.reducer;
27
+ /**
28
+ * Helper functions.
29
+ */
30
+ function doUpdateInvoicingCoupons(draft, payload, updateType) {
31
+ payload.forEach((couponPayload) => {
32
+ const latestCoupon = mapInvoicingCouponPayloadToState(couponPayload);
33
+ if (latestCoupon.id in draft && updateType === 'merge') {
34
+ assignWith(draft[latestCoupon.id], latestCoupon, (objValue, srcValue) => srcValue == null ? objValue : srcValue);
35
+ }
36
+ else {
37
+ draft[latestCoupon.id] = latestCoupon;
38
+ }
39
+ });
40
+ }
@@ -0,0 +1,4 @@
1
+ export const getInvoicingCouponById = (state, id) => state.invoicingCouponState.couponByID[id];
2
+ export const getInvoicingCouponsByIds = (state, ids) => ids
3
+ .map((id) => state.invoicingCouponState.couponByID[id])
4
+ .filter((coupon) => coupon != null);
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,54 @@
1
+ import { toAmount } from '../../../commonStateTypes/amount';
2
+ import { date } from '../../../zeniDayJS';
3
+ // ── Payload → State mappers (snake_case wire shape → camelCase domain shape) ──
4
+ const DEFAULT_CURRENCY_CODE = 'USD';
5
+ const DEFAULT_CURRENCY_SYMBOL = '$';
6
+ export const mapInvoicingCreditNoteLineItemPayloadToState = (payload, currencyCode, currencySymbol) => ({
7
+ amount: toAmount(payload.amount, currencyCode, currencySymbol),
8
+ description: payload.description,
9
+ quantity: payload.quantity,
10
+ unitAmount: toAmount(payload.unit_amount, currencyCode, currencySymbol),
11
+ entityType: payload.entity_type,
12
+ id: payload.id,
13
+ });
14
+ export const mapInvoicingCreditNoteAllocationPayloadToState = (payload, currencyCode, currencySymbol) => ({
15
+ allocatedAmount: toAmount(payload.allocated_amount, currencyCode, currencySymbol),
16
+ invoiceID: payload.invoice_id,
17
+ allocatedAt: payload.allocated_at != null ? date(payload.allocated_at) : undefined,
18
+ });
19
+ export const mapInvoicingCreditNotePayloadToState = (payload) => {
20
+ const currencyCode = payload.currency_code ?? DEFAULT_CURRENCY_CODE;
21
+ const currencySymbol = DEFAULT_CURRENCY_SYMBOL;
22
+ const toAmt = (value) => toAmount(value, currencyCode, currencySymbol);
23
+ return {
24
+ id: payload.id,
25
+ allocations: payload.allocations?.map((allocation) => mapInvoicingCreditNoteAllocationPayloadToState(allocation, currencyCode, currencySymbol)),
26
+ amountAllocated: payload.amount_allocated != null
27
+ ? toAmt(payload.amount_allocated)
28
+ : undefined,
29
+ amountAvailable: payload.amount_available != null
30
+ ? toAmt(payload.amount_available)
31
+ : undefined,
32
+ amountRefunded: payload.amount_refunded != null
33
+ ? toAmt(payload.amount_refunded)
34
+ : undefined,
35
+ createReasonCode: payload.create_reason_code,
36
+ createdAt: payload.created_at != null ? date(payload.created_at) : undefined,
37
+ creditNoteNumber: payload.credit_note_number,
38
+ currencyCode: payload.currency_code,
39
+ customerID: payload.customer_id,
40
+ customerName: payload.customer_name,
41
+ date: payload.date != null ? date(payload.date) : undefined,
42
+ lineItems: payload.line_items?.map((lineItem) => mapInvoicingCreditNoteLineItemPayloadToState(lineItem, currencyCode, currencySymbol)),
43
+ linkedRefunds: payload.linked_refunds,
44
+ notes: payload.notes,
45
+ priceType: payload.price_type,
46
+ reasonCode: payload.reason_code,
47
+ referenceInvoiceID: payload.reference_invoice_id,
48
+ status: payload.status,
49
+ subTotal: payload.sub_total != null ? toAmt(payload.sub_total) : undefined,
50
+ subscriptionID: payload.subscription_id,
51
+ total: payload.total != null ? toAmt(payload.total) : undefined,
52
+ type: payload.type,
53
+ };
54
+ };
@@ -0,0 +1,42 @@
1
+ import { createSlice } from '@reduxjs/toolkit';
2
+ import assignWith from 'lodash/assignWith';
3
+ import { mapInvoicingCreditNotePayloadToState, } from './creditNotePayload';
4
+ export const initialState = {
5
+ creditNoteByID: {},
6
+ };
7
+ const creditNote = createSlice({
8
+ name: 'invoicingCreditNote',
9
+ initialState,
10
+ reducers: {
11
+ updateInvoicingCreditNotes: {
12
+ reducer(draft, action) {
13
+ doUpdateInvoicingCreditNotes(draft.creditNoteByID, action.payload, action.meta.updateType);
14
+ },
15
+ prepare(payload, updateType = 'replace') {
16
+ return { payload, meta: { updateType } };
17
+ },
18
+ },
19
+ removeInvoicingCreditNote(draft, action) {
20
+ delete draft.creditNoteByID[action.payload];
21
+ },
22
+ clearAllInvoicingCreditNotes(draft) {
23
+ Object.assign(draft, initialState);
24
+ },
25
+ },
26
+ });
27
+ export const { updateInvoicingCreditNotes, removeInvoicingCreditNote, clearAllInvoicingCreditNotes, } = creditNote.actions;
28
+ export default creditNote.reducer;
29
+ /**
30
+ * Helper functions.
31
+ */
32
+ function doUpdateInvoicingCreditNotes(draft, payload, updateType) {
33
+ payload.forEach((creditNotePayload) => {
34
+ const latestCreditNote = mapInvoicingCreditNotePayloadToState(creditNotePayload);
35
+ if (latestCreditNote.id in draft && updateType === 'merge') {
36
+ assignWith(draft[latestCreditNote.id], latestCreditNote, (objValue, srcValue) => (srcValue == null ? objValue : srcValue));
37
+ }
38
+ else {
39
+ draft[latestCreditNote.id] = latestCreditNote;
40
+ }
41
+ });
42
+ }
@@ -0,0 +1,10 @@
1
+ import recordGet from 'lodash/get';
2
+ export function getInvoicingCreditNotesByIds(creditNoteState, ids) {
3
+ const creditNotes = ids
4
+ .map((id) => getInvoicingCreditNoteById(creditNoteState, id))
5
+ .filter((value) => value != null);
6
+ return creditNotes;
7
+ }
8
+ export function getInvoicingCreditNoteById(creditNoteState, id) {
9
+ return recordGet(creditNoteState.creditNoteByID, id);
10
+ }
@@ -0,0 +1,31 @@
1
+ import { toAmount } from '../../../commonStateTypes/amount';
2
+ import { defaultCustomerCurrency } from '../../../commonStateTypes/currencyHelper';
3
+ import { date } from '../../../zeniDayJS';
4
+ // ── Payload → State mappers (snake_case wire shape → camelCase domain shape) ──
5
+ export const mapInvoicingDunningCasePayloadToState = (payload) => {
6
+ const currencyCode = payload.currency_code ?? defaultCustomerCurrency.currencyCode;
7
+ const currencySymbol = payload.currency_symbol ?? defaultCustomerCurrency.currencySymbol;
8
+ return {
9
+ id: payload.id,
10
+ status: payload.status,
11
+ amount: payload.amount != null
12
+ ? toAmount(payload.amount, currencyCode, currencySymbol)
13
+ : undefined,
14
+ attempts: payload.attempts,
15
+ createdAt: payload.created_at != null ? date(payload.created_at) : undefined,
16
+ currencyCode: payload.currency_code,
17
+ customer: payload.customer,
18
+ customerEmail: payload.customer_email,
19
+ customerID: payload.customer_id,
20
+ daysPastDue: payload.days_past_due,
21
+ failureReason: payload.failure_reason,
22
+ initials: payload.initials,
23
+ invoiceID: payload.invoice_id,
24
+ lastAttempt: payload.last_attempt != null ? date(payload.last_attempt) : undefined,
25
+ maxAttempts: payload.max_attempts,
26
+ nextRetry: payload.next_retry != null ? date(payload.next_retry) : undefined,
27
+ pausedReason: payload.paused_reason,
28
+ pausedUntil: payload.paused_until != null ? date(payload.paused_until) : undefined,
29
+ subscriptionID: payload.subscription_id,
30
+ };
31
+ };
@@ -0,0 +1,42 @@
1
+ import { createSlice } from '@reduxjs/toolkit';
2
+ import assignWith from 'lodash/assignWith';
3
+ import { mapInvoicingDunningCasePayloadToState, } from './dunningCasePayload';
4
+ export const initialState = {
5
+ dunningCaseByID: {},
6
+ };
7
+ const dunningCase = createSlice({
8
+ name: 'invoicingDunningCase',
9
+ initialState,
10
+ reducers: {
11
+ updateInvoicingDunningCases: {
12
+ reducer(draft, action) {
13
+ doUpdateInvoicingDunningCases(draft.dunningCaseByID, action.payload, action.meta.updateType);
14
+ },
15
+ prepare(payload, updateType = 'replace') {
16
+ return { payload, meta: { updateType } };
17
+ },
18
+ },
19
+ removeInvoicingDunningCase(draft, action) {
20
+ delete draft.dunningCaseByID[action.payload];
21
+ },
22
+ clearAllInvoicingDunningCases(draft) {
23
+ Object.assign(draft, initialState);
24
+ },
25
+ },
26
+ });
27
+ export const { updateInvoicingDunningCases, removeInvoicingDunningCase, clearAllInvoicingDunningCases, } = dunningCase.actions;
28
+ export default dunningCase.reducer;
29
+ /**
30
+ * Helper functions.
31
+ */
32
+ function doUpdateInvoicingDunningCases(draft, payload, updateType) {
33
+ payload.forEach((dunningCasePayload) => {
34
+ const latestDunningCase = mapInvoicingDunningCasePayloadToState(dunningCasePayload);
35
+ if (latestDunningCase.id in draft && updateType === 'merge') {
36
+ assignWith(draft[latestDunningCase.id], latestDunningCase, (objValue, srcValue) => (srcValue == null ? objValue : srcValue));
37
+ }
38
+ else {
39
+ draft[latestDunningCase.id] = latestDunningCase;
40
+ }
41
+ });
42
+ }
@@ -0,0 +1,10 @@
1
+ import recordGet from 'lodash/get';
2
+ export function getInvoicingDunningCasesByIds(dunningCaseState, ids) {
3
+ const dunningCases = ids
4
+ .map((id) => getInvoicingDunningCaseById(dunningCaseState, id))
5
+ .filter((value) => value != null);
6
+ return dunningCases;
7
+ }
8
+ export function getInvoicingDunningCaseById(dunningCaseState, id) {
9
+ return recordGet(dunningCaseState.dunningCaseByID, id);
10
+ }