lifeos-cli 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/dist/lifeos.mjs +1 -1
  2. package/package.json +1 -1
package/dist/lifeos.mjs CHANGED
@@ -3943,7 +3943,7 @@ program2.command("whoami").description("Show current authenticated user").action
3943
3943
  return;
3944
3944
  }
3945
3945
  const u = res.data;
3946
- console.log(`ID: ${u.id}`);
3946
+ console.log(`ID: ${u._id ?? u.id}`);
3947
3947
  console.log(`Email: ${u.email}`);
3948
3948
  console.log(`Name: ${u.name ?? "-"}`);
3949
3949
  console.log(`Timezone: ${u.timezone}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lifeos-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "LifeOS CLI — manage your life operating system from the terminal",
5
5
  "type": "module",
6
6
  "license": "MIT",