Initial commit

This commit is contained in:
fraqtal
2026-07-12 08:15:46 +00:00
commit ee0fec0691
1397 changed files with 127242 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import type { IDataRectify } from "./data-rectify.interface";
/**
* Volatile in-memory IDataRectify. Accepts calls but makes no changes.
*
* Used in dev-seed and storybook contexts where Payload is unavailable.
* Not a recording double — use RecordingDataRectify from @repo/core-testing for
* call-assertion in unit tests.
*/
export class InMemoryDataRectify implements IDataRectify {
async updateSubjectField(
_subjectId: string,
_collection: string,
_field: string,
_value: unknown,
): Promise<void> {
// no-op in dev-seed
}
}