@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.
- package/dist/client-info.d.mts +1 -0
- package/dist/client-info.mjs +1 -0
- package/dist/frame-guards.d.mts +1 -1
- package/dist/{frames-8A7sw44F.d.mts → frames-B3ABtpZk.d.mts} +2 -0
- package/dist/index.d.mts +55 -9
- package/dist/index.mjs +8 -2
- package/dist/{schema-modules-BWvk5LhI.d.mts → schema-modules-Cs1brqQv.d.mts} +880 -80
- package/dist/schema.d.mts +595 -8
- package/dist/schema.mjs +16 -2
- package/dist/{worktrees-CO9Ru3Wl.mjs → worktrees-CRLE3hce.mjs} +403 -79
- package/package.json +1 -1
- package/protocol.schema.json +3219 -53
package/dist/client-info.d.mts
CHANGED
|
@@ -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";
|
package/dist/client-info.mjs
CHANGED
|
@@ -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"
|
package/dist/frame-guards.d.mts
CHANGED
|
@@ -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-
|
|
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>;
|