@zeniai/client-epic-state 5.1.61 → 5.1.62-betaRD2

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 (132) hide show
  1. package/lib/coreEpics.js +3 -2
  2. package/lib/entity/chargeCard/chargeCard.d.ts +1 -1
  3. package/lib/entity/jeSchedules/jeSchedulesPayload.d.ts +2 -0
  4. package/lib/entity/jeSchedules/jeSchedulesPayload.js +2 -0
  5. package/lib/entity/jeSchedules/jeSchedulesSelector.d.ts +4 -0
  6. package/lib/entity/jeSchedules/jeSchedulesSelector.js +11 -1
  7. package/lib/entity/jeSchedules/jeSchedulesState.d.ts +2 -0
  8. package/lib/entity/notificationRegistry/notificationRegistryPayload.d.ts +18 -0
  9. package/lib/entity/notificationRegistry/notificationRegistryPayload.js +28 -0
  10. package/lib/entity/notificationRegistry/notificationRegistryReducer.d.ts +10 -0
  11. package/lib/entity/notificationRegistry/notificationRegistryReducer.js +50 -0
  12. package/lib/entity/notificationRegistry/notificationRegistrySelector.d.ts +2 -0
  13. package/lib/entity/notificationRegistry/notificationRegistrySelector.js +10 -0
  14. package/lib/entity/notificationRegistry/notificationRegistryState.d.ts +32 -0
  15. package/lib/entity/notificationRegistry/notificationRegistryState.js +10 -0
  16. package/lib/entity/snackbar/snackbarTypes.d.ts +1 -1
  17. package/lib/entity/snackbar/snackbarTypes.js +3 -0
  18. package/lib/entity/tenant/clearAllEpic.d.ts +3 -1
  19. package/lib/entity/tenant/clearAllEpic.js +4 -0
  20. package/lib/entity/tenant/tenantReducer.d.ts +4 -1
  21. package/lib/entity/tenant/tenantReducer.js +8 -2
  22. package/lib/entity/tenant/tenantSelector.d.ts +1 -0
  23. package/lib/entity/tenant/tenantSelector.js +4 -0
  24. package/lib/entity/transaction/scheduleTransactionHelper.d.ts +15 -0
  25. package/lib/entity/transaction/scheduleTransactionHelper.js +43 -0
  26. package/lib/epic.d.ts +9 -1
  27. package/lib/epic.js +9 -1
  28. package/lib/esm/coreEpics.js +3 -2
  29. package/lib/esm/entity/jeSchedules/jeSchedulesPayload.js +2 -0
  30. package/lib/esm/entity/jeSchedules/jeSchedulesSelector.js +11 -1
  31. package/lib/esm/entity/notificationRegistry/notificationRegistryPayload.js +24 -0
  32. package/lib/esm/entity/notificationRegistry/notificationRegistryReducer.js +46 -0
  33. package/lib/esm/entity/notificationRegistry/notificationRegistrySelector.js +6 -0
  34. package/lib/esm/entity/notificationRegistry/notificationRegistryState.js +5 -0
  35. package/lib/esm/entity/snackbar/snackbarTypes.js +3 -0
  36. package/lib/esm/entity/tenant/clearAllEpic.js +4 -0
  37. package/lib/esm/entity/tenant/tenantReducer.js +7 -1
  38. package/lib/esm/entity/tenant/tenantSelector.js +3 -0
  39. package/lib/esm/entity/transaction/scheduleTransactionHelper.js +39 -0
  40. package/lib/esm/epic.js +9 -1
  41. package/lib/esm/index.js +14 -6
  42. package/lib/esm/reducer.js +6 -0
  43. package/lib/esm/view/companyView/companyViewReducer.js +68 -1
  44. package/lib/esm/view/companyView/epic/companyPassport/dismissCapitalizationOnboardingEpic.js +2 -1
  45. package/lib/esm/view/companyView/epic/companyPassport/projects/disableAccountingProjectsEpic.js +56 -0
  46. package/lib/esm/view/companyView/epic/companyPassport/projects/enableAccountingProjectsEpic.js +37 -0
  47. package/lib/esm/view/companyView/epic/companyPassport/projects/resumeEnableAccountingProjectsEpic.js +73 -0
  48. package/lib/esm/view/companyView/epic/companyPassport/updateAccountingClassesEnabledEpic.js +2 -1
  49. package/lib/esm/view/companyView/epic/companyPassport/updateCapitalizationAccountThresholdEpic.js +2 -1
  50. package/lib/esm/view/companyView/types/companyPassport/companyPassportViewState.js +5 -0
  51. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +15 -2
  52. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.js +21 -0
  53. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.js +110 -0
  54. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.js +44 -0
  55. package/lib/esm/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.js +22 -0
  56. package/lib/esm/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.js +152 -0
  57. package/lib/esm/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +126 -6
  58. package/lib/esm/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.js +1 -0
  59. package/lib/esm/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.js +71 -0
  60. package/lib/esm/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +78 -11
  61. package/lib/esm/view/expenseAutomationView/types/jeSchedulesViewState.js +3 -6
  62. package/lib/esm/view/notificationPreferencesView/epics/saveNotificationPreferencesEpic.js +116 -0
  63. package/lib/esm/view/notificationPreferencesView/notificationPreferencesEndpoint.js +5 -0
  64. package/lib/esm/view/notificationPreferencesView/notificationPreferencesViewPayload.js +36 -0
  65. package/lib/esm/view/notificationPreferencesView/notificationPreferencesViewReducer.js +222 -0
  66. package/lib/esm/view/notificationPreferencesView/notificationPreferencesViewSelector.js +25 -0
  67. package/lib/esm/view/notificationPreferencesView/notificationPreferencesViewState.js +4 -0
  68. package/lib/esm/view/settingsView/epic/fetchNotificationSettingsEpic.js +34 -2
  69. package/lib/esm/view/settingsView/epic/saveNotificationSettingsEpic.js +2 -1
  70. package/lib/esm/view/settingsView/settingsViewHelpers.js +3 -2
  71. package/lib/index.d.ts +17 -8
  72. package/lib/index.js +85 -47
  73. package/lib/reducer.d.ts +6 -0
  74. package/lib/reducer.js +6 -0
  75. package/lib/view/common/recurringViewHelper.d.ts +2 -2
  76. package/lib/view/companyView/companyViewReducer.d.ts +9 -1
  77. package/lib/view/companyView/companyViewReducer.js +70 -3
  78. package/lib/view/companyView/epic/companyPassport/dismissCapitalizationOnboardingEpic.js +2 -1
  79. package/lib/view/companyView/epic/companyPassport/projects/disableAccountingProjectsEpic.d.ts +10 -0
  80. package/lib/view/companyView/epic/companyPassport/projects/disableAccountingProjectsEpic.js +60 -0
  81. package/lib/view/companyView/epic/companyPassport/projects/enableAccountingProjectsEpic.d.ts +11 -0
  82. package/lib/view/companyView/epic/companyPassport/projects/enableAccountingProjectsEpic.js +41 -0
  83. package/lib/view/companyView/epic/companyPassport/projects/resumeEnableAccountingProjectsEpic.d.ts +13 -0
  84. package/lib/view/companyView/epic/companyPassport/projects/resumeEnableAccountingProjectsEpic.js +77 -0
  85. package/lib/view/companyView/epic/companyPassport/updateAccountingClassesEnabledEpic.js +2 -1
  86. package/lib/view/companyView/epic/companyPassport/updateCapitalizationAccountThresholdEpic.js +2 -1
  87. package/lib/view/companyView/types/companyPassport/companyPassportViewState.d.ts +2 -0
  88. package/lib/view/companyView/types/companyPassport/companyPassportViewState.js +5 -0
  89. package/lib/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +14 -1
  90. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.d.ts +8 -0
  91. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic.js +25 -0
  92. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.d.ts +45 -0
  93. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic.js +114 -0
  94. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.d.ts +8 -0
  95. package/lib/view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic.js +48 -0
  96. package/lib/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.d.ts +6 -0
  97. package/lib/view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic.js +26 -0
  98. package/lib/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.d.ts +43 -0
  99. package/lib/view/expenseAutomationView/helpers/newScheduleLocalDataHelper.js +158 -0
  100. package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts +1 -1
  101. package/lib/view/expenseAutomationView/payload/jeSchedulesPayload.d.ts +1 -0
  102. package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.d.ts +36 -8
  103. package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +128 -7
  104. package/lib/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.d.ts +25 -0
  105. package/lib/view/expenseAutomationView/selectorTypes/jeNewScheduleViewSelectorTypes.js +2 -0
  106. package/lib/view/expenseAutomationView/selectorTypes/jeSchedulesSelectorTypes.d.ts +29 -4
  107. package/lib/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.d.ts +10 -0
  108. package/lib/view/expenseAutomationView/selectors/jeNewScheduleViewSelector.js +76 -0
  109. package/lib/view/expenseAutomationView/selectors/jeSchedulesViewSelector.d.ts +1 -0
  110. package/lib/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +80 -11
  111. package/lib/view/expenseAutomationView/types/jeSchedulesViewState.d.ts +53 -6
  112. package/lib/view/expenseAutomationView/types/jeSchedulesViewState.js +5 -8
  113. package/lib/view/notificationPreferencesView/epics/saveNotificationPreferencesEpic.d.ts +40 -0
  114. package/lib/view/notificationPreferencesView/epics/saveNotificationPreferencesEpic.js +120 -0
  115. package/lib/view/notificationPreferencesView/notificationPreferencesEndpoint.d.ts +2 -0
  116. package/lib/view/notificationPreferencesView/notificationPreferencesEndpoint.js +9 -0
  117. package/lib/view/notificationPreferencesView/notificationPreferencesViewPayload.d.ts +7 -0
  118. package/lib/view/notificationPreferencesView/notificationPreferencesViewPayload.js +41 -0
  119. package/lib/view/notificationPreferencesView/notificationPreferencesViewReducer.d.ts +30 -0
  120. package/lib/view/notificationPreferencesView/notificationPreferencesViewReducer.js +226 -0
  121. package/lib/view/notificationPreferencesView/notificationPreferencesViewSelector.d.ts +7 -0
  122. package/lib/view/notificationPreferencesView/notificationPreferencesViewSelector.js +32 -0
  123. package/lib/view/notificationPreferencesView/notificationPreferencesViewState.d.ts +14 -0
  124. package/lib/view/notificationPreferencesView/notificationPreferencesViewState.js +8 -0
  125. package/lib/view/settingsView/epic/fetchNotificationSettingsEpic.d.ts +9 -1
  126. package/lib/view/settingsView/epic/fetchNotificationSettingsEpic.js +34 -2
  127. package/lib/view/settingsView/epic/saveNotificationSettingsEpic.js +2 -1
  128. package/lib/view/settingsView/settingsViewHelpers.d.ts +1 -1
  129. package/lib/view/settingsView/settingsViewHelpers.js +3 -2
  130. package/lib/view/settingsView/settingsViewPayload.d.ts +4 -0
  131. package/lib/view/settingsView/settingsViewState.d.ts +1 -1
  132. package/package.json +1 -1
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.hasAccountAndClassDetail = hasAccountAndClassDetail;
4
+ exports.mapSupportedTransactionLineToScheduleTransaction = mapSupportedTransactionLineToScheduleTransaction;
5
+ function hasAccountAndClassDetail(line) {
6
+ return 'account' in line;
7
+ }
8
+ /**
9
+ * Builds a ScheduleTransaction directly from a Base Transaction search result
10
+ * (SupportedTransaction) and the chosen line, for schedule types where the
11
+ * user selects a transaction the search endpoint already returned — as
12
+ * opposed to the legacy flow's ScheduleTransaction, which only ever arrives
13
+ * via a GET /1.0/schedules/:id round trip. transaction.qboId stands in for
14
+ * thirdPartyTransactionId since this search endpoint doesn't send a field by
15
+ * that name, but qbo_id is the same identifier.
16
+ */
17
+ function mapSupportedTransactionLineToScheduleTransaction(transaction, lineId) {
18
+ if (transaction.qboId == null || transaction.qboId === '') {
19
+ return undefined;
20
+ }
21
+ const line = transaction.lines?.find((candidate) => candidate.id === lineId);
22
+ if (line == null || !hasAccountAndClassDetail(line)) {
23
+ return undefined;
24
+ }
25
+ return {
26
+ id: transaction.id,
27
+ type: transaction.type,
28
+ typeOfTransaction: 'schedule',
29
+ typeName: transaction.typeName,
30
+ date: transaction.date,
31
+ memo: transaction.memo,
32
+ description: transaction.description,
33
+ lineId: line.id,
34
+ thirdPartyTransactionId: transaction.qboId,
35
+ account: line.account,
36
+ classBase: line.class,
37
+ amount: line.amount,
38
+ currency: {
39
+ currencyCode: line.amount.currencyCode,
40
+ currencySymbol: line.amount.currencySymbol,
41
+ },
42
+ };
43
+ }
package/lib/epic.d.ts CHANGED
@@ -119,8 +119,11 @@ import { ActionType as UpdateCompanyTaskManagerViewFiltersActionType } from './v
119
119
  import { ActionType as CompanyManagementSavePendingUpdatesActionType } from './view/companyView/epic/companyManagementSavePendingUpdates';
120
120
  import { ActionType as CompanyManagementSaveUpdatesActionType } from './view/companyView/epic/companyManagementSaveUpdatesEpic';
121
121
  import { ActionType as CreateCompanyOfficersActionType } from './view/companyView/epic/companyPassport/createCompanyOfficersEpic';
122
+ import { ActionType as DisableAccountingProjectsActionType } from './view/companyView/epic/companyPassport/projects/disableAccountingProjectsEpic';
122
123
  import { ActionType as DismissCapitalizationOnboardingActionType } from './view/companyView/epic/companyPassport/dismissCapitalizationOnboardingEpic';
124
+ import { ActionType as EnableAccountingProjectsActionType } from './view/companyView/epic/companyPassport/projects/enableAccountingProjectsEpic';
123
125
  import { ActionType as FetchCompanyPassportViewActionType } from './view/companyView/epic/companyPassport/fetchCompanyPassportViewEpic';
126
+ import { ActionType as ResumeEnableAccountingProjectsActionType } from './view/companyView/epic/companyPassport/projects/resumeEnableAccountingProjectsEpic';
124
127
  import { ActionType as SaveCompanyPassportDetailsActionType } from './view/companyView/epic/companyPassport/saveCompanyPassportDetailsEpic';
125
128
  import { ActionType as UpdateAccountingClassesEnabledActionType } from './view/companyView/epic/companyPassport/updateAccountingClassesEnabledEpic';
126
129
  import { ActionType as UpdateCapitalizationAccountThresholdActionType } from './view/companyView/epic/companyPassport/updateCapitalizationAccountThresholdEpic';
@@ -172,7 +175,11 @@ import { ActionType as FetchExpenseAutomationJESchedulePageActionType } from './
172
175
  import { ActionType as FetchExpenseAutomationJEScheduleActionType } from './view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic';
173
176
  import { ActionType as IgnoreExpenseAutomationJEScheduleActionType } from './view/expenseAutomationView/epics/jeSchedule/ignoreRecommendedJeScheduleEpic';
174
177
  import { ActionType as InitializeExpenseAutomationJeScheduleLocalDataActionType } from './view/expenseAutomationView/epics/jeSchedule/initializeJeScheduleLocalDataEpic';
178
+ import { ActionType as InitializeNewScheduleActionType } from './view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic';
179
+ import { ActionType as SaveNewScheduleActionType } from './view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic';
180
+ import { ActionType as SearchTransactionsForNewScheduleActionType } from './view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic';
175
181
  import { ActionType as RetryExpenseAutomationJEScheduleActionType } from './view/expenseAutomationView/epics/jeSchedule/retryJeSchedulesEpic';
182
+ import { ActionType as SwitchExpenseAutomationJESchedulesTabActionType } from './view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic';
176
183
  import { ActionType as BulkUploadMatchResultToastActionType } from './view/expenseAutomationView/epics/missingReceipts/bulkUploadMatchResultToastEpic';
177
184
  import { ActionType as BulkUploadReceiptsActionType } from './view/expenseAutomationView/epics/missingReceipts/bulkUploadReceiptsEpic';
178
185
  import { ActionType as ConfirmBulkUploadMatchActionType } from './view/expenseAutomationView/epics/missingReceipts/confirmBulkUploadMatchEpic';
@@ -263,6 +270,7 @@ import { ActionType as NetBurnOrIncomeClassesViewActionType } from './view/netBu
263
270
  import { ActionType as NetBurnOrIncomeForTimeframeClassesViewActionType } from './view/netBurnOrIncomeClassesView/netBurnOrIncomeForTimeframeClassesViewEpic';
264
271
  import { ActionType as FetchNetBurnOrIncomeStoryCardActionType } from './view/netBurnOrIncomeStoryCard/epic/fetchNetBurnOrIncomeStoryCardEpic';
265
272
  import { ActionType as UpdateNetBurnOrIncomeStoryCardSettingsActionType } from './view/netBurnOrIncomeStoryCard/epic/updateNetBurnOrIncomeStoryCardSettingsEpic';
273
+ import { ActionType as SaveNotificationPreferencesActionType } from './view/notificationPreferencesView/epics/saveNotificationPreferencesEpic';
266
274
  import { ActionType as FetchNotificationUnreadCountActionType } from './view/notificationView/epics/fetchNotificationUnreadCountEpic';
267
275
  import { ActionType as FetchNotificationViewActionType } from './view/notificationView/epics/fetchNotificationViewEpic';
268
276
  import { ActionType as UpdateNotificationViewAllNotificationsStatusActionType } from './view/notificationView/epics/updateNotificationViewAllNotificationsStatusEpic';
@@ -649,6 +657,6 @@ import { ActionType as FetchZeniAccStatePageActionType } from './view/zeniAccSta
649
657
  import { ActionType as FetchZeniAccountsPromoCardActionType } from './view/zeniAccountsPromoCard/zeniAccountsPromoCardEpic';
650
658
  import { ActionType as ApproveOAuthConsentActionType } from './view/zeniOAuthView/epics/approveOAuthConsentEpic';
651
659
  /** Root action type is union of all the epic action type */
