@alfe.ai/openclaw-voice 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin.cjs +1 -4
- package/dist/plugin.js +1 -4
- package/package.json +1 -1
package/dist/plugin.cjs
CHANGED
|
@@ -140,10 +140,7 @@ const plugin = {
|
|
|
140
140
|
version: "0.2.0",
|
|
141
141
|
activate(api) {
|
|
142
142
|
const log = api.logger;
|
|
143
|
-
if (api.registrationMode
|
|
144
|
-
log.debug("CLI metadata mode — skipping voice resource init");
|
|
145
|
-
return;
|
|
146
|
-
}
|
|
143
|
+
if (api.registrationMode && api.registrationMode !== "full") return;
|
|
147
144
|
for (const tool of voiceTools) api.registerTool(tool);
|
|
148
145
|
log.info(`Registered ${String(voiceTools.length)} voice tools: ${voiceTools.map((t) => t.name).join(", ")}`);
|
|
149
146
|
if (!globalThis.__voiceGatewayActivated) {
|
package/dist/plugin.js
CHANGED
|
@@ -140,10 +140,7 @@ const plugin = {
|
|
|
140
140
|
version: "0.2.0",
|
|
141
141
|
activate(api) {
|
|
142
142
|
const log = api.logger;
|
|
143
|
-
if (api.registrationMode
|
|
144
|
-
log.debug("CLI metadata mode — skipping voice resource init");
|
|
145
|
-
return;
|
|
146
|
-
}
|
|
143
|
+
if (api.registrationMode && api.registrationMode !== "full") return;
|
|
147
144
|
for (const tool of voiceTools) api.registerTool(tool);
|
|
148
145
|
log.info(`Registered ${String(voiceTools.length)} voice tools: ${voiceTools.map((t) => t.name).join(", ")}`);
|
|
149
146
|
if (!globalThis.__voiceGatewayActivated) {
|