@openclaw/gateway-protocol 2026.7.2-beta.7 → 2026.8.1-beta.1

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/CHANGELOG.md CHANGED
@@ -11,6 +11,7 @@ version and the additive schema surface. Dates are authoring dates (2026).
11
11
  - Rename structured-question item `id` to `questionId` and flatten keyed answer arrays.
12
12
  - Slim worker and session-catalog payloads to the active wire contract.
13
13
  - Remove dead protocol surfaces and add since-vintage metadata to retained schemas and methods.
14
+ - Add optional `step` on `SystemAgentChatResult` carrying the full awaited wizard step.
14
15
 
15
16
  ## Protocol v4 (current)
16
17
 
@@ -126,7 +127,8 @@ Enhancement-only month (no new schema modules):
126
127
  - Add cron event triggers via polled condition-watcher scripts (#101195) and native
127
128
  mobile Automations parity (#106355).
128
129
  - Add system-agent conversational onboarding (#99935); rename `crestodian.*` methods to
129
- `openclaw.chat` / `openclaw.setup.*` (2026-07-14, `a6a0716`).
130
+ `openclaw.chat` / `openclaw.setup.*` (2026-07-14, `a6a0716`); add typed hosted-wizard
131
+ steps and answers to `openclaw.chat` (#114631).
130
132
  - Add typed structured questions / `ask_user` with live option cards (#109922, #110242)
131
133
  and the questions schema module.
132
134
  - Add ui-command / screen-tool Control UI layout control and capability-gated
@@ -1,4 +1,4 @@
1
- import { a as EventFrame, c as GatewayFrame, f as RequestFrame, m as ResponseFrame, r as ErrorShape, t as ConnectParams, u as HelloOk } from "./frames-BPnee-QV.mjs";
1
+ import { a as EventFrame, c as GatewayFrame, f as RequestFrame, m as ResponseFrame, r as ErrorShape, t as ConnectParams, u as HelloOk } from "./frames-C2oAsD4y.mjs";
2
2
 
3
3
  //#region src/frame-guards.d.ts
4
4
  declare function isGatewayEventFrame(value: unknown): value is EventFrame;
@@ -104,6 +104,7 @@ declare const HelloOkSchema: Type.TObject<{
104
104
  durationMs: Type.TOptional<Type.TInteger>;
105
105
  eventLoop: Type.TOptional<Type.TObject<{
106
106
  degraded: Type.TBoolean;
107
+ degradedSinceMs: Type.TOptional<Type.TUnion<[Type.TInteger, Type.TNull]>>;
107
108
  reasons: Type.TArray<Type.TUnion<[Type.TLiteral<"event_loop_delay">, Type.TLiteral<"event_loop_utilization">, Type.TLiteral<"cpu">]>>;
108
109
  intervalMs: Type.TNumber;
109
110
  delayP99Ms: Type.TNumber;
@@ -257,6 +258,10 @@ declare const HelloOkSchema: Type.TObject<{
257
258
  maxPayload: Type.TInteger;
258
259
  maxBufferedBytes: Type.TInteger;
259
260
  tickIntervalMs: Type.TInteger;
261
+ attachments: Type.TOptional<Type.TObject<{
262
+ maxBytes: Type.TInteger;
263
+ maxImageBytes: Type.TInteger;
264
+ }>>;
260
265
  allowedSessionVisibilities: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>>;
261
266
  hasMultipleSessionSharingIdentities: Type.TOptional<Type.TBoolean>;
262
267
  }>;