/** * HTTP owner scope enforcement for /tools/recall and /tools/memory_injection (Issue #664) */ import type { Request, Response, NextFunction } from 'express'; /** * strict: owner_id 미지정 시 agentId로 자동 필터; agentId 없으면 400 * warn: 경고 로그 후 레거시(전체) 조회 허용 * off: 강제 없음 */ export declare function createOwnerScopeMiddleware(): (req: Request, res: Response, next: NextFunction) => void; //# sourceMappingURL=owner-scope.middleware.d.ts.map