@onlyoffice/docspace-plugin-sdk
Version:
Simple plugin system for onlyoffice docspace
34 lines (33 loc) • 1.36 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RoomsType = exports.RoomSearchArea = void 0;
/**
* Defines the available search scopes for rooms within a room selector.
*/
var RoomSearchArea;
(function (RoomSearchArea) {
/** Search across all available rooms. */
RoomSearchArea["Any"] = "Any";
/** Search only within active rooms. */
RoomSearchArea["Active"] = "Active";
/** Search only within archived rooms. */
RoomSearchArea["Archive"] = "Archive";
/** Search only within room templates. */
RoomSearchArea["Templates"] = "Templates";
})(RoomSearchArea || (exports.RoomSearchArea = RoomSearchArea = {}));
/**
* Defines the different types of rooms available in the system.
*/
var RoomsType;
(function (RoomsType) {
/** A public room accessible to a wide audience. */
RoomsType["PublicRoom"] = "public-room";
/** A room designed for filling out forms. */
RoomsType["FormRoom"] = "form-room";
/** A room focused on collaborative document editing. */
RoomsType["EditingRoom"] = "editing-room";
/** A secure room for data storage and review. */
RoomsType["VirtualDataRoom"] = "virtual-data-room";
/** A room with custom permissions and settings. */
RoomsType["CustomRoom"] = "custom-room";
})(RoomsType || (exports.RoomsType = RoomsType = {}));