@codervisor/devlog-core
Version:
Core devlog management functionality
23 lines • 727 B
TypeScript
/**
* DevlogNote entity - separate table for devlog notes
* Replaces the notes[] array in DevlogEntry for better relational modeling
*/
import 'reflect-metadata';
import type { NoteCategory } from '../types/index.js';
import { DevlogEntryEntity } from './devlog-entry.entity.js';
export declare class DevlogNoteEntity {
id: string;
devlogId: number;
timestamp: Date;
category: NoteCategory;
content: string;
files?: string[];
codeChanges?: string;
metadata?: {
previousCriteria?: string[];
newCriteria?: string[];
changeType?: 'added' | 'removed' | 'modified' | 'reordered';
};
devlogEntry: DevlogEntryEntity;
}
//# sourceMappingURL=devlog-note.entity.d.ts.map