652
- export type RootActionType = AcceptBillPayTermsActionType | AcceptBillPayUpdatedTermsActionType | AcceptChargeCardTermsActionType | AcceptEmployeeRemiTermsActionType | AcceptMasterTOSEpicActionType | AcceptRemiTermsActionType | AcceptTreasuryTermsActionType | AcceptZeniAccountTermsActionType | AcknowledgeOnboardingAiActivationViewedActionType | AcknowledgeOnboardingAiFinanceTeamActionType | AddCardPaymentSourceActionType | ApplyExtractedPolicyToDraftActionType | ApproveOAuthConsentActionType | ApproveOrRejectBillActionType | ApproveOrRejectBillsBulkActionActionType | ApproveOrRejectRemiActionType | ApproveOrRejectRemisBulkActionActionType | ApproveVendorGlobalReviewActionType | ArchiveCardPolicyActionType | ArchiveTaskActionType | BackgroundRefetchReviewTabActionType | BalanceSheetActionType | BalanceSheetForTimeframeActionType | BulkUpdateTasksListActionType | BulkUploadMatchResultToastActionType | BulkUploadReceiptsActionType | CancelAiAccountantOnboardingActionType | CancelAndDeleteBillActionType | CancelAndDeleteRemiActionType | CancelOrDeleteBillsBulkActionActionType | CancelOrDeleteRemisBulkActionActionType | CancelScheduleAccruedJournalEntryActionType | CardBalanceActionType | CashBalanceActionType | CashFlowActionType | CashFlowForTimeframeActionType | CashInCashOutActionType | CashPositionActionType | ChangeZeniPersonRolesActionType | CheckDepositActionType | ClearAllActionType | CloseChargeCardActionType | CloseChargeCardsActionType | CombinedStatementActionType | CompanyManagementSavePendingUpdatesActionType | CompanyManagementSaveUpdatesActionType | ConfirmBulkUploadMatchActionType | ConfirmCardSetupIntentActionType | CreateAddressActionType | CreateAutoTransferRuleActionType | CreateBankAccountActionType | CreateCardPolicyTemplateActionType | CreateCardSetupIntentActionType | CreateCheckingAccountActionType | CreateCompanyAddressActionType | CreateCompanyOfficersActionType | CreateCompanyUserAddressActionType | CreateGlobalMerchantActionType | CreateInternationalBankAccountActionType | CreateInvoiceActionType | CreateNewSchedulesAccruedActionType | CreateNewSchedulesActionType | CreateNewTaskGroupActionType | CreatePaymentInstrumentActionType | CreateSessionActionType | CreateSessionAndSubmitActionType | CreateSubTaskActionType | CreateTagActionType | CreateTaskFromTaskGroupTemplateActionType | CreateTransferEntryActionType | CreateUserBankAccountActionType | CurrencyConversionActionType | DeleteAccountStatementActionType | DeleteAutoTransferRuleActionType | DeleteBankAccountActionType | DeleteBillActionType | DeleteBillPayApprovalRuleActionType | DeleteCannedResponseActionType | DeleteChatSessionActionType | DeleteFileActionType | DeleteFileListActionType | DeleteInternationalBankAccountActionType | DeletePaymentInstrumentActionType | DeletePersonActionType | DeleteRemiActionType | DeleteRemiApprovalRuleActionType | DeleteScheduleAccruedDetailActionType | DeleteScheduleDetailActionType | DeleteTagActionType | DeleteTaskActionType | DeleteTaskGroupActionType | DeleteTransactionAttachmentActionType | DeleteUserBankAccountActionType | DepositAccountTransactionListActionType | DismissCapitalizationOnboardingActionType | DoMagicLinkSignInActionType | DownloadAccountingProviderAttachmentActionType | DragNDropTasksActionType | EditInvoicingCatalogItemDetailViewActionType | EditInvoicingCouponDetailViewActionType | EditInvoicingCustomerDetailViewActionType | EditInvoicingSubscriptionDetailViewActionType | EnableChargeCardAutoPayActionType | EnableSetupActionType | EstablishOnboardingPlaidConnectionActionType | EstablishPlaidConnectionActionType | ExcludeAccountFromReconciliationActionType | ExpressInterestChargeCardActionType | ExpressPayActionType | ExtractPolicyDocumentActionType | FetchAccountHistoryActionType | FetchAccountListActionType | FetchAccountListForAccountTypesActionType | FetchAccountSettingsListForAccountTypesActionType | FetchAccruedScheduleListActionType | FetchActiveTenantActionType | FetchAddressActionType | FetchAggregatedReportActionType | FetchAiAccountantCustomersActionType | FetchAiAccountantJobsActionType | FetchAiAgentsActivationStatusActionType | FetchAllCockpitViewsActionType | FetchAllExpenseAutomationTabsActionType | FetchAllPeopleRequiredActionType | FetchAllTagsActionType | FetchAllTaskGroupsActionType | FetchAllTenantsActionType | FetchApAgingActionType | FetchApAgingDetailActionType | FetchArAgingActionType | FetchArAgingDetailActionType | FetchAuditReportGroupViewActionType | FetchAuditRuleGroupViewActionType | FetchAutoTransferReviewDetailActionType | FetchAutoTransferRuleHistoryActionType | FetchAutoTransferRulesActionType | FetchBankAccountsListActionType | FetchBankConnectionsViewActionType | FetchBankCountryNameByIbanActionType | FetchBankNameByRoutingActionType | FetchBankNameBySwiftActionType | FetchBillAndInitializeLocalStoreActionType | FetchBillDetailActionType | FetchBillingAccountsListActionType | FetchBillListActionType | FetchBillListPerTabActionType | FetchBillPayApproversDetailsActionType | FetchBillPayApproversListActionType | FetchBillPayCardActionType | FetchBillPayConfigActionType | FetchBillPaySetupApproverViewActionType | FetchBillPaySetupViewActionType | FetchBulkUploadBatchDetailsActionType | FetchBulkUploadBatchesActionType | FetchCannedResponsesActionType | FetchCardPolicyDetailActionType | FetchCardPolicyListActionType | FetchCardPolicyMccCategoriesActionType | FetchCardPolicyVendorOptionsActionType | FetchCardProfilesActionType | FetchCashbackDetailActionType | FetchChargeCardConfigActionType | FetchChargeCardDetailActionType | FetchChargeCardDetailPageActionType | FetchChargeCardListActionType | FetchChargeCardListPageActionType | FetchChargeCardPaymentHistoryActionType | FetchChargeCardPaymentPageActionType | FetchChargeCardRepaymentDetailActionType | FetchChargeCardSetupViewActionType | FetchChargeCardsRecurringExpensesActionType | FetchChargeCardStatementListActionType | FetchChargeCardTransactionAttachmentsActionType | FetchChargeCardTransactionListActionType | FetchChargeCardTransactionStatisticsActionType | FetchChatHistoryActionType | FetchChatSessionsForUserActionType | FetchClassListActionType | FetchCockpitContextActionType | FetchCollaborationAuthTokenActionType | FetchCompanyBillingAddressActionType | FetchCompanyConfigActionType | FetchCompanyHealthMetricConfigViewEpicActionType | FetchCompanyHealthMetricViewEpicActionType | FetchCompanyManagementActionType | FetchCompanyMetaDataActionType | FetchCompanyMonthEndReportHistoricDataActionType | FetchCompanyMonthEndReportHistoricDatesActionType | FetchCompanyMonthEndReportTemplatesActionType | FetchCompanyMonthEndReportViewActionType | FetchCompanyOnboardingViewActionType | FetchCompanyPassportViewActionType | FetchCompanyPortfolioActionType | FetchCompanyTaskManagerViewActionType | FetchCompletedTransactionsActionType | FetchCreditAccountActionType | FetchCreditAccountRepaymentActionType | FetchCreditAgentMacroActionType | FetchCurrencyConversionValueActionType | FetchDashboardActionType | FetchDashboardLayoutActionType | FetchDebitCardSummaryActionType | FetchDepositAccountActionType | FetchDepositAccountDetailActionType | FetchDepositAccountLimitActionType | FetchDepositAccountListActionType | FetchDepositAccountListForCardsActionType | FetchDepositAccStatementListActionType | FetchDownloadSchedulesActionType | FetchDuplicateBillActionType | FetchDuplicateReimbursementEpicActionType | FetchEditBillDetailPageActionType | FetchEditRemiDetailPageActionType | FetchEligibleActionsForBillActionType | FetchEntityAutoCompleteActionType | FetchEntityHistoryActionType | FetchEntityRecommendationsByTransactionIdActionType | FetchEntityRecommendationsForLineUpdateActionType | FetchExcludedResourcesActionType | FetchExpenseAutomationFluxAnalysisActionType | FetchExpenseAutomationInitializeTransactionCategorizationViewLocalDataActionType | FetchExpenseAutomationJEScheduleActionType | FetchExpenseAutomationJESchedulePageActionType | FetchExpenseAutomationMarkTransactionAsNotMiscategorizedActionType | FetchExpenseAutomationMissingReceiptsActionType | FetchExpenseAutomationReconciliationsViewActionType | FetchExpenseAutomationSaveTransactionCategorizationActionType | FetchExpenseAutomationTransactionCategorizationActionType | FetchExpenseAutomationTransactionCategorizationViewActionType | FetchExpenseAutomationUpdateTransactionCategorizationEpicActionType | FetchExpenseTrendActionType | FetchExternalConnectionsActionType | FetchFileActionType | FetchFileListActionType | FetchForecastListActionType | FetchGlobalMerchantAutoCompleteActionType | FetchGlobalMerchantRecommendationActionType | FetchIncomeTrendActionType | FetchInternationalWireDynamicFormActionType | FetchIntlVerificationFormActionType | FetchInvoiceCountsActionType | FetchInvoiceDetailActionType | FetchInvoiceKPIsActionType | FetchInvoiceListActionType | FetchInvoiceListPageActionType | FetchIssueCardPageActionType | FetchMagicLinkBankNameByRoutingActionType | FetchMagicLinkBankNameBySwiftActionType | FetchMagicLinkBillActionType | FetchMagicLinkTenantActionType | FetchManagementActionType | FetchMerchantListActionType | FetchMonthClosePerformanceTrendActionType | FetchMonthEndCloseChecksActionType | FetchMoreBatchDetailsActionType | FetchMultipleBatchDetailsActionType | FetchMyProfileActionType | FetchMyProfileViewActionType | FetchNetBurnOrIncomeStoryCardActionType | FetchNetBurnOrIncomeWithForecastActionType | FetchNotificationSettingsActionType | FetchNotificationSettingsViewActionType | FetchNotificationUnreadCountActionType | FetchNotificationViewActionType | FetchOnboardingActionType | FetchOnboardingCompletedCompaniesActionType | FetchOnboardingCustomerSetupViewActionType | FetchOnboardingCustomerViewActionType | FetchOpExWithForecastActionType | FetchOwnerListActionType | FetchParentSubsidiaryManagementActionType | FetchPaymentAccountBalanceActionType | FetchPaymentAccountListActionType | FetchPaymentSourcesActionType | FetchPortfolioActionType | FetchPortfolioAllocationActionType | FetchPreviousBillsActionType | FetchProjectListActionType | FetchQBOConnectionPoolActionType | FetchRecommendationByEntityIdActionType | FetchRecommendationByEntityNameActionType | FetchRecommendationsAndUpdateMerchantRecommendationsActionType | FetchRecommendationsAndUpdateVendorRecommendationsActionType | FetchRecommendedBillExpenseActionType | FetchReferralsActionType | FetchRegisteredInterestsActionType | FetchReimbursementCardActionType | FetchReimbursementConfigActionType | FetchRemiAndInitializeLocalStoreActionType | FetchRemiApproversDetailsActionType | FetchRemiApproversListActionType | FetchRemiDetailActionType | FetchRemiListActionType | FetchRemiListPerTabActionType | FetchRemiSetupApproverViewActionType | FetchRemiSetupViewActionType | FetchRevenueWithForecastActionType | FetchReviewCompanyActionType | FetchReviewTransferDetailActionType | FetchRewardsPlanActionType | FetchScheduleAccruedDetailsActionType | FetchScheduleAccruedDetailsPageActionType | FetchScheduleDetailsActionType | FetchScheduleDetailsPageActionType | FetchScheduleListActionType | FetchSchedulesListActionType | FetchSkillsActionType | FetchSubscriptionActionType | FetchSubscriptionAddOnsActionType | FetchSubscriptionCouponsActionType | FetchSubscriptionCreateEstimateActionType | FetchSubscriptionDetailsActionType | FetchSubscriptionListActionType | FetchSubscriptionPlansActionType | FetchSubscriptionSummaryForTenantActionType | FetchSubscriptionUpdateEstimateActionType | FetchSubTasksActionType | FetchSuggestedQuestionsActionType | FetchTaskDetailActionType | FetchTaskDetailPageActionType | FetchTaskGroupTemplatesActionType | FetchTaskHistoryActionType | FetchTaskListActionType | FetchTaskListPageActionType | FetchTaskManagerMetricsActionType | FetchTasksCardActionType | FetchTransactionActivityLogActionType | FetchTransactionDetailActionType | FetchTransactionListByAccountActionType | FetchTransactionListByClassActionType | FetchTransactionListByEntityActionType | FetchTransactionListByProjectActionType | FetchTransactionsForEntityActionType | FetchTransactionsListByCategoryTypeActionType | FetchTransferAccountsActionType | FetchTreasuryDetailActionType | FetchTreasuryFundsActionType | FetchTreasuryHistoryActionType | FetchTreasurySetupViewActionType | FetchTreasuryStatementListActionType | FetchTreasuryTaxLetterListActionType | FetchTreasuryTransactionListActionType | FetchTrendForEntityActionType | FetchUserDetailActionType | FetchUserFinancialAccountActionType | FetchUserListByTypeActionType | FetchUserRoleConfigActionType | FetchVendor1099TypeListActionType | FetchVendorActionType | FetchVendorAndUpdateBillLocalDataActionType | FetchVendorByNameAndParseInvoiceActionType | FetchVendorDetailsActionType | FetchVendorFirstReviewAttachmentsActionType | FetchVendorFirstReviewViewActionType | FetchVendorGlobalReviewViewActionType | FetchVendorsActionType | FetchVendorsFiling1099ActionType | FetchVendorsFiling1099AllActionType | FetchVendorsFiling1099DownloadActionType | FetchVendorTabViewActionType | FetchVendorTypeListActionType | FetchZeniAccountListPageActionType | FetchZeniAccountsConfigActionType | FetchZeniAccountSetupViewActionType | FetchZeniAccountsPromoCardActionType | FetchZeniAccStatePageActionType | FetchZeniUsersActionType | GetOnboardingEmailGroupActionType | GetOnboardingPlaidLinkTokenActionType | GetPaymentAccountsActionType | GetPlaidLinkTokenActionType | IgnoreExpenseAutomationJEScheduleActionType | ImproveUsingZeniGPTActionType | IncludeAccountInReconciliationActionType | InitialiseExpenseAutomationLocalDataForSelectedAccountIdActionType | InitializeAccountMappingViewActionType | InitializeAccountSettingsViewEpicActionType | InitializeBillPaySetupApproverViewUpdateDataActionType | InitializeBillToLocalStoreActionType | InitializeCardUserOnboardingLocalDataActionType | InitializeCompanyHealthMetricViewLocalDataEpicActionType | InitializeEditPersonActionType | InitializeExpenseAutomationJeScheduleLocalDataActionType | InitializeInternationalWireLocalDataActionType | InitializeIntlVerificationFormEpicActionType | InitializeMyProfileLocalDataActionType | InitializeOnboardingCustomerViewUpdateDataActionType | InitializeRemiSetupApproverViewUpdateDataActionType | InitializeRemiToLocalStoreActionType | InitializeScheduleAccruedDetailLocalDataActionType | InitializeScheduleDetailLocalDataActionType | InitializeSubscriptionLocalDataActionType | InitializeTaskToLocalStoreActionType | InitializeTransactionDetailLocalDataActionType | InitializeVendorAddressActionType | InitiateChargeCardRepaymentActionType | InitiateReportsClassViewRefetchingActionType | InsightsCardActionType | InvitePeopleActionType | InviteZeniPeopleActionType | InvoicingAuditViewActionType | InvoicingCatalogActionActionType | InvoicingCatalogItemDetailViewActionType | InvoicingCatalogListViewActionType | InvoicingCatalogSubFamilyActionType | InvoicingConfigViewActionType | InvoicingCouponDetailViewActionType | InvoicingCouponViewActionType | InvoicingCreditNoteDetailViewActionType | InvoicingCreditNoteListViewActionType | InvoicingCustomerDetailPageActionType | InvoicingCustomerDetailViewActionType | InvoicingCustomerListViewActionType | InvoicingCustomerPaymentMethodActionType | InvoicingDataImportViewActionType | InvoicingDiscountActionActionType | InvoicingDunningActionActionType | InvoicingDunningCaseDetailViewActionType | InvoicingDunningCaseListViewActionType | InvoicingInvoiceActionActionType | InvoicingOverviewActionType | InvoicingPaymentActionActionType | InvoicingPromotionalCreditActionActionType | InvoicingSettingsViewActionType | InvoicingSubscriptionActionActionType | InvoicingSubscriptionDetailViewActionType | InvoicingSubscriptionFormPageActionType | InvoicingSubscriptionListViewActionType | InvoicingTransactionDetailViewActionType | InvoicingTransactionListViewActionType | IssueChargeCardActionType | LockChargeCardActionType | LockChargeCardsActionType | MarkAsCompleteScheduleDetailActionType | MarkTransactionAsNotMiscategorizedActionType | NetBurnOrIncomeActionType | NetBurnOrIncomeClassesViewActionType | NetBurnOrIncomeForTimeframeActionType | NetBurnOrIncomeForTimeframeClassesViewActionType | NotifyMeForFeatureActionType | OpExActionType | OpExByVendorReportActionType | OpExByVendorReportForTimeframeActionType | OpExByVendorReportSummaryActionType | OpExClassesViewActionType | OpExForTimeframeClassesViewActionType | OpExForTimeframeViewActionType | ParallelFetchAccountTransactionListActionType | ParallelFetchClassTransactionListActionType | ParallelFetchEntityTransactionListActionType | ParallelFetchProjectTransactionListActionType | ParallelFetchTransactionListByCategoryTypeActionType | ParseInvoiceToBillActionType | ParseReceiptsToRemiActionType | ParseStatementActionType | ParseUploadedKybDocumentActionType | ParseUploadedKycDocumentActionType | PeopleActionType | PeoplePageActionType | PeopleSaveUpdatesActionType | PolicyDocumentExtractionToRecommendationBridgeActionType | PolicyRecommendationFromUploadActionType | ProfitAndLossActionType | ProfitAndLossClassesViewActionType | ProfitAndLossForTimeframeActionType | ProfitAndLossForTimeframeClassesViewActionType | ProfitAndLossForTimeframeProjectViewActionType | ProfitAndLossProjectViewActionType | PushToastNotificationActionType | RecommendationForAccountSettingsActionType | RecommendationForAccountTypeActionType | RecordPaymentActionType | RefetchCompletedTransactionsOnBulkUploadSortActionType | RefreshBatchDetailsForBatchIdActionType | RefreshExpenseAutomationCurrentTabActionType | RefreshIntegrationsDataActionType | RefreshOpExByVendorReportActionType | RejectVendorGlobalReviewActionType | ReorderBillPayApprovalRulesActionType | ReorderRemiApprovalRulesActionType | ReparseStatementActionType | ReportsResyncActionType | ResendCardInviteActionType | ResendInviteActionType | ResendOtpActionType | ResendReferralInviteActionType | ResendVerifyDeviceOTPActionType | ResetTransactionVendorLocalDataActionType | ResetVendorDetailLocalDataActionType | RestoreAutomatchingActionType | RetryBankAccountConnectionActionType | RetryBankAccountConnectionForOnboardingActionType | RetryExpenseAutomationJEScheduleActionType | RetryOrRefundBillActionType | RevenueActionType | RevenueClassesViewActionType | RevenueForTimeframeClassesViewActionType | RevenueForTimeframeViewActionType | ReviewDraftRemisBulkActionActionTye | ReviewExpenseAutomationFluxAnalysisActionType | RevokeCardInviteActionType | RevokeChargeCardsInviteActionType | SaveAccountMappingViewActionType | SaveAccountSettingsViewEpicActionType | SaveAddressActionType | SaveBillDetailActionType | SaveBillPaySetupApproverViewUpdatesActionType | SaveCannedResponseActionType | saveCardOnboardingUserDetailsActionType | SaveCompanyBillingAddressActionType | SaveCompanyHealthMetricByIdEpicActionType | SaveCompanyMonthEndReportActionType | SaveCompanyPassportDetailsActionType | SaveCreditAgentMacroActionType | SaveExpenseAutomationReconciliationDetailActionType | SaveExternalConnectionActionType | SaveMagicLinkBankAccountActionType | SaveNotificationSettingsEpicActionType | SaveOnboardingCustomerCompletedStatusActionType | SaveOnboardingCustomerNotesActionType | SaveOnboardingCustomerViewUpdatesActionType | SaveRealTimeApprovalActionType | SaveReasonForAuditRuleActionType | SaveReconciliationReviewActionType | SaveRemiDetailActionType | SaveRemiSetupApproverViewUpdatesActionType | SaveScheduleAccruedDetailsActionType | SaveScheduleDetailsActionType | SaveSubscriptionNotesUpdatesActionType | SaveSubscriptionUpdatesActionType | SaveTaskDetailActionType | SaveTranactionVendorActionType | SaveTransactionDetailActionType | SaveVendorActionType | SaveVendorDetailsViewActionType | SaveVendorFirstReviewViewActionType | ScheduleTenantCreditScoreCronActionType | SearchTransactionsForManualMatchActionType | SeedAiCardCreationFormDraftActionType | SeedAiCardPolicyFormDraftActionType | SendCompanyMonthEndReportActionType | SendEmailMagicLinkToUserActionType | SendOnboardingCustomerViewInviteActionType | SendOtpActionType | SendReferralInviteActionType | SessionHeartbeatActionType | SignInActionType | SignOutActionType | SnoozeTaskActionType | StatementCloseDayActionType | StopSubmitActionType | StopSubmitQuestionActionType | SubmitDraftBillsBulkActionActionType | SubmitDraftRemisBulkActionActionType | SubmitExpressPayActionType | SubmitFeedbackActionType | SubmitIntlVerificationActionType | SubmitQuestionActionType | SyncInvoicingSubscriptionCouponsActionType | SyncTabsAfterAutomatchActionType | ToggleReportUIOptionForecastModeActionType | TopExActionType | TransferMoneyActionType | TreasuryTransferMoneyActionType | TriggerAiAccountantJobActionType | TriggerReviewTabRefetchActionType | UnlinkPaymentAccountActionType | UnlockChargeCardActionType | UnlockChargeCardsActionType | UnsnoozeTaskActionType | UpdateAccountingClassesEnabledActionType | UpdateAccruedJESchedulesActionType | UpdateAddressActionType | UpdateAmountsInScheduleAccruedDetailActionType | UpdateAmountsInScheduleDetailActionType | UpdateAutoTransferRuleActionType | UpdateBusinessVerificationDetailsActionType | UpdateCapitalizationAccountThresholdActionType | UpdateCardPolicyActionType | UpdateCardProfileActionType | UpdateChargeCardDetailActionType | UpdateChargeCardLimitActionType | UpdateChargeCardNameActionType | UpdateChargeCardsLimitActionType | UpdateCompanyDetailsActionType | UpdateCompanyOfficerActionType | UpdateCompanyPassportLocalStoreDataActionType | UpdateCompanyTaskManagerViewFiltersActionType | UpdateDashboardLayoutActionType | UpdateDebitCardPinAttemptActionType | UpdateDepositAccountActionType | UpdateDynamicFormActionType | UpdateExpenseAutomationReconciliationBalanceLocalDataActionType | UpdateFileNameActionType | UpdateFilesMetadataActionType | UpdateJESchedulesActionType | UpdateMappedCashAccountActionType | UpdateMileageDetailsActionType | UpdateMyProfileActionType | UpdateNetBurnOrIncomeStoryCardSettingsActionType | UpdateNotificationViewAllNotificationsStatusActionType | UpdateNotificationViewNotificationStatusActionType | UpdateOnboardingCustomerViewActionType | UpdateOnboardingCustomerViewCompleteStatusActionType | UpdateOnboardingCustomerViewDashboardLoadedActionType | UpdateOnboardingCustomerViewLocalStoreDataActionType | UpdateOnboardingPaymentAccountLoginStatusActionType | UpdateOnboardingPaymentAccountStatusActionType | UpdatePaymentAccountActionType | UpdatePaymentAccountLoginStatusActionType | UpdatePaymentAccountStatusActionType | UpdatePhysicalChargeCardAttemptActionType | UpdatePortfolioAllocationActionType | UpdatePrimaryContactActionType | UpdatePrimaryFundingAccountActionType | UpdateQBOConnectionPoolExternalConnectionActionType | UpdateReferViewedActionType | UpdateRemiSetupViewLocalStoreDataActionType | UpdateReportUIOptionCOABalancesRangeActionType | UpdateReportUIOptionIsCompareModeActionType | UpdateReportUIOptionIsCompareModeOnActionType | UpdateReportUIOptionThisPeriodActionType | UpdateReportUIOptionTimeFrameActionType | UpdateSectionAccountsViewActionType | UpdateSectionClassesViewV2ActionType | UpdateSectionProjectViewActionType | UpdateSelectedVendorForCreateFlowActionType | UpdateSetupViewLocalStoreDataActionType | UpdateStatementInfoActionType | UpdateTaskFromListViewActionType | UpdateTaskGroupNameActionType | UpdateTransactionDetailActionType | UpdateTransactionOnUploadSuccessActionType | UpdateTreasuryPromoIntroClosedByOutsideClickActionType | UpdateTreasuryPromoRemindMeLaterClickedActionType | UpdateTreasuryVideoViewedActionType | UpdateVendorContactActionType | UploadAccountStatementActionType | UploadMissingReceiptSuccessEpicActionType | UploadTransactionReceiptSuccessEpicActionType | ValidateBillsBulkActionActionType | VendorFiling1099UploadDetailsSaveActionType | VendorsTabFetchVendorActionType | VendorsTabFetchVendorDetailPageViewActionType | VendorsTabFetchVendorDetailsActionType | VendorsTabResetVendorDetailLocalDataActionType | VendorsTabSaveVendorActionType | VerifyDeviceWithTwoFAActionType | VerifyOtpActionType | VerifyUserActionType | WatchBulkUploadBatchStatusActionType | WiseRedirectActionType;
660
+ export type RootActionType = AcceptBillPayTermsActionType | AcceptBillPayUpdatedTermsActionType | AcceptChargeCardTermsActionType | AcceptEmployeeRemiTermsActionType | AcceptMasterTOSEpicActionType | AcceptRemiTermsActionType | AcceptTreasuryTermsActionType | AcceptZeniAccountTermsActionType | AcknowledgeOnboardingAiActivationViewedActionType | AcknowledgeOnboardingAiFinanceTeamActionType | AddCardPaymentSourceActionType | ApplyExtractedPolicyToDraftActionType | ApproveOAuthConsentActionType | ApproveOrRejectBillActionType | ApproveOrRejectBillsBulkActionActionType | ApproveOrRejectRemiActionType | ApproveOrRejectRemisBulkActionActionType | ApproveVendorGlobalReviewActionType | ArchiveCardPolicyActionType | ArchiveTaskActionType | BackgroundRefetchReviewTabActionType | BalanceSheetActionType | BalanceSheetForTimeframeActionType | BulkUpdateTasksListActionType | BulkUploadMatchResultToastActionType | BulkUploadReceiptsActionType | CancelAiAccountantOnboardingActionType | CancelAndDeleteBillActionType | CancelAndDeleteRemiActionType | CancelOrDeleteBillsBulkActionActionType | CancelOrDeleteRemisBulkActionActionType | CancelScheduleAccruedJournalEntryActionType | CardBalanceActionType | CashBalanceActionType | CashFlowActionType | CashFlowForTimeframeActionType | CashInCashOutActionType | CashPositionActionType | ChangeZeniPersonRolesActionType | CheckDepositActionType | ClearAllActionType | CloseChargeCardActionType | CloseChargeCardsActionType | CombinedStatementActionType | CompanyManagementSavePendingUpdatesActionType | CompanyManagementSaveUpdatesActionType | ConfirmBulkUploadMatchActionType | ConfirmCardSetupIntentActionType | CreateAddressActionType | CreateAutoTransferRuleActionType | CreateBankAccountActionType | CreateCardPolicyTemplateActionType | CreateCardSetupIntentActionType | CreateCheckingAccountActionType | CreateCompanyAddressActionType | CreateCompanyOfficersActionType | CreateCompanyUserAddressActionType | CreateGlobalMerchantActionType | CreateInternationalBankAccountActionType | CreateInvoiceActionType | CreateNewSchedulesAccruedActionType | CreateNewSchedulesActionType | CreateNewTaskGroupActionType | CreatePaymentInstrumentActionType | CreateSessionActionType | CreateSessionAndSubmitActionType | CreateSubTaskActionType | CreateTagActionType | CreateTaskFromTaskGroupTemplateActionType | CreateTransferEntryActionType | CreateUserBankAccountActionType | CurrencyConversionActionType | DeleteAccountStatementActionType | DeleteAutoTransferRuleActionType | DeleteBankAccountActionType | DeleteBillActionType | DeleteBillPayApprovalRuleActionType | DeleteCannedResponseActionType | DeleteChatSessionActionType | DeleteFileActionType | DeleteFileListActionType | DeleteInternationalBankAccountActionType | DeletePaymentInstrumentActionType | DeletePersonActionType | DeleteRemiActionType | DeleteRemiApprovalRuleActionType | DeleteScheduleAccruedDetailActionType | DeleteScheduleDetailActionType | DeleteTagActionType | DeleteTaskActionType | DeleteTaskGroupActionType | DeleteTransactionAttachmentActionType | DeleteUserBankAccountActionType | DepositAccountTransactionListActionType | DisableAccountingProjectsActionType | DismissCapitalizationOnboardingActionType | DoMagicLinkSignInActionType | DownloadAccountingProviderAttachmentActionType | DragNDropTasksActionType | EditInvoicingCatalogItemDetailViewActionType | EditInvoicingCouponDetailViewActionType | EditInvoicingCustomerDetailViewActionType | EditInvoicingSubscriptionDetailViewActionType | EnableAccountingProjectsActionType | EnableChargeCardAutoPayActionType | EnableSetupActionType | EstablishOnboardingPlaidConnectionActionType | EstablishPlaidConnectionActionType | ExcludeAccountFromReconciliationActionType | ExpressInterestChargeCardActionType | ExpressPayActionType | ExtractPolicyDocumentActionType | FetchAccountHistoryActionType | FetchAccountListActionType | FetchAccountListForAccountTypesActionType | FetchAccountSettingsListForAccountTypesActionType | FetchAccruedScheduleListActionType | FetchActiveTenantActionType | FetchAddressActionType | FetchAggregatedReportActionType | FetchAiAccountantCustomersActionType | FetchAiAccountantJobsActionType | FetchAiAgentsActivationStatusActionType | FetchAllCockpitViewsActionType | FetchAllExpenseAutomationTabsActionType | FetchAllPeopleRequiredActionType | FetchAllTagsActionType | FetchAllTaskGroupsActionType | FetchAllTenantsActionType | FetchApAgingActionType | FetchApAgingDetailActionType | FetchArAgingActionType | FetchArAgingDetailActionType | FetchAuditReportGroupViewActionType | FetchAuditRuleGroupViewActionType | FetchAutoTransferReviewDetailActionType | FetchAutoTransferRuleHistoryActionType | FetchAutoTransferRulesActionType | FetchBankAccountsListActionType | FetchBankConnectionsViewActionType | FetchBankCountryNameByIbanActionType | FetchBankNameByRoutingActionType | FetchBankNameBySwiftActionType | FetchBillAndInitializeLocalStoreActionType | FetchBillDetailActionType | FetchBillingAccountsListActionType | FetchBillListActionType | FetchBillListPerTabActionType | FetchBillPayApproversDetailsActionType | FetchBillPayApproversListActionType | FetchBillPayCardActionType | FetchBillPayConfigActionType | FetchBillPaySetupApproverViewActionType | FetchBillPaySetupViewActionType | FetchBulkUploadBatchDetailsActionType | FetchBulkUploadBatchesActionType | FetchCannedResponsesActionType | FetchCardPolicyDetailActionType | FetchCardPolicyListActionType | FetchCardPolicyMccCategoriesActionType | FetchCardPolicyVendorOptionsActionType | FetchCardProfilesActionType | FetchCashbackDetailActionType | FetchChargeCardConfigActionType | FetchChargeCardDetailActionType | FetchChargeCardDetailPageActionType | FetchChargeCardListActionType | FetchChargeCardListPageActionType | FetchChargeCardPaymentHistoryActionType | FetchChargeCardPaymentPageActionType | FetchChargeCardRepaymentDetailActionType | FetchChargeCardSetupViewActionType | FetchChargeCardsRecurringExpensesActionType | FetchChargeCardStatementListActionType | FetchChargeCardTransactionAttachmentsActionType | FetchChargeCardTransactionListActionType | FetchChargeCardTransactionStatisticsActionType | FetchChatHistoryActionType | FetchChatSessionsForUserActionType | FetchClassListActionType | FetchCockpitContextActionType | FetchCollaborationAuthTokenActionType | FetchCompanyBillingAddressActionType | FetchCompanyConfigActionType | FetchCompanyHealthMetricConfigViewEpicActionType | FetchCompanyHealthMetricViewEpicActionType | FetchCompanyManagementActionType | FetchCompanyMetaDataActionType | FetchCompanyMonthEndReportHistoricDataActionType | FetchCompanyMonthEndReportHistoricDatesActionType | FetchCompanyMonthEndReportTemplatesActionType | FetchCompanyMonthEndReportViewActionType | FetchCompanyOnboardingViewActionType | FetchCompanyPassportViewActionType | FetchCompanyPortfolioActionType | FetchCompanyTaskManagerViewActionType | FetchCompletedTransactionsActionType | FetchCreditAccountActionType | FetchCreditAccountRepaymentActionType | FetchCreditAgentMacroActionType | FetchCurrencyConversionValueActionType | FetchDashboardActionType | FetchDashboardLayoutActionType | FetchDebitCardSummaryActionType | FetchDepositAccountActionType | FetchDepositAccountDetailActionType | FetchDepositAccountLimitActionType | FetchDepositAccountListActionType | FetchDepositAccountListForCardsActionType | FetchDepositAccStatementListActionType | FetchDownloadSchedulesActionType | FetchDuplicateBillActionType | FetchDuplicateReimbursementEpicActionType | FetchEditBillDetailPageActionType | FetchEditRemiDetailPageActionType | FetchEligibleActionsForBillActionType | FetchEntityAutoCompleteActionType | FetchEntityHistoryActionType | FetchEntityRecommendationsByTransactionIdActionType | FetchEntityRecommendationsForLineUpdateActionType | FetchExcludedResourcesActionType | FetchExpenseAutomationFluxAnalysisActionType | FetchExpenseAutomationInitializeTransactionCategorizationViewLocalDataActionType | FetchExpenseAutomationJEScheduleActionType | FetchExpenseAutomationJESchedulePageActionType | FetchExpenseAutomationMarkTransactionAsNotMiscategorizedActionType | FetchExpenseAutomationMissingReceiptsActionType | FetchExpenseAutomationReconciliationsViewActionType | FetchExpenseAutomationSaveTransactionCategorizationActionType | FetchExpenseAutomationTransactionCategorizationActionType | FetchExpenseAutomationTransactionCategorizationViewActionType | FetchExpenseAutomationUpdateTransactionCategorizationEpicActionType | FetchExpenseTrendActionType | FetchExternalConnectionsActionType | FetchFileActionType | FetchFileListActionType | FetchForecastListActionType | FetchGlobalMerchantAutoCompleteActionType | FetchGlobalMerchantRecommendationActionType | FetchIncomeTrendActionType | FetchInternationalWireDynamicFormActionType | FetchIntlVerificationFormActionType | FetchInvoiceCountsActionType | FetchInvoiceDetailActionType | FetchInvoiceKPIsActionType | FetchInvoiceListActionType | FetchInvoiceListPageActionType | FetchIssueCardPageActionType | FetchMagicLinkBankNameByRoutingActionType | FetchMagicLinkBankNameBySwiftActionType | FetchMagicLinkBillActionType | FetchMagicLinkTenantActionType | FetchManagementActionType | FetchMerchantListActionType | FetchMonthClosePerformanceTrendActionType | FetchMonthEndCloseChecksActionType | FetchMoreBatchDetailsActionType | FetchMultipleBatchDetailsActionType | FetchMyProfileActionType | FetchMyProfileViewActionType | FetchNetBurnOrIncomeStoryCardActionType | FetchNetBurnOrIncomeWithForecastActionType | FetchNotificationSettingsActionType | FetchNotificationSettingsViewActionType | FetchNotificationUnreadCountActionType | FetchNotificationViewActionType | FetchOnboardingActionType | FetchOnboardingCompletedCompaniesActionType | FetchOnboardingCustomerSetupViewActionType | FetchOnboardingCustomerViewActionType | FetchOpExWithForecastActionType | FetchOwnerListActionType | FetchParentSubsidiaryManagementActionType | FetchPaymentAccountBalanceActionType | FetchPaymentAccountListActionType | FetchPaymentSourcesActionType | FetchPortfolioActionType | FetchPortfolioAllocationActionType | FetchPreviousBillsActionType | FetchProjectListActionType | FetchQBOConnectionPoolActionType | FetchRecommendationByEntityIdActionType | FetchRecommendationByEntityNameActionType | FetchRecommendationsAndUpdateMerchantRecommendationsActionType | FetchRecommendationsAndUpdateVendorRecommendationsActionType | FetchRecommendedBillExpenseActionType | FetchReferralsActionType | FetchRegisteredInterestsActionType | FetchReimbursementCardActionType | FetchReimbursementConfigActionType | FetchRemiAndInitializeLocalStoreActionType | FetchRemiApproversDetailsActionType | FetchRemiApproversListActionType | FetchRemiDetailActionType | FetchRemiListActionType | FetchRemiListPerTabActionType | FetchRemiSetupApproverViewActionType | FetchRemiSetupViewActionType | FetchRevenueWithForecastActionType | FetchReviewCompanyActionType | FetchReviewTransferDetailActionType | FetchRewardsPlanActionType | FetchScheduleAccruedDetailsActionType | FetchScheduleAccruedDetailsPageActionType | FetchScheduleDetailsActionType | FetchScheduleDetailsPageActionType | FetchScheduleListActionType | FetchSchedulesListActionType | FetchSkillsActionType | FetchSubscriptionActionType | FetchSubscriptionAddOnsActionType | FetchSubscriptionCouponsActionType | FetchSubscriptionCreateEstimateActionType | FetchSubscriptionDetailsActionType | FetchSubscriptionListActionType | FetchSubscriptionPlansActionType | FetchSubscriptionSummaryForTenantActionType | FetchSubscriptionUpdateEstimateActionType | FetchSubTasksActionType | FetchSuggestedQuestionsActionType | FetchTaskDetailActionType | FetchTaskDetailPageActionType | FetchTaskGroupTemplatesActionType | FetchTaskHistoryActionType | FetchTaskListActionType | FetchTaskListPageActionType | FetchTaskManagerMetricsActionType | FetchTasksCardActionType | FetchTransactionActivityLogActionType | FetchTransactionDetailActionType | FetchTransactionListByAccountActionType | FetchTransactionListByClassActionType | FetchTransactionListByEntityActionType | FetchTransactionListByProjectActionType | FetchTransactionsForEntityActionType | FetchTransactionsListByCategoryTypeActionType | FetchTransferAccountsActionType | FetchTreasuryDetailActionType | FetchTreasuryFundsActionType | FetchTreasuryHistoryActionType | FetchTreasurySetupViewActionType | FetchTreasuryStatementListActionType | FetchTreasuryTaxLetterListActionType | FetchTreasuryTransactionListActionType | FetchTrendForEntityActionType | FetchUserDetailActionType | FetchUserFinancialAccountActionType | FetchUserListByTypeActionType | FetchUserRoleConfigActionType | FetchVendor1099TypeListActionType | FetchVendorActionType | FetchVendorAndUpdateBillLocalDataActionType | FetchVendorByNameAndParseInvoiceActionType | FetchVendorDetailsActionType | FetchVendorFirstReviewAttachmentsActionType | FetchVendorFirstReviewViewActionType | FetchVendorGlobalReviewViewActionType | FetchVendorsActionType | FetchVendorsFiling1099ActionType | FetchVendorsFiling1099AllActionType | FetchVendorsFiling1099DownloadActionType | FetchVendorTabViewActionType | FetchVendorTypeListActionType | FetchZeniAccountListPageActionType | FetchZeniAccountsConfigActionType | FetchZeniAccountSetupViewActionType | FetchZeniAccountsPromoCardActionType | FetchZeniAccStatePageActionType | FetchZeniUsersActionType | GetOnboardingEmailGroupActionType | GetOnboardingPlaidLinkTokenActionType | GetPaymentAccountsActionType | GetPlaidLinkTokenActionType | IgnoreExpenseAutomationJEScheduleActionType | ImproveUsingZeniGPTActionType | IncludeAccountInReconciliationActionType | InitialiseExpenseAutomationLocalDataForSelectedAccountIdActionType | InitializeAccountMappingViewActionType | InitializeAccountSettingsViewEpicActionType | InitializeBillPaySetupApproverViewUpdateDataActionType | InitializeBillToLocalStoreActionType | InitializeCardUserOnboardingLocalDataActionType | InitializeCompanyHealthMetricViewLocalDataEpicActionType | InitializeEditPersonActionType | InitializeExpenseAutomationJeScheduleLocalDataActionType | InitializeInternationalWireLocalDataActionType | InitializeIntlVerificationFormEpicActionType | InitializeMyProfileLocalDataActionType | InitializeNewScheduleActionType | InitializeOnboardingCustomerViewUpdateDataActionType | InitializeRemiSetupApproverViewUpdateDataActionType | InitializeRemiToLocalStoreActionType | InitializeScheduleAccruedDetailLocalDataActionType | InitializeScheduleDetailLocalDataActionType | InitializeSubscriptionLocalDataActionType | InitializeTaskToLocalStoreActionType | InitializeTransactionDetailLocalDataActionType | InitializeVendorAddressActionType | InitiateChargeCardRepaymentActionType | InitiateReportsClassViewRefetchingActionType | InsightsCardActionType | InvitePeopleActionType | InviteZeniPeopleActionType | InvoicingAuditViewActionType | InvoicingCatalogActionActionType | InvoicingCatalogItemDetailViewActionType | InvoicingCatalogListViewActionType | InvoicingCatalogSubFamilyActionType | InvoicingConfigViewActionType | InvoicingCouponDetailViewActionType | InvoicingCouponViewActionType | InvoicingCreditNoteDetailViewActionType | InvoicingCreditNoteListViewActionType | InvoicingCustomerDetailPageActionType | InvoicingCustomerDetailViewActionType | InvoicingCustomerListViewActionType | InvoicingCustomerPaymentMethodActionType | InvoicingDataImportViewActionType | InvoicingDiscountActionActionType | InvoicingDunningActionActionType | InvoicingDunningCaseDetailViewActionType | InvoicingDunningCaseListViewActionType | InvoicingInvoiceActionActionType | InvoicingOverviewActionType | InvoicingPaymentActionActionType | InvoicingPromotionalCreditActionActionType | InvoicingSettingsViewActionType | InvoicingSubscriptionActionActionType | InvoicingSubscriptionDetailViewActionType | InvoicingSubscriptionFormPageActionType | InvoicingSubscriptionListViewActionType | InvoicingTransactionDetailViewActionType | InvoicingTransactionListViewActionType | IssueChargeCardActionType | LockChargeCardActionType | LockChargeCardsActionType | MarkAsCompleteScheduleDetailActionType | MarkTransactionAsNotMiscategorizedActionType | NetBurnOrIncomeActionType | NetBurnOrIncomeClassesViewActionType | NetBurnOrIncomeForTimeframeActionType | NetBurnOrIncomeForTimeframeClassesViewActionType | NotifyMeForFeatureActionType | OpExActionType | OpExByVendorReportActionType | OpExByVendorReportForTimeframeActionType | OpExByVendorReportSummaryActionType | OpExClassesViewActionType | OpExForTimeframeClassesViewActionType | OpExForTimeframeViewActionType | ParallelFetchAccountTransactionListActionType | ParallelFetchClassTransactionListActionType | ParallelFetchEntityTransactionListActionType | ParallelFetchProjectTransactionListActionType | ParallelFetchTransactionListByCategoryTypeActionType | ParseInvoiceToBillActionType | ParseReceiptsToRemiActionType | ParseStatementActionType | ParseUploadedKybDocumentActionType | ParseUploadedKycDocumentActionType | PeopleActionType | PeoplePageActionType | PeopleSaveUpdatesActionType | PolicyDocumentExtractionToRecommendationBridgeActionType | PolicyRecommendationFromUploadActionType | ProfitAndLossActionType | ProfitAndLossClassesViewActionType | ProfitAndLossForTimeframeActionType | ProfitAndLossForTimeframeClassesViewActionType | ProfitAndLossForTimeframeProjectViewActionType | ProfitAndLossProjectViewActionType | PushToastNotificationActionType | RecommendationForAccountSettingsActionType | RecommendationForAccountTypeActionType | RecordPaymentActionType | RefetchCompletedTransactionsOnBulkUploadSortActionType | RefreshBatchDetailsForBatchIdActionType | RefreshExpenseAutomationCurrentTabActionType | RefreshIntegrationsDataActionType | RefreshOpExByVendorReportActionType | RejectVendorGlobalReviewActionType | ReorderBillPayApprovalRulesActionType | ReorderRemiApprovalRulesActionType | ReparseStatementActionType | ReportsResyncActionType | ResendCardInviteActionType | ResendInviteActionType | ResendOtpActionType | ResendReferralInviteActionType | ResendVerifyDeviceOTPActionType | ResetTransactionVendorLocalDataActionType | ResetVendorDetailLocalDataActionType | RestoreAutomatchingActionType | ResumeEnableAccountingProjectsActionType | RetryBankAccountConnectionActionType | RetryBankAccountConnectionForOnboardingActionType | RetryExpenseAutomationJEScheduleActionType | RetryOrRefundBillActionType | RevenueActionType | RevenueClassesViewActionType | RevenueForTimeframeClassesViewActionType | RevenueForTimeframeViewActionType | ReviewDraftRemisBulkActionActionTye | ReviewExpenseAutomationFluxAnalysisActionType | RevokeCardInviteActionType | RevokeChargeCardsInviteActionType | SaveAccountMappingViewActionType | SaveAccountSettingsViewEpicActionType | SaveAddressActionType | SaveBillDetailActionType | SaveBillPaySetupApproverViewUpdatesActionType | SaveCannedResponseActionType | saveCardOnboardingUserDetailsActionType | SaveCompanyBillingAddressActionType | SaveCompanyHealthMetricByIdEpicActionType | SaveCompanyMonthEndReportActionType | SaveCompanyPassportDetailsActionType | SaveCreditAgentMacroActionType | SaveExpenseAutomationReconciliationDetailActionType | SaveExternalConnectionActionType | SaveMagicLinkBankAccountActionType | SaveNewScheduleActionType | SaveNotificationPreferencesActionType | SaveNotificationSettingsEpicActionType | SaveOnboardingCustomerCompletedStatusActionType | SaveOnboardingCustomerNotesActionType | SaveOnboardingCustomerViewUpdatesActionType | SaveRealTimeApprovalActionType | SaveReasonForAuditRuleActionType | SaveReconciliationReviewActionType | SaveRemiDetailActionType | SaveRemiSetupApproverViewUpdatesActionType | SaveScheduleAccruedDetailsActionType | SaveScheduleDetailsActionType | SaveSubscriptionNotesUpdatesActionType | SaveSubscriptionUpdatesActionType | SaveTaskDetailActionType | SaveTranactionVendorActionType | SaveTransactionDetailActionType | SaveVendorActionType | SaveVendorDetailsViewActionType | SaveVendorFirstReviewViewActionType | ScheduleTenantCreditScoreCronActionType | SearchTransactionsForManualMatchActionType | SearchTransactionsForNewScheduleActionType | SeedAiCardCreationFormDraftActionType | SeedAiCardPolicyFormDraftActionType | SendCompanyMonthEndReportActionType | SendEmailMagicLinkToUserActionType | SendOnboardingCustomerViewInviteActionType | SendOtpActionType | SendReferralInviteActionType | SessionHeartbeatActionType | SignInActionType | SignOutActionType | SnoozeTaskActionType | StatementCloseDayActionType | StopSubmitActionType | StopSubmitQuestionActionType | SubmitDraftBillsBulkActionActionType | SubmitDraftRemisBulkActionActionType | SubmitExpressPayActionType | SubmitFeedbackActionType | SubmitIntlVerificationActionType | SubmitQuestionActionType | SwitchExpenseAutomationJESchedulesTabActionType | SyncInvoicingSubscriptionCouponsActionType | SyncTabsAfterAutomatchActionType | ToggleReportUIOptionForecastModeActionType | TopExActionType | TransferMoneyActionType | TreasuryTransferMoneyActionType | TriggerAiAccountantJobActionType | TriggerReviewTabRefetchActionType | UnlinkPaymentAccountActionType | UnlockChargeCardActionType | UnlockChargeCardsActionType | UnsnoozeTaskActionType | UpdateAccountingClassesEnabledActionType | UpdateAccruedJESchedulesActionType | UpdateAddressActionType | UpdateAmountsInScheduleAccruedDetailActionType | UpdateAmountsInScheduleDetailActionType | UpdateAutoTransferRuleActionType | UpdateBusinessVerificationDetailsActionType | UpdateCapitalizationAccountThresholdActionType | UpdateCardPolicyActionType | UpdateCardProfileActionType | UpdateChargeCardDetailActionType | UpdateChargeCardLimitActionType | UpdateChargeCardNameActionType | UpdateChargeCardsLimitActionType | UpdateCompanyDetailsActionType | UpdateCompanyOfficerActionType | UpdateCompanyPassportLocalStoreDataActionType | UpdateCompanyTaskManagerViewFiltersActionType | UpdateDashboardLayoutActionType | UpdateDebitCardPinAttemptActionType | UpdateDepositAccountActionType | UpdateDynamicFormActionType | UpdateExpenseAutomationReconciliationBalanceLocalDataActionType | UpdateFileNameActionType | UpdateFilesMetadataActionType | UpdateJESchedulesActionType | UpdateMappedCashAccountActionType | UpdateMileageDetailsActionType | UpdateMyProfileActionType | UpdateNetBurnOrIncomeStoryCardSettingsActionType | UpdateNotificationViewAllNotificationsStatusActionType | UpdateNotificationViewNotificationStatusActionType | UpdateOnboardingCustomerViewActionType | UpdateOnboardingCustomerViewCompleteStatusActionType | UpdateOnboardingCustomerViewDashboardLoadedActionType | UpdateOnboardingCustomerViewLocalStoreDataActionType | UpdateOnboardingPaymentAccountLoginStatusActionType | UpdateOnboardingPaymentAccountStatusActionType | UpdatePaymentAccountActionType | UpdatePaymentAccountLoginStatusActionType | UpdatePaymentAccountStatusActionType | UpdatePhysicalChargeCardAttemptActionType | UpdatePortfolioAllocationActionType | UpdatePrimaryContactActionType | UpdatePrimaryFundingAccountActionType | UpdateQBOConnectionPoolExternalConnectionActionType | UpdateReferViewedActionType | UpdateRemiSetupViewLocalStoreDataActionType | UpdateReportUIOptionCOABalancesRangeActionType | UpdateReportUIOptionIsCompareModeActionType | UpdateReportUIOptionIsCompareModeOnActionType | UpdateReportUIOptionThisPeriodActionType | UpdateReportUIOptionTimeFrameActionType | UpdateSectionAccountsViewActionType | UpdateSectionClassesViewV2ActionType | UpdateSectionProjectViewActionType | UpdateSelectedVendorForCreateFlowActionType | UpdateSetupViewLocalStoreDataActionType | UpdateStatementInfoActionType | UpdateTaskFromListViewActionType | UpdateTaskGroupNameActionType | UpdateTransactionDetailActionType | UpdateTransactionOnUploadSuccessActionType | UpdateTreasuryPromoIntroClosedByOutsideClickActionType | UpdateTreasuryPromoRemindMeLaterClickedActionType | UpdateTreasuryVideoViewedActionType | UpdateVendorContactActionType | UploadAccountStatementActionType | UploadMissingReceiptSuccessEpicActionType | UploadTransactionReceiptSuccessEpicActionType | ValidateBillsBulkActionActionType | VendorFiling1099UploadDetailsSaveActionType | VendorsTabFetchVendorActionType | VendorsTabFetchVendorDetailPageViewActionType | VendorsTabFetchVendorDetailsActionType | VendorsTabResetVendorDetailLocalDataActionType | VendorsTabSaveVendorActionType | VerifyDeviceWithTwoFAActionType | VerifyOtpActionType | VerifyUserActionType | WatchBulkUploadBatchStatusActionType | WiseRedirectActionType;
653
661
  declare const rootEpic: Epic<RootActionType>;
