UNPKG

@sphereon/ssi-sdk.data-store

Version:

136 lines • 7.39 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); }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.PhysicalAddressEntity = void 0; const class_validator_1 = require("class-validator"); const typeorm_1 = require("typeorm"); const ssi_sdk_agent_config_1 = require("@sphereon/ssi-sdk.agent-config"); const ValidatorUtils_1 = require("../../utils/ValidatorUtils"); const PartyEntity_1 = require("./PartyEntity"); const validators_1 = require("../validators"); let PhysicalAddressEntity = class PhysicalAddressEntity extends typeorm_1.BaseEntity { // By default, @UpdateDateColumn in TypeORM updates the timestamp only when the entity's top-level properties change. updateUpdatedDate() { this.lastUpdatedAt = new Date(); } validate() { return __awaiter(this, void 0, void 0, function* () { const validation = yield (0, class_validator_1.validate)(this); if (validation.length > 0) { const constraint = (0, ValidatorUtils_1.getConstraint)(validation[0]); if (constraint) { const message = Object.values(constraint)[0]; return Promise.reject(Error(message)); } } }); } }; exports.PhysicalAddressEntity = PhysicalAddressEntity; __decorate([ (0, typeorm_1.PrimaryGeneratedColumn)('uuid'), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "id", void 0); __decorate([ (0, typeorm_1.Column)('varchar', { name: 'type', length: 255, nullable: false }), (0, class_validator_1.IsNotEmpty)({ message: 'Blank physical address types are not allowed' }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "type", void 0); __decorate([ (0, typeorm_1.Column)('varchar', { name: 'street_name', length: 255, nullable: false }), (0, class_validator_1.IsNotEmpty)({ message: 'Blank street names are not allowed' }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "streetName", void 0); __decorate([ (0, typeorm_1.Column)('varchar', { name: 'street_number', length: 255, nullable: false }), (0, class_validator_1.IsNotEmpty)({ message: 'Blank street numbers are not allowed' }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "streetNumber", void 0); __decorate([ (0, typeorm_1.Column)('varchar', { name: 'postal_code', length: 255, nullable: false }), (0, class_validator_1.IsNotEmpty)({ message: 'Blank postal codes are not allowed' }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "postalCode", void 0); __decorate([ (0, typeorm_1.Column)('varchar', { name: 'city_name', length: 255, nullable: false }), (0, class_validator_1.IsNotEmpty)({ message: 'Blank city names are not allowed' }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "cityName", void 0); __decorate([ (0, typeorm_1.Column)('varchar', { name: 'province_name', length: 255, nullable: false }), (0, class_validator_1.IsNotEmpty)({ message: 'Blank province names are not allowed' }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "provinceName", void 0); __decorate([ (0, typeorm_1.Column)('varchar', { name: 'country_code', length: 2, nullable: false }), (0, class_validator_1.IsNotEmpty)({ message: 'Blank country codes are not allowed' }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "countryCode", void 0); __decorate([ (0, typeorm_1.Column)('varchar', { name: 'building_name', length: 255, nullable: true }), (0, class_validator_1.Validate)(validators_1.IsNonEmptyStringConstraint, { message: 'Blank building names are not allowed' }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "buildingName", void 0); __decorate([ (0, typeorm_1.Column)('text', { name: 'owner_id', nullable: true }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "ownerId", void 0); __decorate([ (0, typeorm_1.Column)('text', { name: 'tenant_id', nullable: true }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "tenantId", void 0); __decorate([ (0, typeorm_1.ManyToOne)(() => PartyEntity_1.PartyEntity, (party) => party.physicalAddresses, { onDelete: 'CASCADE', }), __metadata("design:type", PartyEntity_1.PartyEntity) ], PhysicalAddressEntity.prototype, "party", void 0); __decorate([ (0, typeorm_1.Column)('text', { name: 'partyId', nullable: true }), __metadata("design:type", String) ], PhysicalAddressEntity.prototype, "partyId", void 0); __decorate([ (0, typeorm_1.CreateDateColumn)({ name: 'created_at', nullable: false, type: (0, ssi_sdk_agent_config_1.typeOrmDateTime)() }), __metadata("design:type", Date) ], PhysicalAddressEntity.prototype, "createdAt", void 0); __decorate([ (0, typeorm_1.UpdateDateColumn)({ name: 'last_updated_at', nullable: false, type: (0, ssi_sdk_agent_config_1.typeOrmDateTime)() }), __metadata("design:type", Date // By default, @UpdateDateColumn in TypeORM updates the timestamp only when the entity's top-level properties change. ) ], PhysicalAddressEntity.prototype, "lastUpdatedAt", void 0); __decorate([ (0, typeorm_1.BeforeInsert)(), (0, typeorm_1.BeforeUpdate)(), __metadata("design:type", Function), __metadata("design:paramtypes", []), __metadata("design:returntype", void 0) ], PhysicalAddressEntity.prototype, "updateUpdatedDate", null); __decorate([ (0, typeorm_1.BeforeInsert)(), (0, typeorm_1.BeforeUpdate)(), __metadata("design:type", Function), __metadata("design:paramtypes", []), __metadata("design:returntype", Promise) ], PhysicalAddressEntity.prototype, "validate", null); exports.PhysicalAddressEntity = PhysicalAddressEntity = __decorate([ (0, typeorm_1.Entity)('PhysicalAddress') ], PhysicalAddressEntity); //# sourceMappingURL=PhysicalAddressEntity.js.map