UNPKG

workano-js-sdk

Version:

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

37 lines 812 B
export type { CallLogResponse } from '../../lib/domain/CallLog'; import { CallLog, Recording } from '../../lib/index'; export type TCallInfoItem = { cdr_id: number; created_at: string; note: string; rating: number; tags: { id: string; name: string; }[]; tenant_uuid: string; uuid: string; }; export type TAddCallInfo = { callLogId: number; rating: number; tags: { id: string; name: string; }[]; note: string; }; export type TUpdateCallInfo = TAddCallInfo & { uuid: string; }; export type TCallInfo = Omit<TAddCallInfo, 'cdrId'> & { uuid?: string; createAt: string; callLogId: number; }; export type TTag = { id: number; name: string; }; export { CallLog, Recording }; //# sourceMappingURL=models.d.ts.map