@owloops/browserbird 1.1.4 → 1.1.5

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.
Files changed (2) hide show
  1. package/dist/index.mjs +10 -2
  2. package/package.json +1 -1
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: ${"9a26d64771305792754153472ab1739d842aa17c".substring(0, 7)}`);
126
- buildInfo.push(`built: 2026-03-03T02:18:41+04:00`);
125
+ buildInfo.push(`commit: ${"c9b5494d6e5a7f575a4e3a9f1634acb8586253f4".substring(0, 7)}`);
126
+ buildInfo.push(`built: 2026-03-03T17:24:02+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"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owloops/browserbird",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Self-hosted AI agent for Slack with a real browser, a scheduler, and a web dashboard",
5
5
  "type": "module",
6
6
  "bin": {