@remnic/server 9.3.768 → 9.3.770

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/README.md CHANGED
@@ -45,6 +45,8 @@ enables the admin console explicitly and serves it at `/engram/ui/`. Package
45
45
  installs keep the console disabled unless `server.adminConsoleEnabled` or
46
46
  `REMNIC_ADMIN_CONSOLE_ENABLED=true` is set with a public asset directory.
47
47
 
48
+ For the public ChatGPT developer-mode flow (Tailscale Funnel / Cloudflare Tunnel + OAuth 2.1 with local operator approval), see [docs/integration/chatgpt.md](../../docs/integration/chatgpt.md).
49
+
48
50
  The package also ships the legacy `engram-server` binary for compatibility.
49
51
  The bin wrappers are source-controlled so package managers can link them during
50
52
  workspace installs; release builds verify that both targets have Node shebangs
package/dist/index.d.ts CHANGED
@@ -26,6 +26,8 @@ interface ServerConfig {
26
26
  adminConsolePublicDir?: string;
27
27
  adminConsolePrefillToken?: boolean;
28
28
  readinessOverride?: boolean;
29
+ /** OAuth authorization-server facade for ChatGPT dev-mode apps (parsed by oauth.ts). */
30
+ oauth?: unknown;
29
31
  };
30
32
  }
31
33
  interface ParsedServerConfig {