Saxonberg Server API
    Preparing search index...

    Type Alias TwitchPostResult

    TwitchPostResult:
        | { ok: true }
        | {
            detail?: string;
            ok: false;
            reason:
                | "no-channel"
                | "empty"
                | "unlinked"
                | "unscoped"
                | "throttled"
                | "send-failed";
        }

    Outcome of an outbound post (drives the controller's reject-and-point).