@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
22 lines (20 loc) • 733 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.LivechatCreator = void 0;
class LivechatCreator {
constructor(bridges, appId) {
this.bridges = bridges;
this.appId = appId;
}
createRoom(visitor, agent, extraParams) {
return this.bridges.getLivechatBridge().doCreateRoom(visitor, agent, this.appId, extraParams);
}
createVisitor(visitor) {
return this.bridges.getLivechatBridge().doCreateVisitor(visitor, this.appId);
}
createToken() {
return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
}
}
exports.LivechatCreator = LivechatCreator;
//# sourceMappingURL=LivechatCreator.js.map
;