echadospalante-core
Version:
This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.
98 lines (97 loc) • 3.88 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserData = void 0;
const typeorm_1 = require("typeorm");
const role_data_1 = require("./role.data");
const user_contact_data_1 = require("./user-contact.data");
const user_detail_data_1 = require("./user-detail.data");
const venture_category_data_1 = require("./venture-category.data");
let UserData = class UserData {
id;
picture;
email;
firstName;
lastName;
active;
createdAt;
updatedAt;
onboardingCompleted;
verified;
contact;
detail;
preferences;
roles;
};
exports.UserData = UserData;
__decorate([
(0, typeorm_1.PrimaryGeneratedColumn)("uuid"),
__metadata("design:type", String)
], UserData.prototype, "id", void 0);
__decorate([
(0, typeorm_1.Column)(),
__metadata("design:type", String)
], UserData.prototype, "picture", void 0);
__decorate([
(0, typeorm_1.Column)({ unique: true }),
__metadata("design:type", String)
], UserData.prototype, "email", void 0);
__decorate([
(0, typeorm_1.Column)(),
__metadata("design:type", String)
], UserData.prototype, "firstName", void 0);
__decorate([
(0, typeorm_1.Column)(),
__metadata("design:type", String)
], UserData.prototype, "lastName", void 0);
__decorate([
(0, typeorm_1.Column)({ default: true }),
__metadata("design:type", Boolean)
], UserData.prototype, "active", void 0);
__decorate([
(0, typeorm_1.CreateDateColumn)(),
__metadata("design:type", Date)
], UserData.prototype, "createdAt", void 0);
__decorate([
(0, typeorm_1.UpdateDateColumn)(),
__metadata("design:type", Date)
], UserData.prototype, "updatedAt", void 0);
__decorate([
(0, typeorm_1.Column)({ default: false }),
__metadata("design:type", Boolean)
], UserData.prototype, "onboardingCompleted", void 0);
__decorate([
(0, typeorm_1.Column)({ default: false }),
__metadata("design:type", Boolean)
], UserData.prototype, "verified", void 0);
__decorate([
(0, typeorm_1.OneToOne)(() => user_contact_data_1.UserContactData, (contact) => contact.user),
(0, typeorm_1.JoinColumn)({ name: "contactId" }),
__metadata("design:type", user_contact_data_1.UserContactData)
], UserData.prototype, "contact", void 0);
__decorate([
(0, typeorm_1.OneToOne)(() => user_detail_data_1.UserDetailData, (detail) => detail.user),
(0, typeorm_1.JoinColumn)({ name: "detailId" }),
__metadata("design:type", user_detail_data_1.UserDetailData)
], UserData.prototype, "detail", void 0);
__decorate([
(0, typeorm_1.ManyToMany)(() => venture_category_data_1.VentureCategoryData, (vc) => vc.users),
(0, typeorm_1.JoinTable)({ name: "x_user_preference" }),
__metadata("design:type", Array)
], UserData.prototype, "preferences", void 0);
__decorate([
(0, typeorm_1.ManyToMany)(() => role_data_1.RoleData, (role) => role.users, { eager: true }),
(0, typeorm_1.JoinTable)({ name: "x_user_role" }),
__metadata("design:type", Array)
], UserData.prototype, "roles", void 0);
exports.UserData = UserData = __decorate([
(0, typeorm_1.Entity)({ name: "user" })
], UserData);