@openclaw/gateway-protocol 2026.8.2 → 2026.9.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.
@@ -89,6 +89,7 @@ export declare const GATEWAY_CLIENT_CAPS: {
89
89
  readonly PLUGIN_APPROVALS: "plugin-approvals";
90
90
  readonly TASK_SUGGESTIONS: "task-suggestions";
91
91
  readonly TERMINAL_OFFSET_SEQ: "terminal-offset-seq";
92
+ readonly TERMINAL_SESSION_METADATA: "terminal-session-metadata";
92
93
  readonly TOOL_EVENTS: "tool-events";
93
94
  readonly UI_COMMANDS: "ui-commands";
94
95
  readonly USAGE_REFRESHING: "usage-refreshing";
@@ -52,6 +52,7 @@ const GATEWAY_CLIENT_CAPS = {
52
52
  PLUGIN_APPROVALS: "plugin-approvals",
53
53
  TASK_SUGGESTIONS: "task-suggestions",
54
54
  TERMINAL_OFFSET_SEQ: "terminal-offset-seq",
55
+ TERMINAL_SESSION_METADATA: "terminal-session-metadata",
55
56
  TOOL_EVENTS: "tool-events",
56
57
  UI_COMMANDS: "ui-commands",
57
58
  USAGE_REFRESHING: "usage-refreshing"
@@ -18,6 +18,8 @@ export declare const ConnectErrorDetailCodes: {
18
18
  readonly AUTH_TAILSCALE_WHOIS_FAILED: "AUTH_TAILSCALE_WHOIS_FAILED";
19
19
  readonly AUTH_TAILSCALE_IDENTITY_MISMATCH: "AUTH_TAILSCALE_IDENTITY_MISMATCH";
20
20
  readonly AUTH_IDENTITY_HEADER_REQUIRED: "AUTH_IDENTITY_HEADER_REQUIRED";
21
+ readonly AUTH_VERIFIED_USER_REQUIRED: "AUTH_VERIFIED_USER_REQUIRED";
22
+ readonly AUTHENTICATED_PROFILE_UNAVAILABLE: "AUTHENTICATED_PROFILE_UNAVAILABLE";
21
23
  readonly CONTROL_UI_BUILD_MISMATCH: "CONTROL_UI_BUILD_MISMATCH";
22
24
  readonly CONTROL_UI_ORIGIN_NOT_ALLOWED: "CONTROL_UI_ORIGIN_NOT_ALLOWED";
23
25
  readonly PROTOCOL_MISMATCH: "PROTOCOL_MISMATCH";
@@ -1,4 +1,4 @@
1
- import { n as isRecord } from "./record-coerce-BKHrZ46I.mjs";
1
+ import { r as isRecord } from "./record-coerce-BVp8Dr-B.mjs";
2
2
  import { n as normalizeOptionalProtocolString } from "./protocol-value-normalization-DcAoxLUs.mjs";
3
3
  //#region src/connect-error-details.ts
4
4
  /**
@@ -31,6 +31,8 @@ const ConnectErrorDetailCodes = {
31
31
  AUTH_TAILSCALE_WHOIS_FAILED: "AUTH_TAILSCALE_WHOIS_FAILED",
32
32
  AUTH_TAILSCALE_IDENTITY_MISMATCH: "AUTH_TAILSCALE_IDENTITY_MISMATCH",
33
33
  AUTH_IDENTITY_HEADER_REQUIRED: "AUTH_IDENTITY_HEADER_REQUIRED",
34
+ AUTH_VERIFIED_USER_REQUIRED: "AUTH_VERIFIED_USER_REQUIRED",
35
+ AUTHENTICATED_PROFILE_UNAVAILABLE: "AUTHENTICATED_PROFILE_UNAVAILABLE",
34
36
  CONTROL_UI_BUILD_MISMATCH: "CONTROL_UI_BUILD_MISMATCH",
35
37
  CONTROL_UI_ORIGIN_NOT_ALLOWED: "CONTROL_UI_ORIGIN_NOT_ALLOWED",
36
38
  PROTOCOL_MISMATCH: "PROTOCOL_MISMATCH",
@@ -1,4 +1,4 @@
1
- import { a as EventFrame, d as RequestFrame, l as HelloOk, p as ResponseFrame, r as ErrorShape, s as GatewayFrame, t as ConnectParams } from "./frames-CAy_vx4s.mjs";
1
+ import { a as EventFrame, d as RequestFrame, l as HelloOk, p as ResponseFrame, r as ErrorShape, s as GatewayFrame, t as ConnectParams } from "./frames-DNdJEs4Y.mjs";
2
2
  //#region src/frame-guards.d.ts
3
3
  export declare function isGatewayEventFrame(value: unknown): value is EventFrame;
4
4
  export declare function isGatewayResponseFrame(value: unknown): value is ResponseFrame;
@@ -1,4 +1,4 @@
1
- import { n as isRecord } from "./record-coerce-BKHrZ46I.mjs";
1
+ import { r as isRecord } from "./record-coerce-BVp8Dr-B.mjs";
2
2
  import { t as isNonEmptyProtocolString } from "./protocol-value-normalization-DcAoxLUs.mjs";
3
3
  //#region src/frame-guards.ts
4
4
  function isNonNegativeInteger(value) {
@@ -82,6 +82,9 @@ declare const HelloOkSchema: Type.TObject<{
82
82
  capabilities: Type.TOptional<Type.TArray<Type.TString>>;
83
83
  }>;
84
84
  snapshot: Type.TObject<{
85
+ suspension: Type.TOptional<Type.TObject<{
86
+ phase: Type.TUnion<[Type.TLiteral<"accepting">, Type.TLiteral<"preparing">, Type.TLiteral<"draining">, Type.TLiteral<"prepared">]>;
87
+ }>>;
85
88
  presence: Type.TArray<Type.TObject<{
86
89
  host: Type.TOptional<Type.TString>;
87
90
  ip: Type.TOptional<Type.TString>;
@@ -1,4 +1,4 @@
1
- import { t as asNullableRecord } from "./record-coerce-BKHrZ46I.mjs";
1
+ import { t as asNullableRecord } from "./record-coerce-BVp8Dr-B.mjs";
2
2
  //#region src/gateway-error-details.ts
3
3
  /** Gateway JSON-RPC style error codes shared by clients and server handlers. */
4
4
  const ErrorCodes = {