@openclaw/gateway-protocol 2026.7.2-beta.5 → 2026.7.2-beta.6

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.
@@ -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-DEn_IEne.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-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;