- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
107 lines
4.9 KiB
JavaScript
107 lines
4.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.NotificationLog = void 0;
|
|
const typeorm_1 = require("typeorm");
|
|
const notification_entity_1 = require("./notification.entity");
|
|
const notification_queue_entity_1 = require("./notification-queue.entity");
|
|
const user_device_entity_1 = require("./user-device.entity");
|
|
let NotificationLog = class NotificationLog {
|
|
};
|
|
exports.NotificationLog = NotificationLog;
|
|
__decorate([
|
|
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
__metadata("design:type", String)
|
|
], NotificationLog.prototype, "id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'uuid' }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", String)
|
|
], NotificationLog.prototype, "notification_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.ManyToOne)(() => notification_entity_1.Notification, { onDelete: 'CASCADE' }),
|
|
(0, typeorm_1.JoinColumn)({ name: 'notification_id' }),
|
|
__metadata("design:type", notification_entity_1.Notification)
|
|
], NotificationLog.prototype, "notification", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "queue_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.ManyToOne)(() => notification_queue_entity_1.NotificationQueue, { onDelete: 'SET NULL', nullable: true }),
|
|
(0, typeorm_1.JoinColumn)({ name: 'queue_id' }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "queue", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({
|
|
type: 'enum',
|
|
enum: ['email', 'push', 'in_app', 'sms', 'whatsapp'],
|
|
enumName: 'notifications.channel',
|
|
}),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", String)
|
|
], NotificationLog.prototype, "channel", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 30 }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", String)
|
|
], NotificationLog.prototype, "status", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "provider", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 200, nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "provider_message_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'jsonb', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "provider_response", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'timestamp with time zone', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "delivered_at", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'timestamp with time zone', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "opened_at", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'timestamp with time zone', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "clicked_at", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "error_code", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "error_message", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "device_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.ManyToOne)(() => user_device_entity_1.UserDevice, { onDelete: 'SET NULL', nullable: true }),
|
|
(0, typeorm_1.JoinColumn)({ name: 'device_id' }),
|
|
__metadata("design:type", Object)
|
|
], NotificationLog.prototype, "device", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.CreateDateColumn)({ type: 'timestamp with time zone' }),
|
|
__metadata("design:type", Date)
|
|
], NotificationLog.prototype, "created_at", void 0);
|
|
exports.NotificationLog = NotificationLog = __decorate([
|
|
(0, typeorm_1.Entity)({ schema: 'notifications', name: 'notification_logs' })
|
|
], NotificationLog);
|
|
//# sourceMappingURL=notification-log.entity.js.map
|