cbrowser 16.1.0 → 16.3.0
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/dist/cli.js +3 -0
- package/dist/cli.js.map +1 -1
- package/dist/stealth/index.d.ts +1 -0
- package/dist/stealth/index.d.ts.map +1 -1
- package/dist/stealth/index.js +2 -0
- package/dist/stealth/index.js.map +1 -1
- package/dist/stealth/loader.d.ts +60 -0
- package/dist/stealth/loader.d.ts.map +1 -0
- package/dist/stealth/loader.js +139 -0
- package/dist/stealth/loader.js.map +1 -0
- package/docs/ENTERPRISE-INTEGRATION.md +244 -0
- package/package.json +6 -1
package/dist/cli.js
CHANGED
|
@@ -31,6 +31,7 @@ import { startMcpServer } from "./mcp-server.js";
|
|
|
31
31
|
import { startRemoteMcpServer } from "./mcp-server-remote.js";
|
|
32
32
|
import { startDaemon, stopDaemon, getDaemonStatus, isDaemonRunning, sendToDaemon, runDaemonServer } from "./daemon.js";
|
|
33
33
|
import { getStatusInfo, formatStatus, getDataDir } from "./config.js";
|
|
34
|
+
import { printEnterpriseStatus } from "./stealth/index.js";
|
|
34
35
|
import { runCognitiveJourney, getAnthropicApiKey, setAnthropicApiKey, removeAnthropicApiKey, isApiKeyConfigured, } from "./cognitive/index.js";
|
|
35
36
|
// Version from package.json - single source of truth
|
|
36
37
|
import { VERSION } from "./version.js";
|
|
@@ -984,6 +985,8 @@ async function main() {
|
|
|
984
985
|
// VERSION is imported from version.ts which reads from package.json
|
|
985
986
|
const info = await getStatusInfo(VERSION);
|
|
986
987
|
console.log(formatStatus(info));
|
|
988
|
+
console.log(""); // Blank line
|
|
989
|
+
await printEnterpriseStatus();
|
|
987
990
|
process.exit(0);
|
|
988
991
|
}
|
|
989
992
|
// Config command - runs before browser instantiation
|