fluxy-bot 0.3.16 → 0.3.18

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluxy-bot",
3
- "version": "0.3.16",
3
+ "version": "0.3.18",
4
4
  "description": "Self-hosted AI bot — run your own AI assistant from anywhere",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -150,6 +150,7 @@ export async function startSupervisor() {
150
150
 
151
151
  // HTTP server — proxies to Vite dev servers + worker API
152
152
  const server = http.createServer(async (req, res) => {
153
+ if (req.method === 'POST') console.log(`[supervisor] POST received: ${req.url}`);
153
154
  // Fluxy widget — served directly (not part of Vite build)
154
155
  if (req.url === '/fluxy/widget.js') {
155
156
  console.log('[supervisor] Serving /fluxy/widget.js directly');
@@ -1,4 +1,3 @@
1
1
  // Minimal service worker — required for PWA installability
2
2
  self.addEventListener('install', () => self.skipWaiting());
3
3
  self.addEventListener('activate', (e) => e.waitUntil(self.clients.claim()));
4
- self.addEventListener('fetch', () => {});