"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const mongoose_1 = require("mongoose"); const activeSessionSchema = new mongoose_1.Schema({ location: { type: String, }, name: { type: String, }, buildName: { type: String, }, type: { type: String, }, uePort: { type: Number, }, cirrusPort: { type: Number, }, ueProcessId: { type: Number, }, cirrusProcessId: { type: Number, }, ownerIp: { type: String, }, connectedPlayersCount: { type: Number, }, endAt: { type: Date, }, localIP: { type: String, }, }, { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true }, }); const ActiveSession = (0, mongoose_1.model)("Active_Session", activeSessionSchema); exports.default = ActiveSession;