codexuse-cli 3.7.0 → 3.7.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/index.js CHANGED
@@ -2383,8 +2383,7 @@ function createDefaultAppState() {
2383
2383
  welcomeResumeStep: null,
2384
2384
  milestones: {
2385
2385
  firstProfileAdded: false,
2386
- secondProfileAdded: false,
2387
- analyticsViewed: false
2386
+ secondProfileAdded: false
2388
2387
  },
2389
2388
  sessionCount: 0,
2390
2389
  nudgeCooldowns: {},
@@ -2576,9 +2575,6 @@ function normalizeAppState(raw) {
2576
2575
  if (typeof merged.ui.onboarding.milestones.secondProfileAdded !== "boolean") {
2577
2576
  merged.ui.onboarding.milestones.secondProfileAdded = false;
2578
2577
  }
2579
- if (typeof merged.ui.onboarding.milestones.analyticsViewed !== "boolean") {
2580
- merged.ui.onboarding.milestones.analyticsViewed = false;
2581
- }
2582
2578
  if (!Number.isFinite(merged.ui.onboarding.sessionCount)) {
2583
2579
  merged.ui.onboarding.sessionCount = 0;
2584
2580
  }
@@ -10253,7 +10249,7 @@ async function ensureCliStorageReady() {
10253
10249
  }
10254
10250
 
10255
10251
  // src/app/main.ts
10256
- var VERSION = true ? "3.7.0" : "0.0.0";
10252
+ var VERSION = true ? "3.7.1" : "0.0.0";
10257
10253
  async function runCli() {
10258
10254
  const args = process.argv.slice(2);
10259
10255
  if (args.length === 0) {