@zeniai/client-epic-state 5.0.0 → 5.0.2-betaRD1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonPayloadTypes/subAccountView/reportBySubAccountPayload.d.ts +2 -0
- package/lib/commonStateTypes/coaBalance/coaBalancesFilterProjectView.d.ts +13 -0
- package/lib/commonStateTypes/coaBalance/coaBalancesFilterProjectView.js +9 -0
- package/lib/commonStateTypes/common.d.ts +1 -1
- package/lib/commonStateTypes/projectView/projectViewParentID.d.ts +5 -0
- package/lib/commonStateTypes/projectView/projectViewParentID.js +2 -0
- package/lib/commonStateTypes/viewAndReport/reportIDHelper.d.ts +1 -0
- package/lib/commonStateTypes/viewAndReport/reportIDHelper.js +3 -1
- package/lib/commonStateTypes/viewAndReport/viewAndReport.d.ts +2 -2
- package/lib/commonStateTypes/viewAndReport/viewAndReport.js +1 -0
- package/lib/entity/account/accountReducer.js +6 -3
- package/lib/entity/account/accountSelector.d.ts +7 -0
- package/lib/entity/account/accountSelector.js +4 -2
- package/lib/entity/account/accountState.d.ts +3 -1
- package/lib/entity/account/accountState.js +4 -1
- package/lib/entity/account/pickAndMergeForecastAccountReport.d.ts +1 -0
- package/lib/entity/account/subAccountSelector.d.ts +2 -0
- package/lib/entity/account/subAccountSelector.js +2 -0
- package/lib/entity/accountGroup/accountGroupSelector.d.ts +22 -0
- package/lib/entity/accountGroup/accountGroupState.d.ts +1 -1
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerPayload.d.ts +44 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerPayload.js +55 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerReducer.d.ts +10 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerReducer.js +51 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerSelector.d.ts +48 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerSelector.js +66 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerState.d.ts +52 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerState.js +37 -0
- package/lib/entity/billPay/billTransaction/billTransactionState.d.ts +2 -2
- package/lib/entity/chargeCard/chargeCard.d.ts +1 -1
- package/lib/entity/class/classReducer.d.ts +4 -4
- package/lib/entity/class/classState.d.ts +1 -1
- package/lib/entity/depositAccountTransaction/depositAccountTransaction.d.ts +1 -1
- package/lib/entity/entityApprovalStatus/entityApprovalStatusState.d.ts +2 -2
- package/lib/entity/forecast/forecastState.d.ts +1 -1
- package/lib/entity/jeSchedules/jeSchedulesTypes.d.ts +1 -1
- package/lib/entity/project/projectPayload.d.ts +13 -0
- package/lib/entity/project/projectPayload.js +30 -0
- package/lib/entity/project/projectReducer.d.ts +10 -0
- package/lib/entity/project/projectReducer.js +31 -0
- package/lib/entity/project/projectSelector.d.ts +5 -0
- package/lib/entity/project/projectSelector.js +12 -0
- package/lib/entity/project/projectState.d.ts +13 -0
- package/lib/entity/project/projectState.js +2 -0
- package/lib/entity/sectionAccountsView/sectionAccountsView.d.ts +1 -1
- package/lib/entity/sectionClassesViewV2/sectionClassesView.d.ts +1 -1
- package/lib/entity/sectionClassesViewV2/sectionClassesViewReducer.d.ts +2 -2
- package/lib/entity/sectionProjectView/sectionProjectView.d.ts +11 -0
- package/lib/entity/sectionProjectView/sectionProjectView.js +6 -0
- package/lib/entity/sectionProjectView/sectionProjectViewEpic.d.ts +6 -0
- package/lib/entity/sectionProjectView/sectionProjectViewEpic.js +56 -0
- package/lib/entity/sectionProjectView/sectionProjectViewHelper.d.ts +10 -0
- package/lib/entity/sectionProjectView/sectionProjectViewHelper.js +14 -0
- package/lib/entity/sectionProjectView/sectionProjectViewReducer.d.ts +15 -0
- package/lib/entity/sectionProjectView/sectionProjectViewReducer.js +56 -0
- package/lib/entity/sectionProjectView/sectionProjectViewSelector.d.ts +11 -0
- package/lib/entity/sectionProjectView/sectionProjectViewSelector.js +94 -0
- package/lib/entity/sectionProjectView/sectionProjectViewSelectorTypes.d.ts +16 -0
- package/lib/entity/sectionProjectView/sectionProjectViewSelectorTypes.js +2 -0
- package/lib/entity/sectionProjectView/sectionProjectViewState.d.ts +4 -0
- package/lib/entity/sectionProjectView/sectionProjectViewState.js +2 -0
- package/lib/entity/snackbar/snackbarTypes.d.ts +1 -1
- package/lib/entity/tenant/clearAllEpic.d.ts +7 -2
- package/lib/entity/tenant/clearAllEpic.js +10 -0
- package/lib/entity/tenant/tenantPayload.d.ts +1 -0
- package/lib/entity/tenant/tenantReducer.js +1 -0
- package/lib/entity/tenant/tenantSelector.d.ts +1 -0
- package/lib/entity/tenant/tenantSelector.js +9 -1
- package/lib/entity/tenant/tenantState.d.ts +1 -0
- package/lib/entity/transaction/payloadTypes/transactionPayload.js +21 -0
- package/lib/entity/userRole/userRoleType.d.ts +2 -2
- package/lib/epic.d.ts +8 -1
- package/lib/epic.js +8 -1
- package/lib/esm/commonStateTypes/coaBalance/coaBalancesFilterProjectView.js +5 -0
- package/lib/esm/commonStateTypes/projectView/projectViewParentID.js +1 -0
- package/lib/esm/commonStateTypes/viewAndReport/reportIDHelper.js +1 -0
- package/lib/esm/commonStateTypes/viewAndReport/viewAndReport.js +1 -0
- package/lib/esm/entity/account/accountReducer.js +6 -3
- package/lib/esm/entity/account/accountSelector.js +4 -2
- package/lib/esm/entity/account/accountState.js +4 -1
- package/lib/esm/entity/account/subAccountSelector.js +2 -0
- package/lib/esm/entity/aiAccountantCustomer/aiAccountantCustomerPayload.js +49 -0
- package/lib/esm/entity/aiAccountantCustomer/aiAccountantCustomerReducer.js +47 -0
- package/lib/esm/entity/aiAccountantCustomer/aiAccountantCustomerSelector.js +62 -0
- package/lib/esm/entity/aiAccountantCustomer/aiAccountantCustomerState.js +31 -0
- package/lib/esm/entity/project/projectPayload.js +26 -0
- package/lib/esm/entity/project/projectReducer.js +27 -0
- package/lib/esm/entity/project/projectSelector.js +8 -0
- package/lib/esm/entity/project/projectState.js +1 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectView.js +3 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewEpic.js +52 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewHelper.js +10 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewReducer.js +52 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewSelector.js +87 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewSelectorTypes.js +1 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewState.js +1 -0
- package/lib/esm/entity/tenant/clearAllEpic.js +10 -0
- package/lib/esm/entity/tenant/tenantReducer.js +1 -0
- package/lib/esm/entity/tenant/tenantSelector.js +7 -0
- package/lib/esm/entity/transaction/payloadTypes/transactionPayload.js +21 -0
- package/lib/esm/epic.js +8 -1
- package/lib/esm/index.js +14 -4
- package/lib/esm/reducer.js +15 -0
- package/lib/esm/view/aiAccountantView/aiAccountantViewPayload.js +2 -0
- package/lib/esm/view/aiAccountantView/aiAccountantViewReducer.js +149 -0
- package/lib/esm/view/aiAccountantView/aiAccountantViewSelector.js +72 -0
- package/lib/esm/view/aiAccountantView/aiAccountantViewState.js +11 -0
- package/lib/esm/view/aiAccountantView/epics/cancelAiAccountantOnboardingEpic.js +46 -0
- package/lib/esm/view/aiAccountantView/epics/fetchAiAccountantCustomersEpic.js +27 -0
- package/lib/esm/view/aiAccountantView/epics/fetchAiAccountantJobsEpic.js +47 -0
- package/lib/esm/view/aiAccountantView/epics/triggerAiAccountantJobEpic.js +52 -0
- package/lib/esm/view/aiCfoView/epics/fetchSuggestedQuestionsEpic.js +1 -1
- package/lib/esm/view/financeStatement/financeStatementSelector.js +12 -1
- package/lib/esm/view/profitAndLossProjectView/profitAndLossForTimeframeProjectViewEpic.js +47 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewEpic.js +30 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewPayload.js +1 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewReducer.js +113 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewSelector.js +65 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewSelectorTypes.js +1 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewState.js +1 -0
- package/lib/esm/view/reportsResync/reportsClassViewRefetchingEpic.js +4 -0
- package/lib/index.d.ts +19 -4
- package/lib/index.js +73 -34
- package/lib/reducer.d.ts +15 -0
- package/lib/reducer.js +15 -0
- package/lib/tsconfig.typecheck.tsbuildinfo +1 -1
- package/lib/view/aiAccountantView/aiAccountantViewPayload.d.ts +31 -0
- package/lib/view/aiAccountantView/aiAccountantViewPayload.js +8 -0
- package/lib/view/aiAccountantView/aiAccountantViewReducer.d.ts +29 -0
- package/lib/view/aiAccountantView/aiAccountantViewReducer.js +153 -0
- package/lib/view/aiAccountantView/aiAccountantViewSelector.d.ts +14 -0
- package/lib/view/aiAccountantView/aiAccountantViewSelector.js +78 -0
- package/lib/view/aiAccountantView/aiAccountantViewState.d.ts +27 -0
- package/lib/view/aiAccountantView/aiAccountantViewState.js +13 -0
- package/lib/view/aiAccountantView/epics/cancelAiAccountantOnboardingEpic.d.ts +33 -0
- package/lib/view/aiAccountantView/epics/cancelAiAccountantOnboardingEpic.js +50 -0
- package/lib/view/aiAccountantView/epics/fetchAiAccountantCustomersEpic.d.ts +23 -0
- package/lib/view/aiAccountantView/epics/fetchAiAccountantCustomersEpic.js +31 -0
- package/lib/view/aiAccountantView/epics/fetchAiAccountantJobsEpic.d.ts +33 -0
- package/lib/view/aiAccountantView/epics/fetchAiAccountantJobsEpic.js +51 -0
- package/lib/view/aiAccountantView/epics/triggerAiAccountantJobEpic.d.ts +28 -0
- package/lib/view/aiAccountantView/epics/triggerAiAccountantJobEpic.js +56 -0
- package/lib/view/aiCfoView/epics/fetchSuggestedQuestionsEpic.js +1 -1
- package/lib/view/auditReportView/auditReportViewState.d.ts +1 -1
- package/lib/view/billPayCard/billPayCardSelector.d.ts +1 -1
- package/lib/view/cardBalance/cardBalanceSelector.d.ts +2 -1
- package/lib/view/cashBalance/cashBalanceSelector.d.ts +2 -1
- package/lib/view/cashInCashOut/cashInCashOutSelector.d.ts +1 -1
- package/lib/view/cashPosition/cashPositionSelector.d.ts +1 -1
- package/lib/view/companyView/types/cockpitTypes.d.ts +6 -5
- package/lib/view/dashboard/dashboardReducer.d.ts +2 -2
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts +1 -1
- package/lib/view/expenseAutomationView/payload/reconciliationPayload.d.ts +8 -0
- package/lib/view/expenseAutomationView/types/missingReceiptsViewState.d.ts +1 -1
- package/lib/view/financeStatement/financeStatementReducer.d.ts +1 -1
- package/lib/view/financeStatement/financeStatementSelector.d.ts +2 -0
- package/lib/view/financeStatement/financeStatementSelector.js +12 -1
- package/lib/view/globalMerchantView/globalMerchantViewReducer.d.ts +2 -2
- package/lib/view/onboardingView/cockpitView/types/onboardingCockpitViewTypes.d.ts +1 -1
- package/lib/view/profitAndLossProjectView/profitAndLossForTimeframeProjectViewEpic.d.ts +9 -0
- package/lib/view/profitAndLossProjectView/profitAndLossForTimeframeProjectViewEpic.js +51 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewEpic.d.ts +6 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewEpic.js +34 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewPayload.d.ts +33 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewPayload.js +2 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewReducer.d.ts +33 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewReducer.js +117 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewSelector.d.ts +9 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewSelector.js +69 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewSelectorTypes.d.ts +19 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewSelectorTypes.js +2 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewState.d.ts +22 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewState.js +2 -0
- package/lib/view/reimbursementCard/reimbursementCardSelector.d.ts +1 -1
- package/lib/view/reportsResync/reportsClassViewRefetchingEpic.d.ts +2 -1
- package/lib/view/reportsResync/reportsClassViewRefetchingEpic.js +4 -0
- package/lib/view/reportsResync/reportsResyncReducer.d.ts +2 -2
- package/lib/view/reviewCompanyView/reviewCompanyViewState.d.ts +1 -1
- package/lib/view/spendManagement/billPay/billList/billListReducer.d.ts +1 -1
- package/lib/view/spendManagement/billPay/billList/billListState.d.ts +1 -1
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetail.d.ts +1 -1
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailReducer.d.ts +4 -4
- package/lib/view/spendManagement/reimbursement/remiListView/remiListReducer.d.ts +1 -1
- package/lib/view/spendManagement/reimbursement/remiListView/remiListState.d.ts +3 -3
- package/lib/view/subscriptionView/types/subscriptionTypes.d.ts +1 -1
- package/lib/view/tasksCard/tasksCardSelector.d.ts +1 -1
- package/lib/view/topEx/topExSelector.d.ts +1 -1
- package/package.json +1 -1
package/lib/reducer.js
CHANGED
|
@@ -53,6 +53,7 @@ const chargeCardReducer_1 = __importStar(require("./entity/chargeCard/chargeCard
|
|
|
53
53
|
const chargeCardRepaymentReducer_1 = __importStar(require("./entity/chargeCardRepayment/chargeCardRepaymentReducer"));
|
|
54
54
|
const chargeCardTransactionReducer_1 = __importStar(require("./entity/chargeCardTransaction/chargeCardTransactionReducer"));
|
|
55
55
|
const classReducer_1 = __importStar(require("./entity/class/classReducer"));
|
|
56
|
+
const projectReducer_1 = __importStar(require("./entity/project/projectReducer"));
|
|
56
57
|
const companyReducer_1 = __importStar(require("./entity/company/companyReducer"));
|
|
57
58
|
const companyHealthMetricReducer_1 = __importStar(require("./entity/companyHealthMetric/companyHealthMetricReducer"));
|
|
58
59
|
const connectedAccountReducer_1 = __importStar(require("./entity/connectedAccount/connectedAccountReducer"));
|
|
@@ -80,6 +81,7 @@ const accountingSummaryReducer_1 = __importStar(require("./entity/portfolio/acco
|
|
|
80
81
|
const reimbursementReducer_1 = __importStar(require("./entity/reimbursement/reimbursementReducer"));
|
|
81
82
|
const sectionAccountsViewReducer_1 = __importStar(require("./entity/sectionAccountsView/sectionAccountsViewReducer"));
|
|
82
83
|
const sectionClassesViewReducer_1 = __importStar(require("./entity/sectionClassesViewV2/sectionClassesViewReducer"));
|
|
84
|
+
const sectionProjectViewReducer_1 = __importStar(require("./entity/sectionProjectView/sectionProjectViewReducer"));
|
|
83
85
|
const snackbarReducer_1 = __importStar(require("./entity/snackbar/snackbarReducer"));
|
|
84
86
|
const subscriptionReducer_1 = __importStar(require("./entity/subscription/subscription/subscriptionReducer"));
|
|
85
87
|
const subscriptionAddOnReducer_1 = __importStar(require("./entity/subscription/subscriptionAddOn/subscriptionAddOnReducer"));
|
|
@@ -106,6 +108,8 @@ const accountMappingReducer_1 = __importStar(require("./view/accountMappingView/
|
|
|
106
108
|
const addressViewReducer_1 = __importStar(require("./view/addressView/addressViewReducer"));
|
|
107
109
|
const aggregatedReportViewReducer_1 = __importStar(require("./view/aiAgentPerformance/aggregatedReportViewReducer"));
|
|
108
110
|
const aiCfoViewReducer_1 = __importStar(require("./view/aiCfoView/aiCfoViewReducer"));
|
|
111
|
+
const aiAccountantCustomerReducer_1 = __importStar(require("./entity/aiAccountantCustomer/aiAccountantCustomerReducer"));
|
|
112
|
+
const aiAccountantViewReducer_1 = __importStar(require("./view/aiAccountantView/aiAccountantViewReducer"));
|
|
109
113
|
const apAgingDetailReducer_1 = __importStar(require("./view/apAgingView/apAgingDetail/apAgingDetailReducer"));
|
|
110
114
|
const apAgingReducer_1 = __importStar(require("./view/apAgingView/apAgingReport/apAgingReducer"));
|
|
111
115
|
const arAgingDetailReducer_1 = __importStar(require("./view/arAgingView/arAgingDetail/arAgingDetailReducer"));
|
|
@@ -161,6 +165,7 @@ const ownerListReducer_1 = __importStar(require("./view/ownerList/ownerListReduc
|
|
|
161
165
|
const peopleReducer_1 = __importStar(require("./view/people/peopleReducer"));
|
|
162
166
|
const profitAndLossReducer_1 = __importStar(require("./view/profitAndLoss/profitAndLossReducer"));
|
|
163
167
|
const profitAndLossClassesViewReducer_1 = __importStar(require("./view/profitAndLossClassesView/profitAndLossClassesViewReducer"));
|
|
168
|
+
const profitAndLossProjectViewReducer_1 = __importStar(require("./view/profitAndLossProjectView/profitAndLossProjectViewReducer"));
|
|
164
169
|
const recommendationReducer_1 = __importStar(require("./view/recommendation/recommendationReducer"));
|
|
165
170
|
const referralReducer_1 = __importStar(require("./view/referralView/referralReducer"));
|
|
166
171
|
const reimbursementCardReducer_1 = __importStar(require("./view/reimbursementCard/reimbursementCardReducer"));
|
|
@@ -259,6 +264,7 @@ const initialEntitiesState = {
|
|
|
259
264
|
accountReconState: accountReconReducer_1.initialState,
|
|
260
265
|
accountState: accountReducer_1.initialState,
|
|
261
266
|
addressState: addressReducer_1.initialState,
|
|
267
|
+
aiAccountantCustomerState: aiAccountantCustomerReducer_1.initialAiAccountantCustomerState,
|
|
262
268
|
aiCfoState: aiCfoReducer_1.initialAiCfoState,
|
|
263
269
|
approvalRuleState: approvalRuleReducer_1.initialState,
|
|
264
270
|
bankAccountState: bankAccountReducer_1.initialState,
|
|
@@ -268,6 +274,7 @@ const initialEntitiesState = {
|
|
|
268
274
|
chargeCardRepaymentState: chargeCardRepaymentReducer_1.initialState,
|
|
269
275
|
chargeCardTransactionState: chargeCardTransactionReducer_1.initialState,
|
|
270
276
|
classState: classReducer_1.initialState,
|
|
277
|
+
projectState: projectReducer_1.initialState,
|
|
271
278
|
companyHealthMetricState: companyHealthMetricReducer_1.initialState,
|
|
272
279
|
companyState: companyReducer_1.initialState,
|
|
273
280
|
connectedAccountState: connectedAccountReducer_1.initialState,
|
|
@@ -296,6 +303,7 @@ const initialEntitiesState = {
|
|
|
296
303
|
reimbursementState: reimbursementReducer_1.initialState,
|
|
297
304
|
sectionAccountsViewState: sectionAccountsViewReducer_1.initialState,
|
|
298
305
|
sectionClassesViewStateV2: sectionClassesViewReducer_1.initialState,
|
|
306
|
+
sectionProjectViewState: sectionProjectViewReducer_1.initialState,
|
|
299
307
|
snackbarState: snackbarReducer_1.initialSnackbarState,
|
|
300
308
|
subscriptionAddOnState: subscriptionAddOnReducer_1.initialState,
|
|
301
309
|
subscriptionCouponState: subscriptionCouponReducer_1.initialState,
|
|
@@ -325,6 +333,7 @@ const initialViewsState = {
|
|
|
325
333
|
accountMappingState: accountMappingReducer_1.initialState,
|
|
326
334
|
addressViewState: addressViewReducer_1.initialState,
|
|
327
335
|
aggregatedReportViewState: aggregatedReportViewReducer_1.initialState,
|
|
336
|
+
aiAccountantViewState: aiAccountantViewReducer_1.initialAiAccountantViewState,
|
|
328
337
|
aiCfoViewState: aiCfoViewReducer_1.initialAiCfoViewState,
|
|
329
338
|
apAgingDetailState: apAgingDetailReducer_1.initialState,
|
|
330
339
|
apAgingState: apAgingReducer_1.initialState,
|
|
@@ -410,6 +419,7 @@ const initialViewsState = {
|
|
|
410
419
|
plaidAccountViewState: plaidAccountViewReducer_1.initialState,
|
|
411
420
|
previousBillsState: previousBillsReducer_1.initialState,
|
|
412
421
|
profitAndLossClassesViewState: profitAndLossClassesViewReducer_1.initialState,
|
|
422
|
+
profitAndLossProjectViewState: profitAndLossProjectViewReducer_1.initialState,
|
|
413
423
|
profitAndLossState: profitAndLossReducer_1.initialState,
|
|
414
424
|
realTimeApprovalState: realTimeApprovalReducer_1.initialState,
|
|
415
425
|
referralViewState: referralReducer_1.initialState,
|
|
@@ -483,6 +493,7 @@ const entityReducers = {
|
|
|
483
493
|
accountingSummaryState: accountingSummaryReducer_1.default,
|
|
484
494
|
accountState: accountReducer_1.default,
|
|
485
495
|
addressState: addressReducer_1.default,
|
|
496
|
+
aiAccountantCustomerState: aiAccountantCustomerReducer_1.default,
|
|
486
497
|
aiCfoState: aiCfoReducer_1.default,
|
|
487
498
|
approvalRuleState: approvalRuleReducer_1.default,
|
|
488
499
|
bankAccountState: bankAccountReducer_1.default,
|
|
@@ -493,6 +504,7 @@ const entityReducers = {
|
|
|
493
504
|
chargeCardRepaymentState: chargeCardRepaymentReducer_1.default,
|
|
494
505
|
chargeCardTransactionState: chargeCardTransactionReducer_1.default,
|
|
495
506
|
classState: classReducer_1.default,
|
|
507
|
+
projectState: projectReducer_1.default,
|
|
496
508
|
companyHealthMetricState: companyHealthMetricReducer_1.default,
|
|
497
509
|
companyState: companyReducer_1.default,
|
|
498
510
|
connectedAccountState: connectedAccountReducer_1.default,
|
|
@@ -521,6 +533,7 @@ const entityReducers = {
|
|
|
521
533
|
reimbursementState: reimbursementReducer_1.default,
|
|
522
534
|
sectionAccountsViewState: sectionAccountsViewReducer_1.default,
|
|
523
535
|
sectionClassesViewStateV2: sectionClassesViewReducer_1.default,
|
|
536
|
+
sectionProjectViewState: sectionProjectViewReducer_1.default,
|
|
524
537
|
snackbarState: snackbarReducer_1.default,
|
|
525
538
|
subscriptionAddOnState: subscriptionAddOnReducer_1.default,
|
|
526
539
|
subscriptionCouponState: subscriptionCouponReducer_1.default,
|
|
@@ -550,6 +563,7 @@ const viewReducers = {
|
|
|
550
563
|
accountMappingState: accountMappingReducer_1.default,
|
|
551
564
|
addressViewState: addressViewReducer_1.default,
|
|
552
565
|
aggregatedReportViewState: aggregatedReportViewReducer_1.default,
|
|
566
|
+
aiAccountantViewState: aiAccountantViewReducer_1.default,
|
|
553
567
|
aiCfoViewState: aiCfoViewReducer_1.default,
|
|
554
568
|
apAgingDetailState: apAgingDetailReducer_1.default,
|
|
555
569
|
apAgingState: apAgingReducer_1.default,
|
|
@@ -635,6 +649,7 @@ const viewReducers = {
|
|
|
635
649
|
plaidAccountViewState: plaidAccountViewReducer_1.default,
|
|
636
650
|
previousBillsState: previousBillsReducer_1.default,
|
|
637
651
|
profitAndLossClassesViewState: profitAndLossClassesViewReducer_1.default,
|
|
652
|
+
profitAndLossProjectViewState: profitAndLossProjectViewReducer_1.default,
|
|
638
653
|
profitAndLossState: profitAndLossReducer_1.default,
|
|
639
654
|
realTimeApprovalState: realTimeApprovalReducer_1.default,
|
|
640
655
|
referralViewState: referralReducer_1.default,
|