@agentdock/wire 0.0.67 → 0.0.69

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/machine.d.ts CHANGED
@@ -34,7 +34,7 @@ export declare const MachineSummarySchema: z.ZodObject<{
34
34
  supportedMethods: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
35
35
  /** Why the machine disconnected — 'upgrade-required' triggers UI upgrade prompts (RFC-037). */
36
36
  disconnectReason: z.ZodOptional<z.ZodEnum<["normal", "upgrade-required"]>>;
37
- /** Current upgrade state reported by the daemon (RFC-042). 'ready' = downloaded, waiting for session drain. */
37
+ /** Current upgrade state reported by the daemon (RFC-042). 'ready' = downloaded, swap pending. */
38
38
  upgradeStatus: z.ZodOptional<z.ZodEnum<["idle", "preflight", "downloading", "ready", "switching", "failed"]>>;
39
39
  /** Error message when upgradeStatus is 'failed' (RFC-042). */
40
40
  upgradeError: z.ZodOptional<z.ZodString>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentdock/wire",
3
- "version": "0.0.67",
3
+ "version": "0.0.69",
4
4
  "description": "Protocol definitions for AgentDock — Zod schemas, message formats, RPC types",
5
5
  "license": "UNLICENSED",
6
6
  "author": "CCPark",