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.

121 lines (120 loc) 5.42 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_category_data_1 = require("./venture-category.data"); const venture_contact_data_1 = require("./venture-contact.data"); const venture_event_data_1 = require("./venture-event.data"); const venture_location_data_1 = require("./venture-location.data"); const venture_publication_data_1 = require("./venture-publication.data"); const venture_sponsorship_data_1 = require("./venture-sponsorship.data"); const venture_subscription_data_1 = require("./venture-subscription.data"); const user_data_1 = require("./user.data"); let VentureData = class VentureData { id; name; slug; coverPhoto; description; active; verified; createdAt; updatedAt; location; owner; contact; categories; events; publications; sponsorships; subscriptions; }; 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_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_data_1.UserData, (user) => user.ventures), (0, typeorm_1.JoinColumn)({ name: "ownerId" }), __metadata("design:type", user_data_1.UserData) ], VentureData.prototype, "owner", 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); __decorate([ (0, typeorm_1.OneToMany)(() => venture_event_data_1.VentureEventData, (ventureEvent) => ventureEvent.venture), __metadata("design:type", Array) ], VentureData.prototype, "events", void 0); __decorate([ (0, typeorm_1.OneToMany)(() => venture_publication_data_1.VenturePublicationData, (venturePublication) => venturePublication.venture), __metadata("design:type", Array) ], VentureData.prototype, "publications", void 0); __decorate([ (0, typeorm_1.OneToMany)(() => venture_sponsorship_data_1.VentureSponsorshipData, (ventureSponsorship) => ventureSponsorship.venture), __metadata("design:type", Array) ], VentureData.prototype, "sponsorships", void 0); __decorate([ (0, typeorm_1.OneToMany)(() => venture_subscription_data_1.VentureSubscriptionData, (ventureSubscription) => ventureSubscription.venture), __metadata("design:type", Array) ], VentureData.prototype, "subscriptions", void 0); exports.VentureData = VentureData = __decorate([ (0, typeorm_1.Entity)({ name: "venture" }) ], VentureData);