12 lines
536 B
TypeScript
12 lines
536 B
TypeScript
/**
|
|
* Core persistence adapter interface
|
|
*/
|
|
export interface PersistenceAdapter {
|
|
insert<T>(entityType: string, data: T): Promise<T>;
|
|
update<T>(entityType: string, id: string, data: Partial<T>): Promise<T>;
|
|
delete(entityType: string, id: string): Promise<void>;
|
|
findById<T>(entityType: string, id: string): Promise<T>;
|
|
// Optional methods - implement as needed
|
|
deleteMany?(entityType: string, ids: string[]): Promise<void>;
|
|
findMany?<T>(entityType: string, query?: Record<string, unknown>): Promise<T[]>;
|
|
} |