Member Junction
    Preparing search index...
    interface DeduplicationResult {
        collisions: { duplicate: SequenceEntry; first: SequenceEntry }[];
        filesScanned: number;
        fixes: SequenceFix[];
        totalCollisions: number;
        totalInserts: number;
    }
    Index

    Properties

    collisions: { duplicate: SequenceEntry; first: SequenceEntry }[]

    Both sides of every detected collision. Lets callers distinguish benign cross-file collisions in CodeGen's +100000 staging zone (sequences are renumbered by spUpdateExistingEntityFieldsFromSchema between migrations, so the same staged value recurring in a LATER migration never collides at runtime) from real same-file or real-sequence collisions.

    filesScanned: number

    Total files scanned

    fixes: SequenceFix[]

    Details of every fix applied

    totalCollisions: number

    Number of (EntityID, Sequence) collisions detected

    totalInserts: number

    Total EntityField INSERT statements found