Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Standard response envelope and error types used by all API endpoints.
import type { ServerResponse, ServerResponseError } from '@collab-kit/utils';
interface ServerResponse<T extends object = Record<string, never>> { type: string; success: boolean; description: string; data: T; error: ServerResponseError | null; requestId?: string; }
success
false
interface ServerResponseError { module: Module; code: ResponseCode; message: string; }