654
662
  export default rootEpic;
package/lib/epic.js CHANGED
@@ -128,8 +128,11 @@ const updateCompanyTaskManagerViewFiltersEpic_1 = require("./view/companyTaskMan
128
128
  const companyManagementSavePendingUpdates_1 = require("./view/companyView/epic/companyManagementSavePendingUpdates");
129
129
  const companyManagementSaveUpdatesEpic_1 = require("./view/companyView/epic/companyManagementSaveUpdatesEpic");
130
130
  const createCompanyOfficersEpic_1 = require("./view/companyView/epic/companyPassport/createCompanyOfficersEpic");
131
+ const disableAccountingProjectsEpic_1 = require("./view/companyView/epic/companyPassport/projects/disableAccountingProjectsEpic");
131
132
  const dismissCapitalizationOnboardingEpic_1 = require("./view/companyView/epic/companyPassport/dismissCapitalizationOnboardingEpic");
133
+ const enableAccountingProjectsEpic_1 = require("./view/companyView/epic/companyPassport/projects/enableAccountingProjectsEpic");
132
134
  const fetchCompanyPassportViewEpic_1 = require("./view/companyView/epic/companyPassport/fetchCompanyPassportViewEpic");
135
+ const resumeEnableAccountingProjectsEpic_1 = require("./view/companyView/epic/companyPassport/projects/resumeEnableAccountingProjectsEpic");
133
136
  const saveCompanyPassportDetailsEpic_1 = require("./view/companyView/epic/companyPassport/saveCompanyPassportDetailsEpic");
134
137
  const updateAccountingClassesEnabledEpic_1 = require("./view/companyView/epic/companyPassport/updateAccountingClassesEnabledEpic");
135
138
  const updateCapitalizationAccountThresholdEpic_1 = require("./view/companyView/epic/companyPassport/updateCapitalizationAccountThresholdEpic");
@@ -181,7 +184,11 @@ const fetchJeSchedulePageEpic_1 = require("./view/expenseAutomationView/epics/je
181
184
  const fetchJeSchedulesEpic_1 = require("./view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic");
182
185
  const ignoreRecommendedJeScheduleEpic_1 = require("./view/expenseAutomationView/epics/jeSchedule/ignoreRecommendedJeScheduleEpic");
183
186
  const initializeJeScheduleLocalDataEpic_1 = require("./view/expenseAutomationView/epics/jeSchedule/initializeJeScheduleLocalDataEpic");
187
+ const initializeNewScheduleEpic_1 = require("./view/expenseAutomationView/epics/jeSchedule/newSchedule/initializeNewScheduleEpic");
188
+ const saveNewScheduleEpic_1 = require("./view/expenseAutomationView/epics/jeSchedule/newSchedule/saveNewScheduleEpic");
189
+ const searchTransactionsForNewScheduleEpic_1 = require("./view/expenseAutomationView/epics/jeSchedule/newSchedule/searchTransactionsForNewScheduleEpic");
184
190
  const retryJeSchedulesEpic_1 = require("./view/expenseAutomationView/epics/jeSchedule/retryJeSchedulesEpic");
191
+ const switchJESchedulesTabEpic_1 = require("./view/expenseAutomationView/epics/jeSchedule/switchJESchedulesTabEpic");
185
192
  const bulkUploadMatchResultToastEpic_1 = require("./view/expenseAutomationView/epics/missingReceipts/bulkUploadMatchResultToastEpic");
186
193
  const bulkUploadReceiptsEpic_1 = require("./view/expenseAutomationView/epics/missingReceipts/bulkUploadReceiptsEpic");
187
194
  const confirmBulkUploadMatchEpic_1 = require("./view/expenseAutomationView/epics/missingReceipts/confirmBulkUploadMatchEpic");
@@ -298,6 +305,7 @@ const netBurnOrIncomeClassesViewEpic_1 = require("./view/netBurnOrIncomeClassesV
298
305
  const netBurnOrIncomeForTimeframeClassesViewEpic_1 = require("./view/netBurnOrIncomeClassesView/netBurnOrIncomeForTimeframeClassesViewEpic");
299
306
  const fetchNetBurnOrIncomeStoryCardEpic_1 = require("./view/netBurnOrIncomeStoryCard/epic/fetchNetBurnOrIncomeStoryCardEpic");
300
307
  const updateNetBurnOrIncomeStoryCardSettingsEpic_1 = require("./view/netBurnOrIncomeStoryCard/epic/updateNetBurnOrIncomeStoryCardSettingsEpic");
308
+ const saveNotificationPreferencesEpic_1 = require("./view/notificationPreferencesView/epics/saveNotificationPreferencesEpic");
301
309
  const fetchNotificationUnreadCountEpic_1 = require("./view/notificationView/epics/fetchNotificationUnreadCountEpic");
302
310
  const fetchNotificationViewEpic_1 = require("./view/notificationView/epics/fetchNotificationViewEpic");
303
311
  const updateNotificationViewAllNotificationsStatusEpic_1 = require("./view/notificationView/epics/updateNotificationViewAllNotificationsStatusEpic");
@@ -687,7 +695,7 @@ const fetchZeniAccStatementPageEpic_1 = require("./view/zeniAccStatementList/fet
687
695
  const zeniAccountsPromoCardEpic_1 = require("./view/zeniAccountsPromoCard/zeniAccountsPromoCardEpic");
688
696
  const approveOAuthConsentEpic_1 = require("./view/zeniOAuthView/epics/approveOAuthConsentEpic");
689
697
  // Note: Please maintain strict alphabetical order
690
- const combinedEpics = (0, redux_observable_1.combineEpics)(acceptBillPayTermsEpic_1.acceptBillPayTermsEpic, acceptBillPayUpdatedTermsEpic_1.acceptBillPayUpdatedTermsEpic, acceptChargeCardTermsEpic_1.acceptChargeCardTermsEpic, acceptEmployeeRemiTermsEpic_1.acceptEmployeeRemiTermsEpic, acceptInvoicingTermsEpic_1.acceptInvoicingTermsEpic, acceptMasterTOSEpic_1.acceptMasterTOSEpic, acceptRemiTermsEpic_1.acceptRemiTermsEpic, acceptTreasuryTermsEpic_1.acceptTreasuryTermsEpic, acceptZeniAccountTermsEpic_1.acceptZeniAccountTermsEpic, acknowledgeOnboardingAiActivationViewedEpic_1.acknowledgeOnboardingAiActivationViewedEpic, acknowledgeOnboardingAiFinanceTeamEpic_1.acknowledgeOnboardingAiFinanceTeamEpic, addCardPaymentSourceEpic_1.addCardPaymentSourceEpic, promotionalCreditActionEpic_1.addPromotionalCreditsEpic, applyExtractedPolicyToDraftEpic_1.applyExtractedPolicyToDraftEpic, approveOAuthConsentEpic_1.approveOAuthConsentEpic, approveOrRejectBillEpic_1.approveOrRejectBillEpic, approveOrRejectBillsBulkActionEpic_1.approveOrRejectBillsBulkActionEpic, approveOrRejectRemiEpic_1.approveOrRejectRemiEpic, approveOrRejectRemisBulkActionEpic_1.approveOrRejectRemisBulkActionEpic, approveVendorGlobalReviewEpic_1.approveVendorGlobalReviewEpic, archiveCardPolicyEpic_1.archiveCardPolicyEpic, invoicingCatalogSubFamilyEpics_1.archiveInvoicingCatalogSubFamilyEpic, archiveTaskEpic_1.archiveTaskEpic, backgroundRefetchReviewTabEpic_1.backgroundRefetchReviewTabEpic, bulkUpdateTaskListEpic_1.bulkUpdateTaskListEpic, watchBulkUploadBatchStatusEpic_1.bulkUploadAutomatchingTimeoutEpic, bulkUploadMatchResultToastEpic_1.bulkUploadMatchResultToastEpic, bulkUploadReceiptsEpic_1.bulkUploadReceiptsEpic, cancelAiAccountantOnboardingEpic_1.cancelAiAccountantOnboardingEpic, cancelAndDeleteBillEpic_1.cancelAndDeleteBillEpic, cancelAndDeleteRemiEpic_1.cancelAndDeleteRemiEpic, cancelOrDeleteBillsBulkActionEpic_1.cancelOrDeleteBillsBulkActionEpic, cancelOrDeleteRemisBulkActionEpic_1.cancelOrDeleteRemisBulkActionEpic, cancelScheduleAccruedJournalEntryEpic_1.cancelScheduleAccruedJournalEntryEpic, changeZeniPersonRolesEpic_1.changeZeniPersonRolesEpic, checkDepositEpic_1.checkDepositEpic, clearAllEpic_1.clearAllEpic, closeChargeCardEpic_1.closeChargeCardEpic, closeChargeCardsEpic_1.closeChargeCardsEpic, companyManagementSavePendingUpdates_1.companyManagementSavePendingUpdatesEpic, companyManagementSaveUpdatesEpic_1.companyManagementSaveUpdatesEpic, confirmBulkUploadMatchEpic_1.confirmBulkUploadMatchEpic, confirmCardSetupIntentEpic_1.confirmCardSetupIntentEpic, settingsViewEpics_1.connectInvoicingStripeEpic, convertAmountToHomeCurrencyEpic_1.convertAmountToHomeCurrencyEpic, createAddressEpic_1.createAddressEpic, createAutoTransferRuleEpic_1.createAutoTransferRuleEpic, createBankAccountEpic_1.createBankAccountEpic, createCardPolicyTemplateEpic_1.createCardPolicyTemplatesEpic, createCardSetupIntentEpic_1.createCardSetupIntentEpic, createCheckingAccountEpic_1.createCheckingAccountEpic, createCompanyAddressEpic_1.createCompanyAddressEpic, createCompanyOfficersEpic_1.createCompanyOfficersEpic, createCompanyUserAddressEpic_1.createCompanyUserAddressEpic, createCreditNoteEpic_1.createCreditNoteEpic, createGlobalMerchantEpic_1.createGlobalMerchantEpic, createInternationalBankAccountEpic_1.createInternationalBankAccountEpic, createInvoiceEpic_1.createInvoiceEpic, invoicingCatalogSubFamilyEpics_1.createInvoicingCatalogSubFamilyEpic, customerPaymentMethodEpic_1.createInvoicingSetupIntentEpic, createNewSchedulesAccruedEpic_1.createNewSchedulesAccruedEpic, createNewSchedulesEpic_1.createNewSchedulesEpic, createNewTaskGroupEpic_1.createNewTaskGroupEpic, createInternationalPaymentInstrumentEpic_1.createPaymentInstrumentEpic, createSessionAndSubmitEpic_1.createSessionAndSubmitEpic, createSessionEpic_1.createSessionEpic, createSubTaskEpic_1.createSubTaskEpic, createTagEpic_1.createTagEpic, createTaskFromTaskGroupTemplateEpic_1.createTaskFromTaskGroupTemplateEpic, createTransferEntryEpic_1.createTransferEntryEpic, createUserBankAccountEpic_1.createUserBankAccountEpic, deleteAccountStatementEpic_1.deleteAccountStatementEpic, deleteAutoTransferRuleEpic_1.deleteAutoTransferRuleEpic, deleteBankAccountEpic_1.deleteBankAccountEpic, deleteBillEpic_1.deleteBillEpic, deleteBillPayApprovalRuleEpic_1.deleteBillPayApprovalRuleEpic, deleteCannedResponseEpic_1.deleteCannedResponseEpic, deleteChatSessionEpic_1.deleteChatSessionEpic, deleteConnectionEpic_1.deleteConnectionEpic, deleteFileEpic_1.deleteFileEpic, deleteFileListEpic_1.deleteFileListEpic, deleteInternationalBankAccountEpic_1.deleteInternationalBankAccountEpic, deletePaymentInstrumentEpic_1.deletePaymentInstrumentEpic, deletePersonEpic_1.deletePersonEpic, deleteRemiApprovalRuleEpic_1.deleteRemiApprovalRuleEpic, deleteRemiEpic_1.deleteRemiEpic, deleteScheduleAccruedDetailEpic_1.deleteScheduleAccruedDetailEpic, deleteScheduleDetailEpic_1.deleteScheduleDetailEpic, deleteTagEpic_1.deleteTagEpic, deleteTaskEpic_1.deleteTaskEpic, deleteTaskGroupEpic_1.deleteTaskGroupEpic, deleteTransactionAttachmentEpic_1.deleteTransactionAttachmentEpic, deleteUserBankAccountEpic_1.deleteUserBankAccountEpic, settingsViewEpics_1.disconnectInvoicingStripeEpic, dismissCapitalizationOnboardingEpic_1.dismissCapitalizationOnboardingEpic, doMagicLinkSignInEpic_1.doMagicLinkSignInEpic, signInUserEpic_1.doSignInEpic, signOutUserEpic_1.doSignOutEpic, downloadAccountingProviderAttachmentEpic_1.downloadAccountingProviderAttachmentEpic, dragNDropTasksEpic_1.dragNDropTasksEpic, enableChargeCardAutoPayEpic_1.enableChargeCardAutoPayEpic, enableInvoicingEpic_1.enableInvoicingEpic, enableSetupEpic_1.enableSetupEpic, establishOnboardingPlaidConnectionEpic_1.establishOnboardingPlaidConnectionEpic, establishPlaidConnectionEpic_1.establishPlaidConnectionEpic, excludeAccountFromReconciliationEpic_1.excludeAccountFromReconciliationEpic, expressInterestChargeCardEpic_1.expressInterestChargeCardEpic, extractPolicyDocumentEpic_1.extractPolicyDocumentEpic, fetchAccountListEpic_1.fetchAccountListEpic, fetchAccountListForAccountTypesEpic_1.fetchAccountListForAccountTypesEpic, fetchAccountSettingsListForAccountTypesEpic_1.fetchAccountSettingsListForAccountTypesEpic, fetchAccruedScheduleListEpic_1.fetchAccruedScheduleListEpic, fetchActiveTenantEpic_1.fetchActiveTenantEpic, fetchAddressEpic_1.fetchAddressEpic, aggregatedReportEpic_1.fetchAggregatedReportEpic, fetchAiAccountantCustomersEpic_1.fetchAiAccountantCustomersEpic, fetchAiAccountantJobsEpic_1.fetchAiAccountantJobsEpic, fetchAiAgentsActivationStatusEpic_1.fetchAiAgentsActivationStatusEpic, fetchAllCockpitViewsEpic_1.fetchAllCockpitViewsEpic, fetchAllExpenseAutomationTabsEpic_1.fetchAllExpenseAutomationTabsEpic, fetchAllPeopleRequiredViewsEpic_1.fetchAllPeopleRequiredViewsEpic, fetchAllTagsEpic_1.fetchAllTagsEpic, fetchAllTaskGroupsEpic_1.fetchAllTaskGroupsEpic, fetchAllTenantsEpic_1.fetchAllTenantsEpic, fetchAndUpdateVendorRecommendationsEpic_1.fetchAndUpdateVendorRecommendationsEpic, fetchApAgingDetailEpic_1.fetchApAgingDetailEpic, fetchApAgingEpic_1.fetchApAgingEpic, fetchArAgingDetailEpic_1.fetchArAgingDetailEpic, fetchArAgingEpic_1.fetchArAgingEpic, fetchAuditReportGroupViewEpic_1.fetchAuditReportGroupViewEpic, fetchAuditRuleGroupViewEpic_1.fetchAuditRuleGroupViewEpic, fetchAutoTransferReviewDetailEpic_1.fetchAutoTransferReviewDetailEpic, fetchAutoTransferRuleHistory_1.fetchAutoTransferRuleHistoryEpic, fetchAutoTransferRulesEpic_1.fetchAutoTransferRulesEpic, balanceSheetEpic_1.fetchBalanceSheetEpic, balanceSheetForTimeframeEpic_1.fetchBalanceSheetForTimeframeEpic, fetchBankAccountsListEpic_1.fetchBankAccountsListEpic, fetchBankConnectionsViewEpic_1.fetchBankConnectionsViewEpic, fetchBankCountryNameByIbanEpic_1.fetchBankCountryNameByIbanEpic, fetchBankNameByRoutingEpic_1.fetchBankNameByRoutingEpic, fetchBankNameBySwiftEpic_1.fetchBankNameBySwiftEpic, fetchBillAndInitializeLocalStoreEpic_1.fetchBillAndInitializeLocalStoreEpic, fetchBillDetailEpic_1.fetchBillDetailEpic, fetchBillingAccountsViewEpic_1.fetchBillingAccountsListEpic, fetchBillListEpic_1.fetchBillListEpic, fetchBillListPerTabEpic_1.fetchBillListPerTabEpic, fetchBillPayApproversDetailsEpic_1.fetchBillPayApproversDetailsEpic, fetchBillPayApproversListEpic_1.fetchBillPayApproversListEpic, fetchBillPayCardEpic_1.fetchBillPayCardEpic, fetchBillPayConfigEpic_1.fetchBillPayConfigEpic, fetchBillPaySetupApproverViewEpic_1.fetchBillPaySetupApproverViewEpic, fetchBillPaySetupViewEpic_1.fetchBillPaySetupViewEpic, fetchBulkUploadBatchDetailsEpic_1.fetchBulkUploadBatchDetailsEpic, fetchBulkUploadBatchesEpic_1.fetchBulkUploadBatchesEpic, fetchCannedResponsesEpic_1.fetchCannedResponsesEpic, cardBalanceEpic_1.fetchCardBalanceEpic, fetchCardPolicyDetailEpic_1.fetchCardPolicyDetailEpic, fetchCardPolicyListEpic_1.fetchCardPolicyListEpic, fetchCardPolicyMccCategoriesEpic_1.fetchCardPolicyMccCategoriesEpic, fetchCardPolicyVendorOptionsEpic_1.fetchCardPolicyVendorOptionsEpic, fetchCardProfilesEpic_1.fetchCardProfilesEpic, fetchCashbackDetailEpic_1.fetchCashbackDetailEpic, cashBalanceEpic_1.fetchCashBalanceEpic, cashFlowEpic_1.fetchCashFlowEpic, cashFlowForTimeframeEpic_1.fetchCashFlowForTimeframeEpic, cashInCashOutEpic_1.fetchCashInCashOutEpic, cashPositionEpic_1.fetchCashPositionEpic, fetchChargeCardConfigEpic_1.fetchChargeCardConfigEpic, fetchChargeCardDetailEpic_1.fetchChargeCardDetailEpic, fetchChargeCardDetailPageEpic_1.fetchChargeCardDetailPageEpic, fetchChargeCardListEpic_1.fetchChargeCardListEpic, fetchChargeCardListPageEpic_1.fetchChargeCardListPageEpic, fetchChargeCardPaymentHistoryEpic_1.fetchChargeCardPaymentHistoryEpic, fetchChargeCardPaymentPageEpic_1.fetchChargeCardPaymentPageEpic, fetchChargeCardRepaymentDetailEpic_1.fetchChargeCardRepaymentDetailEpic, fetchChargeCardSetupViewEpic_1.fetchChargeCardSetupViewEpic, fetchChargeCardsRecurringExpensesEpic_1.fetchChargeCardsRecurringExpensesEpic, fetchChargeCardStatementListEpic_1.fetchChargeCardStatementListEpic, fetchChargeCardTransactionAttachmentsEpic_1.fetchChargeCardTransactionAttachmentsEpic, fetchChargeCardTransactionListEpic_1.fetchChargeCardTransactionListEpic, fetchChargeCardTransactionStatisticsEpic_1.fetchChargeCardTransactionStatisticsEpic, fetchChatHistoryEpic_1.fetchChatHistoryEpic, fetchChatSessionsForUserEpic_1.fetchChatSessionsForUserEpic, fetchClassListEpic_1.fetchClassListEpic, fetchCockpitContextEpic_1.fetchCockpitContextEpic, fetchCollaborationAuthTokenEpic_1.fetchCollaborationAuthTokenEpic, fetchCompanyBillingAddressEpic_1.fetchCompanyBillingAddressEpic, companyConfigEpic_1.fetchCompanyConfigEpic, fetchCompanyHealthMetricConfigEpic_1.fetchCompanyHealthMetricConfigEpic, fetchCompanyHealthMetricViewEpic_1.fetchCompanyHealthMetricViewEpic, fetchCompanyManagementViewEpic_1.fetchCompanyManagementViewEpic, fetchCompanyMetaDataEpic_1.fetchCompanyMetaDataEpic, fetchCompanyMonthEndReportHistoricDataEpic_1.fetchCompanyMonthEndReportHistoricDataEpic, fetchCompanyMonthEndReportHistoricDatesEpic_1.fetchCompanyMonthEndReportHistoricDatesEpic, fetchCompanyMonthEndReportTemplatesEpic_1.fetchCompanyMonthEndReportTemplatesEpic, fetchCompanyMonthEndReportViewEpic_1.fetchCompanyMonthEndReportViewEpic, fetchCompanyOnboardingViewEpic_1.fetchCompanyOnboardingViewEpic, fetchCompanyPassportViewEpic_1.fetchCompanyPassportViewEpic, fetchCompanyPortfolioViewEpic_1.fetchCompanyPortfolioViewEpic, fetchCompanyTaskManagerViewEpic_1.fetchCompanyTaskManagerViewEpic, fetchCompletedTransactionsEpic_1.fetchCompletedTransactionsEpic, fetchCreditAccountEpic_1.fetchCreditAccountEpic, fetchCreditAccountRepaymentEpic_1.fetchCreditAccountRepaymentEpic, fetchCreditAgentMacroEpic_1.fetchCreditAgentMacroEpic, fetchCurrencyConversionValueEpic_1.fetchCurrencyConversionValueEpic, dashboardEpic_1.fetchDashboardEpic, fetchDashboardLayoutEpic_1.fetchDashboardLayoutEpic, fetchDebitCardSummaryEpic_1.fetchDebitCardSummaryEpic, fetchDepositAccountDetailEpic_1.fetchDepositAccountDetailEpic, fetchDepositAccountEpic_1.fetchDepositAccountEpic, fetchDepositAccountHistoryEpic_1.fetchDepositAccountHistoryEpic, fetchDepositAccountLimitEpic_1.fetchDepositAccountLimitEpic, fetchDepositAccountListEpic_1.fetchDepositAccountListEpic, fetchDepositAccountListForCardsEpic_1.fetchDepositAccountListForCardsEpic, fetchDepositAccountTransactionListEpic_1.fetchDepositAccountTransactionListEpic, fetchDownloadSchedulesEpic_1.fetchDownloadSchedulesEpic, fetchDuplicateBillEpic_1.fetchDuplicateBillPayReviewEpic, fetchDuplicateReimbursementEpic_1.fetchDuplicateReimbursementEpic, fetchEditBillDetailPageEpic_1.fetchEditBillDetailPageEpic, fetchEditRemiDetailPageEpic_1.fetchEditRemiDetailPageEpic, fetchEligibleActionsForBillEpic_1.fetchEligibleActionsForBillEpic, fetchEntityAutoCompleteEpic_1.fetchEntityAutoCompleteEpic, fetchEntityHistoryEpic_1.fetchEntityHistoryEpic, fetchEntityRecommendationsByTransactionIdEpic_1.fetchEntityRecommendationsByTransactionIdEpic, fetchEntityRecommendationsForLineUpdateEpic_1.fetchEntityRecommendationsForLineUpdateEpic, fetchExcludedResourcesEpic_1.fetchExcludedResourcesEpic, fetchFluxAnalysisViewEpic_1.fetchFluxAnalysisViewEpic, initializeTransactionCategorizationLocalDataEpic_1.initializeTransactionCategorizationViewLocalDataEpic, fetchJeSchedulesEpic_1.fetchJeSchedulesEpic, fetchJeSchedulePageEpic_1.fetchJeSchedulesPageEpic, markTransactionAsNotMiscategorizedEpic_1.markTransactionAsNotMiscategorizedEpic, fetchMissingReceiptsEpic_1.fetchMissingReceiptsEpic, fetchReconciliationViewEpic_1.fetchReconciliationViewEpic, saveTransactionCategorizationEpic_1.saveTransactionCategorizationEpic, fetchTransactionCategorizationEpic_1.fetchTransactionCategorizationEpic, fetchTransactionCategorizationViewEpic_1.fetchTransactionCategorizationViewEpic, updateTransactionCategorizationEpic_1.updateTransactionCategorizationEpic, fetchExpenseTrendEpic_1.fetchExpenseTrendEpic, fetchExpressPayInitialDetailsEpic_1.fetchExpressPayInitialDetailsEpic, fetchExternalConnectionsEpic_1.fetchExternalConnectionsEpic, fetchFileEpic_1.fetchFileEpic, fetchFileListEpic_1.fetchFileListEpic, financeStatementEpic_1.fetchFinanceStatementEpic, fetchForecastListEpic_1.fetchForecastListEpic, fetchGlobalMerchantAutoCompleteViewEpic_1.fetchGlobalMerchantAutoCompleteViewEpic, fetchGlobalMerchantRecommendationEpic_1.fetchGlobalMerchantRecommendationEpic, fetchIncomeTrendEpic_1.fetchIncomeTrendEpic, insightsCardEpic_1.fetchInsightsCardEpic, fetchInternationalWireDynamicFormEpic_1.fetchInternationalWireDynamicFormEpic, fetchIntlVerificationFormEpic_1.fetchIntlVerificationFormEpic, fetchInvoiceCountsEpic_1.fetchInvoiceCountsEpic, fetchInvoiceDetailEpic_1.fetchInvoiceDetailEpic, fetchInvoiceKPIsEpic_1.fetchInvoiceKPIsEpic, fetchInvoiceListEpic_1.fetchInvoiceListEpic, fetchInvoiceListPageEpic_1.fetchInvoiceListPageEpic, auditViewEpics_1.fetchInvoicingAuditLogEpic, fetchInvoicingCatalogCountsEpic_1.fetchInvoicingCatalogCountsEpic, invoicingCatalogItemDetailViewEpics_1.fetchInvoicingCatalogItemDetailEpic, fetchInvoicingCatalogListPageEpic_1.fetchInvoicingCatalogListPageEpic, fetchInvoicingCatalogPlanListEpic_1.fetchInvoicingCatalogPlanListEpic, fetchInvoicingCatalogProductListEpic_1.fetchInvoicingCatalogProductListEpic, fetchInvoicingConfigEpic_1.fetchInvoicingConfigEpic, couponViewEpics_1.fetchInvoicingCouponCountsEpic, fetchInvoicingCouponDetailEpic_1.fetchInvoicingCouponDetailEpic, couponViewEpics_1.fetchInvoicingCouponListEpic, couponViewEpics_1.fetchInvoicingCouponListPageEpic, fetchInvoicingCreditNoteCountsEpic_1.fetchInvoicingCreditNoteCountsEpic, invoicingCreditNoteDetailViewEpics_1.fetchInvoicingCreditNoteDetailEpic, fetchInvoicingCreditNoteListEpic_1.fetchInvoicingCreditNoteListEpic, fetchInvoicingCreditNoteListPageEpic_1.fetchInvoicingCreditNoteListPageEpic, fetchInvoicingCustomerCountsEpic_1.fetchInvoicingCustomerCountsEpic, fetchInvoicingCustomerDetailEpic_1.fetchInvoicingCustomerDetailEpic, fetchInvoicingCustomerDetailPageEpic_1.fetchInvoicingCustomerDetailPageEpic, fetchInvoicingCustomerListEpic_1.fetchInvoicingCustomerListEpic, fetchInvoicingCustomerListPageEpic_1.fetchInvoicingCustomerListPageEpic, dataImportViewEpics_1.fetchInvoicingDataImportStatusEpic, fetchInvoicingDunningCaseCountsEpic_1.fetchInvoicingDunningCaseCountsEpic, invoicingDunningCaseDetailViewEpics_1.fetchInvoicingDunningCaseDetailEpic, fetchInvoicingDunningCaseListEpic_1.fetchInvoicingDunningCaseListEpic, fetchInvoicingDunningCaseListPageEpic_1.fetchInvoicingDunningCaseListPageEpic, dataImportViewEpics_1.fetchInvoicingMigrationDiagnosticsEpic, dataImportViewEpics_1.fetchInvoicingMigrationSessionEpic, dataImportViewEpics_1.fetchInvoicingMigrationSessionsEpic, fetchInvoicingOverviewChurnEpic_1.fetchInvoicingOverviewChurnEpic, fetchInvoicingOverviewDashboardSummaryEpic_1.fetchInvoicingOverviewDashboardSummaryEpic, fetchInvoicingOverviewEpic_1.fetchInvoicingOverviewEpic, fetchInvoicingOverviewKPIsEpic_1.fetchInvoicingOverviewKPIsEpic, fetchInvoicingOverviewMRREpic_1.fetchInvoicingOverviewMRREpic, fetchInvoicingOverviewPlanRevenueEpic_1.fetchInvoicingOverviewPlanRevenueEpic, fetchInvoicingOverviewRevenueEpic_1.fetchInvoicingOverviewRevenueEpic, customerPaymentMethodEpic_1.fetchInvoicingPlaidLinkTokenEpic, settingsViewEpics_1.fetchInvoicingSettingsEpic, fetchInvoicingSubscriptionCountsEpic_1.fetchInvoicingSubscriptionCountsEpic, invoicingSubscriptionDetailViewEpics_1.fetchInvoicingSubscriptionDetailEpic, fetchInvoicingSubscriptionFormPageEpic_1.fetchInvoicingSubscriptionFormPageEpic, fetchInvoicingSubscriptionListEpic_1.fetchInvoicingSubscriptionListEpic, fetchInvoicingSubscriptionListPageEpic_1.fetchInvoicingSubscriptionListPageEpic, invoicingTransactionDetailViewEpics_1.fetchInvoicingTransactionDetailEpic, fetchInvoicingTransactionListEpic_1.fetchInvoicingTransactionListEpic, fetchInvoicingTransactionListPageEpic_1.fetchInvoicingTransactionListPageEpic, fetchIssueCardPageEpic_1.fetchIssueCardPageEpic, fetchMagicLinkBankNameByRoutingEpic_1.fetchMagicLinkBankNameByRoutingEpic, fetchMagicLinkBankNameBySwiftEpic_1.fetchMagicLinkBankNameBySwiftEpic, fetchMagicLinkBillEpic_1.fetchMagicLinkBillEpic, fetchMagicLinkTenantEpic_1.fetchMagicLinkTenantEpic, fetchManagementViewEpic_1.fetchManagementViewEpic, fetchMerchantListEpic_1.fetchMerchantListEpic, fetchMonthClosePerformanceTrendEpic_1.fetchMonthClosePerformanceTrendEpic, fetchMonthEndCloseChecksEpic_1.fetchMonthEndCloseChecksEpic, fetchMoreBatchDetailsEpic_1.fetchMoreBatchDetailsEpic, fetchMultipleBatchDetailsEpic_1.fetchMultipleBatchDetailsEpic, fetchMyProfileEpic_1.fetchMyProfileEpic, fetchMyProfileViewEpic_1.fetchMyProfileViewEpic, netBurnOrIncomeClassesViewEpic_1.fetchNetBurnOrIncomeClassesViewEpic, netBurnOrIncomeEpic_1.fetchNetBurnOrIncomeEpic, netBurnOrIncomeForTimeframeClassesViewEpic_1.fetchNetBurnOrIncomeForTimeframeClassesViewEpic, netBurnOrIncomeForTimeframeEpic_1.fetchNetBurnOrIncomeForTimeframeEpic, fetchNetBurnOrIncomeStoryCardEpic_1.fetchNetBurnOrIncomeStoryCardEpic, fetchNetBurnOrIncomeWithForecastEpic_1.fetchNetBurnOrIncomeWithForecastEpic, fetchNotificationSettingsEpic_1.fetchNotificationSettingsEpic, fetchNotificationSettingsViewEpic_1.fetchNotificationSettingsViewEpic, fetchNotificationUnreadCountEpic_1.fetchNotificationUnreadCountEpic, fetchNotificationViewEpic_1.fetchNotificationViewEpic, fetchOnboardingCompletedCompaniesEpic_1.fetchOnboardingCompletedCompaniesEpic, fetchOnboardingCustomerSetupViewEpic_1.fetchOnboardingCustomerSetupViewEpic, fetchOnboardingCustomerViewEpic_1.fetchOnboardingCustomerViewEpic, fetchOnboardingViewEpic_1.fetchOnboardingViewEpic, fetchOpExByVendorReportEpic_1.fetchOpExByVendorEpic, fetchOpExByVendorReportForTimeframeEpic_1.fetchOpExByVendorReportForTimeframeEpic, fetchOpExByVendorReportSummaryEpic_1.fetchOpExByVendorReportSummaryEpic, opExClassesViewEpic_1.fetchOpExClassesViewEpic, opExEpic_1.fetchOpExEpic, opExForTimeframeClassesViewEpic_1.fetchOpExForTimeframeClassesViewEpic, opExForTimeFrameEpic_1.fetchOpExReportForTimeframeEpic, fetchOpExWithForecastEpic_1.fetchOpExWithForecastEpic, fetchOwnerListEpic_1.fetchOwnerListEpic, fetchParentSubsidiaryManagementViewEpic_1.fetchParentSubsidiaryManagementViewEpic, fetchPaymentAccountBalanceEpic_1.fetchPaymentAccountBalanceEpic, fetchPaymentAccountListEpic_1.fetchPaymentAccountListEpic, fetchPaymentSourcesEpic_1.fetchPaymentSourcesEpic, fetchPeopleEpic_1.fetchPeopleEpic, peoplePageEpic_1.fetchPeoplePageEpic, fetchPortfolioAllocationEpic_1.fetchPortfolioAllocationEpic, fetchPortfolioViewEpic_1.fetchPortfolioViewEpic, fetchPreviousBillsEpic_1.fetchPreviousBillsEpic, profitAndLossClassesViewEpic_1.fetchProfitAndLossClassesViewEpic, profitAndLossEpic_1.fetchProfitAndLossEpic, profitAndLossForTimeframeClassesViewEpic_1.fetchProfitAndLossForTimeframeClassesViewEpic, profitAndLossForTimeframeEpic_1.fetchProfitAndLossForTimeframeEpic, profitAndLossForTimeframeProjectViewEpic_1.fetchProfitAndLossForTimeframeProjectViewEpic, profitAndLossProjectViewEpic_1.fetchProfitAndLossProjectViewEpic, fetchProjectListEpic_1.fetchProjectListEpic, fetchQBOConnectionPoolEpic_1.fetchQBOConnectionPoolEpic, fetchRecommendationByEntityIdEpic_1.fetchRecommendationByEntityIdEpic, fetchRecommendationByEntityNameEpic_1.fetchRecommendationByEntityNameEpic, fetchRecommendationForAccountSettingsEpic_1.fetchRecommendationForAccountSettingsEpic, fetchRecommendationForAccountTypeEpic_1.fetchRecommendationForAccountTypeEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic_1.fetchRecommendationsAndUpdateMerchantRecommendationsEpic, fetchRecommendedTransactionRowIndexEpic_1.fetchRecommendedTransactionRowIndexEpic, fetchReferralsEpic_1.fetchReferralsEpic, fetchRegisteredInterestsEpic_1.fetchRegisteredInterestsEpic, fetchReimbursementCardEpic_1.fetchReimbursementCardEpic, fetchReimbursementConfigEpic_1.fetchReimbursementConfigEpic, fetchRemiAndInitializeLocalStoreEpic_1.fetchRemiAndInitializeLocalStoreEpic, fetchRemiApproversDetailsEpic_1.fetchRemiApproversDetailsEpic, fetchRemiApproversListEpic_1.fetchRemiApproversListEpic, fetchRemiDetailEpic_1.fetchRemiDetailEpic, fetchRemiListEpic_1.fetchRemiListEpic, fetchRemiListPerTabEpic_1.fetchRemiListPerTabEpic, fetchRemiSetupApproverViewEpic_1.fetchRemiSetupApproverViewEpic, fetchRemiSetupViewEpic_1.fetchRemiSetupViewEpic, revenueClassesViewEpic_1.fetchRevenueClassesViewEpic, revenueEpic_1.fetchRevenueEpic, revenueForTimeframeClassesViewEpic_1.fetchRevenueForTimeframeClassesViewEpic, revenueForTimeframeEpic_1.fetchRevenueForTimeframeEpic, fetchRevenueWithForecastEpic_1.fetchRevenueWithForecastEpic, fetchReviewCompanyViewEpic_1.fetchReviewCompanyViewEpic, fetchReviewTransferDetailEpic_1.fetchReviewTransferDetailEpic, fetchRewardsPlanEpic_1.fetchRewardsPlanEpic, fetchScheduleAccruedDetailsEpic_1.fetchScheduleAccruedDetailsEpic, fetchScheduleAccruedDetailsPageEpic_1.fetchScheduleAccruedDetailsPageEpic, fetchScheduleDetailsEpic_1.fetchScheduleDetailsEpic, fetchScheduleDetailsPageEpic_1.fetchScheduleDetailsPageEpic, fetchScheduleListEpic_1.fetchScheduleListEpic, fetchSchedulesAccountEpic_1.fetchSchedulesAccountEpic, fetchSkillsEpic_1.fetchSkillsEpic, fetchSubscriptionAddOnsEpic_1.fetchSubscriptionAddOnsEpic, fetchSubscriptionCouponsEpic_1.fetchSubscriptionCouponsEpic, fetchSubscriptionCreateEstimateEpic_1.fetchSubscriptionCreateEstimateEpic, fetchSubscriptionDetailsEpic_1.fetchSubscriptionDetailsEpic, fetchSubscriptionListEpic_1.fetchSubscriptionListEpic, fetchSubscriptionPlansEpic_1.fetchSubscriptionPlansEpic, fetchSubscriptionSummaryForTenantEpic_1.fetchSubscriptionSummaryForTenantEpic, fetchSubscriptionUpdateEstimateEpic_1.fetchSubscriptionUpdateEstimateEpic, fetchSubscriptionViewEpic_1.fetchSubscriptionViewEpic, fetchSubTasksEpic_1.fetchSubTasksEpic, fetchSuggestedQuestionsEpic_1.fetchSuggestedQuestionsEpic, fetchTaskDetailEpic_1.fetchTaskDetailEpic, fetchTaskDetailPageEpic_1.fetchTaskDetailPageEpic, fetchTaskGroupTemplatesEpic_1.fetchTaskGroupTemplatesEpic, fetchTaskHistoryEpic_1.fetchTaskHistoryEpic, fetchTaskListEpic_1.fetchTaskListEpic, fetchTaskListPageEpic_1.fetchTaskListPageEpic, fetchTaskManagerMetricsEpic_1.fetchTaskManagerMetricsEpic, fetchTasksCardEpic_1.fetchTasksCardEpic, topExEpic_1.fetchTopExEpic, fetchTransactionActivityLogEpic_1.fetchTransactionActivityLogEpic, transactionDetailEpic_1.fetchTransactionDetailEpic, fetchTransactionListByAccountEpic_1.fetchTransactionListByAccountEpic, fetchTransactionListByClassEpic_1.fetchTransactionListByClassEpic, fetchTransactionListByEntityEpic_1.fetchTransactionListByEntityEpic, fetchTransactionListByProjectEpic_1.fetchTransactionListByProjectEpic, fetchTransactionsForEntityEpic_1.fetchTransactionsForEntityEpic, fetchTransactionsListByCategoryTypeEpic_1.fetchTransactionsListByCategoryTypeEpic, fetchTransferAccountsEpic_1.fetchTransferAccountsEpic, fetchTreasuryDetailEpic_1.fetchTreasuryDetailEpic, fetchTreasuryFundsEpic_1.fetchTreasuryFundsEpic, fetchTreasuryHistoryEpic_1.fetchTreasuryHistoryEpic, fetchTreasurySetupViewEpic_1.fetchTreasurySetupViewEpic, fetchTreasuryStatementListEpic_1.fetchTreasuryStatementListEpic, fetchTreasuryTaxLetterListEpic_1.fetchTreasuryTaxLetterListEpic, fetchTreasuryTransactionListEpic_1.fetchTreasuryTransactionListEpic, fetchTrendForEntityEpic_1.fetchTrendForEntityEpic, fetchUserDetailEpic_1.fetchUserDetailEpic, fetchUserFinancialAccountEpic_1.fetchUserFinancialAccountEpic, fetchUserListByTypeEpic_1.fetchUserListByTypeEpic, userRoleConfigEpic_1.fetchUserRoleConfigEpic, vendor1099TypeListEpic_1.fetchVendor1099TypeListEpic, fetchVendorAndUpdateBillLocalDataEpic_1.fetchVendorAndUpdateBillLocalDataEpic, fetchVendorByNameAndParseInvoice_1.fetchVendorByNameAndParseInvoiceEpic, fetchVendorDetailsEpic_1.fetchVendorDetailsEpic, fetchVendorEpic_1.fetchVendorEpic, fetchVendorFirstReviewAttachmentsEpic_1.fetchVendorFirstReviewAttachmentsEpic, fetchVendorFirstReviewViewEpic_1.fetchVendorFirstReviewViewEpic, fetchVendorGlobalReviewViewEpic_1.fetchVendorGlobalReviewViewEpic, fetchVendorsFiling1099AllEpic_1.fetchVendorsFiling1099AllEpic, fetchVendorsFiling1099DownloadEpic_1.fetchVendorsFiling1099DownloadEpic, fetchVendorsFiling1099ListEpic_1.fetchVendorsFiling1099ListEpic, fetchVendorsListEpic_1.fetchVendorsListEpic, fetchVendorsTabVendorDetailPageViewEpic_1.fetchVendorsTabVendorDetailPageViewEpic, fetchVendorsTabVendorDetailsEpic_1.fetchVendorsTabVendorDetailsEpic, fetchVendorsTabVendorEpic_1.fetchVendorsTabVendorEpic, fetchVendorTabViewEpic_1.fetchVendorTabViewEpic, vendorTypeListEpic_1.fetchVendorTypeListEpic, fetchZeniAccountListPageEpic_1.fetchZeniAccountListEpic, fetchZeniAccountsConfigEpic_1.fetchZeniAccountsConfigEpic, fetchZeniAccountSetupViewEpic_1.fetchZeniAccountSetupViewEpic, zeniAccountsPromoCardEpic_1.fetchZeniAccountsPromoCardEpic, fetchZeniAccStatementListEpic_1.fetchZeniAccStatementListEpic, fetchZeniAccStatementPageEpic_1.fetchZeniAccStatementPageEpic, fetchZeniUsersEpic_1.fetchZeniUsersEpic, getOnboardingEmailGroupEpic_1.getOnboardingEmailGroupEpic, getOnboardingPlaidLinkTokenEpic_1.getOnboardingPlaidLinkTokenEpic, getPaymentAccountsEpic_1.getPaymentAccountsEpic, getPlaidLinkTokenEpic_1.getPlaidLinkTokenEpic, ignoreRecommendedJeScheduleEpic_1.ignoreRecommendedJeScheduleEpic, improveUsingZeniGPTEpic_1.improveUsingZeniGPTEpic, includeAccountInReconciliationEpic_1.includeAccountInReconciliationEpic, initEmailConnectOAuthEpic_1.initEmailConnectOAuthEpic, initialiseLocalDataForSelectedAccountIdEpic_1.initialiseDataForSelectedAccountIdEpic, initializeAccountMappingViewEpic_1.initializeAccountMappingViewEpic, initializeAccountSettingsViewEpic_1.initializeAccountSettingsViewEpic, initializeBillPaySetupApproverViewUpdateDataEpic_1.initializeBillPaySetupApproverViewUpdateDataEpic, initializeBillToLocalStoreEpic_1.initializeBillToLocalStoreEpic, initializeCardUserOnboardingLocalDataEpic_1.initializeCardUserOnboardingLocalDataEpic, initializeCompanyHealthMetricViewLocalData_1.initializeCompanyHealthMetricViewLocalDataEpic, initializeDynamicFormEpic_1.initializeDynamicFormEpic, initializeEditPersonEpic_1.initializeEditPersonEpic, initializeJeScheduleLocalDataEpic_1.initializeJeScheduleLocalDataEpic, initializeInternationalWireLocalDataEpic_1.initializeInternationalWireLocalDataEpic, initializeIntlVerificationFormEpic_1.initializeIntlVerificationFormEpic, invoicingBrandingFormEpics_1.initializeInvoicingBrandingAddressEpic, initializeInvoicingCustomerAddressEpic_1.initializeInvoicingCustomerAddressEpic, initializeInvoicingSubscriptionAddressEpic_1.initializeInvoicingSubscriptionAddressEpic, initializeMyProfileLocalDataEpic_1.initializeMyProfileLocalDataEpic, initializeOnboardingCustomerViewUpdateDataEpic_1.initializeOnboardingCustomerViewUpdateDataEpic, initializeRemiSetupApproverViewUpdateDataEpic_1.initializeRemiSetupApproverViewUpdateDataEpic, initializeRemiToLocalStoreEpic_1.initializeRemiToLocalStoreEpic, initializeScheduleAccruedDetailLocalDataEpic_1.initializeScheduleAccruedDetailLocalDataEpic, initializeScheduleDetailLocalDataEpic_1.initializeScheduleDetailLocalDataEpic, initializeSubscriptionLocalDataEpic_1.initializeSubscriptionLocalDataEpic, initializeTaskToLocalStoreEpic_1.initializeTaskToLocalStoreEpic, initializeTransactionDetailLocalDataEpic_1.initializeTransactionDetailLocalDataEpic, initializeVendorAddressEpic_1.initializeVendorAddressEpic, initiateChargeCardRepaymentEpic_1.initiateChargeCardRepaymentEpic, reportsClassViewRefetchingEpic_1.initiateReportsClassViewRefetchingEpic, invitePeopleEpic_1.invitePeopleEpic, inviteZeniPeopleEpic_1.inviteZeniPeopleEpic, dataImportActionEpic_1.invoicingDataImportActionEpic, issueChargeCardEpic_1.issueChargeCardEpic, issueCreditNoteEpic_1.issueCreditNoteEpic, lockChargeCardEpic_1.lockChargeCardEpic, lockChargeCardsEpic_1.lockChargeCardsEpic, markAsCompleteScheduleDetailEpic_1.markAsCompleteScheduleDetailEpic, markTransactionAsNotMiscategorizedEpic_2.markTransactionAsNotMiscategorizedEpic, notifyMeForFeatureEpic_1.notifyMeForFeatureEpic, parallelFetchAccountTransactionListEpic_1.parallelFetchAccountTransactionListEpic, parallelFetchClassTransactionListEpic_1.parallelFetchClassTransactionListEpic, parallelFetchEntityTransactionListEpic_1.parallelFetchEntityTransactionListEpic, parallelFetchProjectTransactionListEpic_1.parallelFetchProjectTransactionListEpic, parallelFetchTransactionListByCategoryTypeEpic_1.parallelFetchTransactionListByCategoryTypeEpic, parseInvoiceToBillEpic_1.parseInvoiceToBillEpic, parseReceiptsToRemiEpic_1.parseReceiptsToRemiEpic, parseStatementEpic_1.parseStatementEpic, parseUploadedKybDocumentEpic_1.parseUploadedKybDocumentEpic, parseUploadedKycDocumentEpic_1.parseUploadedKycDocumentEpic, peopleSaveUpdatesEpic_1.peopleSaveUpdatesEpic, policyDocumentExtractionToRecommendationBridgeEpic_1.policyDocumentExtractionToRecommendationBridgeEpic, policyRecommendationFromUploadEpic_1.policyRecommendationFromUploadEpic, watchBulkUploadBatchStatusEpic_1.pollBulkUploadBatchStatusEpic, watchBulkUploadBatchStatusEpic_1.pusherBatchStatusCompletionEpic, pushToastNotificationEpic_1.pushToastNotificationEpic, recordPaymentEpic_1.recordPaymentEpic, refetchCompletedTransactionsOnBulkUploadSortEpic_1.refetchCompletedTransactionsOnBulkUploadSortEpic, refreshBatchDetailsForBatchIdEpic_1.refreshBatchDetailsForBatchIdEpic, refreshExpenseAutomationCurrentTabEpic_1.refreshExpenseAutomationCurrentTabEpic, refreshIntegrationsDataEpic_1.refreshIntegrationsDataEpic, refreshOpExByVendorReportEpic_1.refreshOpExByVendorReportEpic, rejectVendorGlobalReviewEpic_1.rejectVendorGlobalReviewEpic, reorderBillPayApprovalRulesEpic_1.reorderBillPayApprovalRulesEpic, reorderRemiApprovalRulesEpic_1.reorderRemiApprovalRulesEpic, reparseStatementEpic_1.reparseStatementEpic, reportsResyncEpic_1.reportsResyncEpic, resendCardInviteEpic_1.resendCardInviteEpic, resendInviteEpic_1.resendInviteEpic, resendOtpEpic_1.resendOtpEpic, resendReferralInviteEpic_1.resendReferralInviteEpic, resendVerifyDeviceOTPEpic_1.resendVerifyDeviceOTPEpic, resetTransactionVendorLocalDataEpic_1.resetTransactionVendorLocalDataEpic, resetVendorDetailLocalDataEpic_1.resetVendorDetailLocalDataEpic, resetVendorsTabVendorDetailLocalDataEpic_1.resetVendorsTabVendorDetailLocalDataEpic, restoreBulkUploadAutomatchingOnMountEpic_1.restoreBulkUploadAutomatchingOnMountEpic, retryBankAccountConnectionEpic_1.retryBankAccountConnectionEpic, retryBankAccountConnectionForOnboardingEpic_1.retryBankAccountConnectionForOnboardingEpic, retryJeSchedulesEpic_1.retryJeScheduleEpic, retryOrRefundBillEpic_1.retryOrRefundBillEpic, reviewDraftRemisBulkActionEpic_ts_1.reviewDraftRemisBulkActionEpic, reviewFluxAnalysisEpic_1.reviewFluxAnalysisViewEpic, revokeCardInviteEpic_1.revokeCardInviteEpic, revokeChargeCardsInviteEpic_1.revokeChargeCardsInviteEpic, catalogActionEpic_1.runInvoicingCatalogPlanActionEpic, catalogActionEpic_1.runInvoicingCatalogProductActionEpic, discountActionEpic_1.runInvoicingDiscountActionEpic, dunningActionEpic_1.runInvoicingDunningActionEpic, invoiceActionEpic_1.runInvoicingInvoiceActionEpic, paymentActionEpic_1.runInvoicingPaymentActionEpic, subscriptionActionEpic_1.runInvoicingSubscriptionActionEpic, saveAccountMappingViewEpic_1.saveAccountMappingViewEpic, saveAccountSettingsViewEpic_1.saveAccountSettingsViewEpic, saveAPIKeyConnectionEpic_1.saveAPIKeyConnectionEpic, saveBillDetailEpic_1.saveBillDetailEpic, saveBillPaySetupApproverViewUpdatesEpic_1.saveBillPaySetupApproverViewUpdatesEpic, saveCannedResponseEpic_1.saveCannedResponseEpic, saveCardOnboardingUserDetailsEpic_1.saveCardOnboardingUserDetailsEpic, saveCompanyBillingAddressEpic_1.saveCompanyBillingAddressEpic, saveCompanyHealthMetricByIdEpic_1.saveCompanyHealthMetricByIdEpic, saveCompanyMonthEndReportEpic_1.saveCompanyMonthEndReportEpic, saveCompanyPassportDetailsEpic_1.saveCompanyPassportDetailsEpic, saveConnectorCredentialsEpic_1.saveConnectorCredentialsEpic, saveCreditAgentMacroEpic_1.saveCreditAgentMacroEpic, saveReconciliationDetailEpic_1.saveReconciliationDetailsEpic, saveReconciliationReviewEpic_1.saveReconciliationReviewEpic, saveExternalConnectionEpic_1.saveExternalConnectionEpic, saveInvoicingCatalogItemEpic_1.saveInvoicingCatalogItemEpic, saveInvoicingCouponEpic_1.saveInvoicingCouponEpic, saveInvoicingCustomerEpic_1.saveInvoicingCustomerEpic, customerPaymentMethodEpic_1.saveInvoicingPaymentMethodEpic, settingsViewEpics_1.saveInvoicingSettingsEpic, saveInvoicingSubscriptionEpic_1.saveInvoicingSubscriptionEpic, saveMagicLinkBankAccountEpic_1.saveMagicLinkBankAccountEpic, saveNewAddressEpic_1.saveNewAddressEpic, saveNotificationSettingsEpic_1.saveNotificationSettingsEpic, saveOAuthConnectionEpic_1.saveOAuthConnectionEpic, saveOnboardingCustomerCompletedStatusEpic_1.saveOnboardingCustomerCompletedStatusEpic, saveOnboardingCustomerNotesEpic_1.saveOnboardingCustomerNotesEpic, saveOnboardingCustomerViewUpdatesEpic_1.saveOnboardingCustomerViewUpdatesEpic, saveRealTimeApprovalEpic_1.saveRealTimeApprovalEpic, saveReasonForAuditRuleEpic_1.saveReasonForAuditRuleEpic, saveRemiDetailEpic_1.saveRemiDetailEpic, saveRemiSetupApproverViewUpdatesEpic_1.saveRemiSetupApproverViewUpdatesEpic, saveScheduleAccruedDetailsEpic_1.saveScheduleAccruedDetailsEpic, saveScheduleDetailsEpic_1.saveScheduleDetailsEpic, saveSubscriptionNotesUpdatesEpic_1.saveSubscriptionNotesUpdatesEpic, saveSubscriptionUpdatesEpic_1.saveSubscriptionUpdatesEpic, saveTaskDetailEpic_1.saveTaskDetailEpic, saveTransactionDetailEpic_1.saveTransactionDetailEpic, saveTransactionVendorEpic_1.saveTransactionVendorEpic, saveVendorDetailsViewEpic_1.saveVendorDetailsViewEpic, saveVendorEpic_1.saveVendorEpic, saveVendorFirstReviewViewEpic_1.saveVendorFirstReviewViewEpic, saveVendorsTabVendorEpic_1.saveVendorsTabVendorEpic, scheduleTenantCreditScoreCronEpic_1.scheduleTenantCreditScoreCronEpic, searchTransactionsForManualMatchEpic_1.searchTransactionsForManualMatchEpic, seedAiCardCreationFormDraftEpic_1.seedAiCardCreationFormDraftEpic, seedAiCardPolicyFormDraftEpic_1.seedAiCardPolicyFormDraftEpic, sendCompanyMonthEndReportEpic_1.sendCompanyMonthEndReportEpic, sendEmailMagicLinkToUserEpic_1.sendEmailMagicLinkToUserEpic, customerPaymentMethodEpic_1.sendInvoicingPaymentLinkEpic, sendOnboardingCustomerViewInviteEpic_1.sendOnboardingCustomerViewInviteEpic, sendOtpEpic_1.sendOtpEpic, sendReferralInviteEpic_1.sendReferralInviteEpic, sessionHeartbeatEpic_1.sessionHeartbeatEpic, snoozeTaskEpic_1.snoozeTaskEpic, statementCloseDayEpic_1.statementCloseDayEpic, stopSubmitEpic_1.stopSubmitEpic, stopSubmitQuestionEpic_1.stopSubmitQuestionEpic, submitDraftBillsBulkActionEpic_1.submitDraftBillsBulkActionEpic, submitDraftRemisBulkActionEpic_1.submitDraftRemisBulkActionEpic, submitExpressPayEpic_1.submitExpressPayEpic, submitFeedbackEpic_1.submitFeedbackEpic, submitIntlVerificationEpic_1.submitIntlVerificationEpic, invoicingBrandingFormEpics_1.submitInvoicingBrandingFormEpic, submitQuestionEpic_1.submitQuestionEpic, syncInvoicingSubscriptionCouponsEpic_1.syncInvoicingSubscriptionCouponsEpic, syncTabsAfterAutomatchEpic_1.syncTabsAfterAutomatchEpic, toggleReportUIOptionForecastModeEpic_1.toggleReportUIOptionForecastModeEpic, transferMoneyEpic_1.transferMoneyEpic, treasuryTransferMoneyEpic_1.treasuryTransferMoneyEpic, triggerAiAccountantJobEpic_1.triggerAiAccountantJobEpic, triggerReviewTabRefetchEpic_1.triggerReviewTabRefetchEpic, unlinkPaymentAccountEpic_1.unlinkPaymentAccountEpic, unlockChargeCardEpic_1.unlockChargeCardEpic, unlockChargeCardsEpic_1.unlockChargeCardsEpic, unsnoozeTaskEpic_1.unsnoozeTaskEpic, updateAccountingClassesEnabledEpic_1.updateAccountingClassesEnabledEpic, updateAccruedJESchedulesEpic_1.updateAccruedJESchedulesEpic, updateAddressEpic_1.updateAddressEpic, updateAmountsInScheduleAccruedDetailEpic_1.updateAmountsInScheduleAccruedDetailEpic, updateAmountsInScheduleDetailEpic_1.updateAmountsInScheduleDetailEpic, updateAutoTransferRuleEpic_1.updateAutoTransferRuleEpic, updateBusinessVerificationDetailsEpic_1.updateBusinessVerificationDetailsEpic, updateCapitalizationAccountThresholdEpic_1.updateCapitalizationAccountThresholdEpic, updateCardPolicyEpic_1.updateCardPolicyEpic, updateCardProfileEpic_1.updateCardProfileEpic, updateChargeCardDetailEpic_1.updateChargeCardDetailEpic, updateChargeCardLimitEpic_1.updateChargeCardLimitEpic, updateChargeCardNameEpic_1.updateChargeCardNameEpic, updateChargeCardsLimitEpic_1.updateChargeCardsLimitEpic, updateCompanyDetailsEpic_1.updateCompanyDetailsEpic, updateCompanyOfficerEpic_1.updateCompanyOfficerEpic, updateCompanyPassportLocalStoreDataEpic_1.updateCompanyPassportLocalStoreDataEpic, updateCompanyTaskManagerViewFiltersEpic_1.updateCompanyTaskManagerViewFiltersEpic, updateDashboardLayoutEpic_1.updateDashboardLayoutEpic, updateDebitCardPinAttemptEpic_1.updateDebitCardPinAttemptEpic, updateDepositAccountEpic_1.updateDepositAccountEpic, updateReconcileTabLocalDataEpic_1.updateReconcileTabLocalDataEpic, updateFileNameEpic_1.updateFileNameEpic, updateFilesMetadataEpic_1.updateFilesMetadataEpic, invoiceActionEpic_1.updateInvoicingInvoiceEpic, updateJESchedulesEpic_1.updateJESchedulesEpic, updateMappedCashAccountEpic_1.updateMappedCashAccountEpic, updateMileageDetailsEpic_1.updateMileageDetailsEpic, updateMyProfileEpic_1.updateMyProfileEpic, updateNetBurnOrIncomeStoryCardSettingsEpic_1.updateNetBurnOrIncomeStoryCardSettingsEpic, updateNotificationViewAllNotificationsStatusEpic_1.updateNotificationViewAllNotificationsStatusEpic, updateNotificationViewNotificationStatusEpic_1.updateNotificationViewNotificationStatusEpic, updateOnboardingCustomerViewCompleteStatusEpic_1.updateOnboardingCustomerViewCompleteStatusEpic, updateOnboardingCustomerViewDashboardLoadedEpic_1.updateOnboardingCustomerViewDashboardLoadedEpic, updateOnboardingCustomerViewEpic_1.updateOnboardingCustomerViewEpic, updateOnboardingCustomerViewLocalStoreDataEpic_1.updateOnboardingCustomerViewLocalStoreDataEpic, updateOnboardingPaymentAccountLoginStatusEpic_1.updateOnboardingPaymentAccountLoginStatusEpic, updateOnboardingPaymentAccountStatusEpic_1.updateOnboardingPaymentAccountStatusEpic, updatePaymentAccountEpic_1.updatePaymentAccountEpic, updatePaymentAccountLoginStatusEpic_1.updatePaymentAccountLoginStatusEpic, updatePaymentAccountStatusEpic_1.updatePaymentAccountStatusEpic, updatePhysicalChargeCardAttemptEpic_1.updatePhysicalChargeCardAttemptEpic, updatePortfolioAllocationEpic_1.updatePortfolioAllocationEpic, updatePrimaryContactEpic_1.updatePrimaryContactEpic, updatePrimaryFundingAccountEpic_1.updatePrimaryFundingAccountEpic, updateQBOConnectionPoolExternalConnectionEpic_1.updateQBOConnectionPoolExternalConnectionEpic, updateReferViewedEpic_1.updateReferViewedEpic, updateRemiSetupViewLocalStoreDataEpic_1.updateRemiSetupViewLocalStoreDataEpic, updateReportUIOptionCOABalancesRangeEpic_1.updateReportUIOptionCOABalancesRangeEpic, updateReportUIOptionCompareModeEpic_1.updateReportUIOptionIsCompareModeEpic, updateReportUIOptionIsCompareModeOnEpic_1.updateReportUIOptionIsCompareModeOnEpic, updateReportUIOptionThisPeriodEpic_1.updateReportUIOptionThisPeriodEpic, updateReportUIOptionTimeFrameEpic_1.updateReportUIOptionTimeFrameEpic, sectionAccountsViewEpic_1.updateSectionAccountsViewEpic, sectionClassesViewEpic_1.updateSectionClassesViewEpic, sectionProjectViewEpic_1.updateSectionProjectViewEpic, updateSelectedVendorForCreateFlowEpic_1.updateSelectedVendorForCreateFlowEpic, updateSetupViewLocalStoreDataEpic_1.updateSetupViewLocalStoreDataEpic, updateStatementInfoEpic_1.updateStatementInfoEpic, updateTaskFromListViewEpic_1.updateTaskFromListViewEpic, updateTaskGroupNameEpic_1.updateTaskGroupNameEpic, updateTransactionDetailEpic_1.updateTransactionDetailEpic, updateTreasuryPromoIntroClosedByOutsideClickEpic_1.updateTreasuryPromoIntroClosedByOutsideClickEpic, updateTreasuryPromoRemindMeLaterClickedEpic_1.updateTreasuryPromoRemindMeLaterClickedEpic, updateTreasuryVideoViewedEpic_1.updateTreasuryVideoViewedEpic, updateVendorContactEpic_1.updateVendorContactEpic, uploadAccountStatementEpic_1.uploadAccountStatementEpic, uploadMissingAttachmentSuccessEpic_1.uploadMissingAttachmentSuccessEpic, uploadMissingReceiptSuccessEpic_1.uploadMissingReceiptSuccessEpic, uploadTransactionReceiptSuccessEpic_1.uploadTransactionReceiptSuccessEpic, validateBillsBulkActionEpic_ts_1.validateBillsBulkActionEpic, vendorFiling1099UploadDetailsSaveEpic_1.vendorFiling1099UploadDetailsSaveEpic, verifyDeviceWithTwoFAEpic_1.verifyDeviceWithTwoFAEpic, verifyOtpEpic_1.verifyOtpEpic, verifyUserEpic_1.verifyUserEpic, fetchBillAndInitializeLocalStoreEpic_1.waitForBillDetailThenInitializeLocalStoreEpic, fetchNetBurnOrIncomeWithForecastEpic_1.waitForForecastListThenFetchNetBurnOrIncomeWithForecastEpic, fetchOpExWithForecastEpic_1.waitForForecastListThenFetchOpExWithForecastEpic, fetchRevenueWithForecastEpic_1.waitForForecastListThenFetchRevenueWithForecastEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic_1.waitForMerchantRecommendationFetchThenUpdateRecommendationInMerchantEpic, fetchVendorAndUpdateBillLocalDataEpic_1.waitForVendorByIdThenSaveBillUpdatetoLocalStoreEpic, fetchVendorByNameAndParseInvoice_1.waitForVendorByNameThenParsetoLocalStoreEpic, fetchBillDetailEpic_1.waitForVendorByNameThenUpdateBillDetailEpic, fetchAndUpdateVendorRecommendationsEpic_1.waitForVendorRecommendationFetchThenUpdateRecommendationInBillEpic, wiseRedirectEpic_1.wiseRedirectEpic);
698
+ const combinedEpics = (0, redux_observable_1.combineEpics)(acceptBillPayTermsEpic_1.acceptBillPayTermsEpic, acceptBillPayUpdatedTermsEpic_1.acceptBillPayUpdatedTermsEpic, acceptChargeCardTermsEpic_1.acceptChargeCardTermsEpic, acceptEmployeeRemiTermsEpic_1.acceptEmployeeRemiTermsEpic, acceptInvoicingTermsEpic_1.acceptInvoicingTermsEpic, acceptMasterTOSEpic_1.acceptMasterTOSEpic, acceptRemiTermsEpic_1.acceptRemiTermsEpic, acceptTreasuryTermsEpic_1.acceptTreasuryTermsEpic, acceptZeniAccountTermsEpic_1.acceptZeniAccountTermsEpic, acknowledgeOnboardingAiActivationViewedEpic_1.acknowledgeOnboardingAiActivationViewedEpic, acknowledgeOnboardingAiFinanceTeamEpic_1.acknowledgeOnboardingAiFinanceTeamEpic, addCardPaymentSourceEpic_1.addCardPaymentSourceEpic, promotionalCreditActionEpic_1.addPromotionalCreditsEpic, applyExtractedPolicyToDraftEpic_1.applyExtractedPolicyToDraftEpic, approveOAuthConsentEpic_1.approveOAuthConsentEpic, approveOrRejectBillEpic_1.approveOrRejectBillEpic, approveOrRejectBillsBulkActionEpic_1.approveOrRejectBillsBulkActionEpic, approveOrRejectRemiEpic_1.approveOrRejectRemiEpic, approveOrRejectRemisBulkActionEpic_1.approveOrRejectRemisBulkActionEpic, approveVendorGlobalReviewEpic_1.approveVendorGlobalReviewEpic, archiveCardPolicyEpic_1.archiveCardPolicyEpic, invoicingCatalogSubFamilyEpics_1.archiveInvoicingCatalogSubFamilyEpic, archiveTaskEpic_1.archiveTaskEpic, backgroundRefetchReviewTabEpic_1.backgroundRefetchReviewTabEpic, bulkUpdateTaskListEpic_1.bulkUpdateTaskListEpic, watchBulkUploadBatchStatusEpic_1.bulkUploadAutomatchingTimeoutEpic, bulkUploadMatchResultToastEpic_1.bulkUploadMatchResultToastEpic, bulkUploadReceiptsEpic_1.bulkUploadReceiptsEpic, cancelAiAccountantOnboardingEpic_1.cancelAiAccountantOnboardingEpic, cancelAndDeleteBillEpic_1.cancelAndDeleteBillEpic, cancelAndDeleteRemiEpic_1.cancelAndDeleteRemiEpic, cancelOrDeleteBillsBulkActionEpic_1.cancelOrDeleteBillsBulkActionEpic, cancelOrDeleteRemisBulkActionEpic_1.cancelOrDeleteRemisBulkActionEpic, cancelScheduleAccruedJournalEntryEpic_1.cancelScheduleAccruedJournalEntryEpic, changeZeniPersonRolesEpic_1.changeZeniPersonRolesEpic, checkDepositEpic_1.checkDepositEpic, clearAllEpic_1.clearAllEpic, closeChargeCardEpic_1.closeChargeCardEpic, closeChargeCardsEpic_1.closeChargeCardsEpic, companyManagementSavePendingUpdates_1.companyManagementSavePendingUpdatesEpic, companyManagementSaveUpdatesEpic_1.companyManagementSaveUpdatesEpic, confirmBulkUploadMatchEpic_1.confirmBulkUploadMatchEpic, confirmCardSetupIntentEpic_1.confirmCardSetupIntentEpic, settingsViewEpics_1.connectInvoicingStripeEpic, convertAmountToHomeCurrencyEpic_1.convertAmountToHomeCurrencyEpic, createAddressEpic_1.createAddressEpic, createAutoTransferRuleEpic_1.createAutoTransferRuleEpic, createBankAccountEpic_1.createBankAccountEpic, createCardPolicyTemplateEpic_1.createCardPolicyTemplatesEpic, createCardSetupIntentEpic_1.createCardSetupIntentEpic, createCheckingAccountEpic_1.createCheckingAccountEpic, createCompanyAddressEpic_1.createCompanyAddressEpic, createCompanyOfficersEpic_1.createCompanyOfficersEpic, createCompanyUserAddressEpic_1.createCompanyUserAddressEpic, createCreditNoteEpic_1.createCreditNoteEpic, createGlobalMerchantEpic_1.createGlobalMerchantEpic, createInternationalBankAccountEpic_1.createInternationalBankAccountEpic, createInvoiceEpic_1.createInvoiceEpic, invoicingCatalogSubFamilyEpics_1.createInvoicingCatalogSubFamilyEpic, customerPaymentMethodEpic_1.createInvoicingSetupIntentEpic, createNewSchedulesAccruedEpic_1.createNewSchedulesAccruedEpic, createNewSchedulesEpic_1.createNewSchedulesEpic, createNewTaskGroupEpic_1.createNewTaskGroupEpic, createInternationalPaymentInstrumentEpic_1.createPaymentInstrumentEpic, createSessionAndSubmitEpic_1.createSessionAndSubmitEpic, createSessionEpic_1.createSessionEpic, createSubTaskEpic_1.createSubTaskEpic, createTagEpic_1.createTagEpic, createTaskFromTaskGroupTemplateEpic_1.createTaskFromTaskGroupTemplateEpic, createTransferEntryEpic_1.createTransferEntryEpic, createUserBankAccountEpic_1.createUserBankAccountEpic, deleteAccountStatementEpic_1.deleteAccountStatementEpic, deleteAutoTransferRuleEpic_1.deleteAutoTransferRuleEpic, deleteBankAccountEpic_1.deleteBankAccountEpic, deleteBillEpic_1.deleteBillEpic, deleteBillPayApprovalRuleEpic_1.deleteBillPayApprovalRuleEpic, deleteCannedResponseEpic_1.deleteCannedResponseEpic, deleteChatSessionEpic_1.deleteChatSessionEpic, deleteConnectionEpic_1.deleteConnectionEpic, deleteFileEpic_1.deleteFileEpic, deleteFileListEpic_1.deleteFileListEpic, deleteInternationalBankAccountEpic_1.deleteInternationalBankAccountEpic, deletePaymentInstrumentEpic_1.deletePaymentInstrumentEpic, deletePersonEpic_1.deletePersonEpic, deleteRemiApprovalRuleEpic_1.deleteRemiApprovalRuleEpic, deleteRemiEpic_1.deleteRemiEpic, deleteScheduleAccruedDetailEpic_1.deleteScheduleAccruedDetailEpic, deleteScheduleDetailEpic_1.deleteScheduleDetailEpic, deleteTagEpic_1.deleteTagEpic, deleteTaskEpic_1.deleteTaskEpic, deleteTaskGroupEpic_1.deleteTaskGroupEpic, deleteTransactionAttachmentEpic_1.deleteTransactionAttachmentEpic, deleteUserBankAccountEpic_1.deleteUserBankAccountEpic, disableAccountingProjectsEpic_1.disableAccountingProjectsEpic, settingsViewEpics_1.disconnectInvoicingStripeEpic, dismissCapitalizationOnboardingEpic_1.dismissCapitalizationOnboardingEpic, doMagicLinkSignInEpic_1.doMagicLinkSignInEpic, signInUserEpic_1.doSignInEpic, signOutUserEpic_1.doSignOutEpic, downloadAccountingProviderAttachmentEpic_1.downloadAccountingProviderAttachmentEpic, dragNDropTasksEpic_1.dragNDropTasksEpic, enableAccountingProjectsEpic_1.enableAccountingProjectsEpic, enableChargeCardAutoPayEpic_1.enableChargeCardAutoPayEpic, enableInvoicingEpic_1.enableInvoicingEpic, enableSetupEpic_1.enableSetupEpic, establishOnboardingPlaidConnectionEpic_1.establishOnboardingPlaidConnectionEpic, establishPlaidConnectionEpic_1.establishPlaidConnectionEpic, excludeAccountFromReconciliationEpic_1.excludeAccountFromReconciliationEpic, expressInterestChargeCardEpic_1.expressInterestChargeCardEpic, extractPolicyDocumentEpic_1.extractPolicyDocumentEpic, fetchAccountListEpic_1.fetchAccountListEpic, fetchAccountListForAccountTypesEpic_1.fetchAccountListForAccountTypesEpic, fetchAccountSettingsListForAccountTypesEpic_1.fetchAccountSettingsListForAccountTypesEpic, fetchAccruedScheduleListEpic_1.fetchAccruedScheduleListEpic, fetchActiveTenantEpic_1.fetchActiveTenantEpic, fetchAddressEpic_1.fetchAddressEpic, aggregatedReportEpic_1.fetchAggregatedReportEpic, fetchAiAccountantCustomersEpic_1.fetchAiAccountantCustomersEpic, fetchAiAccountantJobsEpic_1.fetchAiAccountantJobsEpic, fetchAiAgentsActivationStatusEpic_1.fetchAiAgentsActivationStatusEpic, fetchAllCockpitViewsEpic_1.fetchAllCockpitViewsEpic, fetchAllExpenseAutomationTabsEpic_1.fetchAllExpenseAutomationTabsEpic, fetchAllPeopleRequiredViewsEpic_1.fetchAllPeopleRequiredViewsEpic, fetchAllTagsEpic_1.fetchAllTagsEpic, fetchAllTaskGroupsEpic_1.fetchAllTaskGroupsEpic, fetchAllTenantsEpic_1.fetchAllTenantsEpic, fetchAndUpdateVendorRecommendationsEpic_1.fetchAndUpdateVendorRecommendationsEpic, fetchApAgingDetailEpic_1.fetchApAgingDetailEpic, fetchApAgingEpic_1.fetchApAgingEpic, fetchArAgingDetailEpic_1.fetchArAgingDetailEpic, fetchArAgingEpic_1.fetchArAgingEpic, fetchAuditReportGroupViewEpic_1.fetchAuditReportGroupViewEpic, fetchAuditRuleGroupViewEpic_1.fetchAuditRuleGroupViewEpic, fetchAutoTransferReviewDetailEpic_1.fetchAutoTransferReviewDetailEpic, fetchAutoTransferRuleHistory_1.fetchAutoTransferRuleHistoryEpic, fetchAutoTransferRulesEpic_1.fetchAutoTransferRulesEpic, balanceSheetEpic_1.fetchBalanceSheetEpic, balanceSheetForTimeframeEpic_1.fetchBalanceSheetForTimeframeEpic, fetchBankAccountsListEpic_1.fetchBankAccountsListEpic, fetchBankConnectionsViewEpic_1.fetchBankConnectionsViewEpic, fetchBankCountryNameByIbanEpic_1.fetchBankCountryNameByIbanEpic, fetchBankNameByRoutingEpic_1.fetchBankNameByRoutingEpic, fetchBankNameBySwiftEpic_1.fetchBankNameBySwiftEpic, fetchBillAndInitializeLocalStoreEpic_1.fetchBillAndInitializeLocalStoreEpic, fetchBillDetailEpic_1.fetchBillDetailEpic, fetchBillingAccountsViewEpic_1.fetchBillingAccountsListEpic, fetchBillListEpic_1.fetchBillListEpic, fetchBillListPerTabEpic_1.fetchBillListPerTabEpic, fetchBillPayApproversDetailsEpic_1.fetchBillPayApproversDetailsEpic, fetchBillPayApproversListEpic_1.fetchBillPayApproversListEpic, fetchBillPayCardEpic_1.fetchBillPayCardEpic, fetchBillPayConfigEpic_1.fetchBillPayConfigEpic, fetchBillPaySetupApproverViewEpic_1.fetchBillPaySetupApproverViewEpic, fetchBillPaySetupViewEpic_1.fetchBillPaySetupViewEpic, fetchBulkUploadBatchDetailsEpic_1.fetchBulkUploadBatchDetailsEpic, fetchBulkUploadBatchesEpic_1.fetchBulkUploadBatchesEpic, fetchCannedResponsesEpic_1.fetchCannedResponsesEpic, cardBalanceEpic_1.fetchCardBalanceEpic, fetchCardPolicyDetailEpic_1.fetchCardPolicyDetailEpic, fetchCardPolicyListEpic_1.fetchCardPolicyListEpic, fetchCardPolicyMccCategoriesEpic_1.fetchCardPolicyMccCategoriesEpic, fetchCardPolicyVendorOptionsEpic_1.fetchCardPolicyVendorOptionsEpic, fetchCardProfilesEpic_1.fetchCardProfilesEpic, fetchCashbackDetailEpic_1.fetchCashbackDetailEpic, cashBalanceEpic_1.fetchCashBalanceEpic, cashFlowEpic_1.fetchCashFlowEpic, cashFlowForTimeframeEpic_1.fetchCashFlowForTimeframeEpic, cashInCashOutEpic_1.fetchCashInCashOutEpic, cashPositionEpic_1.fetchCashPositionEpic, fetchChargeCardConfigEpic_1.fetchChargeCardConfigEpic, fetchChargeCardDetailEpic_1.fetchChargeCardDetailEpic, fetchChargeCardDetailPageEpic_1.fetchChargeCardDetailPageEpic, fetchChargeCardListEpic_1.fetchChargeCardListEpic, fetchChargeCardListPageEpic_1.fetchChargeCardListPageEpic, fetchChargeCardPaymentHistoryEpic_1.fetchChargeCardPaymentHistoryEpic, fetchChargeCardPaymentPageEpic_1.fetchChargeCardPaymentPageEpic, fetchChargeCardRepaymentDetailEpic_1.fetchChargeCardRepaymentDetailEpic, fetchChargeCardSetupViewEpic_1.fetchChargeCardSetupViewEpic, fetchChargeCardsRecurringExpensesEpic_1.fetchChargeCardsRecurringExpensesEpic, fetchChargeCardStatementListEpic_1.fetchChargeCardStatementListEpic, fetchChargeCardTransactionAttachmentsEpic_1.fetchChargeCardTransactionAttachmentsEpic, fetchChargeCardTransactionListEpic_1.fetchChargeCardTransactionListEpic, fetchChargeCardTransactionStatisticsEpic_1.fetchChargeCardTransactionStatisticsEpic, fetchChatHistoryEpic_1.fetchChatHistoryEpic, fetchChatSessionsForUserEpic_1.fetchChatSessionsForUserEpic, fetchClassListEpic_1.fetchClassListEpic, fetchCockpitContextEpic_1.fetchCockpitContextEpic, fetchCollaborationAuthTokenEpic_1.fetchCollaborationAuthTokenEpic, fetchCompanyBillingAddressEpic_1.fetchCompanyBillingAddressEpic, companyConfigEpic_1.fetchCompanyConfigEpic, fetchCompanyHealthMetricConfigEpic_1.fetchCompanyHealthMetricConfigEpic, fetchCompanyHealthMetricViewEpic_1.fetchCompanyHealthMetricViewEpic, fetchCompanyManagementViewEpic_1.fetchCompanyManagementViewEpic, fetchCompanyMetaDataEpic_1.fetchCompanyMetaDataEpic, fetchCompanyMonthEndReportHistoricDataEpic_1.fetchCompanyMonthEndReportHistoricDataEpic, fetchCompanyMonthEndReportHistoricDatesEpic_1.fetchCompanyMonthEndReportHistoricDatesEpic, fetchCompanyMonthEndReportTemplatesEpic_1.fetchCompanyMonthEndReportTemplatesEpic, fetchCompanyMonthEndReportViewEpic_1.fetchCompanyMonthEndReportViewEpic, fetchCompanyOnboardingViewEpic_1.fetchCompanyOnboardingViewEpic, fetchCompanyPassportViewEpic_1.fetchCompanyPassportViewEpic, fetchCompanyPortfolioViewEpic_1.fetchCompanyPortfolioViewEpic, fetchCompanyTaskManagerViewEpic_1.fetchCompanyTaskManagerViewEpic, fetchCompletedTransactionsEpic_1.fetchCompletedTransactionsEpic, fetchCreditAccountEpic_1.fetchCreditAccountEpic, fetchCreditAccountRepaymentEpic_1.fetchCreditAccountRepaymentEpic, fetchCreditAgentMacroEpic_1.fetchCreditAgentMacroEpic, fetchCurrencyConversionValueEpic_1.fetchCurrencyConversionValueEpic, dashboardEpic_1.fetchDashboardEpic, fetchDashboardLayoutEpic_1.fetchDashboardLayoutEpic, fetchDebitCardSummaryEpic_1.fetchDebitCardSummaryEpic, fetchDepositAccountDetailEpic_1.fetchDepositAccountDetailEpic, fetchDepositAccountEpic_1.fetchDepositAccountEpic, fetchDepositAccountHistoryEpic_1.fetchDepositAccountHistoryEpic, fetchDepositAccountLimitEpic_1.fetchDepositAccountLimitEpic, fetchDepositAccountListEpic_1.fetchDepositAccountListEpic, fetchDepositAccountListForCardsEpic_1.fetchDepositAccountListForCardsEpic, fetchDepositAccountTransactionListEpic_1.fetchDepositAccountTransactionListEpic, fetchDownloadSchedulesEpic_1.fetchDownloadSchedulesEpic, fetchDuplicateBillEpic_1.fetchDuplicateBillPayReviewEpic, fetchDuplicateReimbursementEpic_1.fetchDuplicateReimbursementEpic, fetchEditBillDetailPageEpic_1.fetchEditBillDetailPageEpic, fetchEditRemiDetailPageEpic_1.fetchEditRemiDetailPageEpic, fetchEligibleActionsForBillEpic_1.fetchEligibleActionsForBillEpic, fetchEntityAutoCompleteEpic_1.fetchEntityAutoCompleteEpic, fetchEntityHistoryEpic_1.fetchEntityHistoryEpic, fetchEntityRecommendationsByTransactionIdEpic_1.fetchEntityRecommendationsByTransactionIdEpic, fetchEntityRecommendationsForLineUpdateEpic_1.fetchEntityRecommendationsForLineUpdateEpic, fetchExcludedResourcesEpic_1.fetchExcludedResourcesEpic, fetchFluxAnalysisViewEpic_1.fetchFluxAnalysisViewEpic, initializeTransactionCategorizationLocalDataEpic_1.initializeTransactionCategorizationViewLocalDataEpic, fetchJeSchedulesEpic_1.fetchJeSchedulesEpic, fetchJeSchedulePageEpic_1.fetchJeSchedulesPageEpic, markTransactionAsNotMiscategorizedEpic_1.markTransactionAsNotMiscategorizedEpic, fetchMissingReceiptsEpic_1.fetchMissingReceiptsEpic, fetchReconciliationViewEpic_1.fetchReconciliationViewEpic, saveTransactionCategorizationEpic_1.saveTransactionCategorizationEpic, fetchTransactionCategorizationEpic_1.fetchTransactionCategorizationEpic, fetchTransactionCategorizationViewEpic_1.fetchTransactionCategorizationViewEpic, updateTransactionCategorizationEpic_1.updateTransactionCategorizationEpic, fetchExpenseTrendEpic_1.fetchExpenseTrendEpic, fetchExpressPayInitialDetailsEpic_1.fetchExpressPayInitialDetailsEpic, fetchExternalConnectionsEpic_1.fetchExternalConnectionsEpic, fetchFileEpic_1.fetchFileEpic, fetchFileListEpic_1.fetchFileListEpic, financeStatementEpic_1.fetchFinanceStatementEpic, fetchForecastListEpic_1.fetchForecastListEpic, fetchGlobalMerchantAutoCompleteViewEpic_1.fetchGlobalMerchantAutoCompleteViewEpic, fetchGlobalMerchantRecommendationEpic_1.fetchGlobalMerchantRecommendationEpic, fetchIncomeTrendEpic_1.fetchIncomeTrendEpic, insightsCardEpic_1.fetchInsightsCardEpic, fetchInternationalWireDynamicFormEpic_1.fetchInternationalWireDynamicFormEpic, fetchIntlVerificationFormEpic_1.fetchIntlVerificationFormEpic, fetchInvoiceCountsEpic_1.fetchInvoiceCountsEpic, fetchInvoiceDetailEpic_1.fetchInvoiceDetailEpic, fetchInvoiceKPIsEpic_1.fetchInvoiceKPIsEpic, fetchInvoiceListEpic_1.fetchInvoiceListEpic, fetchInvoiceListPageEpic_1.fetchInvoiceListPageEpic, auditViewEpics_1.fetchInvoicingAuditLogEpic, fetchInvoicingCatalogCountsEpic_1.fetchInvoicingCatalogCountsEpic, invoicingCatalogItemDetailViewEpics_1.fetchInvoicingCatalogItemDetailEpic, fetchInvoicingCatalogListPageEpic_1.fetchInvoicingCatalogListPageEpic, fetchInvoicingCatalogPlanListEpic_1.fetchInvoicingCatalogPlanListEpic, fetchInvoicingCatalogProductListEpic_1.fetchInvoicingCatalogProductListEpic, fetchInvoicingConfigEpic_1.fetchInvoicingConfigEpic, couponViewEpics_1.fetchInvoicingCouponCountsEpic, fetchInvoicingCouponDetailEpic_1.fetchInvoicingCouponDetailEpic, couponViewEpics_1.fetchInvoicingCouponListEpic, couponViewEpics_1.fetchInvoicingCouponListPageEpic, fetchInvoicingCreditNoteCountsEpic_1.fetchInvoicingCreditNoteCountsEpic, invoicingCreditNoteDetailViewEpics_1.fetchInvoicingCreditNoteDetailEpic, fetchInvoicingCreditNoteListEpic_1.fetchInvoicingCreditNoteListEpic, fetchInvoicingCreditNoteListPageEpic_1.fetchInvoicingCreditNoteListPageEpic, fetchInvoicingCustomerCountsEpic_1.fetchInvoicingCustomerCountsEpic, fetchInvoicingCustomerDetailEpic_1.fetchInvoicingCustomerDetailEpic, fetchInvoicingCustomerDetailPageEpic_1.fetchInvoicingCustomerDetailPageEpic, fetchInvoicingCustomerListEpic_1.fetchInvoicingCustomerListEpic, fetchInvoicingCustomerListPageEpic_1.fetchInvoicingCustomerListPageEpic, dataImportViewEpics_1.fetchInvoicingDataImportStatusEpic, fetchInvoicingDunningCaseCountsEpic_1.fetchInvoicingDunningCaseCountsEpic, invoicingDunningCaseDetailViewEpics_1.fetchInvoicingDunningCaseDetailEpic, fetchInvoicingDunningCaseListEpic_1.fetchInvoicingDunningCaseListEpic, fetchInvoicingDunningCaseListPageEpic_1.fetchInvoicingDunningCaseListPageEpic, dataImportViewEpics_1.fetchInvoicingMigrationDiagnosticsEpic, dataImportViewEpics_1.fetchInvoicingMigrationSessionEpic, dataImportViewEpics_1.fetchInvoicingMigrationSessionsEpic, fetchInvoicingOverviewChurnEpic_1.fetchInvoicingOverviewChurnEpic, fetchInvoicingOverviewDashboardSummaryEpic_1.fetchInvoicingOverviewDashboardSummaryEpic, fetchInvoicingOverviewEpic_1.fetchInvoicingOverviewEpic, fetchInvoicingOverviewKPIsEpic_1.fetchInvoicingOverviewKPIsEpic, fetchInvoicingOverviewMRREpic_1.fetchInvoicingOverviewMRREpic, fetchInvoicingOverviewPlanRevenueEpic_1.fetchInvoicingOverviewPlanRevenueEpic, fetchInvoicingOverviewRevenueEpic_1.fetchInvoicingOverviewRevenueEpic, customerPaymentMethodEpic_1.fetchInvoicingPlaidLinkTokenEpic, settingsViewEpics_1.fetchInvoicingSettingsEpic, fetchInvoicingSubscriptionCountsEpic_1.fetchInvoicingSubscriptionCountsEpic, invoicingSubscriptionDetailViewEpics_1.fetchInvoicingSubscriptionDetailEpic, fetchInvoicingSubscriptionFormPageEpic_1.fetchInvoicingSubscriptionFormPageEpic, fetchInvoicingSubscriptionListEpic_1.fetchInvoicingSubscriptionListEpic, fetchInvoicingSubscriptionListPageEpic_1.fetchInvoicingSubscriptionListPageEpic, invoicingTransactionDetailViewEpics_1.fetchInvoicingTransactionDetailEpic, fetchInvoicingTransactionListEpic_1.fetchInvoicingTransactionListEpic, fetchInvoicingTransactionListPageEpic_1.fetchInvoicingTransactionListPageEpic, fetchIssueCardPageEpic_1.fetchIssueCardPageEpic, fetchMagicLinkBankNameByRoutingEpic_1.fetchMagicLinkBankNameByRoutingEpic, fetchMagicLinkBankNameBySwiftEpic_1.fetchMagicLinkBankNameBySwiftEpic, fetchMagicLinkBillEpic_1.fetchMagicLinkBillEpic, fetchMagicLinkTenantEpic_1.fetchMagicLinkTenantEpic, fetchManagementViewEpic_1.fetchManagementViewEpic, fetchMerchantListEpic_1.fetchMerchantListEpic, fetchMonthClosePerformanceTrendEpic_1.fetchMonthClosePerformanceTrendEpic, fetchMonthEndCloseChecksEpic_1.fetchMonthEndCloseChecksEpic, fetchMoreBatchDetailsEpic_1.fetchMoreBatchDetailsEpic, fetchMultipleBatchDetailsEpic_1.fetchMultipleBatchDetailsEpic, fetchMyProfileEpic_1.fetchMyProfileEpic, fetchMyProfileViewEpic_1.fetchMyProfileViewEpic, netBurnOrIncomeClassesViewEpic_1.fetchNetBurnOrIncomeClassesViewEpic, netBurnOrIncomeEpic_1.fetchNetBurnOrIncomeEpic, netBurnOrIncomeForTimeframeClassesViewEpic_1.fetchNetBurnOrIncomeForTimeframeClassesViewEpic, netBurnOrIncomeForTimeframeEpic_1.fetchNetBurnOrIncomeForTimeframeEpic, fetchNetBurnOrIncomeStoryCardEpic_1.fetchNetBurnOrIncomeStoryCardEpic, fetchNetBurnOrIncomeWithForecastEpic_1.fetchNetBurnOrIncomeWithForecastEpic, fetchNotificationSettingsEpic_1.fetchNotificationSettingsEpic, fetchNotificationSettingsViewEpic_1.fetchNotificationSettingsViewEpic, fetchNotificationUnreadCountEpic_1.fetchNotificationUnreadCountEpic, fetchNotificationViewEpic_1.fetchNotificationViewEpic, fetchOnboardingCompletedCompaniesEpic_1.fetchOnboardingCompletedCompaniesEpic, fetchOnboardingCustomerSetupViewEpic_1.fetchOnboardingCustomerSetupViewEpic, fetchOnboardingCustomerViewEpic_1.fetchOnboardingCustomerViewEpic, fetchOnboardingViewEpic_1.fetchOnboardingViewEpic, fetchOpExByVendorReportEpic_1.fetchOpExByVendorEpic, fetchOpExByVendorReportForTimeframeEpic_1.fetchOpExByVendorReportForTimeframeEpic, fetchOpExByVendorReportSummaryEpic_1.fetchOpExByVendorReportSummaryEpic, opExClassesViewEpic_1.fetchOpExClassesViewEpic, opExEpic_1.fetchOpExEpic, opExForTimeframeClassesViewEpic_1.fetchOpExForTimeframeClassesViewEpic, opExForTimeFrameEpic_1.fetchOpExReportForTimeframeEpic, fetchOpExWithForecastEpic_1.fetchOpExWithForecastEpic, fetchOwnerListEpic_1.fetchOwnerListEpic, fetchParentSubsidiaryManagementViewEpic_1.fetchParentSubsidiaryManagementViewEpic, fetchPaymentAccountBalanceEpic_1.fetchPaymentAccountBalanceEpic, fetchPaymentAccountListEpic_1.fetchPaymentAccountListEpic, fetchPaymentSourcesEpic_1.fetchPaymentSourcesEpic, fetchPeopleEpic_1.fetchPeopleEpic, peoplePageEpic_1.fetchPeoplePageEpic, fetchPortfolioAllocationEpic_1.fetchPortfolioAllocationEpic, fetchPortfolioViewEpic_1.fetchPortfolioViewEpic, fetchPreviousBillsEpic_1.fetchPreviousBillsEpic, profitAndLossClassesViewEpic_1.fetchProfitAndLossClassesViewEpic, profitAndLossEpic_1.fetchProfitAndLossEpic, profitAndLossForTimeframeClassesViewEpic_1.fetchProfitAndLossForTimeframeClassesViewEpic, profitAndLossForTimeframeEpic_1.fetchProfitAndLossForTimeframeEpic, profitAndLossForTimeframeProjectViewEpic_1.fetchProfitAndLossForTimeframeProjectViewEpic, profitAndLossProjectViewEpic_1.fetchProfitAndLossProjectViewEpic, fetchProjectListEpic_1.fetchProjectListEpic, fetchQBOConnectionPoolEpic_1.fetchQBOConnectionPoolEpic, fetchRecommendationByEntityIdEpic_1.fetchRecommendationByEntityIdEpic, fetchRecommendationByEntityNameEpic_1.fetchRecommendationByEntityNameEpic, fetchRecommendationForAccountSettingsEpic_1.fetchRecommendationForAccountSettingsEpic, fetchRecommendationForAccountTypeEpic_1.fetchRecommendationForAccountTypeEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic_1.fetchRecommendationsAndUpdateMerchantRecommendationsEpic, fetchRecommendedTransactionRowIndexEpic_1.fetchRecommendedTransactionRowIndexEpic, fetchReferralsEpic_1.fetchReferralsEpic, fetchRegisteredInterestsEpic_1.fetchRegisteredInterestsEpic, fetchReimbursementCardEpic_1.fetchReimbursementCardEpic, fetchReimbursementConfigEpic_1.fetchReimbursementConfigEpic, fetchRemiAndInitializeLocalStoreEpic_1.fetchRemiAndInitializeLocalStoreEpic, fetchRemiApproversDetailsEpic_1.fetchRemiApproversDetailsEpic, fetchRemiApproversListEpic_1.fetchRemiApproversListEpic, fetchRemiDetailEpic_1.fetchRemiDetailEpic, fetchRemiListEpic_1.fetchRemiListEpic, fetchRemiListPerTabEpic_1.fetchRemiListPerTabEpic, fetchRemiSetupApproverViewEpic_1.fetchRemiSetupApproverViewEpic, fetchRemiSetupViewEpic_1.fetchRemiSetupViewEpic, revenueClassesViewEpic_1.fetchRevenueClassesViewEpic, revenueEpic_1.fetchRevenueEpic, revenueForTimeframeClassesViewEpic_1.fetchRevenueForTimeframeClassesViewEpic, revenueForTimeframeEpic_1.fetchRevenueForTimeframeEpic, fetchRevenueWithForecastEpic_1.fetchRevenueWithForecastEpic, fetchReviewCompanyViewEpic_1.fetchReviewCompanyViewEpic, fetchReviewTransferDetailEpic_1.fetchReviewTransferDetailEpic, fetchRewardsPlanEpic_1.fetchRewardsPlanEpic, fetchScheduleAccruedDetailsEpic_1.fetchScheduleAccruedDetailsEpic, fetchScheduleAccruedDetailsPageEpic_1.fetchScheduleAccruedDetailsPageEpic, fetchScheduleDetailsEpic_1.fetchScheduleDetailsEpic, fetchScheduleDetailsPageEpic_1.fetchScheduleDetailsPageEpic, fetchScheduleListEpic_1.fetchScheduleListEpic, fetchSchedulesAccountEpic_1.fetchSchedulesAccountEpic, fetchSkillsEpic_1.fetchSkillsEpic, fetchSubscriptionAddOnsEpic_1.fetchSubscriptionAddOnsEpic, fetchSubscriptionCouponsEpic_1.fetchSubscriptionCouponsEpic, fetchSubscriptionCreateEstimateEpic_1.fetchSubscriptionCreateEstimateEpic, fetchSubscriptionDetailsEpic_1.fetchSubscriptionDetailsEpic, fetchSubscriptionListEpic_1.fetchSubscriptionListEpic, fetchSubscriptionPlansEpic_1.fetchSubscriptionPlansEpic, fetchSubscriptionSummaryForTenantEpic_1.fetchSubscriptionSummaryForTenantEpic, fetchSubscriptionUpdateEstimateEpic_1.fetchSubscriptionUpdateEstimateEpic, fetchSubscriptionViewEpic_1.fetchSubscriptionViewEpic, fetchSubTasksEpic_1.fetchSubTasksEpic, fetchSuggestedQuestionsEpic_1.fetchSuggestedQuestionsEpic, fetchTaskDetailEpic_1.fetchTaskDetailEpic, fetchTaskDetailPageEpic_1.fetchTaskDetailPageEpic, fetchTaskGroupTemplatesEpic_1.fetchTaskGroupTemplatesEpic, fetchTaskHistoryEpic_1.fetchTaskHistoryEpic, fetchTaskListEpic_1.fetchTaskListEpic, fetchTaskListPageEpic_1.fetchTaskListPageEpic, fetchTaskManagerMetricsEpic_1.fetchTaskManagerMetricsEpic, fetchTasksCardEpic_1.fetchTasksCardEpic, topExEpic_1.fetchTopExEpic, fetchTransactionActivityLogEpic_1.fetchTransactionActivityLogEpic, transactionDetailEpic_1.fetchTransactionDetailEpic, fetchTransactionListByAccountEpic_1.fetchTransactionListByAccountEpic, fetchTransactionListByClassEpic_1.fetchTransactionListByClassEpic, fetchTransactionListByEntityEpic_1.fetchTransactionListByEntityEpic, fetchTransactionListByProjectEpic_1.fetchTransactionListByProjectEpic, fetchTransactionsForEntityEpic_1.fetchTransactionsForEntityEpic, fetchTransactionsListByCategoryTypeEpic_1.fetchTransactionsListByCategoryTypeEpic, fetchTransferAccountsEpic_1.fetchTransferAccountsEpic, fetchTreasuryDetailEpic_1.fetchTreasuryDetailEpic, fetchTreasuryFundsEpic_1.fetchTreasuryFundsEpic, fetchTreasuryHistoryEpic_1.fetchTreasuryHistoryEpic, fetchTreasurySetupViewEpic_1.fetchTreasurySetupViewEpic, fetchTreasuryStatementListEpic_1.fetchTreasuryStatementListEpic, fetchTreasuryTaxLetterListEpic_1.fetchTreasuryTaxLetterListEpic, fetchTreasuryTransactionListEpic_1.fetchTreasuryTransactionListEpic, fetchTrendForEntityEpic_1.fetchTrendForEntityEpic, fetchUserDetailEpic_1.fetchUserDetailEpic, fetchUserFinancialAccountEpic_1.fetchUserFinancialAccountEpic, fetchUserListByTypeEpic_1.fetchUserListByTypeEpic, userRoleConfigEpic_1.fetchUserRoleConfigEpic, vendor1099TypeListEpic_1.fetchVendor1099TypeListEpic, fetchVendorAndUpdateBillLocalDataEpic_1.fetchVendorAndUpdateBillLocalDataEpic, fetchVendorByNameAndParseInvoice_1.fetchVendorByNameAndParseInvoiceEpic, fetchVendorDetailsEpic_1.fetchVendorDetailsEpic, fetchVendorEpic_1.fetchVendorEpic, fetchVendorFirstReviewAttachmentsEpic_1.fetchVendorFirstReviewAttachmentsEpic, fetchVendorFirstReviewViewEpic_1.fetchVendorFirstReviewViewEpic, fetchVendorGlobalReviewViewEpic_1.fetchVendorGlobalReviewViewEpic, fetchVendorsFiling1099AllEpic_1.fetchVendorsFiling1099AllEpic, fetchVendorsFiling1099DownloadEpic_1.fetchVendorsFiling1099DownloadEpic, fetchVendorsFiling1099ListEpic_1.fetchVendorsFiling1099ListEpic, fetchVendorsListEpic_1.fetchVendorsListEpic, fetchVendorsTabVendorDetailPageViewEpic_1.fetchVendorsTabVendorDetailPageViewEpic, fetchVendorsTabVendorDetailsEpic_1.fetchVendorsTabVendorDetailsEpic, fetchVendorsTabVendorEpic_1.fetchVendorsTabVendorEpic, fetchVendorTabViewEpic_1.fetchVendorTabViewEpic, vendorTypeListEpic_1.fetchVendorTypeListEpic, fetchZeniAccountListPageEpic_1.fetchZeniAccountListEpic, fetchZeniAccountsConfigEpic_1.fetchZeniAccountsConfigEpic, fetchZeniAccountSetupViewEpic_1.fetchZeniAccountSetupViewEpic, zeniAccountsPromoCardEpic_1.fetchZeniAccountsPromoCardEpic, fetchZeniAccStatementListEpic_1.fetchZeniAccStatementListEpic, fetchZeniAccStatementPageEpic_1.fetchZeniAccStatementPageEpic, fetchZeniUsersEpic_1.fetchZeniUsersEpic, getOnboardingEmailGroupEpic_1.getOnboardingEmailGroupEpic, getOnboardingPlaidLinkTokenEpic_1.getOnboardingPlaidLinkTokenEpic, getPaymentAccountsEpic_1.getPaymentAccountsEpic, getPlaidLinkTokenEpic_1.getPlaidLinkTokenEpic, ignoreRecommendedJeScheduleEpic_1.ignoreRecommendedJeScheduleEpic, improveUsingZeniGPTEpic_1.improveUsingZeniGPTEpic, includeAccountInReconciliationEpic_1.includeAccountInReconciliationEpic, initEmailConnectOAuthEpic_1.initEmailConnectOAuthEpic, initialiseLocalDataForSelectedAccountIdEpic_1.initialiseDataForSelectedAccountIdEpic, initializeAccountMappingViewEpic_1.initializeAccountMappingViewEpic, initializeAccountSettingsViewEpic_1.initializeAccountSettingsViewEpic, initializeBillPaySetupApproverViewUpdateDataEpic_1.initializeBillPaySetupApproverViewUpdateDataEpic, initializeBillToLocalStoreEpic_1.initializeBillToLocalStoreEpic, initializeCardUserOnboardingLocalDataEpic_1.initializeCardUserOnboardingLocalDataEpic, initializeCompanyHealthMetricViewLocalData_1.initializeCompanyHealthMetricViewLocalDataEpic, initializeDynamicFormEpic_1.initializeDynamicFormEpic, initializeEditPersonEpic_1.initializeEditPersonEpic, initializeJeScheduleLocalDataEpic_1.initializeJeScheduleLocalDataEpic, initializeInternationalWireLocalDataEpic_1.initializeInternationalWireLocalDataEpic, initializeIntlVerificationFormEpic_1.initializeIntlVerificationFormEpic, invoicingBrandingFormEpics_1.initializeInvoicingBrandingAddressEpic, initializeInvoicingCustomerAddressEpic_1.initializeInvoicingCustomerAddressEpic, initializeInvoicingSubscriptionAddressEpic_1.initializeInvoicingSubscriptionAddressEpic, initializeMyProfileLocalDataEpic_1.initializeMyProfileLocalDataEpic, initializeNewScheduleEpic_1.initializeNewScheduleEpic, initializeOnboardingCustomerViewUpdateDataEpic_1.initializeOnboardingCustomerViewUpdateDataEpic, initializeRemiSetupApproverViewUpdateDataEpic_1.initializeRemiSetupApproverViewUpdateDataEpic, initializeRemiToLocalStoreEpic_1.initializeRemiToLocalStoreEpic, initializeScheduleAccruedDetailLocalDataEpic_1.initializeScheduleAccruedDetailLocalDataEpic, initializeScheduleDetailLocalDataEpic_1.initializeScheduleDetailLocalDataEpic, initializeSubscriptionLocalDataEpic_1.initializeSubscriptionLocalDataEpic, initializeTaskToLocalStoreEpic_1.initializeTaskToLocalStoreEpic, initializeTransactionDetailLocalDataEpic_1.initializeTransactionDetailLocalDataEpic, initializeVendorAddressEpic_1.initializeVendorAddressEpic, initiateChargeCardRepaymentEpic_1.initiateChargeCardRepaymentEpic, reportsClassViewRefetchingEpic_1.initiateReportsClassViewRefetchingEpic, invitePeopleEpic_1.invitePeopleEpic, inviteZeniPeopleEpic_1.inviteZeniPeopleEpic, dataImportActionEpic_1.invoicingDataImportActionEpic, issueChargeCardEpic_1.issueChargeCardEpic, issueCreditNoteEpic_1.issueCreditNoteEpic, lockChargeCardEpic_1.lockChargeCardEpic, lockChargeCardsEpic_1.lockChargeCardsEpic, markAsCompleteScheduleDetailEpic_1.markAsCompleteScheduleDetailEpic, markTransactionAsNotMiscategorizedEpic_2.markTransactionAsNotMiscategorizedEpic, notifyMeForFeatureEpic_1.notifyMeForFeatureEpic, parallelFetchAccountTransactionListEpic_1.parallelFetchAccountTransactionListEpic, parallelFetchClassTransactionListEpic_1.parallelFetchClassTransactionListEpic, parallelFetchEntityTransactionListEpic_1.parallelFetchEntityTransactionListEpic, parallelFetchProjectTransactionListEpic_1.parallelFetchProjectTransactionListEpic, parallelFetchTransactionListByCategoryTypeEpic_1.parallelFetchTransactionListByCategoryTypeEpic, parseInvoiceToBillEpic_1.parseInvoiceToBillEpic, parseReceiptsToRemiEpic_1.parseReceiptsToRemiEpic, parseStatementEpic_1.parseStatementEpic, parseUploadedKybDocumentEpic_1.parseUploadedKybDocumentEpic, parseUploadedKycDocumentEpic_1.parseUploadedKycDocumentEpic, peopleSaveUpdatesEpic_1.peopleSaveUpdatesEpic, policyDocumentExtractionToRecommendationBridgeEpic_1.policyDocumentExtractionToRecommendationBridgeEpic, policyRecommendationFromUploadEpic_1.policyRecommendationFromUploadEpic, watchBulkUploadBatchStatusEpic_1.pollBulkUploadBatchStatusEpic, watchBulkUploadBatchStatusEpic_1.pusherBatchStatusCompletionEpic, pushToastNotificationEpic_1.pushToastNotificationEpic, recordPaymentEpic_1.recordPaymentEpic, refetchCompletedTransactionsOnBulkUploadSortEpic_1.refetchCompletedTransactionsOnBulkUploadSortEpic, refreshBatchDetailsForBatchIdEpic_1.refreshBatchDetailsForBatchIdEpic, refreshExpenseAutomationCurrentTabEpic_1.refreshExpenseAutomationCurrentTabEpic, refreshIntegrationsDataEpic_1.refreshIntegrationsDataEpic, refreshOpExByVendorReportEpic_1.refreshOpExByVendorReportEpic, rejectVendorGlobalReviewEpic_1.rejectVendorGlobalReviewEpic, reorderBillPayApprovalRulesEpic_1.reorderBillPayApprovalRulesEpic, reorderRemiApprovalRulesEpic_1.reorderRemiApprovalRulesEpic, reparseStatementEpic_1.reparseStatementEpic, reportsResyncEpic_1.reportsResyncEpic, resendCardInviteEpic_1.resendCardInviteEpic, resendInviteEpic_1.resendInviteEpic, resendOtpEpic_1.resendOtpEpic, resendReferralInviteEpic_1.resendReferralInviteEpic, resendVerifyDeviceOTPEpic_1.resendVerifyDeviceOTPEpic, resetTransactionVendorLocalDataEpic_1.resetTransactionVendorLocalDataEpic, resetVendorDetailLocalDataEpic_1.resetVendorDetailLocalDataEpic, resetVendorsTabVendorDetailLocalDataEpic_1.resetVendorsTabVendorDetailLocalDataEpic, restoreBulkUploadAutomatchingOnMountEpic_1.restoreBulkUploadAutomatchingOnMountEpic, resumeEnableAccountingProjectsEpic_1.resumeEnableAccountingProjectsEpic, retryBankAccountConnectionEpic_1.retryBankAccountConnectionEpic, retryBankAccountConnectionForOnboardingEpic_1.retryBankAccountConnectionForOnboardingEpic, retryJeSchedulesEpic_1.retryJeScheduleEpic, retryOrRefundBillEpic_1.retryOrRefundBillEpic, reviewDraftRemisBulkActionEpic_ts_1.reviewDraftRemisBulkActionEpic, reviewFluxAnalysisEpic_1.reviewFluxAnalysisViewEpic, revokeCardInviteEpic_1.revokeCardInviteEpic, revokeChargeCardsInviteEpic_1.revokeChargeCardsInviteEpic, catalogActionEpic_1.runInvoicingCatalogPlanActionEpic, catalogActionEpic_1.runInvoicingCatalogProductActionEpic, discountActionEpic_1.runInvoicingDiscountActionEpic, dunningActionEpic_1.runInvoicingDunningActionEpic, invoiceActionEpic_1.runInvoicingInvoiceActionEpic, paymentActionEpic_1.runInvoicingPaymentActionEpic, subscriptionActionEpic_1.runInvoicingSubscriptionActionEpic, saveAccountMappingViewEpic_1.saveAccountMappingViewEpic, saveAccountSettingsViewEpic_1.saveAccountSettingsViewEpic, saveAPIKeyConnectionEpic_1.saveAPIKeyConnectionEpic, saveBillDetailEpic_1.saveBillDetailEpic, saveBillPaySetupApproverViewUpdatesEpic_1.saveBillPaySetupApproverViewUpdatesEpic, saveCannedResponseEpic_1.saveCannedResponseEpic, saveCardOnboardingUserDetailsEpic_1.saveCardOnboardingUserDetailsEpic, saveCompanyBillingAddressEpic_1.saveCompanyBillingAddressEpic, saveCompanyHealthMetricByIdEpic_1.saveCompanyHealthMetricByIdEpic, saveCompanyMonthEndReportEpic_1.saveCompanyMonthEndReportEpic, saveCompanyPassportDetailsEpic_1.saveCompanyPassportDetailsEpic, saveConnectorCredentialsEpic_1.saveConnectorCredentialsEpic, saveCreditAgentMacroEpic_1.saveCreditAgentMacroEpic, saveReconciliationDetailEpic_1.saveReconciliationDetailsEpic, saveReconciliationReviewEpic_1.saveReconciliationReviewEpic, saveExternalConnectionEpic_1.saveExternalConnectionEpic, saveInvoicingCatalogItemEpic_1.saveInvoicingCatalogItemEpic, saveInvoicingCouponEpic_1.saveInvoicingCouponEpic, saveInvoicingCustomerEpic_1.saveInvoicingCustomerEpic, customerPaymentMethodEpic_1.saveInvoicingPaymentMethodEpic, settingsViewEpics_1.saveInvoicingSettingsEpic, saveInvoicingSubscriptionEpic_1.saveInvoicingSubscriptionEpic, saveMagicLinkBankAccountEpic_1.saveMagicLinkBankAccountEpic, saveNewAddressEpic_1.saveNewAddressEpic, saveNewScheduleEpic_1.saveNewScheduleEpic, saveNotificationPreferencesEpic_1.saveNotificationPreferencesEpic, saveNotificationSettingsEpic_1.saveNotificationSettingsEpic, saveOAuthConnectionEpic_1.saveOAuthConnectionEpic, saveOnboardingCustomerCompletedStatusEpic_1.saveOnboardingCustomerCompletedStatusEpic, saveOnboardingCustomerNotesEpic_1.saveOnboardingCustomerNotesEpic, saveOnboardingCustomerViewUpdatesEpic_1.saveOnboardingCustomerViewUpdatesEpic, saveRealTimeApprovalEpic_1.saveRealTimeApprovalEpic, saveReasonForAuditRuleEpic_1.saveReasonForAuditRuleEpic, saveRemiDetailEpic_1.saveRemiDetailEpic, saveRemiSetupApproverViewUpdatesEpic_1.saveRemiSetupApproverViewUpdatesEpic, saveScheduleAccruedDetailsEpic_1.saveScheduleAccruedDetailsEpic, saveScheduleDetailsEpic_1.saveScheduleDetailsEpic, saveSubscriptionNotesUpdatesEpic_1.saveSubscriptionNotesUpdatesEpic, saveSubscriptionUpdatesEpic_1.saveSubscriptionUpdatesEpic, saveTaskDetailEpic_1.saveTaskDetailEpic, saveTransactionDetailEpic_1.saveTransactionDetailEpic, saveTransactionVendorEpic_1.saveTransactionVendorEpic, saveVendorDetailsViewEpic_1.saveVendorDetailsViewEpic, saveVendorEpic_1.saveVendorEpic, saveVendorFirstReviewViewEpic_1.saveVendorFirstReviewViewEpic, saveVendorsTabVendorEpic_1.saveVendorsTabVendorEpic, scheduleTenantCreditScoreCronEpic_1.scheduleTenantCreditScoreCronEpic, searchTransactionsForManualMatchEpic_1.searchTransactionsForManualMatchEpic, searchTransactionsForNewScheduleEpic_1.searchTransactionsForNewScheduleEpic, seedAiCardCreationFormDraftEpic_1.seedAiCardCreationFormDraftEpic, seedAiCardPolicyFormDraftEpic_1.seedAiCardPolicyFormDraftEpic, sendCompanyMonthEndReportEpic_1.sendCompanyMonthEndReportEpic, sendEmailMagicLinkToUserEpic_1.sendEmailMagicLinkToUserEpic, customerPaymentMethodEpic_1.sendInvoicingPaymentLinkEpic, sendOnboardingCustomerViewInviteEpic_1.sendOnboardingCustomerViewInviteEpic, sendOtpEpic_1.sendOtpEpic, sendReferralInviteEpic_1.sendReferralInviteEpic, sessionHeartbeatEpic_1.sessionHeartbeatEpic, snoozeTaskEpic_1.snoozeTaskEpic, statementCloseDayEpic_1.statementCloseDayEpic, stopSubmitEpic_1.stopSubmitEpic, stopSubmitQuestionEpic_1.stopSubmitQuestionEpic, submitDraftBillsBulkActionEpic_1.submitDraftBillsBulkActionEpic, submitDraftRemisBulkActionEpic_1.submitDraftRemisBulkActionEpic, submitExpressPayEpic_1.submitExpressPayEpic, submitFeedbackEpic_1.submitFeedbackEpic, submitIntlVerificationEpic_1.submitIntlVerificationEpic, invoicingBrandingFormEpics_1.submitInvoicingBrandingFormEpic, submitQuestionEpic_1.submitQuestionEpic, switchJESchedulesTabEpic_1.switchJESchedulesTabEpic, syncInvoicingSubscriptionCouponsEpic_1.syncInvoicingSubscriptionCouponsEpic, syncTabsAfterAutomatchEpic_1.syncTabsAfterAutomatchEpic, toggleReportUIOptionForecastModeEpic_1.toggleReportUIOptionForecastModeEpic, transferMoneyEpic_1.transferMoneyEpic, treasuryTransferMoneyEpic_1.treasuryTransferMoneyEpic, triggerAiAccountantJobEpic_1.triggerAiAccountantJobEpic, triggerReviewTabRefetchEpic_1.triggerReviewTabRefetchEpic, unlinkPaymentAccountEpic_1.unlinkPaymentAccountEpic, unlockChargeCardEpic_1.unlockChargeCardEpic, unlockChargeCardsEpic_1.unlockChargeCardsEpic, unsnoozeTaskEpic_1.unsnoozeTaskEpic, updateAccountingClassesEnabledEpic_1.updateAccountingClassesEnabledEpic, updateAccruedJESchedulesEpic_1.updateAccruedJESchedulesEpic, updateAddressEpic_1.updateAddressEpic, updateAmountsInScheduleAccruedDetailEpic_1.updateAmountsInScheduleAccruedDetailEpic, updateAmountsInScheduleDetailEpic_1.updateAmountsInScheduleDetailEpic, updateAutoTransferRuleEpic_1.updateAutoTransferRuleEpic, updateBusinessVerificationDetailsEpic_1.updateBusinessVerificationDetailsEpic, updateCapitalizationAccountThresholdEpic_1.updateCapitalizationAccountThresholdEpic, updateCardPolicyEpic_1.updateCardPolicyEpic, updateCardProfileEpic_1.updateCardProfileEpic, updateChargeCardDetailEpic_1.updateChargeCardDetailEpic, updateChargeCardLimitEpic_1.updateChargeCardLimitEpic, updateChargeCardNameEpic_1.updateChargeCardNameEpic, updateChargeCardsLimitEpic_1.updateChargeCardsLimitEpic, updateCompanyDetailsEpic_1.updateCompanyDetailsEpic, updateCompanyOfficerEpic_1.updateCompanyOfficerEpic, updateCompanyPassportLocalStoreDataEpic_1.updateCompanyPassportLocalStoreDataEpic, updateCompanyTaskManagerViewFiltersEpic_1.updateCompanyTaskManagerViewFiltersEpic, updateDashboardLayoutEpic_1.updateDashboardLayoutEpic, updateDebitCardPinAttemptEpic_1.updateDebitCardPinAttemptEpic, updateDepositAccountEpic_1.updateDepositAccountEpic, updateReconcileTabLocalDataEpic_1.updateReconcileTabLocalDataEpic, updateFileNameEpic_1.updateFileNameEpic, updateFilesMetadataEpic_1.updateFilesMetadataEpic, invoiceActionEpic_1.updateInvoicingInvoiceEpic, updateJESchedulesEpic_1.updateJESchedulesEpic, updateMappedCashAccountEpic_1.updateMappedCashAccountEpic, updateMileageDetailsEpic_1.updateMileageDetailsEpic, updateMyProfileEpic_1.updateMyProfileEpic, updateNetBurnOrIncomeStoryCardSettingsEpic_1.updateNetBurnOrIncomeStoryCardSettingsEpic, updateNotificationViewAllNotificationsStatusEpic_1.updateNotificationViewAllNotificationsStatusEpic, updateNotificationViewNotificationStatusEpic_1.updateNotificationViewNotificationStatusEpic, updateOnboardingCustomerViewCompleteStatusEpic_1.updateOnboardingCustomerViewCompleteStatusEpic, updateOnboardingCustomerViewDashboardLoadedEpic_1.updateOnboardingCustomerViewDashboardLoadedEpic, updateOnboardingCustomerViewEpic_1.updateOnboardingCustomerViewEpic, updateOnboardingCustomerViewLocalStoreDataEpic_1.updateOnboardingCustomerViewLocalStoreDataEpic, updateOnboardingPaymentAccountLoginStatusEpic_1.updateOnboardingPaymentAccountLoginStatusEpic, updateOnboardingPaymentAccountStatusEpic_1.updateOnboardingPaymentAccountStatusEpic, updatePaymentAccountEpic_1.updatePaymentAccountEpic, updatePaymentAccountLoginStatusEpic_1.updatePaymentAccountLoginStatusEpic, updatePaymentAccountStatusEpic_1.updatePaymentAccountStatusEpic, updatePhysicalChargeCardAttemptEpic_1.updatePhysicalChargeCardAttemptEpic, updatePortfolioAllocationEpic_1.updatePortfolioAllocationEpic, updatePrimaryContactEpic_1.updatePrimaryContactEpic, updatePrimaryFundingAccountEpic_1.updatePrimaryFundingAccountEpic, updateQBOConnectionPoolExternalConnectionEpic_1.updateQBOConnectionPoolExternalConnectionEpic, updateReferViewedEpic_1.updateReferViewedEpic, updateRemiSetupViewLocalStoreDataEpic_1.updateRemiSetupViewLocalStoreDataEpic, updateReportUIOptionCOABalancesRangeEpic_1.updateReportUIOptionCOABalancesRangeEpic, updateReportUIOptionCompareModeEpic_1.updateReportUIOptionIsCompareModeEpic, updateReportUIOptionIsCompareModeOnEpic_1.updateReportUIOptionIsCompareModeOnEpic, updateReportUIOptionThisPeriodEpic_1.updateReportUIOptionThisPeriodEpic, updateReportUIOptionTimeFrameEpic_1.updateReportUIOptionTimeFrameEpic, sectionAccountsViewEpic_1.updateSectionAccountsViewEpic, sectionClassesViewEpic_1.updateSectionClassesViewEpic, sectionProjectViewEpic_1.updateSectionProjectViewEpic, updateSelectedVendorForCreateFlowEpic_1.updateSelectedVendorForCreateFlowEpic, updateSetupViewLocalStoreDataEpic_1.updateSetupViewLocalStoreDataEpic, updateStatementInfoEpic_1.updateStatementInfoEpic, updateTaskFromListViewEpic_1.updateTaskFromListViewEpic, updateTaskGroupNameEpic_1.updateTaskGroupNameEpic, updateTransactionDetailEpic_1.updateTransactionDetailEpic, updateTreasuryPromoIntroClosedByOutsideClickEpic_1.updateTreasuryPromoIntroClosedByOutsideClickEpic, updateTreasuryPromoRemindMeLaterClickedEpic_1.updateTreasuryPromoRemindMeLaterClickedEpic, updateTreasuryVideoViewedEpic_1.updateTreasuryVideoViewedEpic, updateVendorContactEpic_1.updateVendorContactEpic, uploadAccountStatementEpic_1.uploadAccountStatementEpic, uploadMissingAttachmentSuccessEpic_1.uploadMissingAttachmentSuccessEpic, uploadMissingReceiptSuccessEpic_1.uploadMissingReceiptSuccessEpic, uploadTransactionReceiptSuccessEpic_1.uploadTransactionReceiptSuccessEpic, validateBillsBulkActionEpic_ts_1.validateBillsBulkActionEpic, vendorFiling1099UploadDetailsSaveEpic_1.vendorFiling1099UploadDetailsSaveEpic, verifyDeviceWithTwoFAEpic_1.verifyDeviceWithTwoFAEpic, verifyOtpEpic_1.verifyOtpEpic, verifyUserEpic_1.verifyUserEpic, fetchBillAndInitializeLocalStoreEpic_1.waitForBillDetailThenInitializeLocalStoreEpic, fetchNetBurnOrIncomeWithForecastEpic_1.waitForForecastListThenFetchNetBurnOrIncomeWithForecastEpic, fetchOpExWithForecastEpic_1.waitForForecastListThenFetchOpExWithForecastEpic, fetchRevenueWithForecastEpic_1.waitForForecastListThenFetchRevenueWithForecastEpic, fetchRecommendationsAndUpdateMerchantRecommendationsEpic_1.waitForMerchantRecommendationFetchThenUpdateRecommendationInMerchantEpic, fetchVendorAndUpdateBillLocalDataEpic_1.waitForVendorByIdThenSaveBillUpdatetoLocalStoreEpic, fetchVendorByNameAndParseInvoice_1.waitForVendorByNameThenParsetoLocalStoreEpic, fetchBillDetailEpic_1.waitForVendorByNameThenUpdateBillDetailEpic, fetchAndUpdateVendorRecommendationsEpic_1.waitForVendorRecommendationFetchThenUpdateRecommendationInBillEpic, wiseRedirectEpic_1.wiseRedirectEpic);
691
699
  const rootEpic = (action$, store$, dependencies) => combinedEpics(action$, store$, dependencies).pipe((0, operators_1.map)(rxjs_1.identity), (0, operators_1.catchError)((error, source) => {
692
700
  console.error(error);
693
701
  return source;
@@ -34,7 +34,8 @@ import { verifyUserEpic } from './view/commonVendorView/vendorView/epics/twoFact
34
34
  // ── Company Config Epics ─────────────────────────────────────────────
35
35
  import { fetchCompanyConfigEpic } from './view/companyConfigView/companyConfigEpic';
36
36
  import { fetchCompanyMetaDataEpic } from './view/companyView/epic/fetchCompanyMetaDataEpic';
37
- // ── Notification Badge Epic ──────────────────────────────────────────
37
+ import { saveNotificationPreferencesEpic } from './view/notificationPreferencesView/epics/saveNotificationPreferencesEpic';
38
+ // ── Notification Epics ───────────────────────────────────────────────
38
39
  import { fetchNotificationUnreadCountEpic } from './view/notificationView/epics/fetchNotificationUnreadCountEpic';
39
40
  // ── User Profile Epics ───────────────────────────────────────────────
40
41
  import { fetchMyProfileEpic } from './view/settingsView/epic/fetchMyProfileEpic';
@@ -57,7 +58,7 @@ resendOtpEpic, sendOtpEpic, verifyOtpEpic, verifyUserEpic,
57
58
  // Company config
58
59
  fetchCompanyConfigEpic, fetchCompanyMetaDataEpic,
59
60
  // Notifications
60
- fetchNotificationUnreadCountEpic,
61
+ fetchNotificationUnreadCountEpic, saveNotificationPreferencesEpic,
61
62
  // User profile
62
63
  fetchMyProfileEpic, fetchMyProfileViewEpic);
63
64
  export default coreRootEpic;
@@ -251,6 +251,7 @@ export function toJEScheduledTransaction(payload) {
251
251
  updatedByUserID: payload.updated_by.user_id,
252
252
  balanceAsOfToday: payload.balance ?? undefined,
253
253
  updatedAt: payload.updated_at != null ? date(payload.updated_at) : undefined,
254
+ createTime: payload.create_time != null ? date(payload.create_time) : undefined,
254
255
  jeCredit: {
255
256
  accountId: payload.je_credit_account_id ?? undefined,
256
257
  accountingClassId: payload.je_credit_accounting_class_id ?? undefined,
@@ -275,6 +276,7 @@ export function toJEScheduledTransaction(payload) {
275
276
  : {},
276
277
  scheduledJournalEntry: [],
277
278
  aiSummaries: toJEScheduleAISummaries(payload.ai_summaries),
279
+ confidenceScore: payload.confidence_score ?? undefined,
278
280
  createdByUserID: payload.created_by?.user_id ?? undefined,
279
281
  recommendations: toJEScheduleRecommendations(payload.recommendations),
280
282
  };
@@ -35,6 +35,8 @@ export const getJEAccruedScheduleByJEScheduleKey = (JEScheduleKey, state) => {
35
35
  reportId: 'class_list',
36
36
  })
37
37
  : undefined;
38
+ const postedCount = scheduledJournalEntry.filter((sje) => sje.status.code === 'posted' || sje.status.code === 'recorded').length;
39
+ const lifecycleTotal = period ?? scheduledJournalEntry.length;
38
40
  return {
39
41
  jeScheduleId,
40
42
  otherAttributes,
@@ -43,6 +45,8 @@ export const getJEAccruedScheduleByJEScheduleKey = (JEScheduleKey, state) => {
43
45
  updatedAt,
44
46
  currencyCode,
45
47
  currencySymbol,
48
+ lifecycleTotal,
49
+ postedCount,
46
50
  jeCredit: {
47
51
  accountingClass: classCredit,
48
52
  account: accountCredit,
@@ -70,7 +74,7 @@ export const getJEAccruedScheduleByJEScheduleKey = (JEScheduleKey, state) => {
70
74
  export const getJEScheduledTransactionByJEScheduleTransactionKey = (jeScheduleTransactionKey, state) => {
71
75
  const { jeSchedulesState, vendorState, accountState, userState, classState, transactionState, } = state;
72
76
  const jeScheduleTransactionState = recordGet(jeSchedulesState.schedulesByTransactionKey, jeScheduleTransactionKey);
73
- const { period, updatedByUserID: updatedBy, createdByUserID: createdBy, vendorId, jeCredit, jeDebit, currencyCode, currencySymbol, balanceAsOfToday, baseTransaction, startDate, endDate, status, updatedAt, jeScheduleId, scheduledJournalEntry, dayOfPostingDate: postingDate, lastDayOfMonth, otherAttributes, jeScheduleType, aiSummaries, recommendations, } = jeScheduleTransactionState;
77
+ const { period, updatedByUserID: updatedBy, createdByUserID: createdBy, createTime, vendorId, jeCredit, jeDebit, currencyCode, currencySymbol, balanceAsOfToday, baseTransaction, startDate, endDate, status, updatedAt, jeScheduleId, scheduledJournalEntry, dayOfPostingDate: postingDate, lastDayOfMonth, otherAttributes, jeScheduleType, aiSummaries, confidenceScore, recommendations, } = jeScheduleTransactionState;
74
78
  const vendorDetails = getVendorByVendorId(vendorState, vendorId);
75
79
  if (vendorDetails == null) {
76
80
  throw new Error(`Vendor with ${vendorId} doesn't exist`);
@@ -99,6 +103,8 @@ export const getJEScheduledTransactionByJEScheduleTransactionKey = (jeScheduleTr
99
103
  reportId: 'class_list',
100
104
  })
101
105
  : undefined;
106
+ const postedCount = scheduledJournalEntry.filter((sje) => sje.status.code === 'posted' || sje.status.code === 'recorded').length;
107
+ const lifecycleTotal = period ?? scheduledJournalEntry.length;
102
108
  return {
103
109
  jeScheduleId,
104
110
  jeScheduleType,
@@ -107,6 +113,8 @@ export const getJEScheduledTransactionByJEScheduleTransactionKey = (jeScheduleTr
107
113
  updatedByUser: userDetails,
108
114
  updatedAt: updatedAt,
109
115
  period,
116
+ lifecycleTotal,
117
+ postedCount,
110
118
  balanceAsOfToday: balanceAsOfToday != null
111
119
  ? toAmount(balanceAsOfToday, currencyCode, currencySymbol)
112
120
  : undefined,
@@ -129,7 +137,9 @@ export const getJEScheduledTransactionByJEScheduleTransactionKey = (jeScheduleTr
129
137
  },
130
138
  scheduledJournalEntry,
131
139
  aiSummaries,
140
+ confidenceScore,
132
141
  createdByUser: createdByUserDetails,
142
+ createTime,
133
143
  recommendations,
134
144
  };
135
145
  };
@@ -0,0 +1,24 @@
1
+ import { toNotificationChannel, toNotificationFrequency, } from './notificationRegistryState';
2
+ const mapDefaultEnabled = (raw) => {
3
+ const out = {};
4
+ Object.entries(raw).forEach(([channel, enabled]) => {
5
+ out[toNotificationChannel(channel)] = enabled;
6
+ });
7
+ return out;
8
+ };
9
+ const mapEvent = (payload) => ({
10
+ channels: payload.channels.map(toNotificationChannel),
11
+ defaultEnabled: mapDefaultEnabled(payload.default_enabled),
12
+ displayName: payload.display_name,
13
+ eventId: payload.event_id,
14
+ suppressible: payload.suppressible,
15
+ });
16
+ const mapGroup = (payload) => ({
17
+ displayName: payload.display_name,
18
+ events: payload.events.map(mapEvent),
19
+ groupId: payload.group_id,
20
+ });
21
+ export const mapNotificationRegistryPayloadToRegistry = (payload) => ({
22
+ frequencyOptions: payload.frequency_options.map(toNotificationFrequency),
23
+ groups: payload.groups.map(mapGroup),
24
+ });
@@ -0,0 +1,46 @@
1
+ import { createSlice } from '@reduxjs/toolkit';
2
+ import { mapNotificationRegistryPayloadToRegistry, } from './notificationRegistryPayload';
3
+ export const initialState = { registryEpoch: 0 };
4
+ const notificationRegistry = createSlice({
5
+ name: 'notificationRegistry',
6
+ initialState,
7
+ reducers: {
8
+ clearAllNotificationRegistry(draft) {
9
+ // Bump `registryEpoch` (don't rewind to 0) so any settings-envelope
10
+ // GET that was already in flight when the tenant switched is treated
11
+ // as stale: its captured `registryEpochAtDispatch` is now lower than
12
+ // the current epoch, so `updateNotificationRegistry` skips its write.
13
+ // Mirrors the `saveEpoch` bump in `clearAllNotificationPreferencesView`
14
+ // — Cursor Bugbot 67d6918e. Returning `initialState` verbatim would
15
+ // rewind the counter and let a stale in-flight GET restore A's
16
+ // registry over B's.
17
+ return { registryEpoch: draft.registryEpoch + 1 };
18
+ },
19
+ updateNotificationRegistry(draft, action) {
20
+ // Stale-response guard (Cursor Bugbot 67d6918e): if the fetch epic
21
+ // captured a `registryEpoch` lower than the current one, a clear
22
+ // (tenant switch) has landed since this GET dispatched. The response
23
+ // carries the prior tenant's snapshot and must not restore it — nor,
24
+ // when it omits the registry, wipe the fresh one. Skip entirely.
25
+ if (action.payload.registryEpochAtDispatch < draft.registryEpoch) {
26
+ return;
27
+ }
28
+ // Gate-off / absent-registry case: an envelope that omits
29
+ // `task_checklist_registry` CLEARS so tenant B doesn't inherit A's
30
+ // Task Checklist section. Guarded by the epoch check above so a stale
31
+ // absent-response can't wipe a fresh registry.
32
+ if (action.payload.registry == null) {
33
+ draft.registry = undefined;
34
+ return;
35
+ }
36
+ // Full-replace contract: the registry payload is atomic — every fetch
37
+ // returns the complete group/event tree. If the backend ever ships a
38
+ // partial registry response, this write MUST switch to a merge (mirror
39
+ // the preferences slice's `mergePreferences`). Do not assume the
40
+ // current payload is partial without also updating this reducer.
41
+ draft.registry = mapNotificationRegistryPayloadToRegistry(action.payload.registry);
42
+ },
43
+ },
44
+ });
45
+ export const { clearAllNotificationRegistry, updateNotificationRegistry } = notificationRegistry.actions;
46
+ export default notificationRegistry.reducer;