Member Junction
    Preparing search index...

    Interface EntityNamingOptions

    Configuration options for entity and field name normalization. These control how ALL CAPS database identifiers are converted to human-readable names.

    interface EntityNamingOptions {
        additionalDomainWords?: string[];
        normalizeAllCaps?: boolean;
        splitCompoundWords?: boolean;
    }
    Index

    Properties

    additionalDomainWords?: string[]

    Additional domain-specific words for the compound word splitter

    normalizeAllCaps?: boolean

    Normalize ALL CAPS names to Title Case (e.g., PAYMENT -> Payment). Default: true

    splitCompoundWords?: boolean

    Attempt to split compound ALL CAPS words using dictionary matching (e.g., INDIVIDUALDESIGNATION -> Individual Designation). Default: true