@openclaw/gateway-protocol 2026.7.2-beta.5 → 2026.7.2-beta.7
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/frame-guards.d.mts +1 -1
- package/dist/{frames-DEn_IEne.d.mts → frames-BPnee-QV.d.mts} +2 -0
- package/dist/index.d.mts +79 -8
- package/dist/index.mjs +17 -3
- package/dist/{schema-modules-DpxvZ_Jx.d.mts → schema-modules-CJ-akpXK.d.mts} +627 -16
- package/dist/schema.d.mts +467 -7
- package/dist/schema.mjs +9 -2
- package/dist/{worktrees-CI-UANnD.mjs → worktrees-nxd_-Snb.mjs} +265 -14
- package/package.json +1 -1
- package/protocol.schema.json +2952 -114
package/dist/frame-guards.d.mts
CHANGED
|
@@ -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-
|
|
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";
|
|
2
2
|
|
|
3
3
|
//#region src/frame-guards.d.ts
|
|
4
4
|
declare function isGatewayEventFrame(value: unknown): value is EventFrame;
|
|
@@ -275,6 +275,7 @@ declare const RequestFrameSchema: Type.TObject<{
|
|
|
275
275
|
id: Type.TString;
|
|
276
276
|
method: Type.TString;
|
|
277
277
|
params: Type.TOptional<Type.TUnknown>;
|
|
278
|
+
traceparent: Type.TOptional<Type.TString>;
|
|
278
279
|
}>;
|
|
279
280
|
/** Server response frame envelope paired with a prior request id. */
|
|
280
281
|
declare const ResponseFrameSchema: Type.TObject<{
|
|
@@ -306,6 +307,7 @@ declare const GatewayFrameSchema: Type.TUnion<[Type.TObject<{
|
|
|
306
307
|
id: Type.TString;
|
|
307
308
|
method: Type.TString;
|
|
308
309
|
params: Type.TOptional<Type.TUnknown>;
|
|
310
|
+
traceparent: Type.TOptional<Type.TString>;
|
|
309
311
|
}>, Type.TObject<{
|
|
310
312
|
type: Type.TLiteral<"res">;
|
|
311
313
|
id: Type.TString;
|