@zeniai/client-epic-state 5.0.69-betaAR5 → 5.0.69-betaAS1

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 (50) hide show
  1. package/lib/entity/account/accountSelector.d.ts +0 -26
  2. package/lib/entity/account/accountSelector.js +1 -47
  3. package/lib/entity/account/accountState.d.ts +0 -5
  4. package/lib/entity/account/accountState.js +4 -11
  5. package/lib/entity/class/classSelector.d.ts +0 -35
  6. package/lib/entity/class/classSelector.js +0 -50
  7. package/lib/esm/entity/account/accountSelector.js +1 -46
  8. package/lib/esm/entity/account/accountState.js +1 -7
  9. package/lib/esm/entity/class/classSelector.js +0 -48
  10. package/lib/esm/index.js +4 -10
  11. package/lib/esm/view/companyHealthMetricView/companyHealthMetricViewSelector.js +1 -1
  12. package/lib/esm/view/companyView/helpers/cockpitHelpers.js +1 -1
  13. package/lib/esm/view/companyView/selector/companyManagementViewSelector.js +1 -1
  14. package/lib/esm/view/companyView/selector/companyPortfolioViewSelector.js +1 -1
  15. package/lib/esm/view/expenseAutomationView/reducers/transactionsViewReducer.js +1 -11
  16. package/lib/esm/view/expenseAutomationView/selectors/transactionCategorizationSelector.js +12 -69
  17. package/lib/esm/view/spendManagement/commonHistoryView/commonHistoryPayload.js +1 -0
  18. package/lib/esm/view/spendManagement/spendManagementFilterHelpers.js +2 -4
  19. package/lib/esm/view/subscriptionView/subscriptionViewSelector.js +1 -1
  20. package/lib/esm/view/taskManager/taskListView/taskListReducer.js +1 -1
  21. package/lib/index.d.ts +5 -7
  22. package/lib/index.js +32 -41
  23. package/lib/view/companyHealthMetricView/companyHealthMetricViewSelector.js +1 -1
  24. package/lib/view/companyView/helpers/cockpitHelpers.js +1 -1
  25. package/lib/view/companyView/selector/companyManagementViewSelector.js +1 -1
  26. package/lib/view/companyView/selector/companyPortfolioViewSelector.js +1 -1
  27. package/lib/view/companyView/types/cockpitTypes.d.ts +1 -1
  28. package/lib/view/expenseAutomationView/reducers/transactionsViewReducer.d.ts +1 -5
  29. package/lib/view/expenseAutomationView/reducers/transactionsViewReducer.js +2 -12
  30. package/lib/view/expenseAutomationView/selectors/transactionCategorizationSelector.d.ts +1 -4
  31. package/lib/view/expenseAutomationView/selectors/transactionCategorizationSelector.js +12 -71
  32. package/lib/view/expenseAutomationView/types/transactionsViewState.d.ts +0 -2
  33. package/lib/view/spendManagement/billPay/billList/billListState.d.ts +1 -1
  34. package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory.d.ts +1 -1
  35. package/lib/view/spendManagement/commonHistoryView/commonHistory.d.ts +1 -0
  36. package/lib/view/spendManagement/commonHistoryView/commonHistoryPayload.d.ts +1 -0
  37. package/lib/view/spendManagement/commonHistoryView/commonHistoryPayload.js +1 -0
  38. package/lib/view/spendManagement/reimbursement/remiListView/remiListState.d.ts +1 -1
  39. package/lib/view/spendManagement/spendManagementFilterHelpers.d.ts +3 -12
  40. package/lib/view/spendManagement/spendManagementFilterHelpers.js +2 -4
  41. package/lib/view/subscriptionView/subscriptionViewSelector.js +1 -1
  42. package/lib/view/taskManager/taskListView/taskList.d.ts +1 -1
  43. package/lib/view/taskManager/taskListView/taskListReducer.js +1 -1
  44. package/package.json +1 -1
  45. package/lib/commonStateTypes/filterPrimitives.d.ts +0 -23
  46. package/lib/commonStateTypes/filterPrimitives.js +0 -21
  47. package/lib/esm/commonStateTypes/filterPrimitives.js +0 -20
  48. package/lib/esm/view/expenseAutomationView/transactionFilterHelpers.js +0 -245
  49. package/lib/view/expenseAutomationView/transactionFilterHelpers.d.ts +0 -66
  50. package/lib/view/expenseAutomationView/transactionFilterHelpers.js +0 -249
@@ -1,66 +0,0 @@
1
- /**
2
- * Filter machinery for the Transaction Categorization feature inside
3
- * Expense Automation. Intentionally self-contained — does NOT import anything
4
- * from `view/spendManagement/*`, because Transaction Categorization is not a
5
- * Spend Management product. Shared primitives
6
- * (`CategoryCombinationOperator`, `FilterCategoryType`) come from
7
- * `commonStateTypes/filterPrimitives`, which both feature groups consume.
8
- */
9
- import { Amount } from '../../commonStateTypes/amount';
10
- import { ID } from '../../commonStateTypes/common';
11
- import { CategoryCombinationOperator, FilterCategoryType } from '../../commonStateTypes/filterPrimitives';
12
- import { TransactionType } from '../../entity/transaction/stateTypes/transactionType';
13
- import { SupportedTransactionWithCOT } from '../../entity/transaction/transactionState';
14
- import { ZeniDate } from '../../zeniDayJS';
15
- import { TransactionReviewLocalDataSelectorView } from './selectorTypes/transactionsViewSelectorTypes';
16
- /**
17
- * Re-exported here so the CES barrel can pull TC's primitives from the
18
- * Expense Automation surface without reaching into `commonStateTypes`
19
- * directly — keeps the barrel's existing import topology stable.
20
- */
21
- export type { CategoryCombinationOperator, FilterCategoryType };
22
- export type TransactionFilterEntityType = 'transaction_categorization' | 'customer' | 'vendor' | 'merchant';
23
- export type TransactionFilterCategoryField = 'payment_account_name' | 'payment_account_type' | 'payee' | 'category' | 'class' | 'amount';
24
- export interface TransactionFilterCategoryDropdownOption {
25
- value: TransactionFilterCategoryField;
26
- multiple?: boolean;
27
- type?: FilterCategoryType;
28
- }
29
- export declare const TRANSACTION_FILTER_CATEGORIES: TransactionFilterCategoryDropdownOption[];
30
- /** Amount filter operators for transaction_categorization. */
31
- export type TransactionFilterAmountMatchingOperator = 'equal' | 'not_equal' | 'less_than' | 'greater_than' | 'in_between';
32
- export interface TransactionFilterCategory {
33
- field: TransactionFilterCategoryField;
34
- matchingOperator: TransactionFilterAmountMatchingOperator;
35
- values: (string | number)[];
36
- valuesCombinationOperator: 'ANY';
37
- }
38
- export interface TransactionFilters {
39
- categories: TransactionFilterCategory[];
40
- categoryCombinationOperator: CategoryCombinationOperator;
41
- }
42
- export interface TransactionView {
43
- amount: Amount;
44
- createTime: ZeniDate;
45
- date: ZeniDate;
46
- description: string;
47
- id: ID;
48
- memo: string;
49
- transaction: SupportedTransactionWithCOT;
50
- type: TransactionType;
51
- customerId?: ID;
52
- customerName?: string;
53
- transactionLocalData?: TransactionReviewLocalDataSelectorView;
54
- typeName?: string;
55
- vendorId?: ID;
56
- vendorName?: string;
57
- }
58
- /**
59
- * TC-only equivalent of `applyAdvancedFiltersOnList`. Filters a list of
60
- * `TransactionView` items against a `TransactionFilters` object using the
61
- * AND/OR combination semantics from `categoryCombinationOperator`.
62
- *
63
- * Independent of `view/spendManagement` — keeps the TC filter pipeline cleanly
64
- * inside the Expense Automation feature group.
65
- */
66
- export declare const applyTransactionFilters: (transactions: TransactionView[], filters?: TransactionFilters) => TransactionView[];
@@ -1,249 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.applyTransactionFilters = exports.TRANSACTION_FILTER_CATEGORIES = void 0;
4
- /**
5
- * Narrowing type-guard for "has a non-empty string here". Used in place of
6
- * raw `if (foo)` truthiness checks on `string | null | undefined` values so
7
- * the `@typescript-eslint/strict-boolean-expressions` lint stays clean —
8
- * empty strings should explicitly fall through to the next candidate
9
- * (vendorName → customerName → localData.vendor.name → ...) rather than
10
- * being implicitly coerced to falsy.
11
- */
12
- const isNonEmptyString = (s) => s != null && s !== '';
13
- exports.TRANSACTION_FILTER_CATEGORIES = [
14
- { value: 'payment_account_name', type: 'dropdown' },
15
- { value: 'payment_account_type', type: 'dropdown' },
16
- { value: 'payee', type: 'searchAutocomplete' },
17
- { value: 'category', type: 'dropdown' },
18
- { value: 'class', type: 'dropdown' },
19
- { value: 'amount', type: 'numberRange' },
20
- ];
21
- /**
22
- * Resolve the comparable value for a transaction against a given filter field.
23
- * Returns undefined when the transaction doesn't carry the field — callers
24
- * decide whether absence counts as a match (for 'not_equal' it does).
25
- */
26
- const getCategoryValueForTransaction = (key, transaction) => {
27
- switch (key) {
28
- case 'amount': {
29
- // Prefer transactionLocalData line items (sum). Fall back to lines on
30
- // the transaction itself. Final fallback: transaction-level amount.
31
- const localDataForAmount = transaction.transactionLocalData?.transactionReviewLocalData;
32
- if (localDataForAmount?.lineItemById) {
33
- const lineItems = Object.values(localDataForAmount.lineItemById);
34
- if (lineItems.length > 0) {
35
- return lineItems.reduce((sum, lineItem) => sum + (lineItem.amount?.amount ?? 0), 0);
36
- }
37
- }
38
- if (transaction.transaction.lines &&
39
- transaction.transaction.lines.length > 0) {
40
- return transaction.transaction.lines.reduce((sum, line) => sum + (line.amount?.amount ?? 0), 0);
41
- }
42
- return transaction.amount.amount;
43
- }
44
- case 'payee': {
45
- if (isNonEmptyString(transaction.vendorName)) {
46
- return transaction.vendorName;
47
- }
48
- if (isNonEmptyString(transaction.customerName)) {
49
- return transaction.customerName;
50
- }
51
- const localData = transaction.transactionLocalData?.transactionReviewLocalData;
52
- const vendorName = localData?.vendor?.name;
53
- if (isNonEmptyString(vendorName)) {
54
- return vendorName;
55
- }
56
- const customerName = localData?.customer?.name;
57
- if (isNonEmptyString(customerName)) {
58
- return customerName;
59
- }
60
- return undefined;
61
- }
62
- case 'payment_account_name': {
63
- // Match what TransactionCategorizationListRow renders for the cell.
64
- return transaction.transaction.account?.accountName;
65
- }
66
- case 'payment_account_type': {
67
- // Raw `paymentType` enum ("credit_card" / "check" / "cash"). Dropdown
68
- // option values use the same enum; row uses `paymentTypeName` for the
69
- // human label.
70
- return transaction.transaction.paymentType;
71
- }
72
- case 'category': {
73
- const localDataForCategory = transaction.transactionLocalData?.transactionReviewLocalData;
74
- if (localDataForCategory != null) {
75
- const firstLineItem = Object.values(localDataForCategory.lineItemById)[0];
76
- const accountId = firstLineItem?.account?.accountId;
77
- if (isNonEmptyString(accountId)) {
78
- return accountId;
79
- }
80
- const qboId = firstLineItem?.account?.qboId;
81
- if (isNonEmptyString(qboId)) {
82
- return qboId;
83
- }
84
- const accountName = firstLineItem?.account?.accountName;
85
- if (isNonEmptyString(accountName)) {
86
- return accountName;
87
- }
88
- }
89
- const firstLineForCategory = transaction.transaction.lines?.[0];
90
- if (firstLineForCategory?.type ===
91
- 'transaction_with_account_and_class_line' ||
92
- firstLineForCategory?.type ===
93
- 'transaction_with_product_or_service_line' ||
94
- firstLineForCategory?.type === 'journal_entry_transaction_line') {
95
- const account = firstLineForCategory.account;
96
- return account?.accountId ?? account?.qboId ?? account?.accountName;
97
- }
98
- return undefined;
99
- }
100
- case 'class': {
101
- const localDataForClass = transaction.transactionLocalData?.transactionReviewLocalData;
102
- if (localDataForClass != null) {
103
- const firstLineItemForClass = Object.values(localDataForClass.lineItemById)[0];
104
- const classId = firstLineItemForClass?.class?.classId;
105
- if (isNonEmptyString(classId)) {
106
- return classId;
107
- }
108
- const qboId = firstLineItemForClass?.class?.qboId;
109
- if (isNonEmptyString(qboId)) {
110
- return qboId;
111
- }
112
- const className = firstLineItemForClass?.class?.className;
113
- if (isNonEmptyString(className)) {
114
- return className;
115
- }
116
- }
117
- const firstLineForClass = transaction.transaction.lines?.[0];
118
- if (firstLineForClass?.type === 'transaction_with_account_and_class_line' ||
119
- firstLineForClass?.type ===
120
- 'transaction_with_product_or_service_line' ||
121
- firstLineForClass?.type === 'journal_entry_transaction_line') {
122
- const classData = firstLineForClass.class;
123
- return classData?.classId ?? classData?.qboId ?? classData?.className;
124
- }
125
- return undefined;
126
- }
127
- default:
128
- return undefined;
129
- }
130
- };
131
- /**
132
- * TC-only amount matcher. Supports all five operators TC defines, including
133
- * the legacy "1000<->5000" range-string form (kept for backward compatibility
134
- * with persisted filter state that may still contain that encoding).
135
- *
136
- * The `'equal' | 'not_equal'` branch matches if `amount` equals ANY of the
137
- * configured values (consistent with how non-amount filters interpret a
138
- * multi-value `values` array). `.some()` over the values array also makes
139
- * the empty-values case behave correctly — empty array → `matched = false`
140
- * — though in practice `applyTransactionFilters` strips empty-values
141
- * categories before they reach this matcher. The trailing
142
- * `op === 'not_equal' ? !matched : matched` line inverts for `not_equal`.
143
- */
144
- const matchAmount = (amount, category) => {
145
- const op = category.matchingOperator;
146
- const values = category.values;
147
- let matched = false;
148
- if (op === 'in_between') {
149
- if (values.length >= 2) {
150
- const min = Number(values[0]);
151
- const max = Number(values[1]);
152
- matched = amount >= min && amount <= max;
153
- }
154
- }
155
- else if (op === 'less_than') {
156
- if (values.length >= 1) {
157
- matched = amount < Number(values[0]);
158
- }
159
- }
160
- else if (op === 'greater_than') {
161
- if (values.length >= 1) {
162
- matched = amount > Number(values[0]);
163
- }
164
- }
165
- else if (op === 'equal' || op === 'not_equal') {
166
- matched = values.some((v) => {
167
- const s = String(v);
168
- // Backward compatibility: legacy "low<->high" range-string form
169
- // persisted under `matchingOperator: 'equal'`.
170
- if (s.includes('<->')) {
171
- const parts = s.split('<->');
172
- return (amount >= Number(parts[0] ?? '') && amount <= Number(parts[1] ?? ''));
173
- }
174
- return amount === Number(v);
175
- });
176
- }
177
- return op === 'not_equal' ? !matched : matched;
178
- };
179
- const transactionMatchesCategory = (transaction, category) => {
180
- const value = getCategoryValueForTransaction(category.field, transaction);
181
- if (value == null) {
182
- // Absent-value semantics — pinning these down explicitly so the
183
- // asymmetry isn't surprising:
184
- //
185
- // not_equal: a missing value IS NOT EQUAL to any candidate, so the
186
- // transaction matches the filter (passes through).
187
- // equal: a missing value is not equal to any candidate, so the
188
- // transaction does NOT match (filtered out).
189
- // less_than / greater_than: SQL-style three-valued logic — comparing
190
- // against a missing value is "unknown", which we treat as
191
- // "does not match" (filtered out). A user setting
192
- // "amount < $1000" probably wants transactions with a
193
- // concrete amount that satisfies the bound, not rows
194
- // where the amount can't be determined.
195
- // in_between: same as the single-sided comparators — missing values
196
- // are filtered out.
197
- //
198
- // Only the `not_equal` branch returns `true` here; everything else
199
- // falls through to the `false` below.
200
- return category.matchingOperator === 'not_equal';
201
- }
202
- if (category.field === 'amount') {
203
- return matchAmount(Number(value), category);
204
- }
205
- const valueStr = value.toString();
206
- const valueInList = category.values.some((v) => v.toString() === valueStr);
207
- return category.matchingOperator === 'not_equal' ? !valueInList : valueInList;
208
- };
209
- /**
210
- * TC-only equivalent of `applyAdvancedFiltersOnList`. Filters a list of
211
- * `TransactionView` items against a `TransactionFilters` object using the
212
- * AND/OR combination semantics from `categoryCombinationOperator`.
213
- *
214
- * Independent of `view/spendManagement` — keeps the TC filter pipeline cleanly
215
- * inside the Expense Automation feature group.
216
- */
217
- const applyTransactionFilters = (transactions, filters) => {
218
- if (filters?.categories == null || filters.categories.length === 0) {
219
- return transactions;
220
- }
221
- // Mirrors the predicate used by `getTransactionAppliedFiltersCount` on the
222
- // webc side. A half-filled category — e.g. `in_between` with only the
223
- // `min` typed — would otherwise survive the filter pass and produce zero
224
- // matches because `Number("")` collapses to `0`, artificially emptying
225
- // the list while editing. Skipping such categories keeps the filtered
226
- // view stable while the user finishes typing.
227
- const activeCategories = filters.categories.filter((c) => {
228
- if (c.field == null || c.values.length === 0) {
229
- return false;
230
- }
231
- if (c.field === 'amount' && c.matchingOperator === 'in_between') {
232
- return (c.values.length >= 2 &&
233
- String(c.values[0] ?? '').trim() !== '' &&
234
- String(c.values[1] ?? '').trim() !== '');
235
- }
236
- return String(c.values[0] ?? '').trim() !== '';
237
- });
238
- if (activeCategories.length === 0) {
239
- return transactions;
240
- }
241
- const op = filters.categoryCombinationOperator;
242
- return transactions.filter((txn) => {
243
- if (op === 'AND') {
244
- return activeCategories.every((cat) => transactionMatchesCategory(txn, cat));
245
- }
246
- return activeCategories.some((cat) => transactionMatchesCategory(txn, cat));
247
- });
248
- };
249
- exports.applyTransactionFilters = applyTransactionFilters;