@zeniai/client-epic-state 4.19.86 → 4.19.87-beta0ND

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/esm/index.js CHANGED
@@ -216,7 +216,8 @@ import { changeZeniPersonRoles, deletePerson, fetchAllPeopleRequiredViews, fetch
216
216
  import { getPeople, getPeopleLocalData } from './view/people/peopleSelector';
217
217
  import { fetchProfitAndLoss, fetchProfitAndLossForTimeframe, resetProfitAndLossNodeCollapseState, updateProfitAndLossUIState, } from './view/profitAndLoss/profitAndLossReducer';
218
218
  import { getPandLReportFetchState, getProfitAndLossReport, } from './view/profitAndLoss/profitAndLossSelector';
219
- import { fetchProfitAndLossClassesView, resetProfitAndLossClassesNodeCollapseState, updateAccountViewMode as updateProfitAndLossAccountViewMode, updateClassesToFilterOut as updateProfitAndLossClassesToFilterOut, updateProfitAndLossClassesViewUIState, } from './view/profitAndLossClassesView/profitAndLossClassesViewReducer';
219
+ import { fetchProfitAndLossClassesView, resetProfitAndLossClassesNodeCollapseState, updateAccountViewMode as updateProfitAndLossAccountViewMode, updateClassesToFilterOut as updateProfitAndLossClassesToFilterOut, updateClassViewLayout, updateProfitAndLossClassesViewUIState, } from './view/profitAndLossClassesView/profitAndLossClassesViewReducer';
220
+ import { getProfitAndLossClassesHorizontalView } from './view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector';
220
221
  import { getProfitAndLossClassesView } from './view/profitAndLossClassesView/profitAndLossClassesViewSelector';
221
222
  import { isPandLReportViewCalculatedSectionID, isPandLReportViewSectionID, } from './view/profitAndLossClassesView/profitAndLossClassesViewSelectorTypes';
222
223
  import { fetchEntityRecommendationsByTransactionId, fetchRecommendationByEntityId, fetchRecommendationByEntityName, } from './view/recommendation/recommendationReducer';
@@ -446,7 +447,7 @@ export { fetchDashboard, getDashboard, updateTreasuryVideoClosed, };
446
447
  export { updateDashboardLayout };
447
448
  export { getPandLWithForecast, } from './view/profitAndLoss/pAndLWithForecast/pAndLWithForecastSelector';
448
449
  export { fetchProfitAndLoss, resetProfitAndLossNodeCollapseState, updateProfitAndLossUIState, getProfitAndLossReport, getPandLReportFetchState, fetchProfitAndLossForTimeframe, };
449
- export { fetchProfitAndLossClassesView, updateProfitAndLossClassesToFilterOut, resetProfitAndLossClassesNodeCollapseState, updateProfitAndLossClassesViewUIState, updateProfitAndLossAccountViewMode, getProfitAndLossClassesView, isPandLReportViewCalculatedSectionID, isPandLReportViewSectionID, };
450
+ export { fetchProfitAndLossClassesView, updateProfitAndLossClassesToFilterOut, resetProfitAndLossClassesNodeCollapseState, updateProfitAndLossClassesViewUIState, updateProfitAndLossAccountViewMode, updateClassViewLayout, getProfitAndLossClassesView, getProfitAndLossClassesHorizontalView, isPandLReportViewCalculatedSectionID, isPandLReportViewSectionID, };
450
451
  export { getAccountingProviderAttachment };
451
452
  export { fetchUserListByType, getUserList };
452
453
  export { fetchAllPeopleRequiredViews, fetchPeoplePage, fetchPeople, deletePerson, resendInvite, changeZeniPersonRoles, invitePeople, inviteZeniPeople, updatePeopleUIState, peopleSaveUpdates, resetUpdateErrorMessage, peopleSaveDataInLocalStore, peopleClearDataInLocalStore, getPeople, getPeopleLocalData, initializeEditPerson, };
@@ -8,6 +8,7 @@ import { extractThisPeriod } from '../../commonStateTypes/viewAndReport/thisPeri
8
8
  import { getBalanceSheet } from '../balanceSheet/balanceSheetSelector';
9
9
  import { getCashFlow } from '../cashFlow/cashFlowSelector';
10
10
  import { getProfitAndLossReport, } from '../profitAndLoss/profitAndLossSelector';
11
+ import { getProfitAndLossClassesHorizontalView } from '../profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector';
11
12
  import { getProfitAndLossClassesView } from '../profitAndLossClassesView/profitAndLossClassesViewSelector';
12
13
  function getDateRangeForFinanceReports(profitAndLossState, balanceSheetState, cashFlowState) {
13
14
  const datesSorted = [
@@ -60,6 +61,9 @@ export const getFinanceStatement = createSelector((state) => state.accountState,
60
61
  const profitAndLossReport = getProfitAndLossReport(filter, undefined, accountState, accountGroupState, sectionAccountsViewState, profitAndLossState, forecastState);
61
62
  const classFilter = newBalancesFilterClassesView(filter.firstMonthOfFY, filter.timeframe, filter.balancesRange.numberOfPeriods, filter.balancesRange.thisPeriod, filter.balancesRange.orderBy, filter.additionalBalances, profitAndLossClassesViewState.uiState.classesToFilterOut);
62
63
  const profitAndLossByClassReport = getProfitAndLossClassesView(classFilter, accountState, classState, sectionsState, profitAndLossClassesViewState);
64
+ const profitAndLossByClassHorizontalReport = profitAndLossClassesViewState.uiState.classViewLayout === 'horizontal'
65
+ ? getProfitAndLossClassesHorizontalView(classFilter, accountState, classState, sectionsState, profitAndLossClassesViewState, thisPeriod)
66
+ : getProfitAndLossClassesHorizontalView(classFilter, accountState, classState, sectionsState, profitAndLossClassesViewState, undefined);
63
67
  const balanceSheetReport = getBalanceSheet(filter, accountState, accountGroupState, sectionAccountsViewState, balanceSheetState);
64
68
  const cashFlowReport = getCashFlow(filter, accountState, accountGroupState, sectionAccountsViewState, cashFlowState);
65
69
  const allReports = [
@@ -107,6 +111,7 @@ export const getFinanceStatement = createSelector((state) => state.accountState,
107
111
  dataAvailable,
108
112
  profitAndLossReport,
109
113
  profitAndLossByClassReport,
114
+ profitAndLossByClassHorizontalReport,
110
115
  balanceSheetReport,
111
116
  cashFlowReport,
112
117
  filter,
@@ -0,0 +1,282 @@
1
+ import { toAmountWC } from '../../commonStateTypes/amount';
2
+ import { getSectionClassesViewReport } from '../../entity/sectionClassesViewV2/sectionClassesViewSelector';
3
+ import { ALL_PANDL_REPORT_VIEW_SECTION_IDS, } from './profitAndLossClassesViewSelectorTypes';
4
+ const DEFAULT_CURRENCY = { currencyCode: 'USD', currencySymbol: '$' };
5
+ export const profitAndLossHorizontalIdsInOrder = [
6
+ 'income',
7
+ 'cogs',
8
+ 'grossProfit',
9
+ 'expenses',
10
+ 'earningsBeforeInterestAndTax',
11
+ 'otherIncome',
12
+ 'otherExpenses',
13
+ 'netOtherIncome',
14
+ 'netIncome',
15
+ ];
16
+ const SECTION_TITLES = {
17
+ income: 'Income',
18
+ cogs: 'Cost of Goods Sold',
19
+ grossProfit: 'Gross Profit',
20
+ expenses: 'Expenses',
21
+ earningsBeforeInterestAndTax: 'Net Operating Income',
22
+ otherIncome: 'Other Income',
23
+ otherExpenses: 'Other Expenses',
24
+ netOtherIncome: 'Net Other Income',
25
+ netIncome: 'Net Income',
26
+ };
27
+ export const getProfitAndLossClassesHorizontalView = (filter, accountState, classState, sectionsState, profitAndLossClassesViewState, selectedPeriod) => {
28
+ const fetchState = reduceFetchState([
29
+ profitAndLossClassesViewState.fetchState.month,
30
+ profitAndLossClassesViewState.fetchState.quarter,
31
+ profitAndLossClassesViewState.fetchState.year,
32
+ ]);
33
+ const reportId = 'profit_and_loss_by_classes';
34
+ // Build class columns from the class hierarchy (top-level only)
35
+ const classColumns = buildClassColumns(profitAndLossClassesViewState.classHierarchy, profitAndLossClassesViewState.uiState.classesToFilterOut);
36
+ const sections = {};
37
+ const calculatedSections = {};
38
+ if (fetchState.fetchState === 'Completed' && selectedPeriod != null) {
39
+ // Get section reports using existing selector infrastructure
40
+ const sectionReports = {};
41
+ ALL_PANDL_REPORT_VIEW_SECTION_IDS.forEach((sectionId) => {
42
+ sectionReports[sectionId] = getSectionClassesViewReport(accountState, classState, sectionsState, { reportId, sectionId }, filter);
43
+ });
44
+ // Pivot each section from class→account to account→class
45
+ const sectionIds = [
46
+ 'income',
47
+ 'cogs',
48
+ 'expenses',
49
+ 'otherIncome',
50
+ 'otherExpenses',
51
+ ];
52
+ sectionIds.forEach((sectionId) => {
53
+ const sectionReport = sectionReports[sectionId];
54
+ if (sectionReport != null) {
55
+ sections[sectionId] = pivotSectionToHorizontal(sectionReport, classColumns, selectedPeriod, SECTION_TITLES[sectionId] ?? sectionId);
56
+ }
57
+ });
58
+ // Calculate derived sections
59
+ const incomeSection = sections['income'];
60
+ const cogsSection = sections['cogs'];
61
+ const expensesSection = sections['expenses'];
62
+ const otherIncomeSection = sections['otherIncome'];
63
+ const otherExpensesSection = sections['otherExpenses'];
64
+ // Gross Profit = Income - COGS
65
+ if (incomeSection != null && cogsSection != null) {
66
+ calculatedSections['grossProfit'] = computeCalculatedSection(incomeSection.classTotals, cogsSection.classTotals, incomeSection.sectionTotal, cogsSection.sectionTotal, 'subtract', SECTION_TITLES['grossProfit']);
67
+ }
68
+ // EBIT = Gross Profit - Expenses
69
+ const grossProfit = calculatedSections['grossProfit'];
70
+ if (grossProfit != null && expensesSection != null) {
71
+ calculatedSections['earningsBeforeInterestAndTax'] =
72
+ computeCalculatedSection(grossProfit.classTotals, expensesSection.classTotals, grossProfit.sectionTotal, expensesSection.sectionTotal, 'subtract', SECTION_TITLES['earningsBeforeInterestAndTax']);
73
+ }
74
+ // Net Other Income = Other Income - Other Expenses
75
+ if (otherIncomeSection != null && otherExpensesSection != null) {
76
+ calculatedSections['netOtherIncome'] = computeCalculatedSection(otherIncomeSection.classTotals, otherExpensesSection.classTotals, otherIncomeSection.sectionTotal, otherExpensesSection.sectionTotal, 'subtract', SECTION_TITLES['netOtherIncome']);
77
+ }
78
+ // Net Income = EBIT + Net Other Income
79
+ const ebit = calculatedSections['earningsBeforeInterestAndTax'];
80
+ const netOtherIncome = calculatedSections['netOtherIncome'];
81
+ if (ebit != null && netOtherIncome != null) {
82
+ calculatedSections['netIncome'] = computeCalculatedSection(ebit.classTotals, netOtherIncome.classTotals, ebit.sectionTotal, netOtherIncome.sectionTotal, 'add', SECTION_TITLES['netIncome']);
83
+ }
84
+ }
85
+ // Build synthetic header COABalances for rendering class names as column headers
86
+ const headerBalances = buildHeaderBalances(classColumns, filter.timeframe, selectedPeriod);
87
+ return {
88
+ reportId,
89
+ reportTitle: 'Profit and Loss by Class',
90
+ firstMonthOfFY: profitAndLossClassesViewState.firstMonthOfFY,
91
+ fetchState: fetchState.fetchState,
92
+ bookCloseDate: profitAndLossClassesViewState.bookCloseDate,
93
+ dataAvailable: profitAndLossClassesViewState.dataAvailable,
94
+ selectedPeriod,
95
+ classColumns,
96
+ sections,
97
+ calculatedSections,
98
+ idsInOrder: profitAndLossHorizontalIdsInOrder,
99
+ uiState: profitAndLossClassesViewState.uiState,
100
+ headerBalances,
101
+ };
102
+ };
103
+ /**
104
+ * Build column definitions from class hierarchy (top-level classes only).
105
+ */
106
+ function buildClassColumns(classHierarchy, classesToFilterOut) {
107
+ return classHierarchy
108
+ .filter((c) => !classesToFilterOut.some((filteredId) => filteredId[0] === c.classId[0]))
109
+ .map((c) => ({
110
+ classId: c.classId[0],
111
+ className: c.className,
112
+ nestedClassId: c.classId,
113
+ qboId: c.qboId,
114
+ }));
115
+ }
116
+ /**
117
+ * Pivot a section from class→account→balances to account→class→balance (single period).
118
+ */
119
+ function pivotSectionToHorizontal(section, classColumns, selectedPeriod, title) {
120
+ // Map: accountId -> { accountName, classId -> balance }
121
+ const accountMap = new Map();
122
+ // Also track class totals
123
+ const classTotalMap = new Map();
124
+ classColumns.forEach((col) => classTotalMap.set(col.classId, 0));
125
+ // Iterate over each class in the section
126
+ section.classes.forEach((classReport) => {
127
+ const classId = classReport.id[0];
128
+ // Only process classes that are in our columns
129
+ if (!classColumns.some((col) => col.classId === classId)) {
130
+ return;
131
+ }
132
+ // Get the class-level balance for this period (total for the class in this section)
133
+ const classBalance = findBalanceForPeriod(classReport.childrenBalancesTotal.balances, selectedPeriod);
134
+ classTotalMap.set(classId, classBalance);
135
+ // Iterate through accounts in this class
136
+ collectAccountsFromClass(classReport, classId, selectedPeriod, accountMap);
137
+ });
138
+ // Build account rows
139
+ const accounts = [];
140
+ accountMap.forEach((accountData, accountId) => {
141
+ const classBalances = classColumns.map((col) => ({
142
+ classId: col.classId,
143
+ balance: toAmountWC(accountData.classBalances.get(col.classId) ?? 0, DEFAULT_CURRENCY),
144
+ }));
145
+ const rowTotal = classBalances.reduce((sum, cb) => sum + cb.balance.amount, 0);
146
+ accounts.push({
147
+ accountId,
148
+ accountName: accountData.accountName,
149
+ classBalances,
150
+ rowTotal: toAmountWC(rowTotal, DEFAULT_CURRENCY),
151
+ });
152
+ });
153
+ // Build class totals
154
+ const classTotals = classColumns.map((col) => ({
155
+ classId: col.classId,
156
+ balance: toAmountWC(classTotalMap.get(col.classId) ?? 0, DEFAULT_CURRENCY),
157
+ }));
158
+ const sectionTotal = classTotals.reduce((sum, ct) => sum + ct.balance.amount, 0);
159
+ return {
160
+ title,
161
+ accounts,
162
+ classTotals,
163
+ sectionTotal: toAmountWC(sectionTotal, DEFAULT_CURRENCY),
164
+ };
165
+ }
166
+ /**
167
+ * Recursively collect account balances from a NestedClassReportV2 into accountMap.
168
+ */
169
+ function collectAccountsFromClass(classReport, classId, selectedPeriod, accountMap) {
170
+ // Process accounts directly on this class
171
+ classReport.class.accounts.forEach((nestedAccount) => {
172
+ collectAccountsFromNestedAccount(nestedAccount, classId, selectedPeriod, accountMap);
173
+ });
174
+ }
175
+ /**
176
+ * Recursively collect accounts from NestedAccountReport (handles sub-accounts).
177
+ */
178
+ function collectAccountsFromNestedAccount(nestedAccount, classId, selectedPeriod, accountMap) {
179
+ const accountId = nestedAccount.account.accountId;
180
+ const accountName = nestedAccount.account.accountName;
181
+ const balance = findBalanceForPeriod(nestedAccount.account.balancesInTimeframe.balances, selectedPeriod);
182
+ if (!accountMap.has(accountId)) {
183
+ accountMap.set(accountId, {
184
+ accountName,
185
+ classBalances: new Map(),
186
+ });
187
+ }
188
+ const accountData = accountMap.get(accountId);
189
+ if (accountData == null) {
190
+ return;
191
+ }
192
+ const existing = accountData.classBalances.get(classId) ?? 0;
193
+ accountData.classBalances.set(classId, existing + balance);
194
+ // Process sub-accounts
195
+ nestedAccount.children.forEach((child) => {
196
+ collectAccountsFromNestedAccount(child, classId, selectedPeriod, accountMap);
197
+ });
198
+ }
199
+ /**
200
+ * Find the balance amount for a specific period from a COABalance array.
201
+ */
202
+ function findBalanceForPeriod(balances, selectedPeriod) {
203
+ for (const bal of balances) {
204
+ const b = bal;
205
+ if (b.startDate != null && b.endDate != null) {
206
+ if (b.startDate.isSame(selectedPeriod.startDate, 'day') &&
207
+ b.endDate.isSame(selectedPeriod.endDate, 'day')) {
208
+ return b.balance?.amount ?? 0;
209
+ }
210
+ }
211
+ }
212
+ return 0;
213
+ }
214
+ /**
215
+ * Compute a calculated section by adding or subtracting two sets of class totals.
216
+ */
217
+ function computeCalculatedSection(aTotals, bTotals, aTotal, bTotal, operation, title) {
218
+ const classTotals = aTotals.map((a) => {
219
+ const bMatch = bTotals.find((b) => b.classId === a.classId);
220
+ const bAmount = bMatch?.balance.amount ?? 0;
221
+ const resultAmount = operation === 'add'
222
+ ? a.balance.amount + bAmount
223
+ : a.balance.amount - bAmount;
224
+ return {
225
+ classId: a.classId,
226
+ balance: toAmountWC(resultAmount, DEFAULT_CURRENCY),
227
+ };
228
+ });
229
+ const sectionTotalAmount = operation === 'add'
230
+ ? aTotal.amount + bTotal.amount
231
+ : aTotal.amount - bTotal.amount;
232
+ return {
233
+ title,
234
+ classTotals,
235
+ sectionTotal: toAmountWC(sectionTotalAmount, DEFAULT_CURRENCY),
236
+ };
237
+ }
238
+ /**
239
+ * Build synthetic COABalance array for header rendering.
240
+ * One entry per class column + one for "Total".
241
+ */
242
+ function buildHeaderBalances(classColumns, timeframe, selectedPeriod) {
243
+ if (selectedPeriod == null) {
244
+ return [];
245
+ }
246
+ const { endDate, startDate } = selectedPeriod;
247
+ const balances = classColumns.map((col) => ({
248
+ balance: toAmountWC(0, DEFAULT_CURRENCY),
249
+ balanceTimeFrame: timeframe,
250
+ endDate,
251
+ startDate,
252
+ type: 'default',
253
+ label: col.className,
254
+ }));
255
+ // Add a "Total" column
256
+ balances.push({
257
+ balance: toAmountWC(0, DEFAULT_CURRENCY),
258
+ balanceTimeFrame: timeframe,
259
+ endDate,
260
+ startDate,
261
+ type: 'default',
262
+ label: 'Total',
263
+ });
264
+ return balances;
265
+ }
266
+ function reduceFetchState(fetchStateList) {
267
+ const isAnyProgress = fetchStateList.some((s) => s.fetchState === 'In-Progress');
268
+ const isAllCompleted = fetchStateList.every((s) => s.fetchState === 'Completed');
269
+ const isAnyError = fetchStateList.some((s) => s.fetchState === 'Error');
270
+ const error = fetchStateList.find((s) => s.error != null)?.error;
271
+ let fetchState = 'Not-Started';
272
+ if (isAnyProgress) {
273
+ fetchState = 'In-Progress';
274
+ }
275
+ else if (isAllCompleted) {
276
+ fetchState = 'Completed';
277
+ }
278
+ else if (isAnyError) {
279
+ fetchState = 'Error';
280
+ }
281
+ return { fetchState, error };
282
+ }
@@ -23,6 +23,7 @@ export const initialState = {
23
23
  nodeCollapseState: {},
24
24
  scrollPosition: undefined,
25
25
  accountViewMode: 'account_group',
26
+ classViewLayout: 'vertical',
26
27
  classesToFilterOut: [],
27
28
  },
28
29
  firstMonthOfFY: 1,
@@ -94,6 +95,9 @@ const profitAndLossClassesView = createSlice({
94
95
  updateAccountViewMode(draft, action) {
95
96
  draft.uiState.accountViewMode = action.payload.viewMode;
96
97
  },
98
+ updateClassViewLayout(draft, action) {
99
+ draft.uiState.classViewLayout = action.payload.classViewLayout;
100
+ },
97
101
  resetProfitAndLossClassesNodeCollapseState(draft) {
98
102
  draft.uiState.nodeCollapseState = {};
99
103
  },
@@ -102,7 +106,7 @@ const profitAndLossClassesView = createSlice({
102
106
  },
103
107
  },
104
108
  });
105
- export const { fetchProfitAndLossClassesView, fetchProfitAndLossForTimeframeClassesView, updateProfitAndLossForTimeframeClassesView, updateProfitAndLossForTimeframeClassesViewFailure, updateClassesToFilterOut, updateProfitAndLossClassesViewUIState, updateAccountViewMode, resetProfitAndLossClassesNodeCollapseState, clearProfitAndLossClassesView, } = profitAndLossClassesView.actions;
109
+ export const { fetchProfitAndLossClassesView, fetchProfitAndLossForTimeframeClassesView, updateProfitAndLossForTimeframeClassesView, updateProfitAndLossForTimeframeClassesViewFailure, updateClassesToFilterOut, updateProfitAndLossClassesViewUIState, updateAccountViewMode, updateClassViewLayout, resetProfitAndLossClassesNodeCollapseState, clearProfitAndLossClassesView, } = profitAndLossClassesView.actions;
106
110
  export default profitAndLossClassesView.reducer;
107
111
  const doUpdatedProfitAndLossClassesView = (draft, timeframe, pandLReport) => {
108
112
  const report = mapReportPayloadV2ToReportV2(pandLReport.report);
package/lib/index.d.ts CHANGED
@@ -344,10 +344,12 @@ import { PeopleViewSortKey } from './view/people/peopleTypes';
344
344
  import { fetchProfitAndLoss, fetchProfitAndLossForTimeframe, resetProfitAndLossNodeCollapseState, updateProfitAndLossUIState } from './view/profitAndLoss/profitAndLossReducer';
345
345
  import { ProfitAndLossReport, getPandLReportFetchState, getProfitAndLossReport } from './view/profitAndLoss/profitAndLossSelector';
346
346
  import { ProfitAndLossState, ProfitAndLossUIState } from './view/profitAndLoss/profitAndLossState';
347
- import { fetchProfitAndLossClassesView, resetProfitAndLossClassesNodeCollapseState, updateAccountViewMode as updateProfitAndLossAccountViewMode, updateClassesToFilterOut as updateProfitAndLossClassesToFilterOut, updateProfitAndLossClassesViewUIState } from './view/profitAndLossClassesView/profitAndLossClassesViewReducer';
347
+ import { fetchProfitAndLossClassesView, resetProfitAndLossClassesNodeCollapseState, updateAccountViewMode as updateProfitAndLossAccountViewMode, updateClassesToFilterOut as updateProfitAndLossClassesToFilterOut, updateClassViewLayout, updateProfitAndLossClassesViewUIState } from './view/profitAndLossClassesView/profitAndLossClassesViewReducer';
348
+ import { getProfitAndLossClassesHorizontalView } from './view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector';
349
+ import { ClassColumnDefinition, HorizontalAccountRow, HorizontalCalculatedSection, HorizontalClassBalance, HorizontalSectionReport, ProfitAndLossByClassHorizontalReport } from './view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelectorTypes';
348
350
  import { getProfitAndLossClassesView } from './view/profitAndLossClassesView/profitAndLossClassesViewSelector';
349
351
  import { PandLReportViewCalculatedSectionID, PandLReportViewSectionID, ProfitAndLossClassesViewReport, isPandLReportViewCalculatedSectionID, isPandLReportViewSectionID } from './view/profitAndLossClassesView/profitAndLossClassesViewSelectorTypes';
350
- import { ProfitAndLossClassesViewUIState } from './view/profitAndLossClassesView/profitAndLossClassesViewState';
352
+ import { ClassViewLayout, ProfitAndLossClassesViewUIState } from './view/profitAndLossClassesView/profitAndLossClassesViewState';
351
353
  import { fetchEntityRecommendationsByTransactionId, fetchRecommendationByEntityId, fetchRecommendationByEntityName } from './view/recommendation/recommendationReducer';
352
354
  import { clearReferrals, fetchReferrals, fetchRewardsPlan, resendReferralInvite, saveReferralFormDataInLocalStore, sendReferralInvite, updateReferViewed, updateReferralListSortUiState } from './view/referralView/referralReducer';
353
355
  import { ReferralListSelectorView, RewardsPlanCardReport, getInviteFormView, getReferralListView, getRewardsPlanCard } from './view/referralView/referralSelector';
@@ -662,7 +664,7 @@ export { fetchDashboard, getDashboard, DashboardReport, updateTreasuryVideoClose
662
664
  export { updateDashboardLayout };
663
665
  export { PandLWithForecastView, getPandLWithForecast, } from './view/profitAndLoss/pAndLWithForecast/pAndLWithForecastSelector';
664
666
  export { fetchProfitAndLoss, resetProfitAndLossNodeCollapseState, updateProfitAndLossUIState, ProfitAndLossState, ProfitAndLossUIState, getProfitAndLossReport, ProfitAndLossReport, getPandLReportFetchState, fetchProfitAndLossForTimeframe, };
665
- export { fetchProfitAndLossClassesView, updateProfitAndLossClassesToFilterOut, resetProfitAndLossClassesNodeCollapseState, updateProfitAndLossClassesViewUIState, updateProfitAndLossAccountViewMode, ProfitAndLossClassesViewUIState, ProfitAndLossClassesViewReport, getProfitAndLossClassesView, PandLReportViewSectionID, PandLReportViewCalculatedSectionID, isPandLReportViewCalculatedSectionID, isPandLReportViewSectionID, };
667
+ export { fetchProfitAndLossClassesView, updateProfitAndLossClassesToFilterOut, resetProfitAndLossClassesNodeCollapseState, updateProfitAndLossClassesViewUIState, updateProfitAndLossAccountViewMode, updateClassViewLayout, ProfitAndLossClassesViewUIState, ProfitAndLossClassesViewReport, getProfitAndLossClassesView, getProfitAndLossClassesHorizontalView, PandLReportViewSectionID, PandLReportViewCalculatedSectionID, isPandLReportViewCalculatedSectionID, isPandLReportViewSectionID, ClassViewLayout, ProfitAndLossByClassHorizontalReport, ClassColumnDefinition, HorizontalAccountRow, HorizontalClassBalance, HorizontalSectionReport, HorizontalCalculatedSection, };
666
668
  export { AccountingProviderAttachmentSelector, getAccountingProviderAttachment };
667
669
  export { fetchUserListByType, getUserList, UserListSelectorView };
668
670
  export { fetchAllPeopleRequiredViews, fetchPeoplePage, fetchPeople, deletePerson, resendInvite, changeZeniPersonRoles, invitePeople, inviteZeniPeople, updatePeopleUIState, peopleSaveUpdates, resetUpdateErrorMessage, peopleSaveDataInLocalStore, peopleClearDataInLocalStore, PeopleSelectorView, PeopleLocalDataView, Person, getPeople, getPeopleLocalData, PeopleState, PersonUpdateType, PeoplePageMode, ZeniPersonUserRoleType, PeopleUIState, PeopleLocalData, initializeEditPerson, };