@karmaniverous/entity-client-dynamodb
    Preparing search index...

    Interface TransformContext<PrevCM, NextCM, ET>

    Context passed to a transform handler for a specific entity token.

    interface TransformContext<
        PrevCM extends BaseConfigMap,
        NextCM extends BaseConfigMap,
        ET extends EntityToken<PrevCM>,
    > {
        entityToken: ET;
        next: EntityManager<NextCM>;
        prev: EntityManager<PrevCM>;
    }

    Type Parameters

    Index

    Properties

    Properties

    entityToken: ET

    The entity token for this record.

    EntityManager for the next version (adds keys).

    EntityManager for the previous version (removes keys).