skopix 2.0.95 → 2.0.96

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.
@@ -416,7 +416,7 @@ export async function dashboardCommand(options) {
416
416
  const users = teamMode.db.listUsers().map(u => ({
417
417
  id: u.id, email: u.email, name: u.name,
418
418
  role: u.role, status: u.status,
419
- created_at: u.created_at, last_login_at: u.last_login_at,
419
+ created_at: u.created_at, last_login_at: u.last_login_at, mfa_enabled: u.mfa_enabled,
420
420
  }));
421
421
  sendJSON(res, 200, users);
422
422
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skopix",
3
- "version": "2.0.95",
3
+ "version": "2.0.96",
4
4
  "description": "Browser-based QA tool — record tests by using your app, replay them deterministically, generate Playwright code automatically",
5
5
  "main": "cli/index.js",
6
6
  "bin": {