@alfe.ai/openclaw-database 0.0.7 → 0.0.8
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.d.cts +1 -0
- package/dist/plugin.d.ts +1 -0
- package/dist/plugin2.cjs +3 -3
- package/dist/plugin2.js +3 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/plugin.d.cts
CHANGED
package/dist/plugin.d.ts
CHANGED
package/dist/plugin2.cjs
CHANGED
|
@@ -484,12 +484,12 @@ function reportAudit(apiUrl, apiKey, entry) {
|
|
|
484
484
|
}
|
|
485
485
|
const plugin = {
|
|
486
486
|
id: "@alfe.ai/openclaw-database",
|
|
487
|
-
name: "Database",
|
|
487
|
+
name: "Alfe Database",
|
|
488
488
|
version: "0.0.1",
|
|
489
489
|
activate(api) {
|
|
490
490
|
const log = api.logger;
|
|
491
|
-
if (
|
|
492
|
-
log.debug("
|
|
491
|
+
if (api.registrationMode === "cli-metadata") {
|
|
492
|
+
log.debug("CLI metadata mode — skipping database init");
|
|
493
493
|
return;
|
|
494
494
|
}
|
|
495
495
|
log.info("Database plugin activating...");
|
package/dist/plugin2.js
CHANGED
|
@@ -484,12 +484,12 @@ function reportAudit(apiUrl, apiKey, entry) {
|
|
|
484
484
|
}
|
|
485
485
|
const plugin = {
|
|
486
486
|
id: "@alfe.ai/openclaw-database",
|
|
487
|
-
name: "Database",
|
|
487
|
+
name: "Alfe Database",
|
|
488
488
|
version: "0.0.1",
|
|
489
489
|
activate(api) {
|
|
490
490
|
const log = api.logger;
|
|
491
|
-
if (
|
|
492
|
-
log.debug("
|
|
491
|
+
if (api.registrationMode === "cli-metadata") {
|
|
492
|
+
log.debug("CLI metadata mode — skipping database init");
|
|
493
493
|
return;
|
|
494
494
|
}
|
|
495
495
|
log.info("Database plugin activating...");
|
package/openclaw.plugin.json
CHANGED