@owloops/browserbird 1.4.17 → 1.4.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/dist/index.mjs
CHANGED
|
@@ -122,8 +122,8 @@ function unknownSubcommand(subcommand, command, validCommands) {
|
|
|
122
122
|
/** @fileoverview ASCII banner displayed on daemon startup and in help text. */
|
|
123
123
|
const pkg = createRequire(import.meta.url)("../package.json");
|
|
124
124
|
const buildInfo = [];
|
|
125
|
-
buildInfo.push(`commit: ${"
|
|
126
|
-
buildInfo.push(`built: 2026-03-15T22:
|
|
125
|
+
buildInfo.push(`commit: ${"4fc7746795e7ecf4c12cfc343e72e2bebdf86024".substring(0, 7)}`);
|
|
126
|
+
buildInfo.push(`built: 2026-03-15T22:51:03+04:00`);
|
|
127
127
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
128
128
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
129
129
|
const BIRD = [
|
|
@@ -1560,6 +1560,13 @@ function buildRoutes(getConfig, startedAt, getDeps, options) {
|
|
|
1560
1560
|
novncHost,
|
|
1561
1561
|
novncPort: config.browser.novncPort
|
|
1562
1562
|
},
|
|
1563
|
+
secrets: {
|
|
1564
|
+
anthropic: maskSecret(process.env["CLAUDE_CODE_OAUTH_TOKEN"] || process.env["ANTHROPIC_API_KEY"]),
|
|
1565
|
+
slack: {
|
|
1566
|
+
botToken: maskSecret(process.env["SLACK_BOT_TOKEN"]),
|
|
1567
|
+
appToken: maskSecret(process.env["SLACK_APP_TOKEN"])
|
|
1568
|
+
}
|
|
1569
|
+
},
|
|
1563
1570
|
doctor
|
|
1564
1571
|
});
|
|
1565
1572
|
}
|