@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.
- package/assets/skills/ppm/SKILL.md +1 -1
- package/assets/skills/ppm/references/http-api.md +1 -1
- package/package.json +1 -1
- package/src/index.ts +0 -0
- package/src/services/cloud-ws.service.ts +3 -2
- package/src/services/db.service.ts +0 -8
- package/bun.lock +0 -2142
- package/bunfig.toml +0 -2
|
@@ -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.
|
|
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.
|
|
209
|
+
<!-- Generated from src/server/routes/ for PPM v0.13.80 -->
|
package/package.json
CHANGED
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
|
-
|
|
153
|
+
const msg: NotificationMsg = {
|
|
154
154
|
type: "notification",
|
|
155
155
|
...payload,
|
|
156
156
|
timestamp: new Date().toISOString(),
|
|
157
|
-
}
|
|
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,
|