// src/server/features/notes/db/repository/index.ts
// Public API for notes repository - exports all functions from sub-modules

// Query functions
export {
  findWithLayout,
  findOneWithLayout,
  getLastMentionDate,
  batchGetLastMentionDates,
} from './queries';

// Command functions
export { findById, hardDeleteNote } from './commands';

// Layout functions
export {
  findLayout,
  updateNoteLayout,
  markNoteAsViewed,
  hardDeleteNoteLayouts,
} from './layout';

// History functions
export {
  findComments,
  findCommentById,
  findHistory,
  createHistoryEntry,
} from './history';
