easywork-common-lib 1.0.206 → 1.0.207
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14,6 +14,7 @@ const user_entity_1 = require("../user.entity");
|
|
|
14
14
|
const common_1 = require("../../common");
|
|
15
15
|
const typeorm_1 = require("typeorm");
|
|
16
16
|
const enums_1 = require("../../common/enums");
|
|
17
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
17
18
|
let Notification = class Notification extends common_1.BaseEntitySimple {
|
|
18
19
|
content;
|
|
19
20
|
title;
|
|
@@ -28,14 +29,21 @@ let Notification = class Notification extends common_1.BaseEntitySimple {
|
|
|
28
29
|
};
|
|
29
30
|
exports.Notification = Notification;
|
|
30
31
|
__decorate([
|
|
32
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Content of the notification' }),
|
|
31
33
|
(0, typeorm_1.Column)({ type: "text" }),
|
|
32
34
|
__metadata("design:type", String)
|
|
33
35
|
], Notification.prototype, "content", void 0);
|
|
34
36
|
__decorate([
|
|
37
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Title of the notification' }),
|
|
35
38
|
(0, typeorm_1.Column)({ nullable: false }),
|
|
36
39
|
__metadata("design:type", String)
|
|
37
40
|
], Notification.prototype, "title", void 0);
|
|
38
41
|
__decorate([
|
|
42
|
+
(0, swagger_1.ApiProperty)({
|
|
43
|
+
enum: enums_1.NotificationCategory,
|
|
44
|
+
description: 'Category of the notification',
|
|
45
|
+
default: enums_1.NotificationCategory.DEFAULT
|
|
46
|
+
}),
|
|
39
47
|
(0, typeorm_1.Column)({
|
|
40
48
|
type: "enum",
|
|
41
49
|
enum: enums_1.NotificationCategory,
|
|
@@ -44,6 +52,11 @@ __decorate([
|
|
|
44
52
|
__metadata("design:type", String)
|
|
45
53
|
], Notification.prototype, "category", void 0);
|
|
46
54
|
__decorate([
|
|
55
|
+
(0, swagger_1.ApiProperty)({
|
|
56
|
+
enum: enums_1.NotificationSubcategory,
|
|
57
|
+
description: 'Subcategory of the notification',
|
|
58
|
+
default: enums_1.NotificationSubcategory.DEFAULT
|
|
59
|
+
}),
|
|
47
60
|
(0, typeorm_1.Column)({
|
|
48
61
|
type: "enum",
|
|
49
62
|
enum: enums_1.NotificationSubcategory,
|
|
@@ -52,6 +65,11 @@ __decorate([
|
|
|
52
65
|
__metadata("design:type", String)
|
|
53
66
|
], Notification.prototype, "subCategory", void 0);
|
|
54
67
|
__decorate([
|
|
68
|
+
(0, swagger_1.ApiProperty)({
|
|
69
|
+
type: [String],
|
|
70
|
+
enum: enums_1.NotificationChannel,
|
|
71
|
+
description: 'Channels through which the notification is sent'
|
|
72
|
+
}),
|
|
55
73
|
(0, typeorm_1.Column)({
|
|
56
74
|
type: "enum",
|
|
57
75
|
enum: enums_1.NotificationChannel,
|
|
@@ -60,6 +78,11 @@ __decorate([
|
|
|
60
78
|
__metadata("design:type", Array)
|
|
61
79
|
], Notification.prototype, "channels", void 0);
|
|
62
80
|
__decorate([
|
|
81
|
+
(0, swagger_1.ApiProperty)({
|
|
82
|
+
type: Object,
|
|
83
|
+
description: 'Additional metadata for the notification',
|
|
84
|
+
required: false
|
|
85
|
+
}),
|
|
63
86
|
(0, typeorm_1.Column)({
|
|
64
87
|
type: "simple-json",
|
|
65
88
|
nullable: true
|
|
@@ -67,18 +90,22 @@ __decorate([
|
|
|
67
90
|
__metadata("design:type", Object)
|
|
68
91
|
], Notification.prototype, "metadata", void 0);
|
|
69
92
|
__decorate([
|
|
93
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Associated entity ID', required: false }),
|
|
70
94
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
71
95
|
__metadata("design:type", String)
|
|
72
96
|
], Notification.prototype, "entityId", void 0);
|
|
73
97
|
__decorate([
|
|
98
|
+
(0, swagger_1.ApiProperty)({ type: Date, description: 'Timestamp when the notification was read', required: false }),
|
|
74
99
|
(0, typeorm_1.Column)({ type: "timestamp", nullable: true }),
|
|
75
100
|
__metadata("design:type", Date)
|
|
76
101
|
], Notification.prototype, "readAt", void 0);
|
|
77
102
|
__decorate([
|
|
103
|
+
(0, swagger_1.ApiProperty)({ type: Date, description: 'Timestamp when the notification was canceled', required: false }),
|
|
78
104
|
(0, typeorm_1.Column)({ type: "timestamp", nullable: true }),
|
|
79
105
|
__metadata("design:type", Date)
|
|
80
106
|
], Notification.prototype, "canceledAt", void 0);
|
|
81
107
|
__decorate([
|
|
108
|
+
(0, swagger_1.ApiProperty)({ type: () => user_entity_1.User, description: 'Recipient of the notification', required: false }),
|
|
82
109
|
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, {
|
|
83
110
|
onDelete: "SET NULL",
|
|
84
111
|
onUpdate: "CASCADE",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification.entity.js","sourceRoot":"","sources":["../../../src/entities/notifications/notification.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gDAAsC;AACtC,yCAAgD;AAChD,qCAAoD;AACpD,8CAAwG;
|
|
1
|
+
{"version":3,"file":"notification.entity.js","sourceRoot":"","sources":["../../../src/entities/notifications/notification.entity.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easywork-common-lib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.207",
|
|
4
4
|
"description": "Librería común de Easywork",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"homepage": "https://github.com/criptopreto/easywork-common-lib#readme",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@nestjs/common": "^10.3.8",
|
|
25
|
+
"@nestjs/swagger": "^7.4.0",
|
|
25
26
|
"@nestjs/typeorm": "^10.0.2",
|
|
26
27
|
"class-transformer": "^0.5.1",
|
|
27
28
|
"class-validator": "^0.14.1",
|