From a268e6b2b99fff1efaf79b2a90bd37862511751c Mon Sep 17 00:00:00 2001 From: Jefferson Nunn Date: Mon, 23 Mar 2026 10:56:24 -0500 Subject: [PATCH] Fix stringEnum import path stringEnum is exported from openclaw/plugin-sdk/core, not openclaw/plugin-sdk. This was causing TypeError: (0 , _pluginSdk.stringEnum) is not a function when the plugin tried to register. --- tools/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/store.ts b/tools/store.ts index 0d1b93b..2e9a3ec 100644 --- a/tools/store.ts +++ b/tools/store.ts @@ -1,6 +1,6 @@ import { Type } from "@sinclair/typebox" import type { OpenClawPluginApi } from "openclaw/plugin-sdk" -import { stringEnum } from "openclaw/plugin-sdk" +import { stringEnum } from "openclaw/plugin-sdk/core" import type { SupermemoryClient } from "../client.ts" import type { SupermemoryConfig } from "../config.ts" import { log } from "../logger.ts"