AutoBE
    Preparing search index...

    Interface AutoBeInterfaceSchemaRefactor

    DTO type name refactoring operation.

    Fixes names violating the rule: ALL words from the Prisma table name MUST be preserved. The orchestrator automatically renames all variants (.ICreate, .IUpdate, .ISummary, IPage*).

    Common violations: ISaleIShoppingSale (prefix omission), IBbsCommentIBbsArticleComment (intermediate word omission).

    Samchon

    interface AutoBeInterfaceSchemaRefactor {
        from: string;
        to: string;
    }
    Index

    Properties

    Properties

    from: string

    Current INCORRECT base type name (e.g., "ISale" when table is "shopping_sales").

    to: string

    CORRECT base type name preserving ALL table words as PascalCase with "I" prefix (e.g., "IShoppingSale").