From 3c3aa249579bc2fb008aac360542e28e3ba52aac Mon Sep 17 00:00:00 2001 From: Galin Iliev Date: Sun, 9 Aug 2026 23:57:11 -0700 Subject: [PATCH] test(memory): keep inventory helper types internal --- .../memory-authorization-path-inventory.test-support.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/plugins/memory-authorization-path-inventory.test-support.ts b/src/plugins/memory-authorization-path-inventory.test-support.ts index 54ee289e5351..d6b9fdf314d7 100644 --- a/src/plugins/memory-authorization-path-inventory.test-support.ts +++ b/src/plugins/memory-authorization-path-inventory.test-support.ts @@ -6,10 +6,9 @@ export const MEMORY_AUTHORIZATION_PATH_DISPOSITIONS = [ "operator-only-authenticated", ] as const; -export type MemoryAuthorizationPathDisposition = - (typeof MEMORY_AUTHORIZATION_PATH_DISPOSITIONS)[number]; -export type MemoryAuthorizationPathDirection = "control" | "ingress" | "egress" | "derive"; -export type MemoryAuthorizationPathOwner = +type MemoryAuthorizationPathDisposition = (typeof MEMORY_AUTHORIZATION_PATH_DISPOSITIONS)[number]; +type MemoryAuthorizationPathDirection = "control" | "ingress" | "egress" | "derive"; +type MemoryAuthorizationPathOwner = | "core-access-host" | "core-agent-runtime" | "core-session-runtime"