mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-07 12:22:55 +00:00
Comment-only follow-up documenting reusable gateway, auth, proxy, device, Talk, session, and agent helper contracts.\n\nVerification: git diff --check plus targeted tests recorded in PR body.
7 lines
369 B
TypeScript
7 lines
369 B
TypeScript
/** Current gateway protocol version emitted by modern clients and servers. */
|
|
export const PROTOCOL_VERSION = 4 as const;
|
|
/** Lowest client protocol version accepted by the gateway. */
|
|
export const MIN_CLIENT_PROTOCOL_VERSION = 4 as const;
|
|
/** Lowest lightweight probe protocol version accepted by the gateway. */
|
|
export const MIN_PROBE_PROTOCOL_VERSION = 4 as const;
|