UNPKG

@grouparoo/core

Version:
65 lines (64 loc) 2.69 kB
"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.Notification = void 0; const sequelize_typescript_1 = require("sequelize-typescript"); const commonModel_1 = require("../classes/commonModel"); const apiData_1 = require("../modules/apiData"); let Notification = class Notification extends commonModel_1.CommonModel { idPrefix() { return "not"; } async apiData() { return { id: this.id, from: this.from, subject: this.subject, body: this.body, cta: this.cta, ctaLink: this.ctaLink, createdAt: apiData_1.APIData.formatDate(this.createdAt), updatedAt: apiData_1.APIData.formatDate(this.updatedAt), readAt: apiData_1.APIData.formatDate(this.readAt), }; } }; __decorate([ (0, sequelize_typescript_1.AllowNull)(false), sequelize_typescript_1.Column, __metadata("design:type", String) ], Notification.prototype, "from", void 0); __decorate([ (0, sequelize_typescript_1.AllowNull)(false), sequelize_typescript_1.Column, __metadata("design:type", String) ], Notification.prototype, "subject", void 0); __decorate([ (0, sequelize_typescript_1.AllowNull)(false), sequelize_typescript_1.Column, __metadata("design:type", String) ], Notification.prototype, "body", void 0); __decorate([ sequelize_typescript_1.Column, __metadata("design:type", String) ], Notification.prototype, "cta", void 0); __decorate([ sequelize_typescript_1.Column, __metadata("design:type", String) ], Notification.prototype, "ctaLink", void 0); __decorate([ sequelize_typescript_1.Column, __metadata("design:type", Date) ], Notification.prototype, "readAt", void 0); Notification = __decorate([ (0, sequelize_typescript_1.Table)({ tableName: "notifications", paranoid: false }) ], Notification); exports.Notification = Notification;