@floomhq/floom 1.0.31 → 1.0.32

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/lib/api.js CHANGED
@@ -4,7 +4,7 @@ import { friendlyHttp, friendlyNetwork, FloomError } from "../errors.js";
4
4
  * patterns but throws FloomError instances so the CLI's printError gives
5
5
  * users a clean message instead of a stack trace.
6
6
  */
7
- export const DEFAULT_TIMEOUT_MS = 15_000;
7
+ export const DEFAULT_TIMEOUT_MS = 60_000;
8
8
  export async function floomFetch(url, action, opts = {}) {
9
9
  const headers = { ...(opts.headers ?? {}) };
10
10
  if (opts.token)
@@ -5,7 +5,7 @@ import { CONFIG_DIR } from "./config.js";
5
5
  const MANIFEST_VERSION = 1;
6
6
  const MANIFEST_PATH = join(CONFIG_DIR, "sync-manifest.json");
7
7
  const LOCK_PATH = join(CONFIG_DIR, "sync.lock");
8
- const LOCK_TIMEOUT_MS = 15_000;
8
+ const LOCK_TIMEOUT_MS = 60_000;
9
9
  const LOCK_STALE_MS = 5 * 60_000;
10
10
  const SLUG_RE = /^[A-Za-z0-9_-]{1,128}$/;
11
11
  const FD_PATH_ROOT = "/proc/self/fd";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/floom",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "Sync AI skills across agents and machines.",
5
5
  "license": "MIT",
6
6
  "type": "module",