AutoBE
    Preparing search index...

    Interface AutoBeDatabaseGroupReviseUpdate

    Request to update an existing group in the component skeleton list.

    Use this when a group has issues that need correction:

    • Namespace naming convention violations
    • Filename format issues
    • Incorrect kind assignment (authorization vs domain)
    • Domain scope needs adjustment (thinking/review/rationale updates)

    Michael

    interface AutoBeDatabaseGroupReviseUpdate {
        group: AutoBeDatabaseGroup;
        originalNamespace: string;
        reason: string;
        type: "update";
    }
    Index

    Properties

    The updated group definition.

    Must be a complete AutoBeDatabaseGroup with all required fields.

    originalNamespace: string

    The namespace of the original group to modify.

    Must match exactly an existing group's namespace.

    reason: string

    Brief, concise reason for this update.

    Explain what issue this fixes and why the change is necessary.

    IMPORTANT: Keep it concise - one or two sentences maximum

    type: "update"

    Type discriminator indicating this is an update operation.