prorm API Reference
    Preparing search index...

    Interface TransformationRecord

    A transformation operation applied to a record

    interface TransformationRecord {
        id: number;
        recordId: string | number;
        tableName: string;
        operation: string;
        description?: string;
        performedBy?: string | number;
        timestamp: Date;
        inputValues?: Record<string, any>;
        outputValues?: Record<string, any>;
        metadata?: Record<string, any>;
    }
    Index
    id: number

    Unique identifier for this transformation

    recordId: string | number

    Record ID this transformation applies to

    tableName: string

    Table name

    operation: string

    Type of transformation

    description?: string

    Description of what was done

    performedBy?: string | number

    User who performed the transformation

    timestamp: Date

    When the transformation occurred

    inputValues?: Record<string, any>

    Input values before transformation

    outputValues?: Record<string, any>

    Output values after transformation

    metadata?: Record<string, any>

    Additional metadata