Member Junction
    Preparing search index...

    The minimum of a BaseEntity this builder needs — kept structural so this module stays free of a dependency on the entity layer, which would invert the package graph.

    type ChangeTrackedEntity = {
        Fields: ReadonlyArray<
            { Name: string; OldValue: unknown; Value: unknown },
        >;
        IsSaved: boolean;
    }
    Index

    Properties

    Properties

    Fields: ReadonlyArray<{ Name: string; OldValue: unknown; Value: unknown }>
    IsSaved: boolean