@zeniai/client-epic-state 5.1.25 → 5.1.27-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 (352) hide show
  1. package/README.md +1 -0
  2. package/lib/commonStateTypes/viewAndReport/agingReportStateTypes.d.ts +1 -1
  3. package/lib/entity/invoicing/coupon/couponReducer.d.ts +12 -0
  4. package/lib/entity/invoicing/coupon/couponReducer.js +33 -0
  5. package/lib/entity/invoicing/creditNote/creditNoteReducer.d.ts +12 -0
  6. package/lib/entity/invoicing/creditNote/creditNoteReducer.js +35 -0
  7. package/lib/entity/invoicing/customer/customerReducer.d.ts +12 -0
  8. package/lib/entity/invoicing/customer/customerReducer.js +33 -0
  9. package/lib/entity/invoicing/dunningCase/dunningCaseReducer.d.ts +12 -0
  10. package/lib/entity/invoicing/dunningCase/dunningCaseReducer.js +35 -0
  11. package/lib/entity/invoicing/invoice/invoiceReducer.d.ts +10 -0
  12. package/lib/entity/invoicing/invoice/invoiceReducer.js +36 -0
  13. package/lib/entity/invoicing/invoice/invoiceSelector.d.ts +5 -0
  14. package/lib/entity/invoicing/invoice/invoiceSelector.js +9 -0
  15. package/lib/entity/invoicing/invoice/invoiceState.d.ts +5 -0
  16. package/lib/entity/invoicing/invoice/invoiceState.js +2 -0
  17. package/lib/entity/invoicing/invoicingTypes.d.ts +766 -0
  18. package/lib/entity/invoicing/invoicingTypes.js +15 -0
  19. package/lib/entity/invoicing/plan/planReducer.d.ts +12 -0
  20. package/lib/entity/invoicing/plan/planReducer.js +33 -0
  21. package/lib/entity/invoicing/product/productReducer.d.ts +12 -0
  22. package/lib/entity/invoicing/product/productReducer.js +33 -0
  23. package/lib/entity/invoicing/subscription/subscriptionReducer.d.ts +12 -0
  24. package/lib/entity/invoicing/subscription/subscriptionReducer.js +35 -0
  25. package/lib/entity/invoicing/transaction/transactionReducer.d.ts +12 -0
  26. package/lib/entity/invoicing/transaction/transactionReducer.js +35 -0
  27. package/lib/entity/task/taskState.d.ts +1 -1
  28. package/lib/entity/tenant/clearAllEpic.d.ts +39 -2
  29. package/lib/entity/tenant/clearAllEpic.js +82 -8
  30. package/lib/entity/tenant/tenantReducer.js +3 -3
  31. package/lib/entity/transaction/payloadTypes/transactionPayload.d.ts +1 -0
  32. package/lib/entity/transaction/payloadTypes/transactionPayload.js +5 -0
  33. package/lib/entity/transaction/stateTypes/transaction.d.ts +1 -0
  34. package/lib/epic.d.ts +31 -1
  35. package/lib/epic.js +32 -1
  36. package/lib/esm/entity/invoicing/coupon/couponReducer.js +29 -0
  37. package/lib/esm/entity/invoicing/creditNote/creditNoteReducer.js +31 -0
  38. package/lib/esm/entity/invoicing/customer/customerReducer.js +29 -0
  39. package/lib/esm/entity/invoicing/dunningCase/dunningCaseReducer.js +31 -0
  40. package/lib/esm/entity/invoicing/invoice/invoiceReducer.js +32 -0
  41. package/lib/esm/entity/invoicing/invoice/invoiceSelector.js +4 -0
  42. package/lib/esm/entity/invoicing/invoice/invoiceState.js +1 -0
  43. package/lib/esm/entity/invoicing/invoicingTypes.js +14 -0
  44. package/lib/esm/entity/invoicing/plan/planReducer.js +29 -0
  45. package/lib/esm/entity/invoicing/product/productReducer.js +29 -0
  46. package/lib/esm/entity/invoicing/subscription/subscriptionReducer.js +31 -0
  47. package/lib/esm/entity/invoicing/transaction/transactionReducer.js +31 -0
  48. package/lib/esm/entity/tenant/clearAllEpic.js +74 -0
  49. package/lib/esm/entity/tenant/tenantReducer.js +3 -3
  50. package/lib/esm/entity/transaction/payloadTypes/transactionPayload.js +5 -0
  51. package/lib/esm/epic.js +32 -1
  52. package/lib/esm/index.js +78 -0
  53. package/lib/esm/reducer.js +114 -0
  54. package/lib/esm/view/invoicing/analyticsView/analyticsViewEpics.js +42 -0
  55. package/lib/esm/view/invoicing/analyticsView/analyticsViewReducer.js +45 -0
  56. package/lib/esm/view/invoicing/analyticsView/analyticsViewSelector.js +10 -0
  57. package/lib/esm/view/invoicing/approvalAction/approvalActionEpic.js +28 -0
  58. package/lib/esm/view/invoicing/approvalAction/approvalActionReducer.js +36 -0
  59. package/lib/esm/view/invoicing/approvalAction/approvalActionSelector.js +5 -0
  60. package/lib/esm/view/invoicing/approvalsView/approvalsViewEpics.js +37 -0
  61. package/lib/esm/view/invoicing/approvalsView/approvalsViewReducer.js +62 -0
  62. package/lib/esm/view/invoicing/approvalsView/approvalsViewSelector.js +8 -0
  63. package/lib/esm/view/invoicing/auditView/auditViewEpics.js +46 -0
  64. package/lib/esm/view/invoicing/auditView/auditViewReducer.js +56 -0
  65. package/lib/esm/view/invoicing/auditView/auditViewSelector.js +8 -0
  66. package/lib/esm/view/invoicing/catalogView/catalogViewEpics.js +143 -0
  67. package/lib/esm/view/invoicing/catalogView/catalogViewReducer.js +162 -0
  68. package/lib/esm/view/invoicing/catalogView/catalogViewSelector.js +31 -0
  69. package/lib/esm/view/invoicing/catalogWrite/catalogWriteEpic.js +34 -0
  70. package/lib/esm/view/invoicing/catalogWrite/catalogWriteReducer.js +39 -0
  71. package/lib/esm/view/invoicing/catalogWrite/catalogWriteSelector.js +6 -0
  72. package/lib/esm/view/invoicing/couponView/couponViewEpics.js +83 -0
  73. package/lib/esm/view/invoicing/couponView/couponViewReducer.js +105 -0
  74. package/lib/esm/view/invoicing/couponView/couponViewSelector.js +18 -0
  75. package/lib/esm/view/invoicing/couponWrite/couponWriteEpic.js +29 -0
  76. package/lib/esm/view/invoicing/couponWrite/couponWriteReducer.js +36 -0
  77. package/lib/esm/view/invoicing/couponWrite/couponWriteSelector.js +5 -0
  78. package/lib/esm/view/invoicing/createInvoice/createInvoiceEpic.js +23 -0
  79. package/lib/esm/view/invoicing/createInvoice/createInvoiceReducer.js +36 -0
  80. package/lib/esm/view/invoicing/createInvoice/createInvoiceSelector.js +5 -0
  81. package/lib/esm/view/invoicing/creditNoteView/creditNoteViewEpics.js +87 -0
  82. package/lib/esm/view/invoicing/creditNoteView/creditNoteViewReducer.js +105 -0
  83. package/lib/esm/view/invoicing/creditNoteView/creditNoteViewSelector.js +20 -0
  84. package/lib/esm/view/invoicing/customerPaymentMethod/customerPaymentMethodEpic.js +63 -0
  85. package/lib/esm/view/invoicing/customerPaymentMethod/customerPaymentMethodReducer.js +84 -0
  86. package/lib/esm/view/invoicing/customerPaymentMethod/customerPaymentMethodSelector.js +7 -0
  87. package/lib/esm/view/invoicing/customerView/customerViewEpics.js +71 -0
  88. package/lib/esm/view/invoicing/customerView/customerViewReducer.js +90 -0
  89. package/lib/esm/view/invoicing/customerView/customerViewSelector.js +17 -0
  90. package/lib/esm/view/invoicing/customerWrite/customerWriteEpic.js +23 -0
  91. package/lib/esm/view/invoicing/customerWrite/customerWriteReducer.js +36 -0
  92. package/lib/esm/view/invoicing/customerWrite/customerWriteSelector.js +5 -0
  93. package/lib/esm/view/invoicing/dataImportAction/dataImportActionEpic.js +41 -0
  94. package/lib/esm/view/invoicing/dataImportAction/dataImportActionReducer.js +73 -0
  95. package/lib/esm/view/invoicing/dataImportAction/dataImportActionSelector.js +5 -0
  96. package/lib/esm/view/invoicing/dataImportView/dataImportViewEpics.js +41 -0
  97. package/lib/esm/view/invoicing/dataImportView/dataImportViewReducer.js +66 -0
  98. package/lib/esm/view/invoicing/dataImportView/dataImportViewSelector.js +6 -0
  99. package/lib/esm/view/invoicing/dunningAction/dunningActionEpic.js +28 -0
  100. package/lib/esm/view/invoicing/dunningAction/dunningActionReducer.js +36 -0
  101. package/lib/esm/view/invoicing/dunningAction/dunningActionSelector.js +5 -0
  102. package/lib/esm/view/invoicing/dunningCaseView/dunningCaseViewEpics.js +85 -0
  103. package/lib/esm/view/invoicing/dunningCaseView/dunningCaseViewReducer.js +105 -0
  104. package/lib/esm/view/invoicing/dunningCaseView/dunningCaseViewSelector.js +20 -0
  105. package/lib/esm/view/invoicing/invoiceAction/invoiceActionEpic.js +50 -0
  106. package/lib/esm/view/invoicing/invoiceAction/invoiceActionReducer.js +42 -0
  107. package/lib/esm/view/invoicing/invoiceAction/invoiceActionSelector.js +5 -0
  108. package/lib/esm/view/invoicing/invoiceDetail/fetchInvoiceDetailEpic.js +20 -0
  109. package/lib/esm/view/invoicing/invoiceDetail/invoiceDetailReducer.js +34 -0
  110. package/lib/esm/view/invoicing/invoiceDetail/invoiceDetailSelector.js +9 -0
  111. package/lib/esm/view/invoicing/invoiceDetail/invoiceDetailState.js +1 -0
  112. package/lib/esm/view/invoicing/invoiceList/fetchInvoiceCountsEpic.js +32 -0
  113. package/lib/esm/view/invoicing/invoiceList/fetchInvoiceKPIsEpic.js +17 -0
  114. package/lib/esm/view/invoicing/invoiceList/fetchInvoiceListEpic.js +55 -0
  115. package/lib/esm/view/invoicing/invoiceList/invoiceListReducer.js +90 -0
  116. package/lib/esm/view/invoicing/invoiceList/invoiceListSelector.js +11 -0
  117. package/lib/esm/view/invoicing/invoiceList/invoiceListState.js +1 -0
  118. package/lib/esm/view/invoicing/invoicePdf/invoicePdfEpic.js +37 -0
  119. package/lib/esm/view/invoicing/invoicePdf/invoicePdfReducer.js +33 -0
  120. package/lib/esm/view/invoicing/invoicePdf/invoicePdfSelector.js +5 -0
  121. package/lib/esm/view/invoicing/invoicingApiHelper.js +38 -0
  122. package/lib/esm/view/invoicing/paymentAction/paymentActionEpic.js +28 -0
  123. package/lib/esm/view/invoicing/paymentAction/paymentActionReducer.js +36 -0
  124. package/lib/esm/view/invoicing/paymentAction/paymentActionSelector.js +5 -0
  125. package/lib/esm/view/invoicing/recordPayment/recordPaymentEpic.js +23 -0
  126. package/lib/esm/view/invoicing/recordPayment/recordPaymentReducer.js +36 -0
  127. package/lib/esm/view/invoicing/recordPayment/recordPaymentSelector.js +5 -0
  128. package/lib/esm/view/invoicing/reportsView/reportsViewEpics.js +28 -0
  129. package/lib/esm/view/invoicing/reportsView/reportsViewReducer.js +54 -0
  130. package/lib/esm/view/invoicing/reportsView/reportsViewSelector.js +13 -0
  131. package/lib/esm/view/invoicing/settingsView/settingsViewEpics.js +53 -0
  132. package/lib/esm/view/invoicing/settingsView/settingsViewReducer.js +69 -0
  133. package/lib/esm/view/invoicing/settingsView/settingsViewSelector.js +7 -0
  134. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionEpic.js +28 -0
  135. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionReducer.js +36 -0
  136. package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionSelector.js +5 -0
  137. package/lib/esm/view/invoicing/subscriptionView/subscriptionViewEpics.js +85 -0
  138. package/lib/esm/view/invoicing/subscriptionView/subscriptionViewReducer.js +90 -0
  139. package/lib/esm/view/invoicing/subscriptionView/subscriptionViewSelector.js +19 -0
  140. package/lib/esm/view/invoicing/subscriptionWrite/subscriptionWriteEpic.js +25 -0
  141. package/lib/esm/view/invoicing/subscriptionWrite/subscriptionWriteReducer.js +36 -0
  142. package/lib/esm/view/invoicing/subscriptionWrite/subscriptionWriteSelector.js +5 -0
  143. package/lib/esm/view/invoicing/transactionView/transactionViewEpics.js +76 -0
  144. package/lib/esm/view/invoicing/transactionView/transactionViewReducer.js +90 -0
  145. package/lib/esm/view/invoicing/transactionView/transactionViewSelector.js +19 -0
  146. package/lib/esm/view/transactionDetail/epics/saveTransactionDetailEpic.js +3 -1
  147. package/lib/esm/view/transactionDetail/epics/saveTransactionHelper.js +11 -2
  148. package/lib/esm/view/transactionDetail/epics/updateTransactionDetailEpic.js +31 -4
  149. package/lib/esm/view/transactionDetail/transactionDetailLocalDataHelper.js +17 -0
  150. package/lib/index.d.ts +97 -0
  151. package/lib/index.js +365 -1
  152. package/lib/reducer.d.ts +114 -0
  153. package/lib/reducer.js +126 -12
  154. package/lib/view/invoicing/analyticsView/analyticsViewEpics.d.ts +7 -0
  155. package/lib/view/invoicing/analyticsView/analyticsViewEpics.js +46 -0
  156. package/lib/view/invoicing/analyticsView/analyticsViewReducer.d.ts +22 -0
  157. package/lib/view/invoicing/analyticsView/analyticsViewReducer.js +49 -0
  158. package/lib/view/invoicing/analyticsView/analyticsViewSelector.d.ts +10 -0
  159. package/lib/view/invoicing/analyticsView/analyticsViewSelector.js +20 -0
  160. package/lib/view/invoicing/approvalAction/approvalActionEpic.d.ts +8 -0
  161. package/lib/view/invoicing/approvalAction/approvalActionEpic.js +32 -0
  162. package/lib/view/invoicing/approvalAction/approvalActionReducer.d.ts +20 -0
  163. package/lib/view/invoicing/approvalAction/approvalActionReducer.js +40 -0
  164. package/lib/view/invoicing/approvalAction/approvalActionSelector.d.ts +3 -0
  165. package/lib/view/invoicing/approvalAction/approvalActionSelector.js +9 -0
  166. package/lib/view/invoicing/approvalsView/approvalsViewEpics.d.ts +7 -0
  167. package/lib/view/invoicing/approvalsView/approvalsViewEpics.js +41 -0
  168. package/lib/view/invoicing/approvalsView/approvalsViewReducer.d.ts +33 -0
  169. package/lib/view/invoicing/approvalsView/approvalsViewReducer.js +66 -0
  170. package/lib/view/invoicing/approvalsView/approvalsViewSelector.d.ts +9 -0
  171. package/lib/view/invoicing/approvalsView/approvalsViewSelector.js +16 -0
  172. package/lib/view/invoicing/auditView/auditViewEpics.d.ts +7 -0
  173. package/lib/view/invoicing/auditView/auditViewEpics.js +50 -0
  174. package/lib/view/invoicing/auditView/auditViewReducer.d.ts +36 -0
  175. package/lib/view/invoicing/auditView/auditViewReducer.js +60 -0
  176. package/lib/view/invoicing/auditView/auditViewSelector.d.ts +9 -0
  177. package/lib/view/invoicing/auditView/auditViewSelector.js +16 -0
  178. package/lib/view/invoicing/catalogView/catalogViewEpics.d.ts +14 -0
  179. package/lib/view/invoicing/catalogView/catalogViewEpics.js +152 -0
  180. package/lib/view/invoicing/catalogView/catalogViewReducer.d.ts +76 -0
  181. package/lib/view/invoicing/catalogView/catalogViewReducer.js +166 -0
  182. package/lib/view/invoicing/catalogView/catalogViewSelector.d.ts +22 -0
  183. package/lib/view/invoicing/catalogView/catalogViewSelector.js +52 -0
  184. package/lib/view/invoicing/catalogWrite/catalogWriteEpic.d.ts +9 -0
  185. package/lib/view/invoicing/catalogWrite/catalogWriteEpic.js +38 -0
  186. package/lib/view/invoicing/catalogWrite/catalogWriteReducer.d.ts +21 -0
  187. package/lib/view/invoicing/catalogWrite/catalogWriteReducer.js +43 -0
  188. package/lib/view/invoicing/catalogWrite/catalogWriteSelector.d.ts +6 -0
  189. package/lib/view/invoicing/catalogWrite/catalogWriteSelector.js +12 -0
  190. package/lib/view/invoicing/couponView/couponViewEpics.d.ts +11 -0
  191. package/lib/view/invoicing/couponView/couponViewEpics.js +90 -0
  192. package/lib/view/invoicing/couponView/couponViewReducer.d.ts +42 -0
  193. package/lib/view/invoicing/couponView/couponViewReducer.js +109 -0
  194. package/lib/view/invoicing/couponView/couponViewSelector.d.ts +14 -0
  195. package/lib/view/invoicing/couponView/couponViewSelector.js +31 -0
  196. package/lib/view/invoicing/couponWrite/couponWriteEpic.d.ts +8 -0
  197. package/lib/view/invoicing/couponWrite/couponWriteEpic.js +33 -0
  198. package/lib/view/invoicing/couponWrite/couponWriteReducer.d.ts +17 -0
  199. package/lib/view/invoicing/couponWrite/couponWriteReducer.js +40 -0
  200. package/lib/view/invoicing/couponWrite/couponWriteSelector.d.ts +4 -0
  201. package/lib/view/invoicing/couponWrite/couponWriteSelector.js +10 -0
  202. package/lib/view/invoicing/createInvoice/createInvoiceEpic.d.ts +8 -0
  203. package/lib/view/invoicing/createInvoice/createInvoiceEpic.js +27 -0
  204. package/lib/view/invoicing/createInvoice/createInvoiceReducer.d.ts +34 -0
  205. package/lib/view/invoicing/createInvoice/createInvoiceReducer.js +40 -0
  206. package/lib/view/invoicing/createInvoice/createInvoiceSelector.d.ts +4 -0
  207. package/lib/view/invoicing/createInvoice/createInvoiceSelector.js +10 -0
  208. package/lib/view/invoicing/creditNoteView/creditNoteViewEpics.d.ts +11 -0
  209. package/lib/view/invoicing/creditNoteView/creditNoteViewEpics.js +94 -0
  210. package/lib/view/invoicing/creditNoteView/creditNoteViewReducer.d.ts +43 -0
  211. package/lib/view/invoicing/creditNoteView/creditNoteViewReducer.js +109 -0
  212. package/lib/view/invoicing/creditNoteView/creditNoteViewSelector.d.ts +14 -0
  213. package/lib/view/invoicing/creditNoteView/creditNoteViewSelector.js +33 -0
  214. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodEpic.d.ts +11 -0
  215. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodEpic.js +70 -0
  216. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodReducer.d.ts +42 -0
  217. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodReducer.js +88 -0
  218. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodSelector.d.ts +10 -0
  219. package/lib/view/invoicing/customerPaymentMethod/customerPaymentMethodSelector.js +17 -0
  220. package/lib/view/invoicing/customerView/customerViewEpics.d.ts +10 -0
  221. package/lib/view/invoicing/customerView/customerViewEpics.js +77 -0
  222. package/lib/view/invoicing/customerView/customerViewReducer.d.ts +41 -0
  223. package/lib/view/invoicing/customerView/customerViewReducer.js +94 -0
  224. package/lib/view/invoicing/customerView/customerViewSelector.d.ts +13 -0
  225. package/lib/view/invoicing/customerView/customerViewSelector.js +29 -0
  226. package/lib/view/invoicing/customerWrite/customerWriteEpic.d.ts +8 -0
  227. package/lib/view/invoicing/customerWrite/customerWriteEpic.js +27 -0
  228. package/lib/view/invoicing/customerWrite/customerWriteReducer.d.ts +17 -0
  229. package/lib/view/invoicing/customerWrite/customerWriteReducer.js +40 -0
  230. package/lib/view/invoicing/customerWrite/customerWriteSelector.d.ts +4 -0
  231. package/lib/view/invoicing/customerWrite/customerWriteSelector.js +10 -0
  232. package/lib/view/invoicing/dataImportAction/dataImportActionEpic.d.ts +7 -0
  233. package/lib/view/invoicing/dataImportAction/dataImportActionEpic.js +45 -0
  234. package/lib/view/invoicing/dataImportAction/dataImportActionReducer.d.ts +23 -0
  235. package/lib/view/invoicing/dataImportAction/dataImportActionReducer.js +77 -0
  236. package/lib/view/invoicing/dataImportAction/dataImportActionSelector.d.ts +4 -0
  237. package/lib/view/invoicing/dataImportAction/dataImportActionSelector.js +9 -0
  238. package/lib/view/invoicing/dataImportView/dataImportViewEpics.d.ts +9 -0
  239. package/lib/view/invoicing/dataImportView/dataImportViewEpics.js +47 -0
  240. package/lib/view/invoicing/dataImportView/dataImportViewReducer.d.ts +15 -0
  241. package/lib/view/invoicing/dataImportView/dataImportViewReducer.js +70 -0
  242. package/lib/view/invoicing/dataImportView/dataImportViewSelector.d.ts +9 -0
  243. package/lib/view/invoicing/dataImportView/dataImportViewSelector.js +15 -0
  244. package/lib/view/invoicing/dunningAction/dunningActionEpic.d.ts +8 -0
  245. package/lib/view/invoicing/dunningAction/dunningActionEpic.js +32 -0
  246. package/lib/view/invoicing/dunningAction/dunningActionReducer.d.ts +21 -0
  247. package/lib/view/invoicing/dunningAction/dunningActionReducer.js +40 -0
  248. package/lib/view/invoicing/dunningAction/dunningActionSelector.d.ts +3 -0
  249. package/lib/view/invoicing/dunningAction/dunningActionSelector.js +9 -0
  250. package/lib/view/invoicing/dunningCaseView/dunningCaseViewEpics.d.ts +11 -0
  251. package/lib/view/invoicing/dunningCaseView/dunningCaseViewEpics.js +92 -0
  252. package/lib/view/invoicing/dunningCaseView/dunningCaseViewReducer.d.ts +42 -0
  253. package/lib/view/invoicing/dunningCaseView/dunningCaseViewReducer.js +109 -0
  254. package/lib/view/invoicing/dunningCaseView/dunningCaseViewSelector.d.ts +14 -0
  255. package/lib/view/invoicing/dunningCaseView/dunningCaseViewSelector.js +33 -0
  256. package/lib/view/invoicing/invoiceAction/invoiceActionEpic.d.ts +9 -0
  257. package/lib/view/invoicing/invoiceAction/invoiceActionEpic.js +55 -0
  258. package/lib/view/invoicing/invoiceAction/invoiceActionReducer.d.ts +26 -0
  259. package/lib/view/invoicing/invoiceAction/invoiceActionReducer.js +46 -0
  260. package/lib/view/invoicing/invoiceAction/invoiceActionSelector.d.ts +3 -0
  261. package/lib/view/invoicing/invoiceAction/invoiceActionSelector.js +9 -0
  262. package/lib/view/invoicing/invoiceDetail/fetchInvoiceDetailEpic.d.ts +8 -0
  263. package/lib/view/invoicing/invoiceDetail/fetchInvoiceDetailEpic.js +24 -0
  264. package/lib/view/invoicing/invoiceDetail/invoiceDetailReducer.d.ts +11 -0
  265. package/lib/view/invoicing/invoiceDetail/invoiceDetailReducer.js +38 -0
  266. package/lib/view/invoicing/invoiceDetail/invoiceDetailSelector.d.ts +5 -0
  267. package/lib/view/invoicing/invoiceDetail/invoiceDetailSelector.js +14 -0
  268. package/lib/view/invoicing/invoiceDetail/invoiceDetailState.d.ts +4 -0
  269. package/lib/view/invoicing/invoiceDetail/invoiceDetailState.js +2 -0
  270. package/lib/view/invoicing/invoiceList/fetchInvoiceCountsEpic.d.ts +7 -0
  271. package/lib/view/invoicing/invoiceList/fetchInvoiceCountsEpic.js +36 -0
  272. package/lib/view/invoicing/invoiceList/fetchInvoiceKPIsEpic.d.ts +7 -0
  273. package/lib/view/invoicing/invoiceList/fetchInvoiceKPIsEpic.js +21 -0
  274. package/lib/view/invoicing/invoiceList/fetchInvoiceListEpic.d.ts +8 -0
  275. package/lib/view/invoicing/invoiceList/fetchInvoiceListEpic.js +59 -0
  276. package/lib/view/invoicing/invoiceList/invoiceListReducer.d.ts +22 -0
  277. package/lib/view/invoicing/invoiceList/invoiceListReducer.js +94 -0
  278. package/lib/view/invoicing/invoiceList/invoiceListSelector.d.ts +11 -0
  279. package/lib/view/invoicing/invoiceList/invoiceListSelector.js +21 -0
  280. package/lib/view/invoicing/invoiceList/invoiceListState.d.ts +25 -0
  281. package/lib/view/invoicing/invoiceList/invoiceListState.js +2 -0
  282. package/lib/view/invoicing/invoicePdf/invoicePdfEpic.d.ts +7 -0
  283. package/lib/view/invoicing/invoicePdf/invoicePdfEpic.js +41 -0
  284. package/lib/view/invoicing/invoicePdf/invoicePdfReducer.d.ts +20 -0
  285. package/lib/view/invoicing/invoicePdf/invoicePdfReducer.js +37 -0
  286. package/lib/view/invoicing/invoicePdf/invoicePdfSelector.d.ts +3 -0
  287. package/lib/view/invoicing/invoicePdf/invoicePdfSelector.js +9 -0
  288. package/lib/view/invoicing/invoicingApiHelper.d.ts +22 -0
  289. package/lib/view/invoicing/invoicingApiHelper.js +44 -0
  290. package/lib/view/invoicing/paymentAction/paymentActionEpic.d.ts +8 -0
  291. package/lib/view/invoicing/paymentAction/paymentActionEpic.js +32 -0
  292. package/lib/view/invoicing/paymentAction/paymentActionReducer.d.ts +21 -0
  293. package/lib/view/invoicing/paymentAction/paymentActionReducer.js +40 -0
  294. package/lib/view/invoicing/paymentAction/paymentActionSelector.d.ts +3 -0
  295. package/lib/view/invoicing/paymentAction/paymentActionSelector.js +9 -0
  296. package/lib/view/invoicing/recordPayment/recordPaymentEpic.d.ts +8 -0
  297. package/lib/view/invoicing/recordPayment/recordPaymentEpic.js +27 -0
  298. package/lib/view/invoicing/recordPayment/recordPaymentReducer.d.ts +32 -0
  299. package/lib/view/invoicing/recordPayment/recordPaymentReducer.js +40 -0
  300. package/lib/view/invoicing/recordPayment/recordPaymentSelector.d.ts +4 -0
  301. package/lib/view/invoicing/recordPayment/recordPaymentSelector.js +10 -0
  302. package/lib/view/invoicing/reportsView/reportsViewEpics.d.ts +7 -0
  303. package/lib/view/invoicing/reportsView/reportsViewEpics.js +32 -0
  304. package/lib/view/invoicing/reportsView/reportsViewReducer.d.ts +20 -0
  305. package/lib/view/invoicing/reportsView/reportsViewReducer.js +58 -0
  306. package/lib/view/invoicing/reportsView/reportsViewSelector.d.ts +12 -0
  307. package/lib/view/invoicing/reportsView/reportsViewSelector.js +24 -0
  308. package/lib/view/invoicing/settingsView/settingsViewEpics.d.ts +10 -0
  309. package/lib/view/invoicing/settingsView/settingsViewEpics.js +60 -0
  310. package/lib/view/invoicing/settingsView/settingsViewReducer.d.ts +12 -0
  311. package/lib/view/invoicing/settingsView/settingsViewReducer.js +73 -0
  312. package/lib/view/invoicing/settingsView/settingsViewSelector.d.ts +7 -0
  313. package/lib/view/invoicing/settingsView/settingsViewSelector.js +14 -0
  314. package/lib/view/invoicing/subscriptionAction/subscriptionActionEpic.d.ts +8 -0
  315. package/lib/view/invoicing/subscriptionAction/subscriptionActionEpic.js +32 -0
  316. package/lib/view/invoicing/subscriptionAction/subscriptionActionReducer.d.ts +21 -0
  317. package/lib/view/invoicing/subscriptionAction/subscriptionActionReducer.js +40 -0
  318. package/lib/view/invoicing/subscriptionAction/subscriptionActionSelector.d.ts +3 -0
  319. package/lib/view/invoicing/subscriptionAction/subscriptionActionSelector.js +9 -0
  320. package/lib/view/invoicing/subscriptionView/subscriptionViewEpics.d.ts +10 -0
  321. package/lib/view/invoicing/subscriptionView/subscriptionViewEpics.js +91 -0
  322. package/lib/view/invoicing/subscriptionView/subscriptionViewReducer.d.ts +44 -0
  323. package/lib/view/invoicing/subscriptionView/subscriptionViewReducer.js +94 -0
  324. package/lib/view/invoicing/subscriptionView/subscriptionViewSelector.d.ts +13 -0
  325. package/lib/view/invoicing/subscriptionView/subscriptionViewSelector.js +31 -0
  326. package/lib/view/invoicing/subscriptionWrite/subscriptionWriteEpic.d.ts +8 -0
  327. package/lib/view/invoicing/subscriptionWrite/subscriptionWriteEpic.js +29 -0
  328. package/lib/view/invoicing/subscriptionWrite/subscriptionWriteReducer.d.ts +17 -0
  329. package/lib/view/invoicing/subscriptionWrite/subscriptionWriteReducer.js +40 -0
  330. package/lib/view/invoicing/subscriptionWrite/subscriptionWriteSelector.d.ts +4 -0
  331. package/lib/view/invoicing/subscriptionWrite/subscriptionWriteSelector.js +10 -0
  332. package/lib/view/invoicing/transactionView/transactionViewEpics.d.ts +10 -0
  333. package/lib/view/invoicing/transactionView/transactionViewEpics.js +82 -0
  334. package/lib/view/invoicing/transactionView/transactionViewReducer.d.ts +43 -0
  335. package/lib/view/invoicing/transactionView/transactionViewReducer.js +94 -0
  336. package/lib/view/invoicing/transactionView/transactionViewSelector.d.ts +13 -0
  337. package/lib/view/invoicing/transactionView/transactionViewSelector.js +31 -0
  338. package/lib/view/reviewCompanyView/reviewCompanyViewState.d.ts +1 -1
  339. package/lib/view/spendManagement/billPay/billList/billListReducer.d.ts +1 -1
  340. package/lib/view/spendManagement/billPay/billList/billListState.d.ts +1 -1
  341. package/lib/view/spendManagement/reimbursement/remiListView/remiListReducer.d.ts +1 -1
  342. package/lib/view/spendManagement/reimbursement/remiListView/remiListState.d.ts +3 -3
  343. package/lib/view/transactionDetail/epics/saveTransactionDetailEpic.js +3 -1
  344. package/lib/view/transactionDetail/epics/saveTransactionHelper.d.ts +1 -1
  345. package/lib/view/transactionDetail/epics/saveTransactionHelper.js +11 -2
  346. package/lib/view/transactionDetail/epics/updateTransactionDetailEpic.d.ts +8 -0
  347. package/lib/view/transactionDetail/epics/updateTransactionDetailEpic.js +33 -5
  348. package/lib/view/transactionDetail/transactionDetailLocalDataHelper.js +17 -0
  349. package/lib/view/transactionDetail/transactionDetailState.d.ts +1 -0
  350. package/lib/view/transactionDetail/transactionDetailTypes.d.ts +1 -0
  351. package/lib/zeniAPI.d.ts +1 -0
  352. package/package.json +2 -1
