export type DirectionEnum = 'INBOUND' | 'OUTBOUND' | string | 'inbound' | 'outbound'; export type CallResult = 'COMPLETED' | 'NO_ANSWER' | 'CANCEL' | 'BUSY' | 'FAILED' | string; export type BooleanLikeEnum = 'true' | 'false' | string;