@abitat_reece/cli 0.1.3 → 0.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.
package/dist/auth.js CHANGED
@@ -111,7 +111,7 @@ async function pollDeviceLogin(apiUrl, deviceLoginId, fetchFn) {
111
111
  return parsePollResponse(await response.json());
112
112
  }
113
113
  function isTransientHostedStatus(status) {
114
- return status === 429 || status === 502 || status === 503 || status === 504;
114
+ return status === 429 || status === 500 || status === 502 || status === 503 || status === 504;
115
115
  }
116
116
  function isTransientFetchError(error) {
117
117
  return error instanceof TypeError;
package/dist/iphone.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { setTimeout as delay } from "node:timers/promises";
2
- const DEFAULT_HOST_REGISTER_ATTEMPTS = 4;
2
+ const DEFAULT_HOST_REGISTER_ATTEMPTS = 8;
3
3
  const DEFAULT_HOST_REGISTER_RETRY_DELAY_MS = 1000;
4
4
  export function createIphoneStartupPlan(input) {
5
5
  return [
@@ -95,7 +95,7 @@ function trimTrailingSlash(value) {
95
95
  return value.replace(/\/+$/u, "");
96
96
  }
97
97
  function isTransientHostedStatus(status) {
98
- return status === 429 || status === 502 || status === 503 || status === 504;
98
+ return status === 429 || status === 500 || status === 502 || status === 503 || status === 504;
99
99
  }
100
100
  function isTransientFetchError(error) {
101
101
  return error instanceof TypeError;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@abitat_reece/cli",
3
3
  "private": false,
4
- "version": "0.1.3",
4
+ "version": "0.1.5",
5
5
  "description": "Remote Codex control from Mac and iPhone",
6
6
  "type": "module",
7
7
  "bin": {
@@ -15,7 +15,7 @@
15
15
  "node": ">=22"
16
16
  },
17
17
  "dependencies": {
18
- "@abitat_reece/host-daemon": "0.1.3"
18
+ "@abitat_reece/host-daemon": "0.1.5"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/node": "25.6.0",