83 lines
3.6 KiB
JavaScript
83 lines
3.6 KiB
JavaScript
"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 });
|
|
const class_validator_1 = require("class-validator");
|
|
var OfficeFolder;
|
|
(function (OfficeFolder) {
|
|
class IOfficeFolder {
|
|
constructor() {
|
|
this.description = null;
|
|
this.archived_description = null;
|
|
this.created_at = null;
|
|
this.updated_at = null;
|
|
}
|
|
}
|
|
__decorate([
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], IOfficeFolder.prototype, "uuid", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
|
__metadata("design:type", String)
|
|
], IOfficeFolder.prototype, "folder_number", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
|
__metadata("design:type", String)
|
|
], IOfficeFolder.prototype, "name", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Object)
|
|
], IOfficeFolder.prototype, "description", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Object)
|
|
], IOfficeFolder.prototype, "archived_description", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
|
__metadata("design:type", String)
|
|
], IOfficeFolder.prototype, "status", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
|
__metadata("design:type", Function)
|
|
], IOfficeFolder.prototype, "deed", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
|
__metadata("design:type", Function)
|
|
], IOfficeFolder.prototype, "office", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsDate)(),
|
|
__metadata("design:type", Object)
|
|
], IOfficeFolder.prototype, "created_at", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsDate)(),
|
|
__metadata("design:type", Object)
|
|
], IOfficeFolder.prototype, "updated_at", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Array)
|
|
], IOfficeFolder.prototype, "office_folder_has_customers", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Array)
|
|
], IOfficeFolder.prototype, "office_folder_has_stakeholder", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Array)
|
|
], IOfficeFolder.prototype, "documents", void 0);
|
|
OfficeFolder.IOfficeFolder = IOfficeFolder;
|
|
let EFolderStatus;
|
|
(function (EFolderStatus) {
|
|
EFolderStatus["LIVE"] = "LIVE";
|
|
EFolderStatus["ARCHIVED"] = "ARCHIVED";
|
|
})(EFolderStatus = OfficeFolder.EFolderStatus || (OfficeFolder.EFolderStatus = {}));
|
|
})(OfficeFolder || (OfficeFolder = {}));
|
|
exports.default = OfficeFolder;
|