mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:50:43 +00:00
* fix(media): remove express from media host * fix(media): harden media host responses * fix(msteams): stage express runtime dependency * fix(browser): align profile facade exports * fix(msteams): keep setup entry narrow * fix(types): satisfy extension setup gates * fix(msteams): use generic setup config type
14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./setup-plugin-api.js",
|
|
exportName: "msteamsSetupPlugin",
|
|
},
|
|
secrets: {
|
|
specifier: "./secret-contract-api.js",
|
|
exportName: "channelSecrets",
|
|
},
|
|
});
|