@bakapiano/ccsm 0.18.0 → 0.18.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/package.json +1 -1
- package/server.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bakapiano/ccsm",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.1",
|
|
4
4
|
"description": "Claude Code Session Manager — Windows web UI to manage many concurrent claude sessions: live list, snapshot/restore, focus existing window, new session in an isolated workspace with repo clones",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "server.js",
|
package/server.js
CHANGED
|
@@ -66,7 +66,7 @@ app.use((req, res, next) => {
|
|
|
66
66
|
if (origin && ALLOWED_ORIGINS.has(origin)) {
|
|
67
67
|
res.setHeader('Access-Control-Allow-Origin', origin);
|
|
68
68
|
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
|
|
69
|
-
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
|
69
|
+
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization, X-Device-Id');
|
|
70
70
|
res.setHeader('Vary', 'Origin');
|
|
71
71
|
}
|
|
72
72
|
if (req.method === 'OPTIONS') return res.sendStatus(204);
|