@twilio/flex-ui
Version:
Twilio Flex UI
26 lines (25 loc) • 652 B
TypeScript
export declare enum InsightsServiceStatus {
Inactive = "INACTIVE",
Error = "ERROR",
CORSError = "CORS_ERROR",
Ready = "READY",
Initializing = "INITIALIZING"
}
declare enum Comment {
Add = "assessment.insert.comment",
View = "assessment.view.comment"
}
declare enum Assessment {
Add = "assessment.insert.assessment"
}
declare enum Player {
ViewFindings = "player.view.findings",
CopyDownloadLink = "player.export.recording",
ViewPlayer = "player.view.player"
}
export declare const InsightsPermission: {
Assessment: typeof Assessment;
Comment: typeof Comment;
Player: typeof Player;
};
export {};