Plugins: add device pairing and phone controls

This commit is contained in:
Mariano Belinky
2026-02-07 22:59:12 +01:00
parent ea0ad9fbcb
commit 2ecc995617
7 changed files with 1002 additions and 1 deletions

View File

@@ -13,7 +13,11 @@ export type NormalizedPluginsConfig = {
entries: Record<string, { enabled?: boolean; config?: unknown }>;
};
export const BUNDLED_ENABLED_BY_DEFAULT = new Set<string>();
export const BUNDLED_ENABLED_BY_DEFAULT = new Set<string>([
"device-pair",
"phone-control",
"talk-voice",
]);
const normalizeList = (value: unknown): string[] => {
if (!Array.isArray(value)) {