mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-24 07:01:49 +00:00
fix(build): restore plugin-sdk and line compat after refactor
This commit is contained in:
@@ -13,4 +13,4 @@ export type {
|
||||
export { resolveApiKeyForProvider } from "../agents/model-auth.js";
|
||||
export { normalizeGoogleModelId } from "../agents/model-id-normalization.js";
|
||||
export { parseGeminiAuth } from "../infra/gemini-auth.js";
|
||||
export { OPENAI_DEFAULT_IMAGE_MODEL } from "../providers/openai-defaults.js";
|
||||
export { OPENAI_DEFAULT_IMAGE_MODEL } from "../plugins/provider-model-defaults.js";
|
||||
|
||||
@@ -17,6 +17,7 @@ export * from "../shared/text/auto-linked-file-ref.js";
|
||||
export * from "../shared/text/code-regions.js";
|
||||
export * from "../shared/text/reasoning-tags.js";
|
||||
export * from "../shared/text/strip-markdown.js";
|
||||
export * from "../shared/scoped-expiring-id-cache.js";
|
||||
export * from "../terminal/safe-text.js";
|
||||
export * from "../utils.js";
|
||||
export * from "../utils/chunk-items.js";
|
||||
|
||||
@@ -468,28 +468,6 @@ export const GENERATED_BUNDLED_PLUGIN_METADATA = [
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
dirName: "deepgram",
|
||||
idHint: "deepgram-media-understanding",
|
||||
source: {
|
||||
source: "./index.ts",
|
||||
built: "index.js",
|
||||
},
|
||||
packageName: "@openclaw/deepgram-media-understanding",
|
||||
packageVersion: "2026.3.14",
|
||||
packageDescription: "OpenClaw Deepgram media-understanding plugin",
|
||||
packageManifest: {
|
||||
extensions: ["./index.ts"],
|
||||
},
|
||||
manifest: {
|
||||
id: "deepgram",
|
||||
configSchema: {
|
||||
type: "object",
|
||||
additionalProperties: false,
|
||||
properties: {},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
dirName: "diagnostics-otel",
|
||||
idHint: "diagnostics-otel",
|
||||
@@ -1071,28 +1049,6 @@ export const GENERATED_BUNDLED_PLUGIN_METADATA = [
|
||||
channels: ["googlechat"],
|
||||
},
|
||||
},
|
||||
{
|
||||
dirName: "groq",
|
||||
idHint: "groq-media-understanding",
|
||||
source: {
|
||||
source: "./index.ts",
|
||||
built: "index.js",
|
||||
},
|
||||
packageName: "@openclaw/groq-media-understanding",
|
||||
packageVersion: "2026.3.14",
|
||||
packageDescription: "OpenClaw Groq media-understanding plugin",
|
||||
packageManifest: {
|
||||
extensions: ["./index.ts"],
|
||||
},
|
||||
manifest: {
|
||||
id: "groq",
|
||||
configSchema: {
|
||||
type: "object",
|
||||
additionalProperties: false,
|
||||
properties: {},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
dirName: "huggingface",
|
||||
idHint: "huggingface",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
export { monitorLineProvider } from "../../line/monitor.js";
|
||||
export { probeLineBot } from "../../line/probe.js";
|
||||
export {
|
||||
monitorLineProvider,
|
||||
probeLineBot,
|
||||
pushFlexMessage,
|
||||
pushLocationMessage,
|
||||
pushMessageLine,
|
||||
@@ -8,4 +8,4 @@ export {
|
||||
pushTemplateMessage,
|
||||
pushTextMessageWithQuickReplies,
|
||||
sendMessageLine,
|
||||
} from "../../line/send.js";
|
||||
} from "../../../extensions/line/runtime-api.js";
|
||||
|
||||
Reference in New Issue
Block a user