@hienlh/ppm 0.13.79 → 0.13.80

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.
@@ -71,4 +71,4 @@ This skill covers the `ppm` CLI, its HTTP API, and its config DB. It does **not*
71
71
  - Third-party extensions (inspect via `ppm ext list`).
72
72
  - The Claude Agent SDK internals (separate skill).
73
73
 
74
- <!-- Generated for PPM v0.13.79 at build time. Re-run `ppm export skill --install` to refresh. -->
74
+ <!-- Generated for PPM v0.13.80 at build time. Re-run `ppm export skill --install` to refresh. -->
@@ -206,4 +206,4 @@ _Base URL: `http://localhost:8080` (default; override via `ppm config set port <
206
206
  - `ws://<host>/ws/terminal` — PTY terminal multiplexer
207
207
  - `ws://<host>/ws/extensions` — extension host channel
208
208
 
209
- <!-- Generated from src/server/routes/ for PPM v0.13.79 -->
209
+ <!-- Generated from src/server/routes/ for PPM v0.13.80 -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hienlh/ppm",
3
- "version": "0.13.79",
3
+ "version": "0.13.80",
4
4
  "description": "Personal Project Manager — mobile-first web IDE with AI assistance",
5
5
  "author": "hienlh",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
File without changes
@@ -150,11 +150,12 @@ export function sendNotification(payload: {
150
150
  sessionTitle?: string;
151
151
  notificationType: "done" | "approval_request" | "question";
152
152
  }): void {
153
- send({
153
+ const msg: NotificationMsg = {
154
154
  type: "notification",
155
155
  ...payload,
156
156
  timestamp: new Date().toISOString(),
157
- } as NotificationMsg);
157
+ };
158
+ send(msg);
158
159
  }
159
160
 
160
161
  // ─── Internal ───────────────────────────────────────
@@ -83,14 +83,6 @@ function runMigrations(database: Database): void {
83
83
  created_at TEXT DEFAULT (datetime('now'))
84
84
  );
85
85
 
86
- CREATE TABLE IF NOT EXISTS push_subscriptions (
87
- endpoint TEXT PRIMARY KEY,
88
- p256dh TEXT NOT NULL,
89
- auth TEXT NOT NULL,
90
- expiration_time TEXT,
91
- created_at TEXT DEFAULT (datetime('now'))
92
- );
93
-
94
86
  CREATE TABLE IF NOT EXISTS session_logs (
95
87
  id INTEGER PRIMARY KEY AUTOINCREMENT,
96
88
  session_id TEXT NOT NULL,