template-saas/apps/backend/dist/modules/users/entities/invitation.entity.js
rckrdmrd 50a821a415
Some checks failed
CI / Backend CI (push) Has been cancelled
CI / Frontend CI (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / CI Summary (push) Has been cancelled
[SIMCO-V38] feat: Actualizar a SIMCO v3.8.0
- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8
- Actualizaciones de configuracion

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-10 08:53:08 -06:00

91 lines
3.9 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.Invitation = void 0;
const typeorm_1 = require("typeorm");
const user_entity_1 = require("../../auth/entities/user.entity");
let Invitation = class Invitation {
};
exports.Invitation = Invitation;
__decorate([
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
__metadata("design:type", String)
], Invitation.prototype, "id", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'uuid' }),
(0, typeorm_1.Index)(),
__metadata("design:type", String)
], Invitation.prototype, "tenant_id", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'varchar', length: 255 }),
(0, typeorm_1.Index)(),
__metadata("design:type", String)
], Invitation.prototype, "email", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'varchar', length: 255 }),
(0, typeorm_1.Index)({ unique: true }),
__metadata("design:type", String)
], Invitation.prototype, "token", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
__metadata("design:type", Object)
], Invitation.prototype, "role_id", void 0);
__decorate([
(0, typeorm_1.Column)({
type: 'enum',
enum: ['pending', 'accepted', 'expired', 'cancelled'],
enumName: 'users.invitation_status',
default: 'pending',
}),
__metadata("design:type", String)
], Invitation.prototype, "status", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'timestamp with time zone' }),
__metadata("design:type", Date)
], Invitation.prototype, "expires_at", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'timestamp with time zone', nullable: true }),
__metadata("design:type", Object)
], Invitation.prototype, "accepted_at", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
__metadata("design:type", Object)
], Invitation.prototype, "accepted_by_user_id", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
__metadata("design:type", Object)
], Invitation.prototype, "message", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'jsonb', nullable: true, default: {} }),
__metadata("design:type", Object)
], Invitation.prototype, "metadata", void 0);
__decorate([
(0, typeorm_1.CreateDateColumn)({ type: 'timestamp with time zone' }),
__metadata("design:type", Date)
], Invitation.prototype, "created_at", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'uuid' }),
__metadata("design:type", String)
], Invitation.prototype, "created_by", void 0);
__decorate([
(0, typeorm_1.ManyToOne)(() => user_entity_1.User),
(0, typeorm_1.JoinColumn)({ name: 'created_by' }),
__metadata("design:type", user_entity_1.User)
], Invitation.prototype, "inviter", void 0);
__decorate([
(0, typeorm_1.ManyToOne)(() => user_entity_1.User),
(0, typeorm_1.JoinColumn)({ name: 'accepted_by_user_id' }),
__metadata("design:type", Object)
], Invitation.prototype, "acceptedByUser", void 0);
exports.Invitation = Invitation = __decorate([
(0, typeorm_1.Entity)({ schema: 'users', name: 'invitations' })
], Invitation);
//# sourceMappingURL=invitation.entity.js.map