@@ -0,0 +1,29 @@
1
+ import { createSlice } from '@reduxjs/toolkit';
2
+ export const initialState = { productByID: {} };
3
+ const product = createSlice({
4
+ name: 'invoicingProduct',
5
+ initialState,
6
+ reducers: {
7
+ updateInvoicingProducts: {
8
+ reducer(draft, action) {
9
+ if (action.payload.updateType === 'replace') {
10
+ draft.productByID = {};
11
+ }
12
+ action.payload.items.forEach((item) => {
13
+ draft.productByID[item.id] = item;
14
+ });
15
+ },
16
+ prepare(items, updateType) {
17
+ return { payload: { items, updateType } };
18
+ },
19
+ },
20
+ removeInvoicingProduct(draft, action) {
21
+ delete draft.productByID[action.payload];
22
+ },
23
+ clearAllInvoicingProducts(draft) {
24
+ draft.productByID = {};
25
+ },
26
+ },
27
+ });
28
+ export const { updateInvoicingProducts, removeInvoicingProduct, clearAllInvoicingProducts, } = product.actions;
29
+ export default product.reducer;
@@ -0,0 +1,31 @@
1
+ import { createSlice } from '@reduxjs/toolkit';
2
+ export const initialState = {
3
+ subscriptionByID: {},
4
+ };
5
+ const subscription = createSlice({
6
+ name: 'invoicingSubscription',
7
+ initialState,
8
+ reducers: {
9
+ updateInvoicingSubscriptions: {
10
+ reducer(draft, action) {
11
+ if (action.payload.updateType === 'replace') {
12
+ draft.subscriptionByID = {};
13
+ }
14
+ action.payload.items.forEach((item) => {
15
+ draft.subscriptionByID[item.id] = item;
16
+ });
17
+ },
18
+ prepare(items, updateType) {
19
+ return { payload: { items, updateType } };
20
+ },
21
+ },
22
+ removeInvoicingSubscription(draft, action) {
23
+ delete draft.subscriptionByID[action.payload];
24
+ },
25
+ clearAllInvoicingSubscriptions(draft) {
26
+ draft.subscriptionByID = {};
27
+ },
28
+ },
29
+ });
30
+ export const { updateInvoicingSubscriptions, removeInvoicingSubscription, clearAllInvoicingSubscriptions, } = subscription.actions;
31
+ export default subscription.reducer;
@@ -0,0 +1,31 @@
1
+ import { createSlice } from '@reduxjs/toolkit';
2
+ export const initialState = {
3
+ transactionByID: {},
4
+ };
5
+ const transaction = createSlice({
6
+ name: 'invoicingTransaction',
7
+ initialState,
8
+ reducers: {
9
+ updateInvoicingTransactions: {
10
+ reducer(draft, action) {
11
+ if (action.payload.updateType === 'replace') {
12
+ draft.transactionByID = {};
13
+ }
14
+ action.payload.items.forEach((item) => {
15
+ draft.transactionByID[item.id] = item;
16
+ });
17
+ },
18
+ prepare(items, updateType) {
19
+ return { payload: { items, updateType } };
20
+ },
21
+ },
22
+ removeInvoicingTransaction(draft, action) {
23
+ delete draft.transactionByID[action.payload];
24
+ },
25
+ clearAllInvoicingTransactions(draft) {
26
+ draft.transactionByID = {};
27
+ },
28
+ },
29
+ });
30
+ export const { updateInvoicingTransactions, removeInvoicingTransaction, clearAllInvoicingTransactions, } = transaction.actions;
31
+ export default transaction.reducer;
@@ -57,6 +57,34 @@ import { clearForecastList } from '../../view/forecastList/forecastListReducer';
57
57
  import { clearGlobalMerchantAutoCompleteResults } from '../../view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewReducer';
