@zeniai/client-epic-state 5.0.46 → 5.0.47
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/commonStateTypes/recommendationBase.d.ts +2 -1
- package/lib/commonStateTypes/viewAndReport/viewAndReport.d.ts +2 -2
- package/lib/commonStateTypes/viewAndReport/viewAndReport.js +1 -0
- package/lib/entity/account/accountState.d.ts +1 -1
- package/lib/entity/accountGroup/accountGroupState.d.ts +1 -1
- package/lib/entity/chargeCardRepayment/chargeCardRepayment.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/creditAgent/creditAgentPayload.d.ts +41 -0
- package/lib/entity/creditAgent/creditAgentPayload.js +40 -0
- package/lib/entity/creditAgent/creditAgentReducer.d.ts +9 -0
- package/lib/entity/creditAgent/creditAgentReducer.js +37 -0
- package/lib/entity/creditAgent/creditAgentSelector.d.ts +3 -0
- package/lib/entity/creditAgent/creditAgentSelector.js +10 -0
- package/lib/entity/creditAgent/creditAgentState.d.ts +39 -0
- package/lib/entity/creditAgent/creditAgentState.js +17 -0
- package/lib/entity/forecast/forecastState.d.ts +1 -1
- package/lib/entity/project/projectPayload.d.ts +7 -0
- package/lib/entity/project/projectPayload.js +15 -1
- 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 +1 -1
- package/lib/entity/sectionProjectView/sectionProjectViewReducer.d.ts +2 -2
- package/lib/entity/snackbar/snackbarTypes.d.ts +1 -1
- package/lib/entity/snackbar/snackbarTypes.js +3 -0
- package/lib/entity/tenant/clearAllEpic.d.ts +6 -3
- package/lib/entity/tenant/clearAllEpic.js +8 -2
- package/lib/entity/transaction/payloadTypes/transactionLinePayload.d.ts +2 -0
- package/lib/entity/transaction/payloadTypes/transactionLinePayload.js +9 -0
- package/lib/entity/transaction/stateTypes/transactionLine.d.ts +2 -0
- package/lib/epic.d.ts +10 -1
- package/lib/epic.js +10 -1
- package/lib/esm/commonStateTypes/viewAndReport/viewAndReport.js +1 -0
- package/lib/esm/entity/creditAgent/creditAgentPayload.js +36 -0
- package/lib/esm/entity/creditAgent/creditAgentReducer.js +33 -0
- package/lib/esm/entity/creditAgent/creditAgentSelector.js +6 -0
- package/lib/esm/entity/creditAgent/creditAgentState.js +13 -0
- package/lib/esm/entity/project/projectPayload.js +12 -0
- package/lib/esm/entity/snackbar/snackbarTypes.js +3 -0
- package/lib/esm/entity/tenant/clearAllEpic.js +8 -2
- package/lib/esm/entity/transaction/payloadTypes/transactionLinePayload.js +9 -0
- package/lib/esm/epic.js +10 -1
- package/lib/esm/index.js +19 -10
- package/lib/esm/reducer.js +12 -3
- package/lib/esm/view/creditAgentView/buildCreditReportCsv.js +44 -0
- package/lib/esm/view/creditAgentView/creditAgentViewPayload.js +2 -0
- package/lib/esm/view/creditAgentView/creditAgentViewReducer.js +183 -0
- package/lib/esm/view/creditAgentView/creditAgentViewSelector.js +85 -0
- package/lib/esm/view/creditAgentView/creditAgentViewState.js +20 -0
- package/lib/esm/view/creditAgentView/epics/fetchCardProfilesEpic.js +20 -0
- package/lib/esm/view/creditAgentView/epics/fetchCreditAgentAccessEpic.js +13 -0
- package/lib/esm/view/creditAgentView/epics/fetchCreditAgentMacroEpic.js +19 -0
- package/lib/esm/view/creditAgentView/epics/saveCreditAgentMacroEpic.js +58 -0
- package/lib/esm/view/creditAgentView/epics/scheduleTenantCreditScoreCronEpic.js +39 -0
- package/lib/esm/view/creditAgentView/epics/updateCardProfileEpic.js +62 -0
- package/lib/esm/view/projectList/fetchProjectListEpic.js +38 -0
- package/lib/esm/view/projectList/projectListPayload.js +1 -0
- package/lib/esm/view/projectList/projectListReducer.js +39 -0
- package/lib/esm/view/projectList/projectListSelector.js +9 -0
- package/lib/esm/view/projectList/projectListState.js +1 -0
- package/lib/esm/view/transactionDetail/epics/saveTransactionHelper.js +1 -0
- package/lib/esm/view/transactionDetail/epics/transactionDetailEpic.js +6 -0
- package/lib/esm/view/transactionDetail/epics/updateTransactionDetailEpic.js +3 -0
- package/lib/esm/view/transactionDetail/transactionDetailSelector.js +14 -2
- package/lib/esm/view/transactionList/fetchTransactionListByProjectEpic.js +45 -0
- package/lib/esm/view/transactionList/parallelFetchProjectTransactionListEpic.js +32 -0
- package/lib/esm/view/transactionList/transactionListByProjectSelector.js +58 -0
- package/lib/esm/view/transactionList/transactionListReducer.js +83 -2
- package/lib/esm/view/transactionList/transactionListState.js +10 -0
- package/lib/index.d.ts +25 -14
- package/lib/index.js +86 -46
- package/lib/reducer.d.ts +12 -3
- package/lib/reducer.js +12 -3
- package/lib/tsconfig.typecheck.tsbuildinfo +1 -0
- 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 +1 -1
- package/lib/view/cashBalance/cashBalanceSelector.d.ts +1 -1
- package/lib/view/cashInCashOut/cashInCashOutSelector.d.ts +1 -1
- package/lib/view/cashPosition/cashPositionSelector.d.ts +1 -1
- package/lib/view/creditAgentView/buildCreditReportCsv.d.ts +17 -0
- package/lib/view/creditAgentView/buildCreditReportCsv.js +47 -0
- package/lib/view/creditAgentView/creditAgentViewPayload.d.ts +9 -0
- package/lib/view/creditAgentView/creditAgentViewPayload.js +7 -0
- package/lib/view/creditAgentView/creditAgentViewReducer.d.ts +41 -0
- package/lib/view/creditAgentView/creditAgentViewReducer.js +187 -0
- package/lib/view/creditAgentView/creditAgentViewSelector.d.ts +20 -0
- package/lib/view/creditAgentView/creditAgentViewSelector.js +93 -0
- package/lib/view/creditAgentView/creditAgentViewState.d.ts +34 -0
- package/lib/view/creditAgentView/creditAgentViewState.js +22 -0
- package/lib/view/creditAgentView/epics/fetchCardProfilesEpic.d.ts +15 -0
- package/lib/view/creditAgentView/epics/fetchCardProfilesEpic.js +24 -0
- package/lib/view/creditAgentView/epics/fetchCreditAgentAccessEpic.d.ts +11 -0
- package/lib/view/creditAgentView/epics/fetchCreditAgentAccessEpic.js +17 -0
- package/lib/view/creditAgentView/epics/fetchCreditAgentMacroEpic.d.ts +15 -0
- package/lib/view/creditAgentView/epics/fetchCreditAgentMacroEpic.js +23 -0
- package/lib/view/creditAgentView/epics/saveCreditAgentMacroEpic.d.ts +29 -0
- package/lib/view/creditAgentView/epics/saveCreditAgentMacroEpic.js +62 -0
- package/lib/view/creditAgentView/epics/scheduleTenantCreditScoreCronEpic.d.ts +30 -0
- package/lib/view/creditAgentView/epics/scheduleTenantCreditScoreCronEpic.js +43 -0
- package/lib/view/creditAgentView/epics/updateCardProfileEpic.d.ts +37 -0
- package/lib/view/creditAgentView/epics/updateCardProfileEpic.js +66 -0
- package/lib/view/dashboard/dashboardReducer.d.ts +2 -2
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts +1 -1
- package/lib/view/financeStatement/financeStatementReducer.d.ts +1 -1
- package/lib/view/globalMerchantView/globalMerchantViewReducer.d.ts +2 -2
- package/lib/view/projectList/fetchProjectListEpic.d.ts +8 -0
- package/lib/view/projectList/fetchProjectListEpic.js +42 -0
- package/lib/view/projectList/projectListPayload.d.ts +7 -0
- package/lib/view/projectList/projectListPayload.js +2 -0
- package/lib/view/projectList/projectListReducer.d.ts +9 -0
- package/lib/view/projectList/projectListReducer.js +43 -0
- package/lib/view/projectList/projectListSelector.d.ts +8 -0
- package/lib/view/projectList/projectListSelector.js +13 -0
- package/lib/view/projectList/projectListState.d.ts +4 -0
- package/lib/view/projectList/projectListState.js +2 -0
- package/lib/view/reimbursementCard/reimbursementCardSelector.d.ts +1 -1
- package/lib/view/reportsResync/reportsResyncReducer.d.ts +2 -2
- package/lib/view/tasksCard/tasksCardSelector.d.ts +1 -1
- package/lib/view/topEx/topExSelector.d.ts +1 -1
- package/lib/view/transactionDetail/epics/saveTransactionHelper.js +1 -0
- package/lib/view/transactionDetail/epics/transactionDetailEpic.d.ts +2 -1
- package/lib/view/transactionDetail/epics/transactionDetailEpic.js +6 -0
- package/lib/view/transactionDetail/epics/updateTransactionDetailEpic.js +3 -0
- package/lib/view/transactionDetail/transactionDetailSelector.d.ts +3 -0
- package/lib/view/transactionDetail/transactionDetailSelector.js +13 -1
- package/lib/view/transactionDetail/transactionDetailState.d.ts +2 -0
- package/lib/view/transactionDetail/transactionDetailTypes.d.ts +2 -0
- package/lib/view/transactionList/fetchTransactionListByProjectEpic.d.ts +8 -0
- package/lib/view/transactionList/fetchTransactionListByProjectEpic.js +52 -0
- package/lib/view/transactionList/parallelFetchProjectTransactionListEpic.d.ts +6 -0
- package/lib/view/transactionList/parallelFetchProjectTransactionListEpic.js +36 -0
- package/lib/view/transactionList/transactionListByProjectSelector.d.ts +22 -0
- package/lib/view/transactionList/transactionListByProjectSelector.js +66 -0
- package/lib/view/transactionList/transactionListPayload.d.ts +15 -0
- package/lib/view/transactionList/transactionListReducer.d.ts +25 -2
- package/lib/view/transactionList/transactionListReducer.js +83 -2
- package/lib/view/transactionList/transactionListState.d.ts +15 -0
- package/lib/view/transactionList/transactionListState.js +13 -1
- package/package.json +1 -1
package/lib/reducer.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import { AccountState } from './entity/account/accountState';
|
|
|
2
2
|
import { AccountGroupState } from './entity/accountGroup/accountGroupState';
|
|
3
3
|
import { AccountReconState } from './entity/accountRecon/accountReconState';
|
|
4
4
|
import { AddressState } from './entity/address/addressState';
|
|
5
|
+
import { AiAccountantCustomerState } from './entity/aiAccountantCustomer/aiAccountantCustomerState';
|
|
6
|
+
import { CreditAgentEntityState } from './entity/creditAgent/creditAgentState';
|
|
5
7
|
import { AiCfoState } from './entity/aiCfo/aiCfoState';
|
|
6
8
|
import { ApprovalRuleState } from './entity/approvalRule/approvalRuleState';
|
|
7
9
|
import { BankAccountState } from './entity/bankAccount/bankAccount';
|
|
@@ -13,7 +15,6 @@ import { ChargeCardState } from './entity/chargeCard/chargeCard';
|
|
|
13
15
|
import { ChargeCardRepaymentState } from './entity/chargeCardRepayment/chargeCardRepayment';
|
|
14
16
|
import { ChargeCardTransactionState } from './entity/chargeCardTransaction/chargeCardTransaction';
|
|
15
17
|
import { ClassState } from './entity/class/classState';
|
|
16
|
-
import { ProjectState } from './entity/project/projectReducer';
|
|
17
18
|
import { CompanyState } from './entity/company/companyState';
|
|
18
19
|
import { CompanyHealthState } from './entity/companyHealthMetric/companyHealthMetricState';
|
|
19
20
|
import { ConnectedAccountState } from './entity/connectedAccount/connectedAccount';
|
|
@@ -38,6 +39,7 @@ import { OnboardingCustomerState } from './entity/onboardingCustomer/onboardingC
|
|
|
38
39
|
import { PaymentAccountState } from './entity/paymentAccount/paymentAccountState';
|
|
39
40
|
import { PaymentInstrumentState } from './entity/paymentInstrument/paymentInstrument';
|
|
40
41
|
import { AccountingSummaryState } from './entity/portfolio/accountingSummary/accountingSummaryState';
|
|
42
|
+
import { ProjectState } from './entity/project/projectReducer';
|
|
41
43
|
import { ReimbursementState } from './entity/reimbursement/reimbursementState';
|
|
42
44
|
import { SectionAccountsViewState } from './entity/sectionAccountsView/sectionAccountsViewState';
|
|
43
45
|
import { SectionClassesViewStateV2 } from './entity/sectionClassesViewV2/sectionClassesViewState';
|
|
@@ -66,10 +68,9 @@ import { VendorExpenseState } from './entity/vendorExpense/vendorExpenseState';
|
|
|
66
68
|
import { AccountListState } from './view/accountList/accountListState';
|
|
67
69
|
import { AccountMappingState } from './view/accountMappingView/accountMappingState';
|
|
68
70
|
import { AddressViewState } from './view/addressView/addressViewState';
|
|
71
|
+
import { AiAccountantViewState } from './view/aiAccountantView/aiAccountantViewState';
|
|
69
72
|
import { AggregatedReportViewState } from './view/aiAgentPerformance/aggregatedReportViewReducer';
|
|
70
73
|
import { AiCfoViewState } from './view/aiCfoView/aiCfoViewState';
|
|
71
|
-
import { AiAccountantCustomerState } from './entity/aiAccountantCustomer/aiAccountantCustomerState';
|
|
72
|
-
import { AiAccountantViewState } from './view/aiAccountantView/aiAccountantViewState';
|
|
73
74
|
import { ApAgingDetailState } from './view/apAgingView/apAgingDetail/apAgingDetailState';
|
|
74
75
|
import { ApAgingState } from './view/apAgingView/apAgingReport/apAgingState';
|
|
75
76
|
import { ArAgingDetailState } from './view/arAgingView/arAgingDetail/arAgingDetailState';
|
|
@@ -96,6 +97,7 @@ import { CompanyHealthMetricView } from './view/companyHealthMetricView/companyH
|
|
|
96
97
|
import { CompanyMonthEndReportViewState } from './view/companyMonthEndReportView/companyMonthEndReportViewState';
|
|
97
98
|
import { CompanyTaskManagerViewState } from './view/companyTaskManagerView/companyTaskManagerViewState';
|
|
98
99
|
import { CompanyViewState } from './view/companyView/companyViewState';
|
|
100
|
+
import { CreditAgentViewState } from './view/creditAgentView/creditAgentViewState';
|
|
99
101
|
import { DashboardState } from './view/dashboard/dashboardState';
|
|
100
102
|
import { DashboardLayoutState } from './view/dashboardLayout/dashboardLayoutState';
|
|
101
103
|
import { ExpenseAutomationViewState } from './view/expenseAutomationView/expenseAutomationViewState';
|
|
@@ -126,6 +128,7 @@ import { PeopleState } from './view/people/peopleState';
|
|
|
126
128
|
import { ProfitAndLossWithForecastState } from './view/profitAndLoss/profitAndLossState';
|
|
127
129
|
import { ProfitAndLossClassesViewState } from './view/profitAndLossClassesView/profitAndLossClassesViewState';
|
|
128
130
|
import { ProfitAndLossProjectViewState } from './view/profitAndLossProjectView/profitAndLossProjectViewState';
|
|
131
|
+
import { ProjectListState } from './view/projectList/projectListState';
|
|
129
132
|
import { EntityRecommendationState } from './view/recommendation/recommendationState';
|
|
130
133
|
import { ReferralViewState } from './view/referralView/referralState';
|
|
131
134
|
import { ReimbursementCardState } from './view/reimbursementCard/reimbursementCardState';
|
|
@@ -338,6 +341,8 @@ type ViewsState = {
|
|
|
338
341
|
companyTaskManagerViewState: CompanyTaskManagerViewState;
|
|
339
342
|
companyViewState: CompanyViewState;
|
|
340
343
|
countryListState: CountryListState;
|
|
344
|
+
creditAgentEntityState: CreditAgentEntityState;
|
|
345
|
+
creditAgentViewState: CreditAgentViewState;
|
|
341
346
|
dashboardLayoutState: DashboardLayoutState;
|
|
342
347
|
dashboardState: DashboardState;
|
|
343
348
|
depositAccountListState: DepositAccountListState;
|
|
@@ -383,6 +388,7 @@ type ViewsState = {
|
|
|
383
388
|
profitAndLossClassesViewState: ProfitAndLossClassesViewState;
|
|
384
389
|
profitAndLossProjectViewState: ProfitAndLossProjectViewState;
|
|
385
390
|
profitAndLossState: ProfitAndLossWithForecastState;
|
|
391
|
+
projectListState: ProjectListState;
|
|
386
392
|
realTimeApprovalState: RealTimeApprovalState;
|
|
387
393
|
referralViewState: ReferralViewState;
|
|
388
394
|
reimbursementCardState: ReimbursementCardState;
|
|
@@ -495,6 +501,8 @@ declare const reducers: import("redux").Reducer<import("redux").CombinedState<{
|
|
|
495
501
|
companyTaskManagerViewState: CompanyTaskManagerViewState;
|
|
496
502
|
companyViewState: CompanyViewState;
|
|
497
503
|
countryListState: CountryListState;
|
|
504
|
+
creditAgentEntityState: CreditAgentEntityState;
|
|
505
|
+
creditAgentViewState: CreditAgentViewState;
|
|
498
506
|
dashboardState: DashboardState;
|
|
499
507
|
dashboardLayoutState: DashboardLayoutState;
|
|
500
508
|
depositAccountListState: DepositAccountListState;
|
|
@@ -541,6 +549,7 @@ declare const reducers: import("redux").Reducer<import("redux").CombinedState<{
|
|
|
541
549
|
profitAndLossClassesViewState: ProfitAndLossClassesViewState;
|
|
542
550
|
profitAndLossProjectViewState: ProfitAndLossProjectViewState;
|
|
543
551
|
profitAndLossState: ProfitAndLossWithForecastState;
|
|
552
|
+
projectListState: ProjectListState;
|
|
544
553
|
realTimeApprovalState: RealTimeApprovalState;
|
|
545
554
|
referralViewState: ReferralViewState;
|
|
546
555
|
reimbursementCardState: ReimbursementCardState;
|
package/lib/reducer.js
CHANGED
|
@@ -42,6 +42,8 @@ const accountReducer_1 = __importStar(require("./entity/account/accountReducer")
|
|
|
42
42
|
const accountGroupReducer_1 = __importStar(require("./entity/accountGroup/accountGroupReducer"));
|
|
43
43
|
const accountReconReducer_1 = __importStar(require("./entity/accountRecon/accountReconReducer"));
|
|
44
44
|
const addressReducer_1 = __importStar(require("./entity/address/addressReducer"));
|
|
45
|
+
const aiAccountantCustomerReducer_1 = __importStar(require("./entity/aiAccountantCustomer/aiAccountantCustomerReducer"));
|
|
46
|
+
const creditAgentReducer_1 = __importStar(require("./entity/creditAgent/creditAgentReducer"));
|
|
45
47
|
const aiCfoReducer_1 = __importStar(require("./entity/aiCfo/aiCfoReducer"));
|
|
46
48
|
const approvalRuleReducer_1 = __importStar(require("./entity/approvalRule/approvalRuleReducer"));
|
|
47
49
|
const bankAccountReducer_1 = __importStar(require("./entity/bankAccount/bankAccountReducer"));
|
|
@@ -53,7 +55,6 @@ const chargeCardReducer_1 = __importStar(require("./entity/chargeCard/chargeCard
|
|
|
53
55
|
const chargeCardRepaymentReducer_1 = __importStar(require("./entity/chargeCardRepayment/chargeCardRepaymentReducer"));
|
|
54
56
|
const chargeCardTransactionReducer_1 = __importStar(require("./entity/chargeCardTransaction/chargeCardTransactionReducer"));
|
|
55
57
|
const classReducer_1 = __importStar(require("./entity/class/classReducer"));
|
|
56
|
-
const projectReducer_1 = __importStar(require("./entity/project/projectReducer"));
|
|
57
58
|
const companyReducer_1 = __importStar(require("./entity/company/companyReducer"));
|
|
58
59
|
const companyHealthMetricReducer_1 = __importStar(require("./entity/companyHealthMetric/companyHealthMetricReducer"));
|
|
59
60
|
const connectedAccountReducer_1 = __importStar(require("./entity/connectedAccount/connectedAccountReducer"));
|
|
@@ -78,6 +79,7 @@ const onboardingCustomerReducer_1 = __importStar(require("./entity/onboardingCus
|
|
|
78
79
|
const paymentAccountReducer_1 = __importStar(require("./entity/paymentAccount/paymentAccountReducer"));
|
|
79
80
|
const paymentInstrumentReducer_1 = __importStar(require("./entity/paymentInstrument/paymentInstrumentReducer"));
|
|
80
81
|
const accountingSummaryReducer_1 = __importStar(require("./entity/portfolio/accountingSummary/accountingSummaryReducer"));
|
|
82
|
+
const projectReducer_1 = __importStar(require("./entity/project/projectReducer"));
|
|
81
83
|
const reimbursementReducer_1 = __importStar(require("./entity/reimbursement/reimbursementReducer"));
|
|
82
84
|
const sectionAccountsViewReducer_1 = __importStar(require("./entity/sectionAccountsView/sectionAccountsViewReducer"));
|
|
83
85
|
const sectionClassesViewReducer_1 = __importStar(require("./entity/sectionClassesViewV2/sectionClassesViewReducer"));
|
|
@@ -106,10 +108,9 @@ const vendorExpenseReducer_1 = __importStar(require("./entity/vendorExpense/vend
|
|
|
106
108
|
const accountListReducer_1 = __importStar(require("./view/accountList/accountListReducer"));
|
|
107
109
|
const accountMappingReducer_1 = __importStar(require("./view/accountMappingView/accountMappingReducer"));
|
|
108
110
|
const addressViewReducer_1 = __importStar(require("./view/addressView/addressViewReducer"));
|
|
111
|
+
const aiAccountantViewReducer_1 = __importStar(require("./view/aiAccountantView/aiAccountantViewReducer"));
|
|
109
112
|
const aggregatedReportViewReducer_1 = __importStar(require("./view/aiAgentPerformance/aggregatedReportViewReducer"));
|
|
110
113
|
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"));
|
|
113
114
|
const apAgingDetailReducer_1 = __importStar(require("./view/apAgingView/apAgingDetail/apAgingDetailReducer"));
|
|
114
115
|
const apAgingReducer_1 = __importStar(require("./view/apAgingView/apAgingReport/apAgingReducer"));
|
|
115
116
|
const arAgingDetailReducer_1 = __importStar(require("./view/arAgingView/arAgingDetail/arAgingDetailReducer"));
|
|
@@ -136,6 +137,7 @@ const companyHealthMetricViewReducer_1 = __importStar(require("./view/companyHea
|
|
|
136
137
|
const companyMonthEndReportViewReducer_1 = __importStar(require("./view/companyMonthEndReportView/companyMonthEndReportViewReducer"));
|
|
137
138
|
const companyTaskManagerViewReducer_1 = __importStar(require("./view/companyTaskManagerView/companyTaskManagerViewReducer"));
|
|
138
139
|
const companyViewReducer_1 = __importStar(require("./view/companyView/companyViewReducer"));
|
|
140
|
+
const creditAgentViewReducer_1 = __importStar(require("./view/creditAgentView/creditAgentViewReducer"));
|
|
139
141
|
const dashboardReducer_1 = __importStar(require("./view/dashboard/dashboardReducer"));
|
|
140
142
|
const dashboardLayoutReducer_1 = __importStar(require("./view/dashboardLayout/dashboardLayoutReducer"));
|
|
141
143
|
const expenseAutomationViewReducer_1 = __importStar(require("./view/expenseAutomationView/expenseAutomationViewReducer"));
|
|
@@ -167,6 +169,7 @@ const peopleReducer_1 = __importStar(require("./view/people/peopleReducer"));
|
|
|
167
169
|
const profitAndLossReducer_1 = __importStar(require("./view/profitAndLoss/profitAndLossReducer"));
|
|
168
170
|
const profitAndLossClassesViewReducer_1 = __importStar(require("./view/profitAndLossClassesView/profitAndLossClassesViewReducer"));
|
|
169
171
|
const profitAndLossProjectViewReducer_1 = __importStar(require("./view/profitAndLossProjectView/profitAndLossProjectViewReducer"));
|
|
172
|
+
const projectListReducer_1 = __importStar(require("./view/projectList/projectListReducer"));
|
|
170
173
|
const recommendationReducer_1 = __importStar(require("./view/recommendation/recommendationReducer"));
|
|
171
174
|
const referralReducer_1 = __importStar(require("./view/referralView/referralReducer"));
|
|
172
175
|
const reimbursementCardReducer_1 = __importStar(require("./view/reimbursementCard/reimbursementCardReducer"));
|
|
@@ -380,6 +383,8 @@ const initialViewsState = {
|
|
|
380
383
|
companyTaskManagerViewState: companyTaskManagerViewReducer_1.initialState,
|
|
381
384
|
companyViewState: companyViewReducer_1.initialState,
|
|
382
385
|
countryListState: countryListReducer_1.initialState,
|
|
386
|
+
creditAgentEntityState: creditAgentReducer_1.initialCreditAgentEntityState,
|
|
387
|
+
creditAgentViewState: creditAgentViewReducer_1.initialState,
|
|
383
388
|
dashboardLayoutState: dashboardLayoutReducer_1.initialState,
|
|
384
389
|
dashboardState: dashboardReducer_1.initialState,
|
|
385
390
|
depositAccountListState: depositAccountListReducer_1.initialState,
|
|
@@ -425,6 +430,7 @@ const initialViewsState = {
|
|
|
425
430
|
profitAndLossClassesViewState: profitAndLossClassesViewReducer_1.initialState,
|
|
426
431
|
profitAndLossProjectViewState: profitAndLossProjectViewReducer_1.initialState,
|
|
427
432
|
profitAndLossState: profitAndLossReducer_1.initialState,
|
|
433
|
+
projectListState: projectListReducer_1.initialState,
|
|
428
434
|
realTimeApprovalState: realTimeApprovalReducer_1.initialState,
|
|
429
435
|
referralViewState: referralReducer_1.initialState,
|
|
430
436
|
reimbursementCardState: reimbursementCardReducer_1.initialState,
|
|
@@ -612,6 +618,8 @@ const viewReducers = {
|
|
|
612
618
|
companyTaskManagerViewState: companyTaskManagerViewReducer_1.default,
|
|
613
619
|
companyViewState: companyViewReducer_1.default,
|
|
614
620
|
countryListState: countryListReducer_1.default,
|
|
621
|
+
creditAgentEntityState: creditAgentReducer_1.default,
|
|
622
|
+
creditAgentViewState: creditAgentViewReducer_1.default,
|
|
615
623
|
dashboardState: dashboardReducer_1.default,
|
|
616
624
|
dashboardLayoutState: dashboardLayoutReducer_1.default,
|
|
617
625
|
depositAccountListState: depositAccountListReducer_1.default,
|
|
@@ -658,6 +666,7 @@ const viewReducers = {
|
|
|
658
666
|
profitAndLossClassesViewState: profitAndLossClassesViewReducer_1.default,
|
|
659
667
|
profitAndLossProjectViewState: profitAndLossProjectViewReducer_1.default,
|
|
660
668
|
profitAndLossState: profitAndLossReducer_1.default,
|
|
669
|
+
projectListState: projectListReducer_1.default,
|
|
661
670
|
realTimeApprovalState: realTimeApprovalReducer_1.default,
|
|
662
671
|
referralViewState: referralReducer_1.default,
|
|
663
672
|
reimbursementCardState: reimbursementCardReducer_1.default,
|