mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 16:51:51 +00:00
* refactor: extract media and acp core packages * refactor: remove relocated media and acp sources * build: wire new core packages into dependency checks * test: alias new core packages in vitest * build: keep media sniffer runtime dependency * docs: refresh plugin sdk api baseline * fix: keep normalized proposal queries non-empty * test: keep channel timer tests isolated * fix: keep rebased plugin checks green * fix: preserve sms numeric allowlist entries * test: harden exec foreground timeout failure * test: remove duplicate skill workshop assertion * fix: remove channel config lint suppression * test: refresh lint suppression allowlist
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
// Narrow media MIME helper surface for plugins that do not need the full media runtime.
|
|
|
|
export {
|
|
detectMime,
|
|
extensionForMime,
|
|
getFileExtension,
|
|
mimeTypeFromFilePath,
|
|
normalizeMimeType,
|
|
} from "@openclaw/media-core/mime";
|
|
export { mediaKindFromMime, type MediaKind } from "@openclaw/media-core/constants";
|