Technical Elements Documentation
    Preparing search index...

    Interface TemplateChangeRecord

    Record of changes made to a component template Used for tracking template changes and propagation to instances

    interface TemplateChangeRecord {
        changes: string[];
        changesPropagated: boolean;
        excludedInstances?: string[];
        templateReference: string;
        timestamp: string;
        version: string;
    }
    Index

    Properties

    changes: string[]

    Description of changes made to the template

    changesPropagated: boolean

    Indicates if changes have been propagated to instances

    excludedInstances?: string[]

    Instances to exclude from change propagation

    templateReference: string

    Reference to the template that was changed

    timestamp: string

    Timestamp when the change was made

    version: string

    Version of the template after the change