@crossworks/client-types 0.232.124 → 0.232.127

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/package.json +1 -1
  2. package/src/index.ts +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossworks/client-types",
3
- "version": "0.232.124",
3
+ "version": "0.232.127",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
package/src/index.ts CHANGED
@@ -2100,6 +2100,11 @@ export type ComposeStatus = {
2100
2100
  * stack, reported ok, and skipped the client stack with no error anywhere.
2101
2101
  * 'unknown' on any box still running that script — it reports no sha. */
2102
2102
  updater: { state: UpdaterScriptState; refresh: string | null };
2103
+ /** The front door (v0.232.126+): infra/caddy/Caddyfile is release-owned and
2104
+ * refreshed by the updater like compose. 'unknown' on a box whose updater
2105
+ * predates the field. A 'modified' Caddyfile means release-level front-door
2106
+ * changes are not arriving there; box routes belong in conf.d/. */
2107
+ caddy: { state: ComposeState; refresh: string | null };
2103
2108
  checkedAt: string | null;
2104
2109
  };
2105
2110