@apptimate/core-lib 2.2.0 → 2.3.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.2.0",
3
+ "version": "2.3.0",
4
4
  "main": "src/index.ts",
5
5
  "types": "src/index.ts",
6
6
  "publishConfig": {
@@ -108,6 +108,7 @@ 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' },
111
112
  { key: 'finance__chart_of_accounts', label: 'Chart of Accounts', path: '/finance/chart-of-accounts', module: 'Finance', defaultGroup: 'Accounting' },
112
113
  { key: 'finance__journal_entries', label: 'Journal Entries', path: '/finance/journal-entries', module: 'Finance', defaultGroup: 'Accounting' },
113
114
  { key: 'finance__fiscal_years', label: 'Fiscal Years', path: '/finance/fiscal-years', module: 'Finance', defaultGroup: 'Accounting' },
@@ -146,6 +147,7 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
146
147
  { key: 'jewelry__party_metal_balances', label: 'Party Metal Balances', path: '/jewelry/party-metal-balances', module: 'Jewelry', defaultGroup: 'Karigar' },
147
148
  { key: 'jewelry__metal_settlements', label: 'Metal Settlements', path: '/jewelry/metal-settlements', module: 'Jewelry', defaultGroup: 'Karigar' },
148
149
  { key: 'jewelry__settings', label: 'Settings', path: '/jewelry/settings', module: 'Jewelry', defaultGroup: 'Configuration' },
150
+ { key: 'jewelry__billing_templates', label: 'Billing Templates', path: '/jewelry/billing-templates', module: 'Jewelry', defaultGroup: 'Configuration' },
149
151
  { key: 'jewelry__reports', label: 'Reports & Dashboards', path: '/reports/jewelry', module: 'Jewelry', defaultGroup: 'Analytics' },
150
152
 
151
153
  // ── HR Module ──
@@ -311,7 +313,7 @@ export const MENU_PRESETS: MenuPreset[] = [
311
313
  label: 'Finance',
312
314
  iconName: 'Wallet',
313
315
  secondaryItems: [
314
- 'finance__invoices', 'finance__payments', 'finance__transaction_ledger',
316
+ 'finance__invoices', 'finance__payments', 'finance__party_transactions', 'finance__transaction_ledger',
315
317
  'finance__chart_of_accounts', 'finance__journal_entries', 'finance__fiscal_years',
316
318
  'finance__trial_balance', 'finance__profit_loss', 'finance__balance_sheet', 'finance__account_ledger', 'finance__party_statement',
317
319
  'finance__payment_modes', 'finance__bank_accounts', 'finance__bank_statements', 'finance__account_mappings',
@@ -335,6 +337,7 @@ export const MENU_PRESETS: MenuPreset[] = [
335
337
  'jewelry__metal_settlements',
336
338
  'jewelry__reports',
337
339
  'jewelry__settings',
340
+ 'jewelry__billing_templates',
338
341
  ],
339
342
  },
340
343
  {
@@ -555,6 +558,7 @@ export const APP_MENUS: MainMenuItem[] = [
555
558
  items: [
556
559
  { id: "invoices", label: "Invoices", path: "/finance/invoices" },
557
560
  { id: "payments", label: "Payments", path: "/finance/payments" },
561
+ { id: "party_transactions", label: "Party Transactions", path: "/finance/party-transactions" },
558
562
  { id: "transaction_ledger", label: "Transaction Ledger", path: "/finance/transactions" },
559
563
  ],
560
564
  },
@@ -730,6 +734,7 @@ export const APP_MENUS: MainMenuItem[] = [
730
734
  label: "Configuration",
731
735
  items: [
732
736
  { id: "jewelry_settings", label: "Settings", path: "/jewelry/settings" },
737
+ { id: "jewelry_billing_templates", label: "Billing Templates", path: "/jewelry/billing-templates" },
733
738
  ],
734
739
  },
735
740
  ],