packages/v2/core/src/application/ARCHITECTURE.md
Declaration: If the folder I belong to changes, please update me, especially core domain concepts. Add examples or example file paths for abstract concepts when needed.
projections/ - Projection types and handler decorator alias (EventHandler-based).services/ - Application service implementations (orchestration only).ARCHITECTURE.md - Role: folder architecture note; Purpose: describe application layer scope.services/FieldCreationSideEffectService.ts - Role: application service; Purpose: apply cross-table side effects for field creation.services/FieldDeletionSideEffectService.ts - Role: application service; Purpose: apply cross-table side effects for field deletion.services/ForeignTableLoaderService.ts - Role: application service; Purpose: load foreign tables once and validate missing references.services/RecordCreationService.ts - Role: application service; Purpose: shared single-record creation workflow reused by multiple handlers.services/RecordWritePluginRunner.ts - Role: application service; Purpose: run typed record-write plugins across prepare/guard/beforePersist/afterCommit phases.services/TableUpdateFlow.ts - Role: application service; Purpose: transactionally apply table mutations and publish events.