58
58
  import { clearGlobalMerchantView } from '../../view/globalMerchantView/globalMerchantViewReducer';
59
59
  import { clearInsightsCard } from '../../view/insightsCard/insightsCardReducer';
60
+ import { clearInvoicingAnalytics } from '../../view/invoicing/analyticsView/analyticsViewReducer';
61
+ import { clearAllInvoicingApprovalActions } from '../../view/invoicing/approvalAction/approvalActionReducer';
62
+ import { clearInvoicingApprovalsView } from '../../view/invoicing/approvalsView/approvalsViewReducer';
63
+ import { clearInvoicingAuditView } from '../../view/invoicing/auditView/auditViewReducer';
64
+ import { clearInvoicingCatalogView } from '../../view/invoicing/catalogView/catalogViewReducer';
65
+ import { resetInvoicingCatalogWrite } from '../../view/invoicing/catalogWrite/catalogWriteReducer';
66
+ import { resetInvoicingCouponWrite } from '../../view/invoicing/couponWrite/couponWriteReducer';
67
+ import { clearInvoicingCouponView } from '../../view/invoicing/couponView/couponViewReducer';
68
+ import { resetCreateInvoice } from '../../view/invoicing/createInvoice/createInvoiceReducer';
69
+ import { clearInvoicingCreditNoteView } from '../../view/invoicing/creditNoteView/creditNoteViewReducer';
70
+ import { clearInvoicingCustomerView } from '../../view/invoicing/customerView/customerViewReducer';
71
+ import { resetInvoicingCustomerWrite } from '../../view/invoicing/customerWrite/customerWriteReducer';
72
+ import { clearAllInvoicingDataImportActions } from '../../view/invoicing/dataImportAction/dataImportActionReducer';
73
+ import { clearInvoicingDataImportView } from '../../view/invoicing/dataImportView/dataImportViewReducer';
74
+ import { clearAllInvoicingDunningActions } from '../../view/invoicing/dunningAction/dunningActionReducer';
75
+ import { clearInvoicingDunningCaseView } from '../../view/invoicing/dunningCaseView/dunningCaseViewReducer';
76
+ import { clearAllInvoicingInvoiceActions } from '../../view/invoicing/invoiceAction/invoiceActionReducer';
77
+ import { clearInvoiceDetail } from '../../view/invoicing/invoiceDetail/invoiceDetailReducer';
78
+ import { clearInvoiceList } from '../../view/invoicing/invoiceList/invoiceListReducer';
79
+ import { clearAllInvoicingInvoicePdf } from '../../view/invoicing/invoicePdf/invoicePdfReducer';
80
+ import { clearAllInvoicingPaymentActions } from '../../view/invoicing/paymentAction/paymentActionReducer';
81
+ import { resetRecordPayment } from '../../view/invoicing/recordPayment/recordPaymentReducer';
82
+ import { clearInvoicingReportsView } from '../../view/invoicing/reportsView/reportsViewReducer';
83
+ import { resetSaveInvoicingSettings } from '../../view/invoicing/settingsView/settingsViewReducer';
84
+ import { clearInvoicingSettings } from '../../view/invoicing/settingsView/settingsViewReducer';
85
+ import { clearAllInvoicingSubscriptionActions } from '../../view/invoicing/subscriptionAction/subscriptionActionReducer';
86
+ import { clearInvoicingSubscriptionView } from '../../view/invoicing/subscriptionView/subscriptionViewReducer';
87
+ import { clearInvoicingTransactionView } from '../../view/invoicing/transactionView/transactionViewReducer';
60
88
  import { clearAllMonthEndCloseChecksView } from '../../view/monthEndCloseChecksView/monthEndCloseChecksViewReducer';
61
89
  import { clearNetBurnOrIncome } from '../../view/netBurnOrIncome/netBurnOrIncomeReducer';
62
90
  import { clearNetBurnOrIncomeClassesView } from '../../view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewReducer';
@@ -192,6 +220,15 @@ import { clearAllForecasts } from '../forecast/forecastReducer';
192
220
  import { clearAllEntities } from '../genericEntity/entityReducer';
193
221
  import { clearAllGlobalMerchants } from '../globalMerchant/globalMerchantReducer';
194
222
  import { clearAllInsights } from '../insights/insightReducer';
223
+ import { clearAllInvoicingCoupons } from '../invoicing/coupon/couponReducer';
224
+ import { clearAllInvoicingCreditNotes } from '../invoicing/creditNote/creditNoteReducer';
225
+ import { clearAllInvoicingCustomers } from '../invoicing/customer/customerReducer';
226
+ import { clearAllInvoicingDunningCases } from '../invoicing/dunningCase/dunningCaseReducer';
227
+ import { clearAllInvoices } from '../invoicing/invoice/invoiceReducer';
228
+ import { clearAllInvoicingPlans } from '../invoicing/plan/planReducer';
229
+ import { clearAllInvoicingProducts } from '../invoicing/product/productReducer';
230
+ import { clearAllInvoicingSubscriptions } from '../invoicing/subscription/subscriptionReducer';
231
+ import { clearAllInvoicingTransactions } from '../invoicing/transaction/transactionReducer';
195
232
  import { clearAllAccruedJESchedules, clearAllJEScheduleTransactions, } from '../jeSchedules/jeSchedulesReducer';
196
233
  import { clearAllMerchants } from '../merchant/merchantReducer';
197
234
  import { clearAllOnboardingCustomersInfo } from '../onboardingCustomer/onboardingCustomerReducer';
@@ -301,6 +338,34 @@ export const clearAllEpic = (actions$) => actions$.pipe(filter(clearAll.match),
301
338
  clearInsightsCard(),
302
339
  clearInternationalWire(),
303
340
  clearInternationalVerificationView(),
341
+ clearInvoiceDetail(),
342
+ clearInvoiceList(),
343
+ resetCreateInvoice(),
344
+ resetRecordPayment(),
345
+ resetInvoicingCatalogWrite(),
346
+ resetInvoicingCouponWrite(),
347
+ resetInvoicingCustomerWrite(),
348
+ clearAllInvoicingDataImportActions(),
349
+ clearInvoicingDataImportView(),
350
+ clearAllInvoicingInvoiceActions(),
351
+ clearAllInvoicingInvoicePdf(),
352
+ clearAllInvoicingSubscriptionActions(),
353
+ clearAllInvoicingDunningActions(),
354
+ clearAllInvoicingPaymentActions(),
355
+ resetSaveInvoicingSettings(),
356
+ clearInvoicingAnalytics(),
357
+ clearAllInvoicingApprovalActions(),
358
+ clearInvoicingApprovalsView(),
359
+ clearInvoicingAuditView(),
360
+ clearInvoicingCatalogView(),
361
+ clearInvoicingCouponView(),
362
+ clearInvoicingCreditNoteView(),
363
+ clearInvoicingCustomerView(),
364
+ clearInvoicingDunningCaseView(),
365
+ clearInvoicingReportsView(),
366
+ clearInvoicingSettings(),
367
+ clearInvoicingSubscriptionView(),
368
+ clearInvoicingTransactionView(),
304
369
  clearIssueChargeCard(),
305
370
  clearMerchantList(),
306
371
  clearNetBurnOrIncome(),
@@ -406,6 +471,15 @@ export const clearAllEpic = (actions$) => actions$.pipe(filter(clearAll.match),
406
471
  clearAllForecasts(),
407
472
  clearAllGlobalMerchants(),
408
473
  clearAllInsights(),
474
+ clearAllInvoices(),
475
+ clearAllInvoicingCoupons(),
476
+ clearAllInvoicingCreditNotes(),
477
+ clearAllInvoicingCustomers(),
478
+ clearAllInvoicingDunningCases(),
479
+ clearAllInvoicingPlans(),
480
+ clearAllInvoicingProducts(),
481
+ clearAllInvoicingSubscriptions(),
482
+ clearAllInvoicingTransactions(),
409
483
  clearAllJEScheduleTransactions(),
410
484
  clearAllMerchants(),
411
485
  clearAllMonthEndCloseChecks(),
@@ -990,9 +990,9 @@ function mapTenantPayloadToTenant(payload, userTenantPayload) {
990
990
  ? date(payload.user_last_check_in_time_into_tenant)
991
991
  : date('1970-01-01'), // if the user_last_check_in_time_into_tenant is null consider the last check-in time as start of unix epoch.
992
992
  netBurnSettings: {
993
- accountingMethod: toAccountingMethod(payload.accounting_method_for_avg_net_burn),
994
- numberOfMonthsForAverage: toNumberOfMonthForAverage(payload.no_completed_months_used_for_avg_net_burn),
995
- timeSpanIdForAverage: toTimeSpanIdForAverage(payload.time_span_id_for_avg_net_burn),
993
+ accountingMethod: toAccountingMethod(payload.accounting_method_for_avg_net_burn ?? 'cash'),
994
+ numberOfMonthsForAverage: toNumberOfMonthForAverage(payload.no_completed_months_used_for_avg_net_burn ?? 1),
995
+ timeSpanIdForAverage: toTimeSpanIdForAverage(payload.time_span_id_for_avg_net_burn ?? 'last_month'),
996
996
  },
997
997
  chargebeeId: payload.chargebee_customer_id,
998
998
  hubSpotId: payload.hubspot_id ?? undefined,
@@ -101,6 +101,11 @@ export const toTransaction = (payload) => {
101
101
  payload.accounting_project_id !== ''
102
102
  ? { projectId: payload.accounting_project_id }
103
103
  : {}),
104
+ ...(payload.accounting_project_integration_id != null
105
+ ? {
106
+ accountingProviderProjectId: payload.accounting_project_integration_id,
107
+ }
108
+ : {}),
104
109
  ...(payload.accounting_project_name != null &&
105
110
  payload.accounting_project_name !== ''
106
111
  ? { projectName: payload.accounting_project_name }
package/lib/esm/epic.js CHANGED
@@ -215,6 +215,37 @@ import { createGlobalMerchantEpic, } from './view/globalMerchantView/epics/creat
215
215
  import { fetchGlobalMerchantRecommendationEpic, } from './view/globalMerchantView/epics/fetchGlobalMerchantRecommendationEpic';
216
216
  import { fetchGlobalMerchantAutoCompleteViewEpic, } from './view/globalMerchantView/globalMerchantAutoCompleteView/fetchGlobalMerchantAutoCompleteViewEpic';
217
217
  import { fetchInsightsCardEpic, } from './view/insightsCard/insightsCardEpic';
218
+ import { fetchInvoicingAnalyticsEpic, } from './view/invoicing/analyticsView/analyticsViewEpics';
219
+ import { runInvoicingApprovalActionEpic, } from './view/invoicing/approvalAction/approvalActionEpic';
220
+ import { fetchInvoicingApprovalsEpic, } from './view/invoicing/approvalsView/approvalsViewEpics';
221
+ import { fetchInvoicingAuditLogEpic, } from './view/invoicing/auditView/auditViewEpics';
222
+ import { fetchInvoicingCatalogCountsEpic, fetchInvoicingCatalogKPIsEpic, fetchInvoicingCatalogPlanDetailEpic, fetchInvoicingCatalogPlanListEpic, fetchInvoicingCatalogProductDetailEpic, fetchInvoicingCatalogProductListEpic, } from './view/invoicing/catalogView/catalogViewEpics';
223
+ import { saveInvoicingCatalogItemEpic, } from './view/invoicing/catalogWrite/catalogWriteEpic';
224
+ import { saveInvoicingCouponEpic, } from './view/invoicing/couponWrite/couponWriteEpic';
225
+ import { fetchInvoicingCouponCountsEpic, fetchInvoicingCouponDetailEpic, fetchInvoicingCouponKPIsEpic, fetchInvoicingCouponListEpic, } from './view/invoicing/couponView/couponViewEpics';
226
+ import { createInvoiceEpic, } from './view/invoicing/createInvoice/createInvoiceEpic';
227
+ import { fetchInvoicingCreditNoteCountsEpic, fetchInvoicingCreditNoteDetailEpic, fetchInvoicingCreditNoteKPIsEpic, fetchInvoicingCreditNoteListEpic, } from './view/invoicing/creditNoteView/creditNoteViewEpics';
228
+ import { createInvoicingSetupIntentEpic, fetchInvoicingPlaidLinkTokenEpic, saveInvoicingPaymentMethodEpic, sendInvoicingPaymentLinkEpic, } from './view/invoicing/customerPaymentMethod/customerPaymentMethodEpic';
229
+ import { fetchInvoicingCustomerCountsEpic, fetchInvoicingCustomerDetailEpic, fetchInvoicingCustomerListEpic, } from './view/invoicing/customerView/customerViewEpics';
230
+ import { saveInvoicingCustomerEpic, } from './view/invoicing/customerWrite/customerWriteEpic';
231
+ import { invoicingDataImportActionEpic } from './view/invoicing/dataImportAction/dataImportActionEpic';
232
+ import { fetchInvoicingDataImportStatusEpic, fetchInvoicingMigrationSessionEpic, fetchInvoicingMigrationSessionsEpic, } from './view/invoicing/dataImportView/dataImportViewEpics';
233
+ import { runInvoicingDunningActionEpic, } from './view/invoicing/dunningAction/dunningActionEpic';
234
+ import { fetchInvoicingDunningCaseCountsEpic, fetchInvoicingDunningCaseDetailEpic, fetchInvoicingDunningCaseKPIsEpic, fetchInvoicingDunningCaseListEpic, } from './view/invoicing/dunningCaseView/dunningCaseViewEpics';
235
+ import { runInvoicingInvoiceActionEpic, updateInvoicingInvoiceEpic, } from './view/invoicing/invoiceAction/invoiceActionEpic';
236
+ import { fetchInvoiceDetailEpic, } from './view/invoicing/invoiceDetail/fetchInvoiceDetailEpic';
237
+ import { fetchInvoiceCountsEpic, } from './view/invoicing/invoiceList/fetchInvoiceCountsEpic';
238
+ import { fetchInvoiceKPIsEpic, } from './view/invoicing/invoiceList/fetchInvoiceKPIsEpic';
239
+ import { fetchInvoiceListEpic, } from './view/invoicing/invoiceList/fetchInvoiceListEpic';
240
+ import { downloadInvoicePdfEpic, } from './view/invoicing/invoicePdf/invoicePdfEpic';
241
+ import { runInvoicingPaymentActionEpic, } from './view/invoicing/paymentAction/paymentActionEpic';
242
+ import { recordPaymentEpic, } from './view/invoicing/recordPayment/recordPaymentEpic';
243
+ import { fetchInvoicingReportEpic, } from './view/invoicing/reportsView/reportsViewEpics';
244
+ import { connectInvoicingStripeEpic, disconnectInvoicingStripeEpic, fetchInvoicingSettingsEpic, saveInvoicingSettingsEpic, } from './view/invoicing/settingsView/settingsViewEpics';
245
+ import { runInvoicingSubscriptionActionEpic, } from './view/invoicing/subscriptionAction/subscriptionActionEpic';
246
+ import { fetchInvoicingSubscriptionCountsEpic, fetchInvoicingSubscriptionDetailEpic, fetchInvoicingSubscriptionListEpic, } from './view/invoicing/subscriptionView/subscriptionViewEpics';
247
+ import { saveInvoicingSubscriptionEpic, } from './view/invoicing/subscriptionWrite/subscriptionWriteEpic';
248
+ import { fetchInvoicingTransactionDetailEpic, fetchInvoicingTransactionKPIsEpic, fetchInvoicingTransactionListEpic, } from './view/invoicing/transactionView/transactionViewEpics';
218
249
  import { fetchMonthClosePerformanceTrendEpic, } from './view/monthEndCloseChecksView/epics/fetchMonthClosePerformanceTrendEpic';
219
250
  import { fetchMonthEndCloseChecksEpic, } from './view/monthEndCloseChecksView/epics/fetchMonthEndCloseChecksEpic';
220
251
  import { fetchNetBurnOrIncomeWithForecastEpic, waitForForecastListThenFetchNetBurnOrIncomeWithForecastEpic, } from './view/netBurnOrIncome/fetchNetBurnOrIncomeWithForecastEpic';
@@ -617,7 +648,7 @@ import { fetchZeniAccStatementPageEpic, } from './view/zeniAccStatementList/fetc
617
648
  import { fetchZeniAccountsPromoCardEpic, } from './view/zeniAccountsPromoCard/zeniAccountsPromoCardEpic';
618
649
  import { approveOAuthConsentEpic, } from './view/zeniOAuthView/epics/approveOAuthConsentEpic';
619
650
  // Note: Please maintain strict alphabetical order
620
- const combinedEpics = combineEpics(acceptBillPayTermsEpic, acceptBillPayUpdatedTermsEpic, acceptChargeCardTermsEpic, acceptEmployeeRemiTermsEpic, acceptMasterTOSEpic, acceptRemiTermsEpic, acceptTreasuryTermsEpic, acceptZeniAccountTermsEpic, addCardPaymentSourceEpic, approveOAuthConsentEpic, approveOrRejectBillEpic, approveOrRejectBillsBulkActionEpic, approveOrRejectRemiEpic, approveOrRejectRemisBulkActionEpic, approveVendorGlobalReviewEpic, archiveTaskEpic, backgroundRefetchReviewTabEpic, bulkUpdateTaskListEpic, cancelAiAccountantOnboardingEpic, cancelAndDeleteBillEpic, cancelAndDeleteRemiEpic, cancelOrDeleteBillsBulkActionEpic, cancelOrDeleteRemisBulkActionEpic, cancelScheduleAccruedJournalEntryEpic, changeZeniPersonRolesEpic, checkDepositEpic, clearAllEpic, closeChargeCardEpic, closeChargeCardsEpic, companyManagementSavePendingUpdatesEpic, companyManagementSaveUpdatesEpic, confirmCardSetupIntentEpic, convertAmountToHomeCurrencyEpic, createAddressEpic, createAutoTransferRuleEpic, createBankAccountEpic, createCardSetupIntentEpic, createCheckingAccountEpic, createCompanyAddressEpic, createCompanyOfficersEpic, createCompanyUserAddressEpic, createGlobalMerchantEpic, createInternationalBankAccountEpic, createNewSchedulesAccruedEpic, createNewSchedulesEpic, createNewTaskGroupEpic, createPaymentInstrumentEpic, createSessionAndSubmitEpic, createSessionEpic, createTagEpic, createTaskFromTaskGroupTemplateEpic, createTransferEntryEpic, createUserBankAccountEpic, deleteAccountStatementEpic, deleteAutoTransferRuleEpic, excludeAccountFromReconciliationEpic, includeAccountInReconciliationEpic, deleteBankAccountEpic, deleteBillEpic, deleteChatSessionEpic, deleteConnectionEpic, deleteBillPayApprovalRuleEpic, reorderBillPayApprovalRulesEpic, deleteFileEpic, deleteFileListEpic, deleteInternationalBankAccountEpic, deletePaymentInstrumentEpic, deletePersonEpic, deleteRemiApprovalRuleEpic, reorderRemiApprovalRulesEpic, deleteRemiEpic, deleteScheduleAccruedDetailEpic, deleteScheduleDetailEpic, deleteTagEpic, deleteTaskEpic, snoozeTaskEpic, unsnoozeTaskEpic, deleteTaskGroupEpic, deleteTransactionAttachmentEpic, deleteUserBankAccountEpic, doMagicLinkSignInEpic, doSignInEpic, doSignOutEpic, sendEmailMagicLinkToUserEpic, sessionHeartbeatEpic, verifyDeviceWithTwoFAEpic, downloadAccountingProviderAttachmentEpic, dragNDropTasksEpic, enableChargeCardAutoPayEpic, enableSetupEpic, establishOnboardingPlaidConnectionEpic, establishPlaidConnectionEpic, expressInterestChargeCardEpic, fetchAccountListEpic, fetchAccountListForAccountTypesEpic, fetchAccountSettingsListForAccountTypesEpic, fetchAccruedScheduleListEpic, fetchActiveTenantEpic, fetchAddressEpic, fetchAiAccountantCustomersEpic, fetchAiAccountantJobsEpic, fetchAllCockpitViewsEpic, fetchAllExpenseAutomationTabsEpic, fetchAllPeopleRequiredViewsEpic, fetchAllTagsEpic, fetchAllTaskGroupsEpic, fetchAllTenantsEpic, fetchAndUpdateVendorRecommendationsEpic, fetchAggregatedReportEpic, fetchApAgingDetailEpic, fetchApAgingEpic, fetchArAgingDetailEpic, fetchArAgingEpic, fetchAuditReportGroupViewEpic, fetchAuditRuleGroupViewEpic, fetchAutoTransferReviewDetailEpic, fetchAutoTransferRuleHistoryEpic, fetchAutoTransferRulesEpic, fetchBalanceSheetEpic, fetchBalanceSheetForTimeframeEpic, fetchBankAccountsListEpic, fetchBankConnectionsViewEpic, fetchBankCountryNameByIbanEpic, fetchBankNameByRoutingEpic, fetchBankNameBySwiftEpic, fetchBillAndInitializeLocalStoreEpic, fetchBillDetailEpic, fetchBillingAccountsListEpic, fetchBillListEpic, fetchBillListPerTabEpic, fetchBillPayApproversDetailsEpic, fetchBillPayApproversListEpic, fetchBillPayCardEpic, fetchBillPayConfigEpic, fetchBillPaySetupApproverViewEpic, fetchBillPaySetupViewEpic, fetchCardBalanceEpic, archiveCardPolicyEpic, createCardPolicyTemplatesEpic, extractPolicyDocumentEpic, policyRecommendationFromUploadEpic, policyDocumentExtractionToRecommendationBridgeEpic, fetchCardPolicyDetailEpic, fetchCardPolicyListEpic, fetchCardPolicyMccCategoriesEpic, fetchCardPolicyVendorOptionsEpic, fetchCardProfilesEpic, updateCardPolicyEpic, fetchCashbackDetailEpic, fetchCashBalanceEpic, fetchCashFlowEpic, fetchCashFlowForTimeframeEpic, fetchCashInCashOutEpic, fetchCashManagementSettingsEpic, saveAutoSweepSettingsEpic, fetchCashManagementBannerEpic, fetchCashManagementOverviewPageEpic, fetchCashManagementRecommendationEpic, fetchRecentTransferEpic, fetchCashPositionEpic, fetchChargeCardConfigEpic, fetchChargeCardDetailEpic, fetchChargeCardDetailPageEpic, fetchChargeCardListEpic, fetchChargeCardListPageEpic, fetchChargeCardPaymentPageEpic, fetchChargeCardRepaymentDetailEpic, fetchChargeCardPaymentHistoryEpic, fetchChargeCardSetupViewEpic, fetchChargeCardStatementListEpic, fetchChargeCardTransactionAttachmentsEpic, fetchChargeCardTransactionListEpic, fetchChargeCardTransactionStatisticsEpic, fetchChargeCardsRecurringExpensesEpic, fetchChatHistoryEpic, fetchChatSessionsForUserEpic, fetchClassListEpic, fetchCollaborationAuthTokenEpic, fetchCockpitContextEpic, fetchCompanyBillingAddressEpic, fetchCompanyConfigEpic, fetchCompanyHealthMetricConfigEpic, fetchCompanyHealthMetricViewEpic, fetchCompanyManagementViewEpic, fetchCompanyMetaDataEpic, fetchCompanyMonthEndReportHistoricDataEpic, fetchCompanyMonthEndReportHistoricDatesEpic, fetchCompanyMonthEndReportTemplatesEpic, fetchCompanyMonthEndReportViewEpic, fetchCompanyOnboardingViewEpic, fetchCompanyPassportViewEpic, fetchCompanyPortfolioViewEpic, fetchCompanyTaskManagerViewEpic, fetchTaskManagerMetricsEpic, updateCompanyTaskManagerViewFiltersEpic, fetchCreditAccountEpic, fetchCreditAccountRepaymentEpic, fetchCreditAgentMacroEpic, fetchCurrencyConversionValueEpic, fetchDashboardEpic, fetchDashboardLayoutEpic, fetchDebitCardSummaryEpic, fetchDepositAccountDetailEpic, fetchDepositAccountEpic, fetchDepositAccountHistoryEpic, fetchDepositAccountLimitEpic, fetchDepositAccountListEpic, fetchDepositAccountListForCardsEpic, fetchDepositAccountTransactionListEpic, fetchDownloadSchedulesEpic, fetchDuplicateBillPayReviewEpic, fetchDuplicateReimbursementEpic, fetchEditBillDetailPageEpic, fetchEditRemiDetailPageEpic, fetchEligibleActionsForBillEpic, fetchEntityAutoCompleteEpic, fetchEntityHistoryEpic, fetchEntityRecommendationsByTransactionIdEpic, fetchEntityRecommendationsForLineUpdateEpic, fetchExcludedResourcesEpic, fetchExpenseAutomationFluxAnalysisViewEpic, fetchExpenseAutomationInitializeTransactionCategorizationViewLocalDataEpic, fetchExpenseAutomationJeSchedulesEpic, fetchExpenseAutomationJESchedulesPageEpic, fetchExpenseAutomationMarkTransactionAsNotMiscategorizedEpic, fetchExpenseAutomationMissingReceiptsEpic, bulkUploadReceiptsEpic, confirmBulkUploadMatchEpic, fetchBulkUploadBatchDetailsEpic, fetchMultipleBatchDetailsEpic, fetchMoreBatchDetailsEpic, fetchBulkUploadBatchesEpic, fetchCompletedTransactionsEpic, refetchCompletedTransactionsOnBulkUploadSortEpic, refreshBatchDetailsForBatchIdEpic, bulkUploadAutomatchingTimeoutEpic, bulkUploadMatchResultToastEpic, syncTabsAfterAutomatchEpic, pollBulkUploadBatchStatusEpic, pusherBatchStatusCompletionEpic, restoreBulkUploadAutomatchingOnMountEpic, searchTransactionsForManualMatchEpic, fetchExpenseAutomationReconciliationsViewEpic, fetchExpenseAutomationSaveTransactionCategorizationEpic, fetchExpenseAutomationTransactionCategorizationEpic, fetchExpenseAutomationTransactionCategorizationViewEpic, fetchExpenseAutomationUpdateTransactionCategorizationEpic, fetchExpenseTrendEpic, fetchExpressPayInitialDetailsEpic, fetchExternalConnectionsEpic, fetchFileEpic, fetchFileListEpic, fetchFinanceStatementEpic, fetchForecastListEpic, initiateReportsClassViewRefetchingEpic, reportsResyncEpic, fetchGlobalMerchantAutoCompleteViewEpic, fetchGlobalMerchantRecommendationEpic, fetchIncomeTrendEpic, fetchInsightsCardEpic, fetchInternationalWireDynamicFormEpic, fetchIntlVerificationFormEpic, fetchIssueCardPageEpic, seedAiCardCreationFormDraftEpic, seedAiCardPolicyFormDraftEpic, applyExtractedPolicyToDraftEpic, fetchMagicLinkBankNameByRoutingEpic, fetchMagicLinkBankNameBySwiftEpic, fetchMagicLinkBillEpic, fetchMagicLinkTenantEpic, fetchManagementViewEpic, fetchMerchantListEpic, fetchMonthClosePerformanceTrendEpic, fetchMonthEndCloseChecksEpic, fetchMyProfileEpic, fetchMyProfileViewEpic, fetchNetBurnOrIncomeClassesViewEpic, fetchNetBurnOrIncomeEpic, fetchNetBurnOrIncomeForTimeframeClassesViewEpic, fetchNetBurnOrIncomeForTimeframeEpic, fetchNetBurnOrIncomeStoryCardEpic, fetchNetBurnOrIncomeWithForecastEpic, fetchNotificationSettingsEpic, fetchNotificationSettingsViewEpic, fetchNotificationUnreadCountEpic, fetchNotificationViewEpic, fetchRegisteredInterestsEpic, fetchOnboardingCompletedCompaniesEpic, fetchOnboardingCustomerSetupViewEpic, fetchOnboardingCustomerViewEpic, fetchOnboardingViewEpic, fetchOpExByVendorEpic, fetchOpExByVendorReportForTimeframeEpic, fetchOpExByVendorReportSummaryEpic, refreshOpExByVendorReportEpic, fetchOpExClassesViewEpic, fetchOpExEpic, fetchOpExForTimeframeClassesViewEpic, fetchOpExReportForTimeframeEpic, fetchOpExWithForecastEpic, fetchOwnerListEpic, fetchParentSubsidiaryManagementViewEpic, fetchPaymentAccountBalanceEpic, fetchPaymentAccountListEpic, fetchPaymentSourcesEpic, fetchPeopleEpic, fetchPeoplePageEpic, fetchPortfolioViewEpic, fetchPreviousBillsEpic, fetchProfitAndLossClassesViewEpic, fetchProfitAndLossEpic, fetchProfitAndLossForTimeframeClassesViewEpic, fetchProfitAndLossForTimeframeProjectViewEpic, fetchProfitAndLossForTimeframeEpic, fetchProfitAndLossProjectViewEpic, fetchProjectListEpic, fetchQBOConnectionPoolEpic, fetchRecommendationByEntityIdEpic, fetchRecommendationByEntityNameEpic, fetchRecommendationForAccountSettingsEpic, fetchRecommendationForAccountTypeEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic, fetchRecommendedTransactionRowIndexEpic, fetchReferralsEpic, fetchReimbursementCardEpic, fetchReimbursementConfigEpic, fetchRemiAndInitializeLocalStoreEpic, fetchRemiApproversDetailsEpic, fetchRemiApproversListEpic, fetchRemiDetailEpic, fetchRemiListEpic, fetchRemiListPerTabEpic, fetchRemiSetupApproverViewEpic, fetchRemiSetupViewEpic, fetchRevenueClassesViewEpic, fetchRevenueEpic, fetchRevenueForTimeframeClassesViewEpic, fetchRevenueForTimeframeEpic, fetchRevenueWithForecastEpic, fetchReviewCompanyViewEpic, fetchReviewTransferDetailEpic, fetchRewardsPlanEpic, fetchScheduleAccruedDetailsEpic, fetchScheduleAccruedDetailsPageEpic, fetchScheduleDetailsEpic, fetchScheduleDetailsPageEpic, fetchScheduleListEpic, fetchSchedulesAccountEpic, fetchSubscriptionAddOnsEpic, fetchSubscriptionCouponsEpic, fetchSubscriptionCreateEstimateEpic, fetchSubscriptionDetailsEpic, fetchSubscriptionListEpic, fetchSubscriptionPlansEpic, fetchSubscriptionSummaryForTenantEpic, fetchSubscriptionUpdateEstimateEpic, fetchSubscriptionViewEpic, fetchSuggestedQuestionsEpic, fetchSkillsEpic, fetchTaskDetailEpic, fetchTaskDetailPageEpic, fetchTaskGroupTemplatesEpic, fetchTaskHistoryEpic, fetchTaskListEpic, fetchTaskListPageEpic, fetchTasksCardEpic, fetchTopExEpic, fetchTransactionActivityLogEpic, fetchTransactionDetailEpic, fetchTransactionListByAccountEpic, fetchTransactionListByClassEpic, fetchTransactionListByProjectEpic, fetchTransactionListByEntityEpic, fetchTransactionsForEntityEpic, fetchTransactionsListByCategoryTypeEpic, fetchTransferAccountsEpic, fetchTreasuryDetailEpic, fetchTreasuryFundsEpic, fetchTreasuryHistoryEpic, fetchTreasurySetupViewEpic, fetchTreasuryStatementListEpic, fetchTreasuryTaxLetterListEpic, fetchTreasuryTransactionListEpic, updatePortfolioAllocationEpic, fetchPortfolioAllocationEpic, fetchTrendForEntityEpic, fetchUserDetailEpic, fetchUserFinancialAccountEpic, fetchUserListByTypeEpic, fetchUserRoleConfigEpic, fetchVendor1099TypeListEpic, fetchVendorAndUpdateBillLocalDataEpic, fetchVendorByNameAndParseInvoiceEpic, fetchVendorDetailsEpic, fetchVendorEpic, fetchVendorFirstReviewAttachmentsEpic, fetchVendorFirstReviewViewEpic, fetchVendorGlobalReviewViewEpic, fetchVendorsFiling1099AllEpic, fetchVendorsFiling1099DownloadEpic, fetchVendorsFiling1099ListEpic, fetchVendorsListEpic, fetchVendorsTabVendorDetailPageViewEpic, fetchVendorsTabVendorDetailsEpic, fetchVendorsTabVendorEpic, fetchVendorTabViewEpic, fetchVendorTypeListEpic, fetchZeniAccountListEpic, fetchZeniAccountsConfigEpic, fetchZeniAccountSetupViewEpic, fetchZeniAccountsPromoCardEpic, fetchZeniAccStatementListEpic, fetchZeniAccStatementPageEpic, fetchZeniUsersEpic, getOnboardingEmailGroupEpic, getOnboardingPlaidLinkTokenEpic, getPaymentAccountsEpic, getPlaidLinkTokenEpic, ignoreExpenseAutomationJEScheduleEpic, improveUsingZeniGPTEpic, initialiseExpenseAutomationReconciliationLocalDataForSelectedAccountIdEpic, initializeAccountMappingViewEpic, initializeAccountSettingsViewEpic, initializeBillPaySetupApproverViewUpdateDataEpic, initializeBillToLocalStoreEpic, initializeCardUserOnboardingLocalDataEpic, initializeCompanyHealthMetricViewLocalDataEpic, initializeDynamicFormEpic, initializeEditPersonEpic, initializeExpenseAutomationJeScheduleLocalDataEpic, initializeInternationalWireLocalDataEpic, initializeIntlVerificationFormEpic, initializeMyProfileLocalDataEpic, initializeOnboardingCustomerViewUpdateDataEpic, initializeRemiSetupApproverViewUpdateDataEpic, initializeRemiToLocalStoreEpic, initializeScheduleAccruedDetailLocalDataEpic, initializeScheduleDetailLocalDataEpic, initializeSubscriptionLocalDataEpic, initializeTaskToLocalStoreEpic, initializeTransactionDetailLocalDataEpic, initializeVendorAddressEpic, initiateChargeCardRepaymentEpic, invitePeopleEpic, inviteZeniPeopleEpic, issueChargeCardEpic, lockChargeCardEpic, lockChargeCardsEpic, markAsCompleteScheduleDetailEpic, markTransactionAsNotMiscategorizedEpic, notifyMeForFeatureEpic, parallelFetchAccountTransactionListEpic, parallelFetchClassTransactionListEpic, parallelFetchProjectTransactionListEpic, parallelFetchEntityTransactionListEpic, parallelFetchTransactionListByCategoryTypeEpic, parseInvoiceToBillEpic, parseReceiptsToRemiEpic, peopleSaveUpdatesEpic, pushToastNotificationEpic, refreshExpenseAutomationCurrentTabEpic, refreshIntegrationsDataEpic, rejectVendorGlobalReviewEpic, resendCardInviteEpic, resendInviteEpic, resendOtpEpic, resendVerifyDeviceOTPEpic, resendReferralInviteEpic, resetTransactionVendorLocalDataEpic, resetVendorDetailLocalDataEpic, resetVendorsTabVendorDetailLocalDataEpic, retryBankAccountConnectionEpic, retryBankAccountConnectionForOnboardingEpic, retryExpenseAutomationJEScheduleEpic, retryOrRefundBillEpic, validateBillsBulkActionEpic, reviewDraftRemisBulkActionEpic, reviewExpenseAutomationFluxAnalysisViewEpic, revokeCardInviteEpic, revokeChargeCardsInviteEpic, saveAccountMappingViewEpic, saveAccountSettingsViewEpic, saveAPIKeyConnectionEpic, saveBillDetailEpic, saveBillPaySetupApproverViewUpdatesEpic, saveCardOnboardingUserDetailsEpic, saveCompanyBillingAddressEpic, saveCompanyHealthMetricByIdEpic, saveCompanyMonthEndReportEpic, saveCompanyPassportDetailsEpic, initEmailConnectOAuthEpic, saveConnectorCredentialsEpic, saveCreditAgentMacroEpic, saveExpenseAutomationReconciliationDetailsEpic, saveExpenseAutomationReconciliationReviewEpic, saveExternalConnectionEpic, saveMagicLinkBankAccountEpic, saveNewAddressEpic, saveNotificationSettingsEpic, saveOAuthConnectionEpic, saveOnboardingCustomerCompletedStatusEpic, saveOnboardingCustomerNotesEpic, saveOnboardingCustomerViewUpdatesEpic, saveRealTimeApprovalEpic, saveReasonForAuditRuleEpic, saveRemiDetailEpic, saveRemiSetupApproverViewUpdatesEpic, saveScheduleAccruedDetailsEpic, saveScheduleDetailsEpic, saveSubscriptionNotesUpdatesEpic, saveSubscriptionUpdatesEpic, saveTaskDetailEpic, saveTransactionDetailEpic, saveTransactionVendorEpic, saveVendorDetailsViewEpic, saveVendorEpic, saveVendorFirstReviewViewEpic, saveVendorsTabVendorEpic, scheduleTenantCreditScoreCronEpic, sendCompanyMonthEndReportEpic, sendOnboardingCustomerViewInviteEpic, sendOtpEpic, sendReferralInviteEpic, statementCloseDayEpic, stopSubmitEpic, stopSubmitQuestionEpic, submitDraftBillsBulkActionEpic, submitDraftRemisBulkActionEpic, submitExpressPayEpic, submitIntlVerificationEpic, submitQuestionEpic, toggleReportUIOptionForecastModeEpic, transferMoneyEpic, treasuryTransferMoneyEpic, triggerAiAccountantJobEpic, triggerReviewTabRefetchEpic, unlinkPaymentAccountEpic, unlockChargeCardEpic, unlockChargeCardsEpic, updateAccruedJESchedulesEpic, updateAddressEpic, updateAmountsInScheduleAccruedDetailEpic, updateAmountsInScheduleDetailEpic, updateAutoTransferRuleEpic, updateBusinessVerificationDetailsEpic, updateCardProfileEpic, updateChargeCardDetailEpic, updateChargeCardLimitEpic, updateChargeCardNameEpic, updateChargeCardsLimitEpic, updateAccountingClassesEnabledEpic, dismissCapitalizationOnboardingEpic, updateCapitalizationAccountThresholdEpic, updateCompanyDetailsEpic, updateCompanyOfficerEpic, updateCompanyPassportLocalStoreDataEpic, updateDashboardLayoutEpic, updateDebitCardPinAttemptEpic, updateDepositAccountEpic, updateExpenseAutomationReconciliationBalanceLocalDataEpic, updateFileNameEpic, updateFilesMetadataEpic, updateJESchedulesEpic, updateMappedCashAccountEpic, updateMileageDetailsEpic, updateMyProfileEpic, updateNetBurnOrIncomeStoryCardSettingsEpic, updateNotificationViewAllNotificationsStatusEpic, updateNotificationViewNotificationStatusEpic, updateOnboardingCustomerViewCompleteStatusEpic, acknowledgeOnboardingAiActivationViewedEpic, acknowledgeOnboardingAiFinanceTeamEpic, fetchAiAgentsActivationStatusEpic, updateOnboardingCustomerViewDashboardLoadedEpic, updateOnboardingCustomerViewEpic, updateOnboardingCustomerViewLocalStoreDataEpic, updateOnboardingPaymentAccountLoginStatusEpic, updateOnboardingPaymentAccountStatusEpic, updatePaymentAccountEpic, updatePaymentAccountLoginStatusEpic, updatePaymentAccountStatusEpic, updatePhysicalChargeCardAttemptEpic, updatePrimaryContactEpic, updatePrimaryFundingAccountEpic, updateQBOConnectionPoolExternalConnectionEpic, updateReferViewedEpic, updateRemiSetupViewLocalStoreDataEpic, updateReportUIOptionCOABalancesRangeEpic, updateReportUIOptionIsCompareModeEpic, updateReportUIOptionIsCompareModeOnEpic, updateReportUIOptionThisPeriodEpic, updateReportUIOptionTimeFrameEpic, updateSectionAccountsViewEpic, updateSectionClassesViewEpicV2, updateSectionProjectViewEpic, updateSelectedVendorForCreateFlowEpic, updateSetupViewLocalStoreDataEpic, parseUploadedKycDocumentEpic, parseUploadedKybDocumentEpic, updateTaskFromListViewEpic, updateTaskGroupNameEpic, fetchCannedResponsesEpic, saveCannedResponseEpic, deleteCannedResponseEpic, updateTransactionDetailEpic, updateTreasuryPromoIntroClosedByOutsideClickEpic, updateTreasuryPromoRemindMeLaterClickedEpic, updateTreasuryVideoViewedEpic, updateVendorContactEpic, uploadAccountStatementEpic, uploadMissingAttachmentSuccessEpic, uploadMissingReceiptSuccessEpic, uploadTransactionReceiptSuccessEpic, vendorFiling1099UploadDetailsSaveEpic, verifyOtpEpic, verifyUserEpic, waitForBillDetailThenInitializeLocalStoreEpic, waitForForecastListThenFetchNetBurnOrIncomeWithForecastEpic, waitForForecastListThenFetchOpExWithForecastEpic, waitForForecastListThenFetchRevenueWithForecastEpic, waitForMerchantRecommendationFetchThenUpdateRecommendationInMerchantEpic, waitForVendorByIdThenSaveBillUpdatetoLocalStoreEpic, waitForVendorByNameThenParsetoLocalStoreEpic, waitForVendorByNameThenUpdateBillDetailEpic, waitForVendorRecommendationFetchThenUpdateRecommendationInBillEpic, wiseRedirectEpic);
651
+ const combinedEpics = combineEpics(fetchInvoiceListEpic, fetchInvoiceCountsEpic, fetchInvoiceKPIsEpic, fetchInvoiceDetailEpic, createInvoiceEpic, recordPaymentEpic, fetchInvoicingAnalyticsEpic, fetchInvoicingApprovalsEpic, runInvoicingApprovalActionEpic, fetchInvoicingReportEpic, fetchInvoicingAuditLogEpic, saveInvoicingCatalogItemEpic, saveInvoicingCouponEpic, saveInvoicingCustomerEpic, saveInvoicingSubscriptionEpic, invoicingDataImportActionEpic, fetchInvoicingMigrationSessionsEpic, fetchInvoicingMigrationSessionEpic, fetchInvoicingDataImportStatusEpic, runInvoicingInvoiceActionEpic, updateInvoicingInvoiceEpic, downloadInvoicePdfEpic, runInvoicingSubscriptionActionEpic, runInvoicingDunningActionEpic, runInvoicingPaymentActionEpic, fetchInvoicingCustomerListEpic, fetchInvoicingCustomerCountsEpic, fetchInvoicingCustomerDetailEpic, createInvoicingSetupIntentEpic, fetchInvoicingPlaidLinkTokenEpic, saveInvoicingPaymentMethodEpic, sendInvoicingPaymentLinkEpic, fetchInvoicingSubscriptionListEpic, fetchInvoicingSubscriptionCountsEpic, fetchInvoicingSubscriptionDetailEpic, fetchInvoicingTransactionListEpic, fetchInvoicingTransactionKPIsEpic, fetchInvoicingTransactionDetailEpic, fetchInvoicingCreditNoteListEpic, fetchInvoicingCreditNoteCountsEpic, fetchInvoicingCreditNoteKPIsEpic, fetchInvoicingCreditNoteDetailEpic, fetchInvoicingCouponListEpic, fetchInvoicingCouponCountsEpic, fetchInvoicingCouponKPIsEpic, fetchInvoicingCouponDetailEpic, fetchInvoicingDunningCaseListEpic, fetchInvoicingDunningCaseCountsEpic, fetchInvoicingDunningCaseKPIsEpic, fetchInvoicingDunningCaseDetailEpic, fetchInvoicingCatalogPlanListEpic, fetchInvoicingCatalogProductListEpic, fetchInvoicingCatalogCountsEpic, fetchInvoicingCatalogKPIsEpic, fetchInvoicingCatalogPlanDetailEpic, fetchInvoicingCatalogProductDetailEpic, fetchInvoicingSettingsEpic, saveInvoicingSettingsEpic, connectInvoicingStripeEpic, disconnectInvoicingStripeEpic, acceptBillPayTermsEpic, acceptBillPayUpdatedTermsEpic, acceptChargeCardTermsEpic, acceptEmployeeRemiTermsEpic, acceptMasterTOSEpic, acceptRemiTermsEpic, acceptTreasuryTermsEpic, acceptZeniAccountTermsEpic, addCardPaymentSourceEpic, approveOAuthConsentEpic, approveOrRejectBillEpic, approveOrRejectBillsBulkActionEpic, approveOrRejectRemiEpic, approveOrRejectRemisBulkActionEpic, approveVendorGlobalReviewEpic, archiveTaskEpic, backgroundRefetchReviewTabEpic, bulkUpdateTaskListEpic, cancelAiAccountantOnboardingEpic, cancelAndDeleteBillEpic, cancelAndDeleteRemiEpic, cancelOrDeleteBillsBulkActionEpic, cancelOrDeleteRemisBulkActionEpic, cancelScheduleAccruedJournalEntryEpic, changeZeniPersonRolesEpic, checkDepositEpic, clearAllEpic, closeChargeCardEpic, closeChargeCardsEpic, companyManagementSavePendingUpdatesEpic, companyManagementSaveUpdatesEpic, confirmCardSetupIntentEpic, convertAmountToHomeCurrencyEpic, createAddressEpic, createAutoTransferRuleEpic, createBankAccountEpic, createCardSetupIntentEpic, createCheckingAccountEpic, createCompanyAddressEpic, createCompanyOfficersEpic, createCompanyUserAddressEpic, createGlobalMerchantEpic, createInternationalBankAccountEpic, createNewSchedulesAccruedEpic, createNewSchedulesEpic, createNewTaskGroupEpic, createPaymentInstrumentEpic, createSessionAndSubmitEpic, createSessionEpic, createTagEpic, createTaskFromTaskGroupTemplateEpic, createTransferEntryEpic, createUserBankAccountEpic, deleteAccountStatementEpic, deleteAutoTransferRuleEpic, excludeAccountFromReconciliationEpic, includeAccountInReconciliationEpic, deleteBankAccountEpic, deleteBillEpic, deleteChatSessionEpic, deleteConnectionEpic, deleteBillPayApprovalRuleEpic, reorderBillPayApprovalRulesEpic, deleteFileEpic, deleteFileListEpic, deleteInternationalBankAccountEpic, deletePaymentInstrumentEpic, deletePersonEpic, deleteRemiApprovalRuleEpic, reorderRemiApprovalRulesEpic, deleteRemiEpic, deleteScheduleAccruedDetailEpic, deleteScheduleDetailEpic, deleteTagEpic, deleteTaskEpic, snoozeTaskEpic, unsnoozeTaskEpic, deleteTaskGroupEpic, deleteTransactionAttachmentEpic, deleteUserBankAccountEpic, doMagicLinkSignInEpic, doSignInEpic, doSignOutEpic, sendEmailMagicLinkToUserEpic, sessionHeartbeatEpic, verifyDeviceWithTwoFAEpic, downloadAccountingProviderAttachmentEpic, dragNDropTasksEpic, enableChargeCardAutoPayEpic, enableSetupEpic, establishOnboardingPlaidConnectionEpic, establishPlaidConnectionEpic, expressInterestChargeCardEpic, fetchAccountListEpic, fetchAccountListForAccountTypesEpic, fetchAccountSettingsListForAccountTypesEpic, fetchAccruedScheduleListEpic, fetchActiveTenantEpic, fetchAddressEpic, fetchAiAccountantCustomersEpic, fetchAiAccountantJobsEpic, fetchAllCockpitViewsEpic, fetchAllExpenseAutomationTabsEpic, fetchAllPeopleRequiredViewsEpic, fetchAllTagsEpic, fetchAllTaskGroupsEpic, fetchAllTenantsEpic, fetchAndUpdateVendorRecommendationsEpic, fetchAggregatedReportEpic, fetchApAgingDetailEpic, fetchApAgingEpic, fetchArAgingDetailEpic, fetchArAgingEpic, fetchAuditReportGroupViewEpic, fetchAuditRuleGroupViewEpic, fetchAutoTransferReviewDetailEpic, fetchAutoTransferRuleHistoryEpic, fetchAutoTransferRulesEpic, fetchBalanceSheetEpic, fetchBalanceSheetForTimeframeEpic, fetchBankAccountsListEpic, fetchBankConnectionsViewEpic, fetchBankCountryNameByIbanEpic, fetchBankNameByRoutingEpic, fetchBankNameBySwiftEpic, fetchBillAndInitializeLocalStoreEpic, fetchBillDetailEpic, fetchBillingAccountsListEpic, fetchBillListEpic, fetchBillListPerTabEpic, fetchBillPayApproversDetailsEpic, fetchBillPayApproversListEpic, fetchBillPayCardEpic, fetchBillPayConfigEpic, fetchBillPaySetupApproverViewEpic, fetchBillPaySetupViewEpic, fetchCardBalanceEpic, archiveCardPolicyEpic, createCardPolicyTemplatesEpic, extractPolicyDocumentEpic, policyRecommendationFromUploadEpic, policyDocumentExtractionToRecommendationBridgeEpic, fetchCardPolicyDetailEpic, fetchCardPolicyListEpic, fetchCardPolicyMccCategoriesEpic, fetchCardPolicyVendorOptionsEpic, fetchCardProfilesEpic, updateCardPolicyEpic, fetchCashbackDetailEpic, fetchCashBalanceEpic, fetchCashFlowEpic, fetchCashFlowForTimeframeEpic, fetchCashInCashOutEpic, fetchCashManagementSettingsEpic, saveAutoSweepSettingsEpic, fetchCashManagementBannerEpic, fetchCashManagementOverviewPageEpic, fetchCashManagementRecommendationEpic, fetchRecentTransferEpic, fetchCashPositionEpic, fetchChargeCardConfigEpic, fetchChargeCardDetailEpic, fetchChargeCardDetailPageEpic, fetchChargeCardListEpic, fetchChargeCardListPageEpic, fetchChargeCardPaymentPageEpic, fetchChargeCardRepaymentDetailEpic, fetchChargeCardPaymentHistoryEpic, fetchChargeCardSetupViewEpic, fetchChargeCardStatementListEpic, fetchChargeCardTransactionAttachmentsEpic, fetchChargeCardTransactionListEpic, fetchChargeCardTransactionStatisticsEpic, fetchChargeCardsRecurringExpensesEpic, fetchChatHistoryEpic, fetchChatSessionsForUserEpic, fetchClassListEpic, fetchCollaborationAuthTokenEpic, fetchCockpitContextEpic, fetchCompanyBillingAddressEpic, fetchCompanyConfigEpic, fetchCompanyHealthMetricConfigEpic, fetchCompanyHealthMetricViewEpic, fetchCompanyManagementViewEpic, fetchCompanyMetaDataEpic, fetchCompanyMonthEndReportHistoricDataEpic, fetchCompanyMonthEndReportHistoricDatesEpic, fetchCompanyMonthEndReportTemplatesEpic, fetchCompanyMonthEndReportViewEpic, fetchCompanyOnboardingViewEpic, fetchCompanyPassportViewEpic, fetchCompanyPortfolioViewEpic, fetchCompanyTaskManagerViewEpic, fetchTaskManagerMetricsEpic, updateCompanyTaskManagerViewFiltersEpic, fetchCreditAccountEpic, fetchCreditAccountRepaymentEpic, fetchCreditAgentMacroEpic, fetchCurrencyConversionValueEpic, fetchDashboardEpic, fetchDashboardLayoutEpic, fetchDebitCardSummaryEpic, fetchDepositAccountDetailEpic, fetchDepositAccountEpic, fetchDepositAccountHistoryEpic, fetchDepositAccountLimitEpic, fetchDepositAccountListEpic, fetchDepositAccountListForCardsEpic, fetchDepositAccountTransactionListEpic, fetchDownloadSchedulesEpic, fetchDuplicateBillPayReviewEpic, fetchDuplicateReimbursementEpic, fetchEditBillDetailPageEpic, fetchEditRemiDetailPageEpic, fetchEligibleActionsForBillEpic, fetchEntityAutoCompleteEpic, fetchEntityHistoryEpic, fetchEntityRecommendationsByTransactionIdEpic, fetchEntityRecommendationsForLineUpdateEpic, fetchExcludedResourcesEpic, fetchExpenseAutomationFluxAnalysisViewEpic, fetchExpenseAutomationInitializeTransactionCategorizationViewLocalDataEpic, fetchExpenseAutomationJeSchedulesEpic, fetchExpenseAutomationJESchedulesPageEpic, fetchExpenseAutomationMarkTransactionAsNotMiscategorizedEpic, fetchExpenseAutomationMissingReceiptsEpic, bulkUploadReceiptsEpic, confirmBulkUploadMatchEpic, fetchBulkUploadBatchDetailsEpic, fetchMultipleBatchDetailsEpic, fetchMoreBatchDetailsEpic, fetchBulkUploadBatchesEpic, fetchCompletedTransactionsEpic, refetchCompletedTransactionsOnBulkUploadSortEpic, refreshBatchDetailsForBatchIdEpic, bulkUploadAutomatchingTimeoutEpic, bulkUploadMatchResultToastEpic, syncTabsAfterAutomatchEpic, pollBulkUploadBatchStatusEpic, pusherBatchStatusCompletionEpic, restoreBulkUploadAutomatchingOnMountEpic, searchTransactionsForManualMatchEpic, fetchExpenseAutomationReconciliationsViewEpic, fetchExpenseAutomationSaveTransactionCategorizationEpic, fetchExpenseAutomationTransactionCategorizationEpic, fetchExpenseAutomationTransactionCategorizationViewEpic, fetchExpenseAutomationUpdateTransactionCategorizationEpic, fetchExpenseTrendEpic, fetchExpressPayInitialDetailsEpic, fetchExternalConnectionsEpic, fetchFileEpic, fetchFileListEpic, fetchFinanceStatementEpic, fetchForecastListEpic, initiateReportsClassViewRefetchingEpic, reportsResyncEpic, fetchGlobalMerchantAutoCompleteViewEpic, fetchGlobalMerchantRecommendationEpic, fetchIncomeTrendEpic, fetchInsightsCardEpic, fetchInternationalWireDynamicFormEpic, fetchIntlVerificationFormEpic, fetchIssueCardPageEpic, seedAiCardCreationFormDraftEpic, seedAiCardPolicyFormDraftEpic, applyExtractedPolicyToDraftEpic, fetchMagicLinkBankNameByRoutingEpic, fetchMagicLinkBankNameBySwiftEpic, fetchMagicLinkBillEpic, fetchMagicLinkTenantEpic, fetchManagementViewEpic, fetchMerchantListEpic, fetchMonthClosePerformanceTrendEpic, fetchMonthEndCloseChecksEpic, fetchMyProfileEpic, fetchMyProfileViewEpic, fetchNetBurnOrIncomeClassesViewEpic, fetchNetBurnOrIncomeEpic, fetchNetBurnOrIncomeForTimeframeClassesViewEpic, fetchNetBurnOrIncomeForTimeframeEpic, fetchNetBurnOrIncomeStoryCardEpic, fetchNetBurnOrIncomeWithForecastEpic, fetchNotificationSettingsEpic, fetchNotificationSettingsViewEpic, fetchNotificationUnreadCountEpic, fetchNotificationViewEpic, fetchRegisteredInterestsEpic, fetchOnboardingCompletedCompaniesEpic, fetchOnboardingCustomerSetupViewEpic, fetchOnboardingCustomerViewEpic, fetchOnboardingViewEpic, fetchOpExByVendorEpic, fetchOpExByVendorReportForTimeframeEpic, fetchOpExByVendorReportSummaryEpic, refreshOpExByVendorReportEpic, fetchOpExClassesViewEpic, fetchOpExEpic, fetchOpExForTimeframeClassesViewEpic, fetchOpExReportForTimeframeEpic, fetchOpExWithForecastEpic, fetchOwnerListEpic, fetchParentSubsidiaryManagementViewEpic, fetchPaymentAccountBalanceEpic, fetchPaymentAccountListEpic, fetchPaymentSourcesEpic, fetchPeopleEpic, fetchPeoplePageEpic, fetchPortfolioViewEpic, fetchPreviousBillsEpic, fetchProfitAndLossClassesViewEpic, fetchProfitAndLossEpic, fetchProfitAndLossForTimeframeClassesViewEpic, fetchProfitAndLossForTimeframeProjectViewEpic, fetchProfitAndLossForTimeframeEpic, fetchProfitAndLossProjectViewEpic, fetchProjectListEpic, fetchQBOConnectionPoolEpic, fetchRecommendationByEntityIdEpic, fetchRecommendationByEntityNameEpic, fetchRecommendationForAccountSettingsEpic, fetchRecommendationForAccountTypeEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic, fetchRecommendedTransactionRowIndexEpic, fetchReferralsEpic, fetchReimbursementCardEpic, fetchReimbursementConfigEpic, fetchRemiAndInitializeLocalStoreEpic, fetchRemiApproversDetailsEpic, fetchRemiApproversListEpic, fetchRemiDetailEpic, fetchRemiListEpic, fetchRemiListPerTabEpic, fetchRemiSetupApproverViewEpic, fetchRemiSetupViewEpic, fetchRevenueClassesViewEpic, fetchRevenueEpic, fetchRevenueForTimeframeClassesViewEpic, fetchRevenueForTimeframeEpic, fetchRevenueWithForecastEpic, fetchReviewCompanyViewEpic, fetchReviewTransferDetailEpic, fetchRewardsPlanEpic, fetchScheduleAccruedDetailsEpic, fetchScheduleAccruedDetailsPageEpic, fetchScheduleDetailsEpic, fetchScheduleDetailsPageEpic, fetchScheduleListEpic, fetchSchedulesAccountEpic, fetchSubscriptionAddOnsEpic, fetchSubscriptionCouponsEpic, fetchSubscriptionCreateEstimateEpic, fetchSubscriptionDetailsEpic, fetchSubscriptionListEpic, fetchSubscriptionPlansEpic, fetchSubscriptionSummaryForTenantEpic, fetchSubscriptionUpdateEstimateEpic, fetchSubscriptionViewEpic, fetchSuggestedQuestionsEpic, fetchSkillsEpic, fetchTaskDetailEpic, fetchTaskDetailPageEpic, fetchTaskGroupTemplatesEpic, fetchTaskHistoryEpic, fetchTaskListEpic, fetchTaskListPageEpic, fetchTasksCardEpic, fetchTopExEpic, fetchTransactionActivityLogEpic, fetchTransactionDetailEpic, fetchTransactionListByAccountEpic, fetchTransactionListByClassEpic, fetchTransactionListByProjectEpic, fetchTransactionListByEntityEpic, fetchTransactionsForEntityEpic, fetchTransactionsListByCategoryTypeEpic, fetchTransferAccountsEpic, fetchTreasuryDetailEpic, fetchTreasuryFundsEpic, fetchTreasuryHistoryEpic, fetchTreasurySetupViewEpic, fetchTreasuryStatementListEpic, fetchTreasuryTaxLetterListEpic, fetchTreasuryTransactionListEpic, updatePortfolioAllocationEpic, fetchPortfolioAllocationEpic, fetchTrendForEntityEpic, fetchUserDetailEpic, fetchUserFinancialAccountEpic, fetchUserListByTypeEpic, fetchUserRoleConfigEpic, fetchVendor1099TypeListEpic, fetchVendorAndUpdateBillLocalDataEpic, fetchVendorByNameAndParseInvoiceEpic, fetchVendorDetailsEpic, fetchVendorEpic, fetchVendorFirstReviewAttachmentsEpic, fetchVendorFirstReviewViewEpic, fetchVendorGlobalReviewViewEpic, fetchVendorsFiling1099AllEpic, fetchVendorsFiling1099DownloadEpic, fetchVendorsFiling1099ListEpic, fetchVendorsListEpic, fetchVendorsTabVendorDetailPageViewEpic, fetchVendorsTabVendorDetailsEpic, fetchVendorsTabVendorEpic, fetchVendorTabViewEpic, fetchVendorTypeListEpic, fetchZeniAccountListEpic, fetchZeniAccountsConfigEpic, fetchZeniAccountSetupViewEpic, fetchZeniAccountsPromoCardEpic, fetchZeniAccStatementListEpic, fetchZeniAccStatementPageEpic, fetchZeniUsersEpic, getOnboardingEmailGroupEpic, getOnboardingPlaidLinkTokenEpic, getPaymentAccountsEpic, getPlaidLinkTokenEpic, ignoreExpenseAutomationJEScheduleEpic, improveUsingZeniGPTEpic, initialiseExpenseAutomationReconciliationLocalDataForSelectedAccountIdEpic, initializeAccountMappingViewEpic, initializeAccountSettingsViewEpic, initializeBillPaySetupApproverViewUpdateDataEpic, initializeBillToLocalStoreEpic, initializeCardUserOnboardingLocalDataEpic, initializeCompanyHealthMetricViewLocalDataEpic, initializeDynamicFormEpic, initializeEditPersonEpic, initializeExpenseAutomationJeScheduleLocalDataEpic, initializeInternationalWireLocalDataEpic, initializeIntlVerificationFormEpic, initializeMyProfileLocalDataEpic, initializeOnboardingCustomerViewUpdateDataEpic, initializeRemiSetupApproverViewUpdateDataEpic, initializeRemiToLocalStoreEpic, initializeScheduleAccruedDetailLocalDataEpic, initializeScheduleDetailLocalDataEpic, initializeSubscriptionLocalDataEpic, initializeTaskToLocalStoreEpic, initializeTransactionDetailLocalDataEpic, initializeVendorAddressEpic, initiateChargeCardRepaymentEpic, invitePeopleEpic, inviteZeniPeopleEpic, issueChargeCardEpic, lockChargeCardEpic, lockChargeCardsEpic, markAsCompleteScheduleDetailEpic, markTransactionAsNotMiscategorizedEpic, notifyMeForFeatureEpic, parallelFetchAccountTransactionListEpic, parallelFetchClassTransactionListEpic, parallelFetchProjectTransactionListEpic, parallelFetchEntityTransactionListEpic, parallelFetchTransactionListByCategoryTypeEpic, parseInvoiceToBillEpic, parseReceiptsToRemiEpic, peopleSaveUpdatesEpic, pushToastNotificationEpic, refreshExpenseAutomationCurrentTabEpic, refreshIntegrationsDataEpic, rejectVendorGlobalReviewEpic, resendCardInviteEpic, resendInviteEpic, resendOtpEpic, resendVerifyDeviceOTPEpic, resendReferralInviteEpic, resetTransactionVendorLocalDataEpic, resetVendorDetailLocalDataEpic, resetVendorsTabVendorDetailLocalDataEpic, retryBankAccountConnectionEpic, retryBankAccountConnectionForOnboardingEpic, retryExpenseAutomationJEScheduleEpic, retryOrRefundBillEpic, validateBillsBulkActionEpic, reviewDraftRemisBulkActionEpic, reviewExpenseAutomationFluxAnalysisViewEpic, revokeCardInviteEpic, revokeChargeCardsInviteEpic, saveAccountMappingViewEpic, saveAccountSettingsViewEpic, saveAPIKeyConnectionEpic, saveBillDetailEpic, saveBillPaySetupApproverViewUpdatesEpic, saveCardOnboardingUserDetailsEpic, saveCompanyBillingAddressEpic, saveCompanyHealthMetricByIdEpic, saveCompanyMonthEndReportEpic, saveCompanyPassportDetailsEpic, initEmailConnectOAuthEpic, saveConnectorCredentialsEpic, saveCreditAgentMacroEpic, saveExpenseAutomationReconciliationDetailsEpic, saveExpenseAutomationReconciliationReviewEpic, saveExternalConnectionEpic, saveMagicLinkBankAccountEpic, saveNewAddressEpic, saveNotificationSettingsEpic, saveOAuthConnectionEpic, saveOnboardingCustomerCompletedStatusEpic, saveOnboardingCustomerNotesEpic, saveOnboardingCustomerViewUpdatesEpic, saveRealTimeApprovalEpic, saveReasonForAuditRuleEpic, saveRemiDetailEpic, saveRemiSetupApproverViewUpdatesEpic, saveScheduleAccruedDetailsEpic, saveScheduleDetailsEpic, saveSubscriptionNotesUpdatesEpic, saveSubscriptionUpdatesEpic, saveTaskDetailEpic, saveTransactionDetailEpic, saveTransactionVendorEpic, saveVendorDetailsViewEpic, saveVendorEpic, saveVendorFirstReviewViewEpic, saveVendorsTabVendorEpic, scheduleTenantCreditScoreCronEpic, sendCompanyMonthEndReportEpic, sendOnboardingCustomerViewInviteEpic, sendOtpEpic, sendReferralInviteEpic, statementCloseDayEpic, stopSubmitEpic, stopSubmitQuestionEpic, submitDraftBillsBulkActionEpic, submitDraftRemisBulkActionEpic, submitExpressPayEpic, submitIntlVerificationEpic, submitQuestionEpic, toggleReportUIOptionForecastModeEpic, transferMoneyEpic, treasuryTransferMoneyEpic, triggerAiAccountantJobEpic, triggerReviewTabRefetchEpic, unlinkPaymentAccountEpic, unlockChargeCardEpic, unlockChargeCardsEpic, updateAccruedJESchedulesEpic, updateAddressEpic, updateAmountsInScheduleAccruedDetailEpic, updateAmountsInScheduleDetailEpic, updateAutoTransferRuleEpic, updateBusinessVerificationDetailsEpic, updateCardProfileEpic, updateChargeCardDetailEpic, updateChargeCardLimitEpic, updateChargeCardNameEpic, updateChargeCardsLimitEpic, updateAccountingClassesEnabledEpic, dismissCapitalizationOnboardingEpic, updateCapitalizationAccountThresholdEpic, updateCompanyDetailsEpic, updateCompanyOfficerEpic, updateCompanyPassportLocalStoreDataEpic, updateDashboardLayoutEpic, updateDebitCardPinAttemptEpic, updateDepositAccountEpic, updateExpenseAutomationReconciliationBalanceLocalDataEpic, updateFileNameEpic, updateFilesMetadataEpic, updateJESchedulesEpic, updateMappedCashAccountEpic, updateMileageDetailsEpic, updateMyProfileEpic, updateNetBurnOrIncomeStoryCardSettingsEpic, updateNotificationViewAllNotificationsStatusEpic, updateNotificationViewNotificationStatusEpic, updateOnboardingCustomerViewCompleteStatusEpic, acknowledgeOnboardingAiActivationViewedEpic, acknowledgeOnboardingAiFinanceTeamEpic, fetchAiAgentsActivationStatusEpic, updateOnboardingCustomerViewDashboardLoadedEpic, updateOnboardingCustomerViewEpic, updateOnboardingCustomerViewLocalStoreDataEpic, updateOnboardingPaymentAccountLoginStatusEpic, updateOnboardingPaymentAccountStatusEpic, updatePaymentAccountEpic, updatePaymentAccountLoginStatusEpic, updatePaymentAccountStatusEpic, updatePhysicalChargeCardAttemptEpic, updatePrimaryContactEpic, updatePrimaryFundingAccountEpic, updateQBOConnectionPoolExternalConnectionEpic, updateReferViewedEpic, updateRemiSetupViewLocalStoreDataEpic, updateReportUIOptionCOABalancesRangeEpic, updateReportUIOptionIsCompareModeEpic, updateReportUIOptionIsCompareModeOnEpic, updateReportUIOptionThisPeriodEpic, updateReportUIOptionTimeFrameEpic, updateSectionAccountsViewEpic, updateSectionClassesViewEpicV2, updateSectionProjectViewEpic, updateSelectedVendorForCreateFlowEpic, updateSetupViewLocalStoreDataEpic, parseUploadedKycDocumentEpic, parseUploadedKybDocumentEpic, updateTaskFromListViewEpic, updateTaskGroupNameEpic, fetchCannedResponsesEpic, saveCannedResponseEpic, deleteCannedResponseEpic, updateTransactionDetailEpic, updateTreasuryPromoIntroClosedByOutsideClickEpic, updateTreasuryPromoRemindMeLaterClickedEpic, updateTreasuryVideoViewedEpic, updateVendorContactEpic, uploadAccountStatementEpic, uploadMissingAttachmentSuccessEpic, uploadMissingReceiptSuccessEpic, uploadTransactionReceiptSuccessEpic, vendorFiling1099UploadDetailsSaveEpic, verifyOtpEpic, verifyUserEpic, waitForBillDetailThenInitializeLocalStoreEpic, waitForForecastListThenFetchNetBurnOrIncomeWithForecastEpic, waitForForecastListThenFetchOpExWithForecastEpic, waitForForecastListThenFetchRevenueWithForecastEpic, waitForMerchantRecommendationFetchThenUpdateRecommendationInMerchantEpic, waitForVendorByIdThenSaveBillUpdatetoLocalStoreEpic, waitForVendorByNameThenParsetoLocalStoreEpic, waitForVendorByNameThenUpdateBillDetailEpic, waitForVendorRecommendationFetchThenUpdateRecommendationInBillEpic, wiseRedirectEpic);
621
652
  const rootEpic = (action$, store$, dependencies) => combinedEpics(action$, store$, dependencies).pipe(map(identity), catchError((error, source) => {
622
653
  console.error(error);
623
654
  return source;
package/lib/esm/index.js CHANGED
@@ -708,3 +708,81 @@ export { clearAutoSweepFlow, saveAutoSweepSettings, updateAutoSweepDraft, update
708
708
  export { getAutoSweepFlow } from './view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowSelector';
709
709
  export { RISK_BUFFER_AMOUNT, bufferAmountToRisk, } from './view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowState';
710
710
  export { getCashManagementOverview, getCashManagementOverviewBanner, } from './view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewSelector';
711
+ export { clearAllInvoices, removeInvoice, updateInvoices, } from './entity/invoicing/invoice/invoiceReducer';
712
+ export { getInvoiceById, getInvoicesByIds, } from './entity/invoicing/invoice/invoiceSelector';
713
+ export { clearInvoiceList, fetchInvoiceCounts, fetchInvoiceKPIs, fetchInvoiceList, updateInvoiceListFilters, } from './view/invoicing/invoiceList/invoiceListReducer';
714
+ export { getInvoiceCounts, getInvoiceKPIs, getInvoiceListFetchState, getInvoiceListFilters, getInvoiceListHasMore, getInvoiceListItems, getInvoiceListNextCursor, } from './view/invoicing/invoiceList/invoiceListSelector';
715
+ export { clearInvoiceDetail, fetchInvoiceDetail, } from './view/invoicing/invoiceDetail/invoiceDetailReducer';
716
+ export { getInvoiceDetail, getInvoiceDetailFetchState, } from './view/invoicing/invoiceDetail/invoiceDetailSelector';
717
+ export { createInvoice, resetCreateInvoice, } from './view/invoicing/createInvoice/createInvoiceReducer';
718
+ export { recordPayment, resetRecordPayment, } from './view/invoicing/recordPayment/recordPaymentReducer';
719
+ export { clearInvoicingAnalytics, fetchInvoicingAnalytics, } from './view/invoicing/analyticsView/analyticsViewReducer';
720
+ export { getInvoicingAnalyticsChurn, getInvoicingAnalyticsFetchState, getInvoicingAnalyticsKPIs, getInvoicingAnalyticsMRR, getInvoicingAnalyticsPlanRevenue, getInvoicingAnalyticsRevenue, getInvoicingAnalyticsSummary, } from './view/invoicing/analyticsView/analyticsViewSelector';
721
+ export { clearInvoicingAuditView, fetchInvoicingAuditLog, } from './view/invoicing/auditView/auditViewReducer';
722
+ export { getInvoicingAuditLogFetchState, getInvoicingAuditLogFilters, getInvoicingAuditLogHasMore, getInvoicingAuditLogItems, getInvoicingAuditLogNextCursor, } from './view/invoicing/auditView/auditViewSelector';
723
+ export { getCreateInvoiceFetchState, getCreatedInvoiceId, } from './view/invoicing/createInvoice/createInvoiceSelector';
724
+ export { getRecordPaymentFetchState, getRecordedTransactionId, } from './view/invoicing/recordPayment/recordPaymentSelector';
725
+ export { resetInvoicingCustomerWrite, saveInvoicingCustomer, } from './view/invoicing/customerWrite/customerWriteReducer';
726
+ export { getInvoicingCustomerWriteState, getSavedInvoicingCustomerId, } from './view/invoicing/customerWrite/customerWriteSelector';
727
+ export { resetInvoicingSubscriptionWrite, saveInvoicingSubscription, } from './view/invoicing/subscriptionWrite/subscriptionWriteReducer';
728
+ export { getInvoicingSubscriptionWriteState, getSavedInvoicingSubscriptionId, } from './view/invoicing/subscriptionWrite/subscriptionWriteSelector';
729
+ export { resetInvoicingCatalogWrite, saveInvoicingCatalogItem, } from './view/invoicing/catalogWrite/catalogWriteReducer';
730
+ export { getInvoicingCatalogWriteState, getSavedInvoicingCatalogItemId, getSavedInvoicingCatalogItemKind, } from './view/invoicing/catalogWrite/catalogWriteSelector';
731
+ export { resetInvoicingCouponWrite, saveInvoicingCoupon, } from './view/invoicing/couponWrite/couponWriteReducer';
732
+ export { getInvoicingCouponWriteState, getSavedInvoicingCouponId, } from './view/invoicing/couponWrite/couponWriteSelector';
733
+ export { clearInvoicingInvoiceAction, runInvoicingInvoiceAction, updateInvoicingInvoice, } from './view/invoicing/invoiceAction/invoiceActionReducer';
734
+ export { getInvoicingInvoiceActionState } from './view/invoicing/invoiceAction/invoiceActionSelector';
735
+ export { downloadInvoicePdf } from './view/invoicing/invoicePdf/invoicePdfReducer';
736
+ export { getInvoicingInvoicePdfState } from './view/invoicing/invoicePdf/invoicePdfSelector';
737
+ export { clearInvoicingSubscriptionAction, runInvoicingSubscriptionAction, } from './view/invoicing/subscriptionAction/subscriptionActionReducer';
738
+ export { getInvoicingSubscriptionActionState } from './view/invoicing/subscriptionAction/subscriptionActionSelector';
739
+ export { clearInvoicingDunningAction, runInvoicingDunningAction, } from './view/invoicing/dunningAction/dunningActionReducer';
740
+ export { getInvoicingDunningActionState } from './view/invoicing/dunningAction/dunningActionSelector';
741
+ export { clearInvoicingPaymentAction, runInvoicingPaymentAction, } from './view/invoicing/paymentAction/paymentActionReducer';
742
+ export { getInvoicingPaymentActionState } from './view/invoicing/paymentAction/paymentActionSelector';
743
+ export { clearInvoicingApprovalsView, fetchInvoicingApprovals, } from './view/invoicing/approvalsView/approvalsViewReducer';
744
+ export { getInvoicingApprovals, getInvoicingApprovalsFetchState, getInvoicingApprovalsFilters, getInvoicingApprovalsHasMore, getInvoicingApprovalsNextCursor, } from './view/invoicing/approvalsView/approvalsViewSelector';
745
+ export { clearInvoicingApprovalAction, runInvoicingApprovalAction, } from './view/invoicing/approvalAction/approvalActionReducer';
746
+ export { getInvoicingApprovalActionState } from './view/invoicing/approvalAction/approvalActionSelector';
747
+ export { clearInvoicingReportsView, fetchInvoicingReport, } from './view/invoicing/reportsView/reportsViewReducer';
748
+ export { getInvoicingAgingReport, getInvoicingCreditBalancesReport, getInvoicingCustomerMovementReport, getInvoicingDeferredRevenueReport, getInvoicingDiscountsReport, getInvoicingRefundsReport, getInvoicingReportFetchState, getInvoicingSubscriptionCountsReport, } from './view/invoicing/reportsView/reportsViewSelector';
749
+ export { clearInvoicingDataImportView, fetchInvoicingDataImportStatus, fetchInvoicingMigrationSession, fetchInvoicingMigrationSessions, setInvoicingActiveMigrationSessionId, } from './view/invoicing/dataImportView/dataImportViewReducer';
750
+ export { getInvoicingActiveMigrationSessionId, getInvoicingDataImportStatusFetchState, getInvoicingDataImportStatusRows, getInvoicingMigrationSessionById, getInvoicingMigrationSessions, getInvoicingMigrationSessionsFetchState, } from './view/invoicing/dataImportView/dataImportViewSelector';
751
+ export { clearAllInvoicingDataImportActions, connectInvoicingChargebee, retryInvoicingMigration, rollbackInvoicingMigration, startInvoicingMigration, uploadInvoicingMigrationFiles, } from './view/invoicing/dataImportAction/dataImportActionReducer';
752
+ export { getInvoicingDataImportActionState } from './view/invoicing/dataImportAction/dataImportActionSelector';
753
+ export { INVOICING_LIST_PAGE_SIZE } from './view/invoicing/invoicingApiHelper';
754
+ // ── Invoicing: customers ──────────────────────────────────────────────────────
755
+ export { clearAllInvoicingCustomers, removeInvoicingCustomer, updateInvoicingCustomers, } from './entity/invoicing/customer/customerReducer';
756
+ export { clearInvoicingCustomerView, fetchInvoicingCustomerCounts, fetchInvoicingCustomerDetail, fetchInvoicingCustomerList, updateInvoicingCustomerFilters, } from './view/invoicing/customerView/customerViewReducer';
757
+ export { getInvoicingCustomerById, getInvoicingCustomerCounts, getInvoicingCustomerDetail, getInvoicingCustomerDetailFetchState, getInvoicingCustomerListFetchState, getInvoicingCustomerListFilters, getInvoicingCustomerListHasMore, getInvoicingCustomerListItems, getInvoicingCustomerListNextCursor, } from './view/invoicing/customerView/customerViewSelector';
758
+ // ── Invoicing: customer payment methods ───────────────────────────────────────
759
+ export { createInvoicingSetupIntent, fetchInvoicingPlaidLinkToken, resetInvoicingCustomerPaymentMethod, saveInvoicingPaymentMethod, sendInvoicingPaymentLink, } from './view/invoicing/customerPaymentMethod/customerPaymentMethodReducer';
760
+ export { getInvoicingPaymentLinkSendState, getInvoicingPaymentMethodSaveState, getInvoicingPlaidLinkToken, getInvoicingPlaidLinkTokenFetchState, getInvoicingSentPaymentLinkEmail, getInvoicingSetupIntent, getInvoicingSetupIntentFetchState, } from './view/invoicing/customerPaymentMethod/customerPaymentMethodSelector';
761
+ // ── Invoicing: subscriptions ──────────────────────────────────────────────────
762
+ export { clearAllInvoicingSubscriptions, removeInvoicingSubscription, updateInvoicingSubscriptions, } from './entity/invoicing/subscription/subscriptionReducer';
763
+ export { clearInvoicingSubscriptionView, fetchInvoicingSubscriptionCounts, fetchInvoicingSubscriptionDetail, fetchInvoicingSubscriptionList, updateInvoicingSubscriptionFilters, } from './view/invoicing/subscriptionView/subscriptionViewReducer';
764
+ export { getInvoicingSubscriptionById, getInvoicingSubscriptionCounts, getInvoicingSubscriptionDetail, getInvoicingSubscriptionDetailFetchState, getInvoicingSubscriptionListFetchState, getInvoicingSubscriptionListFilters, getInvoicingSubscriptionListHasMore, getInvoicingSubscriptionListItems, getInvoicingSubscriptionListNextCursor, } from './view/invoicing/subscriptionView/subscriptionViewSelector';
765
+ // ── Invoicing: payments (transactions) ────────────────────────────────────────
766
+ export { clearAllInvoicingTransactions, removeInvoicingTransaction, updateInvoicingTransactions, } from './entity/invoicing/transaction/transactionReducer';
767
+ export { clearInvoicingTransactionView, fetchInvoicingTransactionDetail, fetchInvoicingTransactionKPIs, fetchInvoicingTransactionList, updateInvoicingTransactionFilters, } from './view/invoicing/transactionView/transactionViewReducer';
768
+ export { getInvoicingTransactionById, getInvoicingTransactionDetail, getInvoicingTransactionDetailFetchState, getInvoicingTransactionKPIs, getInvoicingTransactionListFetchState, getInvoicingTransactionListFilters, getInvoicingTransactionListHasMore, getInvoicingTransactionListItems, getInvoicingTransactionListNextCursor, } from './view/invoicing/transactionView/transactionViewSelector';
769
+ // ── Invoicing: credit notes ───────────────────────────────────────────────────
770
+ export { clearAllInvoicingCreditNotes, removeInvoicingCreditNote, updateInvoicingCreditNotes, } from './entity/invoicing/creditNote/creditNoteReducer';
771
+ export { clearInvoicingCreditNoteView, fetchInvoicingCreditNoteCounts, fetchInvoicingCreditNoteDetail, fetchInvoicingCreditNoteKPIs, fetchInvoicingCreditNoteList, updateInvoicingCreditNoteFilters, } from './view/invoicing/creditNoteView/creditNoteViewReducer';
772
+ export { getInvoicingCreditNoteById, getInvoicingCreditNoteCounts, getInvoicingCreditNoteDetail, getInvoicingCreditNoteDetailFetchState, getInvoicingCreditNoteKPIs, getInvoicingCreditNoteListFetchState, getInvoicingCreditNoteListFilters, getInvoicingCreditNoteListHasMore, getInvoicingCreditNoteListItems, getInvoicingCreditNoteListNextCursor, } from './view/invoicing/creditNoteView/creditNoteViewSelector';
773
+ // ── Invoicing: discounts (coupons) ────────────────────────────────────────────
774
+ export { clearAllInvoicingCoupons, removeInvoicingCoupon, updateInvoicingCoupons, } from './entity/invoicing/coupon/couponReducer';
775
+ export { clearInvoicingCouponView, fetchInvoicingCouponCounts, fetchInvoicingCouponDetail, fetchInvoicingCouponKPIs, fetchInvoicingCouponList, updateInvoicingCouponFilters, } from './view/invoicing/couponView/couponViewReducer';
776
+ export { getInvoicingCouponById, getInvoicingCouponCounts, getInvoicingCouponDetail, getInvoicingCouponDetailFetchState, getInvoicingCouponKPIs, getInvoicingCouponListFetchState, getInvoicingCouponListFilters, getInvoicingCouponListHasMore, getInvoicingCouponListItems, getInvoicingCouponListNextCursor, } from './view/invoicing/couponView/couponViewSelector';
777
+ // ── Invoicing: dunning ────────────────────────────────────────────────────────
778
+ export { clearAllInvoicingDunningCases, removeInvoicingDunningCase, updateInvoicingDunningCases, } from './entity/invoicing/dunningCase/dunningCaseReducer';
779
+ export { clearInvoicingDunningCaseView, fetchInvoicingDunningCaseCounts, fetchInvoicingDunningCaseDetail, fetchInvoicingDunningCaseKPIs, fetchInvoicingDunningCaseList, updateInvoicingDunningCaseFilters, } from './view/invoicing/dunningCaseView/dunningCaseViewReducer';
780
+ export { getInvoicingDunningCaseById, getInvoicingDunningCaseCounts, getInvoicingDunningCaseDetail, getInvoicingDunningCaseDetailFetchState, getInvoicingDunningCaseKPIs, getInvoicingDunningCaseListFetchState, getInvoicingDunningCaseListFilters, getInvoicingDunningCaseListHasMore, getInvoicingDunningCaseListItems, getInvoicingDunningCaseListNextCursor, } from './view/invoicing/dunningCaseView/dunningCaseViewSelector';
781
+ // ── Invoicing: catalog (plans + products) ─────────────────────────────────────
782
+ export { clearAllInvoicingPlans, removeInvoicingPlan, updateInvoicingPlans, } from './entity/invoicing/plan/planReducer';
783
+ export { clearAllInvoicingProducts, removeInvoicingProduct, updateInvoicingProducts, } from './entity/invoicing/product/productReducer';
784
+ export { clearInvoicingCatalogView, fetchInvoicingCatalogCounts, fetchInvoicingCatalogKPIs, fetchInvoicingCatalogPlanDetail, fetchInvoicingCatalogPlanList, fetchInvoicingCatalogProductDetail, fetchInvoicingCatalogProductList, updateInvoicingCatalogPlanFilters, updateInvoicingCatalogProductFilters, } from './view/invoicing/catalogView/catalogViewReducer';
785
+ export { getInvoicingCatalogCounts, getInvoicingCatalogKPIs, getInvoicingCatalogPlanDetail, getInvoicingCatalogPlanDetailFetchState, getInvoicingCatalogPlanListFetchState, getInvoicingCatalogPlanListFilters, getInvoicingCatalogPlanListHasMore, getInvoicingCatalogPlanListItems, getInvoicingCatalogPlanListNextCursor, getInvoicingCatalogProductDetail, getInvoicingCatalogProductDetailFetchState, getInvoicingCatalogProductListFetchState, getInvoicingCatalogProductListFilters, getInvoicingCatalogProductListHasMore, getInvoicingCatalogProductListItems, getInvoicingCatalogProductListNextCursor, getInvoicingPlanById, getInvoicingProductById, } from './view/invoicing/catalogView/catalogViewSelector';
786
+ // ── Invoicing: settings ───────────────────────────────────────────────────────
787
+ export { clearInvoicingSettings, connectInvoicingStripe, disconnectInvoicingStripe, fetchInvoicingSettings, resetSaveInvoicingSettings, saveInvoicingSettings, updateInvoicingSettings, } from './view/invoicing/settingsView/settingsViewReducer';
788
+ export { getInvoicingSettings, getInvoicingSettingsFetchState, getInvoicingSettingsSaveState, getInvoicingStripeConnectState, } from './view/invoicing/settingsView/settingsViewSelector';