UNPKG

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.

106 lines (105 loc) 4.61 kB
"use strict"; 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.VentureData = void 0; const typeorm_1 = require("typeorm"); const venture_detail_data_1 = require("./venture-detail.data"); const venture_location_data_1 = require("./venture-location.data"); const user_detail_data_1 = require("./user-detail.data"); const venture_contact_data_1 = require("./venture-contact.data"); const venture_category_data_1 = require("./venture-category.data"); let VentureData = class VentureData { id; name; slug; coverPhoto; description; active; verified; createdAt; updatedAt; detail; location; ownerDetail; contact; categories; }; exports.VentureData = VentureData; __decorate([ (0, typeorm_1.PrimaryGeneratedColumn)("uuid"), __metadata("design:type", String) ], VentureData.prototype, "id", void 0); __decorate([ (0, typeorm_1.Column)(), __metadata("design:type", String) ], VentureData.prototype, "name", void 0); __decorate([ (0, typeorm_1.Column)({ unique: true }), __metadata("design:type", String) ], VentureData.prototype, "slug", void 0); __decorate([ (0, typeorm_1.Column)(), __metadata("design:type", String) ], VentureData.prototype, "coverPhoto", void 0); __decorate([ (0, typeorm_1.Column)(), __metadata("design:type", String) ], VentureData.prototype, "description", void 0); __decorate([ (0, typeorm_1.Column)({ default: true }), __metadata("design:type", Boolean) ], VentureData.prototype, "active", void 0); __decorate([ (0, typeorm_1.Column)({ default: false }), __metadata("design:type", Boolean) ], VentureData.prototype, "verified", void 0); __decorate([ (0, typeorm_1.CreateDateColumn)(), __metadata("design:type", Date) ], VentureData.prototype, "createdAt", void 0); __decorate([ (0, typeorm_1.UpdateDateColumn)(), __metadata("design:type", Date) ], VentureData.prototype, "updatedAt", void 0); __decorate([ (0, typeorm_1.OneToOne)(() => venture_detail_data_1.VentureDetailData, (ventureDetail) => ventureDetail.venture, { cascade: true, }), (0, typeorm_1.JoinColumn)({ name: "detailId" }), __metadata("design:type", venture_detail_data_1.VentureDetailData) ], VentureData.prototype, "detail", void 0); __decorate([ (0, typeorm_1.OneToOne)(() => venture_location_data_1.VentureLocationData, (ventureLocation) => ventureLocation.Venture, { cascade: true, eager: true }), (0, typeorm_1.JoinColumn)({ name: "locationId" }), __metadata("design:type", venture_location_data_1.VentureLocationData) ], VentureData.prototype, "location", void 0); __decorate([ (0, typeorm_1.ManyToOne)(() => user_detail_data_1.UserDetailData, (userDetail) => userDetail.ventures), (0, typeorm_1.JoinColumn)({ name: "ownerDetailId" }), __metadata("design:type", user_detail_data_1.UserDetailData) ], VentureData.prototype, "ownerDetail", void 0); __decorate([ (0, typeorm_1.OneToOne)(() => venture_contact_data_1.VentureContactData, (ventureContact) => ventureContact.Venture, { cascade: true }), (0, typeorm_1.JoinColumn)({ name: "ventureContactId" }), __metadata("design:type", venture_contact_data_1.VentureContactData) ], VentureData.prototype, "contact", void 0); __decorate([ (0, typeorm_1.ManyToMany)(() => venture_category_data_1.VentureCategoryData, (ventureCategory) => ventureCategory.ventures, { eager: true }), (0, typeorm_1.JoinTable)({ name: "x_venture_venture_category", joinColumn: { name: "ventureId", referencedColumnName: "id" }, inverseJoinColumn: { name: "categoryId", referencedColumnName: "id" }, }), __metadata("design:type", Array) ], VentureData.prototype, "categories", void 0); exports.VentureData = VentureData = __decorate([ (0, typeorm_1.Entity)({ name: "venture" }) ], VentureData);