From 62aff372ec822b21806e7cedd5b00c3d7ea9de25 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Fri, 7 Aug 2026 06:25:09 +0200 Subject: [PATCH] fix(plugins): keep loader authority type private --- src/plugins/loader-module-runtime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/loader-module-runtime.ts b/src/plugins/loader-module-runtime.ts index 6e1a18d97cb0..fff1d6bf5644 100644 --- a/src/plugins/loader-module-runtime.ts +++ b/src/plugins/loader-module-runtime.ts @@ -20,7 +20,7 @@ import { } from "./sdk-alias.js"; import type { OpenClawPluginApi, OpenClawPluginDefinition } from "./types.js"; -export type PluginModuleLoadAuthority = { +type PluginModuleLoadAuthority = { trustedInstalledPrivateSdkOwner?: string; };