@apptimate/core-lib 2.3.0 → 2.4.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apptimate/core-lib",
3
- "version": "2.3.0",
3
+ "version": "2.4.0",
4
4
  "main": "src/index.ts",
5
5
  "types": "src/index.ts",
6
6
  "publishConfig": {
@@ -108,7 +108,6 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
108
108
  // ── Finance Module ──
109
109
  { key: 'finance__invoices', label: 'Invoices', path: '/finance/invoices', module: 'Finance', defaultGroup: 'Transactions' },
110
110
  { key: 'finance__payments', label: 'Payments', path: '/finance/payments', module: 'Finance', defaultGroup: 'Transactions' },
111
- { key: 'finance__party_transactions', label: 'Party Transactions', path: '/finance/party-transactions', module: 'Finance', defaultGroup: 'Transactions' },
112
111
  { key: 'finance__chart_of_accounts', label: 'Chart of Accounts', path: '/finance/chart-of-accounts', module: 'Finance', defaultGroup: 'Accounting' },
113
112
  { key: 'finance__journal_entries', label: 'Journal Entries', path: '/finance/journal-entries', module: 'Finance', defaultGroup: 'Accounting' },
114
113
  { key: 'finance__fiscal_years', label: 'Fiscal Years', path: '/finance/fiscal-years', module: 'Finance', defaultGroup: 'Accounting' },
@@ -121,7 +120,7 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
121
120
  { key: 'finance__bank_accounts', label: 'Bank Accounts', path: '/finance/bank-accounts', module: 'Finance', defaultGroup: 'Settings' },
122
121
  { key: 'finance__account_mappings', label: 'Account Mappings', path: '/finance/account-mappings', module: 'Finance', defaultGroup: 'Settings' },
123
122
  { key: 'finance__transaction_ledger', label: 'Transaction Ledger', path: '/finance/transactions', module: 'Finance', defaultGroup: 'Transactions' },
124
- { key: 'finance__bank_statements', label: 'Bank Statements', path: '/finance/bank-statements', module: 'Finance', defaultGroup: 'Banking' },
123
+ { key: 'finance__bank_statements', label: 'Bank Statements', path: '/finance/bank-statements', module: 'Finance', defaultGroup: 'Reports' },
125
124
 
126
125
  // ── Jewelry Module ──
127
126
  { key: 'jewelry__items', label: 'Jewelry Items', path: '/jewelry/items', module: 'Jewelry', defaultGroup: 'Catalog' },
@@ -313,7 +312,7 @@ export const MENU_PRESETS: MenuPreset[] = [
313
312
  label: 'Finance',
314
313
  iconName: 'Wallet',
315
314
  secondaryItems: [
316
- 'finance__invoices', 'finance__payments', 'finance__party_transactions', 'finance__transaction_ledger',
315
+ 'finance__invoices', 'finance__payments', 'finance__transaction_ledger',
317
316
  'finance__chart_of_accounts', 'finance__journal_entries', 'finance__fiscal_years',
318
317
  'finance__trial_balance', 'finance__profit_loss', 'finance__balance_sheet', 'finance__account_ledger', 'finance__party_statement',
319
318
  'finance__payment_modes', 'finance__bank_accounts', 'finance__bank_statements', 'finance__account_mappings',
@@ -558,7 +557,6 @@ export const APP_MENUS: MainMenuItem[] = [
558
557
  items: [
559
558
  { id: "invoices", label: "Invoices", path: "/finance/invoices" },
560
559
  { id: "payments", label: "Payments", path: "/finance/payments" },
561
- { id: "party_transactions", label: "Party Transactions", path: "/finance/party-transactions" },
562
560
  { id: "transaction_ledger", label: "Transaction Ledger", path: "/finance/transactions" },
563
561
  ],
564
562
  },
@@ -580,6 +578,7 @@ export const APP_MENUS: MainMenuItem[] = [
580
578
  { id: "balance_sheet", label: "Balance Sheet", path: "/finance/reports/balance-sheet" },
581
579
  { id: "account_ledger", label: "Account Ledger", path: "/finance/reports/account-ledger" },
582
580
  { id: "party_statement", label: "Party Statement", path: "/finance/reports/party-statement" },
581
+ { id: "bank_statements", label: "Bank Statements", path: "/finance/bank-statements" },
583
582
  ],
584
583
  },
585
584
  {
@@ -588,7 +587,6 @@ export const APP_MENUS: MainMenuItem[] = [
588
587
  items: [
589
588
  { id: "payment_modes", label: "Payment Modes", path: "/finance/payment-modes" },
590
589
  { id: "bank_accounts", label: "Bank Accounts", path: "/finance/bank-accounts" },
591
- { id: "bank_statements", label: "Bank Statements", path: "/finance/bank-statements" },
592
590
  { id: "account_mappings", label: "Account Mappings", path: "/finance/account-mappings" },
593
591
  ],
594
592
  },