test(memory): keep inventory helper types internal

This commit is contained in:
Galin Iliev
2026-08-09 23:57:11 -07:00
parent 5b7ecccfae
commit 3c3aa24957
@@ -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"