Fixed

v1.6.1 - 2025-08-27

📝 Fixed - WebSocket Documentation Corrections

Corrected WebSocket Message kind Field Values

  • Fixed documentation to accurately reflect the WebSocket message kind field 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