zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
28 lines • 1.42 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Type of Zoom recording file/view
* @author Gabe Abrams
*/
var ZoomRecordingType;
(function (ZoomRecordingType) {
ZoomRecordingType["SharedScreenWithSpeakerViewAndClosedCaptions"] = "shared_screen_with_speaker_view(CC)";
ZoomRecordingType["SharedScreenWithSpeakerView"] = "shared_screen_with_speaker_view";
ZoomRecordingType["SharedScreenWIthGalleryView"] = "shared_screen_with_gallery_view";
ZoomRecordingType["SpeakerView"] = "speaker_view";
ZoomRecordingType["GalleryView"] = "gallery_view";
ZoomRecordingType["SharedScreen"] = "shared_screen";
ZoomRecordingType["AudioOnly"] = "audio_only";
ZoomRecordingType["AudioTranscript"] = "audio_transcript";
ZoomRecordingType["ChatFile"] = "chat_file";
ZoomRecordingType["ActiveSpeaker"] = "active_speaker";
ZoomRecordingType["Poll"] = "poll";
ZoomRecordingType["Timeline"] = "timeline";
ZoomRecordingType["ClosedCaption"] = "closed_caption";
ZoomRecordingType["AudioInterpretation"] = "audio_interpretation";
ZoomRecordingType["Summary"] = "summary";
ZoomRecordingType["SummaryNextSteps"] = "summary_next_steps";
ZoomRecordingType["SummarySmartChapters"] = "summary_smart_chapters";
})(ZoomRecordingType || (ZoomRecordingType = {}));
exports.default = ZoomRecordingType;
//# sourceMappingURL=ZoomRecordingType.js.map