Error types for streaming operations

interface StreamingError {
    code?: string;
    message: string;
    retryable: boolean;
    type: "connection" | "auth" | "subscription" | "processing";
}

Properties

code?: string
message: string
retryable: boolean
type: "connection" | "auth" | "subscription" | "processing"