data-cap
    Preparing search index...

    Interface ReconcileArrayInfoResult<TInfo>

    The result of reconciling an array field's identity-keyed DataInfo map against a new fields array.

    interface ReconcileArrayInfoResult<TInfo> {
        info: Partial<Record<string, TInfo>>;
        warnings: readonly IdentityWarning[];
    }

    Type Parameters

    • TInfo
    Index
    info: Partial<Record<string, TInfo>>

    The reconciled identity-keyed info map, preserving reference identity for unaffected items.

    warnings: readonly IdentityWarning[]

    Items that couldn't be reconciled by identity, never silently dropped.