glassbox 0.9.9 → 0.9.10

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/cli.js CHANGED
@@ -3131,7 +3131,8 @@ aiConfigRoutes.get("/key-status", (c) => {
3131
3131
  const status = {};
3132
3132
  for (const platform of platforms) {
3133
3133
  const { source } = resolveAPIKey(platform);
3134
- status[platform] = { configured: source !== null, source };
3134
+ const entry = { configured: source !== null, source };
3135
+ status[platform] = entry;
3135
3136
  }
3136
3137
  return c.json({
3137
3138
  status,
@@ -4452,7 +4453,7 @@ reviewsRoutes.get("/reviews", async (c) => {
4452
4453
  reviewsRoutes.get("/review", async (c) => {
4453
4454
  const reviewId = resolveReviewId(c);
4454
4455
  const review = await getReview(reviewId);
4455
- return c.json(review);
4456
+ return c.json(review ?? null);
4456
4457
  });
4457
4458
  reviewsRoutes.post("/review/complete", async (c) => {
4458
4459
  const reviewId = resolveReviewId(c);
@@ -6106,6 +6107,7 @@ themeApiRoutes.get("/", (c) => {
6106
6107
  id: t.id,
6107
6108
  name: t.name,
6108
6109
  builtIn: t.builtIn,
6110
+ ...t.builtIn ? {} : { baseTheme: t.baseTheme },
6109
6111
  colors: t.colors
6110
6112
  })),
6111
6113
  activeId
@@ -6668,7 +6670,7 @@ async function main() {
6668
6670
  console.log("AI service test mode enabled \u2014 using mock AI responses");
6669
6671
  }
6670
6672
  if (debug) {
6671
- console.log(`[debug] Build timestamp: ${"2026-05-22T03:53:54.684Z"}`);
6673
+ console.log(`[debug] Build timestamp: ${"2026-05-22T06:46:43.267Z"}`);
6672
6674
  }
6673
6675
  if (projectDir !== null) {
6674
6676
  process.chdir(projectDir);