Fixed
v1.6.1 - 2025-08-27
14 days ago by ReadMe CLI
📝 Fixed - WebSocket Documentation Corrections
Corrected WebSocket Message kind Field Values
kind Field Values- Fixed documentation to accurately reflect the WebSocket message
kindfield values used in the actual implementation - Previous documentation incorrectly showed uppercase values (
"RESPONSE","EVENT") - Corrected values now show lowercase as per the codebase (
"response","event")
Before (Incorrect):
{
"kind": "RESPONSE", // ❌ Incorrect - uppercase
"type": "auth",
"id": "request-123",
"timestamp_ms": 1677721600000,
"success": true
}After (Correct):
{
"kind": "response", // ✅ Correct - lowercase
"type": "auth",
"id": "request-123",
"timestamp_ms": 1677721600000,
"success": true
}Impact:
- No functional changes to the WebSocket API behavior
- Documentation only update to match actual implementation
