@owloops/browserbird 1.1.4 → 1.1.6
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 +1 -1
- package/dist/index.mjs +10 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ The browser runs in **persistent** mode by default: logins and cookies are saved
|
|
|
46
46
|
|
|
47
47
|
### Railway
|
|
48
48
|
|
|
49
|
-
[](https://railway.com/deploy/browserbird)
|
|
49
|
+
[](https://railway.com/deploy/browserbird-1)
|
|
50
50
|
|
|
51
51
|
## Slack
|
|
52
52
|
|
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-
|
|
125
|
+
buildInfo.push(`commit: ${"d968d8cda4b67fafb161ec2519117ef0c81759a5".substring(0, 7)}`);
|
|
126
|
+
buildInfo.push(`built: 2026-03-03T17:35:53+04:00`);
|
|
127
127
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
128
128
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
129
129
|
const BIRD = [
|
|
@@ -981,6 +981,14 @@ function validateConfigPatch(body) {
|
|
|
981
981
|
}
|
|
982
982
|
function buildRoutes(getConfig, startedAt, getDeps, options) {
|
|
983
983
|
return [
|
|
984
|
+
{
|
|
985
|
+
method: "GET",
|
|
986
|
+
pattern: pathToRegex("/api/healthcheck"),
|
|
987
|
+
skipAuth: true,
|
|
988
|
+
handler(_req, res) {
|
|
989
|
+
json(res, { ok: true });
|
|
990
|
+
}
|
|
991
|
+
},
|
|
984
992
|
{
|
|
985
993
|
method: "GET",
|
|
986
994
|
pattern: pathToRegex("/api/auth/check"),
|