duclaw-cli 1.7.2 → 1.7.3

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/bundle.js CHANGED
@@ -30242,7 +30242,7 @@ function printHelp() {
30242
30242
  `);
30243
30243
  }
30244
30244
  function printVersion() {
30245
- console.log(`duclaw-cli v${true ? "1.7.2" : "unknown"}`);
30245
+ console.log(`duclaw-cli v${true ? "1.7.3" : "unknown"}`);
30246
30246
  }
30247
30247
  function getDuclawTemplate() {
30248
30248
  return {
@@ -46343,7 +46343,7 @@ var systemRoutes = new Hono2();
46343
46343
  var startTime = Date.now();
46344
46344
  systemRoutes.get("/system/info", (c) => {
46345
46345
  return c.json({
46346
- version: true ? "1.7.2" : "unknown",
46346
+ version: true ? "1.7.3" : "unknown",
46347
46347
  uptime: Math.floor((Date.now() - startTime) / 1e3),
46348
46348
  env: process.env.NODE_ENV || "development",
46349
46349
  nodeVersion: process.version