UNPKG

workano-js-sdk

Version:

Workano Communications SDK - A modern JavaScript SDK for WebRTC and VoIP integration.

23 lines 789 B
import { Contact, NewContact, DirectorySource } from '../../lib'; export declare enum ContactSource { internal = "internal", phonebook = "phonebook", conference = "conference", google = "google" } export { LINE_STATE as LineState, STATE as UserState } from '../../lib/domain/Profile'; export type LineStateType = 'available' | 'holding' | 'ringing' | 'talking' | 'unavailable' | 'progressing'; export type { Contact, NewContact, DirectorySource }; export type TPhoneBookItem = { "id": number; "uuid": string; "name": string; "description": string; "tenant_uuid": string; }; export type TPhoneBookDirectorySource = DirectorySource & { phoneBookId?: number; phoneBookUuid?: string; description?: string; }; //# sourceMappingURL=models.d.ts.map