66a4027f1e
- Update BAS account catalog with comprehensive SRU codes and K2 flags - Add currency revaluation service with tests and API route - Add expenses page and account deletion API - Enhance booking templates with new patterns and improved tests - Improve transaction categorization with template picker and description matching - Polish dashboard, onboarding, import, and transaction UIs - Refactor year-end service for multi-step closing - Move SRU generator to ne-bilaga, remove standalone SRU export - Remove unused dev docs, mock data, and extension hooks - Add invoice delivery note sequences migration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
519 B
TypeScript
10 lines
519 B
TypeScript
// AUTO-GENERATED — do not edit. Run `npm run setup:extensions` to regenerate.
|
|
import dynamic from 'next/dynamic'
|
|
import type { ComponentType } from 'react'
|
|
import type { WorkspaceComponentProps } from '../workspace-registry'
|
|
|
|
export const WORKSPACES: Record<string, ComponentType<WorkspaceComponentProps>> = {
|
|
'general/enable-banking': dynamic(() => import('@/components/extensions/general/EnableBankingWorkspace')),
|
|
'general/ai-chat': dynamic(() => import('@/components/extensions/general/AiChatWorkspace')),
|
|
}
|