@videosdk.live/server-sdk
    Preparing search index...

    Interface BatchCallUploadEvents

    Progress events emitted by BatchCallUpload.

    interface BatchCallUploadEvents {
        error: (error: Error) => void;
        parse_failed: (error: VideoSDKError) => void;
        parsed: (batch: BatchCall) => void;
        parsing: () => void;
    }
    Index
    error: (error: Error) => void

    Any failure — upload, parse, timeout, or abort.

    parse_failed: (error: VideoSDKError) => void

    Parsing failed — carries the reason. Also delivered via error.

    parsed: (batch: BatchCall) => void

    Parsing finished; the batch is ready to launch with BatchCallsResource.create.

    parsing: () => void

    Parsing has started.