# models/schema/auth.py """ LEGACY LOCATION — re-exports from canonical location. All auth schemas have been moved to app/modules/tenancy/schemas/auth.py per MOD-019 (schemas belong in their module). This file provides backwards compatibility re-exports. New code should import from: app.modules.tenancy.schemas.auth Schemas use Pydantic Field and field_validator for input validation. """ from app.modules.tenancy.schemas.auth import ( # noqa: F401 LoginResponse, LogoutResponse, OwnedMerchantSummary, PasswordResetRequestResponse, PasswordResetResponse, PlatformSelectResponse, StoreMembershipSummary, StoreUserResponse, UserContext, UserCreate, UserDeleteResponse, UserDetailResponse, UserListResponse, UserLogin, UserResponse, UserSearchItem, UserSearchResponse, UserStatusToggleResponse, UserUpdate, )