mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-25 06:31:17 +00:00
* fix(gateway): allow N-1 node protocol maintenance * docs: refresh generated map for node upgrade guide
9 lines
505 B
TypeScript
9 lines
505 B
TypeScript
/** Current gateway protocol version emitted by modern clients and servers. */
|
|
export const PROTOCOL_VERSION = 4 as const;
|
|
/** Lowest general client protocol version accepted by the gateway. */
|
|
export const MIN_CLIENT_PROTOCOL_VERSION = 4 as const;
|
|
/** Lowest authenticated node protocol version accepted by the gateway. */
|
|
export const MIN_NODE_PROTOCOL_VERSION = 3 as const;
|
|
/** Lowest lightweight probe protocol version accepted by the gateway. */
|
|
export const MIN_PROBE_PROTOCOL_VERSION = 3 as const;
|