@openclaw/gateway-protocol 2026.9.3 → 2026.9.4

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.
@@ -90,6 +90,7 @@ export declare const GATEWAY_CLIENT_CAPS: {
90
90
  readonly TASK_SUGGESTIONS: "task-suggestions";
91
91
  readonly TERMINAL_OFFSET_SEQ: "terminal-offset-seq";
92
92
  readonly TERMINAL_SESSION_METADATA: "terminal-session-metadata";
93
+ readonly TERMINAL_UPLOAD_PATH_STYLE: "terminal-upload-path-style";
93
94
  readonly TOOL_EVENTS: "tool-events";
94
95
  readonly UI_COMMANDS: "ui-commands";
95
96
  readonly USAGE_REFRESHING: "usage-refreshing";
@@ -50,6 +50,7 @@ const GATEWAY_CLIENT_CAPS = {
50
50
  TASK_SUGGESTIONS: "task-suggestions",
51
51
  TERMINAL_OFFSET_SEQ: "terminal-offset-seq",
52
52
  TERMINAL_SESSION_METADATA: "terminal-session-metadata",
53
+ TERMINAL_UPLOAD_PATH_STYLE: "terminal-upload-path-style",
53
54
  TOOL_EVENTS: "tool-events",
54
55
  UI_COMMANDS: "ui-commands",
55
56
  USAGE_REFRESHING: "usage-refreshing"
@@ -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-8A7sw44F.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-B3ABtpZk.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;
@@ -334,6 +334,7 @@ declare const HelloOkSchema: Type.TObject<{
334
334
  icon: Type.TOptional<Type.TString>;
335
335
  path: Type.TOptional<Type.TString>;
336
336
  placement: Type.TOptional<Type.TString>;
337
+ slug: Type.TOptional<Type.TString>;
337
338
  requiresGatewayAuth: Type.TOptional<Type.TBoolean>;
338
339
  group: Type.TOptional<Type.TUnion<[Type.TLiteral<"control">, Type.TLiteral<"agent">]>>;
339
340
  order: Type.TOptional<Type.TNumber>;
@@ -345,6 +346,7 @@ declare const HelloOkSchema: Type.TObject<{
345
346
  }>>>;
346
347
  pluginSurfaceUrls: Type.TOptional<Type.TRecord<"^.*$", Type.TString>>;
347
348
  auth: Type.TObject<{
349
+ method: Type.TOptional<Type.TUnion<[Type.TLiteral<"none">, Type.TLiteral<"token">, Type.TLiteral<"password">, Type.TLiteral<"tailscale">, Type.TLiteral<"device-token">, Type.TLiteral<"bootstrap-token">, Type.TLiteral<"trusted-proxy">]>>;
348
350
  deviceToken: Type.TOptional<Type.TString>;
349
351
  recoveryMigrationAllowed: Type.TOptional<Type.TLiteral<true>>;
350
352
  recoveryScope: Type.TOptional<Type.TString>;