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.
- package/dist/lifeos.mjs +1 -1
- 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}`);
|