Member Junction
    Preparing search index...

    The minimal Twilio REST surface RealTwilioBindings drives — just the two calls we need: calls.create(...) (outbound dial) and calls(sid).update(...) (hangup / transfer / DTMF). A production wiring implements this over twilio(accountSid, authToken).calls; tests inject a fake.

    interface ITwilioRestLike {
        CreateCall(params: TwilioCreateCallParams): Promise<string>;
        UpdateCall(callSid: string, params: TwilioUpdateCallParams): Promise<void>;
    }

    Implemented by

    Index

    Methods