From 738cf18a0f17b3076d2ff0d634540494da6571f4 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 2 May 2026 11:01:21 +0100 Subject: [PATCH] fix(plugins): align loader cache scope typing --- src/plugins/loader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/loader.ts b/src/plugins/loader.ts index d8c1070ef5e..27ca6a881a7 100644 --- a/src/plugins/loader.ts +++ b/src/plugins/loader.ts @@ -554,7 +554,7 @@ function setCachedPluginRegistry( function getReusableCachedPluginRegistry(params: { cacheKey: string; - onlyPluginIds?: string[]; + onlyPluginIds: string[] | undefined; runtimeSubagentMode: "default" | "explicit" | "gateway-bindable"; options: PluginLoadOptions; }):