homebridge-appletv-enhanced
Version:
Plugin that exposes the Apple TV to HomeKit with much richer features than the vanilla Apple TV implementation of HomeKit.
53 lines • 2.77 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PyATVCustomCharacteristicID = exports.RocketRemoteKey = exports.DisplayOrderTypes = void 0;
var DisplayOrderTypes;
(function (DisplayOrderTypes) {
DisplayOrderTypes[DisplayOrderTypes["ARRAY_ELEMENT_START"] = 1] = "ARRAY_ELEMENT_START";
DisplayOrderTypes[DisplayOrderTypes["ARRAY_ELEMENT_END"] = 0] = "ARRAY_ELEMENT_END";
})(DisplayOrderTypes || (exports.DisplayOrderTypes = DisplayOrderTypes = {}));
var RocketRemoteKey;
(function (RocketRemoteKey) {
RocketRemoteKey["CHANNEL_DOWN"] = "channel_down";
RocketRemoteKey["CHANNEL_UP"] = "channel_up";
RocketRemoteKey["DOWN"] = "down";
RocketRemoteKey["HOME"] = "home";
RocketRemoteKey["HOME_HOLD"] = "home_hold";
RocketRemoteKey["LEFT"] = "left";
RocketRemoteKey["MENU"] = "menu";
RocketRemoteKey["NEXT"] = "next";
RocketRemoteKey["PAUSE"] = "pause";
RocketRemoteKey["PLAY"] = "play";
RocketRemoteKey["PLAY_PAUSE"] = "play_pause";
RocketRemoteKey["PREVIOUS"] = "previous";
RocketRemoteKey["RIGHT"] = "right";
RocketRemoteKey["SCREENSAVER"] = "screensaver";
RocketRemoteKey["SELECT"] = "select";
RocketRemoteKey["SKIP_BACKWARD"] = "skip_backward";
RocketRemoteKey["SKIP_FORWARD"] = "skip_forward";
RocketRemoteKey["STOP"] = "stop";
RocketRemoteKey["TURN_OFF"] = "turn_off";
RocketRemoteKey["TURN_ON"] = "turn_on";
RocketRemoteKey["TOP_MENU"] = "top_menu";
RocketRemoteKey["UP"] = "up";
RocketRemoteKey["VOLUME_DOWN"] = "volume_down";
RocketRemoteKey["VOLUME_UP"] = "volume_up";
})(RocketRemoteKey || (exports.RocketRemoteKey = RocketRemoteKey = {}));
var PyATVCustomCharacteristicID;
(function (PyATVCustomCharacteristicID) {
PyATVCustomCharacteristicID["ALBUM"] = "album";
PyATVCustomCharacteristicID["ARTIST"] = "artist";
PyATVCustomCharacteristicID["CONTENT_IDENTIFIER"] = "contentIdentifier";
PyATVCustomCharacteristicID["EPISODE_NUMBER"] = "episodeNumber";
PyATVCustomCharacteristicID["GENRE"] = "genre";
PyATVCustomCharacteristicID["ITUNES_STORE_IDENTIFIER"] = "iTunesStoreIdentifier";
PyATVCustomCharacteristicID["OUTPUT_DEVICES"] = "outputDevices";
PyATVCustomCharacteristicID["POSITION"] = "position";
PyATVCustomCharacteristicID["REPEAT"] = "repeat";
PyATVCustomCharacteristicID["SEASON_NUMBER"] = "seasonNumber";
PyATVCustomCharacteristicID["SERIES_NAME"] = "seriesName";
PyATVCustomCharacteristicID["SHUFFLE"] = "shuffle";
PyATVCustomCharacteristicID["TITLE"] = "title";
PyATVCustomCharacteristicID["TOTAL_TIME"] = "totalTime";
})(PyATVCustomCharacteristicID || (exports.PyATVCustomCharacteristicID = PyATVCustomCharacteristicID = {}));
//# sourceMappingURL=enums.js.map