- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
66 lines
3.0 KiB
JavaScript
66 lines
3.0 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 });
|
|
exports.VirtualAccount = exports.VirtualAccountStatus = void 0;
|
|
const typeorm_1 = require("typeorm");
|
|
var VirtualAccountStatus;
|
|
(function (VirtualAccountStatus) {
|
|
VirtualAccountStatus["ACTIVE"] = "active";
|
|
VirtualAccountStatus["SUSPENDED"] = "suspended";
|
|
VirtualAccountStatus["CLOSED"] = "closed";
|
|
})(VirtualAccountStatus || (exports.VirtualAccountStatus = VirtualAccountStatus = {}));
|
|
let VirtualAccount = class VirtualAccount {
|
|
};
|
|
exports.VirtualAccount = VirtualAccount;
|
|
__decorate([
|
|
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
__metadata("design:type", String)
|
|
], VirtualAccount.prototype, "id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ name: 'tenant_id' }),
|
|
__metadata("design:type", String)
|
|
], VirtualAccount.prototype, "tenantId", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ length: 20, default: 'stp' }),
|
|
__metadata("design:type", String)
|
|
], VirtualAccount.prototype, "provider", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ length: 18, unique: true }),
|
|
__metadata("design:type", String)
|
|
], VirtualAccount.prototype, "clabe", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ name: 'beneficiary_name', length: 100, nullable: true }),
|
|
__metadata("design:type", String)
|
|
], VirtualAccount.prototype, "beneficiaryName", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({
|
|
type: 'varchar',
|
|
length: 20,
|
|
default: VirtualAccountStatus.ACTIVE,
|
|
}),
|
|
__metadata("design:type", String)
|
|
], VirtualAccount.prototype, "status", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'jsonb', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], VirtualAccount.prototype, "metadata", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.CreateDateColumn)({ name: 'created_at' }),
|
|
__metadata("design:type", Date)
|
|
], VirtualAccount.prototype, "createdAt", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.UpdateDateColumn)({ name: 'updated_at' }),
|
|
__metadata("design:type", Date)
|
|
], VirtualAccount.prototype, "updatedAt", void 0);
|
|
exports.VirtualAccount = VirtualAccount = __decorate([
|
|
(0, typeorm_1.Entity)({ schema: 'sales', name: 'virtual_accounts' })
|
|
], VirtualAccount);
|
|
//# sourceMappingURL=virtual-account.entity.js.map
|