gencow 0.1.47 → 0.1.48

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": "gencow",
3
- "version": "0.1.47",
3
+ "version": "0.1.48",
4
4
  "description": "Gencow — AI Backend Engine",
5
5
  "type": "module",
6
6
  "bin": {
package/server/index.js CHANGED
@@ -71840,7 +71840,6 @@ if (IS_BAAS) {
71840
71840
  }
71841
71841
  });
71842
71842
  }
71843
- app.on(["POST", "GET"], "/api/auth/**", betterAuthHandler);
71844
71843
  async function main() {
71845
71844
  const functionsPath = process.env.GENCOW_FUNCTIONS ? resolve4(process.cwd(), process.env.GENCOW_FUNCTIONS) : resolve4(import.meta.dirname, "./example/functions");
71846
71845
  console.log(`[gencow] Loading functions from: ${functionsPath}`);
@@ -72022,6 +72021,7 @@ async function main() {
72022
72021
  console.error("[platform] Auto-recovery failed:", msg);
72023
72022
  }
72024
72023
  }
72024
+ app.on(["POST", "GET"], "/api/auth/**", betterAuthHandler);
72025
72025
  appModule.setDb?.(db);
72026
72026
  const { scheduler } = appModule;
72027
72027
  scheduler?.start?.();