@sphereon/ssi-sdk.data-store
Version:
80 lines • 4.52 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);
};
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.NaturalPersonEntity = void 0;
const typeorm_1 = require("typeorm");
const BaseContactEntity_1 = require("./BaseContactEntity");
const class_validator_1 = require("class-validator");
const validators_1 = require("../validators");
const ValidatorUtils_1 = require("../../utils/ValidatorUtils");
let NaturalPersonEntity = class NaturalPersonEntity extends BaseContactEntity_1.BaseContactEntity {
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.NaturalPersonEntity = NaturalPersonEntity;
__decorate([
(0, typeorm_1.Column)('varchar', { name: 'first_name', length: 255, nullable: false, unique: false }),
(0, class_validator_1.IsNotEmpty)({ message: 'Blank first names are not allowed' }),
__metadata("design:type", String)
], NaturalPersonEntity.prototype, "firstName", void 0);
__decorate([
(0, typeorm_1.Column)('varchar', { name: 'middle_name', length: 255, nullable: true, unique: false }),
(0, class_validator_1.Validate)(validators_1.IsNonEmptyStringConstraint, { message: 'Blank middle names are not allowed' }),
__metadata("design:type", String)
], NaturalPersonEntity.prototype, "middleName", void 0);
__decorate([
(0, typeorm_1.Column)('varchar', { name: 'last_name', length: 255, nullable: false, unique: false }),
(0, class_validator_1.IsNotEmpty)({ message: 'Blank last names are not allowed' }),
__metadata("design:type", String)
], NaturalPersonEntity.prototype, "lastName", void 0);
__decorate([
(0, typeorm_1.Column)('varchar', { name: 'display_name', length: 255, nullable: false, unique: false }),
(0, class_validator_1.IsNotEmpty)({ message: 'Blank display names are not allowed' }),
__metadata("design:type", String)
], NaturalPersonEntity.prototype, "displayName", void 0);
__decorate([
(0, typeorm_1.Column)('text', { name: 'owner_id', nullable: true }),
__metadata("design:type", String)
], NaturalPersonEntity.prototype, "ownerId", void 0);
__decorate([
(0, typeorm_1.Column)('text', { name: 'tenant_id', nullable: true }),
__metadata("design:type", String)
], NaturalPersonEntity.prototype, "tenantId", void 0);
__decorate([
(0, typeorm_1.BeforeInsert)(),
(0, typeorm_1.BeforeUpdate)(),
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], NaturalPersonEntity.prototype, "validate", null);
exports.NaturalPersonEntity = NaturalPersonEntity = __decorate([
(0, typeorm_1.ChildEntity)('NaturalPerson')
], NaturalPersonEntity);
//# sourceMappingURL=NaturalPersonEntity.js.map