import { URI } from "../core"; /** * Options for {@link Registerer} constructor. * @public */ export interface RegistererOptions { /** Registration expiration time in seconds. */ expires?: number; /** Array of extra Contact header parameters. */ extraContactHeaderParams?: Array; /** Array of extra headers added to the REGISTER. */ extraHeaders?: Array; /** * UUID to provide with "+sip.instance" Contact parameter. * @defaultValue a randomly generated uuid */ instanceId?: string; /** * If true, constructor logs the registerer configuration. * @defaultValue `true` */ logConfiguration?: boolean; /** @deprecated TODO: provide alternative. */ params?: { fromDisplayName?: string; fromTag?: string; fromUri?: URI; toDisplayName?: string; toUri?: URI; }; /** * Value to provide with "reg-id" Contact parameter. * @defaultValue 1 */ regId?: number; /** * The URI of the registrar to send the REGISTER requests. * @defaultValue domain portion of the user agent's uri */ registrar?: